first commit
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
======================================
|
||||
=== Subscriptions Report Plugin
|
||||
======================================
|
||||
|
||||
To import the generated CSV file into a spreadsheet application, please see
|
||||
docs/README-CSV in your OJS installation directory.
|
||||
@@ -0,0 +1,301 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @file plugins/reports/subscriptions/SubscriptionReportPlugin.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 SubscriptionReportPlugin
|
||||
*
|
||||
* @brief Subscription report plugin
|
||||
*/
|
||||
|
||||
namespace APP\plugins\reports\subscriptions;
|
||||
|
||||
use APP\facades\Repo;
|
||||
use APP\subscription\IndividualSubscriptionDAO;
|
||||
use APP\subscription\InstitutionalSubscriptionDAO;
|
||||
use APP\subscription\SubscriptionTypeDAO;
|
||||
use PKP\core\PKPString;
|
||||
use PKP\db\DAORegistry;
|
||||
use PKP\facades\Locale;
|
||||
use PKP\plugins\ReportPlugin;
|
||||
|
||||
class SubscriptionReportPlugin extends ReportPlugin
|
||||
{
|
||||
/**
|
||||
* @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 'SubscriptionReportPlugin';
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the display name of this plugin.
|
||||
*
|
||||
* @return string display name of plugin
|
||||
*/
|
||||
public function getDisplayName()
|
||||
{
|
||||
return __('plugins.reports.subscriptions.displayName');
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the description text for this plugin.
|
||||
*
|
||||
* @return string description text for this plugin
|
||||
*/
|
||||
public function getDescription()
|
||||
{
|
||||
return __('plugins.reports.subscriptions.description');
|
||||
}
|
||||
|
||||
/**
|
||||
* @copydoc ReportPlugin::display()
|
||||
*/
|
||||
public function display($args, $request)
|
||||
{
|
||||
$journal = $request->getContext();
|
||||
$journalId = $journal->getId();
|
||||
$subscriptionTypeDao = DAORegistry::getDAO('SubscriptionTypeDAO'); /** @var SubscriptionTypeDAO $subscriptionTypeDao */
|
||||
$individualSubscriptionDao = DAORegistry::getDAO('IndividualSubscriptionDAO'); /** @var IndividualSubscriptionDAO $individualSubscriptionDao */
|
||||
$institutionalSubscriptionDao = DAORegistry::getDAO('InstitutionalSubscriptionDAO'); /** @var InstitutionalSubscriptionDAO $institutionalSubscriptionDao */
|
||||
$countries = Locale::getCountries();
|
||||
|
||||
header('content-type: text/comma-separated-values');
|
||||
header('content-disposition: attachment; filename=subscriptions-' . date('Ymd') . '.csv');
|
||||
$fp = fopen('php://output', 'wt');
|
||||
//Add BOM (byte order mark) to fix UTF-8 in Excel
|
||||
fprintf($fp, chr(0xEF) . chr(0xBB) . chr(0xBF));
|
||||
|
||||
// Columns for individual subscriptions
|
||||
$columns = [__('subscriptionManager.individualSubscriptions')];
|
||||
fputcsv($fp, array_values($columns));
|
||||
|
||||
$columnsCommon = [
|
||||
'subscription_id' => __('common.id'),
|
||||
'status' => __('subscriptions.status'),
|
||||
'type' => __('common.type'),
|
||||
'format' => __('subscriptionTypes.format'),
|
||||
'date_start' => __('manager.subscriptions.dateStart'),
|
||||
'date_end' => __('manager.subscriptions.dateEnd'),
|
||||
'membership' => __('manager.subscriptions.membership'),
|
||||
'reference_number' => __('manager.subscriptions.referenceNumber'),
|
||||
'notes' => __('common.notes')
|
||||
];
|
||||
|
||||
$columnsIndividual = [
|
||||
'name' => __('user.name'),
|
||||
'mailing_address' => __('common.mailingAddress'),
|
||||
'country' => __('common.country'),
|
||||
'email' => __('user.email'),
|
||||
'phone' => __('user.phone'),
|
||||
];
|
||||
|
||||
$columns = array_merge($columnsCommon, $columnsIndividual);
|
||||
|
||||
// Write out individual subscription column headings to file
|
||||
fputcsv($fp, array_values($columns));
|
||||
|
||||
// Iterate over individual subscriptions and write out each to file
|
||||
$individualSubscriptions = $individualSubscriptionDao->getByJournalId($journalId);
|
||||
while ($subscription = $individualSubscriptions->next()) {
|
||||
$user = Repo::user()->get($subscription->getUserId(), true);
|
||||
$subscriptionType = $subscriptionTypeDao->getById($subscription->getTypeId());
|
||||
|
||||
foreach ($columns as $index => $junk) {
|
||||
switch ($index) {
|
||||
case 'subscription_id':
|
||||
$columns[$index] = $subscription->getId();
|
||||
break;
|
||||
case 'status':
|
||||
$columns[$index] = $subscription->getStatusString();
|
||||
break;
|
||||
case 'type':
|
||||
$columns[$index] = $subscription->getSubscriptionTypeSummaryString();
|
||||
break;
|
||||
case 'format':
|
||||
$columns[$index] = __($subscriptionType->getFormatString());
|
||||
break;
|
||||
case 'date_start':
|
||||
$columns[$index] = $subscription->getDateStart();
|
||||
break;
|
||||
case 'date_end':
|
||||
$columns[$index] = $subscription->getDateEnd();
|
||||
break;
|
||||
case 'membership':
|
||||
$columns[$index] = $subscription->getMembership();
|
||||
break;
|
||||
case 'reference_number':
|
||||
$columns[$index] = $subscription->getReferenceNumber();
|
||||
break;
|
||||
case 'notes':
|
||||
$columns[$index] = PKPString::html2text($subscription->getNotes());
|
||||
break;
|
||||
case 'name':
|
||||
$columns[$index] = $user->getFullName();
|
||||
break;
|
||||
case 'mailing_address':
|
||||
$columns[$index] = PKPString::html2text($user->getMailingAddress());
|
||||
break;
|
||||
case 'country':
|
||||
$userCountry = $user->getCountry();
|
||||
$country = null;
|
||||
if ($userCountry) {
|
||||
$country = $countries->getByAlpha2($user->getCountry());
|
||||
}
|
||||
$columns[$index] = $country ? $country->getLocalName() : '';
|
||||
break;
|
||||
case 'email':
|
||||
$columns[$index] = $user->getEmail();
|
||||
break;
|
||||
case 'phone':
|
||||
$columns[$index] = $user->getPhone();
|
||||
break;
|
||||
default:
|
||||
$columns[$index] = '';
|
||||
}
|
||||
}
|
||||
|
||||
fputcsv($fp, $columns);
|
||||
}
|
||||
|
||||
// Columns for institutional subscriptions
|
||||
$columns = [''];
|
||||
fputcsv($fp, array_values($columns));
|
||||
|
||||
$columns = [__('subscriptionManager.institutionalSubscriptions')];
|
||||
fputcsv($fp, array_values($columns));
|
||||
|
||||
$columnsInstitution = [
|
||||
'institution_name' => __('manager.subscriptions.institutionName'),
|
||||
'institution_mailing_address' => __('plugins.reports.subscriptions.institutionMailingAddress'),
|
||||
'domain' => __('manager.subscriptions.domain'),
|
||||
'ip_ranges' => __('plugins.reports.subscriptions.ipRanges'),
|
||||
'contact' => __('manager.subscriptions.contact'),
|
||||
'mailing_address' => __('common.mailingAddress'),
|
||||
'country' => __('common.country'),
|
||||
'email' => __('user.email'),
|
||||
'phone' => __('user.phone'),
|
||||
];
|
||||
|
||||
$columns = array_merge($columnsCommon, $columnsInstitution);
|
||||
|
||||
// Write out institutional subscription column headings to file
|
||||
fputcsv($fp, array_values($columns));
|
||||
|
||||
// Iterate over institutional subscriptions and write out each to file
|
||||
$institutionalSubscriptions = $institutionalSubscriptionDao->getByJournalId($journalId);
|
||||
while ($subscription = $institutionalSubscriptions->next()) {
|
||||
$user = Repo::user()->get($subscription->getUserId(), true);
|
||||
$subscriptionType = $subscriptionTypeDao->getById($subscription->getTypeId());
|
||||
$institution = Repo::institution()->get($subscription->getInstitutionId());
|
||||
|
||||
foreach ($columns as $index => $junk) {
|
||||
switch ($index) {
|
||||
case 'subscription_id':
|
||||
$columns[$index] = $subscription->getId();
|
||||
break;
|
||||
case 'status':
|
||||
$columns[$index] = $subscription->getStatusString();
|
||||
break;
|
||||
case 'type':
|
||||
$columns[$index] = $subscription->getSubscriptionTypeSummaryString();
|
||||
break;
|
||||
case 'format':
|
||||
$columns[$index] = __($subscriptionType->getFormatString());
|
||||
break;
|
||||
case 'date_start':
|
||||
$columns[$index] = $subscription->getDateStart();
|
||||
break;
|
||||
case 'date_end':
|
||||
$columns[$index] = $subscription->getDateEnd();
|
||||
break;
|
||||
case 'membership':
|
||||
$columns[$index] = $subscription->getMembership();
|
||||
break;
|
||||
case 'reference_number':
|
||||
$columns[$index] = $subscription->getReferenceNumber();
|
||||
break;
|
||||
case 'notes':
|
||||
$columns[$index] = PKPString::html2text($subscription->getNotes());
|
||||
break;
|
||||
case 'institution_name':
|
||||
$columns[$index] = $institution->getLocalizedName();
|
||||
break;
|
||||
case 'institution_mailing_address':
|
||||
$columns[$index] = PKPString::html2text($subscription->getInstitutionMailingAddress());
|
||||
break;
|
||||
case 'domain':
|
||||
$columns[$index] = $subscription->getDomain();
|
||||
break;
|
||||
case 'ip_ranges':
|
||||
$columns[$index] = $this->_formatIPRanges($institution->getIPRanges());
|
||||
break;
|
||||
case 'contact':
|
||||
$columns[$index] = $user->getFullName();
|
||||
break;
|
||||
case 'mailing_address':
|
||||
$columns[$index] = PKPString::html2text($user->getMailingAddress());
|
||||
break;
|
||||
case 'country':
|
||||
$country = $countries->getByAlpha2($user->getCountry());
|
||||
$columns[$index] = $country ? $country->getLocalName() : '';
|
||||
break;
|
||||
case 'email':
|
||||
$columns[$index] = $user->getEmail();
|
||||
break;
|
||||
case 'phone':
|
||||
$columns[$index] = $user->getPhone();
|
||||
break;
|
||||
default:
|
||||
$columns[$index] = '';
|
||||
}
|
||||
}
|
||||
|
||||
fputcsv($fp, $columns);
|
||||
}
|
||||
|
||||
fclose($fp);
|
||||
}
|
||||
|
||||
/**
|
||||
* Pretty format IP ranges, one per line via line feeds.
|
||||
*
|
||||
* @param array $ipRanges IP ranges
|
||||
*
|
||||
* @return string Text of IP ranges formatted with newlines
|
||||
*/
|
||||
public function _formatIPRanges($ipRanges)
|
||||
{
|
||||
$numRanges = count($ipRanges);
|
||||
$ipRangesString = '';
|
||||
|
||||
for ($i = 0; $i < $numRanges; $i++) {
|
||||
$ipRangesString .= $ipRanges[$i];
|
||||
if ($i + 1 < $numRanges) {
|
||||
$ipRangesString .= chr(13) . chr(10);
|
||||
}
|
||||
}
|
||||
|
||||
return $ipRangesString;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @file plugins/reports/subscriptions/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 subscription report plugin.
|
||||
*
|
||||
*/
|
||||
|
||||
return new \APP\plugins\reports\subscriptions\SubscriptionReportPlugin();
|
||||
@@ -0,0 +1,26 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-11-19T11:06:14+00:00\n"
|
||||
"PO-Revision-Date: 2019-11-19T11:06:14+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.reports.subscriptions.displayName"
|
||||
msgstr "تقرير الاشتراكات"
|
||||
|
||||
msgid "plugins.reports.subscriptions.description"
|
||||
msgstr ""
|
||||
"هذه الإضافة تعطي تقريراً بصيغة CSV يضم قائمة الاشتراكات وما يتعلق بها من "
|
||||
"معلومات."
|
||||
|
||||
msgid "plugins.reports.subscriptions.institutionMailingAddress"
|
||||
msgstr "عنوان مراسلةالمؤسسة"
|
||||
|
||||
msgid "plugins.reports.subscriptions.ipRanges"
|
||||
msgstr "مديات IP"
|
||||
@@ -0,0 +1,27 @@
|
||||
# Osman Durmaz <osmandurmaz@hotmail.de>, 2023.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"PO-Revision-Date: 2023-06-02 22:43+0000\n"
|
||||
"Last-Translator: Osman Durmaz <osmandurmaz@hotmail.de>\n"
|
||||
"Language-Team: Azerbaijani <http://translate.pkp.sfu.ca/projects/ojs/"
|
||||
"reports-subscriptions/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.reports.subscriptions.displayName"
|
||||
msgstr "Abunə Hesabatı"
|
||||
|
||||
msgid "plugins.reports.subscriptions.description"
|
||||
msgstr ""
|
||||
"Bu qoşma CSV formatında abunəlik və abunəçi məlumat siyahısının daxil olduğu "
|
||||
"bir hesabat təmin edir."
|
||||
|
||||
msgid "plugins.reports.subscriptions.institutionMailingAddress"
|
||||
msgstr "Təşkilat Yazışma Adresi"
|
||||
|
||||
msgid "plugins.reports.subscriptions.ipRanges"
|
||||
msgstr "IP Aralığı"
|
||||
@@ -0,0 +1,27 @@
|
||||
# Cyril Kamburov <cc@intermedia.bg>, 2021.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"PO-Revision-Date: 2021-09-25 15:25+0000\n"
|
||||
"Last-Translator: Cyril Kamburov <cc@intermedia.bg>\n"
|
||||
"Language-Team: Bulgarian <http://translate.pkp.sfu.ca/projects/ojs/reports-"
|
||||
"subscriptions/bg_BG/>\n"
|
||||
"Language: bg_BG\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 3.9.1\n"
|
||||
|
||||
msgid "plugins.reports.subscriptions.displayName"
|
||||
msgstr "Отчет за абонаментите"
|
||||
|
||||
msgid "plugins.reports.subscriptions.description"
|
||||
msgstr ""
|
||||
"Тази добавка (плъгин) реализира CSV отчет, съдържащ списък с абонаменти и "
|
||||
"тяхната информация."
|
||||
|
||||
msgid "plugins.reports.subscriptions.institutionMailingAddress"
|
||||
msgstr "Пощенски адрес на институцията"
|
||||
|
||||
msgid "plugins.reports.subscriptions.ipRanges"
|
||||
msgstr "Диапазон от IP адреси"
|
||||
@@ -0,0 +1,8 @@
|
||||
# Dragan Cvetkovic <dcveles@gmail.com>, 2023.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Language: bs\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,26 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"PO-Revision-Date: 2020-06-12 22:00+0000\n"
|
||||
"Last-Translator: Jordi LC <jordi.lacruz@uab.cat>\n"
|
||||
"Language-Team: Catalan <http://translate.pkp.sfu.ca/projects/ojs/reports-"
|
||||
"subscriptions/ca_ES/>\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.reports.subscriptions.displayName"
|
||||
msgstr "Informe de subscripcions"
|
||||
|
||||
msgid "plugins.reports.subscriptions.description"
|
||||
msgstr ""
|
||||
"Aquest mòdul implementa un informe CSV que conté un llistat de les "
|
||||
"subscripcions i la seva informació."
|
||||
|
||||
msgid "plugins.reports.subscriptions.institutionMailingAddress"
|
||||
msgstr "Adreça postal de la institució"
|
||||
|
||||
msgid "plugins.reports.subscriptions.ipRanges"
|
||||
msgstr "Rangs IP"
|
||||
@@ -0,0 +1,26 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"PO-Revision-Date: 2020-04-08 11:27+0000\n"
|
||||
"Last-Translator: Hewa Salam Khalid <hewa.salam@koyauniversity.org>\n"
|
||||
"Language-Team: Kurdish <http://translate.pkp.sfu.ca/projects/ojs/reports-"
|
||||
"subscriptions/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.reports.subscriptions.displayName"
|
||||
msgstr "ڕاپۆرتی بەشداریکردن"
|
||||
|
||||
msgid "plugins.reports.subscriptions.description"
|
||||
msgstr ""
|
||||
"ئەم گرێدانە ڕاپۆرتێک بە شێوەی CSV دەخاتە بەردەست کە لیستی ناوی ئەو کەسانەی "
|
||||
"ئیشتراکیان کردووە و زانیارییەکانیانی تێدایە."
|
||||
|
||||
msgid "plugins.reports.subscriptions.institutionMailingAddress"
|
||||
msgstr "ناونیشانی پۆستی ڕێکخراوەکە"
|
||||
|
||||
msgid "plugins.reports.subscriptions.ipRanges"
|
||||
msgstr "مەوداکانی IP"
|
||||
@@ -0,0 +1,26 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-11-19T11:06:14+00:00\n"
|
||||
"PO-Revision-Date: 2019-11-19T11:06:14+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.reports.subscriptions.displayName"
|
||||
msgstr "Zpráva o předplatitelích"
|
||||
|
||||
msgid "plugins.reports.subscriptions.description"
|
||||
msgstr ""
|
||||
"Tento plugin generuje zprávu se seznamem předplatitelů a informací o nich ve "
|
||||
"formátu CSV."
|
||||
|
||||
msgid "plugins.reports.subscriptions.institutionMailingAddress"
|
||||
msgstr "Emailová adresa instituce"
|
||||
|
||||
msgid "plugins.reports.subscriptions.ipRanges"
|
||||
msgstr "Rozsah IP adres"
|
||||
@@ -0,0 +1,29 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-11-19T11:06:14+00:00\n"
|
||||
"PO-Revision-Date: 2020-02-09 18:35+0000\n"
|
||||
"Last-Translator: Niels Erik Frederiksen <nef@kb.dk>\n"
|
||||
"Language-Team: Danish <http://translate.pkp.sfu.ca/projects/ojs/"
|
||||
"reports-subscriptions/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.reports.subscriptions.displayName"
|
||||
msgstr "Abonnementsrapport"
|
||||
|
||||
msgid "plugins.reports.subscriptions.description"
|
||||
msgstr ""
|
||||
"Denne plugin genererer en CSV-rapport med en liste over abonnementer med "
|
||||
"tilhørende informationer."
|
||||
|
||||
msgid "plugins.reports.subscriptions.institutionMailingAddress"
|
||||
msgstr "Institutionens postadresse"
|
||||
|
||||
msgid "plugins.reports.subscriptions.ipRanges"
|
||||
msgstr "IP-områder"
|
||||
@@ -0,0 +1,26 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-30T06:56:49-07:00\n"
|
||||
"PO-Revision-Date: 2019-09-30T06:56:49-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.reports.subscriptions.displayName"
|
||||
msgstr "Abonnement-Bericht"
|
||||
|
||||
msgid "plugins.reports.subscriptions.description"
|
||||
msgstr ""
|
||||
"Dieses Plugin liefert einen CSV-Bericht, der eine Liste der Abonnent/innen "
|
||||
"und zugehöriger Informationen enthält."
|
||||
|
||||
msgid "plugins.reports.subscriptions.institutionMailingAddress"
|
||||
msgstr "Adresse der Institution"
|
||||
|
||||
msgid "plugins.reports.subscriptions.ipRanges"
|
||||
msgstr "IP-Bereiche"
|
||||
@@ -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,26 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"PO-Revision-Date: 2020-11-17 18:56+0000\n"
|
||||
"Last-Translator: Evangelos Papakirykou <vpapakir@gmail.com>\n"
|
||||
"Language-Team: Greek <http://translate.pkp.sfu.ca/projects/ojs/reports-"
|
||||
"subscriptions/el_GR/>\n"
|
||||
"Language: el_GR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=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.reports.subscriptions.displayName"
|
||||
msgstr "Αναφορά συνδρομών"
|
||||
|
||||
msgid "plugins.reports.subscriptions.description"
|
||||
msgstr ""
|
||||
"Αυτό το πρόσθετο δημιουργεί μια αναφορά τύπου CSV που περιέχει τη λίστα των "
|
||||
"συνδρομών και τις πληροφορίες τους."
|
||||
|
||||
msgid "plugins.reports.subscriptions.institutionMailingAddress"
|
||||
msgstr "Διεύθυνση ηλεκτρονικού ταχυδρομείου του ιδρύματος"
|
||||
|
||||
msgid "plugins.reports.subscriptions.ipRanges"
|
||||
msgstr "Εύρος ΙΡ"
|
||||
@@ -0,0 +1,26 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-30T06:56:49-07:00\n"
|
||||
"PO-Revision-Date: 2019-09-30T06:56:49-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.reports.subscriptions.displayName"
|
||||
msgstr "Subscriptions Report"
|
||||
|
||||
msgid "plugins.reports.subscriptions.description"
|
||||
msgstr ""
|
||||
"This plugin implements a CSV report containing a list of subscriptions and "
|
||||
"their info."
|
||||
|
||||
msgid "plugins.reports.subscriptions.institutionMailingAddress"
|
||||
msgstr "Institution Mailing Address"
|
||||
|
||||
msgid "plugins.reports.subscriptions.ipRanges"
|
||||
msgstr "IP Ranges"
|
||||
@@ -0,0 +1,27 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-11-19T11:06:14+00:00\n"
|
||||
"PO-Revision-Date: 2020-06-12 22:00+0000\n"
|
||||
"Last-Translator: Jordi LC <jordi.lacruz@uab.cat>\n"
|
||||
"Language-Team: Spanish <http://translate.pkp.sfu.ca/projects/ojs/"
|
||||
"reports-subscriptions/es_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.reports.subscriptions.displayName"
|
||||
msgstr "Informe de suscripciones"
|
||||
|
||||
msgid "plugins.reports.subscriptions.description"
|
||||
msgstr "Este módulo implementa un informe CSV que contiene una lista de suscripciones y su información."
|
||||
|
||||
msgid "plugins.reports.subscriptions.institutionMailingAddress"
|
||||
msgstr "Dirección postal de la institución"
|
||||
|
||||
msgid "plugins.reports.subscriptions.ipRanges"
|
||||
msgstr "Rangos de IP"
|
||||
@@ -0,0 +1,26 @@
|
||||
# Kamdin Parsakia <kamdinparsakia@iranmehr.ac.ir>, 2023.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"PO-Revision-Date: 2023-09-10 22:58+0000\n"
|
||||
"Last-Translator: Kamdin Parsakia <kamdinparsakia@iranmehr.ac.ir>\n"
|
||||
"Language-Team: Persian <http://translate.pkp.sfu.ca/projects/ojs/"
|
||||
"reports-subscriptions/fa/>\n"
|
||||
"Language: fa\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 4.13.1\n"
|
||||
|
||||
msgid "plugins.reports.subscriptions.institutionMailingAddress"
|
||||
msgstr "آدرس پستی سازمان"
|
||||
|
||||
msgid "plugins.reports.subscriptions.ipRanges"
|
||||
msgstr "محدوده IP"
|
||||
|
||||
msgid "plugins.reports.subscriptions.displayName"
|
||||
msgstr "گزارش اشتراکات"
|
||||
|
||||
msgid "plugins.reports.subscriptions.description"
|
||||
msgstr ""
|
||||
"این پلاگین یک گزارش CSV شامل لیستی از اشتراکات و اطلاعات آن تهیه میکند."
|
||||
@@ -0,0 +1,27 @@
|
||||
# Antti-Jussi Nygård <ajnyga@gmail.com>, 2023.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"PO-Revision-Date: 2023-05-31 21:31+0000\n"
|
||||
"Last-Translator: Antti-Jussi Nygård <ajnyga@gmail.com>\n"
|
||||
"Language-Team: Finnish <http://translate.pkp.sfu.ca/projects/ojs/"
|
||||
"reports-subscriptions/fi/>\n"
|
||||
"Language: fi\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 4.13.1\n"
|
||||
|
||||
msgid "plugins.reports.subscriptions.displayName"
|
||||
msgstr "Tilaukset-raportti"
|
||||
|
||||
msgid "plugins.reports.subscriptions.description"
|
||||
msgstr ""
|
||||
"Tällä lisäosalla voidaan hakea CSV-muotoinen julkaisun tilauksia koskeva "
|
||||
"raportti."
|
||||
|
||||
msgid "plugins.reports.subscriptions.institutionMailingAddress"
|
||||
msgstr "Instituution postiosoite"
|
||||
|
||||
msgid "plugins.reports.subscriptions.ipRanges"
|
||||
msgstr "IP-alueet"
|
||||
@@ -0,0 +1,27 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"PO-Revision-Date: 2020-03-10 18:58+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/"
|
||||
"reports-subscriptions/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.reports.subscriptions.displayName"
|
||||
msgstr "Rapport d'abonnements"
|
||||
|
||||
msgid "plugins.reports.subscriptions.description"
|
||||
msgstr ""
|
||||
"Ce plugiciel met en place un rapport CSV qui contient une liste des "
|
||||
"abonnements ainsi que leurs renseignements."
|
||||
|
||||
msgid "plugins.reports.subscriptions.institutionMailingAddress"
|
||||
msgstr "Adresse postale de l'établissement"
|
||||
|
||||
msgid "plugins.reports.subscriptions.ipRanges"
|
||||
msgstr "Plages d'adresses IP"
|
||||
@@ -0,0 +1,26 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"PO-Revision-Date: 2020-08-21 14:48+0000\n"
|
||||
"Last-Translator: Paul Heckler <paul.d.heckler@gmail.com>\n"
|
||||
"Language-Team: French <http://translate.pkp.sfu.ca/projects/ojs/reports-"
|
||||
"subscriptions/fr/>\n"
|
||||
"Language: 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.reports.subscriptions.displayName"
|
||||
msgstr "Rapport d'abonnements"
|
||||
|
||||
msgid "plugins.reports.subscriptions.description"
|
||||
msgstr ""
|
||||
"Ce module met en place un rapport CSL contenant une liste des abonnements "
|
||||
"ainsi que leurs informations."
|
||||
|
||||
msgid "plugins.reports.subscriptions.institutionMailingAddress"
|
||||
msgstr "Adresse postale de l'institution"
|
||||
|
||||
msgid "plugins.reports.subscriptions.ipRanges"
|
||||
msgstr "Plages d'adresses IP"
|
||||
@@ -0,0 +1,26 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"PO-Revision-Date: 2021-06-18 10:03+0000\n"
|
||||
"Last-Translator: Real Academia Galega <reacagal@gmail.com>\n"
|
||||
"Language-Team: Galician <http://translate.pkp.sfu.ca/projects/ojs/reports-"
|
||||
"subscriptions/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.reports.subscriptions.displayName"
|
||||
msgstr "Informe de subscricións"
|
||||
|
||||
msgid "plugins.reports.subscriptions.description"
|
||||
msgstr ""
|
||||
"Este complemento implementa un informe CSV que contén unha lista de "
|
||||
"subscricións e a súa información."
|
||||
|
||||
msgid "plugins.reports.subscriptions.institutionMailingAddress"
|
||||
msgstr "Enderezo postal da institución"
|
||||
|
||||
msgid "plugins.reports.subscriptions.ipRanges"
|
||||
msgstr "Rangos de IP"
|
||||
@@ -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,26 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"PO-Revision-Date: 2020-02-14 20:38+0000\n"
|
||||
"Last-Translator: Gabor Klinger <ojshelp@konyvtar.mta.hu>\n"
|
||||
"Language-Team: Hungarian <http://translate.pkp.sfu.ca/projects/ojs/reports-"
|
||||
"subscriptions/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.reports.subscriptions.displayName"
|
||||
msgstr "Előfizetési riport"
|
||||
|
||||
msgid "plugins.reports.subscriptions.description"
|
||||
msgstr ""
|
||||
"Ez a plugin CSV formátumba állít elő riportot, tartalmazva az előfizetéseket "
|
||||
"listázva és a vonatkozó információkat."
|
||||
|
||||
msgid "plugins.reports.subscriptions.institutionMailingAddress"
|
||||
msgstr "Intézményi levelezési cím"
|
||||
|
||||
msgid "plugins.reports.subscriptions.ipRanges"
|
||||
msgstr "IP tartományok"
|
||||
@@ -0,0 +1,28 @@
|
||||
# Artashes Mirzoyan <amirzoyan@sci.am>, 2022.
|
||||
# Tigran Zargaryan <tigran@flib.sci.am>, 2022.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"PO-Revision-Date: 2022-06-29 18:50+0000\n"
|
||||
"Last-Translator: Tigran Zargaryan <tigran@flib.sci.am>\n"
|
||||
"Language-Team: Armenian <http://translate.pkp.sfu.ca/projects/ojs/reports-"
|
||||
"subscriptions/hy_AM/>\n"
|
||||
"Language: hy_AM\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 3.9.1\n"
|
||||
|
||||
msgid "plugins.reports.subscriptions.displayName"
|
||||
msgstr "Բաժանորդագրությունների հաշվետվություն"
|
||||
|
||||
msgid "plugins.reports.subscriptions.description"
|
||||
msgstr ""
|
||||
"Այս փլագինը իրականացնում է CSV հաշվետվություն, որը պարունակում է "
|
||||
"բաժանորդագրությունների ցանկը և դրանց տվյալները:"
|
||||
|
||||
msgid "plugins.reports.subscriptions.institutionMailingAddress"
|
||||
msgstr "Հաստատության փոստային հասցե"
|
||||
|
||||
msgid "plugins.reports.subscriptions.ipRanges"
|
||||
msgstr "IP տիրույթներ"
|
||||
@@ -0,0 +1,29 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-11-19T11:06:14+00:00\n"
|
||||
"PO-Revision-Date: 2020-02-03 06:35+0000\n"
|
||||
"Last-Translator: Ramli Baharuddin <ramli.baharuddin@relawanjurnal.id>\n"
|
||||
"Language-Team: Indonesian <http://translate.pkp.sfu.ca/projects/ojs/"
|
||||
"reports-subscriptions/id/>\n"
|
||||
"Language: id_ID\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 3.9.1\n"
|
||||
|
||||
msgid "plugins.reports.subscriptions.displayName"
|
||||
msgstr "Laporan Langganan"
|
||||
|
||||
msgid "plugins.reports.subscriptions.description"
|
||||
msgstr ""
|
||||
"Plugin ini menerapkan laporan CSV yang berisi daftar langganan dan info "
|
||||
"mereka."
|
||||
|
||||
msgid "plugins.reports.subscriptions.institutionMailingAddress"
|
||||
msgstr "Alamat surat menyurat Insitusi"
|
||||
|
||||
msgid "plugins.reports.subscriptions.ipRanges"
|
||||
msgstr "Rentang IP"
|
||||
@@ -0,0 +1,27 @@
|
||||
# Kolbrun Reynisdottir <kolla@probus.is>, 2022.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"PO-Revision-Date: 2022-03-23 15:57+0000\n"
|
||||
"Last-Translator: Kolbrun Reynisdottir <kolla@probus.is>\n"
|
||||
"Language-Team: Icelandic <http://translate.pkp.sfu.ca/projects/ojs/reports-"
|
||||
"subscriptions/is_IS/>\n"
|
||||
"Language: is_IS\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n % 10 != 1 || n % 100 == 11;\n"
|
||||
"X-Generator: Weblate 3.9.1\n"
|
||||
|
||||
msgid "plugins.reports.subscriptions.displayName"
|
||||
msgstr "Áskriftaskýrsla"
|
||||
|
||||
msgid "plugins.reports.subscriptions.description"
|
||||
msgstr ""
|
||||
"Þessi viðbót setur upp CSV skýrslu sem inniheldur lista yfir áskrifendur og "
|
||||
"upplýsingar um þá."
|
||||
|
||||
msgid "plugins.reports.subscriptions.institutionMailingAddress"
|
||||
msgstr "Póstlisti stofnana"
|
||||
|
||||
msgid "plugins.reports.subscriptions.ipRanges"
|
||||
msgstr "IP-talnaraðir"
|
||||
@@ -0,0 +1,29 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-11-19T11:06:14+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/"
|
||||
"reports-subscriptions/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.reports.subscriptions.displayName"
|
||||
msgstr "Report degli abbonamenti"
|
||||
|
||||
msgid "plugins.reports.subscriptions.description"
|
||||
msgstr ""
|
||||
"Questo plugin crea un report CSV contenente la lista degli abbonamenti e le "
|
||||
"relative informazioni."
|
||||
|
||||
msgid "plugins.reports.subscriptions.institutionMailingAddress"
|
||||
msgstr "Indirizzo email dell'istituzione"
|
||||
|
||||
msgid "plugins.reports.subscriptions.ipRanges"
|
||||
msgstr "Range di IP"
|
||||
@@ -0,0 +1,26 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"PO-Revision-Date: 2021-02-07 10:53+0000\n"
|
||||
"Last-Translator: Dimitri Gogelia <dimitri.gogelia@iliauni.edu.ge>\n"
|
||||
"Language-Team: Georgian <http://translate.pkp.sfu.ca/projects/ojs/reports-"
|
||||
"subscriptions/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.reports.subscriptions.displayName"
|
||||
msgstr "მოდული „ანგარიშგება გამოწერებზე“"
|
||||
|
||||
msgid "plugins.reports.subscriptions.description"
|
||||
msgstr ""
|
||||
"აგენერირებს ანგარიშგებებს CSV ფორმატში, რომელიც შეიცავს გამოწერების სიას და "
|
||||
"ინფორმაციას მათ შესახებ."
|
||||
|
||||
msgid "plugins.reports.subscriptions.institutionMailingAddress"
|
||||
msgstr "ორგანიზაციის საფოსტო მისამართი"
|
||||
|
||||
msgid "plugins.reports.subscriptions.ipRanges"
|
||||
msgstr "IP-მისამართების დიაპაზონი"
|
||||
@@ -0,0 +1,27 @@
|
||||
# Madi <nmdbzk@gmail.com>, 2021.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"PO-Revision-Date: 2021-07-14 06:04+0000\n"
|
||||
"Last-Translator: Madi <nmdbzk@gmail.com>\n"
|
||||
"Language-Team: Kazakh <http://translate.pkp.sfu.ca/projects/ojs/reports-"
|
||||
"subscriptions/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.reports.subscriptions.displayName"
|
||||
msgstr "\"Тіркелу есебі\" модулі"
|
||||
|
||||
msgid "plugins.reports.subscriptions.description"
|
||||
msgstr ""
|
||||
"Тіркелулер тізімі мен олар туралы ақпаратты қамтитын CSV форматындағы есепті "
|
||||
"жүзеге асырады."
|
||||
|
||||
msgid "plugins.reports.subscriptions.institutionMailingAddress"
|
||||
msgstr "Ұйымның пошта мекенжайы"
|
||||
|
||||
msgid "plugins.reports.subscriptions.ipRanges"
|
||||
msgstr "IP мекенжайларының ауқымы"
|
||||
@@ -0,0 +1,27 @@
|
||||
# Mahmut VURAL <mahmut.vural@outlook.com>, 2024.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"PO-Revision-Date: 2024-01-03 21:35+0000\n"
|
||||
"Last-Translator: Mahmut VURAL <mahmut.vural@outlook.com>\n"
|
||||
"Language-Team: Kyrgyz <http://translate.pkp.sfu.ca/projects/ojs/"
|
||||
"reports-subscriptions/ky/>\n"
|
||||
"Language: ky\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 4.18.2\n"
|
||||
|
||||
msgid "plugins.reports.subscriptions.displayName"
|
||||
msgstr "Жазылуулар жөнүндө отчет модулу"
|
||||
|
||||
msgid "plugins.reports.subscriptions.description"
|
||||
msgstr ""
|
||||
"Жазылуулардын тизмесин жана алар жөнүндө маалыматты камтыган CSV "
|
||||
"форматындагы отчетту ишке ашырат."
|
||||
|
||||
msgid "plugins.reports.subscriptions.institutionMailingAddress"
|
||||
msgstr "Уюмдун почта дареги"
|
||||
|
||||
msgid "plugins.reports.subscriptions.ipRanges"
|
||||
msgstr "IP дарек диапазону"
|
||||
@@ -0,0 +1,28 @@
|
||||
# Ieva Tiltina <pastala@gmail.com>, 2023.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"PO-Revision-Date: 2023-09-19 08:43+0000\n"
|
||||
"Last-Translator: Ieva Tiltina <pastala@gmail.com>\n"
|
||||
"Language-Team: Latvian <http://translate.pkp.sfu.ca/projects/ojs/"
|
||||
"reports-subscriptions/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.13.1\n"
|
||||
|
||||
msgid "plugins.reports.subscriptions.displayName"
|
||||
msgstr "Pārskats par abonementiem"
|
||||
|
||||
msgid "plugins.reports.subscriptions.description"
|
||||
msgstr ""
|
||||
"Šis spraudnis īsteno pārskatu CSV fomātā, kas satur abonementu sarakstu un "
|
||||
"informāciju par tiem."
|
||||
|
||||
msgid "plugins.reports.subscriptions.institutionMailingAddress"
|
||||
msgstr "Iestādes pasta adrese"
|
||||
|
||||
msgid "plugins.reports.subscriptions.ipRanges"
|
||||
msgstr "IP diapazoni"
|
||||
@@ -0,0 +1,26 @@
|
||||
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/reports-"
|
||||
"subscriptions/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.reports.subscriptions.displayName"
|
||||
msgstr "Извештај за претплати"
|
||||
|
||||
msgid "plugins.reports.subscriptions.description"
|
||||
msgstr ""
|
||||
"Овој приклучок спроведува извештај CSV кој содржи список со претплати и "
|
||||
"нивни информации."
|
||||
|
||||
msgid "plugins.reports.subscriptions.institutionMailingAddress"
|
||||
msgstr "Поштенска адреса на институцијата"
|
||||
|
||||
msgid "plugins.reports.subscriptions.ipRanges"
|
||||
msgstr "Опсези на IP"
|
||||
@@ -0,0 +1,27 @@
|
||||
# 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/reports-"
|
||||
"subscriptions/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.reports.subscriptions.displayName"
|
||||
msgstr "Laporan Langganan"
|
||||
|
||||
msgid "plugins.reports.subscriptions.description"
|
||||
msgstr ""
|
||||
"Plugin ini menerapkan laporan CSV yang mengandungi senarai langganan dan "
|
||||
"maklumatnya."
|
||||
|
||||
msgid "plugins.reports.subscriptions.institutionMailingAddress"
|
||||
msgstr "Alamat Surat Menyurat Institusi"
|
||||
|
||||
msgid "plugins.reports.subscriptions.ipRanges"
|
||||
msgstr "Julat IP"
|
||||
@@ -0,0 +1,26 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"PO-Revision-Date: 2021-01-16 10:53+0000\n"
|
||||
"Last-Translator: Eirik Hanssen <eirikh@oslomet.no>\n"
|
||||
"Language-Team: Norwegian Bokmål <http://translate.pkp.sfu.ca/projects/ojs/"
|
||||
"reports-subscriptions/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.reports.subscriptions.displayName"
|
||||
msgstr "Abonnementsrapport"
|
||||
|
||||
msgid "plugins.reports.subscriptions.description"
|
||||
msgstr ""
|
||||
"Dette programtillegget genererer en CSV-rapport med en liste over "
|
||||
"abonnementer med tilhørende informasjon."
|
||||
|
||||
msgid "plugins.reports.subscriptions.institutionMailingAddress"
|
||||
msgstr "Institusjonens postadresse"
|
||||
|
||||
msgid "plugins.reports.subscriptions.ipRanges"
|
||||
msgstr "IP-områder"
|
||||
@@ -0,0 +1,29 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-11-19T11:06:15+00:00\n"
|
||||
"PO-Revision-Date: 2020-10-22 11:46+0000\n"
|
||||
"Last-Translator: Hans Spijker <hans.spijker@huygens.knaw.nl>\n"
|
||||
"Language-Team: Dutch <http://translate.pkp.sfu.ca/projects/ojs/"
|
||||
"reports-subscriptions/nl/>\n"
|
||||
"Language: nl_NL\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 3.9.1\n"
|
||||
|
||||
msgid "plugins.reports.subscriptions.displayName"
|
||||
msgstr "Abonnementen rapport"
|
||||
|
||||
msgid "plugins.reports.subscriptions.description"
|
||||
msgstr ""
|
||||
"Deze plugin levert een CSV rapport met een lijst abonnementen en "
|
||||
"bijbehorende informatie."
|
||||
|
||||
msgid "plugins.reports.subscriptions.institutionMailingAddress"
|
||||
msgstr "Postadres instituut"
|
||||
|
||||
msgid "plugins.reports.subscriptions.ipRanges"
|
||||
msgstr "IP reeksen"
|
||||
@@ -0,0 +1,26 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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/reports-"
|
||||
"subscriptions/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.reports.subscriptions.displayName"
|
||||
msgstr "Zgłoszenie subskrypcji"
|
||||
|
||||
msgid "plugins.reports.subscriptions.description"
|
||||
msgstr ""
|
||||
"Ta wtyczka wdraża raport CSV zawierający listę subskrypcji i ich informacje."
|
||||
|
||||
msgid "plugins.reports.subscriptions.institutionMailingAddress"
|
||||
msgstr "Adres korespondencyjny instytucji"
|
||||
|
||||
msgid "plugins.reports.subscriptions.ipRanges"
|
||||
msgstr "Zakres IP"
|
||||
@@ -0,0 +1,26 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-30T11:58:35-07:00\n"
|
||||
"PO-Revision-Date: 2019-09-30T11:58:35-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.reports.subscriptions.displayName"
|
||||
msgstr "Relatório de assinaturas"
|
||||
|
||||
msgid "plugins.reports.subscriptions.description"
|
||||
msgstr ""
|
||||
"Este plugin implementa um relatório em formato CSV contendo a lista de "
|
||||
"assinaturas e suas informações."
|
||||
|
||||
msgid "plugins.reports.subscriptions.institutionMailingAddress"
|
||||
msgstr "Endereço postal da instituição"
|
||||
|
||||
msgid "plugins.reports.subscriptions.ipRanges"
|
||||
msgstr "Faixas de IP"
|
||||
@@ -0,0 +1,26 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-11-19T11:06:15+00:00\n"
|
||||
"PO-Revision-Date: 2019-11-19T11:06:15+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.reports.subscriptions.displayName"
|
||||
msgstr "Relatório de Subscrições"
|
||||
|
||||
msgid "plugins.reports.subscriptions.description"
|
||||
msgstr ""
|
||||
"Este plugin implementa a exportação de relatórios CSV com a lista de "
|
||||
"subscrições e a sua informação."
|
||||
|
||||
msgid "plugins.reports.subscriptions.institutionMailingAddress"
|
||||
msgstr "Endereço de Correio Institucional"
|
||||
|
||||
msgid "plugins.reports.subscriptions.ipRanges"
|
||||
msgstr "Intervalo de IP"
|
||||
@@ -0,0 +1,25 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-11-19T11:06:15+00:00\n"
|
||||
"PO-Revision-Date: 2019-11-19T11:06:15+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.reports.subscriptions.displayName"
|
||||
msgstr "Модуль «Отчет о подписках»"
|
||||
|
||||
msgid "plugins.reports.subscriptions.description"
|
||||
msgstr ""
|
||||
"Реализует отчет в формате CSV, содержащий список подписок и информацию о них."
|
||||
|
||||
msgid "plugins.reports.subscriptions.institutionMailingAddress"
|
||||
msgstr "Почтовый адрес организации"
|
||||
|
||||
msgid "plugins.reports.subscriptions.ipRanges"
|
||||
msgstr "Диапазоны IP-адресов"
|
||||
@@ -0,0 +1,26 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"PO-Revision-Date: 2020-10-07 11:59+0000\n"
|
||||
"Last-Translator: Miroslav Chladný <klwngbnl@zeroe.ml>\n"
|
||||
"Language-Team: Slovak <http://translate.pkp.sfu.ca/projects/ojs/reports-"
|
||||
"subscriptions/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.reports.subscriptions.displayName"
|
||||
msgstr "Správa o predplatiteľoch"
|
||||
|
||||
msgid "plugins.reports.subscriptions.description"
|
||||
msgstr ""
|
||||
"Tento plugin generuje správu so zoznamom predplatiteľov a informácií o nich "
|
||||
"vo formáte CSV."
|
||||
|
||||
msgid "plugins.reports.subscriptions.institutionMailingAddress"
|
||||
msgstr "Emailová adresa inštitúcie"
|
||||
|
||||
msgid "plugins.reports.subscriptions.ipRanges"
|
||||
msgstr "Rozsah IP adries"
|
||||
@@ -0,0 +1,29 @@
|
||||
# Primož Svetek <primoz.svetek@gmail.com>, 2022.
|
||||
# Matevž Rudolf <matevz.rudolf@uni-lj.si>, 2022.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"PO-Revision-Date: 2022-05-03 16:29+0000\n"
|
||||
"Last-Translator: Matevž Rudolf <matevz.rudolf@uni-lj.si>\n"
|
||||
"Language-Team: Slovenian <http://translate.pkp.sfu.ca/projects/ojs/reports-"
|
||||
"subscriptions/sl_SI/>\n"
|
||||
"Language: sl_SI\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n"
|
||||
"%100==4 ? 2 : 3;\n"
|
||||
"X-Generator: Weblate 3.9.1\n"
|
||||
|
||||
msgid "plugins.reports.subscriptions.displayName"
|
||||
msgstr "Poročilo o naročninah"
|
||||
|
||||
msgid "plugins.reports.subscriptions.description"
|
||||
msgstr ""
|
||||
"Ta vtičnik pripravi CSV poročilo, ki vsebuje seznam vseh naročnin in njihove "
|
||||
"podrobnosti."
|
||||
|
||||
msgid "plugins.reports.subscriptions.institutionMailingAddress"
|
||||
msgstr ""
|
||||
|
||||
msgid "plugins.reports.subscriptions.ipRanges"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,26 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-11-19T11:06:15+00:00\n"
|
||||
"PO-Revision-Date: 2019-11-19T11:06:15+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.reports.subscriptions.displayName"
|
||||
msgstr "Izveštaji o pretplatama"
|
||||
|
||||
msgid "plugins.reports.subscriptions.description"
|
||||
msgstr ""
|
||||
"Ovaj dodatak implementira CVS izveštaj koji sadrži listu pretplata i "
|
||||
"informacija o njima."
|
||||
|
||||
msgid "plugins.reports.subscriptions.institutionMailingAddress"
|
||||
msgstr "Institucionalna imejl adresa"
|
||||
|
||||
msgid "plugins.reports.subscriptions.ipRanges"
|
||||
msgstr "IP opsezi"
|
||||
@@ -0,0 +1,26 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-11-19T11:06:15+00:00\n"
|
||||
"PO-Revision-Date: 2019-11-19T11:06:15+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.reports.subscriptions.displayName"
|
||||
msgstr "Rapporter över prenumerationer"
|
||||
|
||||
msgid "plugins.reports.subscriptions.description"
|
||||
msgstr ""
|
||||
"Pluginet skapar en CSV-rapport som innehåller en lista över prenumerationer "
|
||||
"och information om dem."
|
||||
|
||||
msgid "plugins.reports.subscriptions.institutionMailingAddress"
|
||||
msgstr "Institutionens adress"
|
||||
|
||||
msgid "plugins.reports.subscriptions.ipRanges"
|
||||
msgstr "IP-omfång"
|
||||
@@ -0,0 +1,26 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-11-19T11:06:15+00:00\n"
|
||||
"PO-Revision-Date: 2019-11-19T11:06:15+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.reports.subscriptions.displayName"
|
||||
msgstr "Abonelik Raporu"
|
||||
|
||||
msgid "plugins.reports.subscriptions.description"
|
||||
msgstr ""
|
||||
"Bu eklenti CSV formatında abonelik ve abone bilgi listesini içeren bir rapor "
|
||||
"sağlar."
|
||||
|
||||
msgid "plugins.reports.subscriptions.institutionMailingAddress"
|
||||
msgstr "Kurum Yazışma Adresi"
|
||||
|
||||
msgid "plugins.reports.subscriptions.ipRanges"
|
||||
msgstr "IP Aralığı"
|
||||
@@ -0,0 +1,31 @@
|
||||
# Petro Bilous <petrobilous@ukr.net>, 2023.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-11-19T11:06:15+00:00\n"
|
||||
"PO-Revision-Date: 2023-06-02 20:47+0000\n"
|
||||
"Last-Translator: Petro Bilous <petrobilous@ukr.net>\n"
|
||||
"Language-Team: Ukrainian <http://translate.pkp.sfu.ca/projects/ojs/"
|
||||
"reports-subscriptions/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.reports.subscriptions.displayName"
|
||||
msgstr "Звіт про передплати"
|
||||
|
||||
msgid "plugins.reports.subscriptions.description"
|
||||
msgstr ""
|
||||
"Цей плагін дає змогу формувати звіти у форматі CSV зі списками передплат та "
|
||||
"інформацією про них."
|
||||
|
||||
msgid "plugins.reports.subscriptions.institutionMailingAddress"
|
||||
msgstr "Поштова адреса установи"
|
||||
|
||||
msgid "plugins.reports.subscriptions.ipRanges"
|
||||
msgstr "Діапазон IP-адрес"
|
||||
@@ -0,0 +1,18 @@
|
||||
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.reports.subscriptions.displayName"
|
||||
msgstr ""
|
||||
|
||||
msgid "plugins.reports.subscriptions.description"
|
||||
msgstr ""
|
||||
|
||||
msgid "plugins.reports.subscriptions.institutionMailingAddress"
|
||||
msgstr ""
|
||||
|
||||
msgid "plugins.reports.subscriptions.ipRanges"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,26 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"PO-Revision-Date: 2021-04-19 14:27+0000\n"
|
||||
"Last-Translator: Mironshoh Sattorov <mironshohsattorov23091997@gmail.com>\n"
|
||||
"Language-Team: Uzbek <http://translate.pkp.sfu.ca/projects/ojs/reports-"
|
||||
"subscriptions/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.reports.subscriptions.displayName"
|
||||
msgstr "Obuna bo'yicha hisobot moduli"
|
||||
|
||||
msgid "plugins.reports.subscriptions.description"
|
||||
msgstr ""
|
||||
"Obuna ro'yxati va ular haqidagi ma'lumotlarni o'z ichiga olgan CSV "
|
||||
"hisobotini amalga oshiradi."
|
||||
|
||||
msgid "plugins.reports.subscriptions.institutionMailingAddress"
|
||||
msgstr "Tashkilotning pochta manzili"
|
||||
|
||||
msgid "plugins.reports.subscriptions.ipRanges"
|
||||
msgstr "IP-manzillar oralig'i"
|
||||
@@ -0,0 +1,25 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"PO-Revision-Date: 2020-04-29 07:38+0000\n"
|
||||
"Last-Translator: Tran Ngoc Trung <khuchatthienduong@gmail.com>\n"
|
||||
"Language-Team: Vietnamese <http://translate.pkp.sfu.ca/projects/ojs/"
|
||||
"reports-subscriptions/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.reports.subscriptions.displayName"
|
||||
msgstr "Báo cáo các thuê bao"
|
||||
|
||||
msgid "plugins.reports.subscriptions.description"
|
||||
msgstr ""
|
||||
"Plugin này thực hiện báo cáo CSV chứa danh sách đăng ký và thông tin của họ."
|
||||
|
||||
msgid "plugins.reports.subscriptions.institutionMailingAddress"
|
||||
msgstr "Địa chỉ gửi thư của tổ chức"
|
||||
|
||||
msgid "plugins.reports.subscriptions.ipRanges"
|
||||
msgstr "Phạm vi IP"
|
||||
@@ -0,0 +1,25 @@
|
||||
# HKBU Library <libms@hkbu.edu.hk>, 2022.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"PO-Revision-Date: 2022-09-24 09:38+0000\n"
|
||||
"Last-Translator: HKBU Library <libms@hkbu.edu.hk>\n"
|
||||
"Language-Team: Chinese (Traditional) <http://translate.pkp.sfu.ca/projects/"
|
||||
"ojs/reports-subscriptions/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.reports.subscriptions.displayName"
|
||||
msgstr "訂閱報告"
|
||||
|
||||
msgid "plugins.reports.subscriptions.description"
|
||||
msgstr "此插件輸出載有訂閱列表及相關資訊的CSV報告。"
|
||||
|
||||
msgid "plugins.reports.subscriptions.institutionMailingAddress"
|
||||
msgstr "院校郵寄地址"
|
||||
|
||||
msgid "plugins.reports.subscriptions.ipRanges"
|
||||
msgstr "IP範圍"
|
||||
@@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE version SYSTEM "../../../lib/pkp/dtd/pluginVersion.dtd">
|
||||
|
||||
<!--
|
||||
* plugins/reports/subscriptions/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>subscriptions</application>
|
||||
<type>plugins.reports</type>
|
||||
<release>1.0.0.0</release>
|
||||
<date>2010-12-14</date>
|
||||
</version>
|
||||
Reference in New Issue
Block a user