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,274 @@
<?php
/**
* @file plugins/importexport/pubmed/PubMedExportPlugin.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 PubMedExportPlugin
*
* @brief PubMed/MEDLINE XML metadata export plugin
*/
namespace APP\plugins\importexport\pubmed;
use APP\core\Application;
use APP\facades\Repo;
use APP\journal\JournalDAO;
use APP\template\TemplateManager;
use Exception;
use PKP\core\PKPApplication;
use PKP\db\DAORegistry;
use PKP\file\FileManager;
use PKP\filter\FilterDAO;
use PKP\plugins\ImportExportPlugin;
class PubMedExportPlugin extends ImportExportPlugin
{
/**
* @copydoc Plugin::register()
*
* @param null|mixed $mainContextId
*/
public function register($category, $path, $mainContextId = null)
{
$success = parent::register($category, $path, $mainContextId);
$this->addLocaleData();
return $success;
}
/**
* Get the name of this plugin. The name must be unique within
* its category.
*
* @return string name of plugin
*/
public function getName()
{
return 'PubMedExportPlugin';
}
/**
* Get the display name.
*
* @return string
*/
public function getDisplayName()
{
return __('plugins.importexport.pubmed.displayName');
}
/**
* Get the display description.
*
* @return string
*/
public function getDescription()
{
return __('plugins.importexport.pubmed.description');
}
/**
* Display the plugin.
*
* @param array $args
* @param \APP\core\Request $request
*/
public function display($args, $request)
{
parent::display($args, $request);
$templateMgr = TemplateManager::getManager($request);
$context = $request->getContext();
switch (array_shift($args)) {
case 'index':
case '':
$apiUrl = $request->getDispatcher()->url($request, PKPApplication::ROUTE_API, $context->getPath(), 'submissions');
$submissionsListPanel = new \APP\components\listPanels\SubmissionsListPanel(
'submissions',
__('common.publications'),
[
'apiUrl' => $apiUrl,
'count' => 100,
'getParams' => new \stdClass(),
'lazyLoad' => true,
]
);
$submissionsConfig = $submissionsListPanel->getConfig();
$submissionsConfig['addUrl'] = '';
$submissionsConfig['filters'] = array_slice($submissionsConfig['filters'], 1);
$templateMgr->setState([
'components' => [
'submissions' => $submissionsConfig,
],
]);
$templateMgr->assign([
'pageComponent' => 'ImportExportPage',
]);
$templateMgr->display($this->getTemplateResource('index.tpl'));
break;
case 'exportSubmissions':
$exportXml = $this->exportSubmissions(
(array) $request->getUserVar('selectedSubmissions'),
$request->getContext(),
$request->getUser()
);
$fileManager = new FileManager();
$exportFileName = $this->getExportFileName($this->getExportPath(), 'articles', $context, '.xml');
$fileManager->writeFile($exportFileName, $exportXml);
$fileManager->downloadByPath($exportFileName);
$fileManager->deleteByPath($exportFileName);
break;
case 'exportIssues':
$exportXml = $this->exportIssues(
(array) $request->getUserVar('selectedIssues'),
$request->getContext(),
$request->getUser()
);
$fileManager = new FileManager();
$exportFileName = $this->getExportFileName($this->getExportPath(), 'issues', $context, '.xml');
$fileManager->writeFile($exportFileName, $exportXml);
$fileManager->downloadByPath($exportFileName);
$fileManager->deleteByPath($exportFileName);
break;
default:
$dispatcher = $request->getDispatcher();
$dispatcher->handle404();
}
}
/**
* @copydoc ImportExportPlugin::getPluginSettingsPrefix()
*/
public function getPluginSettingsPrefix()
{
return 'pubmed';
}
public function exportSubmissions($submissionIds, $context, $user)
{
$filterDao = DAORegistry::getDAO('FilterDAO'); /** @var FilterDAO $filterDao */
$pubmedExportFilters = $filterDao->getObjectsByGroup('article=>pubmed-xml');
assert(count($pubmedExportFilters) == 1); // Assert only a single serialization filter
$exportFilter = array_shift($pubmedExportFilters);
$submissions = [];
foreach ($submissionIds as $submissionId) {
$submission = Repo::submission()->get($submissionId);
if ($submission && $submission->getData('contextId') == $context->getId()) {
$submissions[] = $submission;
}
}
libxml_use_internal_errors(true);
$submissionXml = $exportFilter->execute($submissions, true);
$xml = $submissionXml->saveXml();
$errors = array_filter(libxml_get_errors(), function ($a) {
return $a->level == LIBXML_ERR_ERROR || $a->level == LIBXML_ERR_FATAL;
});
if (!empty($errors)) {
$this->displayXMLValidationErrors($errors, $xml);
}
return $xml;
}
/**
* Get the XML for a set of issues.
*
* @param array $issueIds Array of issue IDs
* @param \PKP\context\Context $context
* @param \PKP\user\User $user
*
* @return string XML contents representing the supplied issue IDs.
*/
public function exportIssues($issueIds, $context, $user)
{
$filterDao = DAORegistry::getDAO('FilterDAO'); /** @var FilterDAO $filterDao */
/** @var \APP\plugins\importexport\pubmed\filter\ArticlePubMedXmlFilter[] $pubmedExportFilters */
$pubmedExportFilters = $filterDao->getObjectsByGroup('article=>pubmed-xml');
assert(count($pubmedExportFilters) == 1); // Assert only a single serialization filter
$exportFilter = array_shift($pubmedExportFilters);
$submissions = Repo::submission()
->getCollector()
->filterByContextIds([$context->getId()])
->filterByIssueIds($issueIds)
->getMany();
libxml_use_internal_errors(true);
$input = $submissions->toArray();
$submissionXml = $exportFilter->execute($input, true);
$xml = $submissionXml->saveXml();
$errors = array_filter(libxml_get_errors(), function ($a) {
return $a->level == LIBXML_ERR_ERROR || $a->level == LIBXML_ERR_FATAL;
});
if (!empty($errors)) {
$this->displayXMLValidationErrors($errors, $xml);
}
return $xml;
}
/**
* Execute import/export tasks using the command-line interface.
*
* @param array $args Parameters to the plugin
*/
public function executeCLI($scriptName, &$args)
{
// $command = array_shift($args);
$xmlFile = array_shift($args);
$journalPath = array_shift($args);
$journalDao = DAORegistry::getDAO('JournalDAO'); /** @var JournalDAO $journalDao */
$journal = $journalDao->getByPath($journalPath);
if (!$journal) {
if ($journalPath != '') {
echo __('plugins.importexport.pubmed.cliError') . "\n";
echo __('plugins.importexport.pubmed.error.unknownJournal', ['journalPath' => $journalPath]) . "\n\n";
}
$this->usage($scriptName);
return;
}
$user = Application::get()->getRequest()->getUser();
if ($xmlFile != '') {
switch (array_shift($args)) {
case 'articles':
try {
file_put_contents($xmlFile, $this->exportSubmissions($args, $journal, $user));
} catch (Exception $e) {
echo $e->getMessage() . "\n\n";
}
return;
case 'issue':
$issueId = array_shift($args);
$issue = Repo::issue()->getByBestId($issueId, $journal->getId());
if ($issue == null) {
echo __('plugins.importexport.pubmed.cliError') . "\n";
echo __('plugins.importexport.pubmed.export.error.issueNotFound', ['issueId' => $issueId]) . "\n\n";
return;
}
$issues = [$issue];
try {
file_put_contents($xmlFile, $this->exportIssues($issues, $journal, $user));
} catch (Exception $e) {
echo $e->getMessage() . "\n\n";
}
return;
}
}
$this->usage($scriptName);
}
/**
* Display the command-line usage information
*/
public function usage($scriptName)
{
echo __('plugins.importexport.pubmed.cliUsage', [
'scriptName' => $scriptName,
'pluginName' => $this->getName()
]) . "\n";
}
}
+46
View File
@@ -0,0 +1,46 @@
================================
=== OJS PubMed Export Plugin
=== Version: 1.0.1
=== Release date: May 10, 2006
=== Author: MJ Suhonos <mj@robotninja.com>
================================
About
-----
This plugin for OJS 2 provides an import/export plugin to generate bibliographic information for articles in the current issue in PubMed standard publisher data format XML for indexing in NLM PubMed/MEDLINE. Details on the XML format and data requirements is available at: http://www.ncbi.nlm.nih.gov/entrez/query/static/spec.html
License
-------
This plugin is licensed under the GNU General Public License v2. See the file COPYING for the complete terms of this license.
System Requirements
-------------------
Same requirements as the OJS 2.1.x core.
Installation
------------
To install the plugin:
- copy the pubmed folder into OJS/plugins/importexport
The export functionality can then be accessed through:
- Home > User > Journal Management > Import/Export Data > PubMed XML Export Plugin
Known Issues/Limitations
---------
- the <Replaces/> tag is not used as OJS does not contain PMID metadata
- because of ambiguity in the pagination functionality in OJS, <FirstPage/> and <LastPage/> tags may potentially be generated incorrectly
- article IDs are limited to internal ("pii") identifiers; DOIs are not handled because of limitations in the current version of OJS (including forward-slash escaping)
Localization
------------
Localized titles are determined from the per-article language setting, rather than the journal locale. As such, localized bibliographic data should be handled properly as per the PubMed data format guidelines, however, it has not been explicitly tested as of this release.
Contact/Support
---------------
Please email the author for support, bugfixes, or comments.
Email: <mj@robotninja.com>
Version History
---------------
1.0.1 - improved page number parsing to handle more formats (eg. "pp. 3- 12")
1.0 - initial release
@@ -0,0 +1,243 @@
<?php
/**
* @file plugins/importexport/pubmed/filter/ArticlePubMedXmlFilter.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 ArticlePubMedXmlFilter
*
* @brief Class that converts a Article to a PubMed XML document.
*/
namespace APP\plugins\importexport\pubmed\filter;
use APP\author\Author;
use APP\decision\Decision;
use APP\facades\Repo;
use APP\issue\Issue;
use APP\journal\Journal;
use APP\journal\JournalDAO;
use APP\submission\Submission;
use PKP\core\PKPString;
use PKP\db\DAORegistry;
use PKP\filter\PersistableFilter;
use PKP\i18n\LocaleConversion;
class ArticlePubMedXmlFilter extends PersistableFilter
{
//
// Implement abstract methods from SubmissionPubMedXmlFilter
//
/**
* Get the representation export filter group name
*
* @return string
*/
public function getRepresentationExportFilterGroupName()
{
return 'article-galley=>pubmed-xml';
}
//
// Implement template methods from Filter
//
/**
* @see Filter::process()
*
* @param array $submissions Array of submissions
*
* @return \DOMDocument
*/
public function &process(&$submissions)
{
// Create the XML document
$implementation = new \DOMImplementation();
$dtd = $implementation->createDocumentType('ArticleSet', '-//NLM//DTD PubMed 2.0//EN', 'http://www.ncbi.nlm.nih.gov/entrez/query/static/PubMed.dtd');
$doc = $implementation->createDocument('', '', $dtd);
$doc->preserveWhiteSpace = false;
$doc->formatOutput = true;
$journalDao = DAORegistry::getDAO('JournalDAO'); /** @var JournalDAO $journalDao */
$journal = null;
$rootNode = $doc->createElement('ArticleSet');
foreach ($submissions as $submission) {
// Fetch associated objects
if ($journal?->getId() !== $submission->getContextId()) {
$journal = $journalDao->getById($submission->getContextId());
}
$issue = Repo::issue()->getBySubmissionId($submission->getId());
$issue = $issue?->getJournalId() === $journal->getId() ? $issue : null;
$articleNode = $doc->createElement('Article');
$articleNode->appendChild($this->createJournalNode($doc, $journal, $issue, $submission));
$publication = $submission->getCurrentPublication();
$locale = $publication->getData('locale');
if ($locale == 'en') {
$articleNode->appendChild($doc->createElement('ArticleTitle'))->appendChild($doc->createTextNode($publication->getLocalizedTitle($locale, 'html')));
} else {
$articleNode->appendChild($doc->createElement('VernacularTitle'))->appendChild($doc->createTextNode($publication->getLocalizedTitle($locale, 'html')));
}
$startPage = $publication->getStartingPage();
$endPage = $publication->getEndingPage();
if (isset($startPage) && $startPage !== '') {
// We have a page range or e-location id
$articleNode->appendChild($doc->createElement('FirstPage'))->appendChild($doc->createTextNode($startPage));
$articleNode->appendChild($doc->createElement('LastPage'))->appendChild($doc->createTextNode($endPage));
}
if ($doi = $publication->getStoredPubId('doi')) {
$doiNode = $doc->createElement('ELocationID');
$doiNode->appendChild($doc->createTextNode($doi));
$doiNode->setAttribute('EIdType', 'doi');
$articleNode->appendChild($doiNode);
}
$articleNode->appendChild($doc->createElement('Language'))->appendChild($doc->createTextNode(LocaleConversion::get3LetterFrom2LetterIsoLanguage(substr($locale, 0, 2))));
$authorListNode = $doc->createElement('AuthorList');
foreach ($publication->getData('authors') ?? [] as $author) {
$authorListNode->appendChild($this->generateAuthorNode($doc, $journal, $issue, $submission, $author));
}
$articleNode->appendChild($authorListNode);
if ($publication->getStoredPubId('publisher-id')) {
$articleIdListNode = $doc->createElement('ArticleIdList');
$articleIdNode = $doc->createElement('ArticleId');
$articleIdNode->appendChild($doc->createTextNode($publication->getStoredPubId('publisher-id')));
$articleIdNode->setAttribute('IdType', 'pii');
$articleIdListNode->appendChild($articleIdNode);
$articleNode->appendChild($articleIdListNode);
}
// History
$historyNode = $doc->createElement('History');
$historyNode->appendChild($this->generatePubDateDom($doc, $submission->getDateSubmitted(), 'received'));
$editorDecision = Repo::decision()->getCollector()
->filterBySubmissionIds([$submission->getId()])
->getMany()
->first(fn (Decision $decision, $key) => $decision->getData('decision') === Decision::ACCEPT);
if ($editorDecision) {
$historyNode->appendChild($this->generatePubDateDom($doc, $editorDecision->getData('dateDecided'), 'accepted'));
}
$articleNode->appendChild($historyNode);
// FIXME: Revision dates
if ($abstract = PKPString::html2text($publication->getLocalizedData('abstract', $locale))) {
$articleNode->appendChild($doc->createElement('Abstract'))->appendChild($doc->createTextNode($abstract));
}
$rootNode->appendChild($articleNode);
}
$doc->appendChild($rootNode);
return $doc;
}
/**
* Construct and return a Journal element.
*
* @param \DOMDocument $doc
* @param Journal $journal
* @param Issue $issue
* @param Submission $submission
*/
public function createJournalNode($doc, $journal, $issue, $submission)
{
$journalNode = $doc->createElement('Journal');
$publisherNameNode = $doc->createElement('PublisherName');
$publisherNameNode->appendChild($doc->createTextNode($journal->getData('publisherInstitution')));
$journalNode->appendChild($publisherNameNode);
$journalTitleNode = $doc->createElement('JournalTitle');
$journalTitleNode->appendChild($doc->createTextNode($journal->getName($journal->getPrimaryLocale())));
$journalNode->appendChild($journalTitleNode);
// check various ISSN fields to create the ISSN tag
if ($journal->getData('printIssn') != '') {
$issn = $journal->getData('printIssn');
} elseif ($journal->getData('issn') != '') {
$issn = $journal->getData('issn');
} elseif ($journal->getData('onlineIssn') != '') {
$issn = $journal->getData('onlineIssn');
} else {
$issn = '';
}
if ($issn != '') {
$journalNode->appendChild($doc->createElement('Issn', $issn));
}
if ($issue && $issue->getShowVolume()) {
$journalNode->appendChild($doc->createElement('Volume'))->appendChild($doc->createTextNode($issue->getVolume()));
}
if ($issue && $issue->getShowNumber()) {
$journalNode->appendChild($doc->createElement('Issue'))->appendChild($doc->createTextNode($issue->getNumber()));
}
$datePublished = $submission->getCurrentPublication()?->getData('datePublished')
?: $issue?->getDatePublished();
if ($datePublished) {
$journalNode->appendChild($this->generatePubDateDom($doc, $datePublished, 'epublish'));
}
return $journalNode;
}
/**
* Generate and return an author node representing the supplied author.
*
* @param \DOMDocument $doc
* @param Journal $journal
* @param Issue $issue
* @param Submission $submission
* @param Author $author
*
* @return \DOMElement
*/
public function generateAuthorNode($doc, $journal, $issue, $submission, $author)
{
$authorElement = $doc->createElement('Author');
if (empty($author->getLocalizedFamilyName())) {
$authorElement->appendChild($node = $doc->createElement('FirstName'));
$node->setAttribute('EmptyYN', 'Y');
$authorElement->appendChild($doc->createElement('LastName'))->appendChild($doc->createTextNode(ucfirst($author->getLocalizedGivenName())));
} else {
$authorElement->appendChild($doc->createElement('FirstName'))->appendChild($doc->createTextNode(ucfirst($author->getLocalizedGivenName())));
$authorElement->appendChild($doc->createElement('LastName'))->appendChild($doc->createTextNode(ucfirst($author->getLocalizedFamilyName())));
}
$authorElement->appendChild($doc->createElement('Affiliation'))->appendChild($doc->createTextNode($author->getLocalizedAffiliation()));
return $authorElement;
}
/**
* Generate and return a date element per the PubMed standard.
*
* @param \DOMDocument $doc
* @param string $pubDate
* @param string $pubStatus
*
* @return \DOMElement
*/
public function generatePubDateDom($doc, $pubDate, $pubStatus)
{
$pubDateNode = $doc->createElement('PubDate');
$pubDateNode->setAttribute('PubStatus', $pubStatus);
$pubDateNode->appendChild($doc->createElement('Year', date('Y', strtotime($pubDate))));
$pubDateNode->appendChild($doc->createElement('Month', date('m', strtotime($pubDate))));
$pubDateNode->appendChild($doc->createElement('Day', date('d', strtotime($pubDate))));
return $pubDateNode;
}
}
@@ -0,0 +1,30 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE filterConfig SYSTEM "../../../../lib/pkp/dtd/filterConfig.dtd">
<!--
* 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>
<!-- PubMed XML article output -->
<filterGroup
symbolic="article=>pubmed-xml"
displayName="plugins.importexport.pubmed.displayName"
description="plugins.importexport.pubmed.description"
inputType="class::classes.submission.Submission[]"
outputType="xml::dtd" />
</filterGroups>
<filters>
<!-- PubMed article output -->
<filter
inGroup="article=>pubmed-xml"
class="APP\plugins\importexport\pubmed\filter\ArticlePubMedXmlFilter"
isTemplate="0" />
</filters>
</filterConfig>
+14
View File
@@ -0,0 +1,14 @@
<?php
/**
* @file plugins/importexport/pubmed/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 PubMed export plugin.
*
*/
return new \APP\plugins\importexport\pubmed\PubMedExportPlugin();
@@ -0,0 +1,50 @@
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-11-19T11:05:44+00:00\n"
"PO-Revision-Date: 2019-11-19T11:05:44+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.pubmed.displayName"
msgstr "إضافة التصدير PubMed XML"
msgid "plugins.importexport.pubmed.description"
msgstr ""
"تصدير بيانات المقالات الوصفية بصيغة PubMed XML لأغراض الفهرسة في MEDLINE."
msgid "plugins.importexport.pubmed.export"
msgstr "تصدير البيانات"
msgid "plugins.importexport.pubmed.export.issues"
msgstr "تصدير الأعداد"
msgid "plugins.importexport.pubmed.export.selectIssue"
msgstr "إختر عدداً لتصديره."
msgid "plugins.importexport.pubmed.export.articles"
msgstr "تصدير المقالات"
msgid "plugins.importexport.pubmed.export.selectArticle"
msgstr "إختر المقالات التي تريد تصديرها."
msgid "plugins.importexport.pubmed.cliUsage"
msgstr ""
"الاستعمال: \n"
"{$scriptName} {$pluginName} [xmlFileName] [journal_path] articles "
"[articleId1] [articleId2] ...\n"
"{$scriptName} {$pluginName} [xmlFileName] [journal_path] issue [issueId]\n"
msgid "plugins.importexport.pubmed.cliError"
msgstr "خطأ:"
msgid "plugins.importexport.pubmed.export.error.issueNotFound"
msgstr "لا يوجد عدد يطابق رمز تعريف العدد المحدد \"{$issueId}\"."
msgid "plugins.importexport.pubmed.export.error.articleNotFound"
msgstr "لا توجد مقالة يطابق رمز تعريفها الرمز المحدد \"{$articleId}\"."
@@ -0,0 +1,55 @@
# 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-pubmed/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.pubmed.export"
msgstr "Data ixracı"
msgid "plugins.importexport.pubmed.export.issues"
msgstr "Nömrələri ixrac edin"
msgid "plugins.importexport.pubmed.export.selectIssue"
msgstr "İxrac üçün bir nömrə seçin."
msgid "plugins.importexport.pubmed.cliError"
msgstr "Xəta:"
msgid "plugins.importexport.pubmed.export.error.issueNotFound"
msgstr ""
"\"{$issueId}\" xüsusi nömrə ID-si ilə hər hansı bir nömrə uyğun gəlmədi."
msgid "plugins.importexport.pubmed.export.error.articleNotFound"
msgstr ""
"\"{$articleId}\" xüsusi məqalə nömrəsi ilə hər hansı bir məqalə uyğun "
"gəlmədi."
msgid "plugins.importexport.pubmed.displayName"
msgstr "PubMed XML İxrac Əlavəsi"
msgid "plugins.importexport.pubmed.description"
msgstr ""
"MEDLINE-da indekslənməsi üçün məqalə metadatalarını PubMed XML formatında "
"ixrac edər."
msgid "plugins.importexport.pubmed.export.articles"
msgstr "Məqalələri ixrac edin"
msgid "plugins.importexport.pubmed.export.selectArticle"
msgstr "İxrac üçün bir məqalə seçin."
msgid "plugins.importexport.pubmed.cliUsage"
msgstr ""
"İsitfadə: \n"
"{$scriptName} {$pluginName} [xmlFileName] [journal_path] articles "
"[articleId1] [articleId2] ...\n"
"{$scriptName} {$pluginName} [xmlFileName] [journal_path] issue [issueId]\n"
@@ -0,0 +1,56 @@
# Cyril Kamburov <cc@intermedia.bg>, 2021.
msgid ""
msgstr ""
"PO-Revision-Date: 2021-08-29 19:18+0000\n"
"Last-Translator: Cyril Kamburov <cc@intermedia.bg>\n"
"Language-Team: Bulgarian <http://translate.pkp.sfu.ca/projects/ojs/"
"importexport-pubmed/bg/>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 3.9.1\n"
msgid "plugins.importexport.pubmed.displayName"
msgstr "Плъгин за PubMed XML експорт"
msgid "plugins.importexport.pubmed.description"
msgstr ""
"Експортиране на метаданните на статиите в PubMed XML формат за индексиране в "
"MEDLINE."
msgid "plugins.importexport.pubmed.export"
msgstr "Експорт на данни"
msgid "plugins.importexport.pubmed.export.issues"
msgstr "Експорт на броеве"
msgid "plugins.importexport.pubmed.export.selectIssue"
msgstr "Изберете брой за експорт."
msgid "plugins.importexport.pubmed.export.articles"
msgstr "Експорт на статии"
msgid "plugins.importexport.pubmed.export.selectArticle"
msgstr "Изберете статии за експорт."
msgid "plugins.importexport.pubmed.cliUsage"
msgstr ""
"Употреба: \n"
"{$scriptName} {$pluginName} [xmlFileName] [journal_path] articles "
"[articleId1] [articleId2] ...\n"
"{$scriptName} {$pluginName} [xmlFileName] [journal_path] issue [issueId]\n"
msgid "plugins.importexport.pubmed.cliError"
msgstr "ГРЕШКА:"
msgid "plugins.importexport.pubmed.export.error.issueNotFound"
msgstr ""
"Нито един брой не съответства на посочения идентификационен номер на брой "
"\"{$issueId}\"."
msgid "plugins.importexport.pubmed.export.error.articleNotFound"
msgstr ""
"Нито една статия не съответства на посочения идентификационен номер на "
"статия \"{$articleId}\"."
@@ -0,0 +1,52 @@
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-30T06:56:45-07:00\n"
"PO-Revision-Date: 2020-04-17 18:57+0000\n"
"Last-Translator: Jordi LC <jordi.lacruz@uab.cat>\n"
"Language-Team: Catalan <http://translate.pkp.sfu.ca/projects/ojs/"
"importexport-pubmed/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.pubmed.displayName"
msgstr "Connector d'exportació a XML de PubMed"
msgid "plugins.importexport.pubmed.description"
msgstr "Exporta les metadades de l'article en format XML de PubMed per a la indexació a MEDLINE."
msgid "plugins.importexport.pubmed.export"
msgstr "Exporta les dades"
msgid "plugins.importexport.pubmed.export.issues"
msgstr "Exporta els números"
msgid "plugins.importexport.pubmed.export.selectIssue"
msgstr "Seleccioneu el número que vulgueu exportar."
msgid "plugins.importexport.pubmed.export.articles"
msgstr "Exporta els articles"
msgid "plugins.importexport.pubmed.export.selectArticle"
msgstr "Seleccioneu els articles que vulgueu exportar."
msgid "plugins.importexport.pubmed.cliUsage"
msgstr ""
"Ús: \n"
"{$scriptName} {$pluginName} [xmlFileName] [journal_path] articles "
"[articleId1] [articleId2] ...\n"
"{$scriptName} {$pluginName} [xmlFileName] [journal_path] número [issueId]\n"
msgid "plugins.importexport.pubmed.cliError"
msgstr "ERROR:"
msgid "plugins.importexport.pubmed.export.error.issueNotFound"
msgstr "No hi ha cap número que coincideixi amb l'id. de número indicat, \"{$issueId}\"."
msgid "plugins.importexport.pubmed.export.error.articleNotFound"
msgstr "No hi ha cap article que coincideixi amb l'id. d'article indicat, \"{$articleId}\"."
@@ -0,0 +1,54 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2020-04-12 19:37+0000\n"
"Last-Translator: Hewa Salam Khalid <hewa.salam@koyauniversity.org>\n"
"Language-Team: Kurdish <http://translate.pkp.sfu.ca/projects/ojs/"
"importexport-pubmed/ku_IQ/>\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.pubmed.displayName"
msgstr "هەناردەی گرێدانی PubMed XML"
msgid "plugins.importexport.pubmed.description"
msgstr ""
"هەناردەکردنی زانیاریی توێژینەوەکان بە شێوەی PubMed XML لە شێوەی ناوەرۆکی "
"MEDLINE."
msgid "plugins.importexport.pubmed.export"
msgstr "هەناردەی داتا"
msgid "plugins.importexport.pubmed.export.issues"
msgstr "هەناردەی ژمارەکانی گۆڤار"
msgid "plugins.importexport.pubmed.export.selectIssue"
msgstr ".ژمارەیەکی گۆڤار دیاری بکە بۆ هەناردە"
msgid "plugins.importexport.pubmed.export.articles"
msgstr "هەناردەی توێژینەوەکان"
msgid "plugins.importexport.pubmed.export.selectArticle"
msgstr "ئەو توێژینەوانە دیاری بکە کە دەتەوێت هەناردەیان بکەیت."
msgid "plugins.importexport.pubmed.cliUsage"
msgstr ""
"بەکارهێنان:\n"
"{$scriptName} {$pluginName} [xmlFileName] [journal_path] articles "
"[articleId1] [articleId2] ...\n"
"{$scriptName} {$pluginName} [xmlFileName] [journal_path] issue [issueId]\n"
msgid "plugins.importexport.pubmed.cliError"
msgstr "هەڵە:"
msgid "plugins.importexport.pubmed.export.error.issueNotFound"
msgstr ""
"هیچ ژمارەیەک لەگەڵ ژمارەی ناسنامەی دیاریکراو یەکناگرێتەوە. \"{$issueId}\"."
msgid "plugins.importexport.pubmed.export.error.articleNotFound"
msgstr ""
"هیچ توێژینەوەیەک لەگەڵ ژمارەی ناسنامەی توێژینەوەی دیاریکراو یەکناگرێتەوە. "
"\"{$articleId}\"."
@@ -0,0 +1,52 @@
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-11-19T11:05:44+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-pubmed/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.pubmed.displayName"
msgstr "Plugin exportu XML pro PubMed"
msgid "plugins.importexport.pubmed.description"
msgstr "Export metadat článku ve formátu PubMed XML pro indexaci v MEDLINE."
msgid "plugins.importexport.pubmed.export"
msgstr "Export dat"
msgid "plugins.importexport.pubmed.export.issues"
msgstr "Export čísel"
msgid "plugins.importexport.pubmed.export.selectIssue"
msgstr "Zvolte číslo pro export."
msgid "plugins.importexport.pubmed.export.articles"
msgstr "Export článků"
msgid "plugins.importexport.pubmed.export.selectArticle"
msgstr "Zvolte články pro export."
msgid "plugins.importexport.pubmed.cliUsage"
msgstr ""
"Použití: \n"
"{$scriptName} {$pluginName} [xmlFileName] [journal_path] articles "
"[articleId1] [articleId2] ...\n"
"{$scriptName} {$pluginName} [xmlFileName] [journal_path] issue [issueId]\n"
msgid "plugins.importexport.pubmed.cliError"
msgstr "CHYBA:"
msgid "plugins.importexport.pubmed.export.error.issueNotFound"
msgstr "Žádné číslo neodpovídá uvedenému ID čísla \"{$issueId}\"."
msgid "plugins.importexport.pubmed.export.error.articleNotFound"
msgstr "Žádný článek neodpovídá uvedenému ID článku \"{$articleId}\"."
@@ -0,0 +1,53 @@
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-11-19T11:05:45+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-pubmed/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.pubmed.displayName"
msgstr "PubMed XML Eksport-plugin"
msgid "plugins.importexport.pubmed.description"
msgstr ""
"Eksportér artikel-metadata i PubMed XML format til indekssering i MEDLINE."
msgid "plugins.importexport.pubmed.export"
msgstr "Eksportér data"
msgid "plugins.importexport.pubmed.export.issues"
msgstr "Eksportér numre"
msgid "plugins.importexport.pubmed.export.selectIssue"
msgstr "Vælg et nummer til eksport."
msgid "plugins.importexport.pubmed.export.articles"
msgstr "Eksportér artikler"
msgid "plugins.importexport.pubmed.export.selectArticle"
msgstr "Vælg artikler til eksport."
msgid "plugins.importexport.pubmed.cliUsage"
msgstr ""
"Brug: \n"
"{$scriptName} {$pluginName} [xmlFileName] [journal_path] artikler "
"[articleId1] [articleId2] ...\n"
"{$scriptName} {$pluginName} [xmlFileName] [journal_path] nummer [issueId]\n"
msgid "plugins.importexport.pubmed.cliError"
msgstr "FEJL:"
msgid "plugins.importexport.pubmed.export.error.issueNotFound"
msgstr "Intet nummer matchede det angivne nummer-ID \"{$issueId}\"."
msgid "plugins.importexport.pubmed.export.error.articleNotFound"
msgstr "Ingen artikel matchede det angivne artikel-ID \"{$articleId}\"."
@@ -0,0 +1,52 @@
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-30T06:56:45-07:00\n"
"PO-Revision-Date: 2019-09-30T06:56:45-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.pubmed.displayName"
msgstr "PubMed-XML-Export-Plugin"
msgid "plugins.importexport.pubmed.description"
msgstr ""
"Beitragsmetadaten im PubMed-XML-Format für die Indexierung in MEDLINE "
"exportieren."
msgid "plugins.importexport.pubmed.export"
msgstr "Daten exportieren"
msgid "plugins.importexport.pubmed.export.issues"
msgstr "Ausgaben exportieren"
msgid "plugins.importexport.pubmed.export.selectIssue"
msgstr "Ausgabe für Export auswählen."
msgid "plugins.importexport.pubmed.export.articles"
msgstr "Beiträge exportieren"
msgid "plugins.importexport.pubmed.export.selectArticle"
msgstr "Beiträge für Export auswählen."
msgid "plugins.importexport.pubmed.cliUsage"
msgstr ""
"Gebrauch: \n"
"{$scriptName} {$pluginName} [xmlDateiname] [Zeitschriftpfad] Beiträge "
"[Beitragssignatur1] [Beitragssignatur2] ...\n"
"{$scriptName} {$pluginName} [xmlDateiname] [Zeitschriftpfad] Ausgabe "
"[Ausgabesignatur]\n"
msgid "plugins.importexport.pubmed.cliError"
msgstr "FEHLER:"
msgid "plugins.importexport.pubmed.export.error.issueNotFound"
msgstr "Keine Ausgabe mit der eingegebenen Signatur \"{$issueId}\"."
msgid "plugins.importexport.pubmed.export.error.articleNotFound"
msgstr "Kein Beitrag mit der eingegebenen Signatur \"{$articleId}\"."
@@ -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,49 @@
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-30T06:56:45-07:00\n"
"PO-Revision-Date: 2019-09-30T06:56:45-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.pubmed.displayName"
msgstr "PubMed XML Export Plugin"
msgid "plugins.importexport.pubmed.description"
msgstr "Export article metadata in PubMed XML format for indexing in MEDLINE."
msgid "plugins.importexport.pubmed.export"
msgstr "Export Data"
msgid "plugins.importexport.pubmed.export.issues"
msgstr "Export Issues"
msgid "plugins.importexport.pubmed.export.selectIssue"
msgstr "Select an Issue to export."
msgid "plugins.importexport.pubmed.export.articles"
msgstr "Export Articles"
msgid "plugins.importexport.pubmed.export.selectArticle"
msgstr "Select Articles to export."
msgid "plugins.importexport.pubmed.cliUsage"
msgstr ""
"Usage: \n"
"{$scriptName} {$pluginName} [xmlFileName] [journal_path] articles "
"[articleId1] [articleId2] ...\n"
"{$scriptName} {$pluginName} [xmlFileName] [journal_path] issue [issueId]\n"
msgid "plugins.importexport.pubmed.cliError"
msgstr "ERROR:"
msgid "plugins.importexport.pubmed.export.error.issueNotFound"
msgstr "No issue matched the specified issue ID \"{$issueId}\"."
msgid "plugins.importexport.pubmed.export.error.articleNotFound"
msgstr "No article matched the specified article ID \"{$articleId}\"."
@@ -0,0 +1,52 @@
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-11-19T11:05:45+00:00\n"
"PO-Revision-Date: 2020-04-17 18:57+0000\n"
"Last-Translator: Jordi LC <jordi.lacruz@uab.cat>\n"
"Language-Team: Spanish <http://translate.pkp.sfu.ca/projects/ojs/"
"importexport-pubmed/es/>\n"
"Language: es_ES\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 3.9.1\n"
msgid "plugins.importexport.pubmed.displayName"
msgstr "Módulo de exportación de XML de PubMed"
msgid "plugins.importexport.pubmed.description"
msgstr "Exportación de la metadata de artículos usando XML de PubMed para Indexación en MEDLINE."
msgid "plugins.importexport.pubmed.export"
msgstr "Exportar datos"
msgid "plugins.importexport.pubmed.export.issues"
msgstr "Exportar números"
msgid "plugins.importexport.pubmed.export.selectIssue"
msgstr "Seleccione un número para exportar."
msgid "plugins.importexport.pubmed.export.articles"
msgstr "Exportar artículos"
msgid "plugins.importexport.pubmed.export.selectArticle"
msgstr "Seleccione artículos para exportar."
msgid "plugins.importexport.pubmed.cliUsage"
msgstr ""
"Uso: \n"
"{$scriptName} {$pluginName} [xmlFileName] [journal_path] artículos "
"[articleId1] [articleId2] ...\n"
"{$scriptName} {$pluginName} [xmlFileName] [journal_path] número [issueId]\n"
msgid "plugins.importexport.pubmed.cliError"
msgstr "ERROR:"
msgid "plugins.importexport.pubmed.export.error.issueNotFound"
msgstr "No existe ningún número con el ID especificado \"{$issueId}\"."
msgid "plugins.importexport.pubmed.export.error.articleNotFound"
msgstr "No existe ningún artículo con el ID especificado \"{$articleId}\"."
@@ -0,0 +1,50 @@
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-11-19T11:05:45+00:00\n"
"PO-Revision-Date: 2019-11-19T11:05:45+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.pubmed.displayName"
msgstr "PubMed XML Esportatzeko plugina"
msgid "plugins.importexport.pubmed.description"
msgstr ""
"Artikuluen metadatuak PubMed XML formatura esportatu, MEDLINEn indexatzeko."
msgid "plugins.importexport.pubmed.export"
msgstr "Esportatu datuak"
msgid "plugins.importexport.pubmed.export.issues"
msgstr "Esportatu zenbakiak"
msgid "plugins.importexport.pubmed.export.selectIssue"
msgstr "Hautatu esportatzeko zenbakia."
msgid "plugins.importexport.pubmed.export.articles"
msgstr "Esportatu artikuluak"
msgid "plugins.importexport.pubmed.export.selectArticle"
msgstr "Hautatu esportatzeko artikuluak."
msgid "plugins.importexport.pubmed.cliUsage"
msgstr ""
"Usage: \n"
"{$scriptName} {$pluginName} [xmlFileName] [journal_path] articles "
"[articleId1] [articleId2] ...\n"
"{$scriptName} {$pluginName} [xmlFileName] [journal_path] issue [issueId]\n"
msgid "plugins.importexport.pubmed.cliError"
msgstr "ERROREA:"
msgid "plugins.importexport.pubmed.export.error.issueNotFound"
msgstr "Ez dago \"{$issueId}\" IDarekin bat datorren zenbakirik."
msgid "plugins.importexport.pubmed.export.error.articleNotFound"
msgstr "Ez dago \"{$articleId}\" IDarekin bat datorren artikulurik."
@@ -0,0 +1,49 @@
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-11-19T11:05:45+00:00\n"
"PO-Revision-Date: 2019-11-19T11:05:45+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.pubmed.displayName"
msgstr "افزونه برون دهی PubMed XML"
msgid "plugins.importexport.pubmed.description"
msgstr ""
"برون دهی فراداده‌های مقالات در فرمت PubMed XML برای نمایه‌سازی در MEDLINE"
msgid "plugins.importexport.pubmed.export"
msgstr "برون دهی داده‌ها"
msgid "plugins.importexport.pubmed.export.issues"
msgstr "برون دهی شماره‌ها"
msgid "plugins.importexport.pubmed.export.selectIssue"
msgstr "انتخاب شماره‌ها برای برون دهی"
msgid "plugins.importexport.pubmed.export.articles"
msgstr "برون دهی مقالات"
msgid "plugins.importexport.pubmed.export.selectArticle"
msgstr "انتخاب مقالات برای برون دهی"
msgid "plugins.importexport.pubmed.cliUsage"
msgstr ""
"کارکرد: {$scriptName} {$pluginName} [xmlFileName] [journal_path] articles "
"[articleId1] [articleId2] ... {$scriptName} {$pluginName} [xmlFileName] "
"[journal_path] issue [issueId]"
msgid "plugins.importexport.pubmed.cliError"
msgstr "خطا"
msgid "plugins.importexport.pubmed.export.error.issueNotFound"
msgstr "هیچ شماره‌ای با شناسه «{$issueId}» موجود نیست"
msgid "plugins.importexport.pubmed.export.error.articleNotFound"
msgstr "هیچ مقاله‌ای با شناسه «{$articleId}» موجود نیست"
@@ -0,0 +1,54 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2020-10-21 07:50+0000\n"
"Last-Translator: Tom Granroth <tom.granroth@tsv.fi>\n"
"Language-Team: Finnish <http://translate.pkp.sfu.ca/projects/ojs/"
"importexport-pubmed/fi_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.pubmed.displayName"
msgstr "PubMed XML -vientilisäosa"
msgid "plugins.importexport.pubmed.description"
msgstr ""
"Vie artikkelin kuvailutietoja PubMed XML -formaatissa MEDLINE:n "
"indeksoitavaksi."
msgid "plugins.importexport.pubmed.export"
msgstr "Vie tiedot"
msgid "plugins.importexport.pubmed.export.issues"
msgstr "Vie numeroita"
msgid "plugins.importexport.pubmed.export.selectIssue"
msgstr "Valitse vietävä numero."
msgid "plugins.importexport.pubmed.export.articles"
msgstr "Vie artikkeleita"
msgid "plugins.importexport.pubmed.export.selectArticle"
msgstr "Valitse vietävät artikkelit."
msgid "plugins.importexport.pubmed.cliUsage"
msgstr ""
"Käyttö:\n"
"{$scriptName} {$pluginName} [xmlFileName] [journal_path] artikkelit "
"[articleId1] [articleId2] ...\n"
"{$scriptName} {$pluginName} [xmlFileName] [journal_path] numero [issueId]\n"
msgid "plugins.importexport.pubmed.cliError"
msgstr "VIRHE:"
msgid "plugins.importexport.pubmed.export.error.issueNotFound"
msgstr ""
"Yksikään numero ei vastannut määritettyä numeron tunnistetta \"{$issueId}\"."
msgid "plugins.importexport.pubmed.export.error.articleNotFound"
msgstr ""
"Yksikään artikkeli ei vastannut määritettyä artikkelin tunnistetta "
"\"{$articleId}\"."
@@ -0,0 +1,56 @@
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-30T06:56:45-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-pubmed/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.pubmed.displayName"
msgstr "Plugiciel d'exportation PubMed XML"
msgid "plugins.importexport.pubmed.description"
msgstr "Exporter en format PubMed XML les métadonnées de l'article pour indexation dans MEDLINE."
msgid "plugins.importexport.pubmed.export"
msgstr "Exporter des données"
msgid "plugins.importexport.pubmed.export.issues"
msgstr "Exporter des numéros"
msgid "plugins.importexport.pubmed.export.selectIssue"
msgstr "Sélectionner un numéro à exporter."
msgid "plugins.importexport.pubmed.export.articles"
msgstr "Exporter des articles"
msgid "plugins.importexport.pubmed.export.selectArticle"
msgstr "Sélectionner les articles à exporter."
msgid "plugins.importexport.pubmed.cliUsage"
msgstr ""
"Utilisation : \n"
"{$scriptName} {$pluginName} [xmlFileName] [journal_path] articles "
"[articleId1] [articleId2] ...\n"
"{$scriptName} {$pluginName} [xmlFileName] [journal_path] numéro [issueId]\n"
msgid "plugins.importexport.pubmed.cliError"
msgstr "ERREUR :"
msgid "plugins.importexport.pubmed.export.error.issueNotFound"
msgstr ""
"Aucun numéro ne correspond à l'identifiant du numéro spécifié « {$issueId} »."
msgid "plugins.importexport.pubmed.export.error.articleNotFound"
msgstr ""
"Aucun article ne correspond à l'identifiant de l'article spécifié « "
"{$articleId} »."
@@ -0,0 +1,54 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2020-09-24 07:28+0000\n"
"Last-Translator: Paul Heckler <paul.d.heckler@gmail.com>\n"
"Language-Team: French <http://translate.pkp.sfu.ca/projects/ojs/importexport-"
"pubmed/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.pubmed.displayName"
msgstr "Module d'exportation XML PubMed"
msgid "plugins.importexport.pubmed.description"
msgstr ""
"Exporter les métadonnées de l'article au format XML PubMed pour indexation "
"dans MEDLINE."
msgid "plugins.importexport.pubmed.export"
msgstr "Exporter les données"
msgid "plugins.importexport.pubmed.export.issues"
msgstr "Exporter des numéros"
msgid "plugins.importexport.pubmed.export.selectIssue"
msgstr "Sélectionner un numéro à exporter."
msgid "plugins.importexport.pubmed.export.articles"
msgstr "Exporter des articles"
msgid "plugins.importexport.pubmed.export.selectArticle"
msgstr "Sélectionner les articles à exporter."
msgid "plugins.importexport.pubmed.cliUsage"
msgstr ""
"Utilisation : \n"
"{$scriptName} {$pluginName} [xmlFileName] [journal_path] articles "
"[articleId1] [articleId2] ...\n"
"{$scriptName} {$pluginName} [xmlFileName] [journal_path] numéro [issueId]\n"
msgid "plugins.importexport.pubmed.cliError"
msgstr "ERREUR :"
msgid "plugins.importexport.pubmed.export.error.issueNotFound"
msgstr ""
"Aucun numéro ne correspond à l'identifiant du numéro indiqué « {$issueId} »."
msgid "plugins.importexport.pubmed.export.error.articleNotFound"
msgstr ""
"Aucun article ne correspond à l'identifiant de l'article indiqué "
"« {$articleId} »."
@@ -0,0 +1,51 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2021-05-25 11:35+0000\n"
"Last-Translator: Real Academia Galega <reacagal@gmail.com>\n"
"Language-Team: Galician <http://translate.pkp.sfu.ca/projects/ojs/"
"importexport-pubmed/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.pubmed.displayName"
msgstr "Complemento de exportación XML PubMed"
msgid "plugins.importexport.pubmed.description"
msgstr ""
"Exportar os metadatos do artigo en formato XML PubMed para Indexación en "
"MEDLINE."
msgid "plugins.importexport.pubmed.export"
msgstr "Exportar datos"
msgid "plugins.importexport.pubmed.export.issues"
msgstr "Exportar os números"
msgid "plugins.importexport.pubmed.export.selectIssue"
msgstr "Seleccionar un número para exportar."
msgid "plugins.importexport.pubmed.export.articles"
msgstr "Exportar os artigos"
msgid "plugins.importexport.pubmed.export.selectArticle"
msgstr "Seleccionar artigos para exportar."
msgid "plugins.importexport.pubmed.cliUsage"
msgstr ""
"Uso: \n"
"{$scriptName} {$pluginName} [xmlFileName] [journal_path] artigos "
"[articleId1] [articleId2] ...\n"
"{$scriptName} {$pluginName} [xmlFileName] [journal_path] número [issueId]\n"
msgid "plugins.importexport.pubmed.cliError"
msgstr "ERRO:"
msgid "plugins.importexport.pubmed.export.error.issueNotFound"
msgstr "Ningún número coincide co ID de número indicado \"{$issueId}\"."
msgid "plugins.importexport.pubmed.export.error.articleNotFound"
msgstr "Ningún artigo corresponde ao ID do artigo indicado \"{$articleId}\"."
@@ -0,0 +1,54 @@
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-11-19T11:05:45+00:00\n"
"PO-Revision-Date: 2019-11-19T11:05:45+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.pubmed.displayName"
msgstr "Dodatak za PubMed XML iznošenje"
msgid "plugins.importexport.pubmed.description"
msgstr ""
"Iznošenje metapodataka članaka u PubMed XML formatu za indeksiranje u "
"MEDLINE-u."
msgid "plugins.importexport.pubmed.export"
msgstr "Iznošenje podataka"
msgid "plugins.importexport.pubmed.export.issues"
msgstr "Iznošenje broja"
msgid "plugins.importexport.pubmed.export.selectIssue"
msgstr "Odaberite broj za iznošenje."
msgid "plugins.importexport.pubmed.export.articles"
msgstr "Iznošenje članaka"
msgid "plugins.importexport.pubmed.export.selectArticle"
msgstr "Odaberite članke za iznošenje."
msgid "plugins.importexport.pubmed.cliUsage"
msgstr ""
"Primjena: \n"
"{$scriptName} {$pluginName} [xmlNazivDatoteke] [putanja_časopisa] članci "
"[članakId1] [članakId2] ...\n"
"{$scriptName} {$pluginName} [xmlNazivDatoteke] [putanja_časopisa] broj "
"[brojId]\n"
msgid "plugins.importexport.pubmed.cliError"
msgstr "POGREŠKA:"
msgid "plugins.importexport.pubmed.export.error.issueNotFound"
msgstr "Nijedan broj ne odgovara navedenom ID-u ({$issueId})."
msgid "plugins.importexport.pubmed.export.error.articleNotFound"
msgstr ""
"Nijedan članak ne odgovara navedenom ID-u \n"
"\t ({$articleId})."
@@ -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,52 @@
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-pubmed/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.pubmed.displayName"
msgstr "PubMed XML Export Plugin"
msgid "plugins.importexport.pubmed.description"
msgstr "Cikk metaadat exportálása PubMed XML formátumban MEDLINE-os indexelés számára."
msgid "plugins.importexport.pubmed.export"
msgstr "Adat exportálása"
msgid "plugins.importexport.pubmed.export.issues"
msgstr "Folyóiratszámok exportálása"
msgid "plugins.importexport.pubmed.export.selectIssue"
msgstr "Válasszon ki egy folyóiratszámot exportálásra."
msgid "plugins.importexport.pubmed.export.articles"
msgstr "Cikk exportálása"
msgid "plugins.importexport.pubmed.export.selectArticle"
msgstr "Válasszon ki folyóiratcikket exportálásra."
msgid "plugins.importexport.pubmed.cliUsage"
msgstr ""
"Használat: \n"
"{$scriptName} {$pluginName} [xmlFileName] [journal_path] cikkek [articleId1] [articleId2] ...\n"
"{$scriptName} {$pluginName} [xmlFileName] [journal_path] számok [issueId]\n"
""
msgid "plugins.importexport.pubmed.cliError"
msgstr "HIBA:"
msgid "plugins.importexport.pubmed.export.error.issueNotFound"
msgstr "Nincs olyan folyóiratszám, amely megegyezne ezzel a megadott folyóiratszám-azonosítóval \"{$issueId}\"."
msgid "plugins.importexport.pubmed.export.error.articleNotFound"
msgstr "Nincs olyan folyóiratcikk, amely megegyezne ezzel a megadott folyóiratcikk-azonosítóval \"{$articleId}\"."
@@ -0,0 +1,53 @@
# Artashes Mirzoyan <amirzoyan@sci.am>, 2022.
# Tigran Zargaryan <tigran@flib.sci.am>, 2022, 2023.
msgid ""
msgstr ""
"PO-Revision-Date: 2023-04-07 04:59+0000\n"
"Last-Translator: Tigran Zargaryan <tigran@flib.sci.am>\n"
"Language-Team: Armenian <http://translate.pkp.sfu.ca/projects/ojs/"
"importexport-pubmed/hy/>\n"
"Language: hy\n"
"MIME-Version: 1.0\n"
"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.pubmed.displayName"
msgstr "PubMed XML արտահանման փլագին"
msgid "plugins.importexport.pubmed.description"
msgstr ""
"Արտահանեք հոդվածի մետատվյալները PubMed XML ձևաչափով՝ MEDLINE-ում "
"ինդեքսավորելու համար:"
msgid "plugins.importexport.pubmed.export"
msgstr "Արտահանեք տվյալները"
msgid "plugins.importexport.pubmed.export.issues"
msgstr "Արտահանեք թողարկումները"
msgid "plugins.importexport.pubmed.export.selectIssue"
msgstr "Ընտրեք թողարկումը արտահանելու համար:"
msgid "plugins.importexport.pubmed.export.articles"
msgstr "Արտահանեք հոդվածները"
msgid "plugins.importexport.pubmed.export.selectArticle"
msgstr "Ընտրեք հոդվածները արտահանելու համար։"
msgid "plugins.importexport.pubmed.cliUsage"
msgstr ""
"Օգտագործում: \n"
"{$scriptName} {$pluginName} [xmlFileName] [journal_path] articles "
"[articleId1] [articleId2] ...\n"
"{$scriptName} {$pluginName} [xmlFileName] [journal_path] issue [issueId]\n"
msgid "plugins.importexport.pubmed.cliError"
msgstr "ՍԽԱԼ:"
msgid "plugins.importexport.pubmed.export.error.issueNotFound"
msgstr "Ոչ մի թողարկում չի համընկնում նշված թողարկման ID -ին՝ \"{$issueId}\":"
msgid "plugins.importexport.pubmed.export.error.articleNotFound"
msgstr "Ոչ մի հոդված չի համապատասխանում նշված \"{$articleId}\" հոդվածի ID-ին:"
@@ -0,0 +1,54 @@
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-11-19T11:05:45+00:00\n"
"PO-Revision-Date: 2019-11-19T11:05:45+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.pubmed.displayName"
msgstr "Plugin Ekspor PubMed XML"
msgid "plugins.importexport.pubmed.description"
msgstr ""
"Ekspor metadata artikel dalam format PubMed XML untuk mengindeks dalam "
"MEDLINE."
msgid "plugins.importexport.pubmed.export"
msgstr "Ekspor Data"
msgid "plugins.importexport.pubmed.export.issues"
msgstr "Ekspor Isu"
msgid "plugins.importexport.pubmed.export.selectIssue"
msgstr "Pilih isu untuk ekspor."
msgid "plugins.importexport.pubmed.export.articles"
msgstr "Ekspor Artikel"
msgid "plugins.importexport.pubmed.export.selectArticle"
msgstr "Pilih artikel untuk ekspor."
msgid "plugins.importexport.pubmed.cliUsage"
msgstr ""
"Penggunaan: \n"
"{$scriptName} {$pluginName} [xmlFileName] [journal_path] articles "
"[articleId1] [articleId2] ...\n"
"{$scriptName} {$pluginName} [xmlFileName] [journal_path] issue [issueId]\n"
msgid "plugins.importexport.pubmed.cliError"
msgstr "ERROR:"
msgid "plugins.importexport.pubmed.export.error.issueNotFound"
msgstr ""
"Tidak ada isu yang cocok dengan ID isu yang di spesifikasikan \"{$issueId}\"."
msgid "plugins.importexport.pubmed.export.error.articleNotFound"
msgstr ""
"Tidak ada artikel yang cocok dengan ID artikel yang di spesifikasikan "
"\"{$articleId}\"."
@@ -0,0 +1,41 @@
# 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.pubmed.displayName"
msgstr ""
msgid "plugins.importexport.pubmed.description"
msgstr ""
msgid "plugins.importexport.pubmed.export"
msgstr ""
msgid "plugins.importexport.pubmed.export.issues"
msgstr ""
msgid "plugins.importexport.pubmed.export.selectIssue"
msgstr ""
msgid "plugins.importexport.pubmed.export.articles"
msgstr ""
msgid "plugins.importexport.pubmed.export.selectArticle"
msgstr ""
msgid "plugins.importexport.pubmed.cliUsage"
msgstr ""
msgid "plugins.importexport.pubmed.cliError"
msgstr ""
msgid "plugins.importexport.pubmed.export.error.issueNotFound"
msgstr ""
msgid "plugins.importexport.pubmed.export.error.articleNotFound"
msgstr ""
@@ -0,0 +1,52 @@
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-11-19T11:05:45+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-pubmed/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.pubmed.displayName"
msgstr "PubMed XML"
msgid "plugins.importexport.pubmed.description"
msgstr "Esporta i metadati degli articoli in formato XML compatibile con PubMed."
msgid "plugins.importexport.pubmed.export"
msgstr "Esporta i dati"
msgid "plugins.importexport.pubmed.export.issues"
msgstr "Esporta fascicoli"
msgid "plugins.importexport.pubmed.export.selectIssue"
msgstr "Seleziona i fascicoli da esportare."
msgid "plugins.importexport.pubmed.export.articles"
msgstr "Esporta articoli"
msgid "plugins.importexport.pubmed.export.selectArticle"
msgstr "Seleziona gli articoli da esportare."
msgid "plugins.importexport.pubmed.cliUsage"
msgstr ""
"Uso: \n"
"{$scriptName} {$pluginName} [xmlFileName] [journal_path] articles "
"[articleId1] [articleId2] ...\n"
"{$scriptName} {$pluginName} [xmlFileName] [journal_path] issue [issueId]\n"
msgid "plugins.importexport.pubmed.cliError"
msgstr "ERRORE:"
msgid "plugins.importexport.pubmed.export.error.issueNotFound"
msgstr "Non esiste corrispondenza per lo specifico ID di fasciolo \"{$issueId}\"."
msgid "plugins.importexport.pubmed.export.error.articleNotFound"
msgstr "Non esiste corrispondenza per lo specifico ID di articolo \"{$articleId}\"."
@@ -0,0 +1,51 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2021-02-09 08:48+0000\n"
"Last-Translator: Dimitri Gogelia <dimitri.gogelia@iliauni.edu.ge>\n"
"Language-Team: Georgian <http://translate.pkp.sfu.ca/projects/ojs/"
"importexport-pubmed/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.pubmed.displayName"
msgstr "მოდული „ექსპორტი PubMed XML-ში“"
msgid "plugins.importexport.pubmed.description"
msgstr ""
"აექსპორტებს სტატიის მეტა-მონაცემებს PubMed XML ფორმატში, MEDLINE-ში "
"ინდექსაციისათვის."
msgid "plugins.importexport.pubmed.export"
msgstr "მონაცემთა ექსპორტი"
msgid "plugins.importexport.pubmed.export.issues"
msgstr "გამოცემების ექსპორტი"
msgid "plugins.importexport.pubmed.export.selectIssue"
msgstr "გამოცემის არჩევა ექსპორტისათვის."
msgid "plugins.importexport.pubmed.export.articles"
msgstr "სტატიების ექსპორტი"
msgid "plugins.importexport.pubmed.export.selectArticle"
msgstr "სტატიების არჩევა ექსპორტისათვის."
msgid "plugins.importexport.pubmed.cliUsage"
msgstr ""
"გამოძახება: \n"
"{$scriptName} {$pluginName} [xmlFileName] [journal_path] articles "
"[articleId1] [articleId2] ...\n"
"{$scriptName} {$pluginName} [xmlFileName] [journal_path] issue [issueId]\n"
msgid "plugins.importexport.pubmed.cliError"
msgstr "შეცდომა:"
msgid "plugins.importexport.pubmed.export.error.issueNotFound"
msgstr "არ არის გამოცემა მითითებული ID-ით, „{$issueId}“."
msgid "plugins.importexport.pubmed.export.error.articleNotFound"
msgstr "არ არის სტატია მითითებული ID-ით, „{$articleId}“."
@@ -0,0 +1,52 @@
# 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-"
"pubmed/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.pubmed.displayName"
msgstr "\"PubMed XML экспорттау\" модулі"
msgid "plugins.importexport.pubmed.description"
msgstr ""
"Мақала метадеректерін MEDLINE-да индекстеу үшін PubMed XML форматына "
"экспорттайды."
msgid "plugins.importexport.pubmed.export"
msgstr "Деректерді экспорттау"
msgid "plugins.importexport.pubmed.export.issues"
msgstr "Журнал басылымдарын экспорттау"
msgid "plugins.importexport.pubmed.export.selectIssue"
msgstr "Экспорттау үшін басылымды таңдаңыз."
msgid "plugins.importexport.pubmed.export.articles"
msgstr "Мақалаларды экспорттау"
msgid "plugins.importexport.pubmed.export.selectArticle"
msgstr "Экспорттау үшін мақалаларды таңдаңыз."
msgid "plugins.importexport.pubmed.cliUsage"
msgstr ""
"Қолдану реті: \n"
"{$scriptName} {$pluginName} [xmlFileName] [journal_path] articles "
"[articleId1] [articleId2] ...\n"
"{$scriptName} {$pluginName} [xmlFileName] [journal_path] issue [issueId]\n"
msgid "plugins.importexport.pubmed.cliError"
msgstr "ҚАТЕ:"
msgid "plugins.importexport.pubmed.export.error.issueNotFound"
msgstr "\"{$issueId}\"идентификаторымен сәйкес келетін журнал басылымы жоқ."
msgid "plugins.importexport.pubmed.export.error.articleNotFound"
msgstr "\"{$articleId}\"идентификаторымен сәйкес келетін журнал басылымы жоқ."
@@ -0,0 +1,53 @@
# 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-pubmed/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.pubmed.export"
msgstr "Eksportēt datus"
msgid "plugins.importexport.pubmed.export.issues"
msgstr "Eksportēt žurnāla numurus"
msgid "plugins.importexport.pubmed.export.selectIssue"
msgstr "Atlasiet žurnāla numuru, kuru eksportēt."
msgid "plugins.importexport.pubmed.export.articles"
msgstr "Eksportēt rakstus"
msgid "plugins.importexport.pubmed.export.selectArticle"
msgstr "Atlasīt eksportējamos rakstus."
msgid "plugins.importexport.pubmed.cliError"
msgstr "KĻŪDA:"
msgid "plugins.importexport.pubmed.export.error.articleNotFound"
msgstr "Neviens raksts neatbilst norādītajam raksta ID \"{$articleId}\"."
msgid "plugins.importexport.pubmed.export.error.issueNotFound"
msgstr ""
"Neviens žurnāla numurs neatbilst norādītajam žurnāla numura ID \"{$issueId}\""
"."
msgid "plugins.importexport.pubmed.displayName"
msgstr "PubMed XML eksportēšanas spraudnis"
msgid "plugins.importexport.pubmed.description"
msgstr "Eksportēt rakstu metadatus PubMed XML formātā indeksēšanai MEDLINE."
msgid "plugins.importexport.pubmed.cliUsage"
msgstr ""
"Izmantošana: \n"
"{$scriptName} {$pluginName} [xmlFileName] [journal_path] articles "
"[articleId1] [articleId2] ...\n"
"{$scriptName} {$pluginName} [xmlFileName] [journal_path] issue [issueId]\n"
@@ -0,0 +1,54 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2021-01-11 10:59+0000\n"
"Last-Translator: Blagoja Grozdanovski <blagoja.grozdanovski@gmail.com>\n"
"Language-Team: Macedonian <http://translate.pkp.sfu.ca/projects/ojs/"
"importexport-pubmed/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.pubmed.displayName"
msgstr "Плагин за експортирање на PubMed XML"
msgid "plugins.importexport.pubmed.description"
msgstr ""
"Извоз на метаподатоци за статии во формат PubMed XML за индексирање во "
"MEDLINE."
msgid "plugins.importexport.pubmed.export"
msgstr "Извоз на податоци"
msgid "plugins.importexport.pubmed.export.issues"
msgstr "Изданија за извоз"
msgid "plugins.importexport.pubmed.export.selectIssue"
msgstr "Изберете издание за извоз."
msgid "plugins.importexport.pubmed.export.articles"
msgstr "Написи за извоз"
msgid "plugins.importexport.pubmed.export.selectArticle"
msgstr "Изберете написи за извоз."
msgid "plugins.importexport.pubmed.cliUsage"
msgstr ""
"Употреба:\n"
"{$scriptName} {$pluginName} [xmlFileName] [journal_path] написи [articleId1] "
"[articleId2] ...\n"
"{$scriptName} {$pluginName} [xmlFileName] [journal_path] издание [issueId]\n"
msgid "plugins.importexport.pubmed.cliError"
msgstr "ГРЕШКА:"
msgid "plugins.importexport.pubmed.export.error.issueNotFound"
msgstr ""
"Ниту едно издание не се совпадна со наведениот ID на изданието „{$issueId}“."
msgid "plugins.importexport.pubmed.export.error.articleNotFound"
msgstr ""
"Ниту една статија не се совпадна со наведениот ID на статијата "
"„{$articleId}“."
@@ -0,0 +1,8 @@
# Gantulga <cybermon@gmail.com>, 2023.
msgid ""
msgstr ""
"Language: mn\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,56 @@
# Muhd Muaz <muazhero61@yahoo.com>, 2021.
msgid ""
msgstr ""
"PO-Revision-Date: 2021-10-20 21:22+0000\n"
"Last-Translator: Muhd Muaz <muazhero61@yahoo.com>\n"
"Language-Team: Malay <http://translate.pkp.sfu.ca/projects/ojs/importexport-"
"pubmed/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.pubmed.displayName"
msgstr "Plugin Eksport PubMed XML"
msgid "plugins.importexport.pubmed.description"
msgstr ""
"Eksport metadata artikel dalam format XML PubMed untuk pengindeksan dalam "
"MEDLINE."
msgid "plugins.importexport.pubmed.export"
msgstr "Eksport Data"
msgid "plugins.importexport.pubmed.export.issues"
msgstr "Eksport Terbitan"
msgid "plugins.importexport.pubmed.export.selectIssue"
msgstr "Pilih terbitan untuk dieksport."
msgid "plugins.importexport.pubmed.export.articles"
msgstr "Eksport Artikel"
msgid "plugins.importexport.pubmed.export.selectArticle"
msgstr "Pilih Artikel untuk dieksport."
msgid "plugins.importexport.pubmed.cliUsage"
msgstr ""
"Penggunaan:\n"
"{$scriptName} {$pluginName} [xmlFileName] [journal_path] artikel "
"[articleId1] [articleId2] ...\n"
"{$scriptName} {$pluginName} [xmlFileName] [journal_path] terbitan [issueId]\n"
msgid "plugins.importexport.pubmed.cliError"
msgstr "RALAT:"
msgid "plugins.importexport.pubmed.export.error.issueNotFound"
msgstr ""
"Tidak ada terbitan yang sepadan dengan ID terbitan yang ditentukan "
"\"{$issueId}\"."
msgid "plugins.importexport.pubmed.export.error.articleNotFound"
msgstr ""
"Tidak ada artikel yang sesuai dengan ID artikel yang ditentukan "
"\"{$articleId}\"."
@@ -0,0 +1,54 @@
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-11-19T11:05:45+00:00\n"
"PO-Revision-Date: 2021-01-16 10:53+0000\n"
"Last-Translator: FRITT, University of Oslo Library <fritt-"
"info@journals.uio.no>\n"
"Language-Team: Norwegian Bokmål <http://translate.pkp.sfu.ca/projects/ojs/"
"importexport-pubmed/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.pubmed.displayName"
msgstr "Programutvidelse for PubMed XML-eksport"
msgid "plugins.importexport.pubmed.description"
msgstr ""
"Eksporterer artikkelmetadata i PubMed XML-format for indeksering i MEDLINE."
msgid "plugins.importexport.pubmed.export"
msgstr "Eksporter data"
msgid "plugins.importexport.pubmed.export.issues"
msgstr "Eksporter utgaver"
msgid "plugins.importexport.pubmed.export.selectIssue"
msgstr "Velg en utgave for eksport."
msgid "plugins.importexport.pubmed.export.articles"
msgstr "Eksporter artikler"
msgid "plugins.importexport.pubmed.export.selectArticle"
msgstr "Velg artikler for eksport."
msgid "plugins.importexport.pubmed.cliUsage"
msgstr ""
"Bruk:\n"
"{$scriptName} {$pluginName} [xmlFileName] [journal_path] artikler "
"[articleId1] [articleId2] ...\n"
"{$scriptName} {$pluginName} [xmlFileName] [journal_path] utgave [issueId]\n"
msgid "plugins.importexport.pubmed.cliError"
msgstr "FEIL:"
msgid "plugins.importexport.pubmed.export.error.issueNotFound"
msgstr "Ingen utgave stemmer med angitt utgave-ID \"{$issueId}\"."
msgid "plugins.importexport.pubmed.export.error.articleNotFound"
msgstr "Ingen artikkel stemmer med den angitte artikkel-ID \"{$articleId}\"."
@@ -0,0 +1,51 @@
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-11-19T11:05:45+00:00\n"
"PO-Revision-Date: 2019-11-19T11:05:45+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.pubmed.displayName"
msgstr "PubMed XML Export Plugin"
msgid "plugins.importexport.pubmed.description"
msgstr ""
"Exporteer artikel-metadata in PubMed XML formaat voor indexering in MEDLINE."
msgid "plugins.importexport.pubmed.export"
msgstr "Exporteer data"
msgid "plugins.importexport.pubmed.export.issues"
msgstr "Problemen met de export"
msgid "plugins.importexport.pubmed.export.selectIssue"
msgstr "Kies het te exporteren nummer."
msgid "plugins.importexport.pubmed.export.articles"
msgstr "Exporteer artikels"
msgid "plugins.importexport.pubmed.export.selectArticle"
msgstr "Kies de te exporteren artikels."
msgid "plugins.importexport.pubmed.cliUsage"
msgstr ""
"Gebruik: \n"
"{$scriptName} {$pluginName} [xmlBestandNaam] [tijdschrift_pad] artikels "
"[artikelId1] [artikelId2] ...\n"
"{$scriptName} {$pluginName} [xmlBestandsNaam] [tijdschrift_pad] nummer "
"[nummerId]\n"
msgid "plugins.importexport.pubmed.cliError"
msgstr "FOUT:"
msgid "plugins.importexport.pubmed.export.error.issueNotFound"
msgstr "Het opgegeven nummer-ID bestaat niet \"{$issueId}\"."
msgid "plugins.importexport.pubmed.export.error.articleNotFound"
msgstr "Het opgegeven artikel-ID bestaat niet \"{$articleId}\"."
@@ -0,0 +1,53 @@
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-11-19T11:05:46+00:00\n"
"PO-Revision-Date: 2020-11-30 11:43+0000\n"
"Last-Translator: rl <biuro@fimagis.pl>\n"
"Language-Team: Polish <http://translate.pkp.sfu.ca/projects/ojs/"
"importexport-pubmed/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.pubmed.displayName"
msgstr "Wtyczka eksportu PubMed XML"
msgid "plugins.importexport.pubmed.description"
msgstr "Eksportuj metadane artykułu w formacie PubMed XML do zaindeksowania w MEDLINE."
msgid "plugins.importexport.pubmed.export"
msgstr "Eksportuj dane"
msgid "plugins.importexport.pubmed.export.issues"
msgstr "Eksportuj numery"
msgid "plugins.importexport.pubmed.export.selectIssue"
msgstr "Wybierz numer do eksportu."
msgid "plugins.importexport.pubmed.export.articles"
msgstr "Eksportuj artykuły"
msgid "plugins.importexport.pubmed.export.selectArticle"
msgstr "Wybierz artykuły do eksportu."
msgid "plugins.importexport.pubmed.cliUsage"
msgstr ""
"Użycie: \n"
"{$scriptName} {$pluginName} [xmlFileName] [journal_path] articles "
"[articleId1] [articleId2] ...\n"
"{$scriptName} {$pluginName} [xmlFileName] [journal_path] issue [issueId]\n"
msgid "plugins.importexport.pubmed.cliError"
msgstr "Błąd:"
msgid "plugins.importexport.pubmed.export.error.issueNotFound"
msgstr "Brak numerów powiązanych z określonym ID numeru \"{$issueId}\"."
msgid "plugins.importexport.pubmed.export.error.articleNotFound"
msgstr "Brak artykułu powiązanego z określonym ID artykułu \"{$articleId}\"."
@@ -0,0 +1,52 @@
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: 2020-05-05 16:49+0000\n"
"Last-Translator: Felipe Geremia Nievinski <fgnievinski@gmail.com>\n"
"Language-Team: Portuguese (Brazil) <http://translate.pkp.sfu.ca/projects/ojs/"
"importexport-pubmed/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 3.9.1\n"
msgid "plugins.importexport.pubmed.displayName"
msgstr "Plugin de Exportação para PubMed em XML"
msgid "plugins.importexport.pubmed.description"
msgstr "Exporta metadados de artigos no formato PubMed XML para indexação na MEDLINE."
msgid "plugins.importexport.pubmed.export"
msgstr "Exportar dados"
msgid "plugins.importexport.pubmed.export.issues"
msgstr "Exportar edições"
msgid "plugins.importexport.pubmed.export.selectIssue"
msgstr "Escolher uma edição para exportar."
msgid "plugins.importexport.pubmed.export.articles"
msgstr "Exportar artigos"
msgid "plugins.importexport.pubmed.export.selectArticle"
msgstr "Selecionar artigos para exportar."
msgid "plugins.importexport.pubmed.cliUsage"
msgstr ""
"Uso: \n"
"{$scriptName} {$pluginName} [xmlFileName] [journal_path] articles "
"[articleId1] [articleId2] ...\n"
"{$scriptName} {$pluginName} [xmlFileName] [journal_path] issue [issueId]\n"
msgid "plugins.importexport.pubmed.cliError"
msgstr "ERRO:"
msgid "plugins.importexport.pubmed.export.error.issueNotFound"
msgstr "Nenhuma edição encontrada com o ID \"{$issueId}\"."
msgid "plugins.importexport.pubmed.export.error.articleNotFound"
msgstr "Nenhum artigo encontrado com o ID \"{$articleId}\"."
@@ -0,0 +1,53 @@
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-11-19T11:05:46+00:00\n"
"PO-Revision-Date: 2020-06-05 20:39+0000\n"
"Last-Translator: Carla Marques <carla.marques@sdum.uminho.pt>\n"
"Language-Team: Portuguese (Portugal) <http://translate.pkp.sfu.ca/projects/"
"ojs/importexport-pubmed/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.pubmed.displayName"
msgstr "Plugin de Exportação PubMed"
msgid "plugins.importexport.pubmed.description"
msgstr ""
"Exportar metadados do artigo em formato PubMed XML para indexação na MEDLINE."
msgid "plugins.importexport.pubmed.export"
msgstr "Exportar Dados"
msgid "plugins.importexport.pubmed.export.issues"
msgstr "Exportar Números"
msgid "plugins.importexport.pubmed.export.selectIssue"
msgstr "Selecionar um Número para exportar."
msgid "plugins.importexport.pubmed.export.articles"
msgstr "Exportar Artigos"
msgid "plugins.importexport.pubmed.export.selectArticle"
msgstr "Selecionar Artigos para exportar."
msgid "plugins.importexport.pubmed.cliUsage"
msgstr ""
"Modo de utilização: \n"
"{$scriptName} {$pluginName} [xmlFileName] [journal_path] articles "
"[articleId1] [articleId2] ...\n"
"{$scriptName} {$pluginName} [xmlFileName] [journal_path] issue [issueId]\n"
msgid "plugins.importexport.pubmed.cliError"
msgstr "ERRO:"
msgid "plugins.importexport.pubmed.export.error.issueNotFound"
msgstr "Nenhum número corresponde ao ID do número especificado \"{$issueId}\".."
msgid "plugins.importexport.pubmed.export.error.articleNotFound"
msgstr "Nenhum artigo correspondeu ao ID do artigo especificado \"{$articleId}\"."
@@ -0,0 +1,51 @@
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-11-19T11:05:46+00:00\n"
"PO-Revision-Date: 2019-11-19T11:05:46+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.pubmed.displayName"
msgstr "Модуль «Экспорт в PubMed XML»"
msgid "plugins.importexport.pubmed.description"
msgstr ""
"Экспортирует метаданные статей в формат PubMed XML для индексирования в "
"MEDLINE."
msgid "plugins.importexport.pubmed.export"
msgstr "Экспортировать данные"
msgid "plugins.importexport.pubmed.export.issues"
msgstr "Экспортировать выпуски"
msgid "plugins.importexport.pubmed.export.selectIssue"
msgstr "Выберите выпуск для экспорта."
msgid "plugins.importexport.pubmed.export.articles"
msgstr "Экспортировать статьи"
msgid "plugins.importexport.pubmed.export.selectArticle"
msgstr "Выберите статьи для экспорта."
msgid "plugins.importexport.pubmed.cliUsage"
msgstr ""
"Вызов: \n"
"{$scriptName} {$pluginName} [ИмяФайлаXML] [путь_журнала] articles "
"[IdСтатьи1] [IdСтатьи2] ...\n"
"{$scriptName} {$pluginName} [ИмяФайлаXML] [путь_журнала] issue [IdВыпуска]\n"
msgid "plugins.importexport.pubmed.cliError"
msgstr "ОШИБКА:"
msgid "plugins.importexport.pubmed.export.error.issueNotFound"
msgstr "Нет выпуска с указанным ID выпуска «{$issueId}»."
msgid "plugins.importexport.pubmed.export.error.articleNotFound"
msgstr "Нет статьи с указанным ID статьи «{$articleId}»."
@@ -0,0 +1,49 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2020-11-13 11:22+0000\n"
"Last-Translator: Tomáš Blaho <tomas.blaho@umb.sk>\n"
"Language-Team: Slovak <http://translate.pkp.sfu.ca/projects/ojs/importexport-"
"pubmed/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.pubmed.displayName"
msgstr "Plugin exportu XML pre PubMed"
msgid "plugins.importexport.pubmed.description"
msgstr "Export metadát článku vo formáte PubMed XML pre indexáciu v MEDLINE."
msgid "plugins.importexport.pubmed.export"
msgstr "Export dát"
msgid "plugins.importexport.pubmed.export.issues"
msgstr "Export čísel"
msgid "plugins.importexport.pubmed.export.selectIssue"
msgstr "Zvoľte číslo pre export."
msgid "plugins.importexport.pubmed.export.articles"
msgstr "Export článkov"
msgid "plugins.importexport.pubmed.export.selectArticle"
msgstr "Zvoľte články pre export."
msgid "plugins.importexport.pubmed.cliUsage"
msgstr ""
"Použitie: \n"
"{$scriptName} {$pluginName} [xmlFileName] [journal_path] articles "
"[articleId1] [articleId2] ...\n"
"{$scriptName} {$pluginName} [xmlFileName] [journal_path] issue [issueId]\n"
msgid "plugins.importexport.pubmed.cliError"
msgstr "CHYBA:"
msgid "plugins.importexport.pubmed.export.error.issueNotFound"
msgstr "Žiadne číslo nezodpovedá uvedenému ID číslu \"{$issueId}\"."
msgid "plugins.importexport.pubmed.export.error.articleNotFound"
msgstr "Žiadny článok nezodpovedá uvedenému ID článku \"{$articleId}\"."
@@ -0,0 +1,50 @@
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-11-19T11:05:46+00:00\n"
"PO-Revision-Date: 2019-11-19T11:05:46+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.pubmed.displayName"
msgstr "Vtičnik za PubMed XML izvoz"
msgid "plugins.importexport.pubmed.description"
msgstr ""
"Izvozi metapodatke prispevka v PubMed XML obliki za indeksiranje v MEDLINE."
msgid "plugins.importexport.pubmed.export"
msgstr "Izvozi podatke"
msgid "plugins.importexport.pubmed.export.issues"
msgstr "Izvozi številke"
msgid "plugins.importexport.pubmed.export.selectIssue"
msgstr "Izbertie številko za izvoz."
msgid "plugins.importexport.pubmed.export.articles"
msgstr "Izvoz prispevkov"
msgid "plugins.importexport.pubmed.export.selectArticle"
msgstr "Izberi prispevke za izvoz."
msgid "plugins.importexport.pubmed.cliUsage"
msgstr ""
"Uporaba: \n"
"{$scriptName} {$pluginName} [xmlFileName] [journal_path] articles "
"[articleId1] [articleId2] ...\n"
"{$scriptName} {$pluginName} [xmlFileName] [journal_path] issue [issueId]\n"
msgid "plugins.importexport.pubmed.cliError"
msgstr "NAPAKA:"
msgid "plugins.importexport.pubmed.export.error.issueNotFound"
msgstr "Nobena številka na ustreza podanemu ID-ju številke \"{$issueId}\"."
msgid "plugins.importexport.pubmed.export.error.articleNotFound"
msgstr "Noben prispevek ne ustreza podatnemu ID-ju prispevka \"{$articleId}\"."
@@ -0,0 +1,51 @@
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-11-19T11:05:46+00:00\n"
"PO-Revision-Date: 2019-11-19T11:05:46+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.pubmed.displayName"
msgstr "PubMed XML dodatak za izvoz"
msgid "plugins.importexport.pubmed.description"
msgstr ""
"Izvoz metapodataka članaka u PubMed XML formatu za indeksiranje u MEDLINE."
msgid "plugins.importexport.pubmed.export"
msgstr "Izvezi podatke"
msgid "plugins.importexport.pubmed.export.issues"
msgstr "Izvezi broj"
msgid "plugins.importexport.pubmed.export.selectIssue"
msgstr "Odaberi brojeve za izvoz."
msgid "plugins.importexport.pubmed.export.articles"
msgstr "Izvezi članke"
msgid "plugins.importexport.pubmed.export.selectArticle"
msgstr "Odaberi članke za izvoz."
msgid "plugins.importexport.pubmed.cliUsage"
msgstr ""
"Korišćenje: \n"
"{$scriptName} {$pluginName} [xmlFileName] [journal_path] članci [articleId1] "
"[articleId2] ...\n"
"{$scriptName} {$pluginName} [xmlFileName] [journal_path] broj [issueId]"
msgid "plugins.importexport.pubmed.cliError"
msgstr "GREŠKA:"
msgid "plugins.importexport.pubmed.export.error.issueNotFound"
msgstr "Ni jedan broj se ne poklapa sa zadatim ID-jem broja \"{$issueId}\"."
msgid "plugins.importexport.pubmed.export.error.articleNotFound"
msgstr ""
"Ni jedan članak se ne poklapa sa zadatim ID-jem članka \"{$articleId}\"."
@@ -0,0 +1,49 @@
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-11-19T11:05:46+00:00\n"
"PO-Revision-Date: 2019-11-19T11:05:46+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.pubmed.displayName"
msgstr "Plugin för export av PubMed XML"
msgid "plugins.importexport.pubmed.description"
msgstr "Exporterar artikelmetadata i PubMed XML-format för indexing i MEDLINE."
msgid "plugins.importexport.pubmed.export"
msgstr "Exportera data"
msgid "plugins.importexport.pubmed.export.issues"
msgstr "Exportera nummer"
msgid "plugins.importexport.pubmed.export.selectIssue"
msgstr "Välj ett nummer att exportera."
msgid "plugins.importexport.pubmed.export.articles"
msgstr "Exportera artiklar"
msgid "plugins.importexport.pubmed.export.selectArticle"
msgstr "Välj artiklar att exportera."
msgid "plugins.importexport.pubmed.cliUsage"
msgstr ""
"Användning: \n"
"{$scriptName} {$pluginName} [xmlFileName] [journal_path] articles "
"[articleId1] [articleId2] ...\n"
"{$scriptName} {$pluginName} [xmlFileName] [journal_path] issues [issueId]\n"
msgid "plugins.importexport.pubmed.cliError"
msgstr "FEL:"
msgid "plugins.importexport.pubmed.export.error.issueNotFound"
msgstr "Inget nummer matchar det angivna nummer-ID:t \"{$issueId}\"."
msgid "plugins.importexport.pubmed.export.error.articleNotFound"
msgstr "Ingen artikel matchar det angivna artikel-ID:t \"{$articleId}\"."
@@ -0,0 +1,52 @@
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-11-19T11:05:46+00:00\n"
"PO-Revision-Date: 2019-11-19T11:05:46+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.pubmed.displayName"
msgstr "PubMed XML İhraç Eklentisi"
msgid "plugins.importexport.pubmed.description"
msgstr ""
"MEDLINE'da dizinlenmesi için makale üst verilerini PubMed XML biçiminde ihra "
"eder."
msgid "plugins.importexport.pubmed.export"
msgstr "Veri İhracı"
msgid "plugins.importexport.pubmed.export.issues"
msgstr "Sayıları İhraç Et"
msgid "plugins.importexport.pubmed.export.selectIssue"
msgstr "İhraç için bir sayı seçiniz."
msgid "plugins.importexport.pubmed.export.articles"
msgstr "Makaleleri İhraç Et"
msgid "plugins.importexport.pubmed.export.selectArticle"
msgstr "İhraç için bir makale seçiniz."
msgid "plugins.importexport.pubmed.cliUsage"
msgstr ""
"Kullanım: \n"
"{$scriptName} {$pluginName} [xmlFileName] [journal_path] articles "
"[articleId1] [articleId2] ...\n"
"{$scriptName} {$pluginName} [xmlFileName] [journal_path] issue [issueId]"
msgid "plugins.importexport.pubmed.cliError"
msgstr "HATA:"
msgid "plugins.importexport.pubmed.export.error.issueNotFound"
msgstr "\"{$issueId}\" özel sayı ID'si ile herhangi bir sayı eşlenmedi."
msgid "plugins.importexport.pubmed.export.error.articleNotFound"
msgstr ""
"\"{$articleId}\" özel makale numarası ile herhangi bir makale eşlenmedi."
@@ -0,0 +1,55 @@
# Petro Bilous <petrobilous@ukr.net>, 2023.
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-11-19T11:05:46+00:00\n"
"PO-Revision-Date: 2023-04-29 16:26+0000\n"
"Last-Translator: Petro Bilous <petrobilous@ukr.net>\n"
"Language-Team: Ukrainian <http://translate.pkp.sfu.ca/projects/ojs/"
"importexport-pubmed/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.pubmed.displayName"
msgstr "Плагін експорту XML PubMed"
msgid "plugins.importexport.pubmed.description"
msgstr ""
"Експортувати метадані статті у формат XML PubMed для індексації в MEDLINE."
msgid "plugins.importexport.pubmed.export"
msgstr "Експортувати дані"
msgid "plugins.importexport.pubmed.export.issues"
msgstr "Експортувати випуски"
msgid "plugins.importexport.pubmed.export.selectIssue"
msgstr "Вибрати випуск для експортування."
msgid "plugins.importexport.pubmed.export.articles"
msgstr "Експортувати статті"
msgid "plugins.importexport.pubmed.export.selectArticle"
msgstr "Вибрати статті для експортування."
msgid "plugins.importexport.pubmed.cliUsage"
msgstr ""
"Використання: \n"
"{$scriptName} {$pluginName} [xmlFileName] [journal_path] articles "
"[articleId1] [articleId2] ...\n"
"{$scriptName} {$pluginName} [xmlFileName] [journal_path] issue [issueId]\n"
msgid "plugins.importexport.pubmed.cliError"
msgstr "ПОМИЛКА:"
msgid "plugins.importexport.pubmed.export.error.issueNotFound"
msgstr "Жоден випуск не збігається з указаним ID випуску \"{$issueId}\"."
msgid "plugins.importexport.pubmed.export.error.articleNotFound"
msgstr "Жодна стаття не відповідала вказаному ID статті \"{$articleId}\"."
@@ -0,0 +1,39 @@
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.pubmed.displayName"
msgstr ""
msgid "plugins.importexport.pubmed.description"
msgstr ""
msgid "plugins.importexport.pubmed.export"
msgstr ""
msgid "plugins.importexport.pubmed.export.issues"
msgstr ""
msgid "plugins.importexport.pubmed.export.selectIssue"
msgstr ""
msgid "plugins.importexport.pubmed.export.articles"
msgstr ""
msgid "plugins.importexport.pubmed.export.selectArticle"
msgstr ""
msgid "plugins.importexport.pubmed.cliUsage"
msgstr ""
msgid "plugins.importexport.pubmed.cliError"
msgstr ""
msgid "plugins.importexport.pubmed.export.error.issueNotFound"
msgstr ""
msgid "plugins.importexport.pubmed.export.error.articleNotFound"
msgstr ""
@@ -0,0 +1,55 @@
# Ruslan Shodmonov <belovedspy1209@gmail.com>, 2021.
msgid ""
msgstr ""
"PO-Revision-Date: 2021-09-09 11:05+0000\n"
"Last-Translator: Ruslan Shodmonov <belovedspy1209@gmail.com>\n"
"Language-Team: Uzbek <http://translate.pkp.sfu.ca/projects/ojs/importexport-"
"pubmed/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.pubmed.displayName"
msgstr "PubMed XML eksport plagini"
msgid "plugins.importexport.pubmed.description"
msgstr ""
"MEDLINE -da indekslash uchun PubMed XML formatidagi maqola metadatalarini "
"eksport qiling."
msgid "plugins.importexport.pubmed.export"
msgstr "Ma'lumotlarni eksport qilish"
msgid "plugins.importexport.pubmed.export.issues"
msgstr "Eksport muammolari"
msgid "plugins.importexport.pubmed.export.selectIssue"
msgstr "Eksport qilish uchun muammoni tanlang."
msgid "plugins.importexport.pubmed.export.articles"
msgstr "Maqolalarni eksport qilish"
msgid "plugins.importexport.pubmed.export.selectArticle"
msgstr "Eksport qilish uchun maqolalarni tanlang."
msgid "plugins.importexport.pubmed.cliUsage"
msgstr ""
"Foydalanish:\n"
"{$ scriptName} {$ pluginName} [xmlFileName] [journal_path] maqolalar "
"[articleId1] [articleId2] ...\n"
"{$ scriptName} {$ pluginName} [xmlFileName] [journal_path] soni [issueId]\n"
msgid "plugins.importexport.pubmed.cliError"
msgstr "XATO:"
msgid "plugins.importexport.pubmed.export.error.issueNotFound"
msgstr ""
"Belgilangan \"{$ issueId}\" identifikator identifikatoriga mos keladigan "
"hech qanday muammo yo'q."
msgid "plugins.importexport.pubmed.export.error.articleNotFound"
msgstr ""
"Maqola identifikatori \"{$ articleId}\" ga mos keladigan maqola topilmadi."
@@ -0,0 +1,52 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2020-05-01 00:25+0000\n"
"Last-Translator: Tran Ngoc Trung <khuchatthienduong@gmail.com>\n"
"Language-Team: Vietnamese <http://translate.pkp.sfu.ca/projects/ojs/"
"importexport-pubmed/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.pubmed.displayName"
msgstr "Plugin xuất PubMed XML"
msgid "plugins.importexport.pubmed.description"
msgstr ""
"Xuất siêu dữ liệu bài báo ở định dạng PubMed XML để lập chỉ mục trong "
"MEDLINE."
msgid "plugins.importexport.pubmed.export"
msgstr "Xuất dữ liệu"
msgid "plugins.importexport.pubmed.export.issues"
msgstr "Xuất các số"
msgid "plugins.importexport.pubmed.export.selectIssue"
msgstr "Chọn một số để xuất."
msgid "plugins.importexport.pubmed.export.articles"
msgstr "Xuất các bài báo"
msgid "plugins.importexport.pubmed.export.selectArticle"
msgstr "Chọn bài báo để xuất."
msgid "plugins.importexport.pubmed.cliUsage"
msgstr ""
"Usage: \n"
"{$scriptName} {$pluginName} [xmlFileName] [journal_path] bài báo "
"[articleId1] [articleId2] ...\n"
"{$scriptName} {$pluginName} [xmlFileName] [journal_path] bài báo [issueId]\n"
msgid "plugins.importexport.pubmed.cliError"
msgstr "LỖI:"
msgid "plugins.importexport.pubmed.export.error.issueNotFound"
msgstr "Không có số nào khớp với ID số được chỉ định \"{$issueId}\"."
msgid "plugins.importexport.pubmed.export.error.articleNotFound"
msgstr ""
"Không có bài báo nào khớp với ID bài báo được chỉ định \"{$articleId}\"."
@@ -0,0 +1,52 @@
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-08-30 02:48+0000\n"
"Last-Translator: Yukari Chiba <Charles@nia.ac.cn>\n"
"Language-Team: Chinese (Simplified) <http://translate.pkp.sfu.ca/projects/"
"ojs/importexport-pubmed/zh_CN/>\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.pubmed.displayName"
msgstr "PubMed XML导出插件"
msgid "plugins.importexport.pubmed.description"
msgstr "导出基于PubmedXML格式的文章的元数据,以便于在Medline索引."
msgid "plugins.importexport.pubmed.export"
msgstr "导出数据"
msgid "plugins.importexport.pubmed.export.issues"
msgstr "导出刊期"
msgid "plugins.importexport.pubmed.export.selectIssue"
msgstr "选择一个刊期以导出。"
msgid "plugins.importexport.pubmed.export.articles"
msgstr "导出文章"
msgid "plugins.importexport.pubmed.export.selectArticle"
msgstr "选择一篇文章以导出。"
msgid "plugins.importexport.pubmed.cliUsage"
msgstr ""
"使用方法: \n"
"{$scriptName} {$pluginName} [xmlFileName] [journal_path] articles [articleId1] [articleId2] ...\n"
"{$scriptName} {$pluginName} [xmlFileName] [journal_path] issue [issueId]\n"
""
msgid "plugins.importexport.pubmed.cliError"
msgstr "错误:"
msgid "plugins.importexport.pubmed.export.error.issueNotFound"
msgstr "指定刊期ID不存在:{$issueId}."
msgid "plugins.importexport.pubmed.export.error.articleNotFound"
msgstr "指定文章ID不存在: {$articleId}."
@@ -0,0 +1,46 @@
# Katie Cheng <ckykatie@hkbu.edu.hk>, 2022.
msgid ""
msgstr ""
"PO-Revision-Date: 2022-09-30 09:01+0000\n"
"Last-Translator: Katie Cheng <ckykatie@hkbu.edu.hk>\n"
"Language-Team: Chinese (Traditional) <http://translate.pkp.sfu.ca/projects/"
"ojs/importexport-pubmed/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.pubmed.displayName"
msgstr "PubMed XML導出插件"
msgid "plugins.importexport.pubmed.description"
msgstr "由PubMed XML格式導出文章元資料用於檢索MEDLINE。"
msgid "plugins.importexport.pubmed.export"
msgstr "導出數據"
msgid "plugins.importexport.pubmed.export.issues"
msgstr "導出期號"
msgid "plugins.importexport.pubmed.export.selectIssue"
msgstr "選擇導出的一期。"
msgid "plugins.importexport.pubmed.export.articles"
msgstr "導出文章"
msgid "plugins.importexport.pubmed.export.selectArticle"
msgstr "選擇文章導出。"
msgid "plugins.importexport.pubmed.cliUsage"
msgstr ""
msgid "plugins.importexport.pubmed.cliError"
msgstr "錯誤:"
msgid "plugins.importexport.pubmed.export.error.issueNotFound"
msgstr "未能找到符合指明的期號ID\"{$issueId}\"。"
msgid "plugins.importexport.pubmed.export.error.articleNotFound"
msgstr "未能找到符合指明的文章ID\"{$articleId}\"。"
@@ -0,0 +1,101 @@
{**
* plugins/importexport/native/templates/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>
<script type="text/javascript">
// Attach the JS file tab handler.
$(function() {ldelim}
$('#exportTabs').pkpHandler('$.pkp.controllers.TabHandler');
$('#exportTabs').tabs('option', 'cache', true);
{rdelim});
</script>
<div id="exportTabs">
<ul>
<li><a href="#exportSubmissions-tab">{translate key="plugins.importexport.native.exportSubmissions"}</a></li>
<li><a href="#exportIssues-tab">{translate key="plugins.importexport.native.exportIssues"}</a></li>
</ul>
<div id="exportSubmissions-tab">
<script type="text/javascript">
$(function() {ldelim}
// Attach the form handler.
$('#exportXmlForm').pkpHandler('$.pkp.controllers.form.FormHandler');
{rdelim});
</script>
<form id="exportXmlForm" class="pkp_form" action="{plugin_url path="exportSubmissions"}" method="post">
{csrf}
{fbvFormArea id="submissionsXmlForm"}
<submissions-list-panel
v-bind="components.submissions"
@set="set"
>
<template v-slot:item="{ldelim}item{rdelim}">
<div class="listPanel__itemSummary">
<label>
<input
type="checkbox"
name="selectedSubmissions[]"
:value="item.id"
v-model="selectedSubmissions"
/>
<span
class="listPanel__itemSubTitle"
v-strip-unsafe-html="localize(
item.publications.find(p => p.id == item.currentPublicationId).fullTitle,
item.publications.find(p => p.id == item.currentPublicationId).locale
)"
>
</span>
</label>
<pkp-button element="a" :href="item.urlWorkflow" style="margin-left: auto;">
{{ __('common.view') }}
</pkp-button>
</div>
</template>
</submissions-list-panel>
{fbvFormSection}
<pkp-button :disabled="!components.submissions.itemsMax" @click="toggleSelectAll">
<template v-if="components.submissions.itemsMax && selectedSubmissions.length >= components.submissions.itemsMax">
{translate key="common.selectNone"}
</template>
<template v-else>
{translate key="common.selectAll"}
</template>
</pkp-button>
<pkp-button @click="submit('#exportXmlForm')">
{translate key="plugins.importexport.native.exportSubmissions"}
</pkp-button>
{/fbvFormSection}
{/fbvFormArea}
</form>
</div>
<div id="exportIssues-tab">
<script type="text/javascript">
$(function() {ldelim}
// Attach the form handler.
$('#exportIssuesXmlForm').pkpHandler('$.pkp.controllers.form.FormHandler');
{rdelim});
</script>
<form id="exportIssuesXmlForm" class="pkp_form" action="{plugin_url path="exportIssues"}" method="post">
{csrf}
{fbvFormArea id="issuesXmlForm"}
{capture assign=issuesListGridUrl}{url router=\PKP\core\PKPApplication::ROUTE_COMPONENT component="grid.issues.ExportableIssuesListGridHandler" op="fetchGrid" escape=false}{/capture}
{load_url_in_div id="issuesListGridContainer" url=$issuesListGridUrl}
{fbvFormButtons submitText="plugins.importexport.native.exportIssues" hideCancel="true"}
{/fbvFormArea}
</form>
</div>
</div>
{/block}
@@ -0,0 +1,53 @@
{**
* plugins/importexport/native/templates/results.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
*}
{if $validationErrors}
<h2>{translate key="plugins.importexport.common.validationErrors"}</h2>
<ul>
{foreach from=$validationErrors item=validationError}
<li>{$validationError->message|escape}</li>
{/foreach}
</ul>
{elseif $submissionsErrors || $issuesErrors}
<h2>{translate key="plugins.importexport.common.errorsOccured"}</h2>
{foreach from=$issuesErrors item=issuesErrorMessages name=issuesErrors}
{if $issuesErrorMessages|@count > 0}
<p>{$smarty.foreach.issuesErrors.iteration}. {translate key="issue.issue"}</p>
<ul>
{foreach from=$issuesErrorMessages item=issuesErrorMessage}
<li>{$issuesErrorMessage|escape}</li>
{/foreach}
</ul>
{/if}
{/foreach}
{foreach from=$submissionsErrors item=submissionsErrorMessages name=submissionsErrors}
{if $submissionsErrorMessages|@count > 0}
<p>{$smarty.foreach.submissionsErrors.iteration}. {translate key="submission.submission"}</p>
<ul>
{foreach from=$submissionsErrorMessages item=submissionsErrorMessage}
<li>{$submissionsErrorMessage|escape}</li>
{/foreach}
</ul>
{/if}
{/foreach}
{else}
{translate key="plugins.importexport.native.importComplete"}
<ul>
{foreach from=$content item=contentItem}
<li>
{if $contentItem instanceof APP\submission\Submission}
{$contentItem->getLocalizedTitle()|strip_unsafe_html}</li>
{else}
{$contentItem->getIssueIdentification()|escape}
{/if}
</li>
{/foreach}
</ul>
{/if}
+18
View File
@@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE version SYSTEM "../../../lib/pkp/dtd/pluginVersion.dtd">
<!--
* plugins/importexport/pubmed/version.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>pubmed</application>
<type>plugins.importexport</type>
<release>1.0.0.0</release>
<date>2009-07-13</date>
</version>