first commit

This commit is contained in:
CHIEFSOFT\ameye
2024-06-08 17:09:23 -04:00
commit df3a033196
17887 changed files with 8637778 additions and 0 deletions
@@ -0,0 +1,137 @@
<?php
/**
* @file plugins/importexport/doaj/DOAJExportDeployment.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 DOAJExportDeployment
*
* @brief Base class configuring the DOAJ export process to an
* application's specifics.
*/
namespace APP\plugins\importexport\doaj;
// XML attributes
define('DOAJ_XMLNS_XSI', 'http://www.w3.org/2001/XMLSchema-instance');
define('DOAJ_XSI_SCHEMALOCATION', 'http://doaj.org/static/doaj/doajArticles.xsd');
class DOAJExportDeployment
{
/** @var \PKP\context\Context The current import/export context */
public $_context;
/** @var \PKP\plugins\Plugin The current import/export plugin */
public $_plugin;
/**
* Get the plugin cache
*
* @return \APP\plugins\PubObjectCache
*/
public function getCache()
{
return $this->_plugin->getCache();
}
/**
* Constructor
*
* @param \PKP\context\Context $context
* @param \APP\plugins\importexport\doaj\DOAJExportPlugin $plugin
*/
public function __construct($context, $plugin)
{
$this->setContext($context);
$this->setPlugin($plugin);
}
//
// Deployment items for subclasses to override
//
/**
* Get the root element name
*
* @return string
*/
public function getRootElementName()
{
return 'records';
}
/**
* Get the schema instance URN
*
* @return string
*/
public function getXmlSchemaInstance()
{
return DOAJ_XMLNS_XSI;
}
/**
* Get the schema location URL
*
* @return string
*/
public function getXmlSchemaLocation()
{
return DOAJ_XSI_SCHEMALOCATION;
}
/**
* Get the schema filename.
*
* @return string
*/
public function getSchemaFilename()
{
return 'doajArticles.xsd';
}
//
// Getter/setters
//
/**
* Set the import/export context.
*
* @param \PKP\context\Context $context
*/
public function setContext($context)
{
$this->_context = $context;
}
/**
* Get the import/export context.
*
* @return \PKP\context\Context
*/
public function getContext()
{
return $this->_context;
}
/**
* Set the import/export plugin.
*
* @param \PKP\plugins\Plugin $plugin
*/
public function setPlugin($plugin)
{
$this->_plugin = $plugin;
}
/**
* Get the import/export plugin.
*
* @return \PKP\plugins\Plugin
*/
public function getPlugin()
{
return $this->_plugin;
}
}
@@ -0,0 +1,218 @@
<?php
/**
* @file plugins/importexport/doaj/DOAJExportPlugin.php
*
* 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.
*
* @class DOAJExportPlugin
*
* @brief DOAJ export plugin
*/
namespace APP\plugins\importexport\doaj;
use APP\core\Application;
use APP\plugins\PubObjectsExportPlugin;
use APP\template\TemplateManager;
use PKP\db\DAORegistry;
use PKP\filter\FilterDAO;
use PKP\notification\PKPNotification;
define('DOAJ_XSD_URL', 'https://www.doaj.org/schemas/doajArticles.xsd');
define('DOAJ_API_DEPOSIT_OK', 201);
define('DOAJ_API_URL', 'https://doaj.org/api/');
define('DOAJ_API_URL_DEV', 'https://testdoaj.cottagelabs.com/api/');
define('DOAJ_API_OPERATION', 'articles');
class DOAJExportPlugin extends PubObjectsExportPlugin
{
/**
* @copydoc Plugin::getName()
*/
public function getName()
{
return 'DOAJExportPlugin';
}
/**
* @copydoc Plugin::getDisplayName()
*/
public function getDisplayName()
{
return __('plugins.importexport.doaj.displayName');
}
/**
* @copydoc Plugin::getDescription()
*/
public function getDescription()
{
return __('plugins.importexport.doaj.description');
}
/**
* @copydoc ImportExportPlugin::display()
*/
public function display($args, $request)
{
parent::display($args, $request);
switch (array_shift($args)) {
case 'index':
case '':
$templateMgr = TemplateManager::getManager($request);
$templateMgr->display($this->getTemplateResource('index.tpl'));
break;
}
}
/**
* @copydoc ImportExportPlugin::getPluginSettingsPrefix()
*/
public function getPluginSettingsPrefix()
{
return 'doaj';
}
/**
* @copydoc PubObjectsExportPlugin::getSubmissionFilter()
*/
public function getSubmissionFilter()
{
return 'article=>doaj-xml';
}
/**
* @copydoc PubObjectsExportPlugin::getExportActions()
*/
public function getExportActions($context)
{
$actions = [EXPORT_ACTION_EXPORT, EXPORT_ACTION_MARKREGISTERED ];
if ($this->getSetting($context->getId(), 'apiKey')) {
array_unshift($actions, EXPORT_ACTION_DEPOSIT);
}
return $actions;
}
/**
* @copydoc PubObjectsExportPlugin::getExportDeploymentClassName()
*/
public function getExportDeploymentClassName()
{
return '\APP\plugins\importexport\doaj\DOAJExportDeployment';
}
/**
* @copydoc PubObjectsExportPlugin::getSettingsFormClassName()
*/
public function getSettingsFormClassName()
{
return '\APP\plugins\importexport\doaj\classes\form\DOAJSettingsForm';
}
/**
* @see PubObjectsExportPlugin::depositXML()
*
* @param \APP\submission\Submission $objects
* @param \PKP\context\Context $context
* @param string $jsonString Export JSON string
*
* @return bool|array Whether the JSON string has been registered
*/
public function depositXML($objects, $context, $jsonString)
{
$apiKey = $this->getSetting($context->getId(), 'apiKey');
$httpClient = Application::get()->getHttpClient();
try {
$response = $httpClient->request(
'POST',
($this->isTestMode($context) ? DOAJ_API_URL_DEV : DOAJ_API_URL) . DOAJ_API_OPERATION,
[
'query' => ['api_key' => $apiKey],
'json' => json_decode($jsonString)
]
);
} catch (\Exception $e) {
return [['plugins.importexport.doaj.register.error.mdsError', $e->getMessage()]];
}
if (($status = $response->getStatusCode()) != DOAJ_API_DEPOSIT_OK) {
return [['plugins.importexport.doaj.register.error.mdsError', $status . ' - ' . $response->getBody()]];
}
// Deposit was received; set the status
$objects->setData($this->getDepositStatusSettingName(), EXPORT_STATUS_REGISTERED);
$this->updateObject($objects);
return true;
}
/**
* @copydoc PubObjectsExportPlugin::executeExportAction()
*
* @param null|mixed $noValidation
*/
public function executeExportAction($request, $objects, $filter, $tab, $objectsFileNamePart, $noValidation = null, $shouldRedirect = true)
{
$context = $request->getContext();
$path = ['plugin', $this->getName()];
if ($request->getUserVar(EXPORT_ACTION_DEPOSIT)) {
assert($filter != null);
// Set filter for JSON
$filter = 'article=>doaj-json';
$resultErrors = [];
foreach ($objects as $object) {
// Get the JSON
$exportJson = $this->exportJSON($object, $filter, $context);
// Deposit the JSON
$result = $this->depositXML($object, $context, $exportJson);
if (is_array($result)) {
$resultErrors[] = $result;
}
}
// send notifications
if (empty($resultErrors)) {
$this->_sendNotification(
$request->getUser(),
$this->getDepositSuccessNotificationMessageKey(),
PKPNotification::NOTIFICATION_TYPE_SUCCESS
);
} else {
foreach ($resultErrors as $errors) {
foreach ($errors as $error) {
assert(is_array($error) && count($error) >= 1);
$this->_sendNotification(
$request->getUser(),
$error[0],
PKPNotification::NOTIFICATION_TYPE_ERROR,
($error[1] ?? null)
);
}
}
}
// redirect back to the right tab
$request->redirect(null, null, null, $path, null, $tab);
} else {
return parent::executeExportAction($request, $objects, $filter, $tab, $objectsFileNamePart, $noValidation);
}
}
/**
* Get the JSON for selected objects.
*
* @param \APP\submission\Submission $object
* @param string $filter
* @param \PKP\context\Context $context
*
* @return string JSON variable.
*/
public function exportJSON($object, $filter, $context)
{
$filterDao = DAORegistry::getDAO('FilterDAO'); /** @var FilterDAO $filterDao */
$exportFilters = $filterDao->getObjectsByGroup($filter);
assert(count($exportFilters) == 1); // Assert only a single serialization filter
$exportFilter = array_shift($exportFilters);
$exportDeployment = $this->_instantiateExportDeployment($context);
$exportFilter->setDeployment($exportDeployment);
return $exportFilter->execute($object, true);
}
}
@@ -0,0 +1,140 @@
<?php
/**
* @file plugins/importexport/doaj/DOAJInfoSender.php
*
* Copyright (c) 2013-2021 Simon Fraser University
* Copyright (c) 2003-2021 John Willinsky
* Distributed under the GNU GPL v3. For full terms see the file docs/COPYING.
*
* @class DOAJInfoSender
*
* @brief Scheduled task to send deposits to DOAJ.
*/
namespace APP\plugins\importexport\doaj;
use APP\core\Application;
use APP\journal\JournalDAO;
use PKP\plugins\PluginRegistry;
use PKP\scheduledTask\ScheduledTask;
use PKP\scheduledTask\ScheduledTaskHelper;
class DOAJInfoSender extends ScheduledTask
{
/** @var DOAJExportPlugin $_plugin */
public $_plugin;
/**
* Constructor.
*/
public function __construct($args)
{
PluginRegistry::loadCategory('importexport');
$plugin = PluginRegistry::getPlugin('importexport', 'DOAJExportPlugin'); /** @var DOAJExportPlugin $plugin */
$this->_plugin = $plugin;
if (is_a($plugin, 'DOAJExportPlugin')) {
$plugin->addLocaleData();
}
parent::__construct($args);
}
/**
* @copydoc ScheduledTask::getName()
*/
public function getName()
{
return __('plugins.importexport.doaj.senderTask.name');
}
/**
* @copydoc ScheduledTask::executeActions()
*/
public function executeActions()
{
if (!$this->_plugin) {
return false;
}
$plugin = $this->_plugin;
$journals = $this->_getJournals();
foreach ($journals as $journal) {
// load pubIds for this journal
PluginRegistry::loadCategory('pubIds', true, $journal->getId());
// Get unregistered articles
$unregisteredArticles = $plugin->getUnregisteredArticles($journal);
// If there are articles to be deposited
if (count($unregisteredArticles)) {
$this->_registerObjects($unregisteredArticles, 'article=>doaj-json', $journal, 'articles');
}
}
return true;
}
/**
* Get all journals that meet the requirements to have
* their articles automatically sent to DOAJ.
*
* @return array
*/
public function _getJournals()
{
$plugin = $this->_plugin;
$contextDao = Application::getContextDAO(); /** @var JournalDAO $contextDao */
$journalFactory = $contextDao->getAll(true);
$journals = [];
while ($journal = $journalFactory->next()) {
$journalId = $journal->getId();
if (!$plugin->getSetting($journalId, 'apiKey') || !$plugin->getSetting($journalId, 'automaticRegistration')) {
continue;
}
$journals[] = $journal;
}
return $journals;
}
/**
* Register objects
*
* @param array $objects
* @param string $filter
* @param \APP\journal\Journal $journal
* @param string $objectsFileNamePart
*/
public function _registerObjects($objects, $filter, $journal, $objectsFileNamePart)
{
$plugin = $this->_plugin;
foreach ($objects as $object) {
// Get the JSON
$exportJson = $plugin->exportJSON($object, $filter, $journal);
// Deposit the JSON
$result = $plugin->depositXML($object, $journal, $exportJson);
if ($result !== true) {
$this->_addLogEntry($result);
}
}
}
/**
* Add execution log entry
*
* @param array $errors
*/
public function _addLogEntry($errors)
{
if (is_array($errors)) {
foreach ($errors as $error) {
assert(is_array($error) && count($error) >= 1);
$this->addExecutionLogEntry(
__($error[0], ['param' => $error[1] ?? null]),
ScheduledTaskHelper::SCHEDULED_TASK_MESSAGE_TYPE_WARNING
);
}
}
}
}
@@ -0,0 +1,138 @@
<?php
/**
* @file plugins/importexport/doaj/classes/form/DOAJSettingsForm.php
*
* Copyright (c) 2014-2022 Simon Fraser University
* Copyright (c) 2003-2022 John Willinsky
* Distributed under the GNU GPL v3. For full terms see the file docs/COPYING.
*
* @class DOAJSettingsForm
*
* @brief Form for journal managers to setup DOAJ plugin
*/
namespace APP\plugins\importexport\doaj\classes\form;
use PKP\form\Form;
class DOAJSettingsForm extends Form
{
//
// Private properties
//
/** @var int */
public $_contextId;
/**
* Get the context ID.
*
* @return int
*/
public function _getContextId()
{
return $this->_contextId;
}
/** @var \PKP\plugins\Plugin */
public $_plugin;
/**
* Get the plugin.
*
* @return \PKP\plugins\Plugin
*/
public function _getPlugin()
{
return $this->_plugin;
}
//
// Constructor
//
/**
* Constructor
*
* @param \PKP\plugins\Plugin $plugin
* @param int $contextId
*/
public function __construct($plugin, $contextId)
{
$this->_contextId = $contextId;
$this->_plugin = $plugin;
parent::__construct($plugin->getTemplateResource('settingsForm.tpl'));
// Add form validation checks.
$this->addCheck(new \PKP\form\validation\FormValidatorPost($this));
$this->addCheck(new \PKP\form\validation\FormValidatorCSRF($this));
}
//
// Implement template methods from Form
//
/**
* @copydoc Form::initData()
*/
public function initData()
{
$contextId = $this->_getContextId();
$plugin = $this->_getPlugin();
foreach ($this->getFormFields() as $fieldName => $fieldType) {
$this->setData($fieldName, $plugin->getSetting($contextId, $fieldName));
}
}
/**
* @copydoc Form::readInputData()
*/
public function readInputData()
{
$this->readUserVars(array_keys($this->getFormFields()));
}
/**
* @copydoc Form::execute()
*/
public function execute(...$functionArgs)
{
$plugin = $this->_getPlugin();
$contextId = $this->_getContextId();
parent::execute(...$functionArgs);
foreach ($this->getFormFields() as $fieldName => $fieldType) {
$plugin->updateSetting($contextId, $fieldName, $this->getData($fieldName), $fieldType);
}
}
//
// Public helper methods
//
/**
* Get form fields
*
* @return array (field name => field type)
*/
public function getFormFields()
{
return [
'apiKey' => 'string',
'automaticRegistration' => 'bool',
'testMode' => 'bool'
];
}
/**
* Is the form field optional
*
* @param string $settingName
*
* @return bool
*/
public function isOptional($settingName)
{
return in_array($settingName, ['apiKey', 'automaticRegistration', 'testMode']);
}
}
+172
View File
@@ -0,0 +1,172 @@
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema
version = "1.3"
xmlns:xs ="http://www.w3.org/2001/XMLSchema"
xmlns:iso_639-2b="http://www.doaj.org/schemas/iso_639-2b/1.1">
<xs:import namespace="http://www.doaj.org/schemas/iso_639-2b/1.1"
schemaLocation="http://www.doaj.org/static/doaj/iso_639-2b.xsd">
<xs:annotation>
<xs:documentation>
This schema determines allowable xml file formats
for upload into the DOAJ database.
The schema uses imported codes for the representation
of names of languages devised by the International
Organization for Standardization (ISO) 639-2/B
(bibliographic codes). Please note that when two
codes separated by a dash occurs in the iso 639-2
table then only the first code is used, the
bibliographic one. The terminology code that comes
second is omitted.
</xs:documentation>
</xs:annotation>
</xs:import>
<xs:element name="records">
<xs:complexType>
<xs:sequence>
<xs:element name="record" type="recordType"
maxOccurs="unbounded" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:complexType name="recordType">
<xs:sequence>
<xs:element name="language"
type="iso_639-2b:LanguageCodeType"
minOccurs="0"/>
<xs:element name="publisher" type="xs:string" minOccurs="0"/>
<xs:element name="journalTitle" type="xs:string" />
<xs:element name="issn" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:pattern value="[d0-9]{4}-{0,1}[0-9]{3}[0-9xX]{1}"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="eissn" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:pattern value="[0-9]{4}-{0,1}[0-9]{3}[0-9xX]{1}"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="publicationDate">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:pattern value="[0-9]{4}(-[0-9]{2}(-[0-9]{2})?)?"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="volume" type="xs:string" minOccurs="0"/>
<xs:element name="issue" type="xs:string" minOccurs="0"/>
<xs:element name="startPage" type="xs:string" minOccurs="0"/>
<xs:element name="endPage" type="xs:string" minOccurs="0"/>
<xs:element name="doi" type="xs:string" minOccurs="0"/>
<xs:element name="publisherRecordId" type="xs:string" minOccurs="0"/>
<xs:element name="documentType" type="xs:string" minOccurs="0"/>
<xs:element name="title" minOccurs="1" maxOccurs="unbounded">
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute name="language" type="iso_639-2b:LanguageCodeType" />
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
<xs:element name="authors" minOccurs="0" maxOccurs="1">
<xs:complexType>
<xs:sequence>
<xs:element name="author" minOccurs="0" maxOccurs="unbounded">
<xs:complexType>
<xs:sequence>
<xs:element name="name" type="xs:string" />
<xs:element name="email" type="xs:string" minOccurs="0" />
<xs:element name="affiliationId" minOccurs="0" maxOccurs="unbounded"/>
<xs:element name="orcid_id" minOccurs="0" maxOccurs="1">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:pattern value="https://orcid\.org/[0-9]{4}-[0-9]{4}-[0-9]{4}-\d{3}[\dX]"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="affiliationsList" minOccurs="0" maxOccurs="1">
<xs:complexType>
<xs:sequence>
<xs:element name="affiliationName" minOccurs="0" maxOccurs="unbounded">
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute name="affiliationId" type="xs:string"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="abstract" minOccurs="0" maxOccurs="unbounded">
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute name="language" type="iso_639-2b:LanguageCodeType" />
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
<xs:element name="fullTextUrl">
<xs:complexType>
<xs:simpleContent>
<xs:extension base="fullUrl">
<xs:attribute name="format" use="optional"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
<xs:element name="keywords"
minOccurs="0" maxOccurs="unbounded">
<xs:complexType>
<xs:sequence>
<xs:element name="keyword" type="xs:string"
minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
<xs:attribute name="language" type="iso_639-2b:LanguageCodeType"
use="optional"/>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:simpleType name="fullUrl">
<xs:restriction base="xs:anyURI">
<xs:pattern value="https?://([^/:]+\.[\p{L}]{2,10}|([0-9]{1,3}\.){3}[0-9]{1,3})(:[0-9]+)?(.*)?"/>
</xs:restriction>
</xs:simpleType>
</xs:schema>
@@ -0,0 +1,205 @@
<?php
/**
* @file plugins/importexport/doaj/filter/DOAJJsonFilter.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 DOAJJsonFilter
*
* @ingroup plugins_importexport_doaj
*
* @brief Class that converts an Article to a DOAJ JSON string.
*/
namespace APP\plugins\importexport\doaj\filter;
use APP\core\Application;
use APP\facades\Repo;
use APP\plugins\importexport\doaj\DOAJExportDeployment;
use APP\plugins\importexport\doaj\DOAJExportPlugin;
use PKP\core\PKPString;
use PKP\db\DAORegistry;
use PKP\plugins\importexport\PKPImportExportFilter;
use PKP\submission\SubmissionKeywordDAO;
class DOAJJsonFilter extends PKPImportExportFilter
{
/**
* Constructor
*
* @param \PKP\filter\FilterGroup $filterGroup
*/
public function __construct($filterGroup)
{
$this->setDisplayName('DOAJ JSON export');
parent::__construct($filterGroup);
}
//
// Implement template methods from Filter
//
/**
* @see Filter::process()
*
* @param \APP\submission\Submission $pubObject
*
* @return string JSON
*/
public function &process(&$pubObject)
{
/** @var DOAJExportDeployment */
$deployment = $this->getDeployment();
$context = $deployment->getContext();
/** @var DOAJExportPlugin */
$plugin = $deployment->getPlugin();
$cache = $plugin->getCache();
// Create the JSON string
// Article JSON example bibJson https://github.com/DOAJ/harvester/blob/9b59fddf2d01f7c918429d33b63ca0f1a6d3d0d0/service/tests/fixtures/article.py
// S. also https://doaj.github.io/doaj-docs/master/data_models/IncomingAPIArticle
$publication = $pubObject->getCurrentPublication();
$publicationLocale = $publication->getData('locale');
$issueId = $publication->getData('issueId');
if ($cache->isCached('issues', $issueId)) {
$issue = $cache->get('issues', $issueId);
} else {
$issue = Repo::issue()->get($issueId);
$issue = $issue->getJournalId() == $context->getId() ? $issue : null;
if ($issue) {
$cache->add($issue, null);
}
}
$article = [];
$article['bibjson']['journal'] = [];
// Publisher name (i.e. institution name)
$publisher = $context->getData('publisherInstitution');
if (!empty($publisher)) {
$article['bibjson']['journal']['publisher'] = $publisher;
}
// To-Do: license ???
// Journal's title (M)
$journalTitle = $context->getName($context->getPrimaryLocale());
$article['bibjson']['journal']['title'] = $journalTitle;
// Identification Numbers
$issns = [];
$pissn = $context->getData('printIssn');
if (!empty($pissn)) {
$issns[] = $pissn;
}
$eissn = $context->getData('onlineIssn');
if (!empty($eissn)) {
$issns[] = $eissn;
}
if (!empty($issns)) {
$article['bibjson']['journal']['issns'] = $issns;
}
// Volume, Number
$volume = $issue->getVolume();
if (!empty($volume)) {
$article['bibjson']['journal']['volume'] = $volume;
}
$issueNumber = $issue->getNumber();
if (!empty($issueNumber)) {
$article['bibjson']['journal']['number'] = $issueNumber;
}
// Article title
$article['bibjson']['title'] = $publication?->getLocalizedTitle($publicationLocale) ?? '';
// Identifiers
$article['bibjson']['identifier'] = [];
// DOI
$doi = $publication->getDoi();
if (!empty($doi)) {
$article['bibjson']['identifier'][] = ['type' => 'doi', 'id' => $doi];
}
// Print and online ISSN
if (!empty($pissn)) {
$article['bibjson']['identifier'][] = ['type' => 'pissn', 'id' => $pissn];
}
if (!empty($eissn)) {
$article['bibjson']['identifier'][] = ['type' => 'eissn', 'id' => $eissn];
}
// Year and month from article's publication date
$publicationDate = $this->formatDate($issue->getDatePublished());
if ($publication->getData('datePublished')) {
$publicationDate = $this->formatDate($publication->getData('datePublished'));
}
$yearMonth = explode('-', $publicationDate);
$article['bibjson']['year'] = $yearMonth[0];
$article['bibjson']['month'] = $yearMonth[1];
/** --- FirstPage / LastPage (from PubMed plugin)---
* there is some ambiguity for online journals as to what
* "page numbers" are; for example, some journals (eg. JMIR)
* use the "e-location ID" as the "page numbers" in PubMed
*/
$startPage = $publication->getStartingPage();
$endPage = $publication->getEndingPage();
if (isset($startPage) && $startPage !== '') {
$article['bibjson']['start_page'] = $startPage;
$article['bibjson']['end_page'] = $endPage;
}
// FullText URL
$request = Application::get()->getRequest();
$article['bibjson']['link'] = [];
$article['bibjson']['link'][] = [
'url' => $request->url($context->getPath(), 'article', 'view', $pubObject->getId()),
'type' => 'fulltext',
'content_type' => 'html'
];
// Authors: name, affiliation and ORCID
$articleAuthors = $publication->getData('authors');
if ($articleAuthors->isNotEmpty()) {
$article['bibjson']['author'] = [];
foreach ($articleAuthors as $articleAuthor) {
$author = ['name' => $articleAuthor->getFullName(false, false, $publicationLocale)];
$affiliation = $articleAuthor->getAffiliation($publicationLocale);
if (!empty($affiliation)) {
$author['affiliation'] = $affiliation;
}
if ($orcid = $articleAuthor->getData('orcid')) {
$author['orcid_id'] = $orcid;
}
$article['bibjson']['author'][] = $author;
}
}
// Abstract
$abstract = $publication->getData('abstract', $publicationLocale);
if (!empty($abstract)) {
$article['bibjson']['abstract'] = PKPString::html2text($abstract);
}
// Keywords
/** @var SubmissionKeywordDAO */
$dao = DAORegistry::getDAO('SubmissionKeywordDAO');
$keywords = $dao->getKeywords($publication->getId(), [$publicationLocale]);
$allowedNoOfKeywords = array_slice($keywords[$publicationLocale] ?? [], 0, 6);
if (!empty($keywords[$publicationLocale])) {
$article['bibjson']['keywords'] = $allowedNoOfKeywords;
}
$json = json_encode($article);
return $json;
}
/**
* Format a date by Y-F format.
*
* @param string $date
*
* @return string
*/
public function formatDate($date)
{
if ($date == '') {
return null;
}
return date('Y-F', strtotime($date));
}
}
@@ -0,0 +1,290 @@
<?php
/**
* @file plugins/importexport/doaj/filter/DOAJXmlFilter.php
*
* 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.
*
* @class DOAJXmlFilter
*
* @brief Class that converts an Article to a DOAJ XML document.
*/
namespace APP\plugins\importexport\doaj\filter;
use APP\core\Application;
use APP\facades\Repo;
use APP\plugins\importexport\doaj\DOAJExportDeployment;
use APP\plugins\importexport\doaj\DOAJExportPlugin;
use APP\publication\Publication;
use APP\submission\Submission;
use PKP\core\PKPString;
use PKP\db\DAORegistry;
use PKP\i18n\LocaleConversion;
use PKP\submission\SubmissionKeywordDAO;
class DOAJXmlFilter extends \PKP\plugins\importexport\native\filter\NativeExportFilter
{
/**
* Constructor
*
* @param \PKP\filter\FilterGroup $filterGroup
*/
public function __construct($filterGroup)
{
$this->setDisplayName('DOAJ XML export');
parent::__construct($filterGroup);
}
//
// Implement template methods from Filter
//
/**
* @see Filter::process()
*
* @param array $pubObjects Array of Submissions
*
* @return \DOMDocument
*/
public function &process(&$pubObjects)
{
// Create the XML document
$doc = new \DOMDocument('1.0', 'utf-8');
$doc->preserveWhiteSpace = false;
$doc->formatOutput = true;
/** @var DOAJExportDeployment */
$deployment = $this->getDeployment();
$context = $deployment->getContext();
/** @var DOAJExportPlugin */
$plugin = $deployment->getPlugin();
$cache = $plugin->getCache();
// Create the root node
$rootNode = $this->createRootNode($doc);
$doc->appendChild($rootNode);
foreach ($pubObjects as $pubObject) { /** @var Submission $pubObject */
$publication = $pubObject->getCurrentPublication();
$issueId = $publication->getData('issueId');
if ($cache->isCached('issues', $issueId)) {
$issue = $cache->get('issues', $issueId);
} else {
$issue = Repo::issue()->get($issueId);
$issue = $issue->getJournalId() == $context->getId() ? $issue : null;
if ($issue) {
$cache->add($issue, null);
}
}
// Record
$recordNode = $doc->createElement('record');
$rootNode->appendChild($recordNode);
// Language
$language = LocaleConversion::get3LetterIsoFromLocale($publication->getData('locale'));
if (!empty($language)) {
$recordNode->appendChild($node = $doc->createElement('language', $language));
}
// Publisher name (i.e. institution name)
$publisher = $context->getData('publisherInstitution');
if (!empty($publisher)) {
$recordNode->appendChild($node = $doc->createElement('publisher', htmlspecialchars($publisher, ENT_COMPAT, 'UTF-8')));
}
// Journal's title (M)
$journalTitle = $context->getName($context->getPrimaryLocale());
$recordNode->appendChild($node = $doc->createElement('journalTitle', htmlspecialchars($journalTitle, ENT_COMPAT, 'UTF-8')));
// Identification Numbers
$issn = $context->getData('printIssn');
if (!empty($issn)) {
$recordNode->appendChild($node = $doc->createElement('issn', $issn));
}
$eissn = $context->getData('onlineIssn');
if (!empty($eissn)) {
$recordNode->appendChild($node = $doc->createElement('eissn', $eissn));
}
// Article's publication date, volume, issue
if ($publication->getData('datePublished')) {
$recordNode->appendChild($node = $doc->createElement('publicationDate', $this->formatDate($publication->getData('datePublished'))));
} else {
$recordNode->appendChild($node = $doc->createElement('publicationDate', $this->formatDate($issue->getDatePublished())));
}
$volume = $issue->getVolume();
if (!empty($volume) && $issue->getShowVolume()) {
$recordNode->appendChild($node = $doc->createElement('volume', htmlspecialchars($volume, ENT_COMPAT, 'UTF-8')));
}
$issueNumber = $issue->getNumber();
if (!empty($issueNumber) && $issue->getShowNumber()) {
$recordNode->appendChild($node = $doc->createElement('issue', htmlspecialchars($issueNumber, ENT_COMPAT, 'UTF-8')));
}
/** --- FirstPage / LastPage (from PubMed plugin)---
* there is some ambiguity for online journals as to what
* "page numbers" are; for example, some journals (eg. JMIR)
* use the "e-location ID" as the "page numbers" in PubMed
*/
$startPage = $publication->getStartingPage();
$endPage = $publication->getEndingPage();
if (isset($startPage) && $startPage !== '') {
$recordNode->appendChild($node = $doc->createElement('startPage', htmlspecialchars($startPage, ENT_COMPAT, 'UTF-8')));
$recordNode->appendChild($node = $doc->createElement('endPage', htmlspecialchars($endPage, ENT_COMPAT, 'UTF-8')));
}
// DOI
$doi = $publication->getStoredPubId('doi');
if (!empty($doi)) {
$recordNode->appendChild($node = $doc->createElement('doi', htmlspecialchars($doi, ENT_COMPAT, 'UTF-8')));
}
// publisherRecordId
$recordNode->appendChild($node = $doc->createElement('publisherRecordId', htmlspecialchars($publication->getId(), ENT_COMPAT, 'UTF-8')));
// documentType
$type = $publication->getLocalizedData('type', $publication->getData('locale'));
if (!empty($type)) {
$recordNode->appendChild($node = $doc->createElement('documentType', htmlspecialchars($type, ENT_COMPAT, 'UTF-8')));
}
// Article title
$articleTitles = $publication->getTitles();
if (array_key_exists($publication->getData('locale'), $articleTitles)) {
$titleInArticleLocale = $articleTitles[$publication->getData('locale')];
unset($articleTitles[$publication->getData('locale')]);
$articleTitles = array_merge([$publication->getData('locale') => $titleInArticleLocale], $articleTitles);
}
foreach ($articleTitles as $locale => $title) {
if (!empty($title)) {
$recordNode->appendChild($node = $doc->createElement('title', htmlspecialchars($title, ENT_COMPAT, 'UTF-8')));
$node->setAttribute('language', LocaleConversion::get3LetterIsoFromLocale($locale));
}
}
// Authors and affiliations
$authors = $publication->getData('authors');
if (!empty($authors)) {
$authorsNode = $doc->createElement('authors');
$recordNode->appendChild($authorsNode);
$affilList = $this->createAffiliationsList($authors, $publication);
foreach ($authors as $author) {
$authorsNode->appendChild($this->createAuthorNode($doc, $publication, $author, $affilList));
}
}
if (!empty($affilList[0])) {
$affilsNode = $doc->createElement('affiliationsList');
$recordNode->appendChild($affilsNode);
for ($i = 0; $i < count($affilList); $i++) {
$affilsNode->appendChild($node = $doc->createElement('affiliationName', htmlspecialchars($affilList[$i], ENT_COMPAT, 'UTF-8')));
$node->setAttribute('affiliationId', $i);
}
}
// Abstract
$articleAbstracts = $publication->getData('abstract') ?: [];
if (array_key_exists($publication->getData('locale'), $articleAbstracts)) {
$abstractInArticleLocale = $articleAbstracts[$publication->getData('locale')];
unset($articleAbstracts[$publication->getData('locale')]);
$articleAbstracts = array_merge([$publication->getData('locale') => $abstractInArticleLocale], $articleAbstracts);
}
foreach ($articleAbstracts as $locale => $abstract) {
if (!empty($abstract)) {
$recordNode->appendChild($node = $doc->createElement('abstract', htmlspecialchars(PKPString::html2text($abstract), ENT_COMPAT, 'UTF-8')));
$node->setAttribute('language', LocaleConversion::get3LetterIsoFromLocale($locale));
}
}
// FullText URL
$request = Application::get()->getRequest();
$recordNode->appendChild($node = $doc->createElement('fullTextUrl', htmlspecialchars($request->url(null, 'article', 'view', $pubObject->getId()), ENT_COMPAT, 'UTF-8')));
$node->setAttribute('format', 'html');
// Keywords
$supportedLocales = $context->getSupportedFormLocales();
/** @var SubmissionKeywordDAO */
$dao = DAORegistry::getDAO('SubmissionKeywordDAO');
$articleKeywords = $dao->getKeywords($publication->getId(), $supportedLocales);
if (array_key_exists($publication->getData('locale'), $articleKeywords)) {
$keywordsInArticleLocale = $articleKeywords[$publication->getData('locale')];
unset($articleKeywords[$publication->getData('locale')]);
$articleKeywords = array_merge([$publication->getData('locale') => $keywordsInArticleLocale], $articleKeywords);
}
foreach ($articleKeywords as $locale => $keywords) {
$keywordsNode = $doc->createElement('keywords');
$keywordsNode->setAttribute('language', LocaleConversion::get3LetterIsoFromLocale($locale));
$recordNode->appendChild($keywordsNode);
foreach ($keywords as $keyword) {
if (!empty($keyword)) {
$keywordsNode->appendChild($node = $doc->createElement('keyword', htmlspecialchars($keyword, ENT_COMPAT, 'UTF-8')));
}
}
}
}
return $doc;
}
/**
* Create and return the root node.
*
* @param \DOMDocument $doc
*
* @return \DOMElement
*/
public function createRootNode($doc)
{
/** @var DOAJExportDeployment */
$deployment = $this->getDeployment();
$rootNode = $doc->createElement($deployment->getRootElementName());
$rootNode->setAttributeNS('http://www.w3.org/2000/xmlns/', 'xmlns:xsi', 'http://www.w3.org/2001/XMLSchema-instance');
$rootNode->setAttribute('xsi:noNamespaceSchemaLocation', $deployment->getXmlSchemaLocation());
return $rootNode;
}
/**
* Generate the author node.
*
* @param \DOMDocument $doc
* @param object $publication Article
* @param object $author Author
* @param array $affilList List of author affiliations
*
* @return \DOMElement
*/
public function createAuthorNode($doc, $publication, $author, $affilList)
{
$deployment = $this->getDeployment();
$authorNode = $doc->createElement('author');
$authorNode->appendChild($node = $doc->createElement('name', htmlspecialchars($author->getFullName(false, false, $publication->getData('locale')), ENT_COMPAT, 'UTF-8')));
if (in_array($author->getAffiliation($publication->getData('locale')), $affilList) && !empty($affilList[0])) {
$authorNode->appendChild($node = $doc->createElement('affiliationId', htmlspecialchars(current(array_keys($affilList, $author->getAffiliation($publication->getData('locale')))), ENT_COMPAT, 'UTF-8')));
}
if ($orcid = $author->getData('orcid')) {
$authorNode->appendChild($doc->createElement('orcid_id'))->appendChild($doc->createTextNode($orcid));
}
return $authorNode;
}
/**
* Generate a list of affiliations among all authors of an article.
*
* @param object $authors Array of article authors
* @param Publication $publication
*
* @return array
*/
public function createAffiliationsList($authors, $publication)
{
$affilList = [];
foreach ($authors as $author) {
if (!in_array($author->getAffiliation($publication->getData('locale')), $affilList)) {
$affilList[] = $author->getAffiliation($publication->getData('locale')) ;
}
}
return $affilList;
}
/**
* Format a date by Y-m-d format.
*
* @param string $date
*
* @return string
*/
public function formatDate($date)
{
if ($date == '') {
return null;
}
return date('Y-m-d', strtotime($date));
}
}
@@ -0,0 +1,42 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE filterConfig SYSTEM "../../../../lib/pkp/dtd/filterConfig.dtd">
<!--
* plugins/importexport/doaj/filter/filterConfig.xml
*
* 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.
*
* Filter Configuration.
-->
<filterConfig>
<filterGroups>
<!-- DOAJ XML article output -->
<filterGroup
symbolic="article=>doaj-xml"
displayName="plugins.importexport.doaj.displayName"
description="plugins.importexport.doaj.description"
inputType="class::classes.submission.Submission[]"
outputType="xml::schema(plugins/importexport/doaj/doajArticles.xsd)" />
<!-- DOAJ JSON article output -->
<filterGroup
symbolic="article=>doaj-json"
displayName="plugins.importexport.doaj.displayName"
description="plugins.importexport.doaj.description"
inputType="class::classes.submission.Submission"
outputType="primitive::string" />
</filterGroups>
<filters>
<!-- DOAJ XML article output -->
<filter
inGroup="article=>doaj-xml"
class="APP\plugins\importexport\doaj\filter\DOAJXmlFilter"
isTemplate="0" />
<!-- DOAJ JSON article output -->
<filter
inGroup="article=>doaj-json"
class="APP\plugins\importexport\doaj\filter\DOAJJsonFilter"
isTemplate="0" />
</filters>
</filterConfig>
+14
View File
@@ -0,0 +1,14 @@
<?php
/**
* @file plugins/importexport/doaj/index.php
*
* Copyright (c) 2014-2022 Simon Fraser University
* Copyright (c) 2003-2022 John Willinsky
* Distributed under the GNU GPL v3. For full terms see the file docs/COPYING.
*
* @brief Wrapper for DOAJ XML export plugin.
*
*/
return new \APP\plugins\importexport\doaj\DOAJExportPlugin();
@@ -0,0 +1,52 @@
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-11-19T11:05:39+00:00\n"
"PO-Revision-Date: 2020-06-14 15:53+0000\n"
"Last-Translator: M. Ali <vorteem@gmail.com>\n"
"Language-Team: Arabic <http://translate.pkp.sfu.ca/projects/ojs/"
"importexport-doaj/ar_IQ/>\n"
"Language: ar_IQ\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Generator: Weblate 3.9.1\n"
msgid "plugins.importexport.doaj.displayName"
msgstr "إضافة التصدير DOAJ"
msgid "plugins.importexport.doaj.description"
msgstr "تصدير المجلة إلى DOAJ."
msgid "plugins.importexport.doaj.export.contact"
msgstr "عنوان اتصال DOAJ لأغراض التضمين"
msgid "plugins.importexport.doaj.registrationIntro"
msgstr "إذا رغبت بتسجيل المقالات من داخل نظام المجلات المفتوحة، لطفاً، أدخل مفتاح واجهة التطبيق لـ DOAJ. بخلاف ذلك، لا يزال بإمكانك التصدير بصيغة DOAJ XML ولكن بدون تسجيل مقالاتك في DOAJ مباشرة من نظام المجلات المفتوحة."
msgid "plugins.importexport.doaj.settings.form.apiKey"
msgstr "مفتاح واجهة تطبيق DOAJ"
msgid "plugins.importexport.doaj.settings.form.apiKey.description"
msgstr "ستجد مفتاح واجهة التطبيق على صفحة المستخدم لموقع DOAJ."
msgid "plugins.importexport.doaj.settings.form.automaticRegistration.description"
msgstr "نظام المجلات المفتوحة سيقوم بإيداع المقالات تلقائياً في DOAJ. لطفاً، خذ بنظر الاعتبار أن هذه العملية قد تستغرق وقتاً قصيراً بُعيد النشر لأغراض المعالجة (أي اعتماداً على إعداداتك للإضافة cronjob). بإمكانك دوماً التحقق من وجود مقالات غير مسجلة فيه."
msgid "plugins.importexport.doaj.settings.form.testMode.description"
msgstr "استعمل واجهة التطبيق الاختبارية لـ DOAJ (بيئة إختبارية) لغرض التسجيل. لطفاً، إحرص على إزالة هذا الخيار عند مرحلة الإنتاج الفعلي."
msgid "plugins.importexport.doaj.senderTask.name"
msgstr "وظيفة التسجيل التلقائي في DOAJ"
msgid "plugins.importexport.doaj.register.error.mdsError"
msgstr "تعذر الإيداع! أعادت واجهة التطبيق DOAJ الخطأ الآتي: '{$param}'."
msgid "plugins.importexport.doaj.cliUsage"
msgstr ""
"صيغة الاستعمال:\n"
"{$scriptName} {$pluginName} export [xmlFileName] [journal_path] articles objectId1 [objectId2] ...\n"
""
@@ -0,0 +1,60 @@
# Osman Durmaz <osmandurmaz@hotmail.de>, 2023.
msgid ""
msgstr ""
"PO-Revision-Date: 2023-06-01 22:17+0000\n"
"Last-Translator: Osman Durmaz <osmandurmaz@hotmail.de>\n"
"Language-Team: Azerbaijani <http://translate.pkp.sfu.ca/projects/ojs/"
"importexport-doaj/az/>\n"
"Language: az\n"
"MIME-Version: 1.0\n"
"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.doaj.displayName"
msgstr "DOAJ transfer qoşması"
msgid "plugins.importexport.doaj.export.contact"
msgstr "İştirak üçün DOAJ ilə əlaqə saxlayın"
msgid "plugins.importexport.doaj.settings.form.apiKey"
msgstr "DOAJ API açarı"
msgid "plugins.importexport.doaj.settings.form.apiKey.description"
msgstr "API açarınızı DOAJ istifadəçi səhifəsindən tapa bilərsiniz."
msgid ""
"plugins.importexport.doaj.settings.form.automaticRegistration.description"
msgstr ""
"OJS, məqalələri DOAJ-a avtomatik olaraq qeyd edəcəkdir. Zəhmət olmasa bu "
"əməliyyatın yayımlanma əməliyyatından sonra müəyyən bir vaxt apara "
"biləcəyini unutmayın (məs. planlaşdırılmış əməliyyatlar tənzimlərinizə bağlı "
"gecikmələr). Yadda saxlanmamış məqalələri yoxlaya bilərsiniz."
msgid "plugins.importexport.doaj.settings.form.testMode.description"
msgstr ""
"Qeydiyyat üçün DOAJ test API-sini (test mühiti) istifadə edin. Zəhmət olmasa "
"məqalələrinizin nəşr edilməsi üçün bu seçimi qaldırmağı unutmayın."
msgid "plugins.importexport.doaj.senderTask.name"
msgstr "DOAJ avtomatik qeydiyyat vəzifəsi"
msgid "plugins.importexport.doaj.register.error.mdsError"
msgstr "Qeydiyyat uğursuz oldu! DOAJ API bir xəta baş verdi: '{$param}'."
msgid "plugins.importexport.doaj.cliUsage"
msgstr ""
"İstifadə:\n"
"{$scriptName} {$pluginName} transfer edin [xmlFileName] [journal_path] "
"articles objectId1 [objectId2] ...\n"
msgid "plugins.importexport.doaj.description"
msgstr "Jurnalı DOAJ üçün ixrac edin."
msgid "plugins.importexport.doaj.registrationIntro"
msgstr ""
"Əgər məqalələri OJS içindən birbaşa yadda saxlamaq istəyirsinizsə, zəhmət "
"olmasa DOAJ API Açarınızı daxil edin. API açarınız yoxdursa, dataları DOAJ "
"XML formatında ixrac edə bilərsiniz; ancaq məqalələriniz DOAJ-a OJS içində "
"yadda saxlaya bilməzsiniz."
@@ -0,0 +1,61 @@
# Cyril Kamburov <cc@intermedia.bg>, 2021.
# Pencho Toncgev <ptonchev@gmail.com>, 2022.
msgid ""
msgstr ""
"PO-Revision-Date: 2022-10-11 20:06+0000\n"
"Last-Translator: Pencho Toncgev <ptonchev@gmail.com>\n"
"Language-Team: Bulgarian <http://translate.pkp.sfu.ca/projects/ojs/"
"importexport-doaj/bg_BG/>\n"
"Language: bg_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.doaj.displayName"
msgstr "Плъгин за DOAJ експорт"
msgid "plugins.importexport.doaj.description"
msgstr "Експорт на списание за DOAJ."
msgid "plugins.importexport.doaj.export.contact"
msgstr "Свържете се с DOAJ за включване"
msgid "plugins.importexport.doaj.registrationIntro"
msgstr ""
"Ако искате да регистрирате статии от OJS, моля, въведете своя DOAJ API ключ. "
"В противен случай все още ще можете да експортирате във формат DOAJ XML, но "
"не можете да регистрирате статиите си в DOAJ от OJS."
msgid "plugins.importexport.doaj.settings.form.apiKey"
msgstr "DOAJ API Ключ"
msgid "plugins.importexport.doaj.settings.form.apiKey.description"
msgstr "Ще намерите своя API ключ на вашата потребителска страница DOAJ."
msgid ""
"plugins.importexport.doaj.settings.form.automaticRegistration.description"
msgstr ""
"OJS ще депозира статии автоматично в DOAJ. Моля, обърнете внимание, че "
"обработката на това може да отнеме малко време след публикуването (например "
"в зависимост от конфигурацията на cronjob). Можете да проверите за всички "
"нерегистрирани статии."
msgid "plugins.importexport.doaj.settings.form.testMode.description"
msgstr ""
"Използвайте DOAJ test API (среда за тестване) за регистрация. Моля, не "
"забравяйте да премахнете тази опция за производството (след приключване на "
"тестовете)."
msgid "plugins.importexport.doaj.senderTask.name"
msgstr "Задача за автоматична регистрация на DOAJ"
msgid "plugins.importexport.doaj.register.error.mdsError"
msgstr "Депозитът не беше успешен! API на DOAJ върна грешка: '{$param}'."
msgid "plugins.importexport.doaj.cliUsage"
msgstr ""
"Употреба:\n"
"{$scriptName} {$pluginName} export [xmlFileName] [journal_path] articles "
"objectId1 [objectId2] ...\n"
@@ -0,0 +1,65 @@
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-30T06:56:44-07:00\n"
"PO-Revision-Date: 2020-02-06 19:21+0000\n"
"Last-Translator: Jordi LC <jordi.lacruz@uab.cat>\n"
"Language-Team: Catalan <http://translate.pkp.sfu.ca/projects/ojs/"
"importexport-doaj/ca/>\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.doaj.displayName"
msgstr "Mòdul d'exportació DOAJ"
msgid "plugins.importexport.doaj.description"
msgstr ""
"Exporta la revista al DOAJ i envia informació sobre la revista al "
"representant del DOAJ."
msgid "plugins.importexport.doaj.export.contact"
msgstr "Contacta amb el DOAJ per a l'inclusió"
msgid "plugins.importexport.doaj.registrationIntro"
msgstr ""
"Si desitgeu registrar articles des del mateix OJS, introduïu la vostra clau "
"API DOAJ. Si no ho feu encara podreu exportar-los al format DOAJ XML, però "
"no podreu registrar els articles amb DOAJ des de OJS."
msgid "plugins.importexport.doaj.settings.form.apiKey"
msgstr "Clau API DOAJ"
msgid "plugins.importexport.doaj.settings.form.apiKey.description"
msgstr "Trobareu la clau API a la vostra pàgina d'usuari/ària de DOAJ."
msgid ""
"plugins.importexport.doaj.settings.form.automaticRegistration.description"
msgstr ""
"OJS dipositarà automàticament els articles a DOAJ. Tingueu en compte que "
"aquest procés pot trigar una mica després de la publicació (p. ex., en "
"funció de la vostra configuració del cron). Podeu comprovar tots els "
"articles no registrats."
msgid "plugins.importexport.doaj.settings.form.testMode.description"
msgstr ""
"Utilitzeu la API de prova de DOAJ (entorn de prova) per al registre. No "
"oblideu desactivar aquesta opció en la versió de producció."
msgid "plugins.importexport.doaj.senderTask.name"
msgstr "Tasca de registre automàtic de DOAJ"
msgid "plugins.importexport.doaj.register.error.mdsError"
msgstr ""
"El dipòsit no ha tingut èxit! La API de DOAJ ha informat d'un error: "
"'{$param}'."
msgid "plugins.importexport.doaj.cliUsage"
msgstr ""
"Ús:\n"
"{$scriptName} {$pluginName} export [xmlFileName] [journal_path] articles "
"objectId1 [objectId2] ...\n"
@@ -0,0 +1,61 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2020-04-05 14:49+0000\n"
"Last-Translator: Hewa Salam Khalid <hewa.salam@koyauniversity.org>\n"
"Language-Team: Kurdish <http://translate.pkp.sfu.ca/projects/ojs/"
"importexport-doaj/ku/>\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 "plugins.importexport.doaj.displayName"
msgstr "گرێدانی هەناردەی DOAJ"
msgid "plugins.importexport.doaj.description"
msgstr "هەناردەکردنی گۆڤار بۆ DOAJ"
msgid "plugins.importexport.doaj.export.contact"
msgstr "ناونیشانی پەیوەندیکردن بە DOAJ بەمەبەستی بونە ئەندام"
msgid "plugins.importexport.doaj.registrationIntro"
msgstr ""
"ئەگەر دەتەوێت توێژینەوە تۆمار بکەیت لە چوارچێوەی سیستەمی گۆڤاری کراوە، تکایە "
"وشەی تێپەڕی DOAJ لێ بدە. دوای ئەوەش تۆ دەتوانیت کە فایلی شێوەی DOAJ XML "
"هەناردە بکەیت، بەڵام ناتوانیت گوتارەکانت لە DOAJ تۆمار بکەیت لە چوارچێوەی "
"سیستەمی گۆڤاری کراوەدا."
msgid "plugins.importexport.doaj.settings.form.apiKey"
msgstr "وشەی تێپەڕی ڕوکاری DOAJ"
msgid "plugins.importexport.doaj.settings.form.apiKey.description"
msgstr "تۆ دەتوانیت وشەی تێپەڕی خۆت لە ئەژماری کەسی خۆت لە DOAJ بدۆزیتەوە."
msgid ""
"plugins.importexport.doaj.settings.form.automaticRegistration.description"
msgstr ""
"سیستەمی گۆڤاری کراوە توێژینەوەکان بە شێوەی تۆماتیکی بۆ DOAJ دەنێرێت. تکایە "
"ئاگاداری ئەوە بە کە ئەم پرۆسەیە هەندێک کاتی دەوێت لە دوای بڵاوکردنەوەوە "
"(گرێدراوی شێوازی ڕێکخستنەکانتە). تۆ دەتوانیت وردبینی لە هەمو توێژینەوە "
"تۆمارنەکراوەکاندا بکەیت."
msgid "plugins.importexport.doaj.settings.form.testMode.description"
msgstr ""
"سیستەمی تاقیکردنەوەی ڕوکاری DOAJ بەکار بهێنە (تەنیا بۆ ئەزمونکردن) بۆ "
"تۆمارکردن. تکایە پێش بڵاوکردنەوە ئەم بژاردەیە لا ببە."
msgid "plugins.importexport.doaj.senderTask.name"
msgstr "ئەرکی تۆمارکردنی DOAJ بە شێوەی تۆماتیکی"
msgid "plugins.importexport.doaj.register.error.mdsError"
msgstr ""
"کارەکەت سەرکەوتو نەبو! گەڕایتەوە ڕوکاری جێبەجێکردنی DOAJ هەڵەکە ئەمەیە: "
"'{$param}'."
msgid "plugins.importexport.doaj.cliUsage"
msgstr ""
"شێوازی بەکارهێنان:\n"
"{$scriptName} {$pluginName} export [xmlFileName] [journal_path] articles "
"objectId1 [objectId2] ...\n"
@@ -0,0 +1,63 @@
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-11-19T11:05:39+00:00\n"
"PO-Revision-Date: 2020-04-08 11:27+0000\n"
"Last-Translator: Michal Jelínek <jelinek@synetix.cz>\n"
"Language-Team: Czech <http://translate.pkp.sfu.ca/projects/ojs/importexport-"
"doaj/cs/>\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.doaj.displayName"
msgstr "Plugin exportu pro DOAJ"
msgid "plugins.importexport.doaj.description"
msgstr ""
"Export časopisu pro DOAJ a odeslání emailu s informacemi o časopisu zástupci "
"DOAJ."
msgid "plugins.importexport.doaj.export.contact"
msgstr "Kontaktujte DOAJ pro vložení"
msgid "plugins.importexport.doaj.registrationIntro"
msgstr ""
"Chcete-li zaregistrovat články z OJS, zadejte prosím klíč DOAJ API. Jinak "
"budete i nadále moci exportovat do formátu DOAJ XML, ale nebudete moci "
"zaregistrovat své články s DOAJ z OJS."
msgid "plugins.importexport.doaj.settings.form.apiKey"
msgstr "DOAJ API klíč"
msgid "plugins.importexport.doaj.settings.form.apiKey.description"
msgstr "Klíč API naleznete na uživatelské stránce DOAJ."
msgid ""
"plugins.importexport.doaj.settings.form.automaticRegistration.description"
msgstr ""
"OJS automaticky uloží články do DOAJ. Vezměte prosím na vědomí, že to může "
"trvat krátkou dobu po zpracování publikace. Můžete si prohlédnout všechny "
"nezaregistrované články."
msgid "plugins.importexport.doaj.settings.form.testMode.description"
msgstr ""
"Pro registraci použijte testovací rozhraní API (testovací prostředí) DOAJ. "
"Nezapomeňte tuto možnost odstranit před produkční fází."
msgid "plugins.importexport.doaj.senderTask.name"
msgstr "Automatická registrace DOAJ"
msgid "plugins.importexport.doaj.register.error.mdsError"
msgstr ""
"Uložení nebylo úspěšné! DOAJ API vrátilo následující chybu: '{$param}'."
msgid "plugins.importexport.doaj.cliUsage"
msgstr ""
"Použití:\n"
"{$scriptName} {$pluginName} export [xmlFileName] [journal_path] articles "
"objectId1 [objectId2] ...\n"
@@ -0,0 +1,62 @@
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-11-19T11:05:39+00:00\n"
"PO-Revision-Date: 2020-02-08 03:27+0000\n"
"Last-Translator: Niels Erik Frederiksen <nef@kb.dk>\n"
"Language-Team: Danish <http://translate.pkp.sfu.ca/projects/ojs/importexport-"
"doaj/da/>\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.doaj.displayName"
msgstr "DOAJ Eksport-plugin"
msgid "plugins.importexport.doaj.description"
msgstr "Eksportér tidsskrift til DOAJ."
msgid "plugins.importexport.doaj.export.contact"
msgstr "Kontakt DOAJ for at blive inkluderet"
msgid "plugins.importexport.doaj.registrationIntro"
msgstr ""
"Hvis du gerne vil registrere artikler direkte fra OJS, skal du indtaste din "
"DOAJ API-nøgle. Hvis ikke, kan du stadig eksportere til DOAJ XML-format, men "
"du vil ikke kunne registrere dine artikler hos DOAJ direkte fra OJS."
msgid "plugins.importexport.doaj.settings.form.apiKey"
msgstr "DOAJ API-nøgle"
msgid "plugins.importexport.doaj.settings.form.apiKey.description"
msgstr "Du finder din API-nøgle på din DOAJ-brugerside."
msgid ""
"plugins.importexport.doaj.settings.form.automaticRegistration.description"
msgstr ""
"OJS vil automatisk deponere artikler hos DOAJ. Bemærk, at der, efter "
"publicering, kan gå lidt tid inden processen er fuldført. Du kan tjekke om "
"der skulle være artikler der er uregistrerede."
msgid "plugins.importexport.doaj.settings.form.testMode.description"
msgstr ""
"Brug DOAJ test-API (testmiljø) til registrering. Husk at fjerne denne "
"mulighed i forbindelse med produktionen."
msgid "plugins.importexport.doaj.senderTask.name"
msgstr "DOAJ automatiske registreringsopgave"
msgid "plugins.importexport.doaj.register.error.mdsError"
msgstr ""
"Deponeringen kunne ikke gennemføres! DOAJ API returnerede en fejl: "
"'{$param}'."
msgid "plugins.importexport.doaj.cliUsage"
msgstr ""
"Brug:\n"
"{$scriptName} {$pluginName} export [xmlFileName] [journal_path] articles "
"objectId1 [objectId2] ...\n"
@@ -0,0 +1,51 @@
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-30T06:56:44-07:00\n"
"PO-Revision-Date: 2020-01-31 16:21+0000\n"
"Last-Translator: Heike Riegler <heike.riegler@julius-kuehn.de>\n"
"Language-Team: German <http://translate.pkp.sfu.ca/projects/ojs/"
"importexport-doaj/de/>\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.doaj.displayName"
msgstr "DOAJ-Export-Plugin"
msgid "plugins.importexport.doaj.description"
msgstr "Zeitschrift für DOAJ exportieren."
msgid "plugins.importexport.doaj.export.contact"
msgstr "Kontaktieren Sie DOAJ zur Aufnahme"
msgid "plugins.importexport.doaj.registrationIntro"
msgstr "Wenn Sie Artikel aus OJS heraus registrieren möchten, geben Sie bitte Ihren DOAJ-API-Key ein. Ansonsten können Sie immer noch Metadaten in das DOAJ-XML-Format exportieren, aber keine Artikel aus OJS bei DOAJ registrieren."
msgid "plugins.importexport.doaj.settings.form.apiKey"
msgstr "DOAJ-API-Key"
msgid "plugins.importexport.doaj.settings.form.apiKey.description"
msgstr "Sie finden Ihren API-Key auf Ihrer DOAJ-Nutzerseite."
msgid "plugins.importexport.doaj.settings.form.automaticRegistration.description"
msgstr "OJS wird Artikel automatisch an DOAJ abliefern. Bitte beachten Sie, dass dieser Prozess eine gewisse Zeit nach der Veröffentlichung dauern kann (z.B. abhängig von Ihrer Cronjob-Konfiguration). Sie können nach allen unregistrierten Artikeln suchen."
msgid "plugins.importexport.doaj.settings.form.testMode.description"
msgstr "Die DOAJ-Test-API (Testumgebung) für die Registrierung nutzen. Bitte vergessen Sie nicht, diese Option für den Produktivbetrieb wieder abzuwählen."
msgid "plugins.importexport.doaj.senderTask.name"
msgstr "DOAJ automatische Registrierung"
msgid "plugins.importexport.doaj.register.error.mdsError"
msgstr "Ablieferung war nicht erfolgreich! Die DOAJ-API hat einen Fehler zurückgemeldet: '{$param}'."
msgid "plugins.importexport.doaj.cliUsage"
msgstr ""
"Verwendung:\n"
"{$scriptName} {$pluginName} export [xmlFileName] [journal_path] articles objectId1 [objectId2] ...\n"
""
@@ -0,0 +1,8 @@
# Weblate Admin <alec@smecher.bc.ca>, 2023.
msgid ""
msgstr ""
"Language: dsb\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Weblate\n"
@@ -0,0 +1,58 @@
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-30T06:56:44-07:00\n"
"PO-Revision-Date: 2019-09-30T06:56: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"
msgid "plugins.importexport.doaj.displayName"
msgstr "DOAJ Export Plugin"
msgid "plugins.importexport.doaj.description"
msgstr "Export Journal for DOAJ."
msgid "plugins.importexport.doaj.export.contact"
msgstr "Contact DOAJ for inclusion"
msgid "plugins.importexport.doaj.registrationIntro"
msgstr ""
"If you would like to register articles from within OJS, please enter your "
"DOAJ API Key. Else, you'll still be able to export into the DOAJ XML format "
"but you cannot register your articles with DOAJ from within OJS."
msgid "plugins.importexport.doaj.settings.form.apiKey"
msgstr "DOAJ API Key"
msgid "plugins.importexport.doaj.settings.form.apiKey.description"
msgstr "You will find your API key on your DOAJ user page."
msgid ""
"plugins.importexport.doaj.settings.form.automaticRegistration.description"
msgstr ""
"OJS will deposit articles automatically to DOAJ. Please note that this may "
"take a short amount of time after publication to process (e.g. depending on "
"your cronjob configuration). You can check for all unregistered articles."
msgid "plugins.importexport.doaj.settings.form.testMode.description"
msgstr ""
"Use the DOAJ test API (testing environment) for the registration. Please do "
"not forget to remove this option for the production."
msgid "plugins.importexport.doaj.senderTask.name"
msgstr "DOAJ automatic registration task"
msgid "plugins.importexport.doaj.register.error.mdsError"
msgstr ""
"Deposit was not successful! The DOAJ API returned an error: '{$param}'."
msgid "plugins.importexport.doaj.cliUsage"
msgstr ""
"Usage:\n"
"{$scriptName} {$pluginName} export [xmlFileName] [journal_path] articles "
"objectId1 [objectId2] ...\n"
@@ -0,0 +1,59 @@
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-11-19T11:05:39+00:00\n"
"PO-Revision-Date: 2019-11-19T11:05:39+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.doaj.displayName"
msgstr "Módulo de exportación DOAJ"
msgid "plugins.importexport.doaj.description"
msgstr "Exportar la revista a DOAJ."
msgid "plugins.importexport.doaj.export.contact"
msgstr "Contactar con DOAJ para la inclusión"
msgid "plugins.importexport.doaj.registrationIntro"
msgstr ""
"Si desea registrar artículos desde el propio OJS, introduzca su clave API "
"DOAJ. Si no lo hace, todavía podrá exportarlos al formato DOAJ XML, pero no "
"podrá registrar los artículos con DOAJ desde OJS."
msgid "plugins.importexport.doaj.settings.form.apiKey"
msgstr "Clave API DOAJ"
msgid "plugins.importexport.doaj.settings.form.apiKey.description"
msgstr "Encontrará su clave API en su página de usuario/a de DOAJ."
msgid ""
"plugins.importexport.doaj.settings.form.automaticRegistration.description"
msgstr ""
"OJS depositará los artículos automáticamente en DOAJ. Tenga en cuenta que "
"este proceso puede llevar cierto tiempo tras la publicación (p.ej. en "
"función de la configuración cron). Puede comprobar todos los artículos no "
"registrados."
msgid "plugins.importexport.doaj.settings.form.testMode.description"
msgstr ""
"Utilice la API de prueba de DOAJ (entorno de prueba) para el registro. No "
"olvide desactivar esta opción en la versión de producción."
msgid "plugins.importexport.doaj.senderTask.name"
msgstr "Tarea de registro automático de DOAJ"
msgid "plugins.importexport.doaj.register.error.mdsError"
msgstr ""
"¡El depósito no tuvo éxito! La API DOAJ informó de un error: '{$param}'."
msgid "plugins.importexport.doaj.cliUsage"
msgstr ""
"Uso:\n"
"{$scriptName} {$pluginName} export [xmlFileName] [journal_path] articles "
"objectId1 [objectId2] ...\n"
@@ -0,0 +1,51 @@
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-11-19T11:05:39+00:00\n"
"PO-Revision-Date: 2019-11-19T11:05:39+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.doaj.displayName"
msgstr "DOAJ esportatzeko plugina"
msgid "plugins.importexport.doaj.description"
msgstr ""
"Aldizkaria esportatu DOAJerako eta DOAJen ordezkariei aldizkariari buruzko "
"informazioa bidali posta elektronikoz."
msgid "plugins.importexport.doaj.export.contact"
msgstr "Sartzeko, jarri harremanetan DOAJ-ekin."
msgid "plugins.importexport.doaj.registrationIntro"
msgstr ""
msgid "plugins.importexport.doaj.settings.form.apiKey"
msgstr ""
msgid "plugins.importexport.doaj.settings.form.apiKey.description"
msgstr ""
msgid ""
"plugins.importexport.doaj.settings.form.automaticRegistration.description"
msgstr ""
msgid "plugins.importexport.doaj.settings.form.testMode.description"
msgstr ""
msgid "plugins.importexport.doaj.senderTask.name"
msgstr ""
msgid "plugins.importexport.doaj.register.error.mdsError"
msgstr ""
msgid "plugins.importexport.doaj.cliUsage"
msgstr ""
"Usage:\n"
"{$scriptName} {$pluginName} export [xmlFileName] [journal_path] articles "
"objectId1 [objectId2] ...\n"
@@ -0,0 +1,56 @@
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-11-19T11:05:39+00:00\n"
"PO-Revision-Date: 2019-11-19T11:05:39+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.doaj.displayName"
msgstr "افزونه برون دهی DOAJ"
msgid "plugins.importexport.doaj.description"
msgstr "برون دهی اطلاعات مجله به DOAJ"
msgid "plugins.importexport.doaj.export.contact"
msgstr "برای استفاده از DOAJ با آن تماس بگیرید"
msgid "plugins.importexport.doaj.registrationIntro"
msgstr ""
"اگر می خواهید مقالات را در DOAJ ثبت کنید، لطفا کلید API DOAJ خود را وارد "
"کنید. در غیر اینصورت، همچنان قادر به برون دهی به فرمت XML DOAJ هستید، اما "
"نمیتوانید مقالات خود را در DOAJ ثبت کنید"
msgid "plugins.importexport.doaj.settings.form.apiKey"
msgstr "کلید DOAJ API"
msgid "plugins.importexport.doaj.settings.form.apiKey.description"
msgstr "کلید API خود را در صفحه کاربری DOAJ خواهید یافت."
msgid ""
"plugins.importexport.doaj.settings.form.automaticRegistration.description"
msgstr ""
"سامانه مقالات را به طور خودکار در DOAJ ثبت می کند. لطفا توجه داشته باشید که "
"ممکن است پس از انتشار ، زمان کوتاهی برای پردازش طی شود. شما می توانید تمام "
"مقالات ثبت نشده را تیک بزنید."
msgid "plugins.importexport.doaj.settings.form.testMode.description"
msgstr ""
"از API تست DOAJ (محیط آزمایش) برای ثبت استفاده کنید. لطفا فراموش نکنید که "
"این گزینه را در زمان انتشار محتویات حذف کنید."
msgid "plugins.importexport.doaj.senderTask.name"
msgstr "عملیات ثبت خودکار DOAJ"
msgid "plugins.importexport.doaj.register.error.mdsError"
msgstr "ثبت موفقیت آمیز نبود. اجرای API با خطای زیر متوقف شد: {$param}"
msgid "plugins.importexport.doaj.cliUsage"
msgstr ""
"نحوه استفاده: {$scriptName} {$pluginName} export [xmlFileName] "
"[journal_path] articles objectId1 [objectId2] ..."
@@ -0,0 +1,60 @@
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-11-19T11:05:39+00:00\n"
"PO-Revision-Date: 2020-03-18 07:36+0000\n"
"Last-Translator: Antti-Jussi Nygård <ajnyga@gmail.com>\n"
"Language-Team: Finnish <http://translate.pkp.sfu.ca/projects/ojs/"
"importexport-doaj/fi/>\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.doaj.displayName"
msgstr "DOAJ-vientilisäosa"
msgid "plugins.importexport.doaj.description"
msgstr "Vie julkaisu DOAJ-tietokantaan."
msgid "plugins.importexport.doaj.export.contact"
msgstr "Muodosta yhteys DOAJ:iin sisällyttämistä varten"
msgid "plugins.importexport.doaj.registrationIntro"
msgstr ""
"Jos haluat rekisteröidä artikkeleita OJS-järjestelmästä käsin, anna DOAJ API-"
"avain. Ilman avainta voit edelleen ladata tiedot XML-muodossa ja viedä ne "
"vierailemalla DOAJ:n verkkopalvelussa."
msgid "plugins.importexport.doaj.settings.form.apiKey"
msgstr "DOAJ API-avain"
msgid "plugins.importexport.doaj.settings.form.apiKey.description"
msgstr "API-avain löytyy DOAJ:n verkkopalvelusta."
msgid ""
"plugins.importexport.doaj.settings.form.automaticRegistration.description"
msgstr ""
"OJS tallentaa artikkelien tiedot automaattisesti DOAJ-tietokantaan. Huomaa, "
"että artikkelin julkaisun jälkeen tietojen viennissä on pieni viive. Voit "
"tarkistaa listauksesta mitkä artikkelit ovat rekisteröimättä."
msgid "plugins.importexport.doaj.settings.form.testMode.description"
msgstr ""
"Käytä DOAJ-palvelun testirajapintaa. Poista tämä valinta, kun haluat "
"aloittaa artikkeleiden rekisteröinnin."
msgid "plugins.importexport.doaj.senderTask.name"
msgstr "DOAJ automaattisen rekisteröinnin tehtävä"
msgid "plugins.importexport.doaj.register.error.mdsError"
msgstr "Talletus ei onnistunut! DOAJ API palautti virheen: '{$param}'."
msgid "plugins.importexport.doaj.cliUsage"
msgstr ""
"Käyttö:\n"
"{$scriptName} {$pluginName} export [xmlFileName] [journal_path] articles "
"objectId1 [objectId2] ...\n"
@@ -0,0 +1,66 @@
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-30T06:56:44-07:00\n"
"PO-Revision-Date: 2020-01-28 23:48+0000\n"
"Last-Translator: Marie-Hélène Vézina [UdeMontréal] <marie-helene."
"vezina@umontreal.ca>\n"
"Language-Team: French (Canada) <http://translate.pkp.sfu.ca/projects/ojs/"
"importexport-doaj/fr_CA/>\n"
"Language: fr_CA\n"
"MIME-Version: 1.0\n"
"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.doaj.displayName"
msgstr "Plugiciel d'exportation DOAJ"
msgid "plugins.importexport.doaj.description"
msgstr "Exporter la revue vers DOAJ."
msgid "plugins.importexport.doaj.export.contact"
msgstr "Communiquer avec DOAJ pour intégration"
msgid "plugins.importexport.doaj.registrationIntro"
msgstr ""
"Si vous souhaitez enregistrer des articles à partir d'OJS, veuillez entrer "
"votre clé API DOAJ. Sinon, vous pourrez toujours exporter en format XML "
"DOAJ, mais vous ne pourrez pas enregistrer vos articles avec DOAJ depuis OJS."
msgid "plugins.importexport.doaj.settings.form.apiKey"
msgstr "Clé API DOAJ"
msgid "plugins.importexport.doaj.settings.form.apiKey.description"
msgstr ""
"Vous trouverez votre clé API sur votre page d'utilisateur-trice du site de "
"DOAJ."
msgid ""
"plugins.importexport.doaj.settings.form.automaticRegistration.description"
msgstr ""
"OJS déposera les articles automatiquement chez DOAJ. Veuillez noter que cela "
"peut prendre un peu de temps suite à la publication pour le traitement (par "
"exemple en fonction de votre configuration cronjob). Vous pouvez vérifier "
"les articles non enregistrés."
msgid "plugins.importexport.doaj.settings.form.testMode.description"
msgstr ""
"Utiliser l'API test DOAJ (environnement de test) pour l'enregistrement. "
"N'oubliez pas d'enlever cette option en mode production."
msgid "plugins.importexport.doaj.senderTask.name"
msgstr "Tâche d'enregistrement automatique DOAJ"
msgid "plugins.importexport.doaj.register.error.mdsError"
msgstr ""
"Le dépôt a échoué ! L'API DOAJ a retourné le message d'erreur suivant : "
"'{$param}'."
msgid "plugins.importexport.doaj.cliUsage"
msgstr ""
"Utilisation :\n"
"{$scriptName} {$pluginName} export [xmlFileName] [journal_path] articles "
"objectId1 [objectId2] ...\n"
@@ -0,0 +1,61 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2020-08-31 02:16+0000\n"
"Last-Translator: Paul Heckler <paul.d.heckler@gmail.com>\n"
"Language-Team: French <http://translate.pkp.sfu.ca/projects/ojs/importexport-"
"doaj/fr/>\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 3.9.1\n"
msgid "plugins.importexport.doaj.displayName"
msgstr "Module d'exportation DOAJ"
msgid "plugins.importexport.doaj.description"
msgstr "Exporter la revue pour DOAJ."
msgid "plugins.importexport.doaj.export.contact"
msgstr "Contacter DOAJ pour inclusion"
msgid "plugins.importexport.doaj.registrationIntro"
msgstr ""
"Si vous souhaitez enregistrer des articles depuis OJS, veuillez entrer votre "
"clé API DOAJ. À défaut, vous pourrez toujours exporter au format XML DOAJ, "
"mais vous ne pourrez pas enregistrer vos articles avec DOAJ depuis OJS."
msgid "plugins.importexport.doaj.settings.form.apiKey"
msgstr "Clé API DOAJ"
msgid "plugins.importexport.doaj.settings.form.apiKey.description"
msgstr ""
"Vous trouverez votre clé API sur votre page d'utilisateur ou d'utilisatrice "
"de DOAJ."
msgid ""
"plugins.importexport.doaj.settings.form.automaticRegistration.description"
msgstr ""
"OJS déposera les articles automatiquement auprès de DOAJ. Veuillez noter que "
"le traitement peut prendre un peu de temps suite à la publication (par "
"exemple en fonction de votre configuration cronjob). Vous pouvez vérifier "
"l'ensemble des articles non enregistrés."
msgid "plugins.importexport.doaj.settings.form.testMode.description"
msgstr ""
"Utiliser l'API de test DOAJ (environnement de test) pour l'enregistrement. "
"N'oubliez pas de désactiver cette option en mode production."
msgid "plugins.importexport.doaj.senderTask.name"
msgstr "Tâche d'enregistrement automatique DOAJ"
msgid "plugins.importexport.doaj.register.error.mdsError"
msgstr ""
"Le dépôt a échoué ! l'API DOAJ a retourné l'erreur suivante : '{$param}'."
msgid "plugins.importexport.doaj.cliUsage"
msgstr ""
"Utilisation :\n"
"{$scriptName} {$pluginName} export [xmlFileName] [journal_path] articles "
"objectId1 [objectId2] ...\n"
@@ -0,0 +1,59 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2021-05-20 12:35+0000\n"
"Last-Translator: Real Academia Galega <reacagal@gmail.com>\n"
"Language-Team: Galician <http://translate.pkp.sfu.ca/projects/ojs/"
"importexport-doaj/gl_ES/>\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.doaj.displayName"
msgstr "Complemento de exportación DOAJ"
msgid "plugins.importexport.doaj.description"
msgstr ""
"Exporta a revista ao DOAJ e envía información acerca dela ao representante "
"do DOAJ."
msgid "plugins.importexport.doaj.export.contact"
msgstr "Contacta con DOAJ para inclusión"
msgid "plugins.importexport.doaj.registrationIntro"
msgstr ""
"Se quere rexistrar artigos desde o propio OJS, introduza a súa clave API "
"DOAJ. De non facelo, aínda poderá exportalos ao formato DOAJ XML, pero non "
"poderá rexistrar os artigos con DOAJ desde OJS."
msgid "plugins.importexport.doaj.settings.form.apiKey"
msgstr "Clave API DOAJ"
msgid "plugins.importexport.doaj.settings.form.apiKey.description"
msgstr "Atopará a clave API na súa páxina de usuario/a de DOAJ."
msgid ""
"plugins.importexport.doaj.settings.form.automaticRegistration.description"
msgstr ""
"OJS depositará os artigos automaticamente en DOAJ. Teña en conta que este "
"proceso pode demorarse algún tempo tras a publicación (p.ex. en función da "
"súa configuración cron). Pode comprobar todos os artigos non rexistrados."
msgid "plugins.importexport.doaj.settings.form.testMode.description"
msgstr ""
"Utilice a API de proba de DOAJ (ambiente de proba) para o rexistro. Non se "
"esqueza de desactivar esta opción na versión de produción."
msgid "plugins.importexport.doaj.senderTask.name"
msgstr "Tarefa de rexistro automático de DOAJ"
msgid "plugins.importexport.doaj.register.error.mdsError"
msgstr "O depósito non tivo éxito! A API DOAJ informou dun erro: '{$param}'."
msgid "plugins.importexport.doaj.cliUsage"
msgstr ""
"Uso:\n"
"{$scriptName} {$pluginName} export [xmlFileName] [journal_path] articles "
"objectId1 [objectId2] ...\n"
@@ -0,0 +1,51 @@
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-11-19T11:05:39+00:00\n"
"PO-Revision-Date: 2019-11-19T11:05:39+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.doaj.displayName"
msgstr "Dodatak za iznošenje u DOAJ"
msgid "plugins.importexport.doaj.description"
msgstr ""
"Ovaj dodatak iznosi časopis za DOAJ i omogućuje slanje informacija o "
"časopisu DOAJ kontaktu"
msgid "plugins.importexport.doaj.export.contact"
msgstr ""
msgid "plugins.importexport.doaj.registrationIntro"
msgstr ""
msgid "plugins.importexport.doaj.settings.form.apiKey"
msgstr ""
msgid "plugins.importexport.doaj.settings.form.apiKey.description"
msgstr ""
msgid ""
"plugins.importexport.doaj.settings.form.automaticRegistration.description"
msgstr ""
msgid "plugins.importexport.doaj.settings.form.testMode.description"
msgstr ""
msgid "plugins.importexport.doaj.senderTask.name"
msgstr ""
msgid "plugins.importexport.doaj.register.error.mdsError"
msgstr ""
msgid "plugins.importexport.doaj.cliUsage"
msgstr ""
"Primjena:\n"
"{$scriptName} {$pluginName} export [xmlNazivDatoteke] [putanja_časopisa] "
"articles objectId1 [objectId2] ...\n"
@@ -0,0 +1,8 @@
# Weblate Admin <alec@smecher.bc.ca>, 2023.
msgid ""
msgstr ""
"Language: hsb\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Weblate\n"
@@ -0,0 +1,53 @@
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-02-13T21:07:39+00:00\n"
"PO-Revision-Date: 2020-02-21 11:36+0000\n"
"Last-Translator: Gabor Klinger <ojshelp@konyvtar.mta.hu>\n"
"Language-Team: Hungarian <http://translate.pkp.sfu.ca/projects/ojs/"
"importexport-doaj/hu/>\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.doaj.displayName"
msgstr "DOAJ Export Plugin"
msgid "plugins.importexport.doaj.description"
msgstr "Folyóirat exportálása DOAJ-ba."
msgid "plugins.importexport.doaj.export.contact"
msgstr "Lépjen kapcsolatba a DOAJ a bekerülés érdekében"
msgid "plugins.importexport.doaj.registrationIntro"
msgstr "Ha cikkeket szeretne regisztrálni a OJS-en belülről, kérjük, írja be a DOAJ API kulcsát. Egyébként Ön továbbra is képes lesz exportálni a DOAJ XML formátumba, de nem tud regisztrálni cikkeket a DOAJ-ba az OJS-en belülről."
msgid "plugins.importexport.doaj.settings.form.apiKey"
msgstr "DOAJ API Kulcs"
msgid "plugins.importexport.doaj.settings.form.apiKey.description"
msgstr "Az API kulcsát a saját DOAJ felhasználói oldalán találja."
msgid "plugins.importexport.doaj.settings.form.automaticRegistration.description"
msgstr "Az OJS automatikusan betölti a cikkeket a DOAJ-ba. Felhívjuk figyelmét, hogy a közzététel után a feldolgozáshoz rövid idő szükséges. Ellenőrizheti az összes nem regisztrált cikket."
msgid "plugins.importexport.doaj.settings.form.testMode.description"
msgstr ""
"Használja a DOAJ teszt API-t (teszt környezet) a regisztrációhoz. Kérjük, ne "
"felejtse el eltávolítani ezt az opciót megjelentetéskor."
msgid "plugins.importexport.doaj.senderTask.name"
msgstr "DOAJ automatikus regisztrációs feladat"
msgid "plugins.importexport.doaj.register.error.mdsError"
msgstr "A beküldés nem volt sikeres! A DOAJ API hibát adott vissza: '{$param}'."
msgid "plugins.importexport.doaj.cliUsage"
msgstr ""
"Használat:\n"
"{$scriptName} {$pluginName} export [xmlFileName] [journal_path] articles objectId1 [objectId2] ...\n"
""
@@ -0,0 +1,60 @@
# Artashes Mirzoyan <amirzoyan@sci.am>, 2022.
# Tigran Zargaryan <tigran@flib.sci.am>, 2022.
msgid ""
msgstr ""
"PO-Revision-Date: 2022-07-01 06:26+0000\n"
"Last-Translator: Tigran Zargaryan <tigran@flib.sci.am>\n"
"Language-Team: Armenian <http://translate.pkp.sfu.ca/projects/ojs/"
"importexport-doaj/hy_AM/>\n"
"Language: hy_AM\n"
"MIME-Version: 1.0\n"
"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.doaj.displayName"
msgstr "DOAJ արտահանման պլագին"
msgid "plugins.importexport.doaj.description"
msgstr "Արտահանեք ամսագրերը DOAJ-ի համար."
msgid "plugins.importexport.doaj.export.contact"
msgstr "Ներառման համար դիմեք DOAJ-ին"
msgid "plugins.importexport.doaj.registrationIntro"
msgstr ""
"Եթե ցանկանում եք հոդվածներ գրանցել OJS-ից, խնդրում ենք մուտքագրել ձեր DOAJ "
"API բանալին: Հակառակ դեպքում, դուք դեռ կկարողանաք արտահանել DOAJ XML "
"ձևաչափով, բայց դուք չեք կարող գրանցել ձեր հոդվածները DOAJ-ում OJS-ից:"
msgid "plugins.importexport.doaj.settings.form.apiKey"
msgstr "DOAJ API բանալի"
msgid "plugins.importexport.doaj.settings.form.apiKey.description"
msgstr "Դուք կգտնեք ձեր API բանալին ձեր DOAJ օգտվողի էջում:"
msgid ""
"plugins.importexport.doaj.settings.form.automaticRegistration.description"
msgstr ""
"OJS-ը հոդվածները ինքնաշխատ կերպով կավանդադրի DOAJ-ին: Խնդրում ենք նկատի "
"ունենալ, որ դրա մշակումը հրապարակումից հետո կարող է կարճ ժամանակ տևել "
"(օրինակ՝ կախված ձեր cronjob-ի կազմաձևից): Դուք կարող եք ստուգել բոլոր "
"չգրանցված հոդվածները:"
msgid "plugins.importexport.doaj.settings.form.testMode.description"
msgstr ""
"Գրանցման համար օգտագործեք DOAJ թեստային API (փորձարկման միջավայր): Խնդրում "
"ենք մի մոռացեք հեռացնել այս տարբերակը արտադրության դեպքում:"
msgid "plugins.importexport.doaj.senderTask.name"
msgstr "DOAJ ինքնաշխատ գրանցման առաջադրանք"
msgid "plugins.importexport.doaj.register.error.mdsError"
msgstr "Ավանդադրումը չի հաջողվել: DOAJ API-ն վերադարձրեց սխալ՝ {$param}'."
msgid "plugins.importexport.doaj.cliUsage"
msgstr ""
"Օգտագործումը:\n"
"{$scriptName} {$pluginName} export [xmlFileName] [journal_path] articles "
"objectId1 [objectId2] ...\n"
@@ -0,0 +1,63 @@
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-11-19T11:05:40+00:00\n"
"PO-Revision-Date: 2020-01-30 08:35+0000\n"
"Last-Translator: Fransisca H <sisca.ojs@gmail.com>\n"
"Language-Team: Indonesian <http://translate.pkp.sfu.ca/projects/ojs/"
"importexport-doaj/id/>\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.importexport.doaj.displayName"
msgstr "Plugin Ekspor DOAJ"
msgid "plugins.importexport.doaj.description"
msgstr "Ekspor Jurnal untuk DOAJ."
msgid "plugins.importexport.doaj.export.contact"
msgstr "Kontak DOAJ untuk pencantuman"
msgid "plugins.importexport.doaj.registrationIntro"
msgstr ""
"Jika Anda ingin mendaftarkan artikel melalui aplikasi OJS, mohon masukkan "
"kunci API DOAJ Anda. Jika tidak dimasukkan, Anda akan tetap dapat mengekspor "
"artikel ke dalam format XML yang digunakan DOAJ namun Anda tidak dapat "
"mendaftarkan artikel secara otomatis melalui aplikasi OJS."
msgid "plugins.importexport.doaj.settings.form.apiKey"
msgstr "Kunci API DOAJ"
msgid "plugins.importexport.doaj.settings.form.apiKey.description"
msgstr "Anda akan menemukan kunci API Anda di halaman pengguna DOAJ."
msgid ""
"plugins.importexport.doaj.settings.form.automaticRegistration.description"
msgstr ""
"OJS akan mendepositokan artikel secara otomatis ke DOAJ. Mohon dicatat bahwa "
"hal ini mungkin membutuhkan sedikit waktu proses (misal, bergantung pada "
"konfigurasi cronjob Anda). Anda dapat melakukan pemeriksaan untuk semua "
"artikel yang belum didaftarkan."
msgid "plugins.importexport.doaj.settings.form.testMode.description"
msgstr ""
"Gunakan API ujicoba DOAJ (dalam lingkungan ujicoba) untuk pendaftaran. Mohon "
"tidak lupa untuk membuang pilihan ini pada sistem produksi."
msgid "plugins.importexport.doaj.senderTask.name"
msgstr "Tugas registrasi otomatis DOAJ"
msgid "plugins.importexport.doaj.register.error.mdsError"
msgstr ""
"Registrasi tidak berhasil! API DOAJ memberikan pesan kesalahan: '{$param}'."
msgid "plugins.importexport.doaj.cliUsage"
msgstr ""
"Kegunaan:\n"
"{$scriptName} {$pluginName} export [xmlFileName] [journal_path] articles "
"objectId1 [objectId2] ...\n"
@@ -0,0 +1,42 @@
# Kolbrun Reynisdottir <kolla@probus.is>, 2022.
msgid ""
msgstr ""
"Language: is_IS\n"
"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.doaj.displayName"
msgstr ""
msgid "plugins.importexport.doaj.description"
msgstr ""
msgid "plugins.importexport.doaj.export.contact"
msgstr ""
msgid "plugins.importexport.doaj.registrationIntro"
msgstr ""
msgid "plugins.importexport.doaj.settings.form.apiKey"
msgstr ""
msgid "plugins.importexport.doaj.settings.form.apiKey.description"
msgstr ""
msgid ""
"plugins.importexport.doaj.settings.form.automaticRegistration.description"
msgstr ""
msgid "plugins.importexport.doaj.settings.form.testMode.description"
msgstr ""
msgid "plugins.importexport.doaj.senderTask.name"
msgstr ""
msgid "plugins.importexport.doaj.register.error.mdsError"
msgstr ""
msgid "plugins.importexport.doaj.cliUsage"
msgstr ""
@@ -0,0 +1,63 @@
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-11-19T11:05:40+00:00\n"
"PO-Revision-Date: 2019-12-28 17:34+0000\n"
"Last-Translator: Lucia Steele <lucia.steele@aboutscience.eu>\n"
"Language-Team: Italian <http://translate.pkp.sfu.ca/projects/ojs/"
"importexport-doaj/it/>\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.doaj.displayName"
msgstr "Export per DOAJ"
msgid "plugins.importexport.doaj.description"
msgstr ""
"Esporta i metadati degli articoli e della rivista per DOAJ e invia una email "
"di informazioni sulla rivista a DOAJ."
msgid "plugins.importexport.doaj.export.contact"
msgstr "Suggerisci la rivista a DOAJ"
msgid "plugins.importexport.doaj.registrationIntro"
msgstr ""
"Se vuoi registrare gli articoli da OJS, inserisci la tua DOAJ API key. "
"Altrimenti puoi sempre esportare i dati nel formato DOAJ XML, ma allora non "
"potrai registrare i dati in DOAJ direttamente con OJS."
msgid "plugins.importexport.doaj.settings.form.apiKey"
msgstr "DOAJ API Key"
msgid "plugins.importexport.doaj.settings.form.apiKey.description"
msgstr "Trovi la tua API key dentro la tua pagina utente di DOAJ."
msgid ""
"plugins.importexport.doaj.settings.form.automaticRegistration.description"
msgstr ""
"OJS depositerà in automatico gli articoli in DOAJ. Per favore nota che ci "
"vuole un certo tempo dalla pubblicazione per lavorare la registrazione. Puoi "
"controllare tutti gli articoli non registrati."
msgid "plugins.importexport.doaj.settings.form.testMode.description"
msgstr ""
"Usa l'API di test di DOAJ per le registrazioni. Non ti dimenticare di "
"rimuovere questa opzione prima di andare in produzione."
msgid "plugins.importexport.doaj.senderTask.name"
msgstr "Nome del task di registrazione automatica su DOAJ"
msgid "plugins.importexport.doaj.register.error.mdsError"
msgstr ""
"Il deposito non è andato bene, L'API DOAJ ha dato come errore: '{$param}'."
msgid "plugins.importexport.doaj.cliUsage"
msgstr ""
"Uso:\n"
"{$scriptName} {$pluginName} export [xmlFileName] [journal_path] articles "
"objectId1 [objectId2] ...\n"
@@ -0,0 +1,57 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2021-02-07 10:53+0000\n"
"Last-Translator: Dimitri Gogelia <dimitri.gogelia@iliauni.edu.ge>\n"
"Language-Team: Georgian <http://translate.pkp.sfu.ca/projects/ojs/"
"importexport-doaj/ka_GE/>\n"
"Language: ka_GE\n"
"MIME-Version: 1.0\n"
"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.doaj.displayName"
msgstr "მოდული „ექსპორტი DOAJ-ში“"
msgid "plugins.importexport.doaj.description"
msgstr "ახდენს ჟურნალის ექსპორტს DOAJ-ში."
msgid "plugins.importexport.doaj.export.contact"
msgstr "DOAJ-თან დაკავშირება ჟურნალის დასამატებლად"
msgid "plugins.importexport.doaj.registrationIntro"
msgstr ""
"თუ გსურთ სტატიის რეგისტრაცია უშუალოდ OJS-იდან, გთხოვთ შეიტანეთ API DOAJ "
"გასაღები. თუ არ გაქვთ ეს გასაღები, მაინც შეძლებთ სტატიის ექსპორტს DOAJ XML-"
"ში, მაგრამ ვერ შეძლებთ სტატიის რეგისტრაციას DOAJ-ში უშუალოდ OJS-იდან."
msgid "plugins.importexport.doaj.settings.form.apiKey"
msgstr "DOAJ API გასაღები"
msgid "plugins.importexport.doaj.settings.form.apiKey.description"
msgstr "API გასაღებს ნახავთ DOAJ-ის მომხმარებლის გვერდზე."
msgid ""
"plugins.importexport.doaj.settings.form.automaticRegistration.description"
msgstr ""
"OJS ავტომატურად განათავსებს სტატიას DOAJ-ში. გთხოვთ მიაქციოთ ყურადღება, რომ "
"ამას შესაძლოა დასჭირდეს გარკვეული დრო დამუშავებაზე (მაგალითად, თქვენი cron-"
"ის პარამეტრებზე). თქვენ შეგიძლიათ შეამოწმოთ ყველა დაურეგისტრირებელი სტატია."
msgid "plugins.importexport.doaj.settings.form.testMode.description"
msgstr ""
"ტექსტური API DOAJ-ის გამოყენება (ტესტირების გარემო) რეგისტრაციისათვის. "
"გთხოვთ, არ დაგავიწყდეთ ამ პარამეტრის გათიშვა რეალური მუშაობისას."
msgid "plugins.importexport.doaj.senderTask.name"
msgstr "DOAJ-ის ავტომატური რეგისტრაციის ამოცანა"
msgid "plugins.importexport.doaj.register.error.mdsError"
msgstr "განტავსება ვერ მოხერხდა! API DOAJ-მა დააბრუნა შეცდომა: „{$param}“."
msgid "plugins.importexport.doaj.cliUsage"
msgstr ""
"გამოძახება:\n"
"{$scriptName} {$pluginName} export [xmlFileName] [journal_path] articles "
"objectId1 [objectId2] ...\n"
@@ -0,0 +1,60 @@
# Madi <nmdbzk@gmail.com>, 2021.
msgid ""
msgstr ""
"PO-Revision-Date: 2021-07-14 06:03+0000\n"
"Last-Translator: Madi <nmdbzk@gmail.com>\n"
"Language-Team: Kazakh <http://translate.pkp.sfu.ca/projects/ojs/importexport-"
"doaj/kk_KZ/>\n"
"Language: kk_KZ\n"
"MIME-Version: 1.0\n"
"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.doaj.displayName"
msgstr "\"Doaj экспорттау\" модулі"
msgid "plugins.importexport.doaj.description"
msgstr "DOAJ жүйесіне журналды экспорттайды."
msgid "plugins.importexport.doaj.export.contact"
msgstr "Журналды қосу үшін DOAJ-бен хабарласыңыз"
msgid "plugins.importexport.doaj.registrationIntro"
msgstr ""
"Егер сіз мақалаларды тікелей OJS-тен тіркегіңіз келсе, DOAJ API кілтін "
"енгізіңіз. Сізде DOAJ API кілті болмаған жағдайда да DOC XML форматына "
"экспорттай аласыз, бірақ мақалаларыңызды OJS-тен DOAJ-бен тікелей тіркей "
"алмайсыз."
msgid "plugins.importexport.doaj.settings.form.apiKey"
msgstr "DOAJ API кілті"
msgid "plugins.importexport.doaj.settings.form.apiKey.description"
msgstr "Сіз API кілтін DOAJ сайтындағы қолданушы парағынан таба аласыз."
msgid ""
"plugins.importexport.doaj.settings.form.automaticRegistration.description"
msgstr ""
"OJS мақалаларды DOAJ-ке автоматты түрде сақтайды. Бұл өңдеуден белгілі бір "
"уақытты қажет етуі мүмкін екенін ескеріңіз (мысалы, cronjob параметрлеріне "
"байланысты). Сіз барлық тіркелмеген мақалаларды тексере аласыз."
msgid "plugins.importexport.doaj.settings.form.testMode.description"
msgstr ""
"Тіркелу үшін DOAJ тест API (тестілеу ортасы) пайдаланыңыз. Нақты жұмыс үшін "
"осы параметрді алып тастауды ұмытпаңыз."
msgid "plugins.importexport.doaj.senderTask.name"
msgstr "DOAJ автоматты тіркеу"
msgid "plugins.importexport.doaj.register.error.mdsError"
msgstr ""
"Депозит сәтсіз аяқталды! DOAJ API келесі қате кодын қайтарды: \"{$param}\"."
msgid "plugins.importexport.doaj.cliUsage"
msgstr ""
"Қолдану реті:\n"
"{$scriptName} {$pluginName} export [xmlFileName] [journal_path] articles "
"objectId1 [objectId2] ...\n"
@@ -0,0 +1,60 @@
# Ieva Tiltina <pastala@gmail.com>, 2024.
msgid ""
msgstr ""
"PO-Revision-Date: 2024-02-19 11:07+0000\n"
"Last-Translator: Ieva Tiltina <pastala@gmail.com>\n"
"Language-Team: Latvian <http://translate.pkp.sfu.ca/projects/ojs/"
"importexport-doaj/lv/>\n"
"Language: lv\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 == 0 || n % 100 >= 11 && n % 100 <= "
"19) ? 0 : ((n % 10 == 1 && n % 100 != 11) ? 1 : 2);\n"
"X-Generator: Weblate 4.18.2\n"
msgid "plugins.importexport.doaj.description"
msgstr "Eksportēt žurnālu DOAJ."
msgid "plugins.importexport.doaj.export.contact"
msgstr "Sazināties ar DOAJ par iekļaušanu"
msgid "plugins.importexport.doaj.registrationIntro"
msgstr ""
"Ja vēlaties reģistrēt rakstus no OJS, lūdzu, ievadiet savu DOAJ API atslēgu. "
"Pretējā gadījumā jūs joprojām varēsiet eksportēt DOAJ XML formātā, bet jūs "
"nevarēsiet reģistrēt savus rakstus DOAJ no OJS."
msgid "plugins.importexport.doaj.settings.form.apiKey"
msgstr "DOAJ API atslēga"
msgid "plugins.importexport.doaj.settings.form.apiKey.description"
msgstr "API atslēgu atradīsiet savā DOAJ lietotāja lapā."
msgid ""
"plugins.importexport.doaj.settings.form.automaticRegistration.description"
msgstr ""
"OJS automātiski nodos rakstus DOAJ. Lūdzu, ņemiet vērā, ka pēc publicēšanas "
"šī apstrāde var aizņemt neilgu laiku (piemēram, atkarībā no jūsu cronjob "
"konfigurācijas). Jūs varat pārbaudīt, vai ir reģistrēti visi nereģistrētie "
"raksti."
msgid "plugins.importexport.doaj.settings.form.testMode.description"
msgstr ""
"Reģistrācijas veikšanai izmantojiet DOAJ testa API (testēšanas vidi). Lūdzu, "
"neaizmirstiet atcelt šo opciju produkcijai."
msgid "plugins.importexport.doaj.senderTask.name"
msgstr "DOAJ automātiskās reģistrācijas uzdevums"
msgid "plugins.importexport.doaj.register.error.mdsError"
msgstr "Noguldījums neizdevās! DOAJ API atgrieza kļūdu: '{$param}'."
msgid "plugins.importexport.doaj.cliUsage"
msgstr ""
"Izmantošana:\n"
"{$scriptName} {$pluginName} export [xmlFileName] [journal_path] articles "
"objectId1 [objectId2] ...\n"
msgid "plugins.importexport.doaj.displayName"
msgstr "DOAJ eksportēšanas spraudnis"
@@ -0,0 +1,59 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2021-01-09 09:52+0000\n"
"Last-Translator: Teodora Fildishevska <t.fildishevska@gmail.com>\n"
"Language-Team: Macedonian <http://translate.pkp.sfu.ca/projects/ojs/"
"importexport-doaj/mk_MK/>\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.doaj.displayName"
msgstr "Плагин за експортирање на DOAJ"
msgid "plugins.importexport.doaj.description"
msgstr "Експортирај списание за DOAJ."
msgid "plugins.importexport.doaj.export.contact"
msgstr "Контактирајте го DOAJ за вклучување"
msgid "plugins.importexport.doaj.registrationIntro"
msgstr ""
"Доколку би сакале да регистрирате трудови преку OJS, ве молиме да го внесете "
"вашиот DOAJ API клуч. Инаку, се уште ќе можете да експортирате во DOAJ XML "
"форматот но нема да можете да ги регистрирате вашите трудови преку OJS."
msgid "plugins.importexport.doaj.settings.form.apiKey"
msgstr "DOAJ API клуч"
msgid "plugins.importexport.doaj.settings.form.apiKey.description"
msgstr ""
"Можете да го најдете вашиот API клуч на вашата корисничка страница на DOAJ."
msgid ""
"plugins.importexport.doaj.settings.form.automaticRegistration.description"
msgstr ""
"OJS автоматски ќе депонира трудови до DOAJ. Ве молиме имајте во предвид дека "
"ќе биде потребно малку време после објавување ова да се процесира (пр. "
"зависно од вашата cronjob конфигурација). Можете да ги проверите сите "
"нерегистрирани трудови."
msgid "plugins.importexport.doaj.settings.form.testMode.description"
msgstr ""
"Користете го DOAJ API за тестирање (околина за тестирање) за регистрацијата. "
"Ве молиме не заборавајте да ја извадите оваа опција за продукција."
msgid "plugins.importexport.doaj.senderTask.name"
msgstr "DOAJ задача за автоматска регистрација"
msgid "plugins.importexport.doaj.register.error.mdsError"
msgstr "Депозитот не беше успешен! DOAJ API пријави грешка: '{$param}'."
msgid "plugins.importexport.doaj.cliUsage"
msgstr ""
"Начин на користење:\n"
"{$scriptName} {$pluginName} export [xmlFileName] [journal_path] articles "
"objectId1 [objectId2] ...\n"
@@ -0,0 +1,60 @@
# Muhd Muaz <muazhero61@yahoo.com>, 2021.
msgid ""
msgstr ""
"PO-Revision-Date: 2021-10-19 09:30+0000\n"
"Last-Translator: Muhd Muaz <muazhero61@yahoo.com>\n"
"Language-Team: Malay <http://translate.pkp.sfu.ca/projects/ojs/importexport-"
"doaj/ms/>\n"
"Language: ms\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.importexport.doaj.displayName"
msgstr "Plugin Eksport DOAJ"
msgid "plugins.importexport.doaj.description"
msgstr "Eksport Jurnal untuk DOAJ."
msgid "plugins.importexport.doaj.export.contact"
msgstr "Hubungi DOAJ untuk kemasukan"
msgid "plugins.importexport.doaj.registrationIntro"
msgstr ""
"Sekiranya anda ingin mendaftarkan artikel dari dalam OJS, sila masukkan "
"Kunci API DOAJ anda. Jika tidak, anda masih dapat mengeksport ke format DOAJ "
"XML tetapi anda tidak dapat mendaftarkan artikel anda dengan DOAJ dari dalam "
"OJS."
msgid "plugins.importexport.doaj.settings.form.apiKey"
msgstr "Kunci API DOAJ"
msgid "plugins.importexport.doaj.settings.form.apiKey.description"
msgstr "Anda akan menemui kunci API anda di halaman pengguna DOAJ anda."
msgid ""
"plugins.importexport.doaj.settings.form.automaticRegistration.description"
msgstr ""
"OJS akan mendepositkan artikel secara automatik ke DOAJ. Harap maklum bahawa "
"proses ini mungkin memerlukan sedikit masa selepas penerbitan (mis. "
"Bergantung pada konfigurasi cronjob anda). Anda boleh menyemak semua artikel "
"yang tidak berdaftar."
msgid "plugins.importexport.doaj.settings.form.testMode.description"
msgstr ""
"Gunakan API ujian DOAJ (persekitaran ujian) untuk pendaftaran. Jangan lupa "
"untuk membuang pilihan ini untuk produksi."
msgid "plugins.importexport.doaj.senderTask.name"
msgstr "Tugasan pendaftaran automatik DOAJ"
msgid "plugins.importexport.doaj.register.error.mdsError"
msgstr "Deposit tidak berjaya! API DOAJ mengembalikan ralat: '{$param}'."
msgid "plugins.importexport.doaj.cliUsage"
msgstr ""
"Penggunaan:\n"
"{$scriptName} {$pluginName} eksport [xmlFileName] [journal_path] artikel "
"objectId1 [objectId2] ...\n"
@@ -0,0 +1,59 @@
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-03-20T15:57:55+00:00\n"
"PO-Revision-Date: 2020-10-19 15:22+0000\n"
"Last-Translator: Eirik Hanssen <eirikh@oslomet.no>\n"
"Language-Team: Norwegian Bokmål <http://translate.pkp.sfu.ca/projects/ojs/"
"importexport-doaj/nb_NO/>\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.doaj.displayName"
msgstr "Programtillegg for DOAJ eksport"
msgid "plugins.importexport.doaj.description"
msgstr "Eksporter tidsskrift til DOAJ."
msgid "plugins.importexport.doaj.export.contact"
msgstr "Kontakt DOAJ for å inkludere tidsskriftet ditt i systemet"
msgid "plugins.importexport.doaj.registrationIntro"
msgstr ""
"Hvis du vil registrere artiklene fra OJS, legg inn DOAJ API-nøkkelen din. "
"Dersom du ikke gjør det, vil du fremdeles kunne eksportere til DOAJ XML-"
"format, men du kan ikke registrere artiklene dine hos DOAJ fra OJS."
msgid "plugins.importexport.doaj.settings.form.apiKey"
msgstr "DOAJ API-nøkkel"
msgid "plugins.importexport.doaj.settings.form.apiKey.description"
msgstr "Du finner API-nøkkelen din på siden din hos DOAJ."
msgid ""
"plugins.importexport.doaj.settings.form.automaticRegistration.description"
msgstr ""
"OJS vil sende artikler automatisk til DOAJ. Dette kan ta tid å behandle. Du "
"kan se etter uregistrerte artikler."
msgid "plugins.importexport.doaj.settings.form.testMode.description"
msgstr ""
"Bruk DOAJ test API for registreringen. Husk å fjerne denne valgmuligheten "
"for produksjonsfasen."
msgid "plugins.importexport.doaj.senderTask.name"
msgstr "DOAJs automatiske registrering"
msgid "plugins.importexport.doaj.register.error.mdsError"
msgstr "Oversendingen mislyktes. DOAJ API returnerte feilen: '{$param}'."
msgid "plugins.importexport.doaj.cliUsage"
msgstr ""
"Usage:\n"
"{$scriptName} {$pluginName} eksport [xmlFileName] [journal_path] artikler "
"objektId1 [objektId2] ...\n"
@@ -0,0 +1,51 @@
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-11-19T11:05:40+00:00\n"
"PO-Revision-Date: 2020-10-22 11:46+0000\n"
"Last-Translator: Hans Spijker <hans.spijker@huygens.knaw.nl>\n"
"Language-Team: Dutch <http://translate.pkp.sfu.ca/projects/ojs/"
"importexport-doaj/nl/>\n"
"Language: nl_NL\n"
"MIME-Version: 1.0\n"
"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.doaj.displayName"
msgstr "DOAJ Export Plugin"
msgid "plugins.importexport.doaj.description"
msgstr "Exporteer het tijdschrift voor DOAJ."
msgid "plugins.importexport.doaj.export.contact"
msgstr "Neem contact op met de DOAJ voor opname"
msgid "plugins.importexport.doaj.registrationIntro"
msgstr "Registreer uw DOAJ API sleutel om artikels te registreren via OJS. Zoniet kan u nog steeds exporteren naar het DOAJ XML formaat, maar kan u de DOI's niet via OJS registreren bij DOAJ."
msgid "plugins.importexport.doaj.settings.form.apiKey"
msgstr "DOAJ API sleutel"
msgid "plugins.importexport.doaj.settings.form.apiKey.description"
msgstr "U vindt uw API sleutel op uw DOAJ gebruikerspagina."
msgid "plugins.importexport.doaj.settings.form.automaticRegistration.description"
msgstr "OJS zal artikels na publicatie automatisch deponeren bij DOAJ. Dit kan even duren (bv. afhankelijk van uw cronjob instellingen). U kan alle ongeregistreerde artikels bekijken."
msgid "plugins.importexport.doaj.settings.form.testMode.description"
msgstr "Gebruik de DOAJ test API (testomgeving) voor de registratie. Vergeet deze test-optie niet te verwijderen voor de uiteindelijke publicatie."
msgid "plugins.importexport.doaj.senderTask.name"
msgstr "Automatische registratie bij DOAJ"
msgid "plugins.importexport.doaj.register.error.mdsError"
msgstr "Deposit is niet geslaagd! De DOAJ API meldde een fout: '{$param}'."
msgid "plugins.importexport.doaj.cliUsage"
msgstr ""
"Gebruik:\n"
"{$scriptName} {$pluginName} export [xmlFileName] [journal_path] articles objectId1 [objectId2] ...\n"
""
@@ -0,0 +1,77 @@
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-11-19T11:05:40+00:00\n"
"PO-Revision-Date: 2020-12-01 11:48+0000\n"
"Last-Translator: rl <biuro@fimagis.pl>\n"
"Language-Team: Polish <http://translate.pkp.sfu.ca/projects/ojs/importexport-"
"doaj/pl_PL/>\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.doaj.displayName"
msgstr "Wtyczka eksportu DOAJ"
msgid "plugins.importexport.doaj.description"
msgstr "Eksportuj czasopismo do DOAJ."
msgid "plugins.importexport.doaj.export.contact"
msgstr "Skontaktuj się z DOAJ, aby włączyć czasopismo do bazy"
msgid "plugins.importexport.doaj.registrationIntro"
msgstr ""
"Jeśli chciałbyś(abyś) zarejestrować artykuły z OJS, włącz swój klucz API "
"DOAJ. Możesz też również eksportować metadane do pliku DOAJ XML, ale nie "
"możesz takiego pliku wysłać do DOAJ z OJS."
msgid "plugins.importexport.doaj.settings.form.apiKey"
msgstr "Klucz API DOAJ"
msgid "plugins.importexport.doaj.settings.form.apiKey.description"
msgstr "Klucz API znajdziesz na stronie użytkownika w DOAJ."
msgid ""
"plugins.importexport.doaj.settings.form.automaticRegistration.description"
msgstr ""
"OJS zdeponuje automatycznie artykuły w DOAJ. Zauważ, że zadanie to będzie "
"realizowane zaraz po publikacji. Upewnij się, że dane zostały automatycznie "
"przesłane."
msgid "plugins.importexport.doaj.settings.form.testMode.description"
msgstr ""
"Wykorzystaj test API DOAJ (środowisko testowe) do rejestracji. Nie zapomnij "
"usunąć tej opcji przed produkcją."
msgid "plugins.importexport.doaj.senderTask.name"
msgstr "Zadanie automatycznej rejestracji DOAJ"
msgid "plugins.importexport.doaj.register.error.mdsError"
msgstr ""
"Zdeponowanie nie ukończyło się sukcesem. API DOAJ zwróciło błąd: '{$param}'."
msgid "plugins.importexport.doaj.cliUsage"
msgstr ""
"Użycie:\n"
" {$scriptName} {$pluginName} export [xmlFileName] [journal_path] articles "
"objectId1 [objectId2] ...\n"
#~ msgid "plugins.importexport.doaj.markRegistered.success"
#~ msgstr "Wybrane elementy zostały zaznaczone jako zarejestrowane!"
#~ msgid "plugins.importexport.doaj.export.issue"
#~ msgstr "Eksportuj numery"
#~ msgid "plugins.importexport.doaj.export.issueInfo"
#~ msgstr "Eksportuj numery w formacie XML"
#~ msgid "plugins.importexport.doaj.export.article"
#~ msgstr "Eksportuj artykuły"
#~ msgid "plugins.importexport.doaj.export.articleInfo"
#~ msgstr "Eksportuj wybrane artykuły w XML"
@@ -0,0 +1,64 @@
# Diego José Macêdo <diegojmacedo@gmail.com>, 2022.
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-30T11:58:34-07:00\n"
"PO-Revision-Date: 2022-10-19 20:01+0000\n"
"Last-Translator: Diego José Macêdo <diegojmacedo@gmail.com>\n"
"Language-Team: Portuguese (Brazil) <http://translate.pkp.sfu.ca/projects/ojs/"
"importexport-doaj/pt_BR/>\n"
"Language: pt_BR\n"
"MIME-Version: 1.0\n"
"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.doaj.displayName"
msgstr "Exportação para DOAJ"
msgid "plugins.importexport.doaj.description"
msgstr ""
"Exportar revista para o DOAJ, incluindo dados da revista para inclusão."
msgid "plugins.importexport.doaj.export.contact"
msgstr "Solicitar inclusão ao DOAJ"
msgid "plugins.importexport.doaj.registrationIntro"
msgstr ""
"Se você deseja registrar artigos a partir do OJS, insira sua chave API do "
"DOAJ. Caso contrário, você poderá exportar para o formato XML do DOAJ, mas "
"não poderá registrar seus artigos no DOAJ a partir do OJS."
msgid "plugins.importexport.doaj.settings.form.apiKey"
msgstr "Chave API do DOAJ"
msgid "plugins.importexport.doaj.settings.form.apiKey.description"
msgstr "Você encontrará sua chave API na sua página de usuário no DOAJ."
msgid ""
"plugins.importexport.doaj.settings.form.automaticRegistration.description"
msgstr ""
"O OJS depositará artigos automaticamente no DOAJ. Observe que isso pode "
"levar um curto período de tempo após a publicação para processar (por "
"exemplo, dependendo da sua configuração do cronjob). Você pode verificar "
"todos os artigos não registrados."
msgid "plugins.importexport.doaj.settings.form.testMode.description"
msgstr ""
"Use a API de teste do DOAJ (do ambiente de teste) para o registro. Por "
"favor, não se esqueça de remover esta opção para a produção."
msgid "plugins.importexport.doaj.senderTask.name"
msgstr "Tarefa de registro automático do DOAJ"
msgid "plugins.importexport.doaj.register.error.mdsError"
msgstr ""
"O depósito não foi bem sucedido! A API do DOAJ retornou um erro: '{$param}'."
msgid "plugins.importexport.doaj.cliUsage"
msgstr ""
"Uso:\n"
"{$scriptName} {$pluginName} export [xmlFileName] [journal_path] articles "
"objectId1 [objectId2] ...\n"
@@ -0,0 +1,62 @@
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-11-19T11:05:40+00:00\n"
"PO-Revision-Date: 2020-06-09 19:36+0000\n"
"Last-Translator: Carla Marques <carla.marques@sdum.uminho.pt>\n"
"Language-Team: Portuguese (Portugal) <http://translate.pkp.sfu.ca/projects/"
"ojs/importexport-doaj/pt_PT/>\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.importexport.doaj.displayName"
msgstr "Plugin de Exportação DOAJ"
msgid "plugins.importexport.doaj.description"
msgstr "Exportar a revista para o DOAJ."
msgid "plugins.importexport.doaj.export.contact"
msgstr "Contactar DOAJ para inclusão"
msgid "plugins.importexport.doaj.registrationIntro"
msgstr ""
"Se pretender registar artigos através do OJS, insira a sua chave de API "
"DOAJ. Caso contrário, poderá exportar para o formato DOAJ XML, mas não pode "
"registar os artigos no DOAJ através do OJS."
msgid "plugins.importexport.doaj.settings.form.apiKey"
msgstr "Chave API DOAJ"
msgid "plugins.importexport.doaj.settings.form.apiKey.description"
msgstr "Encontrará a chave de API na área de utilizadores do DOAJ."
msgid ""
"plugins.importexport.doaj.settings.form.automaticRegistration.description"
msgstr ""
"O OJS depositará artigos automaticamente no DOAJ. Por favor, note que esta "
"ação pode demorar a ser processada. Pode verificar todos os artigos não "
"registados."
msgid "plugins.importexport.doaj.settings.form.testMode.description"
msgstr ""
"Use a API de teste DOAJ (ambiente de teste) para o registo. Não se esqueça "
"de remover esta opção para produção."
msgid "plugins.importexport.doaj.senderTask.name"
msgstr "Tarefa de registo automático no DOAJ"
msgid "plugins.importexport.doaj.register.error.mdsError"
msgstr ""
"O depósito não foi concluído com sucesso! A API DOAJ devolveu um erro: "
"'{$param}'."
msgid "plugins.importexport.doaj.cliUsage"
msgstr ""
"Modo de Utilização:\n"
"{$scriptName} {$pluginName} export [xmlFileName] [journal_path] articles "
"objectId1 [objectId2] ...\n"
@@ -0,0 +1,59 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2020-10-17 14:39+0000\n"
"Last-Translator: Mihai-Leonard Duduman <mduduman@gmail.com>\n"
"Language-Team: Romanian <http://translate.pkp.sfu.ca/projects/ojs/"
"importexport-doaj/ro/>\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 3.9.1\n"
msgid "plugins.importexport.doaj.displayName"
msgstr "Plugin export DOAJ"
msgid "plugins.importexport.doaj.description"
msgstr "Exportă revista pentru DOAJ."
msgid "plugins.importexport.doaj.export.contact"
msgstr "Contactați DOAJ pentru includere"
msgid "plugins.importexport.doaj.registrationIntro"
msgstr ""
"Dacă doriți să înregistrați articole din OJS, vă rugăm să introduceți cheia "
"API DOAJ. Altfel, veți putea exporta în continuare în formatul DOAJ XML, dar "
"nu vă puteți înregistra articolele cu DOAJ din OJS."
msgid "plugins.importexport.doaj.settings.form.apiKey"
msgstr "Cheie API DOAJ"
msgid "plugins.importexport.doaj.settings.form.apiKey.description"
msgstr "Veți găsi cheia API pe pagina dvs. de utilizator DOAJ."
msgid ""
"plugins.importexport.doaj.settings.form.automaticRegistration.description"
msgstr ""
"OJS va depune articole automat la DOAJ. Vă rugăm să rețineți că procesarea "
"poate dura puțin timp după publicare (de exemplu, în funcție de configurația "
"dvs. cronjob). Puteți verifica dacă există articole neînregistrate."
msgid "plugins.importexport.doaj.settings.form.testMode.description"
msgstr ""
"Utilizați API-ul de testare DOAJ (mediul de testare) pentru înregistrare. Vă "
"rugăm să nu uitați să eliminați această opțiune pentru producție."
msgid "plugins.importexport.doaj.senderTask.name"
msgstr "Sarcină de înregistrare automată DOAJ"
msgid "plugins.importexport.doaj.register.error.mdsError"
msgstr ""
"Depunerea nu a avut succes! API-ul DOAJ a returnat o eroare: '{$param}'."
msgid "plugins.importexport.doaj.cliUsage"
msgstr ""
"Utilizare:\n"
"{$scriptName} {$pluginName} export [xmlFileName] [journal_path] articles "
"objectId1 [objectId2] ...\n"
@@ -0,0 +1,53 @@
# Pavel Pisklakov <ppv1979@mail.ru>, 2022.
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-11-19T11:05:40+00:00\n"
"PO-Revision-Date: 2022-11-04 15:02+0000\n"
"Last-Translator: Pavel Pisklakov <ppv1979@mail.ru>\n"
"Language-Team: Russian <http://translate.pkp.sfu.ca/projects/ojs/"
"importexport-doaj/ru_RU/>\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 4.13.1\n"
msgid "plugins.importexport.doaj.displayName"
msgstr "Модуль «Экспорт в DOAJ»"
msgid "plugins.importexport.doaj.description"
msgstr "Экспортирует журнал для DOAJ."
msgid "plugins.importexport.doaj.export.contact"
msgstr "Связаться с DOAJ для добавления журнала"
msgid "plugins.importexport.doaj.registrationIntro"
msgstr "Если вы хотите зарегистрировать статьи прямо из OJS, пожалуйста, введите ваш ключ API DOAJ. Если у вас нет ключа API DOAJ, вы все равно сможете экспортировать в формат DOAJ XML, но не сможете зарегистрировать ваши статьи с DOAJ напрямую из OJS."
msgid "plugins.importexport.doaj.settings.form.apiKey"
msgstr "Ключ API DOAJ"
msgid "plugins.importexport.doaj.settings.form.apiKey.description"
msgstr "Вы найдете ключ API на своей странице пользователя DOAJ."
msgid "plugins.importexport.doaj.settings.form.automaticRegistration.description"
msgstr "OJS будет автоматически депонировать статьи в DOAJ. Обратите внимание, что это может потребовать небольшого количества времени после публикации для обработки (например, в зависимости от настроек вашего cron). Вы можете проверить все незарегистрированные статьи."
msgid "plugins.importexport.doaj.settings.form.testMode.description"
msgstr "Использовать тестовый API DOAJ (среда тестирования) для регистрации. Пожалуйста, не забудьте убрать этот параметр для реальной работы."
msgid "plugins.importexport.doaj.senderTask.name"
msgstr "Задача автоматической регистрации DOAJ"
msgid "plugins.importexport.doaj.register.error.mdsError"
msgstr "Депонирование не удалось! API DOAJ вернул ошибку : «{$param}»."
msgid "plugins.importexport.doaj.cliUsage"
msgstr ""
"Вызов:\n"
"{$scriptName} {$pluginName} export [ИмяФайлаXML] [путь_журнала] articles IdОбъекта1 [IdОбъекта2] ...\n"
""
@@ -0,0 +1,60 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2020-11-13 10:04+0000\n"
"Last-Translator: Tomáš Blaho <tomas.blaho@umb.sk>\n"
"Language-Team: Slovak <http://translate.pkp.sfu.ca/projects/ojs/importexport-"
"doaj/sk_SK/>\n"
"Language: sk_SK\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.doaj.displayName"
msgstr "Plugin exportu pre DOAJ"
msgid "plugins.importexport.doaj.description"
msgstr ""
"Export časopisu pre DOAJ a odoslanie emailu s informáciami o časopise "
"zástupcovi DOAJ."
msgid "plugins.importexport.doaj.export.contact"
msgstr "Kontaktujte DOAJ pre vloženie"
msgid "plugins.importexport.doaj.registrationIntro"
msgstr ""
"Ak chcete zaregistrovať články z OJS, zadajte prosím kľúč DOAJ API. Inak "
"budete aj naďalej môcť exportovať do formátu DOAJ XML, ale nebudete môcť "
"zaregistrovať svoje články s DOAJ z OJS."
msgid "plugins.importexport.doaj.settings.form.apiKey"
msgstr "DOAJ API kľúč"
msgid "plugins.importexport.doaj.settings.form.apiKey.description"
msgstr "Kľúč API nájdete na užívateľskej stránke DOAJ."
msgid ""
"plugins.importexport.doaj.settings.form.automaticRegistration.description"
msgstr ""
"OJS automaticky uloží články do DOAJ. Upozorňujeme, že to môže trvať krátku "
"dobu po spracovaní publikácie. Môžete si prezrieť všetky nezaregistrované "
"články."
msgid "plugins.importexport.doaj.settings.form.testMode.description"
msgstr ""
"Pre registráciu použite testovacie rozhrania API (testovacie prostredie) "
"DOAJ. Nezabudnite túto možnosť odstrániť pred produkčnou fázou."
msgid "plugins.importexport.doaj.senderTask.name"
msgstr "Automatická registrácia DOAJ"
msgid "plugins.importexport.doaj.register.error.mdsError"
msgstr ""
"Uloženie nebolo úspešné! DOAJ API vrátilo nasledujúce chybu: '{$param}'."
msgid "plugins.importexport.doaj.cliUsage"
msgstr ""
"Použitie:\n"
"{$scriptName} {$pluginName} export [xmlFileName] [journal_path] articles "
"objectId1 [objectId2] ...\n"
@@ -0,0 +1,54 @@
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-11-19T11:05:40+00:00\n"
"PO-Revision-Date: 2020-01-15 02:09+0000\n"
"Last-Translator: Primož Svetek <primoz.svetek@gmail.com>\n"
"Language-Team: Slovenian <http://translate.pkp.sfu.ca/projects/ojs/"
"importexport-doaj/sl/>\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.doaj.displayName"
msgstr "Vtičnik za DOAJ izvoz"
msgid "plugins.importexport.doaj.description"
msgstr "Izvozi revijo za DOAJ."
msgid "plugins.importexport.doaj.export.contact"
msgstr "Kontaktirajte DOAJ za vključitev"
msgid "plugins.importexport.doaj.registrationIntro"
msgstr "Če bi želeli registrirati prispevke direktno iz OJS, prosimo vnesite vaš DOAJ API ključ. Če nimate svojega DOAJ API ključa, lahko še vedno izvozite podatke v DOAJ XML obliki, ampak ne morete registrirati DOI-jev pri DOAJ direktno iz OJS."
msgid "plugins.importexport.doaj.settings.form.apiKey"
msgstr "DOAJ API ključ"
msgid "plugins.importexport.doaj.settings.form.apiKey.description"
msgstr "Svoj DAOJ API ključ lahko najdete na vaši DOAJ uporabniški strani."
msgid "plugins.importexport.doaj.settings.form.automaticRegistration.description"
msgstr "OJS bo avtomatsko opravil depozit prispevkov na DOAJ. Prosimo upoštevajte, da je za to lahko potrebno nekaj časa po tistem, ko objavite novo številko. Lahko preverite vse nedeponirane prispevke."
msgid "plugins.importexport.doaj.settings.form.testMode.description"
msgstr ""
"Uporabi DOAJ test API (testno okolje) za registracijo. Ne pozabite "
"odstraniti te možnosti za produkcijo."
msgid "plugins.importexport.doaj.senderTask.name"
msgstr "Opravilo avtomatske registracije pri DOAJ"
msgid "plugins.importexport.doaj.register.error.mdsError"
msgstr "Depozit ni bil uspešen! DOAJ API je vrnil napako: '{$param}'."
msgid "plugins.importexport.doaj.cliUsage"
msgstr ""
"Uporaba:\n"
"{$scriptName} {$pluginName} export [xmlFileName] [journal_path] articles objectId1 [objectId2] ...\n"
""
@@ -0,0 +1,47 @@
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-11-19T11:05:40+00:00\n"
"PO-Revision-Date: 2019-11-19T11:05:40+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.doaj.displayName"
msgstr "DOAJ dodatak za izvoz"
msgid "plugins.importexport.doaj.description"
msgstr ""
"Izvoz časopisa za DOAJ i obezbeđivanje informacija o časopisu za uključivanje"
msgid "plugins.importexport.doaj.export.contact"
msgstr "Kontaktiraj DOAJ za uključivanje"
msgid "plugins.importexport.doaj.registrationIntro"
msgstr ""
msgid "plugins.importexport.doaj.settings.form.apiKey"
msgstr ""
msgid "plugins.importexport.doaj.settings.form.apiKey.description"
msgstr ""
msgid ""
"plugins.importexport.doaj.settings.form.automaticRegistration.description"
msgstr ""
msgid "plugins.importexport.doaj.settings.form.testMode.description"
msgstr ""
msgid "plugins.importexport.doaj.senderTask.name"
msgstr ""
msgid "plugins.importexport.doaj.register.error.mdsError"
msgstr ""
msgid "plugins.importexport.doaj.cliUsage"
msgstr ""
@@ -0,0 +1,58 @@
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-11-19T11:05:40+00:00\n"
"PO-Revision-Date: 2019-11-19T11:05:40+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.doaj.displayName"
msgstr "DOAJ exportplugin"
msgid "plugins.importexport.doaj.description"
msgstr "Exportera tidskrift för DOAJ."
msgid "plugins.importexport.doaj.export.contact"
msgstr "Kontakta DOAJ för inkludering"
msgid "plugins.importexport.doaj.registrationIntro"
msgstr ""
"Om du vill registrera artiklar inifrån OJS, fyll i din DOAJ API-nyckel. Om "
"inte kan du fortfarande exportera till DOAJ XML-format, men inte registrera "
"dina artiklar hos DOAJ inifrån OJS."
msgid "plugins.importexport.doaj.settings.form.apiKey"
msgstr "DOAJ API-nyckel"
msgid "plugins.importexport.doaj.settings.form.apiKey.description"
msgstr "Du hittar din API-nyckel på din DOAJ-sida."
msgid ""
"plugins.importexport.doaj.settings.form.automaticRegistration.description"
msgstr ""
"OJS kommer att lägga in artiklar i DOAJ automatiskt. Notera att processen "
"kan ta en kort stund att efter publicering. Du kan söka efter alla "
"oregistrerade artiklar."
msgid "plugins.importexport.doaj.settings.form.testMode.description"
msgstr ""
"Använd DOAJ:s test-API (testmiljö) för registreringen. Glöm inte att ta bort "
"detta alternativ innan produktion."
msgid "plugins.importexport.doaj.senderTask.name"
msgstr "Automatisk registrering hos DOAJ"
msgid "plugins.importexport.doaj.register.error.mdsError"
msgstr ""
"Registreringen slutfördes inte! DOAJ:s API gav ett felmeddelande: '{$param}'."
msgid "plugins.importexport.doaj.cliUsage"
msgstr ""
"Användning:\n"
"{$scriptName} {$pluginName} export [xmlFileName] [journal_path] articles "
"objectId1 [objectId2] ...\n"
@@ -0,0 +1,62 @@
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-11-19T11:05:41+00:00\n"
"PO-Revision-Date: 2020-02-04 22:59+0000\n"
"Last-Translator: Osman Durmaz <osmandurmaz@hotmail.de>\n"
"Language-Team: Turkish <http://translate.pkp.sfu.ca/projects/ojs/"
"importexport-doaj/tr/>\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.doaj.displayName"
msgstr "DOAJ Aktarma Eklentisi"
msgid "plugins.importexport.doaj.description"
msgstr "Dergiyi DOAJ için dışa aktar."
msgid "plugins.importexport.doaj.export.contact"
msgstr "Katılım için DOAJ ile iletişime geç"
msgid "plugins.importexport.doaj.registrationIntro"
msgstr ""
"Eğer makaleleri OJS içinden doğrudan kaydetmek istiyorsanız, lütfen DOAJ "
"API Anahtarınızı girin. API anahtarınız yoksa, verileri DOAJ XML formatında "
"dışa aktarabilirsiniz; ancak makalelerinizi DOAJ'a OJS içinden "
"kaydedemezsiniz."
msgid "plugins.importexport.doaj.settings.form.apiKey"
msgstr "DOAJ API Anahtarı"
msgid "plugins.importexport.doaj.settings.form.apiKey.description"
msgstr "API anahtarınızı DOAJ kullanıcı sayfasında bulabilirsiniz."
msgid ""
"plugins.importexport.doaj.settings.form.automaticRegistration.description"
msgstr ""
"OJS, makaleleri DOAJ'a otomatik olarak kaydedecektir. Lütfen bu işlemin "
"yayınlanma işleminden sonra belli bir süre alabileceğini unutmayın (ör. "
"zamanlanmış işlemler ayarlarınıza bağlı gecikmeler). Kaydedilmemiş bütün "
"makaleleri kontrol edebilirsiniz."
msgid "plugins.importexport.doaj.settings.form.testMode.description"
msgstr ""
"Kayıt için DOAJ test API'sini (test ortamı) kullan. Lütfen makalelerinizin "
"yayınlanması için bu seçeneği kaldırmayı unutmayın."
msgid "plugins.importexport.doaj.senderTask.name"
msgstr "DOAJ otomatik kayıt görevi"
msgid "plugins.importexport.doaj.register.error.mdsError"
msgstr "Kayıt başarısız oldu! DOAJ API bir hata verdi: '{$param}'."
msgid "plugins.importexport.doaj.cliUsage"
msgstr ""
"Kullanım:\n"
"{$scriptName} {$pluginName} aktar [xmlFileName] [journal_path] articles "
"objectId1 [objectId2] ...\n"
@@ -0,0 +1,53 @@
# Petro Bilous <petrobilous@ukr.net>, 2023.
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-11-19T11:05:41+00:00\n"
"PO-Revision-Date: 2023-04-29 14:49+0000\n"
"Last-Translator: Petro Bilous <petrobilous@ukr.net>\n"
"Language-Team: Ukrainian <http://translate.pkp.sfu.ca/projects/ojs/"
"importexport-doaj/uk/>\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.doaj.displayName"
msgstr "Плагін експорту DOAJ"
msgid "plugins.importexport.doaj.description"
msgstr "Експортувати журнал у DOAJ."
msgid "plugins.importexport.doaj.export.contact"
msgstr "Контактувати з DOAJ щодо включення"
msgid "plugins.importexport.doaj.registrationIntro"
msgstr "Якщо ви хочете зареєструвати статті одразу з OJS, будь ласка, введіть свій ключ API DOAJ. Якщо у вас немає ключа API DOAJ, ви все одно зможете експортувати в DOAJ XML, але ви не можете зареєструвати свої DOI в DOAJ з OJS."
msgid "plugins.importexport.doaj.settings.form.apiKey"
msgstr "Ключ DOAJ API"
msgid "plugins.importexport.doaj.settings.form.apiKey.description"
msgstr "Ви знайдете свій ключ API на сторінці користувача DOAJ."
msgid "plugins.importexport.doaj.settings.form.automaticRegistration.description"
msgstr "OJS буде автоматично депонувати статті на DOAJ. Зверніть увагу, що після публікації обробка може зайняти деякий час (наприклад, залежно від налаштувань вашого cron). Ви можете перевірити всі незареєстровані статті."
msgid "plugins.importexport.doaj.settings.form.testMode.description"
msgstr "Використовувати тестовий API DOAJ (середовище тестування) для реєстрації. Будь ласка, не забудьте прибрати цей параметр для подальшої роботи."
msgid "plugins.importexport.doaj.senderTask.name"
msgstr "Завдання автоматичної реєстрації DOAJ"
msgid "plugins.importexport.doaj.register.error.mdsError"
msgstr "Депонування не вдалося! API DOAJ повернув помилку: \"{$param}\"."
msgid "plugins.importexport.doaj.cliUsage"
msgstr ""
"Використання:\n"
"{$scriptName} {$pluginName} export [xmlFileName] [journal_path] articles objectId1 [objectId2] ...\n"
""
@@ -0,0 +1,40 @@
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.doaj.displayName"
msgstr ""
msgid "plugins.importexport.doaj.description"
msgstr ""
msgid "plugins.importexport.doaj.export.contact"
msgstr ""
msgid "plugins.importexport.doaj.registrationIntro"
msgstr ""
msgid "plugins.importexport.doaj.settings.form.apiKey"
msgstr ""
msgid "plugins.importexport.doaj.settings.form.apiKey.description"
msgstr ""
msgid ""
"plugins.importexport.doaj.settings.form.automaticRegistration.description"
msgstr ""
msgid "plugins.importexport.doaj.settings.form.testMode.description"
msgstr ""
msgid "plugins.importexport.doaj.senderTask.name"
msgstr ""
msgid "plugins.importexport.doaj.register.error.mdsError"
msgstr ""
msgid "plugins.importexport.doaj.cliUsage"
msgstr ""
@@ -0,0 +1,61 @@
# Ruslan Shodmonov <belovedspy1209@gmail.com>, 2021.
msgid ""
msgstr ""
"PO-Revision-Date: 2021-09-10 08:46+0000\n"
"Last-Translator: Ruslan Shodmonov <belovedspy1209@gmail.com>\n"
"Language-Team: Uzbek <http://translate.pkp.sfu.ca/projects/ojs/importexport-"
"doaj/uz_UZ@latin/>\n"
"Language: uz_UZ@latin\n"
"MIME-Version: 1.0\n"
"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.doaj.displayName"
msgstr "DOAJ eksport plagini"
msgid "plugins.importexport.doaj.description"
msgstr "DOAJ uchun eksport jurnali."
msgid "plugins.importexport.doaj.export.contact"
msgstr "Qo'shish uchun DOAJ bilan bog'laning"
msgid "plugins.importexport.doaj.registrationIntro"
msgstr ""
"Agar siz OJS ichidagi maqolalarni ro'yxatdan o'tkazmoqchi bo'lsangiz, DOAJ "
"API kalitini kiriting. Aks holda, siz hali ham DOAJ XML formatiga eksport "
"qila olasiz, lekin maqolalaringizni DOJda OJS ichida ro'yxatdan o'tkaza "
"olmaysiz."
msgid "plugins.importexport.doaj.settings.form.apiKey"
msgstr "DOAJ API kaliti"
msgid "plugins.importexport.doaj.settings.form.apiKey.description"
msgstr "Siz API kalitingizni DOAJ foydalanuvchi sahifasida topasiz."
msgid ""
"plugins.importexport.doaj.settings.form.automaticRegistration.description"
msgstr ""
"OJS maqolalarni DOAJga avtomatik tarzda joylashtiradi. Shuni esda tutingki, "
"bu nashrdan so'ng uni qayta ishlashga biroz vaqt ketishi mumkin (masalan, "
"cronjob konfiguratsiyangizga bog'liq). Siz ro'yxatdan o'tmagan barcha "
"maqolalarni tekshirishingiz mumkin."
msgid "plugins.importexport.doaj.settings.form.testMode.description"
msgstr ""
"Ro'yxatdan o'tish uchun DOAJ test API (sinov muhiti) dan foydalaning. "
"Iltimos, ishlab chiqarish uchun ushbu variantni olib tashlashni unutmang."
msgid "plugins.importexport.doaj.senderTask.name"
msgstr "DOAJ avtomatik ro'yxatga olish vazifasi"
msgid "plugins.importexport.doaj.register.error.mdsError"
msgstr ""
"Depozit muvaffaqiyatli bo'lmadi! DOAJ API xatoni qaytardi: '{$ param}'."
msgid "plugins.importexport.doaj.cliUsage"
msgstr ""
"Foydalanish:\n"
"{$ scriptName} {$ pluginName} eksport qilish [xmlFileName] [journal_path] "
"maqolalar objectId1 [objectId2] ...\n"
@@ -0,0 +1,57 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2020-04-29 07:38+0000\n"
"Last-Translator: Tran Ngoc Trung <khuchatthienduong@gmail.com>\n"
"Language-Team: Vietnamese <http://translate.pkp.sfu.ca/projects/ojs/"
"importexport-doaj/vi_VN/>\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.importexport.doaj.displayName"
msgstr "Plugin xuất DOAJ"
msgid "plugins.importexport.doaj.description"
msgstr "Tạp chí xuất cho DOAJ."
msgid "plugins.importexport.doaj.export.contact"
msgstr "Liên hệ với DOAJ để đưa vào"
msgid "plugins.importexport.doaj.registrationIntro"
msgstr ""
"Nếu bạn muốn đăng ký các bài báo từ trong OJS, vui lòng nhập Khóa API DOAJ "
"của bạn. Khác, bạn vẫn có thể xuất thành định dạng XML DOAJ nhưng bạn không "
"thể đăng ký các bài viết của mình với DOAJ từ trong OJS."
msgid "plugins.importexport.doaj.settings.form.apiKey"
msgstr "Khóa API DOAJ"
msgid "plugins.importexport.doaj.settings.form.apiKey.description"
msgstr "Bạn sẽ tìm thấy khóa API của mình trên trang người dùng DOAJ."
msgid ""
"plugins.importexport.doaj.settings.form.automaticRegistration.description"
msgstr ""
"OJS sẽ gửi bài viết tự động cho DOAJ. Xin lưu ý rằng việc này có thể mất một "
"khoảng thời gian ngắn sau khi xuất bản để xử lý (ví dụ: tùy thuộc vào cấu "
"hình cronjob của bạn). Bạn có thể kiểm tra tất cả các bài viết chưa đăng ký."
msgid "plugins.importexport.doaj.settings.form.testMode.description"
msgstr ""
"Sử dụng API kiểm tra DOAJ (môi trường thử nghiệm) để đăng ký. Xin đừng quên "
"loại bỏ tùy chọn này khi xuất bản."
msgid "plugins.importexport.doaj.senderTask.name"
msgstr "Nhiệm vụ đăng ký tự động DOAJ"
msgid "plugins.importexport.doaj.register.error.mdsError"
msgstr "Gửi không thành công! API DOAJ đã trả về lỗi: '{$param}'."
msgid "plugins.importexport.doaj.cliUsage"
msgstr ""
"Usage:\n"
"{$scriptName} {$pluginName} xuất [xmlFileName] [journal_path] các bài báo "
"objectId1 [objectId2] ...\n"
@@ -0,0 +1,57 @@
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-11-04T08:59:14-08:00\n"
"PO-Revision-Date: 2020-07-02 12:03+0000\n"
"Last-Translator: Yukari Chiba <Charles@nia.ac.cn>\n"
"Language-Team: Chinese (Simplified) <http://translate.pkp.sfu.ca/projects/"
"ojs/importexport-doaj/zh_Hans/>\n"
"Language: zh_CN\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.importexport.doaj.displayName"
msgstr "DOAJ导出插件"
msgid "plugins.importexport.doaj.description"
msgstr "将期刊导出到DAOJ,并且将期刊信息电邮给DAOJ的成员。"
msgid "plugins.importexport.doaj.export.contact"
msgstr "联系DOAJ列入"
msgid "plugins.importexport.doaj.registrationIntro"
msgstr ""
"如果您想从 OJS 中注册文章,请输入您的 DOAJ API 密钥。 否则,您仍然可以导出为 "
"DOAJ XML 格式,但是您无法从 OJS 中向 DOAJ 注册您的文章。"
msgid "plugins.importexport.doaj.settings.form.apiKey"
msgstr "DOAJ API 密钥"
msgid "plugins.importexport.doaj.settings.form.apiKey.description"
msgstr "您可以在 DOAJ 用户页面上找到 API 密钥。"
msgid ""
"plugins.importexport.doaj.settings.form.automaticRegistration.description"
msgstr ""
"OJS 将自动将文章存入 DOAJ。 请注意,发布后可能需要很短的时间来处理(例如,取"
"决于您的 cronjob 配置)。 您可以检查所有未注册的文章。"
msgid "plugins.importexport.doaj.settings.form.testMode.description"
msgstr ""
"使用 DOAJ 测试 API(测试环境)进行注册。 请不要忘记在生产环境中删除此选项。"
msgid "plugins.importexport.doaj.senderTask.name"
msgstr "DOAJ 自动注册任务"
msgid "plugins.importexport.doaj.register.error.mdsError"
msgstr "存入失败! DOAJ API 返回错误:'{$param}'。"
msgid "plugins.importexport.doaj.cliUsage"
msgstr ""
"用法:\n"
"{$scriptName} {$pluginName} export [xmlFileName] [journal_path] articles "
"objectId1 [objectId2] ...\n"
@@ -0,0 +1,52 @@
# Katie Cheng <ckykatie@hkbu.edu.hk>, 2022.
msgid ""
msgstr ""
"PO-Revision-Date: 2022-09-28 10:01+0000\n"
"Last-Translator: Katie Cheng <ckykatie@hkbu.edu.hk>\n"
"Language-Team: Chinese (Traditional) <http://translate.pkp.sfu.ca/projects/"
"ojs/importexport-doaj/zh_Hant/>\n"
"Language: zh_Hant\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 "plugins.importexport.doaj.displayName"
msgstr "DOAJ導出插件"
msgid "plugins.importexport.doaj.description"
msgstr "導出期刊至DOAJ。"
msgid "plugins.importexport.doaj.export.contact"
msgstr "聯絡DOAJ包括此期刊"
msgid "plugins.importexport.doaj.registrationIntro"
msgstr ""
"如您想為OJS內的文章註冊,請輸入您的DOAJ API密鑰。此外,您仍可以導出至DOAJ XML"
"格式,但您不能在OJS內為您的文章在DOAJ註冊。"
msgid "plugins.importexport.doaj.settings.form.apiKey"
msgstr "DOAJ API密鑰"
msgid "plugins.importexport.doaj.settings.form.apiKey.description"
msgstr "您會在您的DOAJ用戶頁面找到您的API密鑰。"
msgid ""
"plugins.importexport.doaj.settings.form.automaticRegistration.description"
msgstr ""
"OJS將會自動典藏文章至DOAJ。請注意,此步驟在出版後需要一些時間(例如:視乎您的"
"cronjob設置)。您可以點選所有未註冊文章。"
msgid "plugins.importexport.doaj.settings.form.testMode.description"
msgstr ""
"使用DOAJ測試API(測試環境)註冊。請不要忘記在正式製作程序時移除此選項。"
msgid "plugins.importexport.doaj.senderTask.name"
msgstr "DOAJ自動註冊工序"
msgid "plugins.importexport.doaj.register.error.mdsError"
msgstr "典藏失敗!DOAJ API回覆錯誤訊息:'{$param}'。"
msgid "plugins.importexport.doaj.cliUsage"
msgstr ""
@@ -0,0 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
* plugins/importexport/doaj/scheduledTasks.xml
*
* Copyright (c) 2013-2021 Simon Fraser University
* Copyright (c) 2003-2021 John Willinsky
* Distributed under the GNU GPL v3. For full terms see the file docs/COPYING.
*
* DOAJ Plugin Deposit
*
* This file describes the schedule task that will send deposits to DOAJ and update statuses in the background.
*
-->
<!DOCTYPE scheduled_tasks SYSTEM "../../../lib/pkp/dtd/scheduledTasks.dtd">
<scheduled_tasks>
<task class="APP\plugins\importexport\doaj\DOAJInfoSender">
<descr>Deposit articles to DOAJ and update statuses.</descr>
<frequency minute="0"/>
</task>
</scheduled_tasks>
@@ -0,0 +1,83 @@
{**
* @file plugins/importexport/doaj/index.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.
*
* List of operations this plugin can perform
*}
{extends file="layouts/backend.tpl"}
{block name="page"}
<h1 class="app__pageHeading">
{$pageTitle}
</h1>
{if !empty($configurationErrors)}
{assign var="allowExport" value=false}
{else}
{assign var="allowExport" value=true}
{/if}
<script type="text/javascript">
// Attach the JS file tab handler.
$(function() {ldelim}
$('#importExportTabs').pkpHandler('$.pkp.controllers.TabHandler');
{rdelim});
</script>
<div id="importExportTabs">
<ul>
<li><a href="#settings-tab">{translate key="plugins.importexport.common.settings"}</a></li>
{if $allowExport}
<li><a href="#exportSubmissions-tab">{translate key="plugins.importexport.common.export.articles"}</a></li>
{/if}
</ul>
<div id="settings-tab">
{if !$allowExport}
<div class="pkp_notification" id="dataciteConfigurationErrors">
{foreach from=$configurationErrors item=configurationError}
{if $configurationError == $smarty.const.EXPORT_CONFIG_ERROR_SETTINGS}
{include file="controllers/notification/inPlaceNotificationContent.tpl" notificationId=doajConfigurationErrors notificationStyleClass="notifyWarning" notificationTitle="plugins.importexport.common.missingRequirements"|translate notificationContents="plugins.importexport.common.error.pluginNotConfigured"|translate}
{/if}
{/foreach}
</div>
{/if}
<p><a href="http://www.doaj.org/application/new" target="_blank">{translate key="plugins.importexport.doaj.export.contact"}</a></p>
{capture assign=doajSettingsGridUrl}{url router=\PKP\core\PKPApplication::ROUTE_COMPONENT component="grid.settings.plugins.settingsPluginGridHandler" op="manage" plugin="DOAJExportPlugin" category="importexport" verb="index" escape=false}{/capture}
{load_url_in_div id="doajSettingsGridContainer" url=$doajSettingsGridUrl}
</div>
{if $allowExport}
<div id="exportSubmissions-tab">
<script type="text/javascript">
$(function() {ldelim}
// Attach the form handler.
$('#exportSubmissionXmlForm').pkpHandler('$.pkp.controllers.form.FormHandler');
{rdelim});
</script>
<form id="exportSubmissionXmlForm" class="pkp_form" action="{plugin_url path="exportSubmissions"}" method="post">
{csrf}
<input type="hidden" name="tab" value="exportSubmissions-tab" />
{fbvFormArea id="submissionsXmlForm"}
{capture assign=submissionsListGridUrl}{url router=\PKP\core\PKPApplication::ROUTE_COMPONENT component="grid.submissions.ExportPublishedSubmissionsListGridHandler" op="fetchGrid" plugin="doaj" category="importexport" escape=false}{/capture}
{load_url_in_div id="submissionsListGridContainer" url=$submissionsListGridUrl}
{fbvFormSection list="true"}
{fbvElement type="checkbox" id="validation" label="plugins.importexport.common.validation" checked=$validation|default:true}
{/fbvFormSection}
{if !empty($actionNames)}
{fbvFormSection}
<ul class="export_actions">
{foreach from=$actionNames key=action item=actionName}
<li class="export_action">
{fbvElement type="submit" label="$actionName" id="$action" name="$action" value="1" class="$action" translate=false inline=true}
</li>
{/foreach}
</ul>
{/fbvFormSection}
{/if}
{/fbvFormArea}
</form>
</div>
{/if}
</div>
{/block}
@@ -0,0 +1,34 @@
{**
* plugins/importexport/doaj/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.
*
* DOAJ plugin settings
*
*}
<script type="text/javascript">
$(function() {ldelim}
// Attach the form handler.
$('#doajSettingsForm').pkpHandler('$.pkp.controllers.form.AjaxFormHandler');
{rdelim});
</script>
<form class="pkp_form" id="doajSettingsForm" method="post" action="{url router=\PKP\core\PKPApplication::ROUTE_COMPONENT op="manage" plugin="DOAJExportPlugin" category="importexport" verb="save"}">
{csrf}
{fbvFormArea id="doajSettingsFormArea"}
{fbvFormSection}
<p class="pkp_help">{translate key="plugins.importexport.doaj.registrationIntro"}</p>
{fbvElement type="text" id="apiKey" value=$apiKey label="plugins.importexport.doaj.settings.form.apiKey" maxlength="50" size=$fbvStyles.size.MEDIUM}
<span class="instruct">{translate key="plugins.importexport.doaj.settings.form.apiKey.description"}</span><br/>
{/fbvFormSection}
{fbvFormSection list="true"}
{fbvElement type="checkbox" id="automaticRegistration" label="plugins.importexport.doaj.settings.form.automaticRegistration.description" checked=$automaticRegistration|compare:true}
{/fbvFormSection}
{fbvFormSection list="true"}
{fbvElement type="checkbox" id="testMode" label="plugins.importexport.doaj.settings.form.testMode.description" checked=$testMode|compare:true}
{/fbvFormSection}
{/fbvFormArea}
{fbvFormButtons submitText="common.save"}
<p><span class="formRequired">{translate key="common.requiredField"}</span></p>
</form>
+18
View File
@@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE version SYSTEM "../../../lib/pkp/dtd/pluginVersion.dtd">
<!--
* vplugins/importexport/doaj/ersion.xml
*
* 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.
*
* Plugin version information.
-->
<version>
<application>doaj</application>
<type>plugins.importexport</type>
<release>1.1.0.0</release>
<date>2016-08-27</date>
</version>