Switch tabs for whitespaces

This commit is contained in:
Sebastian Meyer 2019-03-16 12:03:25 +01:00
parent 596e804d0c
commit da5d8ff337
85 changed files with 5311 additions and 5318 deletions

View File

@ -123,7 +123,7 @@ final class Document {
/** /**
* Last searched logical and physical page * Last searched logical and physical page
* *
* @var array * @var array
* @access protected * @access protected
*/ */
protected $lastSearchedPhysicalPage = ['logicalPage' => NULL, 'physicalPage' => NULL]; protected $lastSearchedPhysicalPage = ['logicalPage' => NULL, 'physicalPage' => NULL];
@ -131,7 +131,7 @@ final class Document {
/** /**
* This holds the documents location * This holds the documents location
* *
* @var string * @var string
* @access protected * @access protected
*/ */
protected $location = ''; protected $location = '';
@ -139,7 +139,7 @@ final class Document {
/** /**
* This holds the logical units * This holds the logical units
* *
* @var array * @var array
* @access protected * @access protected
*/ */
protected $logicalUnits = []; protected $logicalUnits = [];
@ -147,7 +147,7 @@ final class Document {
/** /**
* This holds the documents' parsed metadata array with their corresponding structMap//div's ID as array key * This holds the documents' parsed metadata array with their corresponding structMap//div's ID as array key
* *
* @var array * @var array
* @access protected * @access protected
*/ */
protected $metadataArray = []; protected $metadataArray = [];
@ -156,7 +156,7 @@ final class Document {
* Is the metadata array loaded? * Is the metadata array loaded?
* @see $metadataArray * @see $metadataArray
* *
* @var boolean * @var boolean
* @access protected * @access protected
*/ */
protected $metadataArrayLoaded = FALSE; protected $metadataArrayLoaded = FALSE;
@ -164,7 +164,7 @@ final class Document {
/** /**
* This holds the XML file's METS part as \SimpleXMLElement object * This holds the XML file's METS part as \SimpleXMLElement object
* *
* @var \SimpleXMLElement * @var \SimpleXMLElement
* @access protected * @access protected
*/ */
protected $mets; protected $mets;
@ -172,7 +172,7 @@ final class Document {
/** /**
* The holds the total number of pages * The holds the total number of pages
* *
* @var integer * @var integer
* @access protected * @access protected
*/ */
protected $numPages = 0; protected $numPages = 0;
@ -180,7 +180,7 @@ final class Document {
/** /**
* This holds the UID of the parent document or zero if not multi-volumed * This holds the UID of the parent document or zero if not multi-volumed
* *
* @var integer * @var integer
* @access protected * @access protected
*/ */
protected $parentId = 0; protected $parentId = 0;
@ -188,7 +188,7 @@ final class Document {
/** /**
* This holds the physical structure * This holds the physical structure
* *
* @var array * @var array
* @access protected * @access protected
*/ */
protected $physicalStructure = []; protected $physicalStructure = [];
@ -196,7 +196,7 @@ final class Document {
/** /**
* This holds the physical structure metadata * This holds the physical structure metadata
* *
* @var array * @var array
* @access protected * @access protected
*/ */
protected $physicalStructureInfo = []; protected $physicalStructureInfo = [];
@ -205,7 +205,7 @@ final class Document {
* Is the physical structure loaded? * Is the physical structure loaded?
* @see $physicalStructure * @see $physicalStructure
* *
* @var boolean * @var boolean
* @access protected * @access protected
*/ */
protected $physicalStructureLoaded = FALSE; protected $physicalStructureLoaded = FALSE;
@ -213,7 +213,7 @@ final class Document {
/** /**
* This holds the PID of the document or zero if not in database * This holds the PID of the document or zero if not in database
* *
* @var integer * @var integer
* @access protected * @access protected
*/ */
protected $pid = 0; protected $pid = 0;
@ -221,7 +221,7 @@ final class Document {
/** /**
* This holds the documents' raw text pages with their corresponding structMap//div's ID as array key * This holds the documents' raw text pages with their corresponding structMap//div's ID as array key
* *
* @var array * @var array
* @access protected * @access protected
*/ */
protected $rawTextArray = []; protected $rawTextArray = [];
@ -229,7 +229,7 @@ final class Document {
/** /**
* Is the document instantiated successfully? * Is the document instantiated successfully?
* *
* @var boolean * @var boolean
* @access protected * @access protected
*/ */
protected $ready = FALSE; protected $ready = FALSE;
@ -237,7 +237,7 @@ final class Document {
/** /**
* The METS file's record identifier * The METS file's record identifier
* *
* @var string * @var string
* @access protected * @access protected
*/ */
protected $recordId; protected $recordId;
@ -245,7 +245,7 @@ final class Document {
/** /**
* This holds the singleton object of the document * This holds the singleton object of the document
* *
* @var array (\Kitodo\Dlf\Common\Document) * @var array (\Kitodo\Dlf\Common\Document)
* @access protected * @access protected
*/ */
protected static $registry = []; protected static $registry = [];
@ -253,7 +253,7 @@ final class Document {
/** /**
* This holds the UID of the root document or zero if not multi-volumed * This holds the UID of the root document or zero if not multi-volumed
* *
* @var integer * @var integer
* @access protected * @access protected
*/ */
protected $rootId = 0; protected $rootId = 0;
@ -262,7 +262,7 @@ final class Document {
* Is the root id loaded? * Is the root id loaded?
* @see $rootId * @see $rootId
* *
* @var boolean * @var boolean
* @access protected * @access protected
*/ */
protected $rootIdLoaded = FALSE; protected $rootIdLoaded = FALSE;
@ -270,7 +270,7 @@ final class Document {
/** /**
* This holds the smLinks between logical and physical structMap * This holds the smLinks between logical and physical structMap
* *
* @var array * @var array
* @access protected * @access protected
*/ */
protected $smLinks = ['l2p' => [], 'p2l' => []]; protected $smLinks = ['l2p' => [], 'p2l' => []];
@ -279,7 +279,7 @@ final class Document {
* Are the smLinks loaded? * Are the smLinks loaded?
* @see $smLinks * @see $smLinks
* *
* @var boolean * @var boolean
* @access protected * @access protected
*/ */
protected $smLinksLoaded = FALSE; protected $smLinksLoaded = FALSE;
@ -287,7 +287,7 @@ final class Document {
/** /**
* This holds the logical structure * This holds the logical structure
* *
* @var array * @var array
* @access protected * @access protected
*/ */
protected $tableOfContents = []; protected $tableOfContents = [];
@ -296,7 +296,7 @@ final class Document {
* Is the table of contents loaded? * Is the table of contents loaded?
* @see $tableOfContents * @see $tableOfContents
* *
* @var boolean * @var boolean
* @access protected * @access protected
*/ */
protected $tableOfContentsLoaded = FALSE; protected $tableOfContentsLoaded = FALSE;
@ -304,7 +304,7 @@ final class Document {
/** /**
* This holds the document's thumbnail location. * This holds the document's thumbnail location.
* *
* @var string * @var string
* @access protected * @access protected
*/ */
protected $thumbnail = ''; protected $thumbnail = '';
@ -313,7 +313,7 @@ final class Document {
* Is the document's thumbnail location loaded? * Is the document's thumbnail location loaded?
* @see $thumbnail * @see $thumbnail
* *
* @var boolean * @var boolean
* @access protected * @access protected
*/ */
protected $thumbnailLoaded = FALSE; protected $thumbnailLoaded = FALSE;
@ -321,7 +321,7 @@ final class Document {
/** /**
* This holds the toplevel structure's @ID * This holds the toplevel structure's @ID
* *
* @var string * @var string
* @access protected * @access protected
*/ */
protected $toplevelId = ''; protected $toplevelId = '';
@ -329,7 +329,7 @@ final class Document {
/** /**
* This holds the UID or the URL of the document * This holds the UID or the URL of the document
* *
* @var mixed * @var mixed
* @access protected * @access protected
*/ */
protected $uid = 0; protected $uid = 0;
@ -337,7 +337,7 @@ final class Document {
/** /**
* This holds the whole XML file as \SimpleXMLElement object * This holds the whole XML file as \SimpleXMLElement object
* *
* @var \SimpleXMLElement * @var \SimpleXMLElement
* @access protected * @access protected
*/ */
protected $xml; protected $xml;

View File

@ -25,7 +25,7 @@ class DocumentList implements \ArrayAccess, \Countable, \Iterator, \TYPO3\CMS\Co
* This holds the number of documents in the list * This holds the number of documents in the list
* @see \Countable * @see \Countable
* *
* @var integer * @var integer
* @access protected * @access protected
*/ */
protected $count = 0; protected $count = 0;
@ -34,7 +34,7 @@ class DocumentList implements \ArrayAccess, \Countable, \Iterator, \TYPO3\CMS\Co
* This holds the list entries in sorted order * This holds the list entries in sorted order
* @see \ArrayAccess * @see \ArrayAccess
* *
* @var array * @var array
* @access protected * @access protected
*/ */
protected $elements = []; protected $elements = [];
@ -42,7 +42,7 @@ class DocumentList implements \ArrayAccess, \Countable, \Iterator, \TYPO3\CMS\Co
/** /**
* This holds the list's metadata * This holds the list's metadata
* *
* @var array * @var array
* @access protected * @access protected
*/ */
protected $metadata = []; protected $metadata = [];
@ -51,7 +51,7 @@ class DocumentList implements \ArrayAccess, \Countable, \Iterator, \TYPO3\CMS\Co
* This holds the current list position * This holds the current list position
* @see \Iterator * @see \Iterator
* *
* @var integer * @var integer
* @access protected * @access protected
*/ */
protected $position = 0; protected $position = 0;
@ -59,7 +59,7 @@ class DocumentList implements \ArrayAccess, \Countable, \Iterator, \TYPO3\CMS\Co
/** /**
* This holds the full records of already processed list elements * This holds the full records of already processed list elements
* *
* @var array * @var array
* @access protected * @access protected
*/ */
protected $records = []; protected $records = [];
@ -67,7 +67,7 @@ class DocumentList implements \ArrayAccess, \Countable, \Iterator, \TYPO3\CMS\Co
/** /**
* Instance of \Kitodo\Dlf\Common\Solr class * Instance of \Kitodo\Dlf\Common\Solr class
* *
* @var \Kitodo\Dlf\Common\Solr * @var \Kitodo\Dlf\Common\Solr
* @access protected * @access protected
*/ */
protected $solr; protected $solr;
@ -75,7 +75,7 @@ class DocumentList implements \ArrayAccess, \Countable, \Iterator, \TYPO3\CMS\Co
/** /**
* This holds the Solr metadata configuration * This holds the Solr metadata configuration
* *
* @var array * @var array
* @access protected * @access protected
*/ */
protected $solrConfig = []; protected $solrConfig = [];

View File

@ -24,7 +24,7 @@ class DocumentTypeCheck {
/** /**
* This holds the current document * This holds the current document
* *
* @var \Kitodo\Dlf\Common\Document * @var \Kitodo\Dlf\Common\Document
* @access protected * @access protected
*/ */
protected $doc; protected $doc;
@ -32,7 +32,7 @@ class DocumentTypeCheck {
/** /**
* This holds the extension key * This holds the extension key
* *
* @var string * @var string
* @access protected * @access protected
*/ */
protected $extKey = 'dlf'; protected $extKey = 'dlf';
@ -41,7 +41,7 @@ class DocumentTypeCheck {
* This holds the current DLF plugin parameters * This holds the current DLF plugin parameters
* @see __contruct() * @see __contruct()
* *
* @var array * @var array
* @access protected * @access protected
*/ */
protected $piVars = []; protected $piVars = [];
@ -49,7 +49,7 @@ class DocumentTypeCheck {
/** /**
* This holds the DLF parameter prefix * This holds the DLF parameter prefix
* *
* @var string * @var string
* @access protected * @access protected
*/ */
protected $prefixId = 'tx_dlf'; protected $prefixId = 'tx_dlf';

View File

@ -24,7 +24,7 @@ class Helper {
/** /**
* The extension key * The extension key
* *
* @var string * @var string
* @access public * @access public
*/ */
public static $extKey = 'dlf'; public static $extKey = 'dlf';
@ -32,7 +32,7 @@ class Helper {
/** /**
* The locallang array for flash messages * The locallang array for flash messages
* *
* @var array * @var array
* @access protected * @access protected
*/ */
protected static $messages = []; protected static $messages = [];
@ -53,7 +53,7 @@ class Helper {
/** /**
* Check if given identifier is a valid identifier of the German National Library * Check if given identifier is a valid identifier of the German National Library
* @see http://support.d-nb.de/iltis/onlineRoutinen/Pruefziffernberechnung.htm * @see http://support.d-nb.de/iltis/onlineRoutinen/Pruefziffernberechnung.htm
* *
* @access public * @access public
* *
@ -479,7 +479,7 @@ class Helper {
/** /**
* Get the URN of an object * Get the URN of an object
* @see http://www.persistent-identifier.de/?link=316 * @see http://www.persistent-identifier.de/?link=316
* *
* @access public * @access public
* *

View File

@ -23,7 +23,7 @@ class Indexer {
/** /**
* The extension key * The extension key
* *
* @var string * @var string
* @access public * @access public
*/ */
public static $extKey = 'dlf'; public static $extKey = 'dlf';
@ -32,7 +32,7 @@ class Indexer {
* Array of metadata fields' configuration * Array of metadata fields' configuration
* @see loadIndexConf() * @see loadIndexConf()
* *
* @var array * @var array
* @access protected * @access protected
*/ */
protected static $fields = [ protected static $fields = [
@ -49,7 +49,7 @@ class Indexer {
* Is the index configuration loaded? * Is the index configuration loaded?
* @see $fields * @see $fields
* *
* @var boolean * @var boolean
* @access protected * @access protected
*/ */
protected static $fieldsLoaded = FALSE; protected static $fieldsLoaded = FALSE;
@ -57,7 +57,7 @@ class Indexer {
/** /**
* List of already processed documents * List of already processed documents
* *
* @var array * @var array
* @access protected * @access protected
*/ */
protected static $processedDocs = []; protected static $processedDocs = [];
@ -65,7 +65,7 @@ class Indexer {
/** /**
* Instance of \Kitodo\Dlf\Common\Solr class * Instance of \Kitodo\Dlf\Common\Solr class
* *
* @var \Kitodo\Dlf\Common\Solr * @var \Kitodo\Dlf\Common\Solr
* @access protected * @access protected
*/ */
protected static $solr; protected static $solr;

View File

@ -24,7 +24,7 @@ class Solr {
/** /**
* This holds the core name * This holds the core name
* *
* @var string * @var string
* @access protected * @access protected
*/ */
protected $core = ''; protected $core = '';
@ -32,7 +32,7 @@ class Solr {
/** /**
* This holds the PID for the configuration * This holds the PID for the configuration
* *
* @var integer * @var integer
* @access protected * @access protected
*/ */
protected $cPid = 0; protected $cPid = 0;
@ -40,7 +40,7 @@ class Solr {
/** /**
* The extension key * The extension key
* *
* @var string * @var string
* @access public * @access public
*/ */
public static $extKey = 'dlf'; public static $extKey = 'dlf';
@ -48,7 +48,7 @@ class Solr {
/** /**
* This holds the max results * This holds the max results
* *
* @var integer * @var integer
* @access protected * @access protected
*/ */
protected $limit = 50000; protected $limit = 50000;
@ -56,7 +56,7 @@ class Solr {
/** /**
* This holds the number of hits for last search * This holds the number of hits for last search
* *
* @var integer * @var integer
* @access protected * @access protected
*/ */
protected $numberOfHits = 0; protected $numberOfHits = 0;
@ -64,7 +64,7 @@ class Solr {
/** /**
* This holds the additional query parameters * This holds the additional query parameters
* *
* @var array * @var array
* @access protected * @access protected
*/ */
protected $params = []; protected $params = [];
@ -72,7 +72,7 @@ class Solr {
/** /**
* Is the search instantiated successfully? * Is the search instantiated successfully?
* *
* @var boolean * @var boolean
* @access protected * @access protected
*/ */
protected $ready = FALSE; protected $ready = FALSE;
@ -80,7 +80,7 @@ class Solr {
/** /**
* This holds the singleton search objects with their core as array key * This holds the singleton search objects with their core as array key
* *
* @var array (\Kitodo\Dlf\Common\Solr) * @var array (\Kitodo\Dlf\Common\Solr)
* @access protected * @access protected
*/ */
protected static $registry = []; protected static $registry = [];
@ -88,7 +88,7 @@ class Solr {
/** /**
* This holds the Solr service object * This holds the Solr service object
* *
* @var \Solarium\Client * @var \Solarium\Client
* @access protected * @access protected
*/ */
protected $service; protected $service;

View File

@ -26,7 +26,7 @@ class ConfigurationForm {
/** /**
* This holds the current configuration * This holds the current configuration
* *
* @var array * @var array
* @access protected * @access protected
*/ */
protected $conf = []; protected $conf = [];
@ -34,7 +34,7 @@ class ConfigurationForm {
/** /**
* This holds the output ready to return * This holds the output ready to return
* *
* @var string * @var string
* @access protected * @access protected
*/ */
protected $content = ''; protected $content = '';

View File

@ -25,7 +25,7 @@ class AudioPlayer extends \Kitodo\Dlf\Common\AbstractPlugin {
/** /**
* Holds the current audio file's URL, MIME type and optional label * Holds the current audio file's URL, MIME type and optional label
* *
* @var array * @var array
* @access protected * @access protected
*/ */
protected $audio = []; protected $audio = [];
@ -44,22 +44,20 @@ class AudioPlayer extends \Kitodo\Dlf\Common\AbstractPlugin {
$output[] = '<script type="text/javascript" src="'.\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::siteRelPath($this->extKey).'Resources/Public/Javascript/AudioPlayer/AudioPlayer.js"></script>'; $output[] = '<script type="text/javascript" src="'.\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::siteRelPath($this->extKey).'Resources/Public/Javascript/AudioPlayer/AudioPlayer.js"></script>';
// Add player configuration. // Add player configuration.
$output[] = ' $output[] = '
<style> <style>#tx-dlf-audio { width: 100px; height: 100px; }</style>
#tx-dlf-audio { width: 100px; height: 100px }; <script id="tx-dlf-audioplayer-initViewer" type="text/javascript">
</style> $(document).ready(function() {
<script id="tx-dlf-audioplayer-initViewer" type="text/javascript"> AudioPlayer = new dlfAudioPlayer({
$(document).ready(function() { audio: {
AudioPlayer = new dlfAudioPlayer({ mimeType: "'.$this->audio['mimetype'].'",
audio: { title: "'.$this->audio['label'].'",
mimeType: "' . $this->audio['mimetype'].'", url: "'.$this->audio['url'].'"
title: "' . $this->audio['label'].'", },
url: "' . $this->audio['url'].'" parentElId: "tx-dlf-audio",
}, swfPath: "'.\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::siteRelPath($this->extKey).'Resources/Public/Javascript/jPlayer/jquery.jplayer.swf"
parentElId: "tx-dlf-audio", });
swfPath: "'.\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::siteRelPath($this->extKey).'Resources/Public/Javascript/jPlayer/jquery.jplayer.swf" });
}); </script>';
});
</script>';
return implode("\n", $output); return implode("\n", $output);
} }

View File

@ -155,13 +155,13 @@ class Basket extends \Kitodo\Dlf\Common\AbstractPlugin {
$markerArray['###MAILACTION###'] = $mailForm; $markerArray['###MAILACTION###'] = $mailForm;
// remove action form // remove action form
$markerArray['###REMOVEACTION###'] = ' $markerArray['###REMOVEACTION###'] = '
<select name="tx_dlf[basket_action]"> <select name="tx_dlf[basket_action]">
<option value="">'.$this->pi_getLL('chooseAction', '', TRUE).'</option> <option value="">'.$this->pi_getLL('chooseAction', '', TRUE).'</option>
<option value="open">'.$this->pi_getLL('download', '', TRUE).'</option> <option value="open">'.$this->pi_getLL('download', '', TRUE).'</option>
<option value="remove">'.$this->pi_getLL('remove', '', TRUE).'</option> <option value="remove">'.$this->pi_getLL('remove', '', TRUE).'</option>
</select> </select>
<input type="submit"> <input type="submit">
'; ';
// get mail addresses // get mail addresses
$resultPrinter = $GLOBALS['TYPO3_DB']->exec_SELECTquery( $resultPrinter = $GLOBALS['TYPO3_DB']->exec_SELECTquery(
'*', '*',
@ -330,14 +330,14 @@ class Basket extends \Kitodo\Dlf\Common\AbstractPlugin {
if ($this->conf['pregeneration']) { if ($this->conf['pregeneration']) {
// send ajax request to webapp // send ajax request to webapp
$output .= ' $output .= '
<script> <script>
$(document).ready(function(){ $(document).ready(function(){
$.ajax({ $.ajax({
url: "'.$pdfGenerateUrl.'", url: "'.$pdfGenerateUrl.'",
}).done(function() { }).done(function() {
}); });
}); });
</script>'; </script>';
} }
} }
$update = ['doc_ids' => json_encode($items)]; $update = ['doc_ids' => json_encode($items)];
@ -463,7 +463,7 @@ class Basket extends \Kitodo\Dlf\Common\AbstractPlugin {
return [ return [
'downloadUrl' => $downloadUrl, 'downloadUrl' => $downloadUrl,
'downloadLink' => $downloadLink, 'downloadLink' => $downloadLink,
'pageNums' => $pageNums, 'pageNums' => $pageNums,
'urlParams' => $urlParams, 'urlParams' => $urlParams,
'record_id' => $document->recordId, 'record_id' => $document->recordId,
]; ];

View File

@ -78,7 +78,7 @@ class Calendar extends \Kitodo\Dlf\Common\AbstractPlugin {
'year' => $resArray['year'] 'year' => $resArray['year']
]; ];
} }
// We need an array of issues with month number as key. // We need an array of issues with month number as key.
$calendarIssues = []; $calendarIssues = [];
foreach ($issues as $issue) { foreach ($issues as $issue) {
$calendarIssues[date('n', strtotime($issue['year']))][date('j', strtotime($issue['year']))][] = $issue; $calendarIssues[date('n', strtotime($issue['year']))][date('j', strtotime($issue['year']))][] = $issue;
@ -101,7 +101,7 @@ class Calendar extends \Kitodo\Dlf\Common\AbstractPlugin {
'###DAYFRI_NAME###' => strftime('%a', strtotime('last Friday')), '###DAYFRI_NAME###' => strftime('%a', strtotime('last Friday')),
'###DAYSAT_NAME###' => strftime('%a', strtotime('last Saturday')), '###DAYSAT_NAME###' => strftime('%a', strtotime('last Saturday')),
'###DAYSUN_NAME###' => strftime('%a', strtotime('last Sunday')), '###DAYSUN_NAME###' => strftime('%a', strtotime('last Sunday')),
'###MONTHNAME###' => strftime('%B', strtotime($year.'-'.($i + 1).'-1')) '###MONTHNAME###' => strftime('%B', strtotime($year.'-'.($i + 1).'-1'))
]; ];
// Reset week content of new month. // Reset week content of new month.
$subWeekPartContent = ''; $subWeekPartContent = '';

View File

@ -29,7 +29,7 @@ class Collection extends \Kitodo\Dlf\Common\AbstractPlugin {
/** /**
* This holds the hook objects * This holds the hook objects
* *
* @var array * @var array
* @access protected * @access protected
*/ */
protected $hookObjects = []; protected $hookObjects = [];

View File

@ -66,7 +66,7 @@ class ListView extends \Kitodo\Dlf\Common\AbstractPlugin {
* *
* @access protected * @access protected
* *
* @return string The rendered page browser ready for output * @return string The rendered page browser ready for output
*/ */
protected function getPageBrowser() { protected function getPageBrowser() {
// Get overall number of pages. // Get overall number of pages.

View File

@ -29,7 +29,7 @@ class Metadata extends \Kitodo\Dlf\Common\AbstractPlugin {
/** /**
* This holds the hook objects * This holds the hook objects
* *
* @var array * @var array
* @access protected * @access protected
*/ */
protected $hookObjects = []; protected $hookObjects = [];
@ -151,7 +151,7 @@ class Metadata extends \Kitodo\Dlf\Common\AbstractPlugin {
if ($resArray) { if ($resArray) {
// get correct language uid for translated realurl link // get correct language uid for translated realurl link
$link_uid = ($resArray['_LOCALIZED_UID']) ? $resArray['_LOCALIZED_UID'] : $resArray['uid']; $link_uid = ($resArray['_LOCALIZED_UID']) ? $resArray['_LOCALIZED_UID'] : $resArray['uid'];
// do stuff with the row entry data like built HTML or prepare further usage // do stuff with the row entry data like built HTML or prepare further usage
if ($this->conf['showFull'] || $resArray['is_listed']) { if ($this->conf['showFull'] || $resArray['is_listed']) {
$metaList[$resArray['index_name']] = [ $metaList[$resArray['index_name']] = [
'wrap' => $resArray['wrap'], 'wrap' => $resArray['wrap'],

View File

@ -18,10 +18,10 @@ use Kitodo\Dlf\Common\Solr;
/** /**
* Plugin 'OAI-PMH Interface' for the 'dlf' extension * Plugin 'OAI-PMH Interface' for the 'dlf' extension
* *
* @author Sebastian Meyer <sebastian.meyer@slub-dresden.de> * @author Sebastian Meyer <sebastian.meyer@slub-dresden.de>
* @package TYPO3 * @package TYPO3
* @subpackage dlf * @subpackage dlf
* @access public * @access public
*/ */
class OaiPmh extends \Kitodo\Dlf\Common\AbstractPlugin { class OaiPmh extends \Kitodo\Dlf\Common\AbstractPlugin {
public $scriptRelPath = 'Classes/Plugins/OaiPmh.php'; public $scriptRelPath = 'Classes/Plugins/OaiPmh.php';
@ -29,7 +29,7 @@ class OaiPmh extends \Kitodo\Dlf\Common\AbstractPlugin {
/** /**
* Did an error occur? * Did an error occur?
* *
* @var boolean * @var boolean
* @access protected * @access protected
*/ */
protected $error = FALSE; protected $error = FALSE;
@ -37,7 +37,7 @@ class OaiPmh extends \Kitodo\Dlf\Common\AbstractPlugin {
/** /**
* This holds the OAI DOM object * This holds the OAI DOM object
* *
* @var \DOMDocument * @var \DOMDocument
* @access protected * @access protected
*/ */
protected $oai; protected $oai;
@ -45,7 +45,7 @@ class OaiPmh extends \Kitodo\Dlf\Common\AbstractPlugin {
/** /**
* This holds the configuration for all supported metadata prefixes * This holds the configuration for all supported metadata prefixes
* *
* @var array * @var array
* @access protected * @access protected
*/ */
protected $formats = [ protected $formats = [

View File

@ -25,7 +25,7 @@ class PageView extends \Kitodo\Dlf\Common\AbstractPlugin {
/** /**
* Holds the controls to add to the map * Holds the controls to add to the map
* *
* @var array * @var array
* @access protected * @access protected
*/ */
protected $controls = []; protected $controls = [];
@ -33,7 +33,7 @@ class PageView extends \Kitodo\Dlf\Common\AbstractPlugin {
/** /**
* Holds the current images' URLs and MIME types * Holds the current images' URLs and MIME types
* *
* @var array * @var array
* @access protected * @access protected
*/ */
protected $images = []; protected $images = [];
@ -41,7 +41,7 @@ class PageView extends \Kitodo\Dlf\Common\AbstractPlugin {
/** /**
* Holds the current fulltexts' URLs * Holds the current fulltexts' URLs
* *
* @var array * @var array
* @access protected * @access protected
*/ */
protected $fulltexts = []; protected $fulltexts = [];
@ -70,19 +70,19 @@ class PageView extends \Kitodo\Dlf\Common\AbstractPlugin {
$output[] = '<script type="text/javascript" src="'.\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::siteRelPath($this->extKey).'Resources/Public/Javascript/PageView/PageView.js"></script>'; $output[] = '<script type="text/javascript" src="'.\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::siteRelPath($this->extKey).'Resources/Public/Javascript/PageView/PageView.js"></script>';
// Add viewer configuration. // Add viewer configuration.
$output[] = ' $output[] = '
<script id="tx-dlf-pageview-initViewer" type="text/javascript"> <script id="tx-dlf-pageview-initViewer" type="text/javascript">
window.onload = function() { $(document).ready(function() {
if (dlfUtils.exists(dlfViewer)) { if (dlfUtils.exists(dlfViewer)) {
tx_dlf_viewer = new dlfViewer({ tx_dlf_viewer = new dlfViewer({
controls: ["'.implode('", "', $this->controls).'"], controls: ["'.implode('", "', $this->controls).'"],
div: "'.$this->conf['elementId'].'", div: "'.$this->conf['elementId'].'",
images: '.json_encode($this->images).', images: '.json_encode($this->images).',
fulltexts: '.json_encode($this->fulltexts).', fulltexts: '.json_encode($this->fulltexts).',
useInternalProxy: '.($this->conf['useInternalProxy'] ? 1 : 0).' useInternalProxy: '.($this->conf['useInternalProxy'] ? 1 : 0).'
}) });
} }
} });
</script>'; </script>';
return implode("\n", $output); return implode("\n", $output);
} }
@ -150,12 +150,7 @@ class PageView extends \Kitodo\Dlf\Common\AbstractPlugin {
$output .= '<button id="submitBasketForm" onclick="this.form.submit()">'.$label.'</button>'; $output .= '<button id="submitBasketForm" onclick="this.form.submit()">'.$label.'</button>';
$output .= '</form>'; $output .= '</form>';
$output .= '<script>'; $output .= '<script>';
$output .= ' $output .= '$(document).ready(function() { $("#submitBasketForm").click(function() { $("#addToBasketForm").submit(); }); });';
$(document).ready(function() {
$("#submitBasketForm").click(function() {
$("#addToBasketForm").submit();
});
});';
$output .= '</script>'; $output .= '</script>';
$markerArray['###BASKETBUTTON###'] = $output; $markerArray['###BASKETBUTTON###'] = $output;
} else { } else {

View File

@ -27,7 +27,7 @@ class TableOfContents extends \Kitodo\Dlf\Common\AbstractPlugin {
/** /**
* This holds the active entries according to the currently selected page * This holds the active entries according to the currently selected page
* *
* @var array * @var array
* @access protected * @access protected
*/ */
protected $activeEntries = []; protected $activeEntries = [];

View File

@ -9,12 +9,12 @@ Installation instructions
See also: https://wiki.apache.org/solr/SolrTomcat See also: https://wiki.apache.org/solr/SolrTomcat
1. Make sure you have Apache Solr 7.4 up and running. Download Solr 1. Make sure you have Apache Solr 7.4 up and running. Download Solr
from http://lucene.apache.org/solr/. Other versions since 5.0 should be possible but are not tested. from http://lucene.apache.org/solr/. Other versions since 5.0 should be possible but are not tested.
2. Copy the Configuration/ApacheSolr/configsets/dlf to $SOLR_HOME/configsets/dlf. 2. Copy the Configuration/ApacheSolr/configsets/dlf to $SOLR_HOME/configsets/dlf.
3. Using basic authentication is optional but recommended. The documentation is available here: 3. Using basic authentication is optional but recommended. The documentation is available here:
https://lucene.apache.org/solr/guide/7_4/basic-authentication-plugin.html https://lucene.apache.org/solr/guide/7_4/basic-authentication-plugin.html
Update instructions Update instructions
------------------- -------------------

View File

@ -7,7 +7,7 @@ The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with (the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0 http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS, distributed under the License is distributed on an "AS IS" BASIS,
@ -16,157 +16,157 @@ See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
--> -->
<schema name="dlf" version="3.0"> <schema name="dlf" version="3.0">
<types> <types>
<fieldType name="string" class="solr.StrField" sortMissingLast="true" /> <fieldType name="string" class="solr.StrField" sortMissingLast="true" />
<fieldType name="boolean" class="solr.BoolField" sortMissingLast="true" /> <fieldType name="boolean" class="solr.BoolField" sortMissingLast="true" />
<fieldType name="int" class="solr.IntPointField" positionIncrementGap="0"/> <fieldType name="int" class="solr.IntPointField" positionIncrementGap="0"/>
<!-- Use dates of the form 1995-12-31Z23:59:49Z for this field. --> <!-- Use dates of the form 1995-12-31Z23:59:49Z for this field. -->
<fieldType name="date" class="solr.DatePointField" positionIncrementGap="0"/> <fieldType name="date" class="solr.DatePointField" positionIncrementGap="0"/>
<fieldType name="standard" class="solr.TextField" positionIncrementGap="100"> <fieldType name="standard" class="solr.TextField" positionIncrementGap="100">
<analyzer> <analyzer>
<tokenizer class="solr.StandardTokenizerFactory" /> <tokenizer class="solr.StandardTokenizerFactory" />
<filter class="solr.StandardFilterFactory" /> <filter class="solr.StandardFilterFactory" />
<filter class="solr.LowerCaseFilterFactory" /> <filter class="solr.LowerCaseFilterFactory" />
</analyzer> </analyzer>
</fieldType> </fieldType>
<fieldType name="autocomplete" class="solr.TextField" positionIncrementGap="100"> <fieldType name="autocomplete" class="solr.TextField" positionIncrementGap="100">
<analyzer type="index"> <analyzer type="index">
<tokenizer class="solr.KeywordTokenizerFactory" /> <tokenizer class="solr.KeywordTokenizerFactory" />
<filter class="solr.LowerCaseFilterFactory" /> <filter class="solr.LowerCaseFilterFactory" />
</analyzer> </analyzer>
<analyzer type="query"> <analyzer type="query">
<tokenizer class="solr.WhitespaceTokenizerFactory" /> <tokenizer class="solr.WhitespaceTokenizerFactory" />
<filter class="solr.LowerCaseFilterFactory" /> <filter class="solr.LowerCaseFilterFactory" />
</analyzer> </analyzer>
</fieldType> </fieldType>
<fieldType name="fulltext" class="solr.TextField" positionIncrementGap="100"> <fieldType name="fulltext" class="solr.TextField" positionIncrementGap="100">
<analyzer type="index"> <analyzer type="index">
<tokenizer class="solr.WhitespaceTokenizerFactory" /> <tokenizer class="solr.WhitespaceTokenizerFactory" />
<filter class="solr.FlattenGraphFilterFactory"/> <filter class="solr.FlattenGraphFilterFactory"/>
<filter class="solr.StopFilterFactory" ignoreCase="true" words="stopwords.txt" /> <filter class="solr.StopFilterFactory" ignoreCase="true" words="stopwords.txt" />
<!-- For more precise, but less flexible matching, set generateWordParts="0" and generateNumberParts="0". --> <!-- For more precise, but less flexible matching, set generateWordParts="0" and generateNumberParts="0". -->
<filter class="solr.WordDelimiterGraphFilterFactory" generateWordParts="1" generateNumberParts="1" catenateWords="1" catenateNumbers="1" catenateAll="0" splitOnCaseChange="1" /> <filter class="solr.WordDelimiterGraphFilterFactory" generateWordParts="1" generateNumberParts="1" catenateWords="1" catenateNumbers="1" catenateAll="0" splitOnCaseChange="1" />
<filter class="solr.ReversedWildcardFilterFactory" withOriginal="true" maxPosAsterisk="3" maxPosQuestion="2" maxFractionAsterisk="0.33" /> <filter class="solr.ReversedWildcardFilterFactory" withOriginal="true" maxPosAsterisk="3" maxPosQuestion="2" maxFractionAsterisk="0.33" />
<filter class="solr.LowerCaseFilterFactory" /> <filter class="solr.LowerCaseFilterFactory" />
<filter class="solr.TrimFilterFactory" /> <filter class="solr.TrimFilterFactory" />
<filter class="solr.SnowballPorterFilterFactory" language="German" protected="protwords.txt" /> <filter class="solr.SnowballPorterFilterFactory" language="German" protected="protwords.txt" />
<!-- <filter class="solr.GermanStemFilterFactory" /> --> <!-- <filter class="solr.GermanStemFilterFactory" /> -->
<filter class="solr.RemoveDuplicatesTokenFilterFactory" /> <filter class="solr.RemoveDuplicatesTokenFilterFactory" />
<!-- <filter class="solr.PatternReplaceFilterFactory" pattern="([^a-z])" replacement="" replace="all" /> --> <!-- <filter class="solr.PatternReplaceFilterFactory" pattern="([^a-z])" replacement="" replace="all" /> -->
</analyzer> </analyzer>
<analyzer type="query"> <analyzer type="query">
<tokenizer class="solr.WhitespaceTokenizerFactory" /> <tokenizer class="solr.WhitespaceTokenizerFactory" />
<filter class="solr.SynonymGraphFilterFactory" synonyms="synonyms.txt" ignoreCase="true" expand="true" /> <filter class="solr.SynonymGraphFilterFactory" synonyms="synonyms.txt" ignoreCase="true" expand="true" />
<filter class="solr.StopFilterFactory" ignoreCase="true" words="stopwords.txt" /> <filter class="solr.StopFilterFactory" ignoreCase="true" words="stopwords.txt" />
<!-- For more precise, but less flexible matching, set generateWordParts="0" and generateNumberParts="0". --> <!-- For more precise, but less flexible matching, set generateWordParts="0" and generateNumberParts="0". -->
<filter class="solr.WordDelimiterGraphFilterFactory" generateWordParts="1" generateNumberParts="1" catenateWords="0" catenateNumbers="0" catenateAll="0" splitOnCaseChange="1" /> <filter class="solr.WordDelimiterGraphFilterFactory" generateWordParts="1" generateNumberParts="1" catenateWords="0" catenateNumbers="0" catenateAll="0" splitOnCaseChange="1" />
<filter class="solr.LowerCaseFilterFactory" /> <filter class="solr.LowerCaseFilterFactory" />
<filter class="solr.TrimFilterFactory" /> <filter class="solr.TrimFilterFactory" />
<filter class="solr.SnowballPorterFilterFactory" language="German" protected="protwords.txt" /> <filter class="solr.SnowballPorterFilterFactory" language="German" protected="protwords.txt" />
<!-- <filter class="solr.GermanStemFilterFactory" /> --> <!-- <filter class="solr.GermanStemFilterFactory" /> -->
<filter class="solr.RemoveDuplicatesTokenFilterFactory" /> <filter class="solr.RemoveDuplicatesTokenFilterFactory" />
<!-- <filter class="solr.PatternReplaceFilterFactory" pattern="([^a-z])" replacement="" replace="all" /> --> <!-- <filter class="solr.PatternReplaceFilterFactory" pattern="([^a-z])" replacement="" replace="all" /> -->
</analyzer> </analyzer>
</fieldType> </fieldType>
</types> </types>
<fields> <fields>
<!-- <!--
Valid attributes for fields: Valid attributes for fields:
name: mandatory - the name for the field name: mandatory - the name for the field
type: mandatory - the name of a previously defined type from the type: mandatory - the name of a previously defined type from the
<types> section <types> section
indexed: true if this field should be indexed (searchable or sortable) indexed: true if this field should be indexed (searchable or sortable)
stored: true if this field should be retrievable stored: true if this field should be retrievable
multiValued: true if this field may contain multiple values per document multiValued: true if this field may contain multiple values per document
omitNorms: (expert) set to true to omit the norms associated with omitNorms: (expert) set to true to omit the norms associated with
this field (this disables length normalization and index-time this field (this disables length normalization and index-time
boosting for the field, and saves some memory). Only full-text boosting for the field, and saves some memory). Only full-text
fields or fields that need an index-time boost need norms. fields or fields that need an index-time boost need norms.
omitNorms defaults to true for primitive field types since Solr 1.2. omitNorms defaults to true for primitive field types since Solr 1.2.
termVectors: [false] set to true to store the term vector for a given field. termVectors: [false] set to true to store the term vector for a given field.
When using MoreLikeThis, fields used for similarity should be When using MoreLikeThis, fields used for similarity should be
stored for best performance. stored for best performance.
termPositions: Store position information with the term vector. termPositions: Store position information with the term vector.
This will increase storage costs. This will increase storage costs.
termOffsets: Store offset information with the term vector. This termOffsets: Store offset information with the term vector. This
will increase storage costs. will increase storage costs.
default: a value that should be used if no value is specified default: a value that should be used if no value is specified
when adding a document. when adding a document.
required: true if this field is mandatory required: true if this field is mandatory
--> -->
<!-- The mandatory and special fields are defined here, all other fields are dynamic fields. --> <!-- The mandatory and special fields are defined here, all other fields are dynamic fields. -->
<!-- Unique identifier for the document in the index. --> <!-- Unique identifier for the document in the index. -->
<field name="id" type="string" indexed="true" stored="true" required="true" /> <field name="id" type="string" indexed="true" stored="true" required="true" />
<!-- Unique identifier for the document (or its top-level parent) in the TYPO3 database. --> <!-- Unique identifier for the document (or its top-level parent) in the TYPO3 database. -->
<field name="uid" type="int" indexed="true" stored="true" required="true" default="0" docValues="true"/> <field name="uid" type="int" indexed="true" stored="true" required="true" default="0" docValues="true"/>
<!-- PageID for the document (or its top-level parent) in the TYPO3 database. --> <!-- PageID for the document (or its top-level parent) in the TYPO3 database. -->
<field name="pid" type="int" indexed="true" stored="false" required="true" default="0" /> <field name="pid" type="int" indexed="true" stored="false" required="true" default="0" />
<!-- Image number where this document starts. --> <!-- Image number where this document starts. -->
<field name="page" type="int" indexed="false" stored="true" required="true" default="0" /> <field name="page" type="int" indexed="false" stored="true" required="true" default="0" />
<!-- Unique identifier for the parent document in the TYPO3 database. Only if this is a multi-volume work! --> <!-- Unique identifier for the parent document in the TYPO3 database. Only if this is a multi-volume work! -->
<field name="partof" type="int" indexed="true" stored="true" required="true" default="0" /> <field name="partof" type="int" indexed="true" stored="true" required="true" default="0" />
<!-- Unique identifier for the root document in the TYPO3 database. Only if this is a multi-volume work! --> <!-- Unique identifier for the root document in the TYPO3 database. Only if this is a multi-volume work! -->
<field name="root" type="int" indexed="true" stored="true" required="true" default="0" /> <field name="root" type="int" indexed="true" stored="true" required="true" default="0" />
<!-- XML ID of this document in the METS file. This is only unique within the METS file! --> <!-- XML ID of this document in the METS file. This is only unique within the METS file! -->
<field name="sid" type="string" indexed="false" stored="true" required="true" default="" /> <field name="sid" type="string" indexed="false" stored="true" required="true" default="" />
<!-- If it is a top-level document, leave this as default "true". --> <!-- If it is a top-level document, leave this as default "true". -->
<field name="toplevel" type="boolean" indexed="true" stored="true" required="true" default="true" /> <field name="toplevel" type="boolean" indexed="true" stored="true" required="true" default="true" />
<!-- Type of document (eg. monograph, chapter, etc.) --> <!-- Type of document (eg. monograph, chapter, etc.) -->
<field name="type" type="string" indexed="true" stored="true" required="true" default="" /> <field name="type" type="string" indexed="true" stored="true" required="true" default="" />
<!-- Next two fields are mandatory for identifying documents. --> <!-- Next two fields are mandatory for identifying documents. -->
<field name="title" type="standard" indexed="true" stored="true" multiValued="false" default="" /> <field name="title" type="standard" indexed="true" stored="true" multiValued="false" default="" />
<field name="volume" type="standard" indexed="true" stored="true" multiValued="false" default="" /> <field name="volume" type="standard" indexed="true" stored="true" multiValued="false" default="" />
<!-- URL of thumbnail image for the document. --> <!-- URL of thumbnail image for the document. -->
<field name="thumbnail" type="string" indexed="false" stored="true" multiValued="false" default="" /> <field name="thumbnail" type="string" indexed="false" stored="true" multiValued="false" default="" />
<!-- CatchAll field. See <copyField> below. --> <!-- CatchAll field. See <copyField> below. -->
<field name="default" type="standard" indexed="true" stored="false" required="true" multiValued="true" default="" /> <field name="default" type="standard" indexed="true" stored="false" required="true" multiValued="true" default="" />
<field name="timestamp" type="date" indexed="true" stored="true" required="true" multiValued="false" default="NOW" /> <field name="timestamp" type="date" indexed="true" stored="true" required="true" multiValued="false" default="NOW" />
<!-- Autocomplete field for search form. --> <!-- Autocomplete field for search form. -->
<field name="autocomplete" type="autocomplete" indexed="true" stored="false" multiValued="true" /> <field name="autocomplete" type="autocomplete" indexed="true" stored="false" multiValued="true" />
<!-- Fulltext field for OCR results. --> <!-- Fulltext field for OCR results. -->
<field name="fulltext" type="fulltext" indexed="true" stored="true" multiValued="false" default="" termVectors="true" termPositions="true" termOffsets="true" /> <field name="fulltext" type="fulltext" indexed="true" stored="true" multiValued="false" default="" termVectors="true" termPositions="true" termOffsets="true" />
<!-- Record ID of the document (required for OAI_DC output). --> <!-- Record ID of the document (required for OAI_DC output). -->
<field name="record_id" type="string" indexed="true" stored="true" required="true" multiValued="false" default="" /> <field name="record_id" type="string" indexed="true" stored="true" required="true" multiValued="false" default="" />
<!-- Permanent URL of the document (required for EPICUR output). --> <!-- Permanent URL of the document (required for EPICUR output). -->
<field name="purl" type="string" indexed="true" stored="true" required="true" multiValued="false" default="" /> <field name="purl" type="string" indexed="true" stored="true" required="true" multiValued="false" default="" />
<!-- URN of the Document (required for EPICUR output). --> <!-- URN of the Document (required for EPICUR output). -->
<field name="urn" type="string" indexed="true" stored="true" required="true" multiValued="false" default="" /> <field name="urn" type="string" indexed="true" stored="true" required="true" multiValued="false" default="" />
<!-- Location of METS XML (required for METS output). --> <!-- Location of METS XML (required for METS output). -->
<field name="location" type="string" indexed="true" stored="true" required="true" multiValued="false" default="" /> <field name="location" type="string" indexed="true" stored="true" required="true" multiValued="false" default="" />
<!-- Associated collection(s) of the document. --> <!-- Associated collection(s) of the document. -->
<field name="collection" type="string" indexed="true" stored="true" required="true" multiValued="true" default="" /> <field name="collection" type="string" indexed="true" stored="true" required="true" multiValued="true" default="" />
<!-- <!--
The following dynamic fields define all possible field variants. The following dynamic fields define all possible field variants.
The mapping between metadata fields and index fields is defined in TYPO3. The mapping between metadata fields and index fields is defined in TYPO3.
--> -->
<!-- tokenized, stored, indexed --> <!-- tokenized, stored, indexed -->
<dynamicField name="*_tsi" type="standard" stored="true" indexed="true" multiValued="true" /> <dynamicField name="*_tsi" type="standard" stored="true" indexed="true" multiValued="true" />
<!-- tokenized, stored, unindexed --> <!-- tokenized, stored, unindexed -->
<dynamicField name="*_tsu" type="standard" stored="true" indexed="false" multiValued="true" /> <dynamicField name="*_tsu" type="standard" stored="true" indexed="false" multiValued="true" />
<!-- tokenized, unstored, indexed --> <!-- tokenized, unstored, indexed -->
<dynamicField name="*_tui" type="standard" stored="false" indexed="true" multiValued="true" /> <dynamicField name="*_tui" type="standard" stored="false" indexed="true" multiValued="true" />
<!-- tokenized, unstored, unindexed (this is ignored by Lucene) --> <!-- tokenized, unstored, unindexed (this is ignored by Lucene) -->
<dynamicField name="*_tuu" type="standard" stored="false" indexed="false" multiValued="true" /> <dynamicField name="*_tuu" type="standard" stored="false" indexed="false" multiValued="true" />
<!-- untokenized, stored, indexed --> <!-- untokenized, stored, indexed -->
<dynamicField name="*_usi" type="string" stored="true" indexed="true" multiValued="true" /> <dynamicField name="*_usi" type="string" stored="true" indexed="true" multiValued="true" />
<!-- untokenized, stored, unindexed --> <!-- untokenized, stored, unindexed -->
<dynamicField name="*_usu" type="string" stored="true" indexed="false" multiValued="true" /> <dynamicField name="*_usu" type="string" stored="true" indexed="false" multiValued="true" />
<!-- untokenized, unstored, indexed --> <!-- untokenized, unstored, indexed -->
<dynamicField name="*_uui" type="string" stored="false" indexed="true" multiValued="true" /> <dynamicField name="*_uui" type="string" stored="false" indexed="true" multiValued="true" />
<!-- untokenized, unstored, unindexed (this is ignored by Lucene) --> <!-- untokenized, unstored, unindexed (this is ignored by Lucene) -->
<dynamicField name="*_uuu" type="string" stored="false" indexed="false" multiValued="true" /> <dynamicField name="*_uuu" type="string" stored="false" indexed="false" multiValued="true" />
<!-- "*_faceting" and "*_sorting" should always be used in addition to one of the other fields. --> <!-- "*_faceting" and "*_sorting" should always be used in addition to one of the other fields. -->
<dynamicField name="*_faceting" type="string" stored="false" indexed="true" multiValued="true" /> <dynamicField name="*_faceting" type="string" stored="false" indexed="true" multiValued="true" />
<dynamicField name="*_sorting" type="standard" stored="true" indexed="true" multiValued="false" /> <dynamicField name="*_sorting" type="standard" stored="true" indexed="true" multiValued="false" />
</fields> </fields>
<uniqueKey>id</uniqueKey> <uniqueKey>id</uniqueKey>
<copyField source="*_tsi" dest="default" /> <copyField source="*_tsi" dest="default" />
<copyField source="*_tui" dest="default" /> <copyField source="*_tui" dest="default" />
<copyField source="*_usi" dest="default" /> <copyField source="*_usi" dest="default" />
<copyField source="*_uui" dest="default" /> <copyField source="*_uui" dest="default" />
</schema> </schema>

View File

@ -800,18 +800,18 @@
</lst> </lst>
</requestHandler> </requestHandler>
--> -->
<!-- Autocomplete Handler --> <!-- Autocomplete Handler -->
<requestHandler name="/suggest" class="org.apache.solr.handler.component.SearchHandler"> <requestHandler name="/suggest" class="org.apache.solr.handler.component.SearchHandler">
<lst name="defaults"> <lst name="defaults">
<str name="spellcheck">true</str> <str name="spellcheck">true</str>
<str name="spellcheck.dictionary">suggest</str> <str name="spellcheck.dictionary">suggest</str>
<str name="spellcheck.count">10</str> <str name="spellcheck.count">10</str>
<str name="spellcheck.onlyMorePopular">true</str> <str name="spellcheck.onlyMorePopular">true</str>
</lst> </lst>
<arr name="components"> <arr name="components">
<str>suggest</str> <str>suggest</str>
</arr> </arr>
</requestHandler> </requestHandler>
<!-- Search Components <!-- Search Components
@ -856,17 +856,17 @@
--> -->
<!-- Autocomplete Component --> <!-- Autocomplete Component -->
<searchComponent name="suggest" class="solr.SpellCheckComponent"> <searchComponent name="suggest" class="solr.SpellCheckComponent">
<lst name="spellchecker"> <lst name="spellchecker">
<str name="name">suggest</str> <str name="name">suggest</str>
<str name="classname">org.apache.solr.spelling.suggest.Suggester</str> <str name="classname">org.apache.solr.spelling.suggest.Suggester</str>
<str name="lookupImpl">org.apache.solr.spelling.suggest.tst.TSTLookup</str> <str name="lookupImpl">org.apache.solr.spelling.suggest.tst.TSTLookup</str>
<str name="buildOnCommit">true</str> <str name="buildOnCommit">true</str>
<str name="field">autocomplete</str> <str name="field">autocomplete</str>
<str name="queryAnalyzerFieldType">autocomplete</str> <str name="queryAnalyzerFieldType">autocomplete</str>
</lst> </lst>
</searchComponent> </searchComponent>
<schemaFactory class="ClassicIndexSchemaFactory"/> <schemaFactory class="ClassicIndexSchemaFactory"/>

View File

@ -9,75 +9,75 @@
* LICENSE.txt file that was distributed with this source code. * LICENSE.txt file that was distributed with this source code.
--> -->
<T3DataStructure> <T3DataStructure>
<meta> <meta>
<langDisable>1</langDisable> <langDisable>1</langDisable>
</meta> </meta>
<sheets> <sheets>
<sDEF> <sDEF>
<ROOT> <ROOT>
<TCEforms> <TCEforms>
<sheetTitle>LLL:EXT:dlf/Resources/Private/Language/AudioPlayer.xml:tt_content.pi_flexform.sheet_general</sheetTitle> <sheetTitle>LLL:EXT:dlf/Resources/Private/Language/AudioPlayer.xml:tt_content.pi_flexform.sheet_general</sheetTitle>
</TCEforms> </TCEforms>
<type>array</type> <type>array</type>
<el> <el>
<pages> <pages>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:lang/locallang_general.xml:LGL.startingpoint</label> <label>LLL:EXT:lang/locallang_general.xml:LGL.startingpoint</label>
<config> <config>
<type>group</type> <type>group</type>
<internal_type>db</internal_type> <internal_type>db</internal_type>
<allowed>pages</allowed> <allowed>pages</allowed>
<size>1</size> <size>1</size>
<maxitems>1</maxitems> <maxitems>1</maxitems>
<minitems>1</minitems> <minitems>1</minitems>
<show_thumbs>1</show_thumbs> <show_thumbs>1</show_thumbs>
<wizards> <wizards>
<suggest> <suggest>
<type>suggest</type> <type>suggest</type>
</suggest> </suggest>
</wizards> </wizards>
</config> </config>
</TCEforms> </TCEforms>
</pages> </pages>
<excludeOther> <excludeOther>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/AudioPlayer.xml:tt_content.pi_flexform.excludeOther</label> <label>LLL:EXT:dlf/Resources/Private/Language/AudioPlayer.xml:tt_content.pi_flexform.excludeOther</label>
<config> <config>
<type>check</type> <type>check</type>
<default>1</default> <default>1</default>
</config> </config>
</TCEforms> </TCEforms>
</excludeOther> </excludeOther>
<elementId> <elementId>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/AudioPlayer.xml:tt_content.pi_flexform.elementId</label> <label>LLL:EXT:dlf/Resources/Private/Language/AudioPlayer.xml:tt_content.pi_flexform.elementId</label>
<config> <config>
<type>input</type> <type>input</type>
<eval>required,alphanum_x,nospace</eval> <eval>required,alphanum_x,nospace</eval>
<default>tx-dlf-audio</default> <default>tx-dlf-audio</default>
</config> </config>
</TCEforms> </TCEforms>
</elementId> </elementId>
<templateFile> <templateFile>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/AudioPlayer.xml:tt_content.pi_flexform.templateFile</label> <label>LLL:EXT:dlf/Resources/Private/Language/AudioPlayer.xml:tt_content.pi_flexform.templateFile</label>
<config> <config>
<type>group</type> <type>group</type>
<internal_type>file_reference</internal_type> <internal_type>file_reference</internal_type>
<allowed>tmpl,tpl,html,htm,txt</allowed> <allowed>tmpl,tpl,html,htm,txt</allowed>
<size>1</size> <size>1</size>
<maxitems>1</maxitems> <maxitems>1</maxitems>
<minitems>0</minitems> <minitems>0</minitems>
<disable_controls>upload</disable_controls> <disable_controls>upload</disable_controls>
</config> </config>
</TCEforms> </TCEforms>
</templateFile> </templateFile>
</el> </el>
</ROOT> </ROOT>
</sDEF> </sDEF>
</sheets> </sheets>
</T3DataStructure> </T3DataStructure>

View File

@ -9,32 +9,32 @@
* LICENSE.txt file that was distributed with this source code. * LICENSE.txt file that was distributed with this source code.
--> -->
<T3DataStructure> <T3DataStructure>
<meta> <meta>
<langDisable>1</langDisable> <langDisable>1</langDisable>
</meta> </meta>
<sheets> <sheets>
<sDEF> <sDEF>
<ROOT> <ROOT>
<TCEforms> <TCEforms>
<sheetTitle>LLL:EXT:dlf/Resources/Private/Language/Basket.xml:tt_content.pi_flexform.sheet_general</sheetTitle> <sheetTitle>LLL:EXT:dlf/Resources/Private/Language/Basket.xml:tt_content.pi_flexform.sheet_general</sheetTitle>
</TCEforms> </TCEforms>
<type>array</type> <type>array</type>
<el> <el>
<pages> <pages>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:lang/locallang_general.xml:LGL.startingpoint</label> <label>LLL:EXT:lang/locallang_general.xml:LGL.startingpoint</label>
<config> <config>
<type>group</type> <type>group</type>
<internal_type>db</internal_type> <internal_type>db</internal_type>
<allowed>pages</allowed> <allowed>pages</allowed>
<size>1</size> <size>1</size>
<maxitems>1</maxitems> <maxitems>1</maxitems>
<minitems>1</minitems> <minitems>1</minitems>
</config> </config>
</TCEforms> </TCEforms>
</pages> </pages>
<pregeneration> <pregeneration>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/Basket.xml:tt_content.pi_flexform.preGeneration</label> <label>LLL:EXT:dlf/Resources/Private/Language/Basket.xml:tt_content.pi_flexform.preGeneration</label>
@ -44,107 +44,107 @@
</config> </config>
</TCEforms> </TCEforms>
</pregeneration> </pregeneration>
<pdfgenerate> <pdfgenerate>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/Basket.xml:tt_content.pi_flexform.pdfGenerate</label> <label>LLL:EXT:dlf/Resources/Private/Language/Basket.xml:tt_content.pi_flexform.pdfGenerate</label>
<config> <config>
<type>input</type> <type>input</type>
<eval>required</eval> <eval>required</eval>
</config> </config>
</TCEforms> </TCEforms>
</pdfgenerate> </pdfgenerate>
<pdfdownload> <pdfdownload>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/Basket.xml:tt_content.pi_flexform.pdfDownload</label> <label>LLL:EXT:dlf/Resources/Private/Language/Basket.xml:tt_content.pi_flexform.pdfDownload</label>
<config> <config>
<type>input</type> <type>input</type>
<eval>required</eval> <eval>required</eval>
<default></default> <default></default>
</config> </config>
</TCEforms> </TCEforms>
</pdfdownload> </pdfdownload>
<pdfprint> <pdfprint>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/Basket.xml:tt_content.pi_flexform.pdfPrint</label> <label>LLL:EXT:dlf/Resources/Private/Language/Basket.xml:tt_content.pi_flexform.pdfPrint</label>
<config> <config>
<type>input</type> <type>input</type>
<eval>required</eval> <eval>required</eval>
<default></default> <default></default>
</config> </config>
</TCEforms> </TCEforms>
</pdfprint> </pdfprint>
<pdfparams> <pdfparams>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/Basket.xml:tt_content.pi_flexform.pdfParams</label> <label>LLL:EXT:dlf/Resources/Private/Language/Basket.xml:tt_content.pi_flexform.pdfParams</label>
<config> <config>
<type>input</type> <type>input</type>
<eval>required</eval> <eval>required</eval>
<default>##docId##,##startpage##,##endpage##,##startx##,##starty##,##endx##,##endy##,##rotation##</default> <default>##docId##,##startpage##,##endpage##,##startx##,##starty##,##endx##,##endy##,##rotation##</default>
</config> </config>
</TCEforms> </TCEforms>
</pdfparams> </pdfparams>
<pdfparamseparator> <pdfparamseparator>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/Basket.xml:tt_content.pi_flexform.pdfParamSeparator</label> <label>LLL:EXT:dlf/Resources/Private/Language/Basket.xml:tt_content.pi_flexform.pdfParamSeparator</label>
<config> <config>
<type>input</type> <type>input</type>
<eval>required</eval> <eval>required</eval>
<default>*</default> <default>*</default>
</config> </config>
</TCEforms> </TCEforms>
</pdfparamseparator> </pdfparamseparator>
<basketGoToButton> <basketGoToButton>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/Basket.xml:tt_content.pi_flexform.basketGoToButton</label> <label>LLL:EXT:dlf/Resources/Private/Language/Basket.xml:tt_content.pi_flexform.basketGoToButton</label>
<config> <config>
<type>check</type> <type>check</type>
<default>0</default> <default>0</default>
</config> </config>
</TCEforms> </TCEforms>
</basketGoToButton> </basketGoToButton>
<targetBasket> <targetBasket>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/Basket.xml:tt_content.pi_flexform.targetBasket</label> <label>LLL:EXT:dlf/Resources/Private/Language/Basket.xml:tt_content.pi_flexform.targetBasket</label>
<config> <config>
<type>group</type> <type>group</type>
<internal_type>db</internal_type> <internal_type>db</internal_type>
<allowed>pages</allowed> <allowed>pages</allowed>
<size>1</size> <size>1</size>
<maxitems>1</maxitems> <maxitems>1</maxitems>
<minitems>1</minitems> <minitems>1</minitems>
<show_thumbs>1</show_thumbs> <show_thumbs>1</show_thumbs>
<wizards> <wizards>
<suggest> <suggest>
<type>suggest</type> <type>suggest</type>
</suggest> </suggest>
</wizards> </wizards>
</config> </config>
</TCEforms> </TCEforms>
</targetBasket> </targetBasket>
<templateFile> <templateFile>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/Basket.xml:tt_content.pi_flexform.templateFile</label> <label>LLL:EXT:dlf/Resources/Private/Language/Basket.xml:tt_content.pi_flexform.templateFile</label>
<config> <config>
<type>group</type> <type>group</type>
<internal_type>file_reference</internal_type> <internal_type>file_reference</internal_type>
<allowed>tmpl,tpl,html,htm,txt</allowed> <allowed>tmpl,tpl,html,htm,txt</allowed>
<size>1</size> <size>1</size>
<maxitems>1</maxitems> <maxitems>1</maxitems>
<minitems>0</minitems> <minitems>0</minitems>
<disable_controls>upload</disable_controls> <disable_controls>upload</disable_controls>
</config> </config>
</TCEforms> </TCEforms>
</templateFile> </templateFile>
</el> </el>
</ROOT> </ROOT>
</sDEF> </sDEF>
</sheets> </sheets>
</T3DataStructure> </T3DataStructure>

View File

@ -9,166 +9,166 @@
* LICENSE.txt file that was distributed with this source code. * LICENSE.txt file that was distributed with this source code.
--> -->
<T3DataStructure> <T3DataStructure>
<meta> <meta>
<langDisable>1</langDisable> <langDisable>1</langDisable>
</meta> </meta>
<sheets> <sheets>
<sDEF> <sDEF>
<ROOT> <ROOT>
<TCEforms> <TCEforms>
<sheetTitle>LLL:EXT:dlf/Resources/Private/Language/Collection.xml:tt_content.pi_flexform.sheet_general</sheetTitle> <sheetTitle>LLL:EXT:dlf/Resources/Private/Language/Collection.xml:tt_content.pi_flexform.sheet_general</sheetTitle>
</TCEforms> </TCEforms>
<type>array</type> <type>array</type>
<el> <el>
<pages> <pages>
<TCEforms> <TCEforms>
<onChange>reload</onChange> <onChange>reload</onChange>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:lang/locallang_general.xml:LGL.startingpoint</label> <label>LLL:EXT:lang/locallang_general.xml:LGL.startingpoint</label>
<config> <config>
<type>group</type> <type>group</type>
<internal_type>db</internal_type> <internal_type>db</internal_type>
<allowed>pages</allowed> <allowed>pages</allowed>
<size>1</size> <size>1</size>
<maxitems>1</maxitems> <maxitems>1</maxitems>
<minitems>1</minitems> <minitems>1</minitems>
<show_thumbs>1</show_thumbs> <show_thumbs>1</show_thumbs>
<wizards> <wizards>
<suggest> <suggest>
<type>suggest</type> <type>suggest</type>
</suggest> </suggest>
</wizards> </wizards>
</config> </config>
</TCEforms> </TCEforms>
</pages> </pages>
<collections> <collections>
<TCEforms> <TCEforms>
<displayCond>FIELD:pages:REQ:true</displayCond> <displayCond>FIELD:pages:REQ:true</displayCond>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/Collection.xml:tt_content.pi_flexform.collections</label> <label>LLL:EXT:dlf/Resources/Private/Language/Collection.xml:tt_content.pi_flexform.collections</label>
<config> <config>
<type>select</type> <type>select</type>
<items type="array"/> <items type="array"/>
<itemsProcFunc>Kitodo\\Dlf\\Hooks\\FormEngine-&gt;itemsProcFunc_collectionList</itemsProcFunc> <itemsProcFunc>Kitodo\\Dlf\\Hooks\\FormEngine-&gt;itemsProcFunc_collectionList</itemsProcFunc>
<size>5</size> <size>5</size>
<autoSizeMax>15</autoSizeMax> <autoSizeMax>15</autoSizeMax>
<maxitems>1024</maxitems> <maxitems>1024</maxitems>
<minitems>0</minitems> <minitems>0</minitems>
</config> </config>
</TCEforms> </TCEforms>
</collections> </collections>
<solrcore> <solrcore>
<TCEforms> <TCEforms>
<displayCond>FIELD:pages:REQ:true</displayCond> <displayCond>FIELD:pages:REQ:true</displayCond>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/Collection.xml:tt_content.pi_flexform.solrcore</label> <label>LLL:EXT:dlf/Resources/Private/Language/Collection.xml:tt_content.pi_flexform.solrcore</label>
<config> <config>
<type>select</type> <type>select</type>
<items type="array"></items> <items type="array"></items>
<itemsProcFunc>Kitodo\\Dlf\\Hooks\\FormEngine->itemsProcFunc_solrList</itemsProcFunc> <itemsProcFunc>Kitodo\\Dlf\\Hooks\\FormEngine->itemsProcFunc_solrList</itemsProcFunc>
<size>1</size> <size>1</size>
<maxitems>1</maxitems> <maxitems>1</maxitems>
<minitems>1</minitems> <minitems>1</minitems>
</config> </config>
</TCEforms> </TCEforms>
</solrcore> </solrcore>
<show_userdefined> <show_userdefined>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/Collection.xml:tt_content.pi_flexform.show_userdefined</label> <label>LLL:EXT:dlf/Resources/Private/Language/Collection.xml:tt_content.pi_flexform.show_userdefined</label>
<config> <config>
<type>select</type> <type>select</type>
<items type="array"> <items type="array">
<numIndex index="0" type="array"> <numIndex index="0" type="array">
<numIndex index="0">LLL:EXT:dlf/Resources/Private/Language/Collection.xml:tt_content.pi_flexform.show_userdefined.all</numIndex> <numIndex index="0">LLL:EXT:dlf/Resources/Private/Language/Collection.xml:tt_content.pi_flexform.show_userdefined.all</numIndex>
<numIndex index="1">-1</numIndex> <numIndex index="1">-1</numIndex>
</numIndex> </numIndex>
<numIndex index="1" type="array"> <numIndex index="1" type="array">
<numIndex index="0">LLL:EXT:dlf/Resources/Private/Language/Collection.xml:tt_content.pi_flexform.show_userdefined.none</numIndex> <numIndex index="0">LLL:EXT:dlf/Resources/Private/Language/Collection.xml:tt_content.pi_flexform.show_userdefined.none</numIndex>
<numIndex index="1">0</numIndex> <numIndex index="1">0</numIndex>
</numIndex> </numIndex>
<numIndex index="2" type="array"> <numIndex index="2" type="array">
<numIndex index="0">LLL:EXT:dlf/Resources/Private/Language/Collection.xml:tt_content.pi_flexform.show_userdefined.exclusive</numIndex> <numIndex index="0">LLL:EXT:dlf/Resources/Private/Language/Collection.xml:tt_content.pi_flexform.show_userdefined.exclusive</numIndex>
<numIndex index="1">1</numIndex> <numIndex index="1">1</numIndex>
</numIndex> </numIndex>
</items> </items>
<size>1</size> <size>1</size>
<maxitems>1</maxitems> <maxitems>1</maxitems>
<minitems>0</minitems> <minitems>0</minitems>
</config> </config>
</TCEforms> </TCEforms>
</show_userdefined> </show_userdefined>
<dont_show_single> <dont_show_single>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/Collection.xml:tt_content.pi_flexform.dont_show_single</label> <label>LLL:EXT:dlf/Resources/Private/Language/Collection.xml:tt_content.pi_flexform.dont_show_single</label>
<config> <config>
<type>check</type> <type>check</type>
<default>0</default> <default>0</default>
</config> </config>
</TCEforms> </TCEforms>
</dont_show_single> </dont_show_single>
<randomize> <randomize>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/Collection.xml:tt_content.pi_flexform.randomize</label> <label>LLL:EXT:dlf/Resources/Private/Language/Collection.xml:tt_content.pi_flexform.randomize</label>
<config> <config>
<type>check</type> <type>check</type>
<default>0</default> <default>0</default>
</config> </config>
</TCEforms> </TCEforms>
</randomize> </randomize>
<targetPid> <targetPid>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/Collection.xml:tt_content.pi_flexform.targetPid</label> <label>LLL:EXT:dlf/Resources/Private/Language/Collection.xml:tt_content.pi_flexform.targetPid</label>
<config> <config>
<type>group</type> <type>group</type>
<internal_type>db</internal_type> <internal_type>db</internal_type>
<allowed>pages</allowed> <allowed>pages</allowed>
<size>1</size> <size>1</size>
<maxitems>1</maxitems> <maxitems>1</maxitems>
<minitems>1</minitems> <minitems>1</minitems>
<show_thumbs>1</show_thumbs> <show_thumbs>1</show_thumbs>
<wizards> <wizards>
<suggest> <suggest>
<type>suggest</type> <type>suggest</type>
</suggest> </suggest>
</wizards> </wizards>
</config> </config>
</TCEforms> </TCEforms>
</targetPid> </targetPid>
<targetFeed> <targetFeed>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/Collection.xml:tt_content.pi_flexform.targetFeed</label> <label>LLL:EXT:dlf/Resources/Private/Language/Collection.xml:tt_content.pi_flexform.targetFeed</label>
<config> <config>
<type>group</type> <type>group</type>
<internal_type>db</internal_type> <internal_type>db</internal_type>
<allowed>pages</allowed> <allowed>pages</allowed>
<size>1</size> <size>1</size>
<maxitems>1</maxitems> <maxitems>1</maxitems>
<minitems>0</minitems> <minitems>0</minitems>
</config> </config>
</TCEforms> </TCEforms>
</targetFeed> </targetFeed>
<templateFile> <templateFile>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/Collection.xml:tt_content.pi_flexform.templateFile</label> <label>LLL:EXT:dlf/Resources/Private/Language/Collection.xml:tt_content.pi_flexform.templateFile</label>
<config> <config>
<type>group</type> <type>group</type>
<internal_type>file_reference</internal_type> <internal_type>file_reference</internal_type>
<allowed>tmpl,tpl,html,htm,txt</allowed> <allowed>tmpl,tpl,html,htm,txt</allowed>
<size>1</size> <size>1</size>
<maxitems>1</maxitems> <maxitems>1</maxitems>
<minitems>0</minitems> <minitems>0</minitems>
<disable_controls>upload</disable_controls> <disable_controls>upload</disable_controls>
</config> </config>
</TCEforms> </TCEforms>
</templateFile> </templateFile>
</el> </el>
</ROOT> </ROOT>
</sDEF> </sDEF>
</sheets> </sheets>
</T3DataStructure> </T3DataStructure>

View File

@ -9,142 +9,142 @@
* LICENSE.txt file that was distributed with this source code. * LICENSE.txt file that was distributed with this source code.
--> -->
<T3DataStructure> <T3DataStructure>
<meta> <meta>
<langDisable>1</langDisable> <langDisable>1</langDisable>
</meta> </meta>
<sheets> <sheets>
<sDEF> <sDEF>
<ROOT> <ROOT>
<TCEforms> <TCEforms>
<sheetTitle>LLL:EXT:dlf/Resources/Private/Language/Feeds.xml:tt_content.pi_flexform.sheet_general</sheetTitle> <sheetTitle>LLL:EXT:dlf/Resources/Private/Language/Feeds.xml:tt_content.pi_flexform.sheet_general</sheetTitle>
</TCEforms> </TCEforms>
<type>array</type> <type>array</type>
<el> <el>
<pages> <pages>
<TCEforms> <TCEforms>
<onChange>reload</onChange> <onChange>reload</onChange>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:lang/locallang_general.xml:LGL.startingpoint</label> <label>LLL:EXT:lang/locallang_general.xml:LGL.startingpoint</label>
<config> <config>
<type>group</type> <type>group</type>
<internal_type>db</internal_type> <internal_type>db</internal_type>
<allowed>pages</allowed> <allowed>pages</allowed>
<size>1</size> <size>1</size>
<maxitems>1</maxitems> <maxitems>1</maxitems>
<minitems>1</minitems> <minitems>1</minitems>
<show_thumbs>1</show_thumbs> <show_thumbs>1</show_thumbs>
<wizards> <wizards>
<suggest> <suggest>
<type>suggest</type> <type>suggest</type>
</suggest> </suggest>
</wizards> </wizards>
</config> </config>
</TCEforms> </TCEforms>
</pages> </pages>
<collections> <collections>
<TCEforms> <TCEforms>
<displayCond>FIELD:pages:REQ:true</displayCond> <displayCond>FIELD:pages:REQ:true</displayCond>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/Feeds.xml:tt_content.pi_flexform.collections</label> <label>LLL:EXT:dlf/Resources/Private/Language/Feeds.xml:tt_content.pi_flexform.collections</label>
<config> <config>
<type>select</type> <type>select</type>
<items type="array"></items> <items type="array"></items>
<itemsProcFunc>Kitodo\\Dlf\\Hooks\\FormEngine->itemsProcFunc_collectionList</itemsProcFunc> <itemsProcFunc>Kitodo\\Dlf\\Hooks\\FormEngine->itemsProcFunc_collectionList</itemsProcFunc>
<size>5</size> <size>5</size>
<autoSizeMax>15</autoSizeMax> <autoSizeMax>15</autoSizeMax>
<maxitems>1024</maxitems> <maxitems>1024</maxitems>
<minitems>0</minitems> <minitems>0</minitems>
</config> </config>
</TCEforms> </TCEforms>
</collections> </collections>
<excludeOther> <excludeOther>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/Feeds.xml:tt_content.pi_flexform.excludeOther</label> <label>LLL:EXT:dlf/Resources/Private/Language/Feeds.xml:tt_content.pi_flexform.excludeOther</label>
<config> <config>
<type>check</type> <type>check</type>
<default>0</default> <default>0</default>
</config> </config>
</TCEforms> </TCEforms>
</excludeOther> </excludeOther>
<library> <library>
<TCEforms> <TCEforms>
<displayCond>FIELD:pages:REQ:true</displayCond> <displayCond>FIELD:pages:REQ:true</displayCond>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/Feeds.xml:tt_content.pi_flexform.library</label> <label>LLL:EXT:dlf/Resources/Private/Language/Feeds.xml:tt_content.pi_flexform.library</label>
<config> <config>
<type>select</type> <type>select</type>
<items type="array"></items> <items type="array"></items>
<itemsProcFunc>Kitodo\\Dlf\\Hooks\\FormEngine->itemsProcFunc_libraryList</itemsProcFunc> <itemsProcFunc>Kitodo\\Dlf\\Hooks\\FormEngine->itemsProcFunc_libraryList</itemsProcFunc>
<size>1</size> <size>1</size>
<maxitems>1</maxitems> <maxitems>1</maxitems>
<minitems>0</minitems> <minitems>0</minitems>
</config> </config>
</TCEforms> </TCEforms>
</library> </library>
<limit> <limit>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/Feeds.xml:tt_content.pi_flexform.limit</label> <label>LLL:EXT:dlf/Resources/Private/Language/Feeds.xml:tt_content.pi_flexform.limit</label>
<config> <config>
<type>input</type> <type>input</type>
<eval>required,num,int</eval> <eval>required,num,int</eval>
<default>50</default> <default>50</default>
</config> </config>
</TCEforms> </TCEforms>
</limit> </limit>
<prependSuperiorTitle> <prependSuperiorTitle>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/Feeds.xml:tt_content.pi_flexform.prependSuperiorTitle</label> <label>LLL:EXT:dlf/Resources/Private/Language/Feeds.xml:tt_content.pi_flexform.prependSuperiorTitle</label>
<config> <config>
<type>check</type> <type>check</type>
<default>0</default> <default>0</default>
</config> </config>
</TCEforms> </TCEforms>
</prependSuperiorTitle> </prependSuperiorTitle>
<targetPid> <targetPid>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/Feeds.xml:tt_content.pi_flexform.targetPid</label> <label>LLL:EXT:dlf/Resources/Private/Language/Feeds.xml:tt_content.pi_flexform.targetPid</label>
<config> <config>
<type>group</type> <type>group</type>
<internal_type>db</internal_type> <internal_type>db</internal_type>
<allowed>pages</allowed> <allowed>pages</allowed>
<size>1</size> <size>1</size>
<maxitems>1</maxitems> <maxitems>1</maxitems>
<minitems>1</minitems> <minitems>1</minitems>
<show_thumbs>1</show_thumbs> <show_thumbs>1</show_thumbs>
<wizards> <wizards>
<suggest> <suggest>
<type>suggest</type> <type>suggest</type>
</suggest> </suggest>
</wizards> </wizards>
</config> </config>
</TCEforms> </TCEforms>
</targetPid> </targetPid>
<title> <title>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/Feeds.xml:tt_content.pi_flexform.title</label> <label>LLL:EXT:dlf/Resources/Private/Language/Feeds.xml:tt_content.pi_flexform.title</label>
<config> <config>
<type>input</type> <type>input</type>
<eval>required,trim</eval> <eval>required,trim</eval>
</config> </config>
</TCEforms> </TCEforms>
</title> </title>
<description> <description>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/Feeds.xml:tt_content.pi_flexform.description</label> <label>LLL:EXT:dlf/Resources/Private/Language/Feeds.xml:tt_content.pi_flexform.description</label>
<config> <config>
<type>input</type> <type>input</type>
<eval>trim</eval> <eval>trim</eval>
</config> </config>
</TCEforms> </TCEforms>
</description> </description>
</el> </el>
</ROOT> </ROOT>
</sDEF> </sDEF>
</sheets> </sheets>
</T3DataStructure> </T3DataStructure>

View File

@ -9,119 +9,119 @@
* LICENSE.txt file that was distributed with this source code. * LICENSE.txt file that was distributed with this source code.
--> -->
<T3DataStructure> <T3DataStructure>
<meta> <meta>
<langDisable>1</langDisable> <langDisable>1</langDisable>
</meta> </meta>
<sheets> <sheets>
<sDEF> <sDEF>
<ROOT> <ROOT>
<TCEforms> <TCEforms>
<sheetTitle>LLL:EXT:dlf/Resources/Private/Language/ListView.xml:tt_content.pi_flexform.sheet_general</sheetTitle> <sheetTitle>LLL:EXT:dlf/Resources/Private/Language/ListView.xml:tt_content.pi_flexform.sheet_general</sheetTitle>
</TCEforms> </TCEforms>
<type>array</type> <type>array</type>
<el> <el>
<pages> <pages>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:lang/locallang_general.xml:LGL.startingpoint</label> <label>LLL:EXT:lang/locallang_general.xml:LGL.startingpoint</label>
<config> <config>
<type>group</type> <type>group</type>
<internal_type>db</internal_type> <internal_type>db</internal_type>
<allowed>pages</allowed> <allowed>pages</allowed>
<size>1</size> <size>1</size>
<maxitems>1</maxitems> <maxitems>1</maxitems>
<minitems>1</minitems> <minitems>1</minitems>
<show_thumbs>1</show_thumbs> <show_thumbs>1</show_thumbs>
<wizards> <wizards>
<suggest> <suggest>
<type>suggest</type> <type>suggest</type>
</suggest> </suggest>
</wizards> </wizards>
</config> </config>
</TCEforms> </TCEforms>
</pages> </pages>
<limit> <limit>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/ListView.xml:tt_content.pi_flexform.limit</label> <label>LLL:EXT:dlf/Resources/Private/Language/ListView.xml:tt_content.pi_flexform.limit</label>
<config> <config>
<type>input</type> <type>input</type>
<eval>required,num,int</eval> <eval>required,num,int</eval>
<default>25</default> <default>25</default>
</config> </config>
</TCEforms> </TCEforms>
</limit> </limit>
<targetPid> <targetPid>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/ListView.xml:tt_content.pi_flexform.targetPid</label> <label>LLL:EXT:dlf/Resources/Private/Language/ListView.xml:tt_content.pi_flexform.targetPid</label>
<config> <config>
<type>group</type> <type>group</type>
<internal_type>db</internal_type> <internal_type>db</internal_type>
<allowed>pages</allowed> <allowed>pages</allowed>
<size>1</size> <size>1</size>
<maxitems>1</maxitems> <maxitems>1</maxitems>
<minitems>1</minitems> <minitems>1</minitems>
<show_thumbs>1</show_thumbs> <show_thumbs>1</show_thumbs>
<wizards> <wizards>
<suggest> <suggest>
<type>suggest</type> <type>suggest</type>
</suggest> </suggest>
</wizards> </wizards>
</config> </config>
</TCEforms> </TCEforms>
</targetPid> </targetPid>
<getTitle> <getTitle>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/ListView.xml:tt_content.pi_flexform.getTitle</label> <label>LLL:EXT:dlf/Resources/Private/Language/ListView.xml:tt_content.pi_flexform.getTitle</label>
<config> <config>
<type>check</type> <type>check</type>
<default>0</default> <default>0</default>
</config> </config>
</TCEforms> </TCEforms>
</getTitle> </getTitle>
<basketButton> <basketButton>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/ListView.xml:tt_content.pi_flexform.basketButton</label> <label>LLL:EXT:dlf/Resources/Private/Language/ListView.xml:tt_content.pi_flexform.basketButton</label>
<config> <config>
<type>check</type> <type>check</type>
<default>0</default> <default>0</default>
</config> </config>
</TCEforms> </TCEforms>
</basketButton> </basketButton>
<targetBasket> <targetBasket>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/ListView.xml:tt_content.pi_flexform.targetBasket</label> <label>LLL:EXT:dlf/Resources/Private/Language/ListView.xml:tt_content.pi_flexform.targetBasket</label>
<config> <config>
<type>group</type> <type>group</type>
<internal_type>db</internal_type> <internal_type>db</internal_type>
<allowed>pages</allowed> <allowed>pages</allowed>
<size>1</size> <size>1</size>
<maxitems>1</maxitems> <maxitems>1</maxitems>
<minitems>0</minitems> <minitems>0</minitems>
</config> </config>
</TCEforms> </TCEforms>
</targetBasket> </targetBasket>
<templateFile> <templateFile>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/ListView.xml:tt_content.pi_flexform.templateFile</label> <label>LLL:EXT:dlf/Resources/Private/Language/ListView.xml:tt_content.pi_flexform.templateFile</label>
<config> <config>
<type>group</type> <type>group</type>
<internal_type>file_reference</internal_type> <internal_type>file_reference</internal_type>
<allowed>tmpl,tpl,html,htm,txt</allowed> <allowed>tmpl,tpl,html,htm,txt</allowed>
<size>1</size> <size>1</size>
<maxitems>1</maxitems> <maxitems>1</maxitems>
<minitems>0</minitems> <minitems>0</minitems>
<disable_controls>upload</disable_controls> <disable_controls>upload</disable_controls>
</config> </config>
</TCEforms> </TCEforms>
</templateFile> </templateFile>
</el> </el>
</ROOT> </ROOT>
</sDEF> </sDEF>
</sheets> </sheets>
</T3DataStructure> </T3DataStructure>

View File

@ -9,154 +9,154 @@
* LICENSE.txt file that was distributed with this source code. * LICENSE.txt file that was distributed with this source code.
--> -->
<T3DataStructure> <T3DataStructure>
<meta> <meta>
<langDisable>1</langDisable> <langDisable>1</langDisable>
</meta> </meta>
<sheets> <sheets>
<sDEF> <sDEF>
<ROOT> <ROOT>
<TCEforms> <TCEforms>
<sheetTitle>LLL:EXT:dlf/Resources/Private/Language/Metadata.xml:tt_content.pi_flexform.sheet_general</sheetTitle> <sheetTitle>LLL:EXT:dlf/Resources/Private/Language/Metadata.xml:tt_content.pi_flexform.sheet_general</sheetTitle>
</TCEforms> </TCEforms>
<type>array</type> <type>array</type>
<el> <el>
<pages> <pages>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:lang/locallang_general.xml:LGL.startingpoint</label> <label>LLL:EXT:lang/locallang_general.xml:LGL.startingpoint</label>
<config> <config>
<type>group</type> <type>group</type>
<internal_type>db</internal_type> <internal_type>db</internal_type>
<allowed>pages</allowed> <allowed>pages</allowed>
<size>1</size> <size>1</size>
<maxitems>1</maxitems> <maxitems>1</maxitems>
<minitems>1</minitems> <minitems>1</minitems>
<show_thumbs>1</show_thumbs> <show_thumbs>1</show_thumbs>
<wizards> <wizards>
<suggest> <suggest>
<type>suggest</type> <type>suggest</type>
</suggest> </suggest>
</wizards> </wizards>
</config> </config>
</TCEforms> </TCEforms>
</pages> </pages>
<excludeOther> <excludeOther>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/Metadata.xml:tt_content.pi_flexform.excludeOther</label> <label>LLL:EXT:dlf/Resources/Private/Language/Metadata.xml:tt_content.pi_flexform.excludeOther</label>
<config> <config>
<type>check</type> <type>check</type>
<default>1</default> <default>1</default>
</config> </config>
</TCEforms> </TCEforms>
</excludeOther> </excludeOther>
<linkTitle> <linkTitle>
<TCEforms> <TCEforms>
<onChange>reload</onChange> <onChange>reload</onChange>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/Metadata.xml:tt_content.pi_flexform.linkTitle</label> <label>LLL:EXT:dlf/Resources/Private/Language/Metadata.xml:tt_content.pi_flexform.linkTitle</label>
<config> <config>
<type>check</type> <type>check</type>
<default>1</default> <default>1</default>
</config> </config>
</TCEforms> </TCEforms>
</linkTitle> </linkTitle>
<targetPid> <targetPid>
<TCEforms> <TCEforms>
<displayCond>FIELD:linkTitle:REQ:true</displayCond> <displayCond>FIELD:linkTitle:REQ:true</displayCond>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/Metadata.xml:tt_content.pi_flexform.targetPid</label> <label>LLL:EXT:dlf/Resources/Private/Language/Metadata.xml:tt_content.pi_flexform.targetPid</label>
<config> <config>
<type>group</type> <type>group</type>
<internal_type>db</internal_type> <internal_type>db</internal_type>
<allowed>pages</allowed> <allowed>pages</allowed>
<size>1</size> <size>1</size>
<maxitems>1</maxitems> <maxitems>1</maxitems>
<minitems>0</minitems> <minitems>0</minitems>
<show_thumbs>1</show_thumbs> <show_thumbs>1</show_thumbs>
<wizards> <wizards>
<suggest> <suggest>
<type>suggest</type> <type>suggest</type>
</suggest> </suggest>
</wizards> </wizards>
</config> </config>
</TCEforms> </TCEforms>
</targetPid> </targetPid>
<getTitle> <getTitle>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/Metadata.xml:tt_content.pi_flexform.getTitle</label> <label>LLL:EXT:dlf/Resources/Private/Language/Metadata.xml:tt_content.pi_flexform.getTitle</label>
<config> <config>
<type>check</type> <type>check</type>
<default>1</default> <default>1</default>
</config> </config>
</TCEforms> </TCEforms>
</getTitle> </getTitle>
<showFull> <showFull>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/Metadata.xml:tt_content.pi_flexform.showFull</label> <label>LLL:EXT:dlf/Resources/Private/Language/Metadata.xml:tt_content.pi_flexform.showFull</label>
<config> <config>
<type>check</type> <type>check</type>
<default>1</default> <default>1</default>
</config> </config>
</TCEforms> </TCEforms>
</showFull> </showFull>
<rootline> <rootline>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/Metadata.xml:tt_content.pi_flexform.rootline</label> <label>LLL:EXT:dlf/Resources/Private/Language/Metadata.xml:tt_content.pi_flexform.rootline</label>
<config> <config>
<type>select</type> <type>select</type>
<items type="array"> <items type="array">
<numIndex index="0" type="array"> <numIndex index="0" type="array">
<numIndex index="0">LLL:EXT:dlf/Resources/Private/Language/Metadata.xml:tt_content.pi_flexform.rootline.none</numIndex> <numIndex index="0">LLL:EXT:dlf/Resources/Private/Language/Metadata.xml:tt_content.pi_flexform.rootline.none</numIndex>
<numIndex index="1">0</numIndex> <numIndex index="1">0</numIndex>
</numIndex> </numIndex>
<numIndex index="1" type="array"> <numIndex index="1" type="array">
<numIndex index="0">LLL:EXT:dlf/Resources/Private/Language/Metadata.xml:tt_content.pi_flexform.rootline.all</numIndex> <numIndex index="0">LLL:EXT:dlf/Resources/Private/Language/Metadata.xml:tt_content.pi_flexform.rootline.all</numIndex>
<numIndex index="1">1</numIndex> <numIndex index="1">1</numIndex>
</numIndex> </numIndex>
<numIndex index="2" type="array"> <numIndex index="2" type="array">
<numIndex index="0">LLL:EXT:dlf/Resources/Private/Language/Metadata.xml:tt_content.pi_flexform.rootline.titledata</numIndex> <numIndex index="0">LLL:EXT:dlf/Resources/Private/Language/Metadata.xml:tt_content.pi_flexform.rootline.titledata</numIndex>
<numIndex index="1">2</numIndex> <numIndex index="1">2</numIndex>
</numIndex> </numIndex>
</items> </items>
<size>1</size> <size>1</size>
<maxitems>1</maxitems> <maxitems>1</maxitems>
<minitems>1</minitems> <minitems>1</minitems>
<default>0</default> <default>0</default>
</config> </config>
</TCEforms> </TCEforms>
</rootline> </rootline>
<separator> <separator>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/Metadata.xml:tt_content.pi_flexform.separator</label> <label>LLL:EXT:dlf/Resources/Private/Language/Metadata.xml:tt_content.pi_flexform.separator</label>
<config> <config>
<type>input</type> <type>input</type>
<eval>required,trim</eval> <eval>required,trim</eval>
<default>#</default> <default>#</default>
</config> </config>
</TCEforms> </TCEforms>
</separator> </separator>
<templateFile> <templateFile>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/Metadata.xml:tt_content.pi_flexform.templateFile</label> <label>LLL:EXT:dlf/Resources/Private/Language/Metadata.xml:tt_content.pi_flexform.templateFile</label>
<config> <config>
<type>group</type> <type>group</type>
<internal_type>file_reference</internal_type> <internal_type>file_reference</internal_type>
<allowed>tmpl,tpl,html,htm,txt</allowed> <allowed>tmpl,tpl,html,htm,txt</allowed>
<size>1</size> <size>1</size>
<maxitems>1</maxitems> <maxitems>1</maxitems>
<minitems>0</minitems> <minitems>0</minitems>
<disable_controls>upload</disable_controls> <disable_controls>upload</disable_controls>
</config> </config>
</TCEforms> </TCEforms>
</templateFile> </templateFile>
</el> </el>
</ROOT> </ROOT>
</sDEF> </sDEF>
</sheets> </sheets>
</T3DataStructure> </T3DataStructure>

View File

@ -9,85 +9,85 @@
* LICENSE.txt file that was distributed with this source code. * LICENSE.txt file that was distributed with this source code.
--> -->
<T3DataStructure> <T3DataStructure>
<meta> <meta>
<langDisable>1</langDisable> <langDisable>1</langDisable>
</meta> </meta>
<sheets> <sheets>
<sDEF> <sDEF>
<ROOT> <ROOT>
<TCEforms> <TCEforms>
<sheetTitle>LLL:EXT:dlf/Resources/Private/Language/Navigation.xml:tt_content.pi_flexform.sheet_general</sheetTitle> <sheetTitle>LLL:EXT:dlf/Resources/Private/Language/Navigation.xml:tt_content.pi_flexform.sheet_general</sheetTitle>
</TCEforms> </TCEforms>
<type>array</type> <type>array</type>
<el> <el>
<pages> <pages>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:lang/locallang_general.xml:LGL.startingpoint</label> <label>LLL:EXT:lang/locallang_general.xml:LGL.startingpoint</label>
<config> <config>
<type>group</type> <type>group</type>
<internal_type>db</internal_type> <internal_type>db</internal_type>
<allowed>pages</allowed> <allowed>pages</allowed>
<size>1</size> <size>1</size>
<maxitems>1</maxitems> <maxitems>1</maxitems>
<minitems>1</minitems> <minitems>1</minitems>
<show_thumbs>1</show_thumbs> <show_thumbs>1</show_thumbs>
<wizards> <wizards>
<suggest> <suggest>
<type>suggest</type> <type>suggest</type>
</suggest> </suggest>
</wizards> </wizards>
</config> </config>
</TCEforms> </TCEforms>
</pages> </pages>
<pageStep> <pageStep>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/Navigation.xml:tt_content.pi_flexform.pageStep</label> <label>LLL:EXT:dlf/Resources/Private/Language/Navigation.xml:tt_content.pi_flexform.pageStep</label>
<config> <config>
<type>input</type> <type>input</type>
<eval>required,num,int</eval> <eval>required,num,int</eval>
<default>5</default> <default>5</default>
</config> </config>
</TCEforms> </TCEforms>
</pageStep> </pageStep>
<targetPid> <targetPid>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/Navigation.xml:tt_content.pi_flexform.targetPid</label> <label>LLL:EXT:dlf/Resources/Private/Language/Navigation.xml:tt_content.pi_flexform.targetPid</label>
<config> <config>
<type>group</type> <type>group</type>
<internal_type>db</internal_type> <internal_type>db</internal_type>
<allowed>pages</allowed> <allowed>pages</allowed>
<size>1</size> <size>1</size>
<maxitems>1</maxitems> <maxitems>1</maxitems>
<minitems>0</minitems> <minitems>0</minitems>
<show_thumbs>1</show_thumbs> <show_thumbs>1</show_thumbs>
<wizards> <wizards>
<suggest> <suggest>
<type>suggest</type> <type>suggest</type>
</suggest> </suggest>
</wizards> </wizards>
</config> </config>
</TCEforms> </TCEforms>
</targetPid> </targetPid>
<templateFile> <templateFile>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/Navigation.xml:tt_content.pi_flexform.templateFile</label> <label>LLL:EXT:dlf/Resources/Private/Language/Navigation.xml:tt_content.pi_flexform.templateFile</label>
<config> <config>
<type>group</type> <type>group</type>
<internal_type>file_reference</internal_type> <internal_type>file_reference</internal_type>
<allowed>tmpl,tpl,html,htm,txt</allowed> <allowed>tmpl,tpl,html,htm,txt</allowed>
<size>1</size> <size>1</size>
<maxitems>1</maxitems> <maxitems>1</maxitems>
<minitems>0</minitems> <minitems>0</minitems>
<disable_controls>upload</disable_controls> <disable_controls>upload</disable_controls>
</config> </config>
</TCEforms> </TCEforms>
</templateFile> </templateFile>
</el> </el>
</ROOT> </ROOT>
</sDEF> </sDEF>
</sheets> </sheets>
</T3DataStructure> </T3DataStructure>

View File

@ -9,141 +9,141 @@
* LICENSE.txt file that was distributed with this source code. * LICENSE.txt file that was distributed with this source code.
--> -->
<T3DataStructure> <T3DataStructure>
<meta> <meta>
<langDisable>1</langDisable> <langDisable>1</langDisable>
</meta> </meta>
<sheets> <sheets>
<sDEF> <sDEF>
<ROOT> <ROOT>
<TCEforms> <TCEforms>
<sheetTitle>LLL:EXT:dlf/Resources/Private/Language/OaiPmh.xml:tt_content.pi_flexform.sheet_general</sheetTitle> <sheetTitle>LLL:EXT:dlf/Resources/Private/Language/OaiPmh.xml:tt_content.pi_flexform.sheet_general</sheetTitle>
</TCEforms> </TCEforms>
<type>array</type> <type>array</type>
<el> <el>
<pages> <pages>
<TCEforms> <TCEforms>
<onChange>reload</onChange> <onChange>reload</onChange>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:lang/locallang_general.xml:LGL.startingpoint</label> <label>LLL:EXT:lang/locallang_general.xml:LGL.startingpoint</label>
<onChange>reload</onChange> <onChange>reload</onChange>
<config> <config>
<type>group</type> <type>group</type>
<internal_type>db</internal_type> <internal_type>db</internal_type>
<allowed>pages</allowed> <allowed>pages</allowed>
<size>1</size> <size>1</size>
<maxitems>1</maxitems> <maxitems>1</maxitems>
<minitems>1</minitems> <minitems>1</minitems>
<show_thumbs>1</show_thumbs> <show_thumbs>1</show_thumbs>
<wizards> <wizards>
<suggest> <suggest>
<type>suggest</type> <type>suggest</type>
</suggest> </suggest>
</wizards> </wizards>
</config> </config>
</TCEforms> </TCEforms>
</pages> </pages>
<library> <library>
<TCEforms> <TCEforms>
<displayCond>FIELD:pages:REQ:true</displayCond> <displayCond>FIELD:pages:REQ:true</displayCond>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/OaiPmh.xml:tt_content.pi_flexform.library</label> <label>LLL:EXT:dlf/Resources/Private/Language/OaiPmh.xml:tt_content.pi_flexform.library</label>
<config> <config>
<type>select</type> <type>select</type>
<renderType>selectSingle</renderType> <renderType>selectSingle</renderType>
<items type="array"></items> <items type="array"></items>
<itemsProcFunc>Kitodo\\Dlf\\Hooks\\FormEngine->itemsProcFunc_libraryList</itemsProcFunc> <itemsProcFunc>Kitodo\\Dlf\\Hooks\\FormEngine->itemsProcFunc_libraryList</itemsProcFunc>
<size>1</size> <size>1</size>
<maxitems>1</maxitems> <maxitems>1</maxitems>
<minitems>0</minitems> <minitems>0</minitems>
</config> </config>
</TCEforms> </TCEforms>
</library> </library>
<limit> <limit>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/OaiPmh.xml:tt_content.pi_flexform.limit</label> <label>LLL:EXT:dlf/Resources/Private/Language/OaiPmh.xml:tt_content.pi_flexform.limit</label>
<config> <config>
<type>input</type> <type>input</type>
<eval>required,num,int</eval> <eval>required,num,int</eval>
<default>5</default> <default>5</default>
</config> </config>
</TCEforms> </TCEforms>
</limit> </limit>
<expired> <expired>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/OaiPmh.xml:tt_content.pi_flexform.expired</label> <label>LLL:EXT:dlf/Resources/Private/Language/OaiPmh.xml:tt_content.pi_flexform.expired</label>
<config> <config>
<type>input</type> <type>input</type>
<eval>required,num,int</eval> <eval>required,num,int</eval>
<default>1800</default> <default>1800</default>
</config> </config>
</TCEforms> </TCEforms>
</expired> </expired>
<show_userdefined> <show_userdefined>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/OaiPmh.xml:tt_content.pi_flexform.show_userdefined</label> <label>LLL:EXT:dlf/Resources/Private/Language/OaiPmh.xml:tt_content.pi_flexform.show_userdefined</label>
<config> <config>
<type>check</type> <type>check</type>
<default>0</default> <default>0</default>
</config> </config>
</TCEforms> </TCEforms>
</show_userdefined> </show_userdefined>
<solrcore> <solrcore>
<TCEforms> <TCEforms>
<displayCond>FIELD:pages:REQ:true</displayCond> <displayCond>FIELD:pages:REQ:true</displayCond>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/OaiPmh.xml:tt_content.pi_flexform.solrcore</label> <label>LLL:EXT:dlf/Resources/Private/Language/OaiPmh.xml:tt_content.pi_flexform.solrcore</label>
<config> <config>
<type>select</type> <type>select</type>
<items type="array"></items> <items type="array"></items>
<itemsProcFunc>Kitodo\\Dlf\\Hooks\\FormEngine->itemsProcFunc_solrList</itemsProcFunc> <itemsProcFunc>Kitodo\\Dlf\\Hooks\\FormEngine->itemsProcFunc_solrList</itemsProcFunc>
<size>1</size> <size>1</size>
<maxitems>1</maxitems> <maxitems>1</maxitems>
<minitems>0</minitems> <minitems>0</minitems>
</config> </config>
</TCEforms> </TCEforms>
</solrcore> </solrcore>
<solr_limit> <solr_limit>
<TCEforms> <TCEforms>
<displayCond>FIELD:pages:REQ:true</displayCond> <displayCond>FIELD:pages:REQ:true</displayCond>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/OaiPmh.xml:tt_content.pi_flexform.solr_limit</label> <label>LLL:EXT:dlf/Resources/Private/Language/OaiPmh.xml:tt_content.pi_flexform.solr_limit</label>
<config> <config>
<type>input</type> <type>input</type>
<eval>required,num,int</eval> <eval>required,num,int</eval>
<default>50000</default> <default>50000</default>
</config> </config>
</TCEforms> </TCEforms>
</solr_limit> </solr_limit>
<stylesheet> <stylesheet>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/OaiPmh.xml:tt_content.pi_flexform.stylesheet</label> <label>LLL:EXT:dlf/Resources/Private/Language/OaiPmh.xml:tt_content.pi_flexform.stylesheet</label>
<config> <config>
<type>group</type> <type>group</type>
<internal_type>file_reference</internal_type> <internal_type>file_reference</internal_type>
<allowed>xsl,xslt</allowed> <allowed>xsl,xslt</allowed>
<size>1</size> <size>1</size>
<maxitems>1</maxitems> <maxitems>1</maxitems>
<minitems>0</minitems> <minitems>0</minitems>
<disable_controls>upload</disable_controls> <disable_controls>upload</disable_controls>
</config> </config>
</TCEforms> </TCEforms>
</stylesheet> </stylesheet>
<unqualified_epicur> <unqualified_epicur>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/OaiPmh.xml:tt_content.pi_flexform.unqualified_epicur</label> <label>LLL:EXT:dlf/Resources/Private/Language/OaiPmh.xml:tt_content.pi_flexform.unqualified_epicur</label>
<config> <config>
<type>check</type> <type>check</type>
<default>0</default> <default>0</default>
</config> </config>
</TCEforms> </TCEforms>
</unqualified_epicur> </unqualified_epicur>
</el> </el>
</ROOT> </ROOT>
</sDEF> </sDEF>
</sheets> </sheets>
</T3DataStructure> </T3DataStructure>

View File

@ -9,99 +9,99 @@
* LICENSE.txt file that was distributed with this source code. * LICENSE.txt file that was distributed with this source code.
--> -->
<T3DataStructure> <T3DataStructure>
<meta> <meta>
<langDisable>1</langDisable> <langDisable>1</langDisable>
</meta> </meta>
<sheets> <sheets>
<sDEF> <sDEF>
<ROOT> <ROOT>
<TCEforms> <TCEforms>
<sheetTitle>LLL:EXT:dlf/Resources/Private/Language/PageGrid.xml:tt_content.pi_flexform.sheet_general</sheetTitle> <sheetTitle>LLL:EXT:dlf/Resources/Private/Language/PageGrid.xml:tt_content.pi_flexform.sheet_general</sheetTitle>
</TCEforms> </TCEforms>
<type>array</type> <type>array</type>
<el> <el>
<pages> <pages>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:lang/locallang_general.xml:LGL.startingpoint</label> <label>LLL:EXT:lang/locallang_general.xml:LGL.startingpoint</label>
<config> <config>
<type>group</type> <type>group</type>
<internal_type>db</internal_type> <internal_type>db</internal_type>
<allowed>pages</allowed> <allowed>pages</allowed>
<size>1</size> <size>1</size>
<maxitems>1</maxitems> <maxitems>1</maxitems>
<minitems>1</minitems> <minitems>1</minitems>
<show_thumbs>1</show_thumbs> <show_thumbs>1</show_thumbs>
<wizards> <wizards>
<suggest> <suggest>
<type>suggest</type> <type>suggest</type>
</suggest> </suggest>
</wizards> </wizards>
</config> </config>
</TCEforms> </TCEforms>
</pages> </pages>
<limit> <limit>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/PageGrid.xml:tt_content.pi_flexform.limit</label> <label>LLL:EXT:dlf/Resources/Private/Language/PageGrid.xml:tt_content.pi_flexform.limit</label>
<config> <config>
<type>input</type> <type>input</type>
<eval>required,num,int</eval> <eval>required,num,int</eval>
<default>24</default> <default>24</default>
</config> </config>
</TCEforms> </TCEforms>
</limit> </limit>
<placeholder> <placeholder>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/PageGrid.xml:tt_content.pi_flexform.placeholder</label> <label>LLL:EXT:dlf/Resources/Private/Language/PageGrid.xml:tt_content.pi_flexform.placeholder</label>
<config> <config>
<type>group</type> <type>group</type>
<internal_type>file_reference</internal_type> <internal_type>file_reference</internal_type>
<allowed>jpg,png,gif</allowed> <allowed>jpg,png,gif</allowed>
<size>1</size> <size>1</size>
<maxitems>1</maxitems> <maxitems>1</maxitems>
<minitems>0</minitems> <minitems>0</minitems>
</config> </config>
</TCEforms> </TCEforms>
</placeholder> </placeholder>
<targetPid> <targetPid>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/PageGrid.xml:tt_content.pi_flexform.targetPid</label> <label>LLL:EXT:dlf/Resources/Private/Language/PageGrid.xml:tt_content.pi_flexform.targetPid</label>
<config> <config>
<type>group</type> <type>group</type>
<internal_type>db</internal_type> <internal_type>db</internal_type>
<allowed>pages</allowed> <allowed>pages</allowed>
<size>1</size> <size>1</size>
<maxitems>1</maxitems> <maxitems>1</maxitems>
<minitems>1</minitems> <minitems>1</minitems>
<show_thumbs>1</show_thumbs> <show_thumbs>1</show_thumbs>
<wizards> <wizards>
<suggest> <suggest>
<type>suggest</type> <type>suggest</type>
</suggest> </suggest>
</wizards> </wizards>
</config> </config>
</TCEforms> </TCEforms>
</targetPid> </targetPid>
<templateFile> <templateFile>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/PageGrid.xml:tt_content.pi_flexform.templateFile</label> <label>LLL:EXT:dlf/Resources/Private/Language/PageGrid.xml:tt_content.pi_flexform.templateFile</label>
<config> <config>
<type>group</type> <type>group</type>
<internal_type>file_reference</internal_type> <internal_type>file_reference</internal_type>
<allowed>tmpl,tpl,html,htm,txt</allowed> <allowed>tmpl,tpl,html,htm,txt</allowed>
<size>1</size> <size>1</size>
<maxitems>1</maxitems> <maxitems>1</maxitems>
<minitems>0</minitems> <minitems>0</minitems>
<disable_controls>upload</disable_controls> <disable_controls>upload</disable_controls>
</config> </config>
</TCEforms> </TCEforms>
</templateFile> </templateFile>
</el> </el>
</ROOT> </ROOT>
</sDEF> </sDEF>
</sheets> </sheets>
</T3DataStructure> </T3DataStructure>

View File

@ -9,158 +9,158 @@
* LICENSE.txt file that was distributed with this source code. * LICENSE.txt file that was distributed with this source code.
--> -->
<T3DataStructure> <T3DataStructure>
<meta> <meta>
<langDisable>1</langDisable> <langDisable>1</langDisable>
</meta> </meta>
<sheets> <sheets>
<sDEF> <sDEF>
<ROOT> <ROOT>
<TCEforms> <TCEforms>
<sheetTitle>LLL:EXT:dlf/Resources/Private/Language/PageView.xml:tt_content.pi_flexform.sheet_general</sheetTitle> <sheetTitle>LLL:EXT:dlf/Resources/Private/Language/PageView.xml:tt_content.pi_flexform.sheet_general</sheetTitle>
</TCEforms> </TCEforms>
<type>array</type> <type>array</type>
<el> <el>
<pages> <pages>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:lang/locallang_general.xml:LGL.startingpoint</label> <label>LLL:EXT:lang/locallang_general.xml:LGL.startingpoint</label>
<config> <config>
<type>group</type> <type>group</type>
<internal_type>db</internal_type> <internal_type>db</internal_type>
<allowed>pages</allowed> <allowed>pages</allowed>
<size>1</size> <size>1</size>
<maxitems>1</maxitems> <maxitems>1</maxitems>
<minitems>1</minitems> <minitems>1</minitems>
<show_thumbs>1</show_thumbs> <show_thumbs>1</show_thumbs>
<wizards> <wizards>
<suggest> <suggest>
<type>suggest</type> <type>suggest</type>
</suggest> </suggest>
</wizards> </wizards>
</config> </config>
</TCEforms> </TCEforms>
</pages> </pages>
<excludeOther> <excludeOther>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/PageView.xml:tt_content.pi_flexform.excludeOther</label> <label>LLL:EXT:dlf/Resources/Private/Language/PageView.xml:tt_content.pi_flexform.excludeOther</label>
<config> <config>
<type>check</type> <type>check</type>
<default>1</default> <default>1</default>
</config> </config>
</TCEforms> </TCEforms>
</excludeOther> </excludeOther>
<features> <features>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/PageView.xml:tt_content.pi_flexform.features</label> <label>LLL:EXT:dlf/Resources/Private/Language/PageView.xml:tt_content.pi_flexform.features</label>
<config> <config>
<type>select</type> <type>select</type>
<items type="array"> <items type="array">
<numIndex index="0" type="array"> <numIndex index="0" type="array">
<numIndex index="0">LLL:EXT:dlf/Resources/Private/Language/PageView.xml:tt_content.pi_flexform.features.overviewmap</numIndex> <numIndex index="0">LLL:EXT:dlf/Resources/Private/Language/PageView.xml:tt_content.pi_flexform.features.overviewmap</numIndex>
<numIndex index="1">OverviewMap</numIndex> <numIndex index="1">OverviewMap</numIndex>
</numIndex> </numIndex>
<numIndex index="1" type="array"> <numIndex index="1" type="array">
<numIndex index="0">LLL:EXT:dlf/Resources/Private/Language/PageView.xml:tt_content.pi_flexform.features.zoompanel</numIndex> <numIndex index="0">LLL:EXT:dlf/Resources/Private/Language/PageView.xml:tt_content.pi_flexform.features.zoompanel</numIndex>
<numIndex index="1">ZoomPanel</numIndex> <numIndex index="1">ZoomPanel</numIndex>
</numIndex> </numIndex>
</items> </items>
<size>5</size> <size>5</size>
<autoSizeMax>15</autoSizeMax> <autoSizeMax>15</autoSizeMax>
<maxitems>25</maxitems> <maxitems>25</maxitems>
<minitems>0</minitems> <minitems>0</minitems>
</config> </config>
</TCEforms> </TCEforms>
</features> </features>
<elementId> <elementId>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/PageView.xml:tt_content.pi_flexform.elementId</label> <label>LLL:EXT:dlf/Resources/Private/Language/PageView.xml:tt_content.pi_flexform.elementId</label>
<config> <config>
<type>input</type> <type>input</type>
<eval>required,alphanum_x,nospace</eval> <eval>required,alphanum_x,nospace</eval>
<default>tx-dlf-map</default> <default>tx-dlf-map</default>
</config> </config>
</TCEforms> </TCEforms>
</elementId> </elementId>
<crop> <crop>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/PageView.xml:tt_content.pi_flexform.crop</label> <label>LLL:EXT:dlf/Resources/Private/Language/PageView.xml:tt_content.pi_flexform.crop</label>
<config> <config>
<type>check</type> <type>check</type>
<default>0</default> <default>0</default>
</config> </config>
</TCEforms> </TCEforms>
</crop> </crop>
<useInternalProxy> <useInternalProxy>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/PageView.xml:tt_content.pi_flexform.useInternalProxy</label> <label>LLL:EXT:dlf/Resources/Private/Language/PageView.xml:tt_content.pi_flexform.useInternalProxy</label>
<config> <config>
<type>check</type> <type>check</type>
<default>0</default> <default>0</default>
</config> </config>
</TCEforms> </TCEforms>
</useInternalProxy> </useInternalProxy>
<magnifier> <magnifier>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/PageView.xml:tt_content.pi_flexform.magnifier</label> <label>LLL:EXT:dlf/Resources/Private/Language/PageView.xml:tt_content.pi_flexform.magnifier</label>
<config> <config>
<type>check</type> <type>check</type>
<default>0</default> <default>0</default>
</config> </config>
</TCEforms> </TCEforms>
</magnifier> </magnifier>
<basketButton> <basketButton>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/PageView.xml:tt_content.pi_flexform.basketButton</label> <label>LLL:EXT:dlf/Resources/Private/Language/PageView.xml:tt_content.pi_flexform.basketButton</label>
<config> <config>
<type>check</type> <type>check</type>
<default>0</default> <default>0</default>
</config> </config>
</TCEforms> </TCEforms>
</basketButton> </basketButton>
<targetBasket> <targetBasket>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/PageView.xml:tt_content.pi_flexform.targetBasket</label> <label>LLL:EXT:dlf/Resources/Private/Language/PageView.xml:tt_content.pi_flexform.targetBasket</label>
<config> <config>
<type>group</type> <type>group</type>
<internal_type>db</internal_type> <internal_type>db</internal_type>
<allowed>pages</allowed> <allowed>pages</allowed>
<size>1</size> <size>1</size>
<maxitems>1</maxitems> <maxitems>1</maxitems>
<minitems>0</minitems> <minitems>0</minitems>
<show_thumbs>1</show_thumbs> <show_thumbs>1</show_thumbs>
<wizards> <wizards>
<suggest> <suggest>
<type>suggest</type> <type>suggest</type>
</suggest> </suggest>
</wizards> </wizards>
</config> </config>
</TCEforms> </TCEforms>
</targetBasket> </targetBasket>
<templateFile> <templateFile>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/PageView.xml:tt_content.pi_flexform.templateFile</label> <label>LLL:EXT:dlf/Resources/Private/Language/PageView.xml:tt_content.pi_flexform.templateFile</label>
<config> <config>
<type>group</type> <type>group</type>
<internal_type>file_reference</internal_type> <internal_type>file_reference</internal_type>
<allowed>tmpl,tpl,html,htm,txt</allowed> <allowed>tmpl,tpl,html,htm,txt</allowed>
<size>1</size> <size>1</size>
<maxitems>1</maxitems> <maxitems>1</maxitems>
<minitems>0</minitems> <minitems>0</minitems>
<disable_controls>upload</disable_controls> <disable_controls>upload</disable_controls>
</config> </config>
</TCEforms> </TCEforms>
</templateFile> </templateFile>
</el> </el>
</ROOT> </ROOT>
</sDEF> </sDEF>
</sheets> </sheets>
</T3DataStructure> </T3DataStructure>

View File

@ -9,300 +9,300 @@
* LICENSE.txt file that was distributed with this source code. * LICENSE.txt file that was distributed with this source code.
--> -->
<T3DataStructure> <T3DataStructure>
<meta> <meta>
<langDisable>1</langDisable> <langDisable>1</langDisable>
</meta> </meta>
<sheets> <sheets>
<sDEF> <sDEF>
<ROOT> <ROOT>
<TCEforms> <TCEforms>
<sheetTitle>LLL:EXT:dlf/Resources/Private/Language/Search.xml:tt_content.pi_flexform.sheet_general</sheetTitle> <sheetTitle>LLL:EXT:dlf/Resources/Private/Language/Search.xml:tt_content.pi_flexform.sheet_general</sheetTitle>
</TCEforms> </TCEforms>
<type>array</type> <type>array</type>
<el> <el>
<pages> <pages>
<TCEforms> <TCEforms>
<onChange>reload</onChange> <onChange>reload</onChange>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:lang/locallang_general.xml:LGL.startingpoint</label> <label>LLL:EXT:lang/locallang_general.xml:LGL.startingpoint</label>
<onChange>reload</onChange> <onChange>reload</onChange>
<config> <config>
<type>group</type> <type>group</type>
<internal_type>db</internal_type> <internal_type>db</internal_type>
<allowed>pages</allowed> <allowed>pages</allowed>
<size>1</size> <size>1</size>
<maxitems>1</maxitems> <maxitems>1</maxitems>
<minitems>1</minitems> <minitems>1</minitems>
<show_thumbs>1</show_thumbs> <show_thumbs>1</show_thumbs>
<wizards> <wizards>
<suggest> <suggest>
<type>suggest</type> <type>suggest</type>
</suggest> </suggest>
</wizards> </wizards>
</config> </config>
</TCEforms> </TCEforms>
</pages> </pages>
<fulltext> <fulltext>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/Search.xml:tt_content.pi_flexform.fulltext</label> <label>LLL:EXT:dlf/Resources/Private/Language/Search.xml:tt_content.pi_flexform.fulltext</label>
<config> <config>
<type>radio</type> <type>radio</type>
<items type="array"> <items type="array">
<numIndex index="0" type="array"> <numIndex index="0" type="array">
<numIndex index="0">LLL:EXT:dlf/Resources/Private/Language/Search.xml:tt_content.pi_flexform.fulltext.yes</numIndex> <numIndex index="0">LLL:EXT:dlf/Resources/Private/Language/Search.xml:tt_content.pi_flexform.fulltext.yes</numIndex>
<numIndex index="1">1</numIndex> <numIndex index="1">1</numIndex>
</numIndex> </numIndex>
<numIndex index="1" type="array"> <numIndex index="1" type="array">
<numIndex index="0">LLL:EXT:dlf/Resources/Private/Language/Search.xml:tt_content.pi_flexform.fulltext.no</numIndex> <numIndex index="0">LLL:EXT:dlf/Resources/Private/Language/Search.xml:tt_content.pi_flexform.fulltext.no</numIndex>
<numIndex index="1">0</numIndex> <numIndex index="1">0</numIndex>
</numIndex> </numIndex>
</items> </items>
<maxitems>1</maxitems> <maxitems>1</maxitems>
<minitems>1</minitems> <minitems>1</minitems>
</config> </config>
</TCEforms> </TCEforms>
</fulltext> </fulltext>
<solrcore> <solrcore>
<TCEforms> <TCEforms>
<displayCond>FIELD:pages:REQ:true</displayCond> <displayCond>FIELD:pages:REQ:true</displayCond>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/Search.xml:tt_content.pi_flexform.solrcore</label> <label>LLL:EXT:dlf/Resources/Private/Language/Search.xml:tt_content.pi_flexform.solrcore</label>
<config> <config>
<type>select</type> <type>select</type>
<items type="array"></items> <items type="array"></items>
<itemsProcFunc>Kitodo\\Dlf\\Hooks\\FormEngine->itemsProcFunc_solrList</itemsProcFunc> <itemsProcFunc>Kitodo\\Dlf\\Hooks\\FormEngine->itemsProcFunc_solrList</itemsProcFunc>
<size>1</size> <size>1</size>
<maxitems>1</maxitems> <maxitems>1</maxitems>
<minitems>0</minitems> <minitems>0</minitems>
</config> </config>
</TCEforms> </TCEforms>
</solrcore> </solrcore>
<extendedSlotCount> <extendedSlotCount>
<TCEforms> <TCEforms>
<displayCond>FIELD:pages:REQ:true</displayCond> <displayCond>FIELD:pages:REQ:true</displayCond>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/Search.xml:tt_content.pi_flexform.extSearch.slotCount</label> <label>LLL:EXT:dlf/Resources/Private/Language/Search.xml:tt_content.pi_flexform.extSearch.slotCount</label>
<config> <config>
<type>input</type> <type>input</type>
<eval>num,int</eval> <eval>num,int</eval>
<range> <range>
<lower>0</lower> <lower>0</lower>
<upper>10</upper> <upper>10</upper>
</range> </range>
<default>0</default> <default>0</default>
</config> </config>
</TCEforms> </TCEforms>
</extendedSlotCount> </extendedSlotCount>
<extendedFields> <extendedFields>
<TCEforms> <TCEforms>
<displayCond>FIELD:pages:REQ:true</displayCond> <displayCond>FIELD:pages:REQ:true</displayCond>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/Search.xml:tt_content.pi_flexform.extSearch.fields</label> <label>LLL:EXT:dlf/Resources/Private/Language/Search.xml:tt_content.pi_flexform.extSearch.fields</label>
<config> <config>
<type>select</type> <type>select</type>
<items type="array"></items> <items type="array"></items>
<itemsProcFunc>Kitodo\\Dlf\\Hooks\\FormEngine->itemsProcFunc_extendedSearchList</itemsProcFunc> <itemsProcFunc>Kitodo\\Dlf\\Hooks\\FormEngine->itemsProcFunc_extendedSearchList</itemsProcFunc>
<size>5</size> <size>5</size>
<autoSizeMax>15</autoSizeMax> <autoSizeMax>15</autoSizeMax>
<maxitems>10</maxitems> <maxitems>10</maxitems>
<minitems>0</minitems> <minitems>0</minitems>
</config> </config>
</TCEforms> </TCEforms>
</extendedFields> </extendedFields>
<searchIn> <searchIn>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/Search.xml:tt_content.pi_flexform.searchIn</label> <label>LLL:EXT:dlf/Resources/Private/Language/Search.xml:tt_content.pi_flexform.searchIn</label>
<config> <config>
<type>select</type> <type>select</type>
<items type="array"> <items type="array">
<numIndex index="0" type="array"> <numIndex index="0" type="array">
<numIndex index="0">LLL:EXT:dlf/Resources/Private/Language/Search.xml:tt_content.pi_flexform.searchIn.none</numIndex> <numIndex index="0">LLL:EXT:dlf/Resources/Private/Language/Search.xml:tt_content.pi_flexform.searchIn.none</numIndex>
<numIndex index="1">none</numIndex> <numIndex index="1">none</numIndex>
</numIndex> </numIndex>
<numIndex index="1" type="array"> <numIndex index="1" type="array">
<numIndex index="0">LLL:EXT:dlf/Resources/Private/Language/Search.xml:tt_content.pi_flexform.searchIn.document</numIndex> <numIndex index="0">LLL:EXT:dlf/Resources/Private/Language/Search.xml:tt_content.pi_flexform.searchIn.document</numIndex>
<numIndex index="1">document</numIndex> <numIndex index="1">document</numIndex>
</numIndex> </numIndex>
<numIndex index="2" type="array"> <numIndex index="2" type="array">
<numIndex index="0">LLL:EXT:dlf/Resources/Private/Language/Search.xml:tt_content.pi_flexform.searchIn.collection</numIndex> <numIndex index="0">LLL:EXT:dlf/Resources/Private/Language/Search.xml:tt_content.pi_flexform.searchIn.collection</numIndex>
<numIndex index="1">collection</numIndex> <numIndex index="1">collection</numIndex>
</numIndex> </numIndex>
<numIndex index="3" type="array"> <numIndex index="3" type="array">
<numIndex index="0">LLL:EXT:dlf/Resources/Private/Language/Search.xml:tt_content.pi_flexform.searchIn.all</numIndex> <numIndex index="0">LLL:EXT:dlf/Resources/Private/Language/Search.xml:tt_content.pi_flexform.searchIn.all</numIndex>
<numIndex index="1">all</numIndex> <numIndex index="1">all</numIndex>
</numIndex> </numIndex>
</items> </items>
<size>1</size> <size>1</size>
<maxitems>1</maxitems> <maxitems>1</maxitems>
<minitems>0</minitems> <minitems>0</minitems>
</config> </config>
</TCEforms> </TCEforms>
</searchIn> </searchIn>
<collections> <collections>
<TCEforms> <TCEforms>
<displayCond>FIELD:pages:REQ:true</displayCond> <displayCond>FIELD:pages:REQ:true</displayCond>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/Search.xml:tt_content.pi_flexform.collections</label> <label>LLL:EXT:dlf/Resources/Private/Language/Search.xml:tt_content.pi_flexform.collections</label>
<config> <config>
<type>select</type> <type>select</type>
<items type="array"/> <items type="array"/>
<itemsProcFunc>Kitodo\\Dlf\\Hooks\\FormEngine->itemsProcFunc_collectionList</itemsProcFunc> <itemsProcFunc>Kitodo\\Dlf\\Hooks\\FormEngine->itemsProcFunc_collectionList</itemsProcFunc>
<size>5</size> <size>5</size>
<autoSizeMax>15</autoSizeMax> <autoSizeMax>15</autoSizeMax>
<maxitems>1024</maxitems> <maxitems>1024</maxitems>
<minitems>0</minitems> <minitems>0</minitems>
</config> </config>
</TCEforms> </TCEforms>
</collections> </collections>
<facets> <facets>
<TCEforms> <TCEforms>
<displayCond>FIELD:pages:REQ:true</displayCond> <displayCond>FIELD:pages:REQ:true</displayCond>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/Search.xml:tt_content.pi_flexform.facets</label> <label>LLL:EXT:dlf/Resources/Private/Language/Search.xml:tt_content.pi_flexform.facets</label>
<config> <config>
<type>select</type> <type>select</type>
<items type="array"></items> <items type="array"></items>
<itemsProcFunc>Kitodo\\Dlf\\Hooks\\FormEngine->itemsProcFunc_facetsList</itemsProcFunc> <itemsProcFunc>Kitodo\\Dlf\\Hooks\\FormEngine->itemsProcFunc_facetsList</itemsProcFunc>
<size>5</size> <size>5</size>
<autoSizeMax>15</autoSizeMax> <autoSizeMax>15</autoSizeMax>
<maxitems>1024</maxitems> <maxitems>1024</maxitems>
<minitems>0</minitems> <minitems>0</minitems>
</config> </config>
</TCEforms> </TCEforms>
</facets> </facets>
<limitFacets> <limitFacets>
<TCEforms> <TCEforms>
<displayCond>FIELD:pages:REQ:true</displayCond> <displayCond>FIELD:pages:REQ:true</displayCond>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/Search.xml:tt_content.pi_flexform.limitFacets</label> <label>LLL:EXT:dlf/Resources/Private/Language/Search.xml:tt_content.pi_flexform.limitFacets</label>
<config> <config>
<type>input</type> <type>input</type>
<eval>num,int</eval> <eval>num,int</eval>
<range> <range>
<lower>1</lower> <lower>1</lower>
<upper>50000</upper> <upper>50000</upper>
</range> </range>
<default>15</default> <default>15</default>
</config> </config>
</TCEforms> </TCEforms>
</limitFacets> </limitFacets>
<resetFacets> <resetFacets>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/Search.xml:tt_content.pi_flexform.resetFacets</label> <label>LLL:EXT:dlf/Resources/Private/Language/Search.xml:tt_content.pi_flexform.resetFacets</label>
<config> <config>
<type>check</type> <type>check</type>
<default>0</default> <default>0</default>
</config> </config>
</TCEforms> </TCEforms>
</resetFacets> </resetFacets>
<sortingFacets> <sortingFacets>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/Search.xml:tt_content.pi_flexform.sortingFacets</label> <label>LLL:EXT:dlf/Resources/Private/Language/Search.xml:tt_content.pi_flexform.sortingFacets</label>
<config> <config>
<type>select</type> <type>select</type>
<items type="array"> <items type="array">
<numIndex index="0" type="array"> <numIndex index="0" type="array">
<numIndex index="0">LLL:EXT:dlf/Resources/Private/Language/Search.xml:tt_content.pi_flexform.sortingFacets.count</numIndex> <numIndex index="0">LLL:EXT:dlf/Resources/Private/Language/Search.xml:tt_content.pi_flexform.sortingFacets.count</numIndex>
<numIndex index="1">count</numIndex> <numIndex index="1">count</numIndex>
</numIndex> </numIndex>
<numIndex index="1" type="array"> <numIndex index="1" type="array">
<numIndex index="0">LLL:EXT:dlf/Resources/Private/Language/Search.xml:tt_content.pi_flexform.sortingFacets.index</numIndex> <numIndex index="0">LLL:EXT:dlf/Resources/Private/Language/Search.xml:tt_content.pi_flexform.sortingFacets.index</numIndex>
<numIndex index="1">index</numIndex> <numIndex index="1">index</numIndex>
</numIndex> </numIndex>
</items> </items>
<size>1</size> <size>1</size>
<maxitems>1</maxitems> <maxitems>1</maxitems>
<minitems>0</minitems> <minitems>0</minitems>
</config> </config>
</TCEforms> </TCEforms>
</sortingFacets> </sortingFacets>
<suggest> <suggest>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/Search.xml:tt_content.pi_flexform.suggest</label> <label>LLL:EXT:dlf/Resources/Private/Language/Search.xml:tt_content.pi_flexform.suggest</label>
<config> <config>
<type>check</type> <type>check</type>
<default>1</default> <default>1</default>
</config> </config>
</TCEforms> </TCEforms>
</suggest> </suggest>
<showLogicalPageField> <showLogicalPageField>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/Search.xml:tt_content.pi_flexform.showLogicalPageField</label> <label>LLL:EXT:dlf/Resources/Private/Language/Search.xml:tt_content.pi_flexform.showLogicalPageField</label>
<config> <config>
<type>check</type> <type>check</type>
<default>0</default> <default>0</default>
</config> </config>
</TCEforms> </TCEforms>
</showLogicalPageField> </showLogicalPageField>
<showSingleResult> <showSingleResult>
<TCEforms> <TCEforms>
<onChange>reload</onChange> <onChange>reload</onChange>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/Search.xml:tt_content.pi_flexform.showSingleResult</label> <label>LLL:EXT:dlf/Resources/Private/Language/Search.xml:tt_content.pi_flexform.showSingleResult</label>
<config> <config>
<type>check</type> <type>check</type>
<default>0</default> <default>0</default>
</config> </config>
</TCEforms> </TCEforms>
</showSingleResult> </showSingleResult>
<targetPid> <targetPid>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/Search.xml:tt_content.pi_flexform.targetPid</label> <label>LLL:EXT:dlf/Resources/Private/Language/Search.xml:tt_content.pi_flexform.targetPid</label>
<config> <config>
<type>group</type> <type>group</type>
<internal_type>db</internal_type> <internal_type>db</internal_type>
<allowed>pages</allowed> <allowed>pages</allowed>
<size>1</size> <size>1</size>
<maxitems>1</maxitems> <maxitems>1</maxitems>
<minitems>1</minitems> <minitems>1</minitems>
<show_thumbs>1</show_thumbs> <show_thumbs>1</show_thumbs>
<wizards> <wizards>
<suggest> <suggest>
<type>suggest</type> <type>suggest</type>
</suggest> </suggest>
</wizards> </wizards>
</config> </config>
</TCEforms> </TCEforms>
</targetPid> </targetPid>
<targetPidPageView> <targetPidPageView>
<TCEforms> <TCEforms>
<displayCond>FIELD:showSingleResult:=:1</displayCond> <displayCond>FIELD:showSingleResult:=:1</displayCond>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/Search.xml:tt_content.pi_flexform.targetPidPageView</label> <label>LLL:EXT:dlf/Resources/Private/Language/Search.xml:tt_content.pi_flexform.targetPidPageView</label>
<config> <config>
<type>group</type> <type>group</type>
<internal_type>db</internal_type> <internal_type>db</internal_type>
<allowed>pages</allowed> <allowed>pages</allowed>
<size>1</size> <size>1</size>
<maxitems>1</maxitems> <maxitems>1</maxitems>
<minitems>1</minitems> <minitems>1</minitems>
</config> </config>
</TCEforms> </TCEforms>
</targetPidPageView> </targetPidPageView>
<templateFile> <templateFile>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/Search.xml:tt_content.pi_flexform.templateFile</label> <label>LLL:EXT:dlf/Resources/Private/Language/Search.xml:tt_content.pi_flexform.templateFile</label>
<config> <config>
<type>group</type> <type>group</type>
<internal_type>file_reference</internal_type> <internal_type>file_reference</internal_type>
<allowed>tmpl,tpl,html,htm,txt</allowed> <allowed>tmpl,tpl,html,htm,txt</allowed>
<size>1</size> <size>1</size>
<maxitems>1</maxitems> <maxitems>1</maxitems>
<minitems>0</minitems> <minitems>0</minitems>
<disable_controls>upload</disable_controls> <disable_controls>upload</disable_controls>
</config> </config>
</TCEforms> </TCEforms>
</templateFile> </templateFile>
</el> </el>
</ROOT> </ROOT>
</sDEF> </sDEF>
</sheets> </sheets>
</T3DataStructure> </T3DataStructure>

View File

@ -9,69 +9,69 @@
* LICENSE.txt file that was distributed with this source code. * LICENSE.txt file that was distributed with this source code.
--> -->
<T3DataStructure> <T3DataStructure>
<meta> <meta>
<langDisable>1</langDisable> <langDisable>1</langDisable>
</meta> </meta>
<sheets> <sheets>
<sDEF> <sDEF>
<ROOT> <ROOT>
<TCEforms> <TCEforms>
<sheetTitle>LLL:EXT:dlf/Resources/Private/Language/Statistics.xml:tt_content.pi_flexform.sheet_general</sheetTitle> <sheetTitle>LLL:EXT:dlf/Resources/Private/Language/Statistics.xml:tt_content.pi_flexform.sheet_general</sheetTitle>
</TCEforms> </TCEforms>
<type>array</type> <type>array</type>
<el> <el>
<pages> <pages>
<TCEforms> <TCEforms>
<onChange>reload</onChange> <onChange>reload</onChange>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:lang/locallang_general.xml:LGL.startingpoint</label> <label>LLL:EXT:lang/locallang_general.xml:LGL.startingpoint</label>
<config> <config>
<type>group</type> <type>group</type>
<internal_type>db</internal_type> <internal_type>db</internal_type>
<allowed>pages</allowed> <allowed>pages</allowed>
<size>1</size> <size>1</size>
<maxitems>1</maxitems> <maxitems>1</maxitems>
<minitems>1</minitems> <minitems>1</minitems>
<show_thumbs>1</show_thumbs> <show_thumbs>1</show_thumbs>
<wizards> <wizards>
<suggest> <suggest>
<type>suggest</type> <type>suggest</type>
</suggest> </suggest>
</wizards> </wizards>
</config> </config>
</TCEforms> </TCEforms>
</pages> </pages>
<collections> <collections>
<TCEforms> <TCEforms>
<displayCond>FIELD:pages:REQ:true</displayCond> <displayCond>FIELD:pages:REQ:true</displayCond>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/Statistics.xml:tt_content.pi_flexform.collections</label> <label>LLL:EXT:dlf/Resources/Private/Language/Statistics.xml:tt_content.pi_flexform.collections</label>
<config> <config>
<type>select</type> <type>select</type>
<items type="array"></items> <items type="array"></items>
<itemsProcFunc>Kitodo\\Dlf\\Hooks\\FormEngine->itemsProcFunc_collectionList</itemsProcFunc> <itemsProcFunc>Kitodo\\Dlf\\Hooks\\FormEngine->itemsProcFunc_collectionList</itemsProcFunc>
<size>5</size> <size>5</size>
<autoSizeMax>15</autoSizeMax> <autoSizeMax>15</autoSizeMax>
<maxitems>1024</maxitems> <maxitems>1024</maxitems>
<minitems>0</minitems> <minitems>0</minitems>
</config> </config>
</TCEforms> </TCEforms>
</collections> </collections>
<description> <description>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/Statistics.xml:tt_content.pi_flexform.description</label> <label>LLL:EXT:dlf/Resources/Private/Language/Statistics.xml:tt_content.pi_flexform.description</label>
<config> <config>
<type>text</type> <type>text</type>
<cols>30</cols> <cols>30</cols>
<rows>10</rows> <rows>10</rows>
<wrap>virtual</wrap> <wrap>virtual</wrap>
</config> </config>
<defaultExtras>richtext[undo,redo,cut,copy,paste,link,image,line,acronym,chMode,blockstylelabel,formatblock,blockstyle,textstylelabel,textstyle,bold,italic,unorderedlist,orderedlist]:rte_transform[mode=ts_css]</defaultExtras> <defaultExtras>richtext[undo,redo,cut,copy,paste,link,image,line,acronym,chMode,blockstylelabel,formatblock,blockstyle,textstylelabel,textstyle,bold,italic,unorderedlist,orderedlist]:rte_transform[mode=ts_css]</defaultExtras>
</TCEforms> </TCEforms>
</description> </description>
</el> </el>
</ROOT> </ROOT>
</sDEF> </sDEF>
</sheets> </sheets>
</T3DataStructure> </T3DataStructure>

View File

@ -9,114 +9,114 @@
* LICENSE.txt file that was distributed with this source code. * LICENSE.txt file that was distributed with this source code.
--> -->
<T3DataStructure> <T3DataStructure>
<meta> <meta>
<langDisable>1</langDisable> <langDisable>1</langDisable>
</meta> </meta>
<sheets> <sheets>
<sDEF> <sDEF>
<ROOT> <ROOT>
<TCEforms> <TCEforms>
<sheetTitle>LLL:EXT:dlf/Resources/Private/Language/TableOfContents.xml:tt_content.pi_flexform.sheet_general</sheetTitle> <sheetTitle>LLL:EXT:dlf/Resources/Private/Language/TableOfContents.xml:tt_content.pi_flexform.sheet_general</sheetTitle>
</TCEforms> </TCEforms>
<type>array</type> <type>array</type>
<el> <el>
<pages> <pages>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:lang/locallang_general.xml:LGL.startingpoint</label> <label>LLL:EXT:lang/locallang_general.xml:LGL.startingpoint</label>
<config> <config>
<type>group</type> <type>group</type>
<internal_type>db</internal_type> <internal_type>db</internal_type>
<allowed>pages</allowed> <allowed>pages</allowed>
<size>1</size> <size>1</size>
<maxitems>1</maxitems> <maxitems>1</maxitems>
<minitems>1</minitems> <minitems>1</minitems>
<show_thumbs>1</show_thumbs> <show_thumbs>1</show_thumbs>
<wizards> <wizards>
<suggest> <suggest>
<type>suggest</type> <type>suggest</type>
</suggest> </suggest>
</wizards> </wizards>
</config> </config>
</TCEforms> </TCEforms>
</pages> </pages>
<excludeOther> <excludeOther>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/TableOfContents.xml:tt_content.pi_flexform.excludeOther</label> <label>LLL:EXT:dlf/Resources/Private/Language/TableOfContents.xml:tt_content.pi_flexform.excludeOther</label>
<config> <config>
<type>check</type> <type>check</type>
<default>1</default> <default>1</default>
</config> </config>
</TCEforms> </TCEforms>
</excludeOther> </excludeOther>
<basketButton> <basketButton>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/TableOfContents.xml:tt_content.pi_flexform.basketButton</label> <label>LLL:EXT:dlf/Resources/Private/Language/TableOfContents.xml:tt_content.pi_flexform.basketButton</label>
<config> <config>
<type>check</type> <type>check</type>
<default>0</default> <default>0</default>
</config> </config>
</TCEforms> </TCEforms>
</basketButton> </basketButton>
<targetBasket> <targetBasket>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/TableOfContents.xml:tt_content.pi_flexform.targetBasket</label> <label>LLL:EXT:dlf/Resources/Private/Language/TableOfContents.xml:tt_content.pi_flexform.targetBasket</label>
<config> <config>
<type>group</type> <type>group</type>
<internal_type>db</internal_type> <internal_type>db</internal_type>
<allowed>pages</allowed> <allowed>pages</allowed>
<size>1</size> <size>1</size>
<maxitems>1</maxitems> <maxitems>1</maxitems>
<minitems>0</minitems> <minitems>0</minitems>
<show_thumbs>1</show_thumbs> <show_thumbs>1</show_thumbs>
<wizards> <wizards>
<suggest> <suggest>
<type>suggest</type> <type>suggest</type>
</suggest> </suggest>
</wizards> </wizards>
</config> </config>
</TCEforms> </TCEforms>
</targetBasket> </targetBasket>
<targetPid> <targetPid>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/TableOfContents.xml:tt_content.pi_flexform.targetPid</label> <label>LLL:EXT:dlf/Resources/Private/Language/TableOfContents.xml:tt_content.pi_flexform.targetPid</label>
<config> <config>
<type>group</type> <type>group</type>
<internal_type>db</internal_type> <internal_type>db</internal_type>
<allowed>pages</allowed> <allowed>pages</allowed>
<size>1</size> <size>1</size>
<maxitems>1</maxitems> <maxitems>1</maxitems>
<minitems>0</minitems> <minitems>0</minitems>
<show_thumbs>1</show_thumbs> <show_thumbs>1</show_thumbs>
<wizards> <wizards>
<suggest> <suggest>
<type>suggest</type> <type>suggest</type>
</suggest> </suggest>
</wizards> </wizards>
</config> </config>
</TCEforms> </TCEforms>
</targetPid> </targetPid>
<templateFile> <templateFile>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/TableOfContents.xml:tt_content.pi_flexform.templateFile</label> <label>LLL:EXT:dlf/Resources/Private/Language/TableOfContents.xml:tt_content.pi_flexform.templateFile</label>
<config> <config>
<type>group</type> <type>group</type>
<internal_type>file_reference</internal_type> <internal_type>file_reference</internal_type>
<allowed>tmpl,tpl,html,htm,txt</allowed> <allowed>tmpl,tpl,html,htm,txt</allowed>
<size>1</size> <size>1</size>
<maxitems>1</maxitems> <maxitems>1</maxitems>
<minitems>0</minitems> <minitems>0</minitems>
<disable_controls>upload</disable_controls> <disable_controls>upload</disable_controls>
</config> </config>
</TCEforms> </TCEforms>
</templateFile> </templateFile>
</el> </el>
</ROOT> </ROOT>
</sDEF> </sDEF>
</sheets> </sheets>
</T3DataStructure> </T3DataStructure>

View File

@ -9,81 +9,81 @@
* LICENSE.txt file that was distributed with this source code. * LICENSE.txt file that was distributed with this source code.
--> -->
<T3DataStructure> <T3DataStructure>
<meta> <meta>
<langDisable>1</langDisable> <langDisable>1</langDisable>
</meta> </meta>
<sheets> <sheets>
<sDEF> <sDEF>
<ROOT> <ROOT>
<TCEforms> <TCEforms>
<sheetTitle>LLL:EXT:dlf/Resources/Private/Language/Toolbox.xml:tt_content.pi_flexform.sheet_general</sheetTitle> <sheetTitle>LLL:EXT:dlf/Resources/Private/Language/Toolbox.xml:tt_content.pi_flexform.sheet_general</sheetTitle>
</TCEforms> </TCEforms>
<type>array</type> <type>array</type>
<el> <el>
<pages> <pages>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:lang/locallang_general.xml:LGL.startingpoint</label> <label>LLL:EXT:lang/locallang_general.xml:LGL.startingpoint</label>
<config> <config>
<type>group</type> <type>group</type>
<internal_type>db</internal_type> <internal_type>db</internal_type>
<allowed>pages</allowed> <allowed>pages</allowed>
<size>1</size> <size>1</size>
<maxitems>1</maxitems> <maxitems>1</maxitems>
<minitems>1</minitems> <minitems>1</minitems>
<show_thumbs>1</show_thumbs> <show_thumbs>1</show_thumbs>
<wizards> <wizards>
<suggest> <suggest>
<type>suggest</type> <type>suggest</type>
</suggest> </suggest>
</wizards> </wizards>
</config> </config>
</TCEforms> </TCEforms>
</pages> </pages>
<tools> <tools>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/Toolbox.xml:tt_content.pi_flexform.tools</label> <label>LLL:EXT:dlf/Resources/Private/Language/Toolbox.xml:tt_content.pi_flexform.tools</label>
<config> <config>
<type>select</type> <type>select</type>
<items type="array"></items> <items type="array"></items>
<itemsProcFunc>Kitodo\\Dlf\\Hooks\\FormEngine->itemsProcFunc_toolList</itemsProcFunc> <itemsProcFunc>Kitodo\\Dlf\\Hooks\\FormEngine->itemsProcFunc_toolList</itemsProcFunc>
<size>5</size> <size>5</size>
<autoSizeMax>15</autoSizeMax> <autoSizeMax>15</autoSizeMax>
<maxitems>1024</maxitems> <maxitems>1024</maxitems>
<minitems>1</minitems> <minitems>1</minitems>
</config> </config>
</TCEforms> </TCEforms>
</tools> </tools>
<fileGrpsImageDownload> <fileGrpsImageDownload>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/Toolbox.xml:tt_content.pi_flexform.fileGrps</label> <label>LLL:EXT:dlf/Resources/Private/Language/Toolbox.xml:tt_content.pi_flexform.fileGrps</label>
<config> <config>
<type>input</type> <type>input</type>
<size>30</size> <size>30</size>
<max>30</max> <max>30</max>
<default>MIN,DEFAULT,MAX</default> <default>MIN,DEFAULT,MAX</default>
</config> </config>
</TCEforms> </TCEforms>
</fileGrpsImageDownload> </fileGrpsImageDownload>
<templateFile> <templateFile>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/Toolbox.xml:tt_content.pi_flexform.templateFile</label> <label>LLL:EXT:dlf/Resources/Private/Language/Toolbox.xml:tt_content.pi_flexform.templateFile</label>
<config> <config>
<type>group</type> <type>group</type>
<internal_type>file_reference</internal_type> <internal_type>file_reference</internal_type>
<allowed>tmpl,tpl,html,htm,txt</allowed> <allowed>tmpl,tpl,html,htm,txt</allowed>
<size>1</size> <size>1</size>
<maxitems>1</maxitems> <maxitems>1</maxitems>
<minitems>0</minitems> <minitems>0</minitems>
<disable_controls>upload</disable_controls> <disable_controls>upload</disable_controls>
</config> </config>
</TCEforms> </TCEforms>
</templateFile> </templateFile>
</el> </el>
</ROOT> </ROOT>
</sDEF> </sDEF>
</sheets> </sheets>
</T3DataStructure> </T3DataStructure>

View File

@ -9,48 +9,48 @@
* LICENSE.txt file that was distributed with this source code. * LICENSE.txt file that was distributed with this source code.
--> -->
<T3DataStructure> <T3DataStructure>
<meta> <meta>
<langDisable>1</langDisable> <langDisable>1</langDisable>
</meta> </meta>
<sheets> <sheets>
<sDEF> <sDEF>
<ROOT> <ROOT>
<TCEforms> <TCEforms>
<sheetTitle>LLL:EXT:dlf/Resources/Private/Language/Validator.xml:tt_content.pi_flexform.sheet_general</sheetTitle> <sheetTitle>LLL:EXT:dlf/Resources/Private/Language/Validator.xml:tt_content.pi_flexform.sheet_general</sheetTitle>
</TCEforms> </TCEforms>
<type>array</type> <type>array</type>
<el> <el>
<pages> <pages>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:lang/locallang_general.xml:LGL.startingpoint</label> <label>LLL:EXT:lang/locallang_general.xml:LGL.startingpoint</label>
<config> <config>
<type>group</type> <type>group</type>
<internal_type>db</internal_type> <internal_type>db</internal_type>
<allowed>pages</allowed> <allowed>pages</allowed>
<size>1</size> <size>1</size>
<maxitems>1</maxitems> <maxitems>1</maxitems>
<minitems>1</minitems> <minitems>1</minitems>
</config> </config>
</TCEforms> </TCEforms>
</pages> </pages>
<templateFile> <templateFile>
<TCEforms> <TCEforms>
<exclude>1</exclude> <exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/Validator.xml:tt_content.pi_flexform.templateFile</label> <label>LLL:EXT:dlf/Resources/Private/Language/Validator.xml:tt_content.pi_flexform.templateFile</label>
<config> <config>
<type>group</type> <type>group</type>
<internal_type>file_reference</internal_type> <internal_type>file_reference</internal_type>
<allowed>tmpl,tpl,html,htm,txt</allowed> <allowed>tmpl,tpl,html,htm,txt</allowed>
<size>1</size> <size>1</size>
<maxitems>1</maxitems> <maxitems>1</maxitems>
<minitems>0</minitems> <minitems>0</minitems>
<disable_controls>upload</disable_controls> <disable_controls>upload</disable_controls>
</config> </config>
</TCEforms> </TCEforms>
</templateFile> </templateFile>
</el> </el>
</ROOT> </ROOT>
</sDEF> </sDEF>
</sheets> </sheets>
</T3DataStructure> </T3DataStructure>

View File

@ -16,9 +16,9 @@ return [
'crdate' => 'crdate', 'crdate' => 'crdate',
'cruser_id' => 'user_id', 'cruser_id' => 'user_id',
'default_sortby' => 'ORDER BY label', 'default_sortby' => 'ORDER BY label',
'delete' => 'deleted', 'delete' => 'deleted',
'iconfile' => 'EXT:dlf/Resources/Public/Icons/txdlfreport.png', 'iconfile' => 'EXT:dlf/Resources/Public/Icons/txdlfreport.png',
'rootLevel' => 0, 'rootLevel' => 0,
'dividers2tabs' => 2, 'dividers2tabs' => 2,
'searchFields' => 'label,name,crdate', 'searchFields' => 'label,name,crdate',
], ],

View File

@ -19,9 +19,9 @@ return [
'transOrigPointerField' => 'l18n_parent', 'transOrigPointerField' => 'l18n_parent',
'transOrigDiffSourceField' => 'l18n_diffsource', 'transOrigDiffSourceField' => 'l18n_diffsource',
'default_sortby' => 'ORDER BY label', 'default_sortby' => 'ORDER BY label',
'delete' => 'deleted', 'delete' => 'deleted',
'iconfile' => 'EXT:dlf/Resources/Public/Icons/txdlfbasket.png', 'iconfile' => 'EXT:dlf/Resources/Public/Icons/txdlfbasket.png',
'rootLevel' => 0, 'rootLevel' => 0,
'dividers2tabs' => 2, 'dividers2tabs' => 2,
'searchFields' => '', 'searchFields' => '',
], ],

View File

@ -22,14 +22,14 @@ return [
'transOrigPointerField' => 'l18n_parent', 'transOrigPointerField' => 'l18n_parent',
'transOrigDiffSourceField' => 'l18n_diffsource', 'transOrigDiffSourceField' => 'l18n_diffsource',
'default_sortby' => 'ORDER BY label', 'default_sortby' => 'ORDER BY label',
'delete' => 'deleted', 'delete' => 'deleted',
'enablecolumns' => [ 'enablecolumns' => [
'disabled' => 'hidden', 'disabled' => 'hidden',
'fe_group' => 'fe_group', 'fe_group' => 'fe_group',
], ],
'requestUpdate' => 'sys_language_uid', 'requestUpdate' => 'sys_language_uid',
'iconfile' => 'EXT:dlf/Resources/Public/Icons/txdlfcollections.png', 'iconfile' => 'EXT:dlf/Resources/Public/Icons/txdlfcollections.png',
'rootLevel' => 0, 'rootLevel' => 0,
'dividers2tabs' => 2, 'dividers2tabs' => 2,
'searchFields' => 'label,index_name,oai_name,fe_cruser_id', 'searchFields' => 'label,index_name,oai_name,fe_cruser_id',
], ],

View File

@ -17,15 +17,15 @@ return [
'crdate' => 'crdate', 'crdate' => 'crdate',
'cruser_id' => 'cruser_id', 'cruser_id' => 'cruser_id',
'default_sortby' => 'ORDER BY title_sorting', 'default_sortby' => 'ORDER BY title_sorting',
'delete' => 'deleted', 'delete' => 'deleted',
'enablecolumns' => [ 'enablecolumns' => [
'disabled' => 'hidden', 'disabled' => 'hidden',
'starttime' => 'starttime', 'starttime' => 'starttime',
'endtime' => 'endtime', 'endtime' => 'endtime',
'fe_group' => 'fe_group', 'fe_group' => 'fe_group',
], ],
'iconfile' => 'EXT:dlf/Resources/Public/Icons/txdlfdocuments.png', 'iconfile' => 'EXT:dlf/Resources/Public/Icons/txdlfdocuments.png',
'rootLevel' => 0, 'rootLevel' => 0,
'dividers2tabs' => 2, 'dividers2tabs' => 2,
'searchFields' => 'title,volume,author,year,place,uid,prod_id,location,oai_id,opac_id,union_id,urn', 'searchFields' => 'title,volume,author,year,place,uid,prod_id,location,oai_id,opac_id,union_id,urn',
], ],

View File

@ -17,9 +17,9 @@ return [
'crdate' => 'crdate', 'crdate' => 'crdate',
'cruser_id' => 'cruser_id', 'cruser_id' => 'cruser_id',
'default_sortby' => 'ORDER BY type', 'default_sortby' => 'ORDER BY type',
'delete' => 'deleted', 'delete' => 'deleted',
'iconfile' => 'EXT:dlf/Resources/Public/Icons/txdlfformats.png', 'iconfile' => 'EXT:dlf/Resources/Public/Icons/txdlfformats.png',
'rootLevel' => 1, 'rootLevel' => 1,
'dividers2tabs' => 2, 'dividers2tabs' => 2,
'searchFields' => 'type,class', 'searchFields' => 'type,class',
], ],

View File

@ -20,9 +20,9 @@ return [
'transOrigPointerField' => 'l18n_parent', 'transOrigPointerField' => 'l18n_parent',
'transOrigDiffSourceField' => 'l18n_diffsource', 'transOrigDiffSourceField' => 'l18n_diffsource',
'default_sortby' => 'ORDER BY label', 'default_sortby' => 'ORDER BY label',
'delete' => 'deleted', 'delete' => 'deleted',
'iconfile' => 'EXT:dlf/Resources/Public/Icons/txdlflibraries.png', 'iconfile' => 'EXT:dlf/Resources/Public/Icons/txdlflibraries.png',
'rootLevel' => 0, 'rootLevel' => 0,
'dividers2tabs' => 2, 'dividers2tabs' => 2,
'searchFields' => 'label,website,contact', 'searchFields' => 'label,website,contact',
], ],

View File

@ -14,9 +14,9 @@ return [
'title' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_mail', 'title' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_mail',
'label' => 'label', 'label' => 'label',
'sortby' => 'sorting', 'sortby' => 'sorting',
'delete' => 'deleted', 'delete' => 'deleted',
'iconfile' => 'EXT:dlf/Resources/Public/Icons/txdlfemail.png', 'iconfile' => 'EXT:dlf/Resources/Public/Icons/txdlfemail.png',
'rootLevel' => 0, 'rootLevel' => 0,
'dividers2tabs' => 2, 'dividers2tabs' => 2,
'searchFields' => 'label,name,mail', 'searchFields' => 'label,name,mail',
], ],

View File

@ -20,12 +20,12 @@ return [
'transOrigPointerField' => 'l18n_parent', 'transOrigPointerField' => 'l18n_parent',
'transOrigDiffSourceField' => 'l18n_diffsource', 'transOrigDiffSourceField' => 'l18n_diffsource',
'sortby' => 'sorting', 'sortby' => 'sorting',
'delete' => 'deleted', 'delete' => 'deleted',
'enablecolumns' => [ 'enablecolumns' => [
'disabled' => 'hidden', 'disabled' => 'hidden',
], ],
'iconfile' => 'EXT:dlf/Resources/Public/Icons/txdlfmetadata.png', 'iconfile' => 'EXT:dlf/Resources/Public/Icons/txdlfmetadata.png',
'rootLevel' => 0, 'rootLevel' => 0,
'dividers2tabs' => 2, 'dividers2tabs' => 2,
'searchFields' => 'label,index_name', 'searchFields' => 'label,index_name',
], ],

View File

@ -17,12 +17,12 @@ return [
'crdate' => 'crdate', 'crdate' => 'crdate',
'cruser_id' => 'cruser_id', 'cruser_id' => 'cruser_id',
'default_sortby' => 'ORDER BY encoded', 'default_sortby' => 'ORDER BY encoded',
'delete' => 'deleted', 'delete' => 'deleted',
'iconfile' => 'EXT:dlf/Resources/Public/Icons/txdlfmetadata.png', 'iconfile' => 'EXT:dlf/Resources/Public/Icons/txdlfmetadata.png',
'rootLevel' => 0, 'rootLevel' => 0,
'dividers2tabs' => 2, 'dividers2tabs' => 2,
'searchFields' => 'encoded', 'searchFields' => 'encoded',
'hideTable' => 1, 'hideTable' => 1,
], ],
'feInterface' => [ 'feInterface' => [
'fe_admin_fieldList' => '', 'fe_admin_fieldList' => '',

View File

@ -14,9 +14,9 @@ return [
'title' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_printer', 'title' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_printer',
'label' => 'label', 'label' => 'label',
'default_sortby' => 'ORDER BY label', 'default_sortby' => 'ORDER BY label',
'delete' => 'deleted', 'delete' => 'deleted',
'iconfile' => 'EXT:dlf/Resources/Public/Icons/txdlfprinter.png', 'iconfile' => 'EXT:dlf/Resources/Public/Icons/txdlfprinter.png',
'rootLevel' => 0, 'rootLevel' => 0,
'dividers2tabs' => 2, 'dividers2tabs' => 2,
'searchFields' => 'label,print', 'searchFields' => 'label,print',
], ],

View File

@ -17,9 +17,9 @@ return [
'crdate' => 'crdate', 'crdate' => 'crdate',
'cruser_id' => 'cruser_id', 'cruser_id' => 'cruser_id',
'default_sortby' => 'ORDER BY label', 'default_sortby' => 'ORDER BY label',
'delete' => 'deleted', 'delete' => 'deleted',
'iconfile' => 'EXT:dlf/Resources/Public/Icons/txdlfsolrcores.png', 'iconfile' => 'EXT:dlf/Resources/Public/Icons/txdlfsolrcores.png',
'rootLevel' => -1, 'rootLevel' => -1,
'dividers2tabs' => 2, 'dividers2tabs' => 2,
'searchFields' => 'label,index_name', 'searchFields' => 'label,index_name',
], ],

View File

@ -20,12 +20,12 @@ return [
'transOrigPointerField' => 'l18n_parent', 'transOrigPointerField' => 'l18n_parent',
'transOrigDiffSourceField' => 'l18n_diffsource', 'transOrigDiffSourceField' => 'l18n_diffsource',
'default_sortby' => 'ORDER BY label', 'default_sortby' => 'ORDER BY label',
'delete' => 'deleted', 'delete' => 'deleted',
'enablecolumns' => [ 'enablecolumns' => [
'disabled' => 'hidden', 'disabled' => 'hidden',
], ],
'iconfile' => 'EXT:dlf/Resources/Public/Icons/txdlfstructures.png', 'iconfile' => 'EXT:dlf/Resources/Public/Icons/txdlfstructures.png',
'rootLevel' => 0, 'rootLevel' => 0,
'dividers2tabs' => 2, 'dividers2tabs' => 2,
'searchFields' => 'label,index_name,oai_name', 'searchFields' => 'label,index_name,oai_name',
'requestUpdate' => 'toplevel', 'requestUpdate' => 'toplevel',

View File

@ -1,35 +1,35 @@
plugin.Search.facetsConf { plugin.Search.facetsConf {
expAll = 0 expAll = 0
1 = TMENU 1 = TMENU
1 { 1 {
noBlur = 1 noBlur = 1
wrap = <ul>|</ul> wrap = <ul>|</ul>
NO = 1 NO = 1
NO { NO {
stdWrap.crop = 55 | &nbsp;... | 1 stdWrap.crop = 55 | &nbsp;... | 1
doNotLinkIt.field = doNotLinkIt doNotLinkIt.field = doNotLinkIt
wrapItemAndSub = <li class="tx-dlf-search-no">|</li> wrapItemAndSub = <li class="tx-dlf-search-no">|</li>
} }
IFSUB < .NO IFSUB < .NO
IFSUB.wrapItemAndSub = <li class="tx-dlf-search-no tx-dlf-search-ifsub">|</li> IFSUB.wrapItemAndSub = <li class="tx-dlf-search-no tx-dlf-search-ifsub">|</li>
ACT < .NO ACT < .NO
ACT.wrapItemAndSub = <li class="tx-dlf-search-act">|</li> ACT.wrapItemAndSub = <li class="tx-dlf-search-act">|</li>
ACTIFSUB < .NO ACTIFSUB < .NO
ACTIFSUB.wrapItemAndSub = <li class="tx-dlf-search-act tx-dlf-search-ifsub">|</li> ACTIFSUB.wrapItemAndSub = <li class="tx-dlf-search-act tx-dlf-search-ifsub">|</li>
} }
2 < .1 2 < .1
2 { 2 {
NO.stdWrap { NO.stdWrap {
crop = 55 | &nbsp;... | 1 crop = 55 | &nbsp;... | 1
append.fieldRequired = count append.fieldRequired = count
append = TEXT append = TEXT
append.field = count append.field = count
append.wrap = &nbsp;(|) append.wrap = &nbsp;(|)
} }
IFSUB > IFSUB >
ACT > ACT >
ACTIFSUB > ACTIFSUB >
CUR < .NO CUR < .NO
CUR.wrapItemAndSub = <li class="tx-dlf-search-cur">|</li> CUR.wrapItemAndSub = <li class="tx-dlf-search-cur">|</li>
} }
} }

View File

@ -1,54 +1,54 @@
plugin.TableOfContents.menuConf { plugin.TableOfContents.menuConf {
expAll = 0 expAll = 0
1 = TMENU 1 = TMENU
1 { 1 {
noBlur = 1 noBlur = 1
wrap = <ul>|</ul> wrap = <ul>|</ul>
NO = 1 NO = 1
NO { NO {
stdWrap { stdWrap {
htmlSpecialChars = 1 htmlSpecialChars = 1
htmlSpecialChars.preserveEntities = 1 htmlSpecialChars.preserveEntities = 1
crop = 55 | &nbsp;... | 1 crop = 55 | &nbsp;... | 1
ifEmpty { ifEmpty {
field = type field = type
append.fieldRequired = volume append.fieldRequired = volume
append = TEXT append = TEXT
append.field = volume append.field = volume
append.wrap = &nbsp;| append.wrap = &nbsp;|
} }
dataWrap = <span class="tx-dlf-toc-title">|</span> <span class="tx-dlf-toc-pagination">{field:pagination}</span> dataWrap = <span class="tx-dlf-toc-title">|</span> <span class="tx-dlf-toc-pagination">{field:pagination}</span>
} }
allWrap.cObject = TEXT allWrap.cObject = TEXT
allWrap.cObject { allWrap.cObject {
insertData = 1 insertData = 1
value = | value = |
override.cObject = TEXT override.cObject = TEXT
override.cObject { override.cObject {
value = |<span class="tx-dlf-basket-button">{field:basketButtonHref}</span> value = |<span class="tx-dlf-basket-button">{field:basketButtonHref}</span>
if { if {
isTrue.field = basketButtonHref isTrue.field = basketButtonHref
} }
} }
} }
doNotLinkIt.field = doNotLinkIt doNotLinkIt.field = doNotLinkIt
ATagTitle.field = type // orderlabel ATagTitle.field = type // orderlabel
wrapItemAndSub = <li class="tx-dlf-toc-no">|</li> wrapItemAndSub = <li class="tx-dlf-toc-no">|</li>
} }
IFSUB < .NO IFSUB < .NO
IFSUB.wrapItemAndSub = <li class="tx-dlf-toc-no tx-dlf-toc-ifsub">|</li> IFSUB.wrapItemAndSub = <li class="tx-dlf-toc-no tx-dlf-toc-ifsub">|</li>
CUR < .NO CUR < .NO
CUR.wrapItemAndSub = <li class="tx-dlf-toc-cur">|</li> CUR.wrapItemAndSub = <li class="tx-dlf-toc-cur">|</li>
CURIFSUB < .NO CURIFSUB < .NO
CURIFSUB.wrapItemAndSub = <li class="tx-dlf-toc-cur tx-dlf-toc-ifsub">|</li> CURIFSUB.wrapItemAndSub = <li class="tx-dlf-toc-cur tx-dlf-toc-ifsub">|</li>
ACT < .NO ACT < .NO
ACT.wrapItemAndSub = <li class="tx-dlf-toc-act">|</li> ACT.wrapItemAndSub = <li class="tx-dlf-toc-act">|</li>
ACTIFSUB < .NO ACTIFSUB < .NO
ACTIFSUB.wrapItemAndSub = <li class="tx-dlf-toc-act tx-dlf-toc-ifsub">|</li> ACTIFSUB.wrapItemAndSub = <li class="tx-dlf-toc-act tx-dlf-toc-ifsub">|</li>
} }
2 < .1 2 < .1
3 < .2 3 < .2
4 < .3 4 < .3
5 < .4 5 < .4
6 < .5 6 < .5
} }

View File

@ -13,8 +13,8 @@ System Setup
============ ============
.. contents:: .. contents::
:local: :local:
:depth: 2 :depth: 2
@ -48,10 +48,10 @@ behaviour before TYPO3 6.x.
The install tool writes this configuration to typo3conf/LocalConfiguration.php:: The install tool writes this configuration to typo3conf/LocalConfiguration.php::
'FE' => [ 'FE' => [
'pageNotFoundOnCHashError' => '0', 'pageNotFoundOnCHashError' => '0',
'pageNotFound_handling' => '', 'pageNotFound_handling' => '',
], ],
.. _configuration-solr: .. _configuration-solr:
@ -64,14 +64,14 @@ This extension doesn't include Solr, but just a prepared configuration set.
To setup Apache Solr, perform the following steps: To setup Apache Solr, perform the following steps:
1. Make sure you have Apache Solr 7.4 up and running. 1. Make sure you have Apache Solr 7.4 up and running.
Download Solr from http://lucene.apache.org/solr/. Download Solr from http://lucene.apache.org/solr/.
Other versions since 5.0 should be possible but are not tested. Other versions since 5.0 should be possible but are not tested.
2. Copy the lib/ApacheSolr/configsets/dlf to $SOLR_HOME/configsets/dlf. 2. Copy the lib/ApacheSolr/configsets/dlf to $SOLR_HOME/configsets/dlf.
3. Using basic authentication is optional but recommended. 3. Using basic authentication is optional but recommended.
The documentation is available here: The documentation is available here:
https://lucene.apache.org/solr/guide/7_4/basic-authentication-plugin.html https://lucene.apache.org/solr/guide/7_4/basic-authentication-plugin.html
.. _configuration-typoscript: .. _configuration-typoscript:

View File

@ -42,8 +42,8 @@ How to use the API...
.. code-block:: php .. code-block:: php
$stuff = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance('\\Foo\\Bar\\Utility\\Stuff'); $stuff = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance('\\Foo\\Bar\\Utility\\Stuff');
$stuff->do(); $stuff->do();
or some other language: or some other language:
@ -51,8 +51,8 @@ or some other language:
:linenos: :linenos:
:emphasize-lines: 2-4 :emphasize-lines: 2-4
$(document).ready( $(document).ready(
function () { function () {
doStuff(); doStuff();
} }
); );

View File

@ -13,54 +13,54 @@ Kitodo.Presentation
.. only:: html .. only:: html
:Classification: :Classification:
dlf dlf
:Version: :Version:
|release| |release|
:Language: :Language:
en en
:Description: :Description:
Kitodo.Presentation is a powerful framework for building a METS-based digital library. Kitodo.Presentation is a powerful framework for building a METS-based digital library.
It is highly customizable through a user-friendly backend and flexible design templates. It is highly customizable through a user-friendly backend and flexible design templates.
:Keywords: :Keywords:
kitodo,digital framework,digitization,viewer,library,METS,OAI-PMH kitodo,digital framework,digitization,viewer,library,METS,OAI-PMH
:Copyright: :Copyright:
###YEAR### ###YEAR###
:Author: :Author:
Kitodo. Key to digital objects e.V. Kitodo. Key to digital objects e.V.
:Email: :Email:
contact@kitodo.org contact@kitodo.org
:License: :License:
This document is published under the Open Content License This document is published under the Open Content License
available from http://www.opencontent.org/opl.shtml available from http://www.opencontent.org/opl.shtml
:Rendered: :Rendered:
|today| |today|
The content of this document is related to TYPO3, The content of this document is related to TYPO3,
a GNU/GPL CMS/Framework available from `www.typo3.org <http://www.typo3.org/>`_. a GNU/GPL CMS/Framework available from `www.typo3.org <http://www.typo3.org/>`_.
**Table of Contents** **Table of Contents**
.. toctree:: .. toctree::
:maxdepth: 5 :maxdepth: 5
:titlesonly: :titlesonly:
:glob: :glob:
Introduction/Index Introduction/Index
Administrator/Index Administrator/Index
Configuration/Index Configuration/Index
Plugins/Index Plugins/Index
Community/Index Community/Index
.. Administrator/Index .. Administrator/Index
.. Developer/Index .. Developer/Index
.. Targets .. Targets

View File

@ -13,8 +13,8 @@ Plugin Reference
================ ================
.. contents:: .. contents::
:local: :local:
:depth: 3 :depth: 3
Kitodo Plugin Reference Kitodo Plugin Reference
======================= =======================
@ -43,14 +43,14 @@ Properties
:typoscript:`plugin.AudioPlayer.` :typoscript:`plugin.AudioPlayer.`
=========================== ===================================== ==================== =========================== ===================================== ====================
Property Data type Default Property Data type Default
=========================== ===================================== ==================== =========================== ===================================== ====================
pages_ :ref:`t3tsref:data-type-page-id` pages_ :ref:`t3tsref:data-type-page-id`
excludeOther_ :ref:`t3tsref:data-type-boolean` 1 excludeOther_ :ref:`t3tsref:data-type-boolean` 1
elementId_ :ref:`t3tsref:data-type-string` tx-dlf-audio elementId_ :ref:`t3tsref:data-type-string` tx-dlf-audio
templateFile_ :ref:`t3tsref:data-type-resource` AudioPlayer.tmpl templateFile_ :ref:`t3tsref:data-type-resource` AudioPlayer.tmpl
=========================== ===================================== ==================== =========================== ===================================== ====================
excludeOther excludeOther
"""""""""""" """"""""""""
@ -67,20 +67,20 @@ Basket
:typoscript:`plugin.Basket.` :typoscript:`plugin.Basket.`
=========================== ===================================== ==================== =========================== ===================================== ====================
Property Data type Default Property Data type Default
=========================== ===================================== ==================== =========================== ===================================== ====================
pages_ :ref:`t3tsref:data-type-page-id` pages_ :ref:`t3tsref:data-type-page-id`
pregeneration :ref:`t3tsref:data-type-boolean` 0 pregeneration :ref:`t3tsref:data-type-boolean` 0
pdfgenerate :ref:`t3tsref:data-type-string` pdfgenerate :ref:`t3tsref:data-type-string`
pdfdownload :ref:`t3tsref:data-type-string` pdfdownload :ref:`t3tsref:data-type-string`
pdfprint :ref:`t3tsref:data-type-string` pdfprint :ref:`t3tsref:data-type-string`
pdfparams :ref:`t3tsref:data-type-string` ##docId##,##startpage##,##endpage##,##startx##,##starty##,##endx##,##endy##,##rotation## pdfparams :ref:`t3tsref:data-type-string` ##docId##,##startpage##,##endpage##,##startx##,##starty##,##endx##,##endy##,##rotation##
pdfparamseparator :ref:`t3tsref:data-type-string` `*` pdfparamseparator :ref:`t3tsref:data-type-string` `*`
basketGoToButton :ref:`t3tsref:data-type-boolean` 0 basketGoToButton :ref:`t3tsref:data-type-boolean` 0
targetBasket :ref:`t3tsref:data-type-page-id` targetBasket :ref:`t3tsref:data-type-page-id`
templateFile_ :ref:`t3tsref:data-type-resource` Basket.tmpl templateFile_ :ref:`t3tsref:data-type-resource` Basket.tmpl
=========================== ===================================== ==================== =========================== ===================================== ====================
Calendar Calendar
--------- ---------
@ -89,12 +89,12 @@ Calendar
:typoscript:`plugin.Calendar.` :typoscript:`plugin.Calendar.`
=========================== ===================================== ==================== =========================== ===================================== ====================
Property Data type Default Property Data type Default
=========================== ===================================== ==================== =========================== ===================================== ====================
pages_ :ref:`t3tsref:data-type-page-id` pages_ :ref:`t3tsref:data-type-page-id`
templateFile_ :ref:`t3tsref:data-type-resource` Calendar.tmpl templateFile_ :ref:`t3tsref:data-type-resource` Calendar.tmpl
=========================== ===================================== ==================== =========================== ===================================== ====================
Collection Collection
---------- ----------
@ -105,18 +105,18 @@ The collection plugin shows one collection, all collections or selected collecti
:typoscript:`plugin.Collection.` :typoscript:`plugin.Collection.`
=========================== ===================================== ==================== =========================== ===================================== ====================
Property Data type Default Property Data type Default
=========================== ===================================== ==================== =========================== ===================================== ====================
pages_ :ref:`t3tsref:data-type-page-id` pages_ :ref:`t3tsref:data-type-page-id`
collections :ref:`t3tsref:data-type-list` collections :ref:`t3tsref:data-type-list`
show_userdefined :ref:`t3tsref:data-type-integer` show_userdefined :ref:`t3tsref:data-type-integer`
dont_show_single :ref:`t3tsref:data-type-boolean` 0 dont_show_single :ref:`t3tsref:data-type-boolean` 0
randomize :ref:`t3tsref:data-type-boolean` 0 randomize :ref:`t3tsref:data-type-boolean` 0
targetPid :ref:`t3tsref:data-type-page-id` targetPid :ref:`t3tsref:data-type-page-id`
targetFeed :ref:`t3tsref:data-type-page-id` targetFeed :ref:`t3tsref:data-type-page-id`
templateFile_ :ref:`t3tsref:data-type-resource` Collection.tmpl templateFile_ :ref:`t3tsref:data-type-resource` Collection.tmpl
=========================== ===================================== ==================== =========================== ===================================== ====================
Feeds Feeds
@ -126,19 +126,19 @@ Feeds
:typoscript:`plugin.tx_dlf_feed.` :typoscript:`plugin.tx_dlf_feed.`
=========================== ===================================== ==================== =========================== ===================================== ====================
Property Data type Default Property Data type Default
=========================== ===================================== ==================== =========================== ===================================== ====================
pages_ :ref:`t3tsref:data-type-page-id` pages_ :ref:`t3tsref:data-type-page-id`
collections :ref:`t3tsref:data-type-list` collections :ref:`t3tsref:data-type-list`
excludeOther :ref:`t3tsref:data-type-boolean` 0 excludeOther :ref:`t3tsref:data-type-boolean` 0
library :ref:`t3tsref:data-type-integer` library :ref:`t3tsref:data-type-integer`
limit :ref:`t3tsref:data-type-integer` 50 limit :ref:`t3tsref:data-type-integer` 50
prependSuperiorTitle :ref:`t3tsref:data-type-boolean` 0 prependSuperiorTitle :ref:`t3tsref:data-type-boolean` 0
targetPid :ref:`t3tsref:data-type-page-id` targetPid :ref:`t3tsref:data-type-page-id`
title :ref:`t3tsref:data-type-string` title :ref:`t3tsref:data-type-string`
description :ref:`t3tsref:data-type-string` description :ref:`t3tsref:data-type-string`
=========================== ===================================== ==================== =========================== ===================================== ====================
List View List View
--------- ---------
@ -147,17 +147,17 @@ List View
:typoscript:`plugin.ListView.` :typoscript:`plugin.ListView.`
=========================== ===================================== ==================== =========================== ===================================== ====================
Property Data type Default Property Data type Default
=========================== ===================================== ==================== =========================== ===================================== ====================
pages_ :ref:`t3tsref:data-type-page-id` pages_ :ref:`t3tsref:data-type-page-id`
limit :ref:`t3tsref:data-type-integer` 25 limit :ref:`t3tsref:data-type-integer` 25
targetPid :ref:`t3tsref:data-type-page-id` targetPid :ref:`t3tsref:data-type-page-id`
getTitle :ref:`t3tsref:data-type-boolean` 0 getTitle :ref:`t3tsref:data-type-boolean` 0
basketButton :ref:`t3tsref:data-type-boolean` 0 basketButton :ref:`t3tsref:data-type-boolean` 0
targetBasket :ref:`t3tsref:data-type-page-id` targetBasket :ref:`t3tsref:data-type-page-id`
templateFile_ :ref:`t3tsref:data-type-resource` ListView.tmpl templateFile_ :ref:`t3tsref:data-type-resource` ListView.tmpl
=========================== ===================================== ==================== =========================== ===================================== ====================
Metadata Metadata
-------- --------
@ -166,19 +166,19 @@ Metadata
:typoscript:`plugin.Metadata.` :typoscript:`plugin.Metadata.`
=========================== ===================================== ==================== =========================== ===================================== ====================
Property Data type Default Property Data type Default
=========================== ===================================== ==================== =========================== ===================================== ====================
pages_ :ref:`t3tsref:data-type-page-id` pages_ :ref:`t3tsref:data-type-page-id`
excludeOther :ref:`t3tsref:data-type-boolean` 1 excludeOther :ref:`t3tsref:data-type-boolean` 1
linkTitle :ref:`t3tsref:data-type-boolean` 1 linkTitle :ref:`t3tsref:data-type-boolean` 1
targetPid :ref:`t3tsref:data-type-page-id` targetPid :ref:`t3tsref:data-type-page-id`
getTitle :ref:`t3tsref:data-type-boolean` 1 getTitle :ref:`t3tsref:data-type-boolean` 1
showFull :ref:`t3tsref:data-type-boolean` 1 showFull :ref:`t3tsref:data-type-boolean` 1
rootline :ref:`t3tsref:data-type-integer` 0 rootline :ref:`t3tsref:data-type-integer` 0
separator :ref:`t3tsref:data-type-string` # separator :ref:`t3tsref:data-type-string` #
templateFile_ :ref:`t3tsref:data-type-resource` Metadata.tmpl templateFile_ :ref:`t3tsref:data-type-resource` Metadata.tmpl
=========================== ===================================== ==================== =========================== ===================================== ====================
Navigation Navigation
--------- ---------
@ -187,14 +187,14 @@ Navigation
:typoscript:`plugin.Navigation.` :typoscript:`plugin.Navigation.`
=========================== ===================================== ==================== =========================== ===================================== ====================
Property Data type Default Property Data type Default
=========================== ===================================== ==================== =========================== ===================================== ====================
pages_ :ref:`t3tsref:data-type-page-id` pages_ :ref:`t3tsref:data-type-page-id`
pageStep :ref:`t3tsref:data-type-integer` 5 pageStep :ref:`t3tsref:data-type-integer` 5
targetPid :ref:`t3tsref:data-type-page-id` targetPid :ref:`t3tsref:data-type-page-id`
templateFile_ :ref:`t3tsref:data-type-resource` Navigation.tmpl templateFile_ :ref:`t3tsref:data-type-resource` Navigation.tmpl
=========================== ===================================== ==================== =========================== ===================================== ====================
OAI-PMH OAI-PMH
------- -------
@ -203,17 +203,17 @@ OAI-PMH
:typoscript:`plugin.OaiPmh.` :typoscript:`plugin.OaiPmh.`
=========================== ===================================== ==================== =========================== ===================================== ====================
Property Data type Default Property Data type Default
=========================== ===================================== ==================== =========================== ===================================== ====================
pages_ :ref:`t3tsref:data-type-page-id` pages_ :ref:`t3tsref:data-type-page-id`
library :ref:`t3tsref:data-type-integer` library :ref:`t3tsref:data-type-integer`
limit :ref:`t3tsref:data-type-integer` 5 limit :ref:`t3tsref:data-type-integer` 5
expired :ref:`t3tsref:data-type-integer` 1800 expired :ref:`t3tsref:data-type-integer` 1800
show_userdefined :ref:`t3tsref:data-type-boolean` 0 show_userdefined :ref:`t3tsref:data-type-boolean` 0
stylesheet :ref:`t3tsref:data-type-resource` stylesheet :ref:`t3tsref:data-type-resource`
unqualified_epicur :ref:`t3tsref:data-type-boolean` 0 unqualified_epicur :ref:`t3tsref:data-type-boolean` 0
=========================== ===================================== ==================== =========================== ===================================== ====================
Page Grid Page Grid
--------- ---------
@ -222,15 +222,15 @@ Page Grid
:typoscript:`plugin.PageGrid.` :typoscript:`plugin.PageGrid.`
=========================== ===================================== ==================== =========================== ===================================== ====================
Property Data type Default Property Data type Default
=========================== ===================================== ==================== =========================== ===================================== ====================
pages_ :ref:`t3tsref:data-type-page-id` pages_ :ref:`t3tsref:data-type-page-id`
limit :ref:`t3tsref:data-type-integer` 24 limit :ref:`t3tsref:data-type-integer` 24
placeholder :ref:`t3tsref:data-type-resource` placeholder :ref:`t3tsref:data-type-resource`
targetPid :ref:`t3tsref:data-type-page-id` targetPid :ref:`t3tsref:data-type-page-id`
templateFile_ :ref:`t3tsref:data-type-resource` PageGrid.tmpl templateFile_ :ref:`t3tsref:data-type-resource` PageGrid.tmpl
=========================== ===================================== ==================== =========================== ===================================== ====================
Page View Page View
--------- ---------
@ -239,20 +239,20 @@ Page View
:typoscript:`plugin.PageView.` :typoscript:`plugin.PageView.`
=========================== ===================================== ==================== =========================== ===================================== ====================
Property Data type Default Property Data type Default
=========================== ===================================== ==================== =========================== ===================================== ====================
pages_ :ref:`t3tsref:data-type-page-id` pages_ :ref:`t3tsref:data-type-page-id`
excludeOther :ref:`t3tsref:data-type-boolean` 1 excludeOther :ref:`t3tsref:data-type-boolean` 1
features :ref:`t3tsref:data-type-list` features :ref:`t3tsref:data-type-list`
elementId :ref:`t3tsref:data-type-string` tx-dlf-map elementId :ref:`t3tsref:data-type-string` tx-dlf-map
crop :ref:`t3tsref:data-type-boolean` 0 crop :ref:`t3tsref:data-type-boolean` 0
useInternalProxy :ref:`t3tsref:data-type-boolean` 0 useInternalProxy :ref:`t3tsref:data-type-boolean` 0
magnifier :ref:`t3tsref:data-type-boolean` 0 magnifier :ref:`t3tsref:data-type-boolean` 0
basketButton :ref:`t3tsref:data-type-boolean` 0 basketButton :ref:`t3tsref:data-type-boolean` 0
targetBasket :ref:`t3tsref:data-type-page-id` targetBasket :ref:`t3tsref:data-type-page-id`
templateFile_ :ref:`t3tsref:data-type-resource` PageView.tmpl templateFile_ :ref:`t3tsref:data-type-resource` PageView.tmpl
=========================== ===================================== ==================== =========================== ===================================== ====================
Search Search
------ ------
@ -261,27 +261,27 @@ Search
:typoscript:`plugin.Search.` :typoscript:`plugin.Search.`
=========================== ===================================== ==================== =========================== ===================================== ====================
Property Data type Default Property Data type Default
=========================== ===================================== ==================== =========================== ===================================== ====================
pages_ :ref:`t3tsref:data-type-page-id` pages_ :ref:`t3tsref:data-type-page-id`
fulltext :ref:`t3tsref:data-type-boolean` fulltext :ref:`t3tsref:data-type-boolean`
solrcore :ref:`t3tsref:data-type-integer` solrcore :ref:`t3tsref:data-type-integer`
limit :ref:`t3tsref:data-type-integer` 50000 limit :ref:`t3tsref:data-type-integer` 50000
extendedSlotCount :ref:`t3tsref:data-type-integer` 0 extendedSlotCount :ref:`t3tsref:data-type-integer` 0
extendedFields :ref:`t3tsref:data-type-list` 0 extendedFields :ref:`t3tsref:data-type-list` 0
searchIn :ref:`t3tsref:data-type-string` searchIn :ref:`t3tsref:data-type-string`
collections :ref:`t3tsref:data-type-list` collections :ref:`t3tsref:data-type-list`
facets :ref:`t3tsref:data-type-list` facets :ref:`t3tsref:data-type-list`
limitFacets :ref:`t3tsref:data-type-integer` 15 limitFacets :ref:`t3tsref:data-type-integer` 15
resetFacets :ref:`t3tsref:data-type-boolean` 0 resetFacets :ref:`t3tsref:data-type-boolean` 0
sortingFacets :ref:`t3tsref:data-type-string` sortingFacets :ref:`t3tsref:data-type-string`
suggest :ref:`t3tsref:data-type-boolean` 1 suggest :ref:`t3tsref:data-type-boolean` 1
showSingleResult :ref:`t3tsref:data-type-boolean` 0 showSingleResult :ref:`t3tsref:data-type-boolean` 0
targetPid :ref:`t3tsref:data-type-page-id` targetPid :ref:`t3tsref:data-type-page-id`
targetPidPageView :ref:`t3tsref:data-type-page-id` targetPidPageView :ref:`t3tsref:data-type-page-id`
templateFile_ :ref:`t3tsref:data-type-resource` Search.tmpl templateFile_ :ref:`t3tsref:data-type-resource` Search.tmpl
=========================== ===================================== ==================== =========================== ===================================== ====================
Statistics Statistics
---------- ----------
@ -290,13 +290,13 @@ Statistics
:typoscript:`plugin.Statistics.` :typoscript:`plugin.Statistics.`
=========================== ===================================== ==================== =========================== ===================================== ====================
Property Data type Default Property Data type Default
=========================== ===================================== ==================== =========================== ===================================== ====================
pages_ :ref:`t3tsref:data-type-page-id` pages_ :ref:`t3tsref:data-type-page-id`
collections :ref:`t3tsref:data-type-list` collections :ref:`t3tsref:data-type-list`
description :ref:`t3tsref:data-type-string` description :ref:`t3tsref:data-type-string`
=========================== ===================================== ==================== =========================== ===================================== ====================
Table Of Contents Table Of Contents
----------------- -----------------
@ -305,16 +305,16 @@ Table Of Contents
:typoscript:`plugin.TableOfContents.` :typoscript:`plugin.TableOfContents.`
=========================== ===================================== ==================== =========================== ===================================== ====================
Property Data type Default Property Data type Default
=========================== ===================================== ==================== =========================== ===================================== ====================
pages_ :ref:`t3tsref:data-type-page-id` pages_ :ref:`t3tsref:data-type-page-id`
excludeOther :ref:`t3tsref:data-type-boolean` 1 excludeOther :ref:`t3tsref:data-type-boolean` 1
basketButton :ref:`t3tsref:data-type-boolean` 0 basketButton :ref:`t3tsref:data-type-boolean` 0
targetBasket :ref:`t3tsref:data-type-page-id` targetBasket :ref:`t3tsref:data-type-page-id`
targetPid :ref:`t3tsref:data-type-page-id` targetPid :ref:`t3tsref:data-type-page-id`
templateFile_ :ref:`t3tsref:data-type-resource` TableOfContents.tmpl templateFile_ :ref:`t3tsref:data-type-resource` TableOfContents.tmpl
=========================== ===================================== ==================== =========================== ===================================== ====================
Toolbox Toolbox
------- -------
@ -323,11 +323,11 @@ Toolbox
:typoscript:`plugin.Toolbox.` :typoscript:`plugin.Toolbox.`
=========================== ===================================== ==================== =========================== ===================================== ====================
Property Data type Default Property Data type Default
=========================== ===================================== ==================== =========================== ===================================== ====================
pages_ :ref:`t3tsref:data-type-page-id` pages_ :ref:`t3tsref:data-type-page-id`
tools :ref:`t3tsref:data-type-list` tools :ref:`t3tsref:data-type-list`
fileGrpsImageDownload :ref:`t3tsref:data-type-list` MIN,DEFAULT,MAX fileGrpsImageDownload :ref:`t3tsref:data-type-list` MIN,DEFAULT,MAX
templateFile_ :ref:`t3tsref:data-type-resource` Toolbox.tmpl templateFile_ :ref:`t3tsref:data-type-resource` Toolbox.tmpl
=========================== ===================================== ==================== =========================== ===================================== ====================

View File

@ -1,296 +1,296 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<T3locallang> <T3locallang>
<meta type="array"> <meta type="array">
<type>module</type> <type>module</type>
<description>Language labels for ISO 639-1 codes</description> <description>Language labels for ISO 639-1 codes</description>
</meta> </meta>
<data type="array"> <data type="array">
<languageKey index="default" type="array"> <languageKey index="default" type="array">
<label index="aa">Afar</label> <label index="aa">Afar</label>
<label index="ab">Abkhazian</label> <label index="ab">Abkhazian</label>
<label index="af">Afrikaans</label> <label index="af">Afrikaans</label>
<label index="am">Amharic</label> <label index="am">Amharic</label>
<label index="ar">Arabic</label> <label index="ar">Arabic</label>
<label index="as">Assamese</label> <label index="as">Assamese</label>
<label index="ay">Aymara</label> <label index="ay">Aymara</label>
<label index="az">Azerbaijani</label> <label index="az">Azerbaijani</label>
<label index="ba">Bashkir</label> <label index="ba">Bashkir</label>
<label index="be">Byelorussian</label> <label index="be">Byelorussian</label>
<label index="bg">Bulgarian</label> <label index="bg">Bulgarian</label>
<label index="bh">Bihari</label> <label index="bh">Bihari</label>
<label index="bi">Bislama</label> <label index="bi">Bislama</label>
<label index="bn">Bengali</label> <label index="bn">Bengali</label>
<label index="bo">Tibetan</label> <label index="bo">Tibetan</label>
<label index="br">Breton</label> <label index="br">Breton</label>
<label index="ca">Catalan</label> <label index="ca">Catalan</label>
<label index="co">Corsican</label> <label index="co">Corsican</label>
<label index="cs">Czech</label> <label index="cs">Czech</label>
<label index="cy">Welsh</label> <label index="cy">Welsh</label>
<label index="da">Danish</label> <label index="da">Danish</label>
<label index="de">German</label> <label index="de">German</label>
<label index="dz">Dzongkha</label> <label index="dz">Dzongkha</label>
<label index="el">Greek</label> <label index="el">Greek</label>
<label index="en">English</label> <label index="en">English</label>
<label index="eo">Esperanto</label> <label index="eo">Esperanto</label>
<label index="es">Spanish</label> <label index="es">Spanish</label>
<label index="et">Estonian</label> <label index="et">Estonian</label>
<label index="eu">Basque</label> <label index="eu">Basque</label>
<label index="fa">Persian</label> <label index="fa">Persian</label>
<label index="fi">Finnish</label> <label index="fi">Finnish</label>
<label index="fj">Fijian</label> <label index="fj">Fijian</label>
<label index="fo">Faroese</label> <label index="fo">Faroese</label>
<label index="fr">French</label> <label index="fr">French</label>
<label index="fy">Frisian</label> <label index="fy">Frisian</label>
<label index="ga">Irish</label> <label index="ga">Irish</label>
<label index="gd">Scottish Gaelic</label> <label index="gd">Scottish Gaelic</label>
<label index="gl">Galician</label> <label index="gl">Galician</label>
<label index="gn">Guarani</label> <label index="gn">Guarani</label>
<label index="gu">Gujarati</label> <label index="gu">Gujarati</label>
<label index="ha">Hausa</label> <label index="ha">Hausa</label>
<label index="he">Hebrew</label> <label index="he">Hebrew</label>
<label index="hi">Hindi</label> <label index="hi">Hindi</label>
<label index="hr">Croatian</label> <label index="hr">Croatian</label>
<label index="hu">Hungarian</label> <label index="hu">Hungarian</label>
<label index="hy">Armenian</label> <label index="hy">Armenian</label>
<label index="ia">Interlingua</label> <label index="ia">Interlingua</label>
<label index="id">Indonesian</label> <label index="id">Indonesian</label>
<label index="ie">Interlingue, Occidental</label> <label index="ie">Interlingue, Occidental</label>
<label index="ik">Inupiak</label> <label index="ik">Inupiak</label>
<label index="is">Icelandic</label> <label index="is">Icelandic</label>
<label index="it">Italian</label> <label index="it">Italian</label>
<label index="iu">Inuktitut</label> <label index="iu">Inuktitut</label>
<label index="iw">Hebrew</label> <label index="iw">Hebrew</label>
<label index="ja">Japanese</label> <label index="ja">Japanese</label>
<label index="ji">Yiddish</label> <label index="ji">Yiddish</label>
<label index="jv">Javanese</label> <label index="jv">Javanese</label>
<label index="jw">Javanese</label> <label index="jw">Javanese</label>
<label index="ka">Georgian</label> <label index="ka">Georgian</label>
<label index="kk">Kazakh</label> <label index="kk">Kazakh</label>
<label index="kl">Kalaallisut, Greenlandic</label> <label index="kl">Kalaallisut, Greenlandic</label>
<label index="km">Khmer</label> <label index="km">Khmer</label>
<label index="kn">Kannada</label> <label index="kn">Kannada</label>
<label index="ko">Korean</label> <label index="ko">Korean</label>
<label index="ks">Kashmiri</label> <label index="ks">Kashmiri</label>
<label index="ku">Kurdish</label> <label index="ku">Kurdish</label>
<label index="ky">Kirghiz, Kyrgyz</label> <label index="ky">Kirghiz, Kyrgyz</label>
<label index="la">Latin</label> <label index="la">Latin</label>
<label index="ln">Lingala</label> <label index="ln">Lingala</label>
<label index="lo">Lao</label> <label index="lo">Lao</label>
<label index="lt">Lithuanian</label> <label index="lt">Lithuanian</label>
<label index="lv">Latvian</label> <label index="lv">Latvian</label>
<label index="mg">Malagasy</label> <label index="mg">Malagasy</label>
<label index="mi">Maori</label> <label index="mi">Maori</label>
<label index="mk">Macedonian</label> <label index="mk">Macedonian</label>
<label index="ml">Malayalam</label> <label index="ml">Malayalam</label>
<label index="mn">Mongolian</label> <label index="mn">Mongolian</label>
<label index="mo">Moldavian</label> <label index="mo">Moldavian</label>
<label index="mr">Marathi</label> <label index="mr">Marathi</label>
<label index="ms">Malay</label> <label index="ms">Malay</label>
<label index="mt">Maltese</label> <label index="mt">Maltese</label>
<label index="my">Burmese</label> <label index="my">Burmese</label>
<label index="na">Nauru</label> <label index="na">Nauru</label>
<label index="ne">Nepali</label> <label index="ne">Nepali</label>
<label index="nl">Dutch</label> <label index="nl">Dutch</label>
<label index="no">Norwegian</label> <label index="no">Norwegian</label>
<label index="oc">Occitan</label> <label index="oc">Occitan</label>
<label index="om">Oromo</label> <label index="om">Oromo</label>
<label index="or">Oriya</label> <label index="or">Oriya</label>
<label index="pa">Panjabi</label> <label index="pa">Panjabi</label>
<label index="pl">Polish</label> <label index="pl">Polish</label>
<label index="ps">Pushto</label> <label index="ps">Pushto</label>
<label index="pt">Portuguese</label> <label index="pt">Portuguese</label>
<label index="qu">Quechua</label> <label index="qu">Quechua</label>
<label index="rm">Romansh</label> <label index="rm">Romansh</label>
<label index="rn">Rundi</label> <label index="rn">Rundi</label>
<label index="ro">Romanian</label> <label index="ro">Romanian</label>
<label index="ru">Russian</label> <label index="ru">Russian</label>
<label index="rw">Kinyarwanda</label> <label index="rw">Kinyarwanda</label>
<label index="sa">Sanskrit</label> <label index="sa">Sanskrit</label>
<label index="sd">Sindhi</label> <label index="sd">Sindhi</label>
<label index="sg">Sango</label> <label index="sg">Sango</label>
<label index="sh">Serbo-Croatian</label> <label index="sh">Serbo-Croatian</label>
<label index="si">Sinhalese</label> <label index="si">Sinhalese</label>
<label index="sk">Slovak</label> <label index="sk">Slovak</label>
<label index="sl">Slovenian</label> <label index="sl">Slovenian</label>
<label index="sm">Samoan</label> <label index="sm">Samoan</label>
<label index="sn">Shona</label> <label index="sn">Shona</label>
<label index="so">Somali</label> <label index="so">Somali</label>
<label index="sq">Albanian</label> <label index="sq">Albanian</label>
<label index="sr">Serbian</label> <label index="sr">Serbian</label>
<label index="ss">Swati</label> <label index="ss">Swati</label>
<label index="st">Southern Sotho</label> <label index="st">Southern Sotho</label>
<label index="su">Sundanese</label> <label index="su">Sundanese</label>
<label index="sv">Swedish</label> <label index="sv">Swedish</label>
<label index="sw">Swahili</label> <label index="sw">Swahili</label>
<label index="ta">Tamil</label> <label index="ta">Tamil</label>
<label index="te">Telugu</label> <label index="te">Telugu</label>
<label index="tg">Tajik</label> <label index="tg">Tajik</label>
<label index="th">Thai</label> <label index="th">Thai</label>
<label index="ti">Tigrinya</label> <label index="ti">Tigrinya</label>
<label index="tk">Turkmen</label> <label index="tk">Turkmen</label>
<label index="tl">Tagalog</label> <label index="tl">Tagalog</label>
<label index="tn">Tswana</label> <label index="tn">Tswana</label>
<label index="to">Tonga</label> <label index="to">Tonga</label>
<label index="tr">Turkish</label> <label index="tr">Turkish</label>
<label index="ts">Tsonga</label> <label index="ts">Tsonga</label>
<label index="tt">Tatar</label> <label index="tt">Tatar</label>
<label index="tw">Twi</label> <label index="tw">Twi</label>
<label index="ug">Uighur</label> <label index="ug">Uighur</label>
<label index="uk">Ukrainian</label> <label index="uk">Ukrainian</label>
<label index="ur">Urdu</label> <label index="ur">Urdu</label>
<label index="uz">Uzbek</label> <label index="uz">Uzbek</label>
<label index="vi">Vietnamese</label> <label index="vi">Vietnamese</label>
<label index="vo">Volapük</label> <label index="vo">Volapük</label>
<label index="wo">Wolof</label> <label index="wo">Wolof</label>
<label index="xh">Xhosa</label> <label index="xh">Xhosa</label>
<label index="yi">Yiddish</label> <label index="yi">Yiddish</label>
<label index="yo">Yoruba</label> <label index="yo">Yoruba</label>
<label index="za">Zhuang</label> <label index="za">Zhuang</label>
<label index="zh">Chinese</label> <label index="zh">Chinese</label>
<label index="zu">Zulu</label> <label index="zu">Zulu</label>
</languageKey> </languageKey>
<languageKey index="de" type="array"> <languageKey index="de" type="array">
<label index="aa">Afar</label> <label index="aa">Afar</label>
<label index="ab">Abchasisch</label> <label index="ab">Abchasisch</label>
<label index="af">Afrikaans</label> <label index="af">Afrikaans</label>
<label index="am">Amharisch</label> <label index="am">Amharisch</label>
<label index="ar">Arabisch</label> <label index="ar">Arabisch</label>
<label index="as">Assamesisch</label> <label index="as">Assamesisch</label>
<label index="ay">Aymara</label> <label index="ay">Aymara</label>
<label index="az">Aserbaidschanisch</label> <label index="az">Aserbaidschanisch</label>
<label index="ba">Baschkirisch</label> <label index="ba">Baschkirisch</label>
<label index="be">Belorussisch</label> <label index="be">Belorussisch</label>
<label index="bg">Bulgarisch</label> <label index="bg">Bulgarisch</label>
<label index="bh">Biharisch</label> <label index="bh">Biharisch</label>
<label index="bi">Bislamisch</label> <label index="bi">Bislamisch</label>
<label index="bn">Bengalisch</label> <label index="bn">Bengalisch</label>
<label index="bo">Tibetanisch</label> <label index="bo">Tibetanisch</label>
<label index="br">Bretonisch</label> <label index="br">Bretonisch</label>
<label index="ca">Katalanisch</label> <label index="ca">Katalanisch</label>
<label index="co">Korsisch</label> <label index="co">Korsisch</label>
<label index="cs">Tschechisch</label> <label index="cs">Tschechisch</label>
<label index="cy">Walisisch</label> <label index="cy">Walisisch</label>
<label index="da">Dänisch</label> <label index="da">Dänisch</label>
<label index="de">Deutsch</label> <label index="de">Deutsch</label>
<label index="dz">Dzongkha, Bhutani</label> <label index="dz">Dzongkha, Bhutani</label>
<label index="el">Griechisch</label> <label index="el">Griechisch</label>
<label index="en">Englisch</label> <label index="en">Englisch</label>
<label index="eo">Esperanto</label> <label index="eo">Esperanto</label>
<label index="es">Spanisch</label> <label index="es">Spanisch</label>
<label index="et">Estnisch</label> <label index="et">Estnisch</label>
<label index="eu">Baskisch</label> <label index="eu">Baskisch</label>
<label index="fa">Persisch</label> <label index="fa">Persisch</label>
<label index="fi">Finnisch</label> <label index="fi">Finnisch</label>
<label index="fj">Fiji</label> <label index="fj">Fiji</label>
<label index="fo">Färöisch</label> <label index="fo">Färöisch</label>
<label index="fr">Französisch</label> <label index="fr">Französisch</label>
<label index="fy">Friesisch</label> <label index="fy">Friesisch</label>
<label index="ga">Irisch</label> <label index="ga">Irisch</label>
<label index="gd">Schottisches Gälisch</label> <label index="gd">Schottisches Gälisch</label>
<label index="gl">Galizisch</label> <label index="gl">Galizisch</label>
<label index="gn">Guarani</label> <label index="gn">Guarani</label>
<label index="gu">Gujaratisch</label> <label index="gu">Gujaratisch</label>
<label index="ha">Haussa</label> <label index="ha">Haussa</label>
<label index="he">Hebräisch</label> <label index="he">Hebräisch</label>
<label index="hi">Hindi</label> <label index="hi">Hindi</label>
<label index="hr">Kroatisch</label> <label index="hr">Kroatisch</label>
<label index="hu">Ungarisch</label> <label index="hu">Ungarisch</label>
<label index="hy">Armenisch</label> <label index="hy">Armenisch</label>
<label index="ia">Interlingua</label> <label index="ia">Interlingua</label>
<label index="id">Indonesisch</label> <label index="id">Indonesisch</label>
<label index="ie">Interlingue</label> <label index="ie">Interlingue</label>
<label index="ik">Inupiak</label> <label index="ik">Inupiak</label>
<label index="is">Isländisch</label> <label index="is">Isländisch</label>
<label index="it">Italienisch</label> <label index="it">Italienisch</label>
<label index="iu">Inuktitut (Eskimo)</label> <label index="iu">Inuktitut (Eskimo)</label>
<label index="iw">Hebräisch</label> <label index="iw">Hebräisch</label>
<label index="ja">Japanisch</label> <label index="ja">Japanisch</label>
<label index="ji">Jiddish</label> <label index="ji">Jiddish</label>
<label index="jv">Javanisch</label> <label index="jv">Javanisch</label>
<label index="ka">Georgisch</label> <label index="ka">Georgisch</label>
<label index="kk">Kasachisch</label> <label index="kk">Kasachisch</label>
<label index="kl">Kalaallisut (Grönländisch)</label> <label index="kl">Kalaallisut (Grönländisch)</label>
<label index="km">Kambodschanisch</label> <label index="km">Kambodschanisch</label>
<label index="kn">Kannada</label> <label index="kn">Kannada</label>
<label index="ko">Koreanisch</label> <label index="ko">Koreanisch</label>
<label index="ks">Kaschmirisch</label> <label index="ks">Kaschmirisch</label>
<label index="ku">Kurdisch</label> <label index="ku">Kurdisch</label>
<label index="ky">Kirgisisch</label> <label index="ky">Kirgisisch</label>
<label index="la">Lateinisch</label> <label index="la">Lateinisch</label>
<label index="ln">Lingala</label> <label index="ln">Lingala</label>
<label index="lo">Laotisch</label> <label index="lo">Laotisch</label>
<label index="lt">Litauisch</label> <label index="lt">Litauisch</label>
<label index="lv">Lettisch</label> <label index="lv">Lettisch</label>
<label index="mg">Malagasisch</label> <label index="mg">Malagasisch</label>
<label index="mi">Maorisch</label> <label index="mi">Maorisch</label>
<label index="mk">Mazedonisch</label> <label index="mk">Mazedonisch</label>
<label index="ml">Malajalam</label> <label index="ml">Malajalam</label>
<label index="mn">Mongolisch</label> <label index="mn">Mongolisch</label>
<label index="mo">Moldavisch</label> <label index="mo">Moldavisch</label>
<label index="mr">Marathi</label> <label index="mr">Marathi</label>
<label index="ms">Malaysisch</label> <label index="ms">Malaysisch</label>
<label index="mt">Maltesisch</label> <label index="mt">Maltesisch</label>
<label index="my">Burmesisch</label> <label index="my">Burmesisch</label>
<label index="na">Nauruisch</label> <label index="na">Nauruisch</label>
<label index="ne">Nepalesisch</label> <label index="ne">Nepalesisch</label>
<label index="nl">Holländisch</label> <label index="nl">Holländisch</label>
<label index="no">Norwegisch</label> <label index="no">Norwegisch</label>
<label index="oc">Okzitanisch</label> <label index="oc">Okzitanisch</label>
<label index="om">Oromo</label> <label index="om">Oromo</label>
<label index="or">Oriya</label> <label index="or">Oriya</label>
<label index="pa">Pundjabisch</label> <label index="pa">Pundjabisch</label>
<label index="pl">Polnisch</label> <label index="pl">Polnisch</label>
<label index="ps">Paschtu</label> <label index="ps">Paschtu</label>
<label index="pt">Portugiesisch</label> <label index="pt">Portugiesisch</label>
<label index="qu">Quechua</label> <label index="qu">Quechua</label>
<label index="rm">Rätoromanisch</label> <label index="rm">Rätoromanisch</label>
<label index="rn">Kirundisch</label> <label index="rn">Kirundisch</label>
<label index="ro">Rumänisch</label> <label index="ro">Rumänisch</label>
<label index="ru">Russisch</label> <label index="ru">Russisch</label>
<label index="rw">Kijarwanda</label> <label index="rw">Kijarwanda</label>
<label index="sa">Sanskrit</label> <label index="sa">Sanskrit</label>
<label index="sd">Zinti</label> <label index="sd">Zinti</label>
<label index="sg">Sango</label> <label index="sg">Sango</label>
<label index="sh">Serbokroatisch</label> <label index="sh">Serbokroatisch</label>
<label index="si">Singhalesisch</label> <label index="si">Singhalesisch</label>
<label index="sk">Slowakisch</label> <label index="sk">Slowakisch</label>
<label index="sl">Slowenisch</label> <label index="sl">Slowenisch</label>
<label index="sm">Samoanisch</label> <label index="sm">Samoanisch</label>
<label index="sn">Schonisch</label> <label index="sn">Schonisch</label>
<label index="so">Somalisch</label> <label index="so">Somalisch</label>
<label index="sq">Albanisch</label> <label index="sq">Albanisch</label>
<label index="sr">Serbisch</label> <label index="sr">Serbisch</label>
<label index="ss">Swasiländisch</label> <label index="ss">Swasiländisch</label>
<label index="st">Sesothisch</label> <label index="st">Sesothisch</label>
<label index="su">Sudanesisch</label> <label index="su">Sudanesisch</label>
<label index="sv">Schwedisch</label> <label index="sv">Schwedisch</label>
<label index="sw">Suaheli</label> <label index="sw">Suaheli</label>
<label index="ta">Tamilisch</label> <label index="ta">Tamilisch</label>
<label index="te">Tegulu</label> <label index="te">Tegulu</label>
<label index="tg">Tadschikisch</label> <label index="tg">Tadschikisch</label>
<label index="th">Thai</label> <label index="th">Thai</label>
<label index="ti">Tigrinja</label> <label index="ti">Tigrinja</label>
<label index="tk">Turkmenisch</label> <label index="tk">Turkmenisch</label>
<label index="tl">Tagalog</label> <label index="tl">Tagalog</label>
<label index="tn">Sezuan</label> <label index="tn">Sezuan</label>
<label index="to">Tongaisch</label> <label index="to">Tongaisch</label>
<label index="tr">Türkisch</label> <label index="tr">Türkisch</label>
<label index="ts">Tsongaisch</label> <label index="ts">Tsongaisch</label>
<label index="tt">Tatarisch</label> <label index="tt">Tatarisch</label>
<label index="tw">Twi</label> <label index="tw">Twi</label>
<label index="ug">Uigur</label> <label index="ug">Uigur</label>
<label index="uk">Ukrainisch</label> <label index="uk">Ukrainisch</label>
<label index="ur">Urdu</label> <label index="ur">Urdu</label>
<label index="uz">Usbekisch</label> <label index="uz">Usbekisch</label>
<label index="vi">Vietnamesisch</label> <label index="vi">Vietnamesisch</label>
<label index="vo">Volapük</label> <label index="vo">Volapük</label>
<label index="wo">Wolof</label> <label index="wo">Wolof</label>
<label index="xh">Xhosa</label> <label index="xh">Xhosa</label>
<label index="yi">Jiddish</label> <label index="yi">Jiddish</label>
<label index="yo">Joruba</label> <label index="yo">Joruba</label>
<label index="za">Zhuang</label> <label index="za">Zhuang</label>
<label index="zh">Chinesisch</label> <label index="zh">Chinesisch</label>
<label index="zu">Zulu</label> <label index="zu">Zulu</label>
</languageKey> </languageKey>
</data> </data>
</T3locallang> </T3locallang>

File diff suppressed because it is too large Load Diff

View File

@ -9,22 +9,22 @@
* LICENSE.txt file that was distributed with this source code. * LICENSE.txt file that was distributed with this source code.
--> -->
<T3locallang> <T3locallang>
<meta type="array"> <meta type="array">
<type>module</type> <type>module</type>
<description>Language labels for plugin AudioPlayer</description> <description>Language labels for plugin AudioPlayer</description>
</meta> </meta>
<data type="array"> <data type="array">
<languageKey index="default" type="array"> <languageKey index="default" type="array">
<label index="tt_content.pi_flexform.sheet_general">Options</label> <label index="tt_content.pi_flexform.sheet_general">Options</label>
<label index="tt_content.pi_flexform.excludeOther">Show only documents from the selected page</label> <label index="tt_content.pi_flexform.excludeOther">Show only documents from the selected page</label>
<label index="tt_content.pi_flexform.elementId">@ID value of the HTML element for the audio player</label> <label index="tt_content.pi_flexform.elementId">@ID value of the HTML element for the audio player</label>
<label index="tt_content.pi_flexform.templateFile">Template file</label> <label index="tt_content.pi_flexform.templateFile">Template file</label>
</languageKey> </languageKey>
<languageKey index="de" type="array"> <languageKey index="de" type="array">
<label index="tt_content.pi_flexform.sheet_general">Einstellungen</label> <label index="tt_content.pi_flexform.sheet_general">Einstellungen</label>
<label index="tt_content.pi_flexform.excludeOther">Nur Dokumente der ausgewählten Seite anzeigen</label> <label index="tt_content.pi_flexform.excludeOther">Nur Dokumente der ausgewählten Seite anzeigen</label>
<label index="tt_content.pi_flexform.elementId">@ID-Wert des HTML-Elements für den Audioplayer</label> <label index="tt_content.pi_flexform.elementId">@ID-Wert des HTML-Elements für den Audioplayer</label>
<label index="tt_content.pi_flexform.templateFile">HTML-Template</label> <label index="tt_content.pi_flexform.templateFile">HTML-Template</label>
</languageKey> </languageKey>
</data> </data>
</T3locallang> </T3locallang>

View File

@ -9,62 +9,62 @@
* LICENSE.txt file that was distributed with this source code. * LICENSE.txt file that was distributed with this source code.
--> -->
<T3locallang> <T3locallang>
<meta type="array"> <meta type="array">
<type>module</type> <type>module</type>
<description>Language labels for plugin Basket</description> <description>Language labels for plugin Basket</description>
</meta> </meta>
<data type="array"> <data type="array">
<languageKey index="default" type="array"> <languageKey index="default" type="array">
<label index="tt_content.pi_flexform.basketGoToButton">Add go to basket button</label> <label index="tt_content.pi_flexform.basketGoToButton">Add go to basket button</label>
<label index="tt_content.pi_flexform.targetBasket">Target page (with "DLF: Basket" plugin)</label> <label index="tt_content.pi_flexform.targetBasket">Target page (with "DLF: Basket" plugin)</label>
<label index="tt_content.pi_flexform.templateFile">Template file</label> <label index="tt_content.pi_flexform.templateFile">Template file</label>
<label index="tt_content.pi_flexform.pdfGenerate">PDF generate URL (without parameters)</label> <label index="tt_content.pi_flexform.pdfGenerate">PDF generate URL (without parameters)</label>
<label index="tt_content.pi_flexform.pdfDownload">PDF download URL (without parameters)</label> <label index="tt_content.pi_flexform.pdfDownload">PDF download URL (without parameters)</label>
<label index="tt_content.pi_flexform.pdfPrint">PDF print URL (without parameters)</label> <label index="tt_content.pi_flexform.pdfPrint">PDF print URL (without parameters)</label>
<label index="tt_content.pi_flexform.pdfParams">Parameters for URL (with placeholder for parameters e.g. ##startY##,##startX##)</label> <label index="tt_content.pi_flexform.pdfParams">Parameters for URL (with placeholder for parameters e.g. ##startY##,##startX##)</label>
<label index="tt_content.pi_flexform.pdfParamSeparator">Parameter separator (for multiple documents)</label> <label index="tt_content.pi_flexform.pdfParamSeparator">Parameter separator (for multiple documents)</label>
<label index="tt_content.pi_flexform.preGeneration">Send ajax request for pdf pre generation</label> <label index="tt_content.pi_flexform.preGeneration">Send ajax request for pdf pre generation</label>
<label index="mailSubject">Kitodo.Presentation - Document</label> <label index="mailSubject">Kitodo.Presentation - Document</label>
<label index="mailBody">The following documents are sent to you by Kitodo.Presentation:</label> <label index="mailBody">The following documents are sent to you by Kitodo.Presentation:</label>
<label index="basket">Basket</label> <label index="basket">Basket</label>
<label index="remove">Remove</label> <label index="remove">Remove</label>
<label index="cutout">Cutout</label> <label index="cutout">Cutout</label>
<label index="page">Page</label> <label index="page">Page</label>
<label index="open">Open</label> <label index="open">Open</label>
<label index="download">Download</label> <label index="download">Download</label>
<label index="print">Print</label> <label index="print">Print</label>
<label index="chooseAction">Choose an action</label> <label index="chooseAction">Choose an action</label>
<label index="choosePrinter">Choose a printer</label> <label index="choosePrinter">Choose a printer</label>
<label index="chooseMail">Choose a mail</label> <label index="chooseMail">Choose a mail</label>
<label index="noTitle">No title</label> <label index="noTitle">No title</label>
<label index="count">%d Entries</label> <label index="count">%d Entries</label>
<label index="goBasket">Go to basket</label> <label index="goBasket">Go to basket</label>
</languageKey> </languageKey>
<languageKey index="de" type="array"> <languageKey index="de" type="array">
<label index="tt_content.pi_flexform.basketGoToButton">"Zum Warenkorb" Button hinzufügen</label> <label index="tt_content.pi_flexform.basketGoToButton">"Zum Warenkorb" Button hinzufügen</label>
<label index="tt_content.pi_flexform.targetBasket">Zielseite (mit Plugin "DLF: Warenkorb")</label> <label index="tt_content.pi_flexform.targetBasket">Zielseite (mit Plugin "DLF: Warenkorb")</label>
<label index="tt_content.pi_flexform.templateFile">HTML-Template</label> <label index="tt_content.pi_flexform.templateFile">HTML-Template</label>
<label index="tt_content.pi_flexform.pdfGenerate">URL zum Generieren der PDF Dokumente (ohne Parameter)</label> <label index="tt_content.pi_flexform.pdfGenerate">URL zum Generieren der PDF Dokumente (ohne Parameter)</label>
<label index="tt_content.pi_flexform.pdfDownload">URL zum Download der PDF Dokumente (ohne Parameter) </label> <label index="tt_content.pi_flexform.pdfDownload">URL zum Download der PDF Dokumente (ohne Parameter) </label>
<label index="tt_content.pi_flexform.pdfPrint">URL zum Drucken der PDF Dokumente (ohne Parameter) </label> <label index="tt_content.pi_flexform.pdfPrint">URL zum Drucken der PDF Dokumente (ohne Parameter) </label>
<label index="tt_content.pi_flexform.pdfParams">Parameter zu den genannten URLs (mit Platzhalter für die Parameter z.B. ##startX##,##startY##)</label> <label index="tt_content.pi_flexform.pdfParams">Parameter zu den genannten URLs (mit Platzhalter für die Parameter z.B. ##startX##,##startY##)</label>
<label index="tt_content.pi_flexform.pdfParamSeparator">Zeichen zum Separieren der Parameter eines Dokuments</label> <label index="tt_content.pi_flexform.pdfParamSeparator">Zeichen zum Separieren der Parameter eines Dokuments</label>
<label index="tt_content.pi_flexform.preGeneration">Ajax Request verschicken, um PDF vorzeitig zu generieren</label> <label index="tt_content.pi_flexform.preGeneration">Ajax Request verschicken, um PDF vorzeitig zu generieren</label>
<label index="mailSubject">Kitodo.Presentation - Dokument</label> <label index="mailSubject">Kitodo.Presentation - Dokument</label>
<label index="mailBody">Folgende Dokumente wurden über die Kitodo.Presentation Extension an Sie verschickt:</label> <label index="mailBody">Folgende Dokumente wurden über die Kitodo.Presentation Extension an Sie verschickt:</label>
<label index="basket">Warenkorb</label> <label index="basket">Warenkorb</label>
<label index="remove">Entfernen</label> <label index="remove">Entfernen</label>
<label index="cutout">Ausschnitt</label> <label index="cutout">Ausschnitt</label>
<label index="page">Seite</label> <label index="page">Seite</label>
<label index="open">Öffnen</label> <label index="open">Öffnen</label>
<label index="download">Herunterladen</label> <label index="download">Herunterladen</label>
<label index="print">Drucken</label> <label index="print">Drucken</label>
<label index="chooseAction">Aktion auswählen</label> <label index="chooseAction">Aktion auswählen</label>
<label index="choosePrinter">Drucker auswählen</label> <label index="choosePrinter">Drucker auswählen</label>
<label index="chooseMail">E-Mail Empfänger auswählen</label> <label index="chooseMail">E-Mail Empfänger auswählen</label>
<label index="noTitle">Kein Titel vorhanden</label> <label index="noTitle">Kein Titel vorhanden</label>
<label index="count">%d Einträge</label> <label index="count">%d Einträge</label>
<label index="goBasket">Zum Warenkorb</label> <label index="goBasket">Zum Warenkorb</label>
</languageKey> </languageKey>
</data> </data>
</T3locallang> </T3locallang>

View File

@ -9,49 +9,49 @@
* LICENSE.txt file that was distributed with this source code. * LICENSE.txt file that was distributed with this source code.
--> -->
<T3locallang> <T3locallang>
<meta type="array"> <meta type="array">
<type>module</type> <type>module</type>
<description>Language labels for plugin Collection</description> <description>Language labels for plugin Collection</description>
</meta> </meta>
<data type="array"> <data type="array">
<languageKey index="default" type="array"> <languageKey index="default" type="array">
<label index="tt_content.pi_flexform.sheet_general">Options</label> <label index="tt_content.pi_flexform.sheet_general">Options</label>
<label index="tt_content.pi_flexform.collections">Show only these collections</label> <label index="tt_content.pi_flexform.collections">Show only these collections</label>
<label index="tt_content.pi_flexform.show_userdefined">Show user-defined collections?</label> <label index="tt_content.pi_flexform.show_userdefined">Show user-defined collections?</label>
<label index="tt_content.pi_flexform.show_userdefined.all">both</label> <label index="tt_content.pi_flexform.show_userdefined.all">both</label>
<label index="tt_content.pi_flexform.show_userdefined.none">no</label> <label index="tt_content.pi_flexform.show_userdefined.none">no</label>
<label index="tt_content.pi_flexform.show_userdefined.exclusive">exclusively</label> <label index="tt_content.pi_flexform.show_userdefined.exclusive">exclusively</label>
<label index="tt_content.pi_flexform.dont_show_single">Show single collection in overview?</label> <label index="tt_content.pi_flexform.dont_show_single">Show single collection in overview?</label>
<label index="tt_content.pi_flexform.randomize">Randomize sorting?</label> <label index="tt_content.pi_flexform.randomize">Randomize sorting?</label>
<label index="tt_content.pi_flexform.targetPid">Target page (with "DLF: List View" plugin)</label> <label index="tt_content.pi_flexform.targetPid">Target page (with "DLF: List View" plugin)</label>
<label index="tt_content.pi_flexform.targetFeed">Target page (with "DLF: Feeds" plugin)</label> <label index="tt_content.pi_flexform.targetFeed">Target page (with "DLF: Feeds" plugin)</label>
<label index="tt_content.pi_flexform.templateFile">Template file</label> <label index="tt_content.pi_flexform.templateFile">Template file</label>
<label index="tt_content.pi_flexform.solrcore">Solr Core</label> <label index="tt_content.pi_flexform.solrcore">Solr Core</label>
<label index="title"> title</label> <label index="title"> title</label>
<label index="titles"> titles</label> <label index="titles"> titles</label>
<label index="volume"> volume</label> <label index="volume"> volume</label>
<label index="volumes"> volumes</label> <label index="volumes"> volumes</label>
<label index="feedAlt">RSS feed</label> <label index="feedAlt">RSS feed</label>
<label index="feedTitle">Subscribe to the RSS feed of this collection!</label> <label index="feedTitle">Subscribe to the RSS feed of this collection!</label>
</languageKey> </languageKey>
<languageKey index="de" type="array"> <languageKey index="de" type="array">
<label index="tt_content.pi_flexform.sheet_general">Einstellungen</label> <label index="tt_content.pi_flexform.sheet_general">Einstellungen</label>
<label index="tt_content.pi_flexform.collections">Nur diese Kollektionen anzeigen</label> <label index="tt_content.pi_flexform.collections">Nur diese Kollektionen anzeigen</label>
<label index="tt_content.pi_flexform.show_userdefined">Benutzerdefinierte Kollektionen anzeigen?</label> <label index="tt_content.pi_flexform.show_userdefined">Benutzerdefinierte Kollektionen anzeigen?</label>
<label index="tt_content.pi_flexform.show_userdefined.all">beides</label> <label index="tt_content.pi_flexform.show_userdefined.none">nein</label> <label index="tt_content.pi_flexform.show_userdefined.all">beides</label> <label index="tt_content.pi_flexform.show_userdefined.none">nein</label>
<label index="tt_content.pi_flexform.show_userdefined.exclusive">exklusiv</label> <label index="tt_content.pi_flexform.show_userdefined.exclusive">exklusiv</label>
<label index="tt_content.pi_flexform.dont_show_single">Einzelne Kollektion in Übersicht anzeigen?</label> <label index="tt_content.pi_flexform.dont_show_single">Einzelne Kollektion in Übersicht anzeigen?</label>
<label index="tt_content.pi_flexform.randomize">Zufällige Sortierung?</label> <label index="tt_content.pi_flexform.randomize">Zufällige Sortierung?</label>
<label index="tt_content.pi_flexform.targetPid">Zielseite (mit Plugin "DLF: Listenansicht")</label> <label index="tt_content.pi_flexform.targetPid">Zielseite (mit Plugin "DLF: Listenansicht")</label>
<label index="tt_content.pi_flexform.targetFeed">Zielseite (mit Plugin "DLF: Feeds")</label> <label index="tt_content.pi_flexform.targetFeed">Zielseite (mit Plugin "DLF: Feeds")</label>
<label index="tt_content.pi_flexform.templateFile">HTML-Template</label> <label index="tt_content.pi_flexform.templateFile">HTML-Template</label>
<label index="tt_content.pi_flexform.solrcore">Solr Kern</label> <label index="tt_content.pi_flexform.solrcore">Solr Kern</label>
<label index="title"> Titel</label> <label index="title"> Titel</label>
<label index="titles"> Titel</label> <label index="titles"> Titel</label>
<label index="volume"> Band</label> <label index="volume"> Band</label>
<label index="volumes"> Bände</label> <label index="volumes"> Bände</label>
<label index="feedAlt">RSS-Feed</label> <label index="feedAlt">RSS-Feed</label>
<label index="feedTitle">Abonnieren Sie den RSS-Feed dieser Kollektion!</label> <label index="feedTitle">Abonnieren Sie den RSS-Feed dieser Kollektion!</label>
</languageKey> </languageKey>
</data> </data>
</T3locallang> </T3locallang>

View File

@ -9,40 +9,40 @@
* LICENSE.txt file that was distributed with this source code. * LICENSE.txt file that was distributed with this source code.
--> -->
<T3locallang> <T3locallang>
<meta type="array"> <meta type="array">
<type>module</type> <type>module</type>
<description>Language labels for plugin Feeds</description> <description>Language labels for plugin Feeds</description>
</meta> </meta>
<data type="array"> <data type="array">
<languageKey index="default" type="array"> <languageKey index="default" type="array">
<label index="tt_content.pi_flexform.sheet_general">Options</label> <label index="tt_content.pi_flexform.sheet_general">Options</label>
<label index="tt_content.pi_flexform.collections">Collections</label> <label index="tt_content.pi_flexform.collections">Collections</label>
<label index="tt_content.pi_flexform.excludeOther">Show only documents from the selected collection(s)</label> <label index="tt_content.pi_flexform.excludeOther">Show only documents from the selected collection(s)</label>
<label index="tt_content.pi_flexform.library">Providing library</label> <label index="tt_content.pi_flexform.library">Providing library</label>
<label index="tt_content.pi_flexform.limit">Number of documents</label> <label index="tt_content.pi_flexform.limit">Number of documents</label>
<label index="tt_content.pi_flexform.prependSuperiorTitle">Prepend title of superior work to title?</label> <label index="tt_content.pi_flexform.prependSuperiorTitle">Prepend title of superior work to title?</label>
<label index="tt_content.pi_flexform.targetPid">Target page (with "DLF: Page View" plugin)</label> <label index="tt_content.pi_flexform.targetPid">Target page (with "DLF: Page View" plugin)</label>
<label index="tt_content.pi_flexform.title">Feed's title</label> <label index="tt_content.pi_flexform.title">Feed's title</label>
<label index="tt_content.pi_flexform.description">Feed's description</label> <label index="tt_content.pi_flexform.description">Feed's description</label>
<label index="new">NEW:</label> <label index="new">NEW:</label>
<label index="update">UPDATE:</label> <label index="update">UPDATE:</label>
<label index="noTitle">[no title]</label> <label index="noTitle">[no title]</label>
<label index="volume">Volume</label> <label index="volume">Volume</label>
</languageKey> </languageKey>
<languageKey index="de" type="array"> <languageKey index="de" type="array">
<label index="tt_content.pi_flexform.sheet_general">Einstellungen</label> <label index="tt_content.pi_flexform.sheet_general">Einstellungen</label>
<label index="tt_content.pi_flexform.collections">Kollektionen</label> <label index="tt_content.pi_flexform.collections">Kollektionen</label>
<label index="tt_content.pi_flexform.excludeOther">Nur Dokumente der ausgewählten Kollektion(en) berücksichtigen</label> <label index="tt_content.pi_flexform.excludeOther">Nur Dokumente der ausgewählten Kollektion(en) berücksichtigen</label>
<label index="tt_content.pi_flexform.library">Mandant</label> <label index="tt_content.pi_flexform.library">Mandant</label>
<label index="tt_content.pi_flexform.limit">Anzahl der Dokumente</label> <label index="tt_content.pi_flexform.limit">Anzahl der Dokumente</label>
<label index="tt_content.pi_flexform.prependSuperiorTitle">Titel übergeordneter Werke anzeigen?</label> <label index="tt_content.pi_flexform.prependSuperiorTitle">Titel übergeordneter Werke anzeigen?</label>
<label index="tt_content.pi_flexform.targetPid">Zielseite (mit Plugin "DLF: Seitenansicht")</label> <label index="tt_content.pi_flexform.targetPid">Zielseite (mit Plugin "DLF: Seitenansicht")</label>
<label index="tt_content.pi_flexform.title">Titel des Feeds</label> <label index="tt_content.pi_flexform.title">Titel des Feeds</label>
<label index="tt_content.pi_flexform.description">Beschreibung des Feeds</label> <label index="tt_content.pi_flexform.description">Beschreibung des Feeds</label>
<label index="new">NEU:</label> <label index="new">NEU:</label>
<label index="update">UPDATE:</label> <label index="update">UPDATE:</label>
<label index="noTitle">[kein Titel]</label> <label index="noTitle">[kein Titel]</label>
<label index="volume">Band</label> <label index="volume">Band</label>
</languageKey> </languageKey>
</data> </data>
</T3locallang> </T3locallang>

View File

@ -9,210 +9,210 @@
* LICENSE.txt file that was distributed with this source code. * LICENSE.txt file that was distributed with this source code.
--> -->
<T3locallang> <T3locallang>
<meta type="array"> <meta type="array">
<type>module</type> <type>module</type>
<description>Flash messages for extension 'dlf'</description> <description>Flash messages for extension 'dlf'</description>
</meta> </meta>
<data type="array"> <data type="array">
<languageKey index="default" type="array"> <languageKey index="default" type="array">
<label index="flash.attention">Attention!</label> <label index="flash.attention">Attention!</label>
<label index="flash.done">Done!</label> <label index="flash.done">Done!</label>
<label index="flash.warning">Warning!</label> <label index="flash.warning">Warning!</label>
<label index="flash.error">Error!</label> <label index="flash.error">Error!</label>
<label index="flash.running">Please wait...</label> <label index="flash.running">Please wait...</label>
<label index="flash.newCollection">New collection "%s" [%u] added to database.</label> <label index="flash.newCollection">New collection "%s" [%u] added to database.</label>
<label index="flash.newLibrary">New library "%s" [%u] added to database.</label> <label index="flash.newLibrary">New library "%s" [%u] added to database.</label>
<label index="flash.documentSaved">Document "%s" [%u] saved.</label> <label index="flash.documentSaved">Document "%s" [%u] saved.</label>
<label index="flash.documentIndexed">Document "%s" [%u] indexed.</label> <label index="flash.documentIndexed">Document "%s" [%u] indexed.</label>
<label index="flash.documentNotIndexed">Document "%s" [%u] could not be indexed.</label> <label index="flash.documentNotIndexed">Document "%s" [%u] could not be indexed.</label>
<label index="flash.documentsToGo">%u documents to go.</label> <label index="flash.documentsToGo">%u documents to go.</label>
<label index="flash.fileNotLoaded">File "%s" could not be loaded.</label> <label index="flash.fileNotLoaded">File "%s" could not be loaded.</label>
<label index="flash.wrongPageType">Page is no SysFolder!</label> <label index="flash.wrongPageType">Page is no SysFolder!</label>
<label index="flash.wrongPageTypeMsg">The configuration records of Kitodo.Presentation need to be stored in a SysFolder.</label> <label index="flash.wrongPageTypeMsg">The configuration records of Kitodo.Presentation need to be stored in a SysFolder.</label>
<label index="flash.structureOkay">Structures found!</label> <label index="flash.structureOkay">Structures found!</label>
<label index="flash.structureOkayMsg">There are configuration records for structural metadata. They can be edited in the list module.</label> <label index="flash.structureOkayMsg">There are configuration records for structural metadata. They can be edited in the list module.</label>
<label index="flash.structureNotOkay">No structures found!</label> <label index="flash.structureNotOkay">No structures found!</label>
<label index="flash.structureNotOkayMsg">There are no configuration records for structural metadata. A basic configuration can be added automatically.&lt;br /&gt;&lt;br /&gt;&lt;a href="%s"&gt;Add basic configuration!&lt;/a&gt;</label> <label index="flash.structureNotOkayMsg">There are no configuration records for structural metadata. A basic configuration can be added automatically.&lt;br /&gt;&lt;br /&gt;&lt;a href="%s"&gt;Add basic configuration!&lt;/a&gt;</label>
<label index="flash.structureAdded">Basic configuration added!</label> <label index="flash.structureAdded">Basic configuration added!</label>
<label index="flash.structureAddedMsg">Basic configuration records for structural metadata were added. The records should be checked in the list module!</label> <label index="flash.structureAddedMsg">Basic configuration records for structural metadata were added. The records should be checked in the list module!</label>
<label index="flash.structureNotAdded">No configuration added!</label> <label index="flash.structureNotAdded">No configuration added!</label>
<label index="flash.structureNotAddedMsg">While adding the configuration records an error occurred. The records should be checked in the list module!</label> <label index="flash.structureNotAddedMsg">While adding the configuration records an error occurred. The records should be checked in the list module!</label>
<label index="flash.metadataOkay">Metadata found!</label> <label index="flash.metadataOkay">Metadata found!</label>
<label index="flash.metadataOkayMsg">There are configuration records for bibliographic metadata. They can be edited in the list module.</label> <label index="flash.metadataOkayMsg">There are configuration records for bibliographic metadata. They can be edited in the list module.</label>
<label index="flash.metadataNotOkay">No metadata found!</label> <label index="flash.metadataNotOkay">No metadata found!</label>
<label index="flash.metadataNotOkayMsg">There are no configuration records for bibliographic metadata. A basic configuration can be added automatically.&lt;br /&gt;&lt;br /&gt;&lt;a href="%s"&gt;Add basic configuration!&lt;/a&gt;</label> <label index="flash.metadataNotOkayMsg">There are no configuration records for bibliographic metadata. A basic configuration can be added automatically.&lt;br /&gt;&lt;br /&gt;&lt;a href="%s"&gt;Add basic configuration!&lt;/a&gt;</label>
<label index="flash.metadataAdded">Basic configuration added!</label> <label index="flash.metadataAdded">Basic configuration added!</label>
<label index="flash.metadataAddedMsg">Basic configuration records for bibliographic metadata were added. The records should be checked in the list module!</label> <label index="flash.metadataAddedMsg">Basic configuration records for bibliographic metadata were added. The records should be checked in the list module!</label>
<label index="flash.metadataNotAdded">No configuration added!</label> <label index="flash.metadataNotAdded">No configuration added!</label>
<label index="flash.metadataNotAddedMsg">While adding the configuration records an error occurred. The records should be checked in the list module!</label> <label index="flash.metadataNotAddedMsg">While adding the configuration records an error occurred. The records should be checked in the list module!</label>
<label index="flash.usergroupOkay">Usergroup has access!</label> <label index="flash.usergroupOkay">Usergroup has access!</label>
<label index="flash.usergroupOkayMsg">The usergroup "_cli_dlf" has access to this SysFolder.</label> <label index="flash.usergroupOkayMsg">The usergroup "_cli_dlf" has access to this SysFolder.</label>
<label index="flash.usergroupNotOkay">Usergroup has no access!</label> <label index="flash.usergroupNotOkay">Usergroup has no access!</label>
<label index="flash.usergroupNotOkayMsg">The usergroup "_cli_dlf" has no access to this SysFolder. Access can be granted automatically.&lt;br /&gt;&lt;br /&gt;&lt;a href="%s"&gt;Grant access!&lt;/a&gt;</label> <label index="flash.usergroupNotOkayMsg">The usergroup "_cli_dlf" has no access to this SysFolder. Access can be granted automatically.&lt;br /&gt;&lt;br /&gt;&lt;a href="%s"&gt;Grant access!&lt;/a&gt;</label>
<label index="flash.usergroupMissing">Usergroup not found!</label> <label index="flash.usergroupMissing">Usergroup not found!</label>
<label index="flash.usergroupMissingMsg">The usergroup "_cli_dlf" does not exist. The usergroup has to be added in the Extension Manager!</label> <label index="flash.usergroupMissingMsg">The usergroup "_cli_dlf" does not exist. The usergroup has to be added in the Extension Manager!</label>
<label index="flash.usergroupAdded">Access granted!</label> <label index="flash.usergroupAdded">Access granted!</label>
<label index="flash.usergroupAddedMsg">Access to this SysFolder was granted for usergroup "_cli_dlf".</label> <label index="flash.usergroupAddedMsg">Access to this SysFolder was granted for usergroup "_cli_dlf".</label>
<label index="flash.solrcoreOkay">Solr core found!</label> <label index="flash.solrcoreOkay">Solr core found!</label>
<label index="flash.solrcoreOkayMsg">There are configuration records for Solr cores. They can be edited in the list module.</label> <label index="flash.solrcoreOkayMsg">There are configuration records for Solr cores. They can be edited in the list module.</label>
<label index="flash.solrcoreDeprecated">Deprecated configuration found!</label> <label index="flash.solrcoreDeprecated">Deprecated configuration found!</label>
<label index="flash.solrcoreDeprecatedMsg">A common Solr core was found in the root-page. This is deprecated since Kitodo.Presentation 1.1. Solr cores should be stored in the client's SysFolder instead. Move a Solr core to this SysFolder (manually) or create a new one automatically.&lt;br /&gt;&lt;br /&gt;&lt;a href="%s"&gt;Create new Solr core!&lt;/a&gt;</label> <label index="flash.solrcoreDeprecatedMsg">A common Solr core was found in the root-page. This is deprecated since Kitodo.Presentation 1.1. Solr cores should be stored in the client's SysFolder instead. Move a Solr core to this SysFolder (manually) or create a new one automatically.&lt;br /&gt;&lt;br /&gt;&lt;a href="%s"&gt;Create new Solr core!&lt;/a&gt;</label>
<label index="flash.solrcoreMissing">No Solr core found!</label> <label index="flash.solrcoreMissing">No Solr core found!</label>
<label index="flash.solrcoreMissingMsg">There is no Solr core configured. For the search plugin at least one Solr core is needed. It can be created automatically.&lt;br /&gt;&lt;br /&gt;&lt;a href="%s"&gt;Create new Solr core!&lt;/a&gt;</label> <label index="flash.solrcoreMissingMsg">There is no Solr core configured. For the search plugin at least one Solr core is needed. It can be created automatically.&lt;br /&gt;&lt;br /&gt;&lt;a href="%s"&gt;Create new Solr core!&lt;/a&gt;</label>
<label index="flash.solrcoreAdded">Solr core created!</label> <label index="flash.solrcoreAdded">Solr core created!</label>
<label index="flash.solrcoreAddedMsg">A new Solr core was created. It can be edited in the list module.</label> <label index="flash.solrcoreAddedMsg">A new Solr core was created. It can be edited in the list module.</label>
<label index="flash.solrcoreNotAdded">No Solr core created!</label> <label index="flash.solrcoreNotAdded">No Solr core created!</label>
<label index="flash.solrcoreNotAddedMsg">While creating a new Solr core an error occurred. The record should be checked in the list module!</label> <label index="flash.solrcoreNotAddedMsg">While creating a new Solr core an error occurred. The record should be checked in the list module!</label>
<label index="flash.solrException">Apache Solr exception thrown:</label> <label index="flash.solrException">Apache Solr exception thrown:</label>
<label index="flash.solrNoConnection">Could not connect to Apache Solr server.</label> <label index="flash.solrNoConnection">Could not connect to Apache Solr server.</label>
<label index="flash.seeLog">See administration log for more details.</label> <label index="flash.seeLog">See administration log for more details.</label>
<label index="update.metadataConfig">Updating metadata configuration...</label> <label index="update.metadataConfig">Updating metadata configuration...</label>
<label index="update.metadataConfigOkay">...successfully completed!</label> <label index="update.metadataConfigOkay">...successfully completed!</label>
<label index="update.metadataConfigNotOkay">...incomplete! Please check your configuration manually.</label> <label index="update.metadataConfigNotOkay">...incomplete! Please check your configuration manually.</label>
<label index="update.copyIndexRelatedColumns">Copy index related columns...</label> <label index="update.copyIndexRelatedColumns">Copy index related columns...</label>
<label index="update.copyIndexRelatedColumnsOkay">...successfully completed!</label> <label index="update.copyIndexRelatedColumnsOkay">...successfully completed!</label>
<label index="update.copyIndexRelatedColumnsNotOkay">...incomplete! The index related columns (tokenized, stored, indexed, boost, autocomplete) of table tx_dlf_metadata have to be copied manually.</label> <label index="update.copyIndexRelatedColumnsNotOkay">...incomplete! The index related columns (tokenized, stored, indexed, boost, autocomplete) of table tx_dlf_metadata have to be copied manually.</label>
<label index="update.solariumSolrUpdate">Re-adding cores to Solr...</label> <label index="update.solariumSolrUpdate">Re-adding cores to Solr...</label>
<label index="update.solariumSolrUpdateOkay">...successfully completed! Please re-index your documents now.</label> <label index="update.solariumSolrUpdateOkay">...successfully completed! Please re-index your documents now.</label>
<label index="update.solariumSolrUpdateNotOkay">...failed for core %s! Please check your Solr configuration.</label> <label index="update.solariumSolrUpdateNotOkay">...failed for core %s! Please check your Solr configuration.</label>
<label index="update.FormatClasses">Switching format classes to namespaces...</label> <label index="update.FormatClasses">Switching format classes to namespaces...</label>
<label index="update.FormatClassesOkay">...successfully completed! Please check all format records in the page tree's root.</label> <label index="update.FormatClassesOkay">...successfully completed! Please check all format records in the page tree's root.</label>
<label index="solr.connected">Connection established!</label> <label index="solr.connected">Connection established!</label>
<label index="solr.status">The status code returned by Apache Solr is &lt;strong&gt;%s&lt;/strong&gt;.</label> <label index="solr.status">The status code returned by Apache Solr is &lt;strong&gt;%s&lt;/strong&gt;.</label>
<label index="solr.notConnected">Connection failed!</label> <label index="solr.notConnected">Connection failed!</label>
<label index="solr.error">Apache Solr was not reachable under &lt;strong&gt;%s&lt;/strong&gt;.</label> <label index="solr.error">Apache Solr was not reachable under &lt;strong&gt;%s&lt;/strong&gt;.</label>
<label index="metadataFormats.nsOkay">Default namespaces found!</label> <label index="metadataFormats.nsOkay">Default namespaces found!</label>
<label index="metadataFormats.nsOkayMsg">The namespace definitions for MODS, TEIHDR and ALTO do exist.</label> <label index="metadataFormats.nsOkayMsg">The namespace definitions for MODS, TEIHDR and ALTO do exist.</label>
<label index="metadataFormats.nsCreated">Default namespaces created successfully!</label> <label index="metadataFormats.nsCreated">Default namespaces created successfully!</label>
<label index="metadataFormats.nsCreatedMsg">The namespace definitions for MODS, TEIHDR and/or ALTO were created properly.</label> <label index="metadataFormats.nsCreatedMsg">The namespace definitions for MODS, TEIHDR and/or ALTO were created properly.</label>
<label index="metadataFormats.nsNotCreated">Default namespaces not found!</label> <label index="metadataFormats.nsNotCreated">Default namespaces not found!</label>
<label index="metadataFormats.nsNotCreatedMsg">The namespace definitions for MODS, TEIHDR and/or ALTO do not exist and could not be created.</label> <label index="metadataFormats.nsNotCreatedMsg">The namespace definitions for MODS, TEIHDR and/or ALTO do not exist and could not be created.</label>
<label index="cliUserGroup.usrRealName">Kitodo.Presentation command line indexer</label> <label index="cliUserGroup.usrRealName">Kitodo.Presentation command line indexer</label>
<label index="cliUserGroup.usrOkay">User "_cli_dlf" found!</label> <label index="cliUserGroup.usrOkay">User "_cli_dlf" found!</label>
<label index="cliUserGroup.usrOkayMsg">The backend user for the command line indexer exists and is configured properly.</label> <label index="cliUserGroup.usrOkayMsg">The backend user for the command line indexer exists and is configured properly.</label>
<label index="cliUserGroup.usrConfigured">User "_cli_dlf" configured successfully!</label> <label index="cliUserGroup.usrConfigured">User "_cli_dlf" configured successfully!</label>
<label index="cliUserGroup.usrConfiguredMsg">The backend user for the command line indexer was configured properly.</label> <label index="cliUserGroup.usrConfiguredMsg">The backend user for the command line indexer was configured properly.</label>
<label index="cliUserGroup.usrNotConfigured">User "_cli_dlf" not configured!</label> <label index="cliUserGroup.usrNotConfigured">User "_cli_dlf" not configured!</label>
<label index="cliUserGroup.usrNotConfiguredMsg">The backend user for the command line indexer exists, but is not configured properly.</label> <label index="cliUserGroup.usrNotConfiguredMsg">The backend user for the command line indexer exists, but is not configured properly.</label>
<label index="cliUserGroup.usrCreated">User "_cli_dlf" created successfully!</label> <label index="cliUserGroup.usrCreated">User "_cli_dlf" created successfully!</label>
<label index="cliUserGroup.usrCreatedMsg">The backend user for the command line indexer was created and configured properly.</label> <label index="cliUserGroup.usrCreatedMsg">The backend user for the command line indexer was created and configured properly.</label>
<label index="cliUserGroup.usrNotCreated">User "_cli_dlf" not found!</label> <label index="cliUserGroup.usrNotCreated">User "_cli_dlf" not found!</label>
<label index="cliUserGroup.usrNotCreatedMsg">The backend user for the command line indexer does not exist.</label> <label index="cliUserGroup.usrNotCreatedMsg">The backend user for the command line indexer does not exist.</label>
<label index="cliUserGroup.grpDescription">Usergroup for the Kitodo.Presentation command line indexer.</label> <label index="cliUserGroup.grpDescription">Usergroup for the Kitodo.Presentation command line indexer.</label>
<label index="cliUserGroup.grpOkay">Usergroup "_cli_dlf" found!</label> <label index="cliUserGroup.grpOkay">Usergroup "_cli_dlf" found!</label>
<label index="cliUserGroup.grpOkayMsg">The backend usergroup for the command line indexer exists and is configured properly.</label> <label index="cliUserGroup.grpOkayMsg">The backend usergroup for the command line indexer exists and is configured properly.</label>
<label index="cliUserGroup.grpConfigured">Usergroup "_cli_dlf" configured successfully!</label> <label index="cliUserGroup.grpConfigured">Usergroup "_cli_dlf" configured successfully!</label>
<label index="cliUserGroup.grpConfiguredMsg">The backend usergroup for the command line indexer was configured properly.</label> <label index="cliUserGroup.grpConfiguredMsg">The backend usergroup for the command line indexer was configured properly.</label>
<label index="cliUserGroup.grpNotConfigured">Usergroup "_cli_dlf" not configured!</label> <label index="cliUserGroup.grpNotConfigured">Usergroup "_cli_dlf" not configured!</label>
<label index="cliUserGroup.grpNotConfiguredMsg">The backend usergroup for the command line indexer exists, but is not configured properly.</label> <label index="cliUserGroup.grpNotConfiguredMsg">The backend usergroup for the command line indexer exists, but is not configured properly.</label>
<label index="cliUserGroup.grpCreated">Usergroup "_cli_dlf" created successfully!</label> <label index="cliUserGroup.grpCreated">Usergroup "_cli_dlf" created successfully!</label>
<label index="cliUserGroup.grpCreatedMsg">The backend usergroup for the command line indexer was created and configured properly.</label> <label index="cliUserGroup.grpCreatedMsg">The backend usergroup for the command line indexer was created and configured properly.</label>
<label index="cliUserGroup.grpNotCreated">Usergroup "_cli_dlf" not found!</label> <label index="cliUserGroup.grpNotCreated">Usergroup "_cli_dlf" not found!</label>
<label index="cliUserGroup.grpNotCreatedMsg">The backend usergroup for the command line indexer does not exist.</label> <label index="cliUserGroup.grpNotCreatedMsg">The backend usergroup for the command line indexer does not exist.</label>
<label index="cliUserGroup.cliOkay">Command Line Interface available!</label> <label index="cliUserGroup.cliOkay">Command Line Interface available!</label>
<label index="cliUserGroup.cliOkayMsg">The TYPO3 command line interface is available for the indexer to use.</label> <label index="cliUserGroup.cliOkayMsg">The TYPO3 command line interface is available for the indexer to use.</label>
<label index="cliUserGroup.cliNotOkay">Command Line Interface not available!</label> <label index="cliUserGroup.cliNotOkay">Command Line Interface not available!</label>
<label index="cliUserGroup.cliNotOkayMsg">The TYPO3 command line interface is not available for the indexer to use.</label> <label index="cliUserGroup.cliNotOkayMsg">The TYPO3 command line interface is not available for the indexer to use.</label>
</languageKey> </languageKey>
<languageKey index="de" type="array"> <languageKey index="de" type="array">
<label index="flash.attention">Achtung!</label> <label index="flash.attention">Achtung!</label>
<label index="flash.done">Fertig!</label> <label index="flash.done">Fertig!</label>
<label index="flash.warning">Warnung!</label> <label index="flash.warning">Warnung!</label>
<label index="flash.error">Fehler!</label> <label index="flash.error">Fehler!</label>
<label index="flash.running">Indexierung läuft...</label> <label index="flash.running">Indexierung läuft...</label>
<label index="flash.newCollection">Neue Sammlung "%s" [%u] zur Datenbank hinzugefügt.</label> <label index="flash.newCollection">Neue Sammlung "%s" [%u] zur Datenbank hinzugefügt.</label>
<label index="flash.newLibrary">Neue Bibliothek "%s" [%u] zur Datenbank hinzugefügt.</label> <label index="flash.newLibrary">Neue Bibliothek "%s" [%u] zur Datenbank hinzugefügt.</label>
<label index="flash.documentSaved">Dokument "%s" [%u] gespeichert.</label> <label index="flash.documentSaved">Dokument "%s" [%u] gespeichert.</label>
<label index="flash.documentIndexed">Dokument "%s" [%u] indexiert.</label> <label index="flash.documentIndexed">Dokument "%s" [%u] indexiert.</label>
<label index="flash.documentNotIndexed">Dokument "%s" [%u] konnte nicht indexiert werden.</label> <label index="flash.documentNotIndexed">Dokument "%s" [%u] konnte nicht indexiert werden.</label>
<label index="flash.documentsToGo">Verbleibende Dokumente zur Indexierung: %u</label> <label index="flash.documentsToGo">Verbleibende Dokumente zur Indexierung: %u</label>
<label index="flash.fileNotLoaded">Datei "%s" konnte nicht eingelesen werden.</label> <label index="flash.fileNotLoaded">Datei "%s" konnte nicht eingelesen werden.</label>
<label index="flash.wrongPageType">Seite ist kein SysOrdner!</label> <label index="flash.wrongPageType">Seite ist kein SysOrdner!</label>
<label index="flash.wrongPageTypeMsg">Die Konfigurationsdatensätze von Kitodo.Presentation müssen in SysOrdnern abgelegt werden.</label> <label index="flash.wrongPageTypeMsg">Die Konfigurationsdatensätze von Kitodo.Presentation müssen in SysOrdnern abgelegt werden.</label>
<label index="flash.structureOkay">Strukturdaten gefunden!</label> <label index="flash.structureOkay">Strukturdaten gefunden!</label>
<label index="flash.structureOkayMsg">Es ist eine Konfiguration für Strukturdaten vorhanden. Über das Listenmodul können neue Datensätze hinzugefügt und die vorhandenen editiert werden.</label> <label index="flash.structureOkayMsg">Es ist eine Konfiguration für Strukturdaten vorhanden. Über das Listenmodul können neue Datensätze hinzugefügt und die vorhandenen editiert werden.</label>
<label index="flash.structureNotOkay">Keine Strukturdaten gefunden!</label> <label index="flash.structureNotOkay">Keine Strukturdaten gefunden!</label>
<label index="flash.structureNotOkayMsg">Es wurde keine Konfiguration für Strukturdaten gefunden. Eine Grundkonfiguration kann automatisch angelegt werden.&lt;br /&gt;&lt;br /&gt;&lt;a href="%s"&gt;Grundkonfiguration jetzt anlegen!&lt;/a&gt;</label> <label index="flash.structureNotOkayMsg">Es wurde keine Konfiguration für Strukturdaten gefunden. Eine Grundkonfiguration kann automatisch angelegt werden.&lt;br /&gt;&lt;br /&gt;&lt;a href="%s"&gt;Grundkonfiguration jetzt anlegen!&lt;/a&gt;</label>
<label index="flash.structureAdded">Grundkonfiguration angelegt!</label> <label index="flash.structureAdded">Grundkonfiguration angelegt!</label>
<label index="flash.structureAddedMsg">Es wurde eine Grundkonfiguration für Strukturdaten angelegt. Die Datensätze sollten über das Listenmodul kontrolliert und ggf. angepasst werden!</label> <label index="flash.structureAddedMsg">Es wurde eine Grundkonfiguration für Strukturdaten angelegt. Die Datensätze sollten über das Listenmodul kontrolliert und ggf. angepasst werden!</label>
<label index="flash.structureNotAdded">Keine Grundkonfiguration angelegt!</label> <label index="flash.structureNotAdded">Keine Grundkonfiguration angelegt!</label>
<label index="flash.structureNotAddedMsg">Beim Anlegen der Grundkonfiguration für Strukturdaten ist ein Fehler aufgetreten. Die Konfiguration wurde nicht oder unvollständig angelegt und sollte über das Listenmodul kontrolliert werden!</label> <label index="flash.structureNotAddedMsg">Beim Anlegen der Grundkonfiguration für Strukturdaten ist ein Fehler aufgetreten. Die Konfiguration wurde nicht oder unvollständig angelegt und sollte über das Listenmodul kontrolliert werden!</label>
<label index="flash.metadataOkay">Metadaten gefunden!</label> <label index="flash.metadataOkay">Metadaten gefunden!</label>
<label index="flash.metadataOkayMsg">Es ist eine Konfiguration für Metadaten vorhanden. Über das Listenmodul können neue Datensätze hinzugefügt und die vorhandenen editiert werden.</label> <label index="flash.metadataOkayMsg">Es ist eine Konfiguration für Metadaten vorhanden. Über das Listenmodul können neue Datensätze hinzugefügt und die vorhandenen editiert werden.</label>
<label index="flash.metadataNotOkay">Keine Metadaten gefunden!</label> <label index="flash.metadataNotOkay">Keine Metadaten gefunden!</label>
<label index="flash.metadataNotOkayMsg">Es wurde keine Konfiguration für Metadaten gefunden. Eine Grundkonfiguration kann automatisch angelegt werden.&lt;br /&gt;&lt;br /&gt;&lt;a href="%s"&gt;Grundkonfiguration jetzt anlegen!&lt;/a&gt;</label> <label index="flash.metadataNotOkayMsg">Es wurde keine Konfiguration für Metadaten gefunden. Eine Grundkonfiguration kann automatisch angelegt werden.&lt;br /&gt;&lt;br /&gt;&lt;a href="%s"&gt;Grundkonfiguration jetzt anlegen!&lt;/a&gt;</label>
<label index="flash.metadataAdded">Grundkonfiguration angelegt!</label> <label index="flash.metadataAdded">Grundkonfiguration angelegt!</label>
<label index="flash.metadataAddedMsg">Es wurde eine Grundkonfiguration für Metadaten angelegt. Die Datensätze sollten über das Listenmodul kontrolliert und ggf. angepasst werden!</label> <label index="flash.metadataAddedMsg">Es wurde eine Grundkonfiguration für Metadaten angelegt. Die Datensätze sollten über das Listenmodul kontrolliert und ggf. angepasst werden!</label>
<label index="flash.metadataNotAdded">Keine Grundkonfiguration angelegt!</label> <label index="flash.metadataNotAdded">Keine Grundkonfiguration angelegt!</label>
<label index="flash.metadataNotAddedMsg">Beim Anlegen der Grundkonfiguration für Metadaten ist ein Fehler aufgetreten. Die Konfiguration wurde nicht oder unvollständig angelegt und sollte über das Listenmodul kontrolliert werden!</label> <label index="flash.metadataNotAddedMsg">Beim Anlegen der Grundkonfiguration für Metadaten ist ein Fehler aufgetreten. Die Konfiguration wurde nicht oder unvollständig angelegt und sollte über das Listenmodul kontrolliert werden!</label>
<label index="flash.usergroupOkay">Benutzergruppe hat Zugriffsrechte!</label> <label index="flash.usergroupOkay">Benutzergruppe hat Zugriffsrechte!</label>
<label index="flash.usergroupOkayMsg">Die Benutzergruppe "_cli_dlf" hat die nötigen Zugriffsrechte für diesen SysOrdner.</label> <label index="flash.usergroupOkayMsg">Die Benutzergruppe "_cli_dlf" hat die nötigen Zugriffsrechte für diesen SysOrdner.</label>
<label index="flash.usergroupNotOkay">Benutzergruppe hat keine Zugriffsrechte!</label> <label index="flash.usergroupNotOkay">Benutzergruppe hat keine Zugriffsrechte!</label>
<label index="flash.usergroupNotOkayMsg">Der Benutzergruppe "_cli_dlf" fehlen die nötigen Zugriffsrechte für diesen SysOrdner. Die Rechte können automatisch erteilt werden.&lt;br /&gt;&lt;br /&gt;&lt;a href="%s"&gt;Zugriffsrechte jetzt erteilen!&lt;/a&gt;</label> <label index="flash.usergroupNotOkayMsg">Der Benutzergruppe "_cli_dlf" fehlen die nötigen Zugriffsrechte für diesen SysOrdner. Die Rechte können automatisch erteilt werden.&lt;br /&gt;&lt;br /&gt;&lt;a href="%s"&gt;Zugriffsrechte jetzt erteilen!&lt;/a&gt;</label>
<label index="flash.usergroupMissing">Benutzergruppe nicht gefunden!</label> <label index="flash.usergroupMissing">Benutzergruppe nicht gefunden!</label>
<label index="flash.usergroupMissingMsg">Die Benutzergruppe "_cli_dlf" wurde nicht gefunden. Die Benutzergruppe muss über den Extension Manager angelegt werden!</label> <label index="flash.usergroupMissingMsg">Die Benutzergruppe "_cli_dlf" wurde nicht gefunden. Die Benutzergruppe muss über den Extension Manager angelegt werden!</label>
<label index="flash.usergroupAdded">Zugriffsrechte erteilt!</label> <label index="flash.usergroupAdded">Zugriffsrechte erteilt!</label>
<label index="flash.usergroupAddedMsg">Der Benutzergruppe "_cli_dlf" wurden die nötigen Zugriffsrechte für diesen SysOrdner erteilt.</label> <label index="flash.usergroupAddedMsg">Der Benutzergruppe "_cli_dlf" wurden die nötigen Zugriffsrechte für diesen SysOrdner erteilt.</label>
<label index="flash.solrcoreOkay">Solr Kern gefunden!</label> <label index="flash.solrcoreOkay">Solr Kern gefunden!</label>
<label index="flash.solrcoreOkayMsg">Es wurde die Konfiguration für einen Solr Kern gefunden. Über das Listenmodul können neue Datensätze hinzugefügt und die vorhandenen editiert werden.</label> <label index="flash.solrcoreOkayMsg">Es wurde die Konfiguration für einen Solr Kern gefunden. Über das Listenmodul können neue Datensätze hinzugefügt und die vorhandenen editiert werden.</label>
<label index="flash.solrcoreDeprecated">Veraltete Konfiguration gefunden!</label> <label index="flash.solrcoreDeprecated">Veraltete Konfiguration gefunden!</label>
<label index="flash.solrcoreDeprecatedMsg">Es wurde ein allgemeiner Solr Kern in der Root-Page gefunden. Das entspricht dem Verhalten von Kitodo.Presentation 1.0. Seit Version 1.1 sollten Solr Kerne im SysOrdner des jeweiligen Mandanten konfiguriert werden. Es sollte entweder einer der Solr Kerne aus der Root-Page in diesen SysOrdner verschoben werden (manuell) oder ein neuer Solr Kern angelegt werden.&lt;br /&gt;&lt;br /&gt;&lt;a href="%s"&gt;Neuen Solr Kern jetzt anlegen!&lt;/a&gt;</label> <label index="flash.solrcoreDeprecatedMsg">Es wurde ein allgemeiner Solr Kern in der Root-Page gefunden. Das entspricht dem Verhalten von Kitodo.Presentation 1.0. Seit Version 1.1 sollten Solr Kerne im SysOrdner des jeweiligen Mandanten konfiguriert werden. Es sollte entweder einer der Solr Kerne aus der Root-Page in diesen SysOrdner verschoben werden (manuell) oder ein neuer Solr Kern angelegt werden.&lt;br /&gt;&lt;br /&gt;&lt;a href="%s"&gt;Neuen Solr Kern jetzt anlegen!&lt;/a&gt;</label>
<label index="flash.solrcoreMissing">Kein Solr Kern gefunden!</label> <label index="flash.solrcoreMissing">Kein Solr Kern gefunden!</label>
<label index="flash.solrcoreMissingMsg">Es wurde kein Solr Kern gefunden. Ohne Solr Kern kann das Plugin zur Recherche in den Meta- und Strukturdaten nicht verwendet werden. Ein Solr Kern kann automatisch angelegt werden.&lt;br /&gt;&lt;br /&gt;&lt;a href="%s"&gt;Solr Kern jetzt anlegen!&lt;/a&gt;</label> <label index="flash.solrcoreMissingMsg">Es wurde kein Solr Kern gefunden. Ohne Solr Kern kann das Plugin zur Recherche in den Meta- und Strukturdaten nicht verwendet werden. Ein Solr Kern kann automatisch angelegt werden.&lt;br /&gt;&lt;br /&gt;&lt;a href="%s"&gt;Solr Kern jetzt anlegen!&lt;/a&gt;</label>
<label index="flash.solrcoreAdded">Solr Kern angelegt!</label> <label index="flash.solrcoreAdded">Solr Kern angelegt!</label>
<label index="flash.solrcoreAddedMsg">Es wurde ein Solr Kern angelegt. Über das Listenmodul können neue Datensätze hinzugefügt und die vorhandenen editiert werden.</label> <label index="flash.solrcoreAddedMsg">Es wurde ein Solr Kern angelegt. Über das Listenmodul können neue Datensätze hinzugefügt und die vorhandenen editiert werden.</label>
<label index="flash.solrcoreNotAdded">Kein Solr Kern angelegt!</label> <label index="flash.solrcoreNotAdded">Kein Solr Kern angelegt!</label>
<label index="flash.solrcoreNotAddedMsg">Beim Anlegen eines Solr Kerns ist ein Fehler aufgetreten. Der Solr Kern wurde nicht oder unvollständig angelegt und sollte über das Listenmodul kontrolliert werden!</label> <label index="flash.solrcoreNotAddedMsg">Beim Anlegen eines Solr Kerns ist ein Fehler aufgetreten. Der Solr Kern wurde nicht oder unvollständig angelegt und sollte über das Listenmodul kontrolliert werden!</label>
<label index="flash.solrException">Apache Solr meldet Ausnahmefehler:</label> <label index="flash.solrException">Apache Solr meldet Ausnahmefehler:</label>
<label index="flash.solrNoConnection">Verbindung zu Apache Solr Server konnte nicht hergestellt werden.</label> <label index="flash.solrNoConnection">Verbindung zu Apache Solr Server konnte nicht hergestellt werden.</label>
<label index="flash.seeLog">Alle Details des Indexierungslaufs stehen im Administrationsprotokoll.</label> <label index="flash.seeLog">Alle Details des Indexierungslaufs stehen im Administrationsprotokoll.</label>
<label index="update.metadataConfig">Aktualisierung der Metadatenkonfiguration...</label> <label index="update.metadataConfig">Aktualisierung der Metadatenkonfiguration...</label>
<label index="update.metadataConfigOkay">...erfolgreich beendet! Alle Datensätze wurden ins IRRE-Schema konvertiert.</label> <label index="update.metadataConfigOkay">...erfolgreich beendet! Alle Datensätze wurden ins IRRE-Schema konvertiert.</label>
<label index="update.metadataConfigNotOkay">...abgebrochen! Die Überführung der Datensätze ins IRRE-Schema muss manuell erfolgen.</label> <label index="update.metadataConfigNotOkay">...abgebrochen! Die Überführung der Datensätze ins IRRE-Schema muss manuell erfolgen.</label>
<label index="update.copyIndexRelatedColumns">Kopieren der Index bezogenen Tabellenspalten...</label> <label index="update.copyIndexRelatedColumns">Kopieren der Index bezogenen Tabellenspalten...</label>
<label index="update.copyIndexRelatedColumnsOkay">...erfolgreich beendet! Tabellen wurden erfolgreich kopiert.</label> <label index="update.copyIndexRelatedColumnsOkay">...erfolgreich beendet! Tabellen wurden erfolgreich kopiert.</label>
<label index="update.copyIndexRelatedColumnsNotOkay">...abgebrochen! Das Kopieren der Index bezogenen Tabellenspalten (tokenized, stored, indexed, boost, autocomplete) der Tabelle tx_dlf_metadata muss manuell erfolgen.</label> <label index="update.copyIndexRelatedColumnsNotOkay">...abgebrochen! Das Kopieren der Index bezogenen Tabellenspalten (tokenized, stored, indexed, boost, autocomplete) der Tabelle tx_dlf_metadata muss manuell erfolgen.</label>
<label index="update.solariumSolrUpdate">Hinzufügen der Solr Kerne...</label> <label index="update.solariumSolrUpdate">Hinzufügen der Solr Kerne...</label>
<label index="update.solariumSolrUpdateOkay">...erfolgreich beendet! Bitte re-indexieren Sie jetzt alle Dokumente.</label> <label index="update.solariumSolrUpdateOkay">...erfolgreich beendet! Bitte re-indexieren Sie jetzt alle Dokumente.</label>
<label index="update.solariumSolrUpdateNotOkay">...für Kern %s fehlgeschlagen! Bitte überprüfen Sie die Solr-Konfiguration.</label> <label index="update.solariumSolrUpdateNotOkay">...für Kern %s fehlgeschlagen! Bitte überprüfen Sie die Solr-Konfiguration.</label>
<label index="update.FormatClasses">Format-Klassen auf Namensräume umstellen...</label> <label index="update.FormatClasses">Format-Klassen auf Namensräume umstellen...</label>
<label index="update.FormatClassesOkay">...erfolgreich beendet! Bitte prüfen Sie dennoch alle Formateinträge im Wurzelknoten des Seitenbaums.</label> <label index="update.FormatClassesOkay">...erfolgreich beendet! Bitte prüfen Sie dennoch alle Formateinträge im Wurzelknoten des Seitenbaums.</label>
<label index="solr.connected">Verbindung hergestellt!</label> <label index="solr.connected">Verbindung hergestellt!</label>
<label index="solr.status">Apache Solr gibt den Statuscode &lt;strong&gt;%s&lt;/strong&gt; zurück.</label> <label index="solr.status">Apache Solr gibt den Statuscode &lt;strong&gt;%s&lt;/strong&gt; zurück.</label>
<label index="solr.notConnected">Verbindung fehlgeschlagen!</label> <label index="solr.notConnected">Verbindung fehlgeschlagen!</label>
<label index="solr.error">Apache Solr ist unter &lt;strong&gt;%s&lt;/strong&gt; nicht erreichbar.</label> <label index="solr.error">Apache Solr ist unter &lt;strong&gt;%s&lt;/strong&gt; nicht erreichbar.</label>
<label index="metadataFormats.nsOkay">Standard-Namensräume gefunden!</label> <label index="metadataFormats.nsOkay">Standard-Namensräume gefunden!</label>
<label index="metadataFormats.nsOkayMsg">Die Standard-Namensräume für MODS, TEIHDR und ALTO sind definiert.</label> <label index="metadataFormats.nsOkayMsg">Die Standard-Namensräume für MODS, TEIHDR und ALTO sind definiert.</label>
<label index="metadataFormats.nsCreated">Standard-Namensräume erfolgreich angelegt!</label> <label index="metadataFormats.nsCreated">Standard-Namensräume erfolgreich angelegt!</label>
<label index="metadataFormats.nsCreatedMsg">Die Standard-Namensräume für MODS, TEIHDR und/oder ALTO wurden erfolgreich definiert.</label> <label index="metadataFormats.nsCreatedMsg">Die Standard-Namensräume für MODS, TEIHDR und/oder ALTO wurden erfolgreich definiert.</label>
<label index="metadataFormats.nsNotCreated">Standard-Namensräume nicht gefunden!</label> <label index="metadataFormats.nsNotCreated">Standard-Namensräume nicht gefunden!</label>
<label index="metadataFormats.nsNotCreatedMsg">Die Standard-Namensräume für MODS, TEIHDR und/oder ALTO konnten nicht definiert werden.</label> <label index="metadataFormats.nsNotCreatedMsg">Die Standard-Namensräume für MODS, TEIHDR und/oder ALTO konnten nicht definiert werden.</label>
<label index="cliUserGroup.usrRealName">Kitodo.Presentation Kommandozeilen-Indexierungsdienst</label> <label index="cliUserGroup.usrRealName">Kitodo.Presentation Kommandozeilen-Indexierungsdienst</label>
<label index="cliUserGroup.usrOkay">Nutzer "_cli_dlf" gefunden!</label> <label index="cliUserGroup.usrOkay">Nutzer "_cli_dlf" gefunden!</label>
<label index="cliUserGroup.usrOkayMsg">Der Nutzer für den Kommandozeilen-Indexierungsdienst ist korrekt konfiguriert und aktiviert.</label> <label index="cliUserGroup.usrOkayMsg">Der Nutzer für den Kommandozeilen-Indexierungsdienst ist korrekt konfiguriert und aktiviert.</label>
<label index="cliUserGroup.usrConfigured">Nutzer "_cli_dlf" erfolgreich konfiguriert!</label> <label index="cliUserGroup.usrConfigured">Nutzer "_cli_dlf" erfolgreich konfiguriert!</label>
<label index="cliUserGroup.usrConfiguredMsg">Der Nutzer für den Kommandozeilen-Indexierungsdienst wurde erfolgreich konfiguriert.</label> <label index="cliUserGroup.usrConfiguredMsg">Der Nutzer für den Kommandozeilen-Indexierungsdienst wurde erfolgreich konfiguriert.</label>
<label index="cliUserGroup.usrNotConfigured">Nutzer "_cli_dlf" nicht konfiguriert!</label> <label index="cliUserGroup.usrNotConfigured">Nutzer "_cli_dlf" nicht konfiguriert!</label>
<label index="cliUserGroup.usrNotConfiguredMsg">Der Nutzer für den Kommandozeilen-Indexierungsdienst existiert, ist aber nicht korrekt konfiguriert.</label> <label index="cliUserGroup.usrNotConfiguredMsg">Der Nutzer für den Kommandozeilen-Indexierungsdienst existiert, ist aber nicht korrekt konfiguriert.</label>
<label index="cliUserGroup.usrCreated">Nutzer "_cli_dlf" erfolgreich angelegt!</label> <label index="cliUserGroup.usrCreated">Nutzer "_cli_dlf" erfolgreich angelegt!</label>
<label index="cliUserGroup.usrCreatedMsg">Der Nutzer für den Kommandozeilen-Indexierungsdienst wurde erfolgreich angelegt und konfiguriert.</label> <label index="cliUserGroup.usrCreatedMsg">Der Nutzer für den Kommandozeilen-Indexierungsdienst wurde erfolgreich angelegt und konfiguriert.</label>
<label index="cliUserGroup.usrNotCreated">Nutzer "_cli_dlf" nicht gefunden!</label> <label index="cliUserGroup.usrNotCreated">Nutzer "_cli_dlf" nicht gefunden!</label>
<label index="cliUserGroup.usrNotCreatedMsg">Der Nutzer für den Kommandozeilen-Indexierungsdienst existiert nicht.</label> <label index="cliUserGroup.usrNotCreatedMsg">Der Nutzer für den Kommandozeilen-Indexierungsdienst existiert nicht.</label>
<label index="cliUserGroup.grpDescription">Nutzergruppe für den Kitodo.Presentation Kommandozeilen-Indexierungsdienst.</label> <label index="cliUserGroup.grpDescription">Nutzergruppe für den Kitodo.Presentation Kommandozeilen-Indexierungsdienst.</label>
<label index="cliUserGroup.grpOkay">Nutzergruppe "_cli_dlf" gefunden!</label> <label index="cliUserGroup.grpOkay">Nutzergruppe "_cli_dlf" gefunden!</label>
<label index="cliUserGroup.grpOkayMsg">Die Nutzergruppe für den Kommandozeilen-Indexierungsdienst ist korrekt konfiguriert und aktiviert.</label> <label index="cliUserGroup.grpOkayMsg">Die Nutzergruppe für den Kommandozeilen-Indexierungsdienst ist korrekt konfiguriert und aktiviert.</label>
<label index="cliUserGroup.grpConfigured">Nutzergruppe "_cli_dlf" erfolgreich konfiguriert!</label> <label index="cliUserGroup.grpConfigured">Nutzergruppe "_cli_dlf" erfolgreich konfiguriert!</label>
<label index="cliUserGroup.grpConfiguredMsg">Die Nutzergruppe für den Kommandozeilen-Indexierungsdienst wurde erfolgreich konfiguriert.</label> <label index="cliUserGroup.grpConfiguredMsg">Die Nutzergruppe für den Kommandozeilen-Indexierungsdienst wurde erfolgreich konfiguriert.</label>
<label index="cliUserGroup.grpNotConfigured">Nutzergruppe "_cli_dlf" nicht konfiguriert!</label> <label index="cliUserGroup.grpNotConfigured">Nutzergruppe "_cli_dlf" nicht konfiguriert!</label>
<label index="cliUserGroup.grpNotConfiguredMsg">Die Nutzergruppe für den Kommandozeilen-Indexierungsdienst existiert, ist aber nicht korrekt konfiguriert.</label> <label index="cliUserGroup.grpNotConfiguredMsg">Die Nutzergruppe für den Kommandozeilen-Indexierungsdienst existiert, ist aber nicht korrekt konfiguriert.</label>
<label index="cliUserGroup.grpCreated">Nutzergruppe "_cli_dlf" erfolgreich angelegt!</label> <label index="cliUserGroup.grpCreated">Nutzergruppe "_cli_dlf" erfolgreich angelegt!</label>
<label index="cliUserGroup.grpCreatedMsg">Die Nutzergruppe für den Kommandozeilen-Indexierungsdienst wurde erfolgreich angelegt und konfiguriert.</label> <label index="cliUserGroup.grpCreatedMsg">Die Nutzergruppe für den Kommandozeilen-Indexierungsdienst wurde erfolgreich angelegt und konfiguriert.</label>
<label index="cliUserGroup.grpNotCreated">Nutzergruppe "_cli_dlf" nicht gefunden!</label> <label index="cliUserGroup.grpNotCreated">Nutzergruppe "_cli_dlf" nicht gefunden!</label>
<label index="cliUserGroup.grpNotCreatedMsg">Die Nutzergruppe für den Kommandozeilen-Indexierungsdienst existiert nicht.</label> <label index="cliUserGroup.grpNotCreatedMsg">Die Nutzergruppe für den Kommandozeilen-Indexierungsdienst existiert nicht.</label>
<label index="cliUserGroup.cliOkay">Kommandozeilen-Schnittstelle verfügbar!</label> <label index="cliUserGroup.cliOkay">Kommandozeilen-Schnittstelle verfügbar!</label>
<label index="cliUserGroup.cliOkayMsg">Die TYPO3-Kommandozeilenschnittstelle steht für den Indexierungsdienst zur Verfügung.</label> <label index="cliUserGroup.cliOkayMsg">Die TYPO3-Kommandozeilenschnittstelle steht für den Indexierungsdienst zur Verfügung.</label>
<label index="cliUserGroup.cliNotOkay">Kommandozeilen-Schnittstelle nicht verfügbar!</label> <label index="cliUserGroup.cliNotOkay">Kommandozeilen-Schnittstelle nicht verfügbar!</label>
<label index="cliUserGroup.cliNotOkayMsg">Die TYPO3-Kommandozeilenschnittstelle steht für den Indexierungsdienst nicht zur Verfügung.</label> <label index="cliUserGroup.cliNotOkayMsg">Die TYPO3-Kommandozeilenschnittstelle steht für den Indexierungsdienst nicht zur Verfügung.</label>
</languageKey> </languageKey>
</data> </data>
</T3locallang> </T3locallang>

View File

@ -9,20 +9,20 @@
* LICENSE.txt file that was distributed with this source code. * LICENSE.txt file that was distributed with this source code.
--> -->
<T3locallang> <T3locallang>
<meta type="array"> <meta type="array">
<type>module</type> <type>module</type>
<description>Language labels for tool Fulltext</description> <description>Language labels for tool Fulltext</description>
</meta> </meta>
<data type="array"> <data type="array">
<languageKey index="default" type="array"> <languageKey index="default" type="array">
<label index="fulltext-on">Activate Fulltext</label> <label index="fulltext-on">Activate Fulltext</label>
<label index="fulltext-off">Deactivate Fulltext</label> <label index="fulltext-off">Deactivate Fulltext</label>
<label index="fulltext-not-available">No Fulltext available</label> <label index="fulltext-not-available">No Fulltext available</label>
</languageKey> </languageKey>
<languageKey index="de" type="array"> <languageKey index="de" type="array">
<label index="fulltext-on">Volltext an</label> <label index="fulltext-on">Volltext an</label>
<label index="fulltext-off">Volltext aus</label> <label index="fulltext-off">Volltext aus</label>
<label index="fulltext-not-available">Keine Volltexte vorhanden</label> <label index="fulltext-not-available">Keine Volltexte vorhanden</label>
</languageKey> </languageKey>
</data> </data>
</T3locallang> </T3locallang>

View File

@ -9,20 +9,20 @@
* LICENSE.txt file that was distributed with this source code. * LICENSE.txt file that was distributed with this source code.
--> -->
<T3locallang> <T3locallang>
<meta type="array"> <meta type="array">
<type>module</type> <type>module</type>
<description>Language labels for tool ImageDownload</description> <description>Language labels for tool ImageDownload</description>
</meta> </meta>
<data type="array"> <data type="array">
<languageKey index="default" type="array"> <languageKey index="default" type="array">
<label index="singlePage">Download single page</label> <label index="singlePage">Download single page</label>
<label index="leftPage">Download left page</label> <label index="leftPage">Download left page</label>
<label index="rightPage">Download right page</label> <label index="rightPage">Download right page</label>
</languageKey> </languageKey>
<languageKey index="de" type="array"> <languageKey index="de" type="array">
<label index="singlePage">Einzelseite herunterladen</label> <label index="singlePage">Einzelseite herunterladen</label>
<label index="leftPage">Linke Seite herunterladen</label> <label index="leftPage">Linke Seite herunterladen</label>
<label index="rightPage">Rechte Seite herunterladen</label> <label index="rightPage">Rechte Seite herunterladen</label>
</languageKey> </languageKey>
</data> </data>
</T3locallang> </T3locallang>

View File

@ -9,32 +9,32 @@
* LICENSE.txt file that was distributed with this source code. * LICENSE.txt file that was distributed with this source code.
--> -->
<T3locallang> <T3locallang>
<meta type="array"> <meta type="array">
<type>module</type> <type>module</type>
<description>Language labels for tool ImageManipulation</description> <description>Language labels for tool ImageManipulation</description>
</meta> </meta>
<data type="array"> <data type="array">
<languageKey index="default" type="array"> <languageKey index="default" type="array">
<label index="imagemanipulation-on">Activate image manipulation</label> <label index="imagemanipulation-on">Activate image manipulation</label>
<label index="imagemanipulation-off">Deactivate image manipulation</label> <label index="imagemanipulation-off">Deactivate image manipulation</label>
<label index="reset">Reset</label> <label index="reset">Reset</label>
<label index="saturation">Saturation</label> <label index="saturation">Saturation</label>
<label index="hue">Hue</label> <label index="hue">Hue</label>
<label index="contrast">Contrast</label> <label index="contrast">Contrast</label>
<label index="brightness">Brightness</label> <label index="brightness">Brightness</label>
<label index="invert">Color inverting</label> <label index="invert">Color inverting</label>
<label index="no-support">Image manipulation is not supported</label> <label index="no-support">Image manipulation is not supported</label>
</languageKey> </languageKey>
<languageKey index="de" type="array"> <languageKey index="de" type="array">
<label index="imagemanipulation-on">Bildbearbeitung an</label> <label index="imagemanipulation-on">Bildbearbeitung an</label>
<label index="imagemanipulation-off">Bildbearbeitung aus</label> <label index="imagemanipulation-off">Bildbearbeitung aus</label>
<label index="reset">Zurücksetzen</label> <label index="reset">Zurücksetzen</label>
<label index="saturation">Sättigung</label> <label index="saturation">Sättigung</label>
<label index="hue">Färbung</label> <label index="hue">Färbung</label>
<label index="contrast">Kontrast</label> <label index="contrast">Kontrast</label>
<label index="brightness">Helligkeit</label> <label index="brightness">Helligkeit</label>
<label index="invert">Farbinvertierung</label> <label index="invert">Farbinvertierung</label>
<label index="no-support">Bildbearbeitung wird nicht unterstützt</label> <label index="no-support">Bildbearbeitung wird nicht unterstützt</label>
</languageKey> </languageKey>
</data> </data>
</T3locallang> </T3locallang>

View File

@ -9,346 +9,346 @@
* LICENSE.txt file that was distributed with this source code. * LICENSE.txt file that was distributed with this source code.
--> -->
<T3locallang> <T3locallang>
<meta type="array"> <meta type="array">
<type>database</type> <type>database</type>
<description>Language labels for extension 'dlf'</description> <description>Language labels for extension 'dlf'</description>
</meta> </meta>
<data type="array"> <data type="array">
<languageKey index="default" type="array"> <languageKey index="default" type="array">
<label index="tx_dlf_actionlog">Action protocol</label> <label index="tx_dlf_actionlog">Action protocol</label>
<label index="tx_dlf_actionlog.label">Action protocol</label> <label index="tx_dlf_actionlog.label">Action protocol</label>
<label index="tx_dlf_actionlog.user_id">User ID</label> <label index="tx_dlf_actionlog.user_id">User ID</label>
<label index="tx_dlf_actionlog.file_name">Filename</label> <label index="tx_dlf_actionlog.file_name">Filename</label>
<label index="tx_dlf_actionlog.count_pages">Page count</label> <label index="tx_dlf_actionlog.count_pages">Page count</label>
<label index="tx_dlf_actionlog.name">Name</label> <label index="tx_dlf_actionlog.name">Name</label>
<label index="tx_dlf_actionlog.creation_date">Creation date</label> <label index="tx_dlf_actionlog.creation_date">Creation date</label>
<label index="tx_dlf_basket">Basket</label> <label index="tx_dlf_basket">Basket</label>
<label index="tx_dlf_basket.label">Basket</label> <label index="tx_dlf_basket.label">Basket</label>
<label index="tx_dlf_basket.sessionId">Session ID</label> <label index="tx_dlf_basket.sessionId">Session ID</label>
<label index="tx_dlf_basket.docIds">Document ID</label> <label index="tx_dlf_basket.docIds">Document ID</label>
<label index="tx_dlf_basket.feUser">FE user ID</label> <label index="tx_dlf_basket.feUser">FE user ID</label>
<label index="tx_dlf_documents">Documents</label> <label index="tx_dlf_documents">Documents</label>
<label index="tx_dlf_documents.prod_id">Production Identifier</label> <label index="tx_dlf_documents.prod_id">Production Identifier</label>
<label index="tx_dlf_documents.location">Location of METS file (URI)</label> <label index="tx_dlf_documents.location">Location of METS file (URI)</label>
<label index="tx_dlf_documents.record_id">Record Identifier</label> <label index="tx_dlf_documents.record_id">Record Identifier</label>
<label index="tx_dlf_documents.opac_id">OPAC/Local Identifier</label> <label index="tx_dlf_documents.opac_id">OPAC/Local Identifier</label>
<label index="tx_dlf_documents.union_id">Union Catalog/Foreign Identifier</label> <label index="tx_dlf_documents.union_id">Union Catalog/Foreign Identifier</label>
<label index="tx_dlf_documents.urn">Uniform Resource Name (URN)</label> <label index="tx_dlf_documents.urn">Uniform Resource Name (URN)</label>
<label index="tx_dlf_documents.purl">Persistent Uniform Resource Locator (PURL)</label> <label index="tx_dlf_documents.purl">Persistent Uniform Resource Locator (PURL)</label>
<label index="tx_dlf_documents.title">Title</label> <label index="tx_dlf_documents.title">Title</label>
<label index="tx_dlf_documents.title_sorting">Title (Sorting)</label> <label index="tx_dlf_documents.title_sorting">Title (Sorting)</label>
<label index="tx_dlf_documents.author">Author</label> <label index="tx_dlf_documents.author">Author</label>
<label index="tx_dlf_documents.year">Year of Publication</label> <label index="tx_dlf_documents.year">Year of Publication</label>
<label index="tx_dlf_documents.place">Place of Publication</label> <label index="tx_dlf_documents.place">Place of Publication</label>
<label index="tx_dlf_documents.thumbnail">Thumbnail</label> <label index="tx_dlf_documents.thumbnail">Thumbnail</label>
<label index="tx_dlf_documents.structure">Typ of Document</label> <label index="tx_dlf_documents.structure">Typ of Document</label>
<label index="tx_dlf_documents.partof">Part of ...</label> <label index="tx_dlf_documents.partof">Part of ...</label>
<label index="tx_dlf_documents.volume">Number of Volume</label> <label index="tx_dlf_documents.volume">Number of Volume</label>
<label index="tx_dlf_documents.volume_sorting">Number of Volume (Sorting)</label> <label index="tx_dlf_documents.volume_sorting">Number of Volume (Sorting)</label>
<label index="tx_dlf_documents.collections">Collections</label> <label index="tx_dlf_documents.collections">Collections</label>
<label index="tx_dlf_documents.owner">Owner</label> <label index="tx_dlf_documents.owner">Owner</label>
<label index="tx_dlf_documents.status">Status</label> <label index="tx_dlf_documents.status">Status</label>
<label index="tx_dlf_documents.status.default">default</label> <label index="tx_dlf_documents.status.default">default</label>
<label index="tx_dlf_documents.tab1">Titledata</label> <label index="tx_dlf_documents.tab1">Titledata</label>
<label index="tx_dlf_documents.tab2">Identifier</label> <label index="tx_dlf_documents.tab2">Identifier</label>
<label index="tx_dlf_documents.tab3">Access</label> <label index="tx_dlf_documents.tab3">Access</label>
<label index="tx_dlf_structures">Structures</label> <label index="tx_dlf_structures">Structures</label>
<label index="tx_dlf_structures.toplevel">Toplevel Unit?</label> <label index="tx_dlf_structures.toplevel">Toplevel Unit?</label>
<label index="tx_dlf_structures.label">Display Label</label> <label index="tx_dlf_structures.label">Display Label</label>
<label index="tx_dlf_structures.index_name">Index Name</label> <label index="tx_dlf_structures.index_name">Index Name</label>
<label index="tx_dlf_structures.oai_name">OAI-PMH Mapping</label> <label index="tx_dlf_structures.oai_name">OAI-PMH Mapping</label>
<label index="tx_dlf_structures.thumbnail">Get thumbnail from...</label> <label index="tx_dlf_structures.thumbnail">Get thumbnail from...</label>
<label index="tx_dlf_structures.thumbnail.self">self</label> <label index="tx_dlf_structures.thumbnail.self">self</label>
<label index="tx_dlf_structures.status">Status</label> <label index="tx_dlf_structures.status">Status</label>
<label index="tx_dlf_structures.status.default">default</label> <label index="tx_dlf_structures.status.default">default</label>
<label index="tx_dlf_structures.tab1">General</label> <label index="tx_dlf_structures.tab1">General</label>
<label index="tx_dlf_structures.tab2">Translation</label> <label index="tx_dlf_structures.tab2">Translation</label>
<label index="tx_dlf_structures.tab3">Access</label> <label index="tx_dlf_structures.tab3">Access</label>
<label index="tx_dlf_metadata">Metadata</label> <label index="tx_dlf_metadata">Metadata</label>
<label index="tx_dlf_metadata.label">Display Label</label> <label index="tx_dlf_metadata.label">Display Label</label>
<label index="tx_dlf_metadata.index_name">Index Name</label> <label index="tx_dlf_metadata.index_name">Index Name</label>
<label index="tx_dlf_metadata.format">Data Format</label> <label index="tx_dlf_metadata.format">Data Format</label>
<label index="tx_dlf_metadata.default_value">Default Value</label> <label index="tx_dlf_metadata.default_value">Default Value</label>
<label index="tx_dlf_metadata.wrap">TypoScript-Wrap</label> <label index="tx_dlf_metadata.wrap">TypoScript-Wrap</label>
<label index="tx_dlf_metadata.index_tokenized">Tokenize in Search Index?</label> <label index="tx_dlf_metadata.index_tokenized">Tokenize in Search Index?</label>
<label index="tx_dlf_metadata.index_stored">Store in Search Index?</label> <label index="tx_dlf_metadata.index_stored">Store in Search Index?</label>
<label index="tx_dlf_metadata.index_indexed">Index in Search Index?</label> <label index="tx_dlf_metadata.index_indexed">Index in Search Index?</label>
<label index="tx_dlf_metadata.index_boost">Field boost</label> <label index="tx_dlf_metadata.index_boost">Field boost</label>
<label index="tx_dlf_metadata.is_sortable">Prepare for sorting?</label> <label index="tx_dlf_metadata.is_sortable">Prepare for sorting?</label>
<label index="tx_dlf_metadata.is_facet">Prepare for faceting?</label> <label index="tx_dlf_metadata.is_facet">Prepare for faceting?</label>
<label index="tx_dlf_metadata.is_listed">Show in titledata/listview?</label> <label index="tx_dlf_metadata.is_listed">Show in titledata/listview?</label>
<label index="tx_dlf_metadata.index_autocomplete">Use for search suggestion?</label> <label index="tx_dlf_metadata.index_autocomplete">Use for search suggestion?</label>
<label index="tx_dlf_metadata.status">Status</label> <label index="tx_dlf_metadata.status">Status</label>
<label index="tx_dlf_metadata.status.default">default</label> <label index="tx_dlf_metadata.status.default">default</label>
<label index="tx_dlf_metadata.tab1">General</label> <label index="tx_dlf_metadata.tab1">General</label>
<label index="tx_dlf_metadata.tab2">Translation</label> <label index="tx_dlf_metadata.tab2">Translation</label>
<label index="tx_dlf_metadata.tab3">Access</label> <label index="tx_dlf_metadata.tab3">Access</label>
<label index="tx_dlf_metadataformat">Metadata Format</label> <label index="tx_dlf_metadataformat">Metadata Format</label>
<label index="tx_dlf_metadataformat.encoded">Encoding</label> <label index="tx_dlf_metadataformat.encoded">Encoding</label>
<label index="tx_dlf_metadataformat.xpath">XPath (relative to //dmdSec/mdWrap/xmlData/root and with namespace)</label> <label index="tx_dlf_metadataformat.xpath">XPath (relative to //dmdSec/mdWrap/xmlData/root and with namespace)</label>
<label index="tx_dlf_metadataformat.xpath_sorting">XPath for sorting (optional)</label> <label index="tx_dlf_metadataformat.xpath_sorting">XPath for sorting (optional)</label>
<label index="tx_dlf_metadataformat.mandatory">Mandatory field?</label> <label index="tx_dlf_metadataformat.mandatory">Mandatory field?</label>
<label index="tx_dlf_metadataformat.tab1">General</label> <label index="tx_dlf_metadataformat.tab1">General</label>
<label index="tx_dlf_formats">Data Formats</label> <label index="tx_dlf_formats">Data Formats</label>
<label index="tx_dlf_formats.type">METS Name</label> <label index="tx_dlf_formats.type">METS Name</label>
<label index="tx_dlf_formats.root">Root Element</label> <label index="tx_dlf_formats.root">Root Element</label>
<label index="tx_dlf_formats.namespace">Namespace URI</label> <label index="tx_dlf_formats.namespace">Namespace URI</label>
<label index="tx_dlf_formats.class">Class Name</label> <label index="tx_dlf_formats.class">Class Name</label>
<label index="tx_dlf_formats.tab1">General</label> <label index="tx_dlf_formats.tab1">General</label>
<label index="tx_dlf_solrcores">Solr Cores</label> <label index="tx_dlf_solrcores">Solr Cores</label>
<label index="tx_dlf_solrcores.label">Display Label</label> <label index="tx_dlf_solrcores.label">Display Label</label>
<label index="tx_dlf_solrcores.index_name">Solr Name</label> <label index="tx_dlf_solrcores.index_name">Solr Name</label>
<label index="tx_dlf_solrcores.tab1">General</label> <label index="tx_dlf_solrcores.tab1">General</label>
<label index="tx_dlf_collections">Collections</label> <label index="tx_dlf_collections">Collections</label>
<label index="tx_dlf_collections.label">Display Label</label> <label index="tx_dlf_collections.label">Display Label</label>
<label index="tx_dlf_collections.index_name">Index Name</label> <label index="tx_dlf_collections.index_name">Index Name</label>
<label index="tx_dlf_collections.index_search">Define (virtual) collection via Solr Query</label> <label index="tx_dlf_collections.index_search">Define (virtual) collection via Solr Query</label>
<label index="tx_dlf_collections.oai_name">OAI-PMH Mapping</label> <label index="tx_dlf_collections.oai_name">OAI-PMH Mapping</label>
<label index="tx_dlf_collections.description">Description</label> <label index="tx_dlf_collections.description">Description</label>
<label index="tx_dlf_collections.thumbnail">Thumbnail</label> <label index="tx_dlf_collections.thumbnail">Thumbnail</label>
<label index="tx_dlf_collections.priority">Priority</label> <label index="tx_dlf_collections.priority">Priority</label>
<label index="tx_dlf_collections.documents">Documents</label> <label index="tx_dlf_collections.documents">Documents</label>
<label index="tx_dlf_collections.owner">Owner</label> <label index="tx_dlf_collections.owner">Owner</label>
<label index="tx_dlf_collections.owner.none">none</label> <label index="tx_dlf_collections.owner.none">none</label>
<label index="tx_dlf_collections.fe_cruser_id">Frontend User</label> <label index="tx_dlf_collections.fe_cruser_id">Frontend User</label>
<label index="tx_dlf_collections.fe_cruser_id.none">none</label> <label index="tx_dlf_collections.fe_cruser_id.none">none</label>
<label index="tx_dlf_collections.fe_admin_lock">Disallow frontend editing?</label> <label index="tx_dlf_collections.fe_admin_lock">Disallow frontend editing?</label>
<label index="tx_dlf_collections.status">Status</label> <label index="tx_dlf_collections.status">Status</label>
<label index="tx_dlf_collections.status.default">default</label> <label index="tx_dlf_collections.status.default">default</label>
<label index="tx_dlf_collections.tab1">General</label> <label index="tx_dlf_collections.tab1">General</label>
<label index="tx_dlf_collections.tab2">Translation</label> <label index="tx_dlf_collections.tab2">Translation</label>
<label index="tx_dlf_collections.tab3">Access</label> <label index="tx_dlf_collections.tab3">Access</label>
<label index="tx_dlf_libraries">Libraries</label> <label index="tx_dlf_libraries">Libraries</label>
<label index="tx_dlf_libraries.label">Name</label> <label index="tx_dlf_libraries.label">Name</label>
<label index="tx_dlf_libraries.index_name">Index Name</label> <label index="tx_dlf_libraries.index_name">Index Name</label>
<label index="tx_dlf_libraries.website">Website</label> <label index="tx_dlf_libraries.website">Website</label>
<label index="tx_dlf_libraries.contact">Contact</label> <label index="tx_dlf_libraries.contact">Contact</label>
<label index="tx_dlf_libraries.image">Logo</label> <label index="tx_dlf_libraries.image">Logo</label>
<label index="tx_dlf_libraries.oai_label">Open Archives Interface (OAI) Label</label> <label index="tx_dlf_libraries.oai_label">Open Archives Interface (OAI) Label</label>
<label index="tx_dlf_libraries.oai_base">Open Archives Interface (OAI) Plugin Page</label> <label index="tx_dlf_libraries.oai_base">Open Archives Interface (OAI) Plugin Page</label>
<label index="tx_dlf_libraries.opac_label">Online Public Access Catalog (OPAC) Label</label> <label index="tx_dlf_libraries.opac_label">Online Public Access Catalog (OPAC) Label</label>
<label index="tx_dlf_libraries.opac_base">Online Public Access Catalog (OPAC) Base URL</label> <label index="tx_dlf_libraries.opac_base">Online Public Access Catalog (OPAC) Base URL</label>
<label index="tx_dlf_libraries.union_label">Union Catalog Label</label> <label index="tx_dlf_libraries.union_label">Union Catalog Label</label>
<label index="tx_dlf_libraries.union_base">Union Catalog Base URL</label> <label index="tx_dlf_libraries.union_base">Union Catalog Base URL</label>
<label index="tx_dlf_libraries.tab1">General</label> <label index="tx_dlf_libraries.tab1">General</label>
<label index="tx_dlf_libraries.tab2">Translation</label> <label index="tx_dlf_libraries.tab2">Translation</label>
<label index="tx_dlf_libraries.tab3">Catalogs</label> <label index="tx_dlf_libraries.tab3">Catalogs</label>
<label index="tx_dlf_printer">Printer</label> <label index="tx_dlf_printer">Printer</label>
<label index="tx_dlf_printer.label">Label</label> <label index="tx_dlf_printer.label">Label</label>
<label index="tx_dlf_printer.address">Network address</label> <label index="tx_dlf_printer.address">Network address</label>
<label index="tx_dlf_printer.name">Name</label> <label index="tx_dlf_printer.name">Name</label>
<label index="tx_dlf_printer.printcommand">CLI command(##fileName##)</label> <label index="tx_dlf_printer.printcommand">CLI command(##fileName##)</label>
<label index="tx_dlf_mail">Email</label> <label index="tx_dlf_mail">Email</label>
<label index="tx_dlf_mail.mail">Address</label> <label index="tx_dlf_mail.mail">Address</label>
<label index="tx_dlf_mail.name">Name</label> <label index="tx_dlf_mail.name">Name</label>
<label index="tx_dlf_toolbox.toolsPdfDownload">PDF Download</label> <label index="tx_dlf_toolbox.toolsPdfDownload">PDF Download</label>
<label index="tx_dlf_toolbox.toolsFulltext">Fulltext</label> <label index="tx_dlf_toolbox.toolsFulltext">Fulltext</label>
<label index="tx_dlf_toolbox.toolsImageManipulation">Image Manipulation</label> <label index="tx_dlf_toolbox.toolsImageManipulation">Image Manipulation</label>
<label index="tx_dlf_toolbox.toolsImageDownload">Image Download</label> <label index="tx_dlf_toolbox.toolsImageDownload">Image Download</label>
<label index="tt_content.dlf_audioplayer">DLF: Audio Player</label> <label index="tt_content.dlf_audioplayer">DLF: Audio Player</label>
<label index="tt_content.dlf_basket">DLF: Basket</label> <label index="tt_content.dlf_basket">DLF: Basket</label>
<label index="tt_content.dlf_calendar">DLF: Calendar</label> <label index="tt_content.dlf_calendar">DLF: Calendar</label>
<label index="tt_content.dlf_collection">DLF: Collection</label> <label index="tt_content.dlf_collection">DLF: Collection</label>
<label index="tt_content.dlf_feeds">DLF: Feeds</label> <label index="tt_content.dlf_feeds">DLF: Feeds</label>
<label index="tt_content.dlf_listview">DLF: List View</label> <label index="tt_content.dlf_listview">DLF: List View</label>
<label index="tt_content.dlf_metadata">DLF: Metadata</label> <label index="tt_content.dlf_metadata">DLF: Metadata</label>
<label index="tt_content.dlf_navigation">DLF: Navigation</label> <label index="tt_content.dlf_navigation">DLF: Navigation</label>
<label index="tt_content.dlf_oaipmh">DLF: OAI-PMH Interface</label> <label index="tt_content.dlf_oaipmh">DLF: OAI-PMH Interface</label>
<label index="tt_content.dlf_pagegrid">DLF: Page Preview</label> <label index="tt_content.dlf_pagegrid">DLF: Page Preview</label>
<label index="tt_content.dlf_pageview">DLF: Page View</label> <label index="tt_content.dlf_pageview">DLF: Page View</label>
<label index="tt_content.dlf_search">DLF: Search</label> <label index="tt_content.dlf_search">DLF: Search</label>
<label index="tt_content.dlf_statistics">DLF: Statistics</label> <label index="tt_content.dlf_statistics">DLF: Statistics</label>
<label index="tt_content.dlf_tableofcontents">DLF: Table of Contents</label> <label index="tt_content.dlf_tableofcontents">DLF: Table of Contents</label>
<label index="tt_content.dlf_toolbox">DLF: Toolbox</label> <label index="tt_content.dlf_toolbox">DLF: Toolbox</label>
<label index="tt_content.dlf_validator">DLF: Validator</label> <label index="tt_content.dlf_validator">DLF: Validator</label>
<label index="config.metadataFormats">Default metadata namespaces</label> <label index="config.metadataFormats">Default metadata namespaces</label>
<label index="config.cliUserGroup">CLI user/group</label> <label index="config.cliUserGroup">CLI user/group</label>
<label index="config.makeCliUserGroup">Create and configure CLI user/group automatically?: (default is "FALSE")</label> <label index="config.makeCliUserGroup">Create and configure CLI user/group automatically?: (default is "FALSE")</label>
<label index="config.useragent">DLF User-Agent: (default is "Kitodo.Presentation")</label> <label index="config.useragent">DLF User-Agent: (default is "Kitodo.Presentation")</label>
<label index="config.caching">Cache parsed METS files: caching improves performance a little bit but can result in a very large "fe_session_data" table (default is "FALSE")</label> <label index="config.caching">Cache parsed METS files: caching improves performance a little bit but can result in a very large "fe_session_data" table (default is "FALSE")</label>
<label index="config.publishNewCollections">Publish new collections?: Should new collections automatically be published in the OAI-PMH interface? (default is "TRUE")</label> <label index="config.publishNewCollections">Publish new collections?: Should new collections automatically be published in the OAI-PMH interface? (default is "TRUE")</label>
<label index="config.unhideOnIndex">Unhide indexed documents?: Should hidden documents be unhidden when re-indexing them? (default is "FALSE")</label> <label index="config.unhideOnIndex">Unhide indexed documents?: Should hidden documents be unhidden when re-indexing them? (default is "FALSE")</label>
<label index="config.fileGrps">Page fileGrps: comma-separated list of @USE attribute values ordered by increasing size (default is "MIN,DEFAULT,MAX")</label> <label index="config.fileGrps">Page fileGrps: comma-separated list of @USE attribute values ordered by increasing size (default is "MIN,DEFAULT,MAX")</label>
<label index="config.fileGrpThumbs">Thumbnail fileGrp: @USE attribute value (default is "THUMBS")</label> <label index="config.fileGrpThumbs">Thumbnail fileGrp: @USE attribute value (default is "THUMBS")</label>
<label index="config.fileGrpDownload">Download fileGrp: @USE attribute value (default is "DOWNLOAD")</label> <label index="config.fileGrpDownload">Download fileGrp: @USE attribute value (default is "DOWNLOAD")</label>
<label index="config.fileGrpFulltext">Fulltext fileGrp: @USE attribute value (default is "FULLTEXT")</label> <label index="config.fileGrpFulltext">Fulltext fileGrp: @USE attribute value (default is "FULLTEXT")</label>
<label index="config.fileGrpAudio">Audio fileGrp: @USE attribute value (default is "AUDIO")</label> <label index="config.fileGrpAudio">Audio fileGrp: @USE attribute value (default is "AUDIO")</label>
<label index="config.solrConnect">Solr Connection</label> <label index="config.solrConnect">Solr Connection</label>
<label index="config.solrHttps">Use https: (default is "FALSE")</label> <label index="config.solrHttps">Use https: (default is "FALSE")</label>
<label index="config.solrHost">Solr Server Host: (default is "localhost")</label> <label index="config.solrHost">Solr Server Host: (default is "localhost")</label>
<label index="config.solrPort">Solr Server Port: (default is "8983")</label> <label index="config.solrPort">Solr Server Port: (default is "8983")</label>
<label index="config.solrPath">Solr Server Path: (default is "/solr/")</label> <label index="config.solrPath">Solr Server Path: (default is "/solr/")</label>
<label index="config.solrUser">Solr Server User: (default is "")</label> <label index="config.solrUser">Solr Server User: (default is "")</label>
<label index="config.solrPass">Solr Server Password: (default is "")</label> <label index="config.solrPass">Solr Server Password: (default is "")</label>
<label index="config.solrTimeout">Solr Server Timeout: (default is "10")</label> <label index="config.solrTimeout">Solr Server Timeout: (default is "10")</label>
</languageKey> </languageKey>
<languageKey index="de" type="array"> <languageKey index="de" type="array">
<label index="tx_dlf_actionlog">Aktionsprotokoll</label> <label index="tx_dlf_actionlog">Aktionsprotokoll</label>
<label index="tx_dlf_actionlog.label">Aktionsprotokoll</label> <label index="tx_dlf_actionlog.label">Aktionsprotokoll</label>
<label index="tx_dlf_actionlog.user_id">User ID</label> <label index="tx_dlf_actionlog.user_id">User ID</label>
<label index="tx_dlf_actionlog.file_name">Dateiname</label> <label index="tx_dlf_actionlog.file_name">Dateiname</label>
<label index="tx_dlf_actionlog.count_pages">Seitenanzahl</label> <label index="tx_dlf_actionlog.count_pages">Seitenanzahl</label>
<label index="tx_dlf_actionlog.name">Name</label> <label index="tx_dlf_actionlog.name">Name</label>
<label index="tx_dlf_actionlog.creation_date">Erstellungsdatum</label> <label index="tx_dlf_actionlog.creation_date">Erstellungsdatum</label>
<label index="tx_dlf_basket">Warenkorb</label> <label index="tx_dlf_basket">Warenkorb</label>
<label index="tx_dlf_basket.label">Warenkorb</label> <label index="tx_dlf_basket.label">Warenkorb</label>
<label index="tx_dlf_basket.sessionId">Session ID</label> <label index="tx_dlf_basket.sessionId">Session ID</label>
<label index="tx_dlf_basket.docIds">Dokumenten IDs</label> <label index="tx_dlf_basket.docIds">Dokumenten IDs</label>
<label index="tx_dlf_basket.feUser">FE User ID</label> <label index="tx_dlf_basket.feUser">FE User ID</label>
<label index="tx_dlf_documents">Dokumente</label> <label index="tx_dlf_documents">Dokumente</label>
<label index="tx_dlf_documents.prod_id">Production Identifikator</label> <label index="tx_dlf_documents.prod_id">Production Identifikator</label>
<label index="tx_dlf_documents.location">Speicherort der METS-Datei (URI)</label> <label index="tx_dlf_documents.location">Speicherort der METS-Datei (URI)</label>
<label index="tx_dlf_documents.record_id">Datensatz Identifikator</label> <label index="tx_dlf_documents.record_id">Datensatz Identifikator</label>
<label index="tx_dlf_documents.opac_id">OPAC/Lokaler Identifikator</label> <label index="tx_dlf_documents.opac_id">OPAC/Lokaler Identifikator</label>
<label index="tx_dlf_documents.union_id">Verbundkatalog/Fremder Identifikator</label> <label index="tx_dlf_documents.union_id">Verbundkatalog/Fremder Identifikator</label>
<label index="tx_dlf_documents.urn">Uniform Resource Name (URN)</label> <label index="tx_dlf_documents.urn">Uniform Resource Name (URN)</label>
<label index="tx_dlf_documents.purl">Persistent Uniform Resource Locator (PURL)</label> <label index="tx_dlf_documents.purl">Persistent Uniform Resource Locator (PURL)</label>
<label index="tx_dlf_documents.title">Titel</label> <label index="tx_dlf_documents.title">Titel</label>
<label index="tx_dlf_documents.title_sorting">Titel (Sortierung)</label> <label index="tx_dlf_documents.title_sorting">Titel (Sortierung)</label>
<label index="tx_dlf_documents.author">Autor</label> <label index="tx_dlf_documents.author">Autor</label>
<label index="tx_dlf_documents.year">Erscheinungsjahr</label> <label index="tx_dlf_documents.year">Erscheinungsjahr</label>
<label index="tx_dlf_documents.place">Erscheinungsort</label> <label index="tx_dlf_documents.place">Erscheinungsort</label>
<label index="tx_dlf_documents.thumbnail">Vorschaubild</label> <label index="tx_dlf_documents.thumbnail">Vorschaubild</label>
<label index="tx_dlf_documents.structure">Dokumententyp</label> <label index="tx_dlf_documents.structure">Dokumententyp</label>
<label index="tx_dlf_documents.partof">Übergeordnete Einheit</label> <label index="tx_dlf_documents.partof">Übergeordnete Einheit</label>
<label index="tx_dlf_documents.volume">Bandnummer</label> <label index="tx_dlf_documents.volume">Bandnummer</label>
<label index="tx_dlf_documents.volume_sorting">Bandnummer (Sortierung)</label> <label index="tx_dlf_documents.volume_sorting">Bandnummer (Sortierung)</label>
<label index="tx_dlf_documents.collections">Sammlungen</label> <label index="tx_dlf_documents.collections">Sammlungen</label>
<label index="tx_dlf_documents.owner">Besitzer</label> <label index="tx_dlf_documents.owner">Besitzer</label>
<label index="tx_dlf_documents.status">Status</label> <label index="tx_dlf_documents.status">Status</label>
<label index="tx_dlf_documents.status.default">Standard</label> <label index="tx_dlf_documents.status.default">Standard</label>
<label index="tx_dlf_documents.tab1">Titeldaten</label> <label index="tx_dlf_documents.tab1">Titeldaten</label>
<label index="tx_dlf_documents.tab2">Identifier</label> <label index="tx_dlf_documents.tab2">Identifier</label>
<label index="tx_dlf_documents.tab3">Zugriff</label> <label index="tx_dlf_documents.tab3">Zugriff</label>
<label index="tx_dlf_structures">Strukturelemente</label> <label index="tx_dlf_structures">Strukturelemente</label>
<label index="tx_dlf_structures.toplevel">Toplevel-Element?</label> <label index="tx_dlf_structures.toplevel">Toplevel-Element?</label>
<label index="tx_dlf_structures.label">Anzeigeform</label> <label index="tx_dlf_structures.label">Anzeigeform</label>
<label index="tx_dlf_structures.index_name">Index-Bezeichnung</label> <label index="tx_dlf_structures.index_name">Index-Bezeichnung</label>
<label index="tx_dlf_structures.oai_name">OAI-PMH-Mapping</label> <label index="tx_dlf_structures.oai_name">OAI-PMH-Mapping</label>
<label index="tx_dlf_structures.thumbnail">Zeige Vorschaubild von...</label> <label index="tx_dlf_structures.thumbnail">Zeige Vorschaubild von...</label>
<label index="tx_dlf_structures.thumbnail.self">selbst</label> <label index="tx_dlf_structures.thumbnail.self">selbst</label>
<label index="tx_dlf_structures.status">Status</label> <label index="tx_dlf_structures.status">Status</label>
<label index="tx_dlf_structures.status.default">Standard</label> <label index="tx_dlf_structures.status.default">Standard</label>
<label index="tx_dlf_structures.tab1">Allgemein</label> <label index="tx_dlf_structures.tab1">Allgemein</label>
<label index="tx_dlf_structures.tab2">Übersetzung</label> <label index="tx_dlf_structures.tab2">Übersetzung</label>
<label index="tx_dlf_structures.tab3">Zugriff</label> <label index="tx_dlf_structures.tab3">Zugriff</label>
<label index="tx_dlf_metadata">Metadaten</label> <label index="tx_dlf_metadata">Metadaten</label>
<label index="tx_dlf_metadata.label">Anzeigeform</label> <label index="tx_dlf_metadata.label">Anzeigeform</label>
<label index="tx_dlf_metadata.index_name">Index-Bezeichnung</label> <label index="tx_dlf_metadata.index_name">Index-Bezeichnung</label>
<label index="tx_dlf_metadata.format">Datenformat</label> <label index="tx_dlf_metadata.format">Datenformat</label>
<label index="tx_dlf_metadata.default_value">Standardwert</label> <label index="tx_dlf_metadata.default_value">Standardwert</label>
<label index="tx_dlf_metadata.wrap">TypoScript-Wrap</label> <label index="tx_dlf_metadata.wrap">TypoScript-Wrap</label>
<label index="tx_dlf_metadata.index_tokenized">Im Suchindex in Tokens zerlegen?</label> <label index="tx_dlf_metadata.index_tokenized">Im Suchindex in Tokens zerlegen?</label>
<label index="tx_dlf_metadata.index_stored">Im Suchindex speichern?</label> <label index="tx_dlf_metadata.index_stored">Im Suchindex speichern?</label>
<label index="tx_dlf_metadata.index_indexed">Im Suchindex indizieren?</label> <label index="tx_dlf_metadata.index_indexed">Im Suchindex indizieren?</label>
<label index="tx_dlf_metadata.index_boost">Feldwertigkeit</label> <label index="tx_dlf_metadata.index_boost">Feldwertigkeit</label>
<label index="tx_dlf_metadata.is_sortable">Sortierbar machen?</label> <label index="tx_dlf_metadata.is_sortable">Sortierbar machen?</label>
<label index="tx_dlf_metadata.is_facet">Facettierbar machen?</label> <label index="tx_dlf_metadata.is_facet">Facettierbar machen?</label>
<label index="tx_dlf_metadata.is_listed">In Titeldaten/Listenansicht anzeigen?</label> <label index="tx_dlf_metadata.is_listed">In Titeldaten/Listenansicht anzeigen?</label>
<label index="tx_dlf_metadata.index_autocomplete">Für Suchvorschläge verwenden?</label> <label index="tx_dlf_metadata.index_autocomplete">Für Suchvorschläge verwenden?</label>
<label index="tx_dlf_metadata.status">Status</label> <label index="tx_dlf_metadata.status">Status</label>
<label index="tx_dlf_metadata.status.default">Standard</label> <label index="tx_dlf_metadata.status.default">Standard</label>
<label index="tx_dlf_metadata.tab1">Allgemein</label> <label index="tx_dlf_metadata.tab1">Allgemein</label>
<label index="tx_dlf_metadata.tab2">Übersetzung</label> <label index="tx_dlf_metadata.tab2">Übersetzung</label>
<label index="tx_dlf_metadata.tab3">Zugriff</label> <label index="tx_dlf_metadata.tab3">Zugriff</label>
<label index="tx_dlf_metadataformat">Metadatenformat</label> <label index="tx_dlf_metadataformat">Metadatenformat</label>
<label index="tx_dlf_metadataformat.encoded">Datenformat</label> <label index="tx_dlf_metadataformat.encoded">Datenformat</label>
<label index="tx_dlf_metadataformat.xpath">XPath (relativ zu //dmdSec/mdWrap/xmlData/root und mit Namensraum)</label> <label index="tx_dlf_metadataformat.xpath">XPath (relativ zu //dmdSec/mdWrap/xmlData/root und mit Namensraum)</label>
<label index="tx_dlf_metadataformat.xpath_sorting">XPath für Sortierfeld (optional)</label> <label index="tx_dlf_metadataformat.xpath_sorting">XPath für Sortierfeld (optional)</label>
<label index="tx_dlf_metadataformat.mandatory">Pflichtfeld?</label> <label index="tx_dlf_metadataformat.mandatory">Pflichtfeld?</label>
<label index="tx_dlf_metadataformat.tab1">Allgemein</label> <label index="tx_dlf_metadataformat.tab1">Allgemein</label>
<label index="tx_dlf_formats">Datenformate</label> <label index="tx_dlf_formats">Datenformate</label>
<label index="tx_dlf_formats.type">Bezeichnung in METS</label> <label index="tx_dlf_formats.type">Bezeichnung in METS</label>
<label index="tx_dlf_formats.root">Root-Element</label> <label index="tx_dlf_formats.root">Root-Element</label>
<label index="tx_dlf_formats.namespace">Namensraum URI</label> <label index="tx_dlf_formats.namespace">Namensraum URI</label>
<label index="tx_dlf_formats.class">Klassenname</label> <label index="tx_dlf_formats.class">Klassenname</label>
<label index="tx_dlf_formats.tab1">Allgemein</label> <label index="tx_dlf_formats.tab1">Allgemein</label>
<label index="tx_dlf_solrcores">Solr Kerne</label> <label index="tx_dlf_solrcores">Solr Kerne</label>
<label index="tx_dlf_solrcores.label">Anzeigeform</label> <label index="tx_dlf_solrcores.label">Anzeigeform</label>
<label index="tx_dlf_solrcores.index_name">Solr-Bezeichnung</label> <label index="tx_dlf_solrcores.index_name">Solr-Bezeichnung</label>
<label index="tx_dlf_solrcores.tab1">General</label> <label index="tx_dlf_solrcores.tab1">General</label>
<label index="tx_dlf_collections">Sammlungen</label> <label index="tx_dlf_collections">Sammlungen</label>
<label index="tx_dlf_collections.label">Anzeigeform</label> <label index="tx_dlf_collections.label">Anzeigeform</label>
<label index="tx_dlf_collections.index_name">Index-Bezeichnung</label> <label index="tx_dlf_collections.index_name">Index-Bezeichnung</label>
<label index="tx_dlf_collections.oai_name">OAI-PMH-Mapping</label> <label index="tx_dlf_collections.oai_name">OAI-PMH-Mapping</label>
<label index="tx_dlf_collections.index_search">(Virtuelle) Kollektion über Solr Anfrage definieren</label> <label index="tx_dlf_collections.index_search">(Virtuelle) Kollektion über Solr Anfrage definieren</label>
<label index="tx_dlf_collections.description">Beschreibung</label> <label index="tx_dlf_collections.description">Beschreibung</label>
<label index="tx_dlf_collections.thumbnail">Vorschaubild</label> <label index="tx_dlf_collections.thumbnail">Vorschaubild</label>
<label index="tx_dlf_collections.priority">Priorität</label> <label index="tx_dlf_collections.priority">Priorität</label>
<label index="tx_dlf_collections.documents">Dokumente</label> <label index="tx_dlf_collections.documents">Dokumente</label>
<label index="tx_dlf_collections.owner">Besitzer</label> <label index="tx_dlf_collections.owner">Besitzer</label>
<label index="tx_dlf_collections.owner.none">keiner</label> <label index="tx_dlf_collections.owner.none">keiner</label>
<label index="tx_dlf_collections.fe_cruser_id">Frontend-Benutzer</label> <label index="tx_dlf_collections.fe_cruser_id">Frontend-Benutzer</label>
<label index="tx_dlf_collections.fe_cruser_id.none">keiner</label> <label index="tx_dlf_collections.fe_cruser_id.none">keiner</label>
<label index="tx_dlf_collections.fe_admin_lock">Frontend-Bearbeitung verbieten?</label> <label index="tx_dlf_collections.fe_admin_lock">Frontend-Bearbeitung verbieten?</label>
<label index="tx_dlf_collections.status">Status</label> <label index="tx_dlf_collections.status">Status</label>
<label index="tx_dlf_collections.status.default">Standard</label> <label index="tx_dlf_collections.status.default">Standard</label>
<label index="tx_dlf_collections.tab1">Allgemein</label> <label index="tx_dlf_collections.tab1">Allgemein</label>
<label index="tx_dlf_collections.tab2">Übersetzung</label> <label index="tx_dlf_collections.tab2">Übersetzung</label>
<label index="tx_dlf_collections.tab3">Zugriff</label> <label index="tx_dlf_collections.tab3">Zugriff</label>
<label index="tx_dlf_libraries">Mandanten</label> <label index="tx_dlf_libraries">Mandanten</label>
<label index="tx_dlf_libraries.label">Name</label> <label index="tx_dlf_libraries.label">Name</label>
<label index="tx_dlf_libraries.index_name">Index-Bezeichnung</label> <label index="tx_dlf_libraries.index_name">Index-Bezeichnung</label>
<label index="tx_dlf_libraries.website">Webseite</label> <label index="tx_dlf_libraries.website">Webseite</label>
<label index="tx_dlf_libraries.contact">Kontakt</label> <label index="tx_dlf_libraries.contact">Kontakt</label>
<label index="tx_dlf_libraries.image">Logo</label> <label index="tx_dlf_libraries.image">Logo</label>
<label index="tx_dlf_libraries.oai_label">Open Archives Interface (OAI) Bezeichnung</label> <label index="tx_dlf_libraries.oai_label">Open Archives Interface (OAI) Bezeichnung</label>
<label index="tx_dlf_libraries.oai_base">Open Archives Interface (OAI) Plugin</label> <label index="tx_dlf_libraries.oai_base">Open Archives Interface (OAI) Plugin</label>
<label index="tx_dlf_libraries.opac_label">Online Public Access Catalog (OPAC) Bezeichnung</label> <label index="tx_dlf_libraries.opac_label">Online Public Access Catalog (OPAC) Bezeichnung</label>
<label index="tx_dlf_libraries.opac_base">Online Public Access Catalog (OPAC) URL</label> <label index="tx_dlf_libraries.opac_base">Online Public Access Catalog (OPAC) URL</label>
<label index="tx_dlf_libraries.union_label">Verbundkatalog Bezeichnung</label> <label index="tx_dlf_libraries.union_label">Verbundkatalog Bezeichnung</label>
<label index="tx_dlf_libraries.union_base">Verbundkatalog URL</label> <label index="tx_dlf_libraries.union_base">Verbundkatalog URL</label>
<label index="tx_dlf_libraries.tab1">Allgemein</label> <label index="tx_dlf_libraries.tab1">Allgemein</label>
<label index="tx_dlf_libraries.tab2">Übersetzung</label> <label index="tx_dlf_libraries.tab2">Übersetzung</label>
<label index="tx_dlf_libraries.tab3">Kataloge</label> <label index="tx_dlf_libraries.tab3">Kataloge</label>
<label index="tx_dlf_printer">Drucker</label> <label index="tx_dlf_printer">Drucker</label>
<label index="tx_dlf_printer.label">Label</label> <label index="tx_dlf_printer.label">Label</label>
<label index="tx_dlf_printer.address">Netzwerkadresse</label> <label index="tx_dlf_printer.address">Netzwerkadresse</label>
<label index="tx_dlf_printer.name">Name</label> <label index="tx_dlf_printer.name">Name</label>
<label index="tx_dlf_printer.printcommand">CLI Befehl (##fileName##)</label> <label index="tx_dlf_printer.printcommand">CLI Befehl (##fileName##)</label>
<label index="tx_dlf_mail">E-Mail</label> <label index="tx_dlf_mail">E-Mail</label>
<label index="tx_dlf_mail.mail">Adresse</label> <label index="tx_dlf_mail.mail">Adresse</label>
<label index="tx_dlf_mail.name">Name</label> <label index="tx_dlf_mail.name">Name</label>
<label index="tx_dlf_toolbox.toolsPdfDownload">PDF-Download</label> <label index="tx_dlf_toolbox.toolsPdfDownload">PDF-Download</label>
<label index="tx_dlf_toolbox.toolsFulltext">Volltext</label> <label index="tx_dlf_toolbox.toolsFulltext">Volltext</label>
<label index="tx_dlf_toolbox.toolsImageManipulation">Bildbearbeitung</label> <label index="tx_dlf_toolbox.toolsImageManipulation">Bildbearbeitung</label>
<label index="tx_dlf_toolbox.toolsImageDownload">Bild-Download</label> <label index="tx_dlf_toolbox.toolsImageDownload">Bild-Download</label>
<label index="tt_content.dlf_audioplayer">DLF: Audioplayer</label> <label index="tt_content.dlf_audioplayer">DLF: Audioplayer</label>
<label index="tt_content.dlf_basket">DLF: Warenkorb</label> <label index="tt_content.dlf_basket">DLF: Warenkorb</label>
<label index="tt_content.dlf_calendar">DLF: Kalender</label> <label index="tt_content.dlf_calendar">DLF: Kalender</label>
<label index="tt_content.dlf_collection">DLF: Kollektion</label> <label index="tt_content.dlf_collection">DLF: Kollektion</label>
<label index="tt_content.dlf_feeds">DLF: Feeds</label> <label index="tt_content.dlf_feeds">DLF: Feeds</label>
<label index="tt_content.dlf_listview">DLF: Listenansicht</label> <label index="tt_content.dlf_listview">DLF: Listenansicht</label>
<label index="tt_content.dlf_metadata">DLF: Metadaten</label> <label index="tt_content.dlf_metadata">DLF: Metadaten</label>
<label index="tt_content.dlf_navigation">DLF: Navigation</label> <label index="tt_content.dlf_navigation">DLF: Navigation</label>
<label index="tt_content.dlf_oaipmh">DLF: OAI-PMH-Schnittstelle</label> <label index="tt_content.dlf_oaipmh">DLF: OAI-PMH-Schnittstelle</label>
<label index="tt_content.dlf_pagegrid">DLF: Seitenvorschau</label> <label index="tt_content.dlf_pagegrid">DLF: Seitenvorschau</label>
<label index="tt_content.dlf_pageview">DLF: Seitenansicht</label> <label index="tt_content.dlf_pageview">DLF: Seitenansicht</label>
<label index="tt_content.dlf_search">DLF: Suche</label> <label index="tt_content.dlf_search">DLF: Suche</label>
<label index="tt_content.dlf_statistics">DLF: Statistik</label> <label index="tt_content.dlf_statistics">DLF: Statistik</label>
<label index="tt_content.dlf_tableofcontents">DLF: Inhaltsverzeichnis</label> <label index="tt_content.dlf_tableofcontents">DLF: Inhaltsverzeichnis</label>
<label index="tt_content.dlf_toolbox">DLF: Werkzeugkasten</label> <label index="tt_content.dlf_toolbox">DLF: Werkzeugkasten</label>
<label index="tt_content.dlf_validator">DLF: Validator</label> <label index="tt_content.dlf_validator">DLF: Validator</label>
<label index="config.metadataFormats">Standard-Namensräume für Metadaten</label> <label index="config.metadataFormats">Standard-Namensräume für Metadaten</label>
<label index="config.cliUserGroup">CLI Benutzer/Gruppe</label> <label index="config.cliUserGroup">CLI Benutzer/Gruppe</label>
<label index="config.makeCliUserGroup">CLI Benutzer/Gruppe automatisch anlegen?: (Standard ist "FALSE")</label> <label index="config.makeCliUserGroup">CLI Benutzer/Gruppe automatisch anlegen?: (Standard ist "FALSE")</label>
<label index="config.useragent">DLF User-Agent: (Standard ist "Kitodo.Presentation")</label> <label index="config.useragent">DLF User-Agent: (Standard ist "Kitodo.Presentation")</label>
<label index="config.caching">Eingelesene METS Dateien zwischenspeichern: Dies kann die Geschwindigkeit geringfügig verbessern, führt aber zu einer sehr großen "fe_session_data" Tabelle (Standard ist "FALSE")</label> <label index="config.caching">Eingelesene METS Dateien zwischenspeichern: Dies kann die Geschwindigkeit geringfügig verbessern, führt aber zu einer sehr großen "fe_session_data" Tabelle (Standard ist "FALSE")</label>
<label index="config.publishNewCollections">Neue Kollektionen publizieren?: Sollen neue Kollektionen automatisch in der OAI-PMH-Schnittstelle veröffentlicht werden? (Standard ist "TRUE")</label> <label index="config.publishNewCollections">Neue Kollektionen publizieren?: Sollen neue Kollektionen automatisch in der OAI-PMH-Schnittstelle veröffentlicht werden? (Standard ist "TRUE")</label>
<label index="config.unhideOnIndex">Indexierte Dokumente einblenden?: Sollen ausgeblendete Dokumente bei der erneuten Indexierung wieder eingeblendet werden? (Standard ist "FALSE")</label> <label index="config.unhideOnIndex">Indexierte Dokumente einblenden?: Sollen ausgeblendete Dokumente bei der erneuten Indexierung wieder eingeblendet werden? (Standard ist "FALSE")</label>
<label index="config.fileGrps">Seiten fileGrps: Komma-getrennte Liste der @USE Attributwerte der Seitenansichten nach aufsteigender Größe sortiert (Standard ist "MIN,DEFAULT,MAX")</label> <label index="config.fileGrps">Seiten fileGrps: Komma-getrennte Liste der @USE Attributwerte der Seitenansichten nach aufsteigender Größe sortiert (Standard ist "MIN,DEFAULT,MAX")</label>
<label index="config.fileGrpThumbs">Vorschau fileGrp: @USE Attributwert der Vorschaubilder (Standard ist "THUMBS")</label> <label index="config.fileGrpThumbs">Vorschau fileGrp: @USE Attributwert der Vorschaubilder (Standard ist "THUMBS")</label>
<label index="config.fileGrpDownload">Download fileGrp: @USE Attributwert der Downloads (Standard ist "DOWNLOAD")</label> <label index="config.fileGrpDownload">Download fileGrp: @USE Attributwert der Downloads (Standard ist "DOWNLOAD")</label>
<label index="config.fileGrpFulltext">Volltext fileGrp: @USE Attributwert der Volltexte (Standard ist "FULLTEXT")</label> <label index="config.fileGrpFulltext">Volltext fileGrp: @USE Attributwert der Volltexte (Standard ist "FULLTEXT")</label>
<label index="config.fileGrpAudio">Audio fileGrp: @USE Attributwert der Audiodateien (Standard ist "AUDIO")</label> <label index="config.fileGrpAudio">Audio fileGrp: @USE Attributwert der Audiodateien (Standard ist "AUDIO")</label>
<label index="config.solrConnect">Solr Verbindung</label> <label index="config.solrConnect">Solr Verbindung</label>
<label index="config.solrHttps">Https verwenden: (Standard ist "FALSE")</label> <label index="config.solrHttps">Https verwenden: (Standard ist "FALSE")</label>
<label index="config.solrHost">Solr Server Host: (Standard ist "localhost")</label> <label index="config.solrHost">Solr Server Host: (Standard ist "localhost")</label>
<label index="config.solrPort">Solr Server Port: (Standard ist "8983")</label> <label index="config.solrPort">Solr Server Port: (Standard ist "8983")</label>
<label index="config.solrPath">Solr Server Pfad: (Standard ist "/solr/")</label> <label index="config.solrPath">Solr Server Pfad: (Standard ist "/solr/")</label>
<label index="config.solrUser">Solr Server Benutzername: (Standard ist "")</label> <label index="config.solrUser">Solr Server Benutzername: (Standard ist "")</label>
<label index="config.solrPass">Solr Server Kennwort: (Standard ist "")</label> <label index="config.solrPass">Solr Server Kennwort: (Standard ist "")</label>
<label index="config.solrTimeout">Solr Server Timeout: (Standard ist "10")</label> <label index="config.solrTimeout">Solr Server Timeout: (Standard ist "10")</label>
</languageKey> </languageKey>
</data> </data>
</T3locallang> </T3locallang>

View File

@ -9,58 +9,58 @@
* LICENSE.txt file that was distributed with this source code. * LICENSE.txt file that was distributed with this source code.
--> -->
<T3locallang> <T3locallang>
<meta type="array"> <meta type="array">
<type>module</type> <type>module</type>
<description>Language labels for plugin ListView</description> <description>Language labels for plugin ListView</description>
</meta> </meta>
<data type="array"> <data type="array">
<languageKey index="default" type="array"> <languageKey index="default" type="array">
<label index="tt_content.pi_flexform.sheet_general">Options</label> <label index="tt_content.pi_flexform.sheet_general">Options</label>
<label index="tt_content.pi_flexform.limit">Documents per page</label> <label index="tt_content.pi_flexform.limit">Documents per page</label>
<label index="tt_content.pi_flexform.targetPid">Target page (with "DLF: Page View" plugin)</label> <label index="tt_content.pi_flexform.targetPid">Target page (with "DLF: Page View" plugin)</label>
<label index="tt_content.pi_flexform.getTitle">Show title of parent document if document has no title itself</label> <label index="tt_content.pi_flexform.getTitle">Show title of parent document if document has no title itself</label>
<label index="tt_content.pi_flexform.templateFile">Template file</label> <label index="tt_content.pi_flexform.templateFile">Template file</label>
<label index="tt_content.pi_flexform.basketButton">Show basket add button</label> <label index="tt_content.pi_flexform.basketButton">Show basket add button</label>
<label index="tt_content.pi_flexform.targetBasket">Target page (with "DLF: Basket" plugin)</label> <label index="tt_content.pi_flexform.targetBasket">Target page (with "DLF: Basket" plugin)</label>
<label index="nohits">Nothing found.</label> <label index="nohits">Nothing found.</label>
<label index="count">Entries %d to %d of %d.</label> <label index="count">Entries %d to %d of %d.</label>
<label index="prevPage">&lt;</label> <label index="prevPage">&lt;</label>
<label index="nextPage">&gt;</label> <label index="nextPage">&gt;</label>
<label index="page">%d</label> <label index="page">%d</label>
<label index="separator"> - </label> <label index="separator"> - </label>
<label index="skip">...</label> <label index="skip">...</label>
<label index="orderBy">Order by: </label> <label index="orderBy">Order by: </label>
<label index="relevance">relevance</label> <label index="relevance">relevance</label>
<label index="direction">Direction: </label> <label index="direction">Direction: </label>
<label index="direction.asc">ascending</label> <label index="direction.asc">ascending</label>
<label index="direction.desc">descending</label> <label index="direction.desc">descending</label>
<label index="noTitle">[no title]</label> <label index="noTitle">[no title]</label>
<label index="addBasket">Add to basket</label> <label index="addBasket">Add to basket</label>
<label index="hits">%d hits found in %d documents.</label> <label index="hits">%d hits found in %d documents.</label>
</languageKey> </languageKey>
<languageKey index="de" type="array"> <languageKey index="de" type="array">
<label index="tt_content.pi_flexform.sheet_general">Einstellungen</label> <label index="tt_content.pi_flexform.sheet_general">Einstellungen</label>
<label index="tt_content.pi_flexform.limit">Dokumente pro Seite</label> <label index="tt_content.pi_flexform.limit">Dokumente pro Seite</label>
<label index="tt_content.pi_flexform.targetPid">Zielseite (mit Plugin "DLF: Seitenansicht")</label> <label index="tt_content.pi_flexform.targetPid">Zielseite (mit Plugin "DLF: Seitenansicht")</label>
<label index="tt_content.pi_flexform.getTitle">Bei Bedarf Titel des übergeordneten Dokuments anzeigen</label> <label index="tt_content.pi_flexform.getTitle">Bei Bedarf Titel des übergeordneten Dokuments anzeigen</label>
<label index="tt_content.pi_flexform.templateFile">HTML-Template</label> <label index="tt_content.pi_flexform.templateFile">HTML-Template</label>
<label index="tt_content.pi_flexform.basketButton">Zeige Warenkorb Button an</label> <label index="tt_content.pi_flexform.basketButton">Zeige Warenkorb Button an</label>
<label index="tt_content.pi_flexform.targetBasket">Zielseite (mit Plugin "DLF: Warenkorb")</label> <label index="tt_content.pi_flexform.targetBasket">Zielseite (mit Plugin "DLF: Warenkorb")</label>
<label index="nohits">Keine Treffer.</label> <label index="nohits">Keine Treffer.</label>
<label index="count">Einträge %d bis %d von %d.</label> <label index="count">Einträge %d bis %d von %d.</label>
<label index="prevPage">&lt;</label> <label index="prevPage">&lt;</label>
<label index="nextPage">&gt;</label> <label index="nextPage">&gt;</label>
<label index="page">%d</label> <label index="page">%d</label>
<label index="separator"> - </label> <label index="separator"> - </label>
<label index="skip">...</label> <label index="skip">...</label>
<label index="orderBy">Sortieren nach: </label> <label index="orderBy">Sortieren nach: </label>
<label index="relevance">Relevanz</label> <label index="relevance">Relevanz</label>
<label index="direction">Richtung: </label> <label index="direction">Richtung: </label>
<label index="direction.asc">aufsteigend</label> <label index="direction.asc">aufsteigend</label>
<label index="direction.desc">absteigend</label> <label index="direction.desc">absteigend</label>
<label index="noTitle">[kein Titel]</label> <label index="noTitle">[kein Titel]</label>
<label index="addBasket">Zum Warenkorb hinzufügen</label> <label index="addBasket">Zum Warenkorb hinzufügen</label>
<label index="hits">Die Suche ergab %d Treffer in %d Dokumenten.</label> <label index="hits">Die Suche ergab %d Treffer in %d Dokumenten.</label>
</languageKey> </languageKey>
</data> </data>
</T3locallang> </T3locallang>

View File

@ -9,38 +9,38 @@
* LICENSE.txt file that was distributed with this source code. * LICENSE.txt file that was distributed with this source code.
--> -->
<T3locallang> <T3locallang>
<meta type="array"> <meta type="array">
<type>module</type> <type>module</type>
<description>Language labels for plugin Metadata</description> <description>Language labels for plugin Metadata</description>
</meta> </meta>
<data type="array"> <data type="array">
<languageKey index="default" type="array"> <languageKey index="default" type="array">
<label index="tt_content.pi_flexform.sheet_general">Options</label> <label index="tt_content.pi_flexform.sheet_general">Options</label>
<label index="tt_content.pi_flexform.excludeOther">Show only documents from the selected page</label> <label index="tt_content.pi_flexform.excludeOther">Show only documents from the selected page</label>
<label index="tt_content.pi_flexform.linkTitle">Link title to target page</label> <label index="tt_content.pi_flexform.linkTitle">Link title to target page</label>
<label index="tt_content.pi_flexform.targetPid">Target page (with "DLF: Page View" plugin)</label> <label index="tt_content.pi_flexform.targetPid">Target page (with "DLF: Page View" plugin)</label>
<label index="tt_content.pi_flexform.getTitle">Show title of parent document if document has no title itself</label> <label index="tt_content.pi_flexform.getTitle">Show title of parent document if document has no title itself</label>
<label index="tt_content.pi_flexform.showFull">Show all available metadata</label> <label index="tt_content.pi_flexform.showFull">Show all available metadata</label>
<label index="tt_content.pi_flexform.rootline">Show metadata of superior structures</label> <label index="tt_content.pi_flexform.rootline">Show metadata of superior structures</label>
<label index="tt_content.pi_flexform.rootline.none">none</label> <label index="tt_content.pi_flexform.rootline.none">none</label>
<label index="tt_content.pi_flexform.rootline.all">all</label> <label index="tt_content.pi_flexform.rootline.all">all</label>
<label index="tt_content.pi_flexform.rootline.titledata">titledata only</label> <label index="tt_content.pi_flexform.rootline.titledata">titledata only</label>
<label index="tt_content.pi_flexform.separator">Separator for multi-valued fields</label> <label index="tt_content.pi_flexform.separator">Separator for multi-valued fields</label>
<label index="tt_content.pi_flexform.templateFile">Template file</label> <label index="tt_content.pi_flexform.templateFile">Template file</label>
</languageKey> </languageKey>
<languageKey index="de" type="array"> <languageKey index="de" type="array">
<label index="tt_content.pi_flexform.sheet_general">Einstellungen</label> <label index="tt_content.pi_flexform.sheet_general">Einstellungen</label>
<label index="tt_content.pi_flexform.excludeOther">Nur Dokumente der ausgewählten Seite anzeigen</label> <label index="tt_content.pi_flexform.excludeOther">Nur Dokumente der ausgewählten Seite anzeigen</label>
<label index="tt_content.pi_flexform.linkTitle">Titel zur Zielseite verlinken</label> <label index="tt_content.pi_flexform.linkTitle">Titel zur Zielseite verlinken</label>
<label index="tt_content.pi_flexform.targetPid">Zielseite (mit Plugin "DLF: Seitenansicht")</label> <label index="tt_content.pi_flexform.targetPid">Zielseite (mit Plugin "DLF: Seitenansicht")</label>
<label index="tt_content.pi_flexform.getTitle">Bei Bedarf Titel des übergeordneten Dokuments anzeigen</label> <label index="tt_content.pi_flexform.getTitle">Bei Bedarf Titel des übergeordneten Dokuments anzeigen</label>
<label index="tt_content.pi_flexform.showFull">Alle verfügbaren Metadaten anzeigen</label> <label index="tt_content.pi_flexform.showFull">Alle verfügbaren Metadaten anzeigen</label>
<label index="tt_content.pi_flexform.rootline">Metadaten übergeordneter Strukturen anzeigen</label> <label index="tt_content.pi_flexform.rootline">Metadaten übergeordneter Strukturen anzeigen</label>
<label index="tt_content.pi_flexform.rootline.none">keine</label> <label index="tt_content.pi_flexform.rootline.none">keine</label>
<label index="tt_content.pi_flexform.rootline.all">alle</label> <label index="tt_content.pi_flexform.rootline.all">alle</label>
<label index="tt_content.pi_flexform.rootline.titledata">nur Titeldaten</label> <label index="tt_content.pi_flexform.rootline.titledata">nur Titeldaten</label>
<label index="tt_content.pi_flexform.separator">Trennzeichen für mehrwertige Felder</label> <label index="tt_content.pi_flexform.separator">Trennzeichen für mehrwertige Felder</label>
<label index="tt_content.pi_flexform.templateFile">HTML-Template</label> <label index="tt_content.pi_flexform.templateFile">HTML-Template</label>
</languageKey> </languageKey>
</data> </data>
</T3locallang> </T3locallang>

View File

@ -9,56 +9,56 @@
* LICENSE.txt file that was distributed with this source code. * LICENSE.txt file that was distributed with this source code.
--> -->
<T3locallang> <T3locallang>
<meta type="array"> <meta type="array">
<type>module</type> <type>module</type>
<description>Language labels for plugin Navigation</description> <description>Language labels for plugin Navigation</description>
</meta> </meta>
<data type="array"> <data type="array">
<languageKey index="default" type="array"> <languageKey index="default" type="array">
<label index="tt_content.pi_flexform.sheet_general">Options</label> <label index="tt_content.pi_flexform.sheet_general">Options</label>
<label index="tt_content.pi_flexform.pageStep">How many pages should be skipped by "fast-forward" and "rewind" buttons?</label> <label index="tt_content.pi_flexform.pageStep">How many pages should be skipped by "fast-forward" and "rewind" buttons?</label>
<label index="tt_content.pi_flexform.targetPid">Target page (with "DLF: List View" plugin)</label> <label index="tt_content.pi_flexform.targetPid">Target page (with "DLF: List View" plugin)</label>
<label index="tt_content.pi_flexform.templateFile">Template file</label> <label index="tt_content.pi_flexform.templateFile">Template file</label>
<label index="firstPage">First Page</label> <label index="firstPage">First Page</label>
<label index="backXPages">Back %d Pages</label> <label index="backXPages">Back %d Pages</label>
<label index="prevPage">Previous Page</label> <label index="prevPage">Previous Page</label>
<label index="selectPage">Page</label> <label index="selectPage">Page</label>
<label index="nextPage">Next Page</label> <label index="nextPage">Next Page</label>
<label index="forwardXPages">Forward %d Pages</label> <label index="forwardXPages">Forward %d Pages</label>
<label index="lastPage">Last Page</label> <label index="lastPage">Last Page</label>
<label index="doublePageOn">Show double pages</label> <label index="doublePageOn">Show double pages</label>
<label index="doublePageOff">Show single page</label> <label index="doublePageOff">Show single page</label>
<label index="doublePage+1">Adjust recto/verso</label> <label index="doublePage+1">Adjust recto/verso</label>
<label index="linkToList">Return to list view</label> <label index="linkToList">Return to list view</label>
<label index="zoom-in">Zoom In</label> <label index="zoom-in">Zoom In</label>
<label index="zoom-out">Zoom Out</label> <label index="zoom-out">Zoom Out</label>
<label index="zoom-fullscreen">Fullscreen Mode</label> <label index="zoom-fullscreen">Fullscreen Mode</label>
<label index="rotate-left">Rotate Left</label> <label index="rotate-left">Rotate Left</label>
<label index="rotate-right">Rotate Right</label> <label index="rotate-right">Rotate Right</label>
<label index="rotate-reset">Reset Rotation</label> <label index="rotate-reset">Reset Rotation</label>
</languageKey> </languageKey>
<languageKey index="de" type="array"> <languageKey index="de" type="array">
<label index="tt_content.pi_flexform.sheet_general">Einstellungen</label> <label index="tt_content.pi_flexform.sheet_general">Einstellungen</label>
<label index="tt_content.pi_flexform.pageStep">Wieviele Seiten sollen mit den Schnellblätter-Tasten übersprungen werden?</label> <label index="tt_content.pi_flexform.pageStep">Wieviele Seiten sollen mit den Schnellblätter-Tasten übersprungen werden?</label>
<label index="tt_content.pi_flexform.targetPid">Zielseite (mit Plugin "DLF: Listenansicht")</label> <label index="tt_content.pi_flexform.targetPid">Zielseite (mit Plugin "DLF: Listenansicht")</label>
<label index="tt_content.pi_flexform.templateFile">HTML-Template</label> <label index="tt_content.pi_flexform.templateFile">HTML-Template</label>
<label index="firstPage">Erste Seite</label> <label index="firstPage">Erste Seite</label>
<label index="backXPages">%d Seiten zurück</label> <label index="backXPages">%d Seiten zurück</label>
<label index="prevPage">Vorherige Seite</label> <label index="prevPage">Vorherige Seite</label>
<label index="selectPage">Seite</label> <label index="selectPage">Seite</label>
<label index="nextPage">Nächste Seite</label> <label index="nextPage">Nächste Seite</label>
<label index="forwardXPages">%d Seiten weiter</label> <label index="forwardXPages">%d Seiten weiter</label>
<label index="lastPage">Letzte Seite</label> <label index="lastPage">Letzte Seite</label>
<label index="doublePageOn">Doppelseitenansicht</label> <label index="doublePageOn">Doppelseitenansicht</label>
<label index="doublePageOff">Einzelseitenansicht</label> <label index="doublePageOff">Einzelseitenansicht</label>
<label index="doublePage+1">Recto/Verso korrigieren</label> <label index="doublePage+1">Recto/Verso korrigieren</label>
<label index="linkToList">Zurück zur Listenansicht</label> <label index="linkToList">Zurück zur Listenansicht</label>
<label index="zoom-in">Ansicht vergrößern</label> <label index="zoom-in">Ansicht vergrößern</label>
<label index="zoom-out">Ansicht verkleinern</label> <label index="zoom-out">Ansicht verkleinern</label>
<label index="zoom-fullscreen">Vollansicht</label> <label index="zoom-fullscreen">Vollansicht</label>
<label index="rotate-left">Ansicht nach links drehen</label> <label index="rotate-left">Ansicht nach links drehen</label>
<label index="rotate-right">Ansicht nach rechts drehen</label> <label index="rotate-right">Ansicht nach rechts drehen</label>
<label index="rotate-reset">Drehung zurücksetzen</label> <label index="rotate-reset">Drehung zurücksetzen</label>
</languageKey> </languageKey>
</data> </data>
</T3locallang> </T3locallang>

View File

@ -9,51 +9,51 @@
* LICENSE.txt file that was distributed with this source code. * LICENSE.txt file that was distributed with this source code.
--> -->
<T3locallang> <T3locallang>
<meta type="array"> <meta type="array">
<type>module</type> <type>module</type>
<description>Language labels for plugin OaiPmh</description> <description>Language labels for plugin OaiPmh</description>
</meta> </meta>
<data type="array"> <data type="array">
<languageKey index="default" type="array"> <languageKey index="default" type="array">
<label index="tt_content.pi_flexform.sheet_general">Options</label> <label index="tt_content.pi_flexform.sheet_general">Options</label>
<label index="tt_content.pi_flexform.library">Providing library</label> <label index="tt_content.pi_flexform.library">Providing library</label>
<label index="tt_content.pi_flexform.limit">Records per request</label> <label index="tt_content.pi_flexform.limit">Records per request</label>
<label index="tt_content.pi_flexform.expired">Expiration time for resumption token (seconds)</label> <label index="tt_content.pi_flexform.expired">Expiration time for resumption token (seconds)</label>
<label index="tt_content.pi_flexform.show_userdefined">Show user-defined collections?</label> <label index="tt_content.pi_flexform.show_userdefined">Show user-defined collections?</label>
<label index="tt_content.pi_flexform.solrcore">Solr Core</label> <label index="tt_content.pi_flexform.solrcore">Solr Core</label>
<label index="tt_content.pi_flexform.solr_limit">Maximum Solr results</label> <label index="tt_content.pi_flexform.solr_limit">Maximum Solr results</label>
<label index="tt_content.pi_flexform.stylesheet">Transformation stylesheet</label> <label index="tt_content.pi_flexform.stylesheet">Transformation stylesheet</label>
<label index="tt_content.pi_flexform.unqualified_epicur">Use unqualified epicur?</label> <label index="tt_content.pi_flexform.unqualified_epicur">Use unqualified epicur?</label>
<label index="badArgument">The request includes illegal arguments, is missing required arguments, or values for arguments have an illegal syntax.</label> <label index="badArgument">The request includes illegal arguments, is missing required arguments, or values for arguments have an illegal syntax.</label>
<label index="badResumptionToken">The value of the resumptionToken argument is invalid or expired.</label> <label index="badResumptionToken">The value of the resumptionToken argument is invalid or expired.</label>
<label index="badVerb">Value of the verb argument is not a legal OAI-PMH verb or the verb argument is missing.</label> <label index="badVerb">Value of the verb argument is not a legal OAI-PMH verb or the verb argument is missing.</label>
<label index="cannotDisseminateFormat">The metadata format identified by the value given for the metadataPrefix argument is not supported by the item or by the repository.</label> <label index="cannotDisseminateFormat">The metadata format identified by the value given for the metadataPrefix argument is not supported by the item or by the repository.</label>
<label index="idDoesNotExist">The value of the identifier argument is unknown or illegal in this repository.</label> <label index="idDoesNotExist">The value of the identifier argument is unknown or illegal in this repository.</label>
<label index="noRecordsMatch">The combination of the values of the from, until, set and metadataPrefix arguments results in an empty list.</label> <label index="noRecordsMatch">The combination of the values of the from, until, set and metadataPrefix arguments results in an empty list.</label>
<label index="noMetadataFormats">There are no metadata formats available for the specified item.</label> <label index="noMetadataFormats">There are no metadata formats available for the specified item.</label>
<label index="noSetHierarchy">The repository does not support sets or the value of the set argument is invalid.</label> <label index="noSetHierarchy">The repository does not support sets or the value of the set argument is invalid.</label>
<label index="error">An error occurred, please try again later. If this happens consistently, please contact the administrator.</label> <label index="error">An error occurred, please try again later. If this happens consistently, please contact the administrator.</label>
</languageKey> </languageKey>
<languageKey index="de" type="array"> <languageKey index="de" type="array">
<label index="tt_content.pi_flexform.sheet_general">Einstellungen</label> <label index="tt_content.pi_flexform.sheet_general">Einstellungen</label>
<label index="tt_content.pi_flexform.library">Mandant</label> <label index="tt_content.pi_flexform.library">Mandant</label>
<label index="tt_content.pi_flexform.limit">Datensätze pro Abfrage</label> <label index="tt_content.pi_flexform.limit">Datensätze pro Abfrage</label>
<label index="tt_content.pi_flexform.expired">Gültigkeitsdauer des Resumption Tokens (Sekunden)</label> <label index="tt_content.pi_flexform.expired">Gültigkeitsdauer des Resumption Tokens (Sekunden)</label>
<label index="tt_content.pi_flexform.show_userdefined">Benutzerdefinierte Kollektionen anzeigen?</label> <label index="tt_content.pi_flexform.show_userdefined">Benutzerdefinierte Kollektionen anzeigen?</label>
<label index="tt_content.pi_flexform.solrcore">Solr Kern</label> <label index="tt_content.pi_flexform.solrcore">Solr Kern</label>
<label index="tt_content.pi_flexform.solr_limit">Maximale Solr-Ergebnisse</label> <label index="tt_content.pi_flexform.solr_limit">Maximale Solr-Ergebnisse</label>
<label index="tt_content.pi_flexform.stylesheet">XSL-Stylesheet</label> <label index="tt_content.pi_flexform.stylesheet">XSL-Stylesheet</label>
<label index="tt_content.pi_flexform.unqualified_epicur">Unqualifiziertes Epicur verwenden?</label> <label index="tt_content.pi_flexform.unqualified_epicur">Unqualifiziertes Epicur verwenden?</label>
<label index="badArgument">Die Anfrage enthält ungültige Parameter, es fehlen benötigte Parameter oder Parameter haben ungültige Werte.</label> <label index="badArgument">Die Anfrage enthält ungültige Parameter, es fehlen benötigte Parameter oder Parameter haben ungültige Werte.</label>
<label index="badResumptionToken">Das "resumptionToken" ist ungültig oder abgelaufen.</label> <label index="badResumptionToken">Das "resumptionToken" ist ungültig oder abgelaufen.</label>
<label index="badVerb">Der Parameter "verb" fehlt oder hat keinen gültigen OAI-PMH-Wert.</label> <label index="badVerb">Der Parameter "verb" fehlt oder hat keinen gültigen OAI-PMH-Wert.</label>
<label index="cannotDisseminateFormat">Das im Parameter "metadataPrefix" angegebene Format wird vom gewünschten Datensatz oder dem Repository nicht unterstützt.</label> <label index="cannotDisseminateFormat">Das im Parameter "metadataPrefix" angegebene Format wird vom gewünschten Datensatz oder dem Repository nicht unterstützt.</label>
<label index="idDoesNotExist">Der im Parameter "identifier" angegebene Wert existiert nicht im Repository.</label> <label index="idDoesNotExist">Der im Parameter "identifier" angegebene Wert existiert nicht im Repository.</label>
<label index="noRecordsMatch">Die Anfrage ergab eine leere Treffermenge.</label> <label index="noRecordsMatch">Die Anfrage ergab eine leere Treffermenge.</label>
<label index="noMetadataFormats">Für den gewünschten Datensatz werden keine Datenformate unterstützt.</label> <label index="noMetadataFormats">Für den gewünschten Datensatz werden keine Datenformate unterstützt.</label>
<label index="noSetHierarchy">Das Repository unterstützt keine Sets oder der Wert des Parameters "set" ist ungültig.</label> <label index="noSetHierarchy">Das Repository unterstützt keine Sets oder der Wert des Parameters "set" ist ungültig.</label>
<label index="error">Ein Fehler ist aufgetreten. Bitte versuchen Sie es später noch einmal. Sollte der Fehler dauerhaft auftreten, kontaktieren Sie bitte den Administrator.</label> <label index="error">Ein Fehler ist aufgetreten. Bitte versuchen Sie es später noch einmal. Sollte der Fehler dauerhaft auftreten, kontaktieren Sie bitte den Administrator.</label>
</languageKey> </languageKey>
</data> </data>
</T3locallang> </T3locallang>

View File

@ -9,34 +9,34 @@
* LICENSE.txt file that was distributed with this source code. * LICENSE.txt file that was distributed with this source code.
--> -->
<T3locallang> <T3locallang>
<meta type="array"> <meta type="array">
<type>module</type> <type>module</type>
<description>Language labels for plugin PageGrid</description> <description>Language labels for plugin PageGrid</description>
</meta> </meta>
<data type="array"> <data type="array">
<languageKey index="default" type="array"> <languageKey index="default" type="array">
<label index="tt_content.pi_flexform.sheet_general">Options</label> <label index="tt_content.pi_flexform.sheet_general">Options</label>
<label index="tt_content.pi_flexform.limit">Thumbnails per page</label> <label index="tt_content.pi_flexform.limit">Thumbnails per page</label>
<label index="tt_content.pi_flexform.placeholder">Placeholder for pages without thumbnail</label> <label index="tt_content.pi_flexform.placeholder">Placeholder for pages without thumbnail</label>
<label index="tt_content.pi_flexform.targetPid">Target page (with "DLF: Page View" plugin)</label> <label index="tt_content.pi_flexform.targetPid">Target page (with "DLF: Page View" plugin)</label>
<label index="tt_content.pi_flexform.templateFile">Template file</label> <label index="tt_content.pi_flexform.templateFile">Template file</label>
<label index="prevPage">&lt;</label> <label index="prevPage">&lt;</label>
<label index="nextPage">&gt;</label> <label index="nextPage">&gt;</label>
<label index="page">%d</label> <label index="page">%d</label>
<label index="separator"> - </label> <label index="separator"> - </label>
<label index="skip">...</label> <label index="skip">...</label>
</languageKey> </languageKey>
<languageKey index="de" type="array"> <languageKey index="de" type="array">
<label index="tt_content.pi_flexform.sheet_general">Einstellungen</label> <label index="tt_content.pi_flexform.sheet_general">Einstellungen</label>
<label index="tt_content.pi_flexform.limit">Vorschaubilder pro Seite</label> <label index="tt_content.pi_flexform.limit">Vorschaubilder pro Seite</label>
<label index="tt_content.pi_flexform.placeholder">Platzhalter für Seiten ohne Vorschaubild</label> <label index="tt_content.pi_flexform.placeholder">Platzhalter für Seiten ohne Vorschaubild</label>
<label index="tt_content.pi_flexform.targetPid">Zielseite (mit Plugin "DLF: Seitenansicht")</label> <label index="tt_content.pi_flexform.targetPid">Zielseite (mit Plugin "DLF: Seitenansicht")</label>
<label index="tt_content.pi_flexform.templateFile">HTML-Template</label> <label index="tt_content.pi_flexform.templateFile">HTML-Template</label>
<label index="prevPage">&lt;</label> <label index="prevPage">&lt;</label>
<label index="nextPage">&gt;</label> <label index="nextPage">&gt;</label>
<label index="page">%d</label> <label index="page">%d</label>
<label index="separator"> - </label> <label index="separator"> - </label>
<label index="skip">...</label> <label index="skip">...</label>
</languageKey> </languageKey>
</data> </data>
</T3locallang> </T3locallang>

View File

@ -9,48 +9,48 @@
* LICENSE.txt file that was distributed with this source code. * LICENSE.txt file that was distributed with this source code.
--> -->
<T3locallang> <T3locallang>
<meta type="array"> <meta type="array">
<type>module</type> <type>module</type>
<description>Language labels for plugin PageView</description> <description>Language labels for plugin PageView</description>
</meta> </meta>
<data type="array"> <data type="array">
<languageKey index="default" type="array"> <languageKey index="default" type="array">
<label index="tt_content.pi_flexform.basketButton">Show basket button</label> <label index="tt_content.pi_flexform.basketButton">Show basket button</label>
<label index="tt_content.pi_flexform.sheet_general">Options</label> <label index="tt_content.pi_flexform.sheet_general">Options</label>
<label index="tt_content.pi_flexform.excludeOther">Show only documents from the selected page</label> <label index="tt_content.pi_flexform.excludeOther">Show only documents from the selected page</label>
<label index="tt_content.pi_flexform.features">Map features</label> <label index="tt_content.pi_flexform.features">Map features</label>
<label index="tt_content.pi_flexform.features.overviewmap">Overview Image</label> <label index="tt_content.pi_flexform.features.overviewmap">Overview Image</label>
<label index="tt_content.pi_flexform.features.zoompanel">Zoom Panel</label> <label index="tt_content.pi_flexform.features.zoompanel">Zoom Panel</label>
<label index="tt_content.pi_flexform.elementId">@ID value of the HTML element for the page view</label> <label index="tt_content.pi_flexform.elementId">@ID value of the HTML element for the page view</label>
<label index="tt_content.pi_flexform.templateFile">Template file</label> <label index="tt_content.pi_flexform.templateFile">Template file</label>
<label index="tt_content.pi_flexform.useInternalProxy">Use Internal Proxy</label> <label index="tt_content.pi_flexform.useInternalProxy">Use Internal Proxy</label>
<label index="tt_content.pi_flexform.crop">Enable cropping</label> <label index="tt_content.pi_flexform.crop">Enable cropping</label>
<label index="tt_content.pi_flexform.magnifier">Activate magnifier</label> <label index="tt_content.pi_flexform.magnifier">Activate magnifier</label>
<label index="tt_content.pi_flexform.rotation">Add rotation buttons</label> <label index="tt_content.pi_flexform.rotation">Add rotation buttons</label>
<label index="tt_content.pi_flexform.targetBasket">Target page (with "DLF: Basket" plugin)</label> <label index="tt_content.pi_flexform.targetBasket">Target page (with "DLF: Basket" plugin)</label>
<label index="editMode">Set cutout</label> <label index="editMode">Set cutout</label>
<label index="editRemove">Remove cutout</label> <label index="editRemove">Remove cutout</label>
<label index="magnifier">Magnifier</label> <label index="magnifier">Magnifier</label>
<label index="addBasket">Add to basket</label> <label index="addBasket">Add to basket</label>
</languageKey> </languageKey>
<languageKey index="de" type="array"> <languageKey index="de" type="array">
<label index="tt_content.pi_flexform.basketButton">Warenkorb Button anzeigen</label> <label index="tt_content.pi_flexform.basketButton">Warenkorb Button anzeigen</label>
<label index="tt_content.pi_flexform.sheet_general">Einstellungen</label> <label index="tt_content.pi_flexform.sheet_general">Einstellungen</label>
<label index="tt_content.pi_flexform.excludeOther">Nur Dokumente der ausgewählten Seite anzeigen</label> <label index="tt_content.pi_flexform.excludeOther">Nur Dokumente der ausgewählten Seite anzeigen</label>
<label index="tt_content.pi_flexform.features">Bedienelemente</label> <label index="tt_content.pi_flexform.features">Bedienelemente</label>
<label index="tt_content.pi_flexform.features.overviewmap">Übersichtsbild</label> <label index="tt_content.pi_flexform.features.overviewmap">Übersichtsbild</label>
<label index="tt_content.pi_flexform.features.zoompanel">Zoom-Knöpfe</label> <label index="tt_content.pi_flexform.features.zoompanel">Zoom-Knöpfe</label>
<label index="tt_content.pi_flexform.elementId">@ID-Wert des HTML-Elements für die Seitenansicht</label> <label index="tt_content.pi_flexform.elementId">@ID-Wert des HTML-Elements für die Seitenansicht</label>
<label index="tt_content.pi_flexform.templateFile">HTML-Template</label> <label index="tt_content.pi_flexform.templateFile">HTML-Template</label>
<label index="tt_content.pi_flexform.useInternalProxy">Internen Proxy verwenden</label> <label index="tt_content.pi_flexform.useInternalProxy">Internen Proxy verwenden</label>
<label index="tt_content.pi_flexform.crop">Funktion zum Erstellen eines Bildausschnitts aktivieren</label> <label index="tt_content.pi_flexform.crop">Funktion zum Erstellen eines Bildausschnitts aktivieren</label>
<label index="tt_content.pi_flexform.magnifier">Lupenfunktion aktivieren</label> <label index="tt_content.pi_flexform.magnifier">Lupenfunktion aktivieren</label>
<label index="tt_content.pi_flexform.rotation">Rotations-Knöpfe hinzufügen</label> <label index="tt_content.pi_flexform.rotation">Rotations-Knöpfe hinzufügen</label>
<label index="tt_content.pi_flexform.targetBasket">Zielseite (mit Plugin "DLF: Warenkorb")</label> <label index="tt_content.pi_flexform.targetBasket">Zielseite (mit Plugin "DLF: Warenkorb")</label>
<label index="editMode">Ausschnitt auswählen</label> <label index="editMode">Ausschnitt auswählen</label>
<label index="editRemove">Ausschnitt entfernen</label> <label index="editRemove">Ausschnitt entfernen</label>
<label index="magnifier">Lupe</label> <label index="magnifier">Lupe</label>
<label index="addBasket">Zum Warenkorb hinzufügen</label> <label index="addBasket">Zum Warenkorb hinzufügen</label>
</languageKey> </languageKey>
</data> </data>
</T3locallang> </T3locallang>

View File

@ -9,22 +9,22 @@
* LICENSE.txt file that was distributed with this source code. * LICENSE.txt file that was distributed with this source code.
--> -->
<T3locallang> <T3locallang>
<meta type="array"> <meta type="array">
<type>module</type> <type>module</type>
<description>Language labels for tool PdfDownload</description> <description>Language labels for tool PdfDownload</description>
</meta> </meta>
<data type="array"> <data type="array">
<languageKey index="default" type="array"> <languageKey index="default" type="array">
<label index="singlePage">Download single page</label> <label index="singlePage">Download single page</label>
<label index="leftPage">Download left page</label> <label index="leftPage">Download left page</label>
<label index="rightPage">Download right page</label> <label index="rightPage">Download right page</label>
<label index="work">Download whole work</label> <label index="work">Download whole work</label>
</languageKey> </languageKey>
<languageKey index="de" type="array"> <languageKey index="de" type="array">
<label index="singlePage">Einzelseite herunterladen</label> <label index="singlePage">Einzelseite herunterladen</label>
<label index="leftPage">Linke Seite herunterladen</label> <label index="leftPage">Linke Seite herunterladen</label>
<label index="rightPage">Rechte Seite herunterladen</label> <label index="rightPage">Rechte Seite herunterladen</label>
<label index="work">Ganzes Werk herunterladen</label> <label index="work">Ganzes Werk herunterladen</label>
</languageKey> </languageKey>
</data> </data>
</T3locallang> </T3locallang>

View File

@ -9,90 +9,90 @@
* LICENSE.txt file that was distributed with this source code. * LICENSE.txt file that was distributed with this source code.
--> -->
<T3locallang> <T3locallang>
<meta type="array"> <meta type="array">
<type>module</type> <type>module</type>
<description>Language labels for plugin Search</description> <description>Language labels for plugin Search</description>
</meta> </meta>
<data type="array"> <data type="array">
<languageKey index="default" type="array"> <languageKey index="default" type="array">
<label index="tt_content.pi_flexform.sheet_general">Options</label> <label index="tt_content.pi_flexform.sheet_general">Options</label>
<label index="tt_content.pi_flexform.fulltext">Enable fulltext search?</label> <label index="tt_content.pi_flexform.fulltext">Enable fulltext search?</label>
<label index="tt_content.pi_flexform.fulltext.yes">yes</label> <label index="tt_content.pi_flexform.fulltext.yes">yes</label>
<label index="tt_content.pi_flexform.fulltext.no">no</label> <label index="tt_content.pi_flexform.fulltext.no">no</label>
<label index="tt_content.pi_flexform.solrcore">Solr Core</label> <label index="tt_content.pi_flexform.solrcore">Solr Core</label>
<label index="tt_content.pi_flexform.extSearch.slotCount">Number of search slots</label> <label index="tt_content.pi_flexform.extSearch.slotCount">Number of search slots</label>
<label index="tt_content.pi_flexform.extSearch.fields">Fields for extended search</label> <label index="tt_content.pi_flexform.extSearch.fields">Fields for extended search</label>
<label index="tt_content.pi_flexform.collections">Restrict search to these collections</label> <label index="tt_content.pi_flexform.collections">Restrict search to these collections</label>
<label index="tt_content.pi_flexform.searchIn">Restrict search to current document or collection?</label> <label index="tt_content.pi_flexform.searchIn">Restrict search to current document or collection?</label>
<label index="tt_content.pi_flexform.searchIn.none">none</label> <label index="tt_content.pi_flexform.searchIn.none">none</label>
<label index="tt_content.pi_flexform.searchIn.document">document only</label> <label index="tt_content.pi_flexform.searchIn.document">document only</label>
<label index="tt_content.pi_flexform.searchIn.collection">collection only</label> <label index="tt_content.pi_flexform.searchIn.collection">collection only</label>
<label index="tt_content.pi_flexform.searchIn.all">both</label> <label index="tt_content.pi_flexform.searchIn.all">both</label>
<label index="tt_content.pi_flexform.facets">Show these facets</label> <label index="tt_content.pi_flexform.facets">Show these facets</label>
<label index="tt_content.pi_flexform.limitFacets">Maximum facet values</label> <label index="tt_content.pi_flexform.limitFacets">Maximum facet values</label>
<label index="tt_content.pi_flexform.resetFacets">Allow to reset facets</label> <label index="tt_content.pi_flexform.resetFacets">Allow to reset facets</label>
<label index="tt_content.pi_flexform.sortingFacets">Facet sorting</label> <label index="tt_content.pi_flexform.sortingFacets">Facet sorting</label>
<label index="tt_content.pi_flexform.sortingFacets.count">Count (highest count first)</label> <label index="tt_content.pi_flexform.sortingFacets.count">Count (highest count first)</label>
<label index="tt_content.pi_flexform.sortingFacets.index">Lexicographic by indexed term (alphabetically for terms in the ASCII range)</label> <label index="tt_content.pi_flexform.sortingFacets.index">Lexicographic by indexed term (alphabetically for terms in the ASCII range)</label>
<label index="tt_content.pi_flexform.suggest">Show search suggestions</label> <label index="tt_content.pi_flexform.suggest">Show search suggestions</label>
<label index="tt_content.pi_flexform.targetPid">Target page (with "DLF: List View" plugin)</label> <label index="tt_content.pi_flexform.targetPid">Target page (with "DLF: List View" plugin)</label>
<label index="tt_content.pi_flexform.targetPidPageView">Target page (with "DLF: Page View" plugin)</label> <label index="tt_content.pi_flexform.targetPidPageView">Target page (with "DLF: Page View" plugin)</label>
<label index="tt_content.pi_flexform.separator">Separator for metadata in TS array</label> <label index="tt_content.pi_flexform.separator">Separator for metadata in TS array</label>
<label index="tt_content.pi_flexform.templateFile">Template file</label> <label index="tt_content.pi_flexform.templateFile">Template file</label>
<label index="tt_content.pi_flexform.showLogicalPageField">Show field for logical page?</label> <label index="tt_content.pi_flexform.showLogicalPageField">Show field for logical page?</label>
<label index="tt_content.pi_flexform.showSingleResult">Show single result in Page View?</label> <label index="tt_content.pi_flexform.showSingleResult">Show single result in Page View?</label>
<label index="label.query">Search for:</label> <label index="label.query">Search for:</label>
<label index="label.submit">Search</label> <label index="label.submit">Search</label>
<label index="label.inFulltext">in fulltext</label> <label index="label.inFulltext">in fulltext</label>
<label index="label.inMetadata">in metadata</label> <label index="label.inMetadata">in metadata</label>
<label index="label.logicalPage">Page</label> <label index="label.logicalPage">Page</label>
<label index="search">Search</label> <label index="search">Search</label>
<label index="for"> for "%s"</label> <label index="for"> for "%s"</label>
<label index="in"> in "%s"</label> <label index="in"> in "%s"</label>
<label index="AND">and</label> <label index="AND">and</label>
<label index="OR">or</label> <label index="OR">or</label>
<label index="NOT">not</label> <label index="NOT">not</label>
<label index="resetFacet">Reset selection (%s)</label> <label index="resetFacet">Reset selection (%s)</label>
</languageKey> </languageKey>
<languageKey index="de" type="array"> <languageKey index="de" type="array">
<label index="tt_content.pi_flexform.sheet_general">Einstellungen</label> <label index="tt_content.pi_flexform.sheet_general">Einstellungen</label>
<label index="tt_content.pi_flexform.fulltext">Volltext-Suche aktivieren?</label> <label index="tt_content.pi_flexform.fulltext">Volltext-Suche aktivieren?</label>
<label index="tt_content.pi_flexform.fulltext.yes">ja</label> <label index="tt_content.pi_flexform.fulltext.yes">ja</label>
<label index="tt_content.pi_flexform.fulltext.no">nein</label> <label index="tt_content.pi_flexform.fulltext.no">nein</label>
<label index="tt_content.pi_flexform.solrcore">Solr Kern</label> <label index="tt_content.pi_flexform.solrcore">Solr Kern</label>
<label index="tt_content.pi_flexform.extSearch.slotCount">Anzahl Suchfelder</label> <label index="tt_content.pi_flexform.extSearch.slotCount">Anzahl Suchfelder</label>
<label index="tt_content.pi_flexform.extSearch.fields">Felder für erweiterte Suche</label> <label index="tt_content.pi_flexform.extSearch.fields">Felder für erweiterte Suche</label>
<label index="tt_content.pi_flexform.collections">Suche auf diese Kollektionen einschränken</label> <label index="tt_content.pi_flexform.collections">Suche auf diese Kollektionen einschränken</label>
<label index="tt_content.pi_flexform.searchIn">Suche auf aktuelle/s Kollektion/Dokument einschränken?</label> <label index="tt_content.pi_flexform.searchIn">Suche auf aktuelle/s Kollektion/Dokument einschränken?</label>
<label index="tt_content.pi_flexform.searchIn.none">nein</label> <label index="tt_content.pi_flexform.searchIn.none">nein</label>
<label index="tt_content.pi_flexform.searchIn.document">nur Dokument</label> <label index="tt_content.pi_flexform.searchIn.document">nur Dokument</label>
<label index="tt_content.pi_flexform.searchIn.collection">nur Kollektion</label> <label index="tt_content.pi_flexform.searchIn.collection">nur Kollektion</label>
<label index="tt_content.pi_flexform.searchIn.all">beides</label> <label index="tt_content.pi_flexform.searchIn.all">beides</label>
<label index="tt_content.pi_flexform.facets">Diese Facetten anzeigen</label> <label index="tt_content.pi_flexform.facets">Diese Facetten anzeigen</label>
<label index="tt_content.pi_flexform.limitFacets">Maximale Facettenwerte</label> <label index="tt_content.pi_flexform.limitFacets">Maximale Facettenwerte</label>
<label index="tt_content.pi_flexform.resetFacets">Facetten zurücksetzen erlauben</label> <label index="tt_content.pi_flexform.resetFacets">Facetten zurücksetzen erlauben</label>
<label index="tt_content.pi_flexform.sortingFacets">Facetten Sortierung</label> <label index="tt_content.pi_flexform.sortingFacets">Facetten Sortierung</label>
<label index="tt_content.pi_flexform.sortingFacets.count">Anzahl (höchste Anzahl zuerst)</label> <label index="tt_content.pi_flexform.sortingFacets.count">Anzahl (höchste Anzahl zuerst)</label>
<label index="tt_content.pi_flexform.sortingFacets.index">Lexikographisch nach indexiertem Begriff (alphabetisch für Begriffe im ASCII-Bereich)</label> <label index="tt_content.pi_flexform.sortingFacets.index">Lexikographisch nach indexiertem Begriff (alphabetisch für Begriffe im ASCII-Bereich)</label>
<label index="tt_content.pi_flexform.suggest">Suchvorschläge anzeigen</label> <label index="tt_content.pi_flexform.suggest">Suchvorschläge anzeigen</label>
<label index="tt_content.pi_flexform.targetPid">Zielseite (mit Plugin "DLF: Listenansicht")</label> <label index="tt_content.pi_flexform.targetPid">Zielseite (mit Plugin "DLF: Listenansicht")</label>
<label index="tt_content.pi_flexform.targetPidPageView">Zielseite (mit Plugin "DLF: Seitenansicht")</label> <label index="tt_content.pi_flexform.targetPidPageView">Zielseite (mit Plugin "DLF: Seitenansicht")</label>
<label index="tt_content.pi_flexform.separator">Trennzeichen für Metadaten im TS-Array</label> <label index="tt_content.pi_flexform.separator">Trennzeichen für Metadaten im TS-Array</label>
<label index="tt_content.pi_flexform.templateFile">HTML-Template</label> <label index="tt_content.pi_flexform.templateFile">HTML-Template</label>
<label index="tt_content.pi_flexform.showLogicalPageField">Feld für logische Seite anzeigen?</label> <label index="tt_content.pi_flexform.showLogicalPageField">Feld für logische Seite anzeigen?</label>
<label index="tt_content.pi_flexform.showSingleResult">Einzelnes Ergebnis in Seitenansicht anzeigen?</label> <label index="tt_content.pi_flexform.showSingleResult">Einzelnes Ergebnis in Seitenansicht anzeigen?</label>
<label index="label.query">Suchen nach:</label> <label index="label.query">Suchen nach:</label>
<label index="label.submit">Suchen</label> <label index="label.submit">Suchen</label>
<label index="label.inFulltext">im Volltext</label> <label index="label.inFulltext">im Volltext</label>
<label index="label.inMetadata">in Metadaten</label> <label index="label.inMetadata">in Metadaten</label>
<label index="label.logicalPage">Seite</label> <label index="label.logicalPage">Seite</label>
<label index="search">Suche</label> <label index="search">Suche</label>
<label index="for"> nach "%s"</label> <label index="for"> nach "%s"</label>
<label index="in"> in "%s"</label> <label index="in"> in "%s"</label>
<label index="AND">und</label> <label index="AND">und</label>
<label index="OR">oder</label> <label index="OR">oder</label>
<label index="NOT">nicht</label> <label index="NOT">nicht</label>
<label index="resetFacet">Auswahl entfernen (%s)</label> <label index="resetFacet">Auswahl entfernen (%s)</label>
</languageKey> </languageKey>
</data> </data>
</T3locallang> </T3locallang>

View File

@ -9,28 +9,28 @@
* LICENSE.txt file that was distributed with this source code. * LICENSE.txt file that was distributed with this source code.
--> -->
<T3locallang> <T3locallang>
<meta type="array"> <meta type="array">
<type>module</type> <type>module</type>
<description>Language labels for plugin Statistics </description> <description>Language labels for plugin Statistics </description>
</meta> </meta>
<data type="array"> <data type="array">
<languageKey index="default" type="array"> <languageKey index="default" type="array">
<label index="tt_content.pi_flexform.sheet_general">Options</label> <label index="tt_content.pi_flexform.sheet_general">Options</label>
<label index="tt_content.pi_flexform.collections">Include only these collections</label> <label index="tt_content.pi_flexform.collections">Include only these collections</label>
<label index="tt_content.pi_flexform.description">Description (Placeholders: ###TITLES### and ###VOLUMES###)</label> <label index="tt_content.pi_flexform.description">Description (Placeholders: ###TITLES### and ###VOLUMES###)</label>
<label index="title"> title</label> <label index="title"> title</label>
<label index="titles"> titles</label> <label index="titles"> titles</label>
<label index="volume"> volume</label> <label index="volume"> volume</label>
<label index="volumes"> volumes</label> <label index="volumes"> volumes</label>
</languageKey> </languageKey>
<languageKey index="de" type="array"> <languageKey index="de" type="array">
<label index="tt_content.pi_flexform.sheet_general">Einstellungen</label> <label index="tt_content.pi_flexform.sheet_general">Einstellungen</label>
<label index="tt_content.pi_flexform.collections">Nur diese Kollektionen berücksichtigen</label> <label index="tt_content.pi_flexform.collections">Nur diese Kollektionen berücksichtigen</label>
<label index="tt_content.pi_flexform.description">Beschreibung (Platzhalter: ###TITLES### und ###VOLUMES###)</label> <label index="tt_content.pi_flexform.description">Beschreibung (Platzhalter: ###TITLES### und ###VOLUMES###)</label>
<label index="title"> Titel</label> <label index="title"> Titel</label>
<label index="titles"> Titel</label> <label index="titles"> Titel</label>
<label index="volume"> Band</label> <label index="volume"> Band</label>
<label index="volumes"> Bände</label> <label index="volumes"> Bände</label>
</languageKey> </languageKey>
</data> </data>
</T3locallang> </T3locallang>

View File

@ -9,28 +9,28 @@
* LICENSE.txt file that was distributed with this source code. * LICENSE.txt file that was distributed with this source code.
--> -->
<T3locallang> <T3locallang>
<meta type="array"> <meta type="array">
<type>module</type> <type>module</type>
<description>Language labels for plugin TableOfContents</description> <description>Language labels for plugin TableOfContents</description>
</meta> </meta>
<data type="array"> <data type="array">
<languageKey index="default" type="array"> <languageKey index="default" type="array">
<label index="tt_content.pi_flexform.sheet_general">Options</label> <label index="tt_content.pi_flexform.sheet_general">Options</label>
<label index="tt_content.pi_flexform.excludeOther">Show only documents from the selected page</label> <label index="tt_content.pi_flexform.excludeOther">Show only documents from the selected page</label>
<label index="tt_content.pi_flexform.targetPid">Target page (with "DLF: Page View" plugin)</label> <label index="tt_content.pi_flexform.targetPid">Target page (with "DLF: Page View" plugin)</label>
<label index="tt_content.pi_flexform.templateFile">Template file</label> <label index="tt_content.pi_flexform.templateFile">Template file</label>
<label index="tt_content.pi_flexform.basketButton">Show basket button</label> <label index="tt_content.pi_flexform.basketButton">Show basket button</label>
<label index="tt_content.pi_flexform.targetBasket">Target page (with "DLF: Basket" plugin)</label> <label index="tt_content.pi_flexform.targetBasket">Target page (with "DLF: Basket" plugin)</label>
<label index="basketButton">Add to basket</label> <label index="basketButton">Add to basket</label>
</languageKey> </languageKey>
<languageKey index="de" type="array"> <languageKey index="de" type="array">
<label index="tt_content.pi_flexform.sheet_general">Einstellungen</label> <label index="tt_content.pi_flexform.sheet_general">Einstellungen</label>
<label index="tt_content.pi_flexform.excludeOther">Nur Dokumente der ausgewählten Seite anzeigen</label> <label index="tt_content.pi_flexform.excludeOther">Nur Dokumente der ausgewählten Seite anzeigen</label>
<label index="tt_content.pi_flexform.targetPid">Zielseite (mit Plugin "DLF: Seitenansicht")</label> <label index="tt_content.pi_flexform.targetPid">Zielseite (mit Plugin "DLF: Seitenansicht")</label>
<label index="tt_content.pi_flexform.templateFile">HTML-Template</label> <label index="tt_content.pi_flexform.templateFile">HTML-Template</label>
<label index="tt_content.pi_flexform.basketButton">Zeige Warenkorb Button an</label> <label index="tt_content.pi_flexform.basketButton">Zeige Warenkorb Button an</label>
<label index="tt_content.pi_flexform.targetBasket">Zielseite (mit Plugin "DLF: Warenkorb")</label> <label index="tt_content.pi_flexform.targetBasket">Zielseite (mit Plugin "DLF: Warenkorb")</label>
<label index="basketButton">Zum Warenkorb hinzufügen</label> <label index="basketButton">Zum Warenkorb hinzufügen</label>
</languageKey> </languageKey>
</data> </data>
</T3locallang> </T3locallang>

View File

@ -9,22 +9,22 @@
* LICENSE.txt file that was distributed with this source code. * LICENSE.txt file that was distributed with this source code.
--> -->
<T3locallang> <T3locallang>
<meta type="array"> <meta type="array">
<type>module</type> <type>module</type>
<description>Language labels for plugin Toolbox</description> <description>Language labels for plugin Toolbox</description>
</meta> </meta>
<data type="array"> <data type="array">
<languageKey index="default" type="array"> <languageKey index="default" type="array">
<label index="tt_content.pi_flexform.sheet_general">Options</label> <label index="tt_content.pi_flexform.sheet_general">Options</label>
<label index="tt_content.pi_flexform.tools">Tools</label> <label index="tt_content.pi_flexform.tools">Tools</label>
<label index="tt_content.pi_flexform.templateFile">Template file</label> <label index="tt_content.pi_flexform.templateFile">Template file</label>
<label index="tt_content.pi_flexform.fileGrps">Page fileGrps used by image download tool: comma-separated list of @USE attribute values ordered by increasing size (default is "MIN,DEFAULT,MAX")</label> <label index="tt_content.pi_flexform.fileGrps">Page fileGrps used by image download tool: comma-separated list of @USE attribute values ordered by increasing size (default is "MIN,DEFAULT,MAX")</label>
</languageKey> </languageKey>
<languageKey index="de" type="array"> <languageKey index="de" type="array">
<label index="tt_content.pi_flexform.sheet_general">Einstellungen</label> <label index="tt_content.pi_flexform.sheet_general">Einstellungen</label>
<label index="tt_content.pi_flexform.tools">Werkzeuge</label> <label index="tt_content.pi_flexform.tools">Werkzeuge</label>
<label index="tt_content.pi_flexform.templateFile">HTML-Template</label> <label index="tt_content.pi_flexform.templateFile">HTML-Template</label>
<label index="tt_content.pi_flexform.fileGrp">Seiten fileGrps für das Werkzeug Bild-Download: Komma-getrennte Liste der @USE Attributwerte der Seitenansichten nach aufsteigender Größe sortiert (Standard ist "MIN,DEFAULT,MAX")</label> <label index="tt_content.pi_flexform.fileGrp">Seiten fileGrps für das Werkzeug Bild-Download: Komma-getrennte Liste der @USE Attributwerte der Seitenansichten nach aufsteigender Größe sortiert (Standard ist "MIN,DEFAULT,MAX")</label>
</languageKey> </languageKey>
</data> </data>
</T3locallang> </T3locallang>

View File

@ -9,18 +9,18 @@
* LICENSE.txt file that was distributed with this source code. * LICENSE.txt file that was distributed with this source code.
--> -->
<T3locallang> <T3locallang>
<meta type="array"> <meta type="array">
<type>module</type> <type>module</type>
<description>Language labels for plugin Validator</description> <description>Language labels for plugin Validator</description>
</meta> </meta>
<data type="array"> <data type="array">
<languageKey index="default" type="array"> <languageKey index="default" type="array">
<label index="tt_content.pi_flexform.sheet_general">Options</label> <label index="tt_content.pi_flexform.sheet_general">Options</label>
<label index="tt_content.pi_flexform.templateFile">Template file</label> <label index="tt_content.pi_flexform.templateFile">Template file</label>
</languageKey> </languageKey>
<languageKey index="de" type="array"> <languageKey index="de" type="array">
<label index="tt_content.pi_flexform.sheet_general">Einstellungen</label> <label index="tt_content.pi_flexform.sheet_general">Einstellungen</label>
<label index="tt_content.pi_flexform.templateFile">HTML-Template</label> <label index="tt_content.pi_flexform.templateFile">HTML-Template</label>
</languageKey> </languageKey>
</data> </data>
</T3locallang> </T3locallang>

View File

@ -11,31 +11,31 @@
<h2 class="tx-dlf-basket-label">###LISTTITLE###</h2> <h2 class="tx-dlf-basket-label">###LISTTITLE###</h2>
<p class="tx-dlf-basket-counts">###COUNT###</p> <p class="tx-dlf-basket-counts">###COUNT###</p>
<form action="###ACTION###" name="tx_dlf" method="post"> <form action="###ACTION###" name="tx_dlf" method="post">
<ol class="tx-dlf-basket-list"> <ol class="tx-dlf-basket-list">
<!-- ###ENTRY### --> <!-- ###ENTRY### -->
<li value="###NUMBER###"> <li value="###NUMBER###">
<dl> <dl>
<dt> <dt>
###BASKETDATA### ###BASKETDATA###
</dt> </dt>
<dd> <dd>
<div>###CONTROLS###</div> <div>###CONTROLS###</div>
</dd> </dd>
</dl> </dl>
</li> </li>
<!-- ###ENTRY### --> <!-- ###ENTRY### -->
</ol> </ol>
<div> <div>
<div> <div>
###REMOVEACTION### ###REMOVEACTION###
</div> </div>
<div> <div>
###MAILACTION### ###MAILACTION###
</div> </div>
<div> <div>
###PRINTACTION### ###PRINTACTION###
</div> </div>
</div> </div>
</form> </form>
###JS### ###JS###
<div class="tx-dlf-goto-basket">###BASKET###</div> <div class="tx-dlf-goto-basket">###BASKET###</div>

View File

@ -8,14 +8,14 @@
* LICENSE.txt file that was distributed with this source code. * LICENSE.txt file that was distributed with this source code.
--> -->
<!-- ###TEMPLATE### --> <!-- ###TEMPLATE### -->
<ul class="tx-dlf-collection-list"> <ul class="tx-dlf-collection-list">
<!-- ###ENTRY### --> <!-- ###ENTRY### -->
<li> <li>
<h2>###TITLE### <span>###FEED###</span></h2> <h2>###TITLE### <span>###FEED###</span></h2>
<div class="tx-dlf-collection-thumbnail">###THUMBNAIL###</div> <div class="tx-dlf-collection-thumbnail">###THUMBNAIL###</div>
###DESCRIPTION### ###DESCRIPTION###
<p class="tx-dlf-collection-counts">(###COUNT_TITLES###/###COUNT_VOLUMES###)</p> <p class="tx-dlf-collection-counts">(###COUNT_TITLES###/###COUNT_VOLUMES###)</p>
</li> </li>
<!-- ###ENTRY### --> <!-- ###ENTRY### -->
</ul> </ul>
<!-- ###TEMPLATE### --> <!-- ###TEMPLATE### -->

View File

@ -15,29 +15,29 @@
###SORTING### ###SORTING###
<p class="tx-dlf-listview-pagebrowser">###PAGEBROWSER###</p> <p class="tx-dlf-listview-pagebrowser">###PAGEBROWSER###</p>
<ol class="tx-dlf-listview-list"> <ol class="tx-dlf-listview-list">
<!-- ###ENTRY### --> <!-- ###ENTRY### -->
<li value="###NUMBER###"> <li value="###NUMBER###">
<div class="tx-dlf-listview-thumbnail">###THUMBNAIL###</div> <div class="tx-dlf-listview-thumbnail">###THUMBNAIL###</div>
<dl> <dl>
###METADATA### ###METADATA###
</dl> </dl>
<div class="tx-dlf-listview-preview">###PREVIEW###</div> <div class="tx-dlf-listview-preview">###PREVIEW###</div>
<!-- ###SUBTEMPLATE### --> <!-- ###SUBTEMPLATE### -->
<ol> <ol>
<!-- ###SUBENTRY### --> <!-- ###SUBENTRY### -->
<li> <li>
<div class="tx-dlf-listview-thumbnail">###SUBTHUMBNAIL###</div> <div class="tx-dlf-listview-thumbnail">###SUBTHUMBNAIL###</div>
<dl> <dl>
###SUBMETADATA### ###SUBMETADATA###
</dl> </dl>
<div class="tx-dlf-listview-preview">###SUBPREVIEW###</div> <div class="tx-dlf-listview-preview">###SUBPREVIEW###</div>
</li> </li>
<div>###SUBBASKETBUTTON###</div> <div>###SUBBASKETBUTTON###</div>
<!-- ###SUBENTRY### --> <!-- ###SUBENTRY### -->
</ol> </ol>
<!-- ###SUBTEMPLATE### --> <!-- ###SUBTEMPLATE### -->
<div>###BASKETBUTTON###</div> <div>###BASKETBUTTON###</div>
</li> </li>
<!-- ###ENTRY### --> <!-- ###ENTRY### -->
</ol> </ol>
<!-- ###TEMPLATE### --> <!-- ###TEMPLATE### -->

View File

@ -8,9 +8,9 @@
* LICENSE.txt file that was distributed with this source code. * LICENSE.txt file that was distributed with this source code.
--> -->
<!-- ###TEMPLATE### --> <!-- ###TEMPLATE### -->
<!-- ###BLOCK### --> <!-- ###BLOCK### -->
<dl> <dl>
###METADATA### ###METADATA###
</dl> </dl>
<!-- ###BLOCK### --> <!-- ###BLOCK### -->
<!-- ###TEMPLATE### --> <!-- ###TEMPLATE### -->

View File

@ -10,11 +10,11 @@
<!-- ###TEMPLATE### --> <!-- ###TEMPLATE### -->
<div class="tx-dlf-pagegrid-pagebrowser">###PAGEBROWSER###</div> <div class="tx-dlf-pagegrid-pagebrowser">###PAGEBROWSER###</div>
<ol class="tx-dlf-pagegrid-list"> <ol class="tx-dlf-pagegrid-list">
<!-- ###ENTRY### --> <!-- ###ENTRY### -->
<li class="tx-dlf-pagegrid-###STATE###" value="###NUMBER###"> <li class="tx-dlf-pagegrid-###STATE###" value="###NUMBER###">
<div class="tx-dlf-pagegrid-thumbnail">###THUMBNAIL###</div> <div class="tx-dlf-pagegrid-thumbnail">###THUMBNAIL###</div>
<div class="tx-dlf-pagegrid-pagination">###PAGINATION###</div> <div class="tx-dlf-pagegrid-pagination">###PAGINATION###</div>
</li> </li>
<!-- ###ENTRY### --> <!-- ###ENTRY### -->
</ol> </ol>
<!-- ###TEMPLATE### --> <!-- ###TEMPLATE### -->

View File

@ -9,7 +9,7 @@
--> -->
<!-- ###TEMPLATE### --> <!-- ###TEMPLATE### -->
<div id="tx-dlf-map" class="tx-dlf-map"> <div id="tx-dlf-map" class="tx-dlf-map">
<div id="tx-dlf-fulltextselection"></div> <div id="tx-dlf-fulltextselection"></div>
</div> </div>
<div id="ov_map"></div> <div id="ov_map"></div>
<div class="tx-dlf-navigation-edit">###EDITBUTTON###</div> <div class="tx-dlf-navigation-edit">###EDITBUTTON###</div>

View File

@ -9,20 +9,20 @@
--> -->
<!-- ###TEMPLATE### --> <!-- ###TEMPLATE### -->
<form class="tx-dlf-search-form" action="###ACTION_URL###" method="post" enctype="multipart/form-data"><div> <form class="tx-dlf-search-form" action="###ACTION_URL###" method="post" enctype="multipart/form-data"><div>
<label for="tx-dlf-search-query">###LABEL_QUERY###</label> <label for="tx-dlf-search-query">###LABEL_QUERY###</label>
<!-- Never change the @id of this input field! Otherwise search suggestions won't work! --> <!-- Never change the @id of this input field! Otherwise search suggestions won't work! -->
<input type="text" id="tx-dlf-search-query" name="###FIELD_QUERY###" value="###QUERY###" /> <input type="text" id="tx-dlf-search-query" name="###FIELD_QUERY###" value="###QUERY###" />
###LOGICAL_PAGE### ###LOGICAL_PAGE###
<!-- The following element is needed for auto-completion! --> <!-- The following element is needed for auto-completion! -->
<div id="tx-dlf-search-suggest"></div> <div id="tx-dlf-search-suggest"></div>
<input type="submit" value="###LABEL_SUBMIT###" /> <input type="submit" value="###LABEL_SUBMIT###" />
###FULLTEXTSWITCH### ###FULLTEXTSWITCH###
###FIELD_DOC### ###FIELD_DOC###
###FIELD_COLL### ###FIELD_COLL###
###ADDITIONAL_INPUTS### ###ADDITIONAL_INPUTS###
<!-- ###EXT_SEARCH_ENTRY### --> <!-- ###EXT_SEARCH_ENTRY### -->
<div class="tx-dlf-search-extended">###EXT_SEARCH_OPERATOR### ###EXT_SEARCH_FIELDSELECTOR### ###EXT_SEARCH_FIELDQUERY###</div> <div class="tx-dlf-search-extended">###EXT_SEARCH_OPERATOR### ###EXT_SEARCH_FIELDSELECTOR### ###EXT_SEARCH_FIELDQUERY###</div>
<!-- ###EXT_SEARCH_ENTRY### --> <!-- ###EXT_SEARCH_ENTRY### -->
</div></form> </div></form>
<div class="tx-dlf-search-facets">###FACETS_MENU###</div> <div class="tx-dlf-search-facets">###FACETS_MENU###</div>
<!-- ###TEMPLATE### --> <!-- ###TEMPLATE### -->

View File

@ -9,8 +9,8 @@
--> -->
<!-- ###TEMPLATE### --> <!-- ###TEMPLATE### -->
<ul> <ul>
<!-- ###TOOLS### --> <!-- ###TOOLS### -->
<li>###TOOL###</li> <li>###TOOL###</li>
<!-- ###TOOLS### --> <!-- ###TOOLS### -->
</ul> </ul>
<!-- ###TEMPLATE### --> <!-- ###TEMPLATE### -->

View File

@ -10,11 +10,11 @@
--> -->
<!-- <!--
XSL transformation to convert OAI-PMH 2.0 responses into XHTML XSL transformation to convert OAI-PMH 2.0 responses into XHTML
By Christopher Gutteridge, University of Southampton By Christopher Gutteridge, University of Southampton
Edited by Sebastian Meyer, Saxon State and University Library Dresden Edited by Sebastian Meyer, Saxon State and University Library Dresden
--> -->
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:oai="http://www.openarchives.org/OAI/2.0/"> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:oai="http://www.openarchives.org/OAI/2.0/">
@ -23,122 +23,122 @@
<xsl:template name="style"> <xsl:template name="style">
td.value { td.value {
vertical-align: top; vertical-align: top;
padding-left: 1em; padding-left: 1em;
padding: 3px; padding: 3px;
} }
td.key { td.key {
background-color: #e0e0ff; background-color: #e0e0ff;
padding: 3px; padding: 3px;
text-align: right; text-align: right;
border: 1px solid #c0c0c0; border: 1px solid #c0c0c0;
white-space: nowrap; white-space: nowrap;
font-weight: bold; font-weight: bold;
vertical-align: top; vertical-align: top;
} }
.dcdata td.key { .dcdata td.key {
background-color: #ffffe0; background-color: #ffffe0;
} }
body { body {
margin: 1em 2em 1em 2em; margin: 1em 2em 1em 2em;
} }
h1, h1,
h2, h2,
h3 { h3 {
font-family: sans-serif; font-family: sans-serif;
clear: left; clear: left;
} }
h1 { h1 {
padding-bottom: 4px; padding-bottom: 4px;
margin-bottom: 0px; margin-bottom: 0px;
} }
h2 { h2 {
margin-bottom: 0.5em; margin-bottom: 0.5em;
} }
h3 { h3 {
margin-bottom: 0.3em; margin-bottom: 0.3em;
font-size: medium; font-size: medium;
} }
.link { .link {
border: 1px outset #88f; border: 1px outset #88f;
background-color: #c0c0ff; background-color: #c0c0ff;
padding: 1px 4px 1px 4px; padding: 1px 4px 1px 4px;
font-size: 80%; font-size: 80%;
text-decoration: none; text-decoration: none;
font-weight: bold; font-weight: bold;
font-family: sans-serif; font-family: sans-serif;
color: black; color: black;
} }
.link:hover { .link:hover {
color: red; color: red;
} }
.link:active { .link:active {
color: red; color: red;
border: 1px inset #88f; border: 1px inset #88f;
background-color: #a0a0df; background-color: #a0a0df;
} }
.oaiRecord, .oaiRecord,
.oaiRecordTitle { .oaiRecordTitle {
background-color: #f0f0ff; background-color: #f0f0ff;
border-style: solid; border-style: solid;
border-color: #d0d0d0; border-color: #d0d0d0;
} }
h2.oaiRecordTitle { h2.oaiRecordTitle {
background-color: #e0e0ff; background-color: #e0e0ff;
font-size: medium; font-size: medium;
font-weight: bold; font-weight: bold;
padding: 10px; padding: 10px;
border-width: 2px 2px 0px 2px; border-width: 2px 2px 0px 2px;
margin: 0px; margin: 0px;
} }
.oaiRecord { .oaiRecord {
margin-bottom: 3em; margin-bottom: 3em;
border-width: 2px; border-width: 2px;
padding: 10px; padding: 10px;
} }
.results { .results {
margin-bottom: 1.5em; margin-bottom: 1.5em;
} }
ul.quicklinks { ul.quicklinks {
margin-top: 2px; margin-top: 2px;
padding: 4px; padding: 4px;
text-align: left; text-align: left;
border-bottom: 2px solid #ccc; border-bottom: 2px solid #ccc;
border-top: 2px solid #ccc; border-top: 2px solid #ccc;
clear: left; clear: left;
} }
ul.quicklinks li { ul.quicklinks li {
font-size: 80%; font-size: 80%;
display: inline; display: inline;
list-style: none; list-style: none;
font-family: sans-serif; font-family: sans-serif;
} }
p.intro { p.intro {
font-size: 80%; font-size: 80%;
} }
<xsl:call-template name='xmlstyle' /> <xsl:call-template name='xmlstyle' />
</xsl:template> </xsl:template>
<xsl:template name="xmlstyle"> <xsl:template name="xmlstyle">
.xmlSource { .xmlSource {
font-size: 70%; font-size: 70%;
border: solid #c0c0a0 1px; border: solid #c0c0a0 1px;
background-color: #ffffe0; background-color: #ffffe0;
padding: 2em 2em 2em 0em; padding: 2em 2em 2em 0em;
} }
.xmlBlock { .xmlBlock {
padding-left: 2em; padding-left: 2em;
} }
.xmlTagName { .xmlTagName {
color: #800000; color: #800000;
font-weight: bold; font-weight: bold;
} }
.xmlAttrName { .xmlAttrName {
font-weight: bold; font-weight: bold;
} }
.xmlAttrValue { .xmlAttrValue {
color: #0000c0; color: #0000c0;
} }
</xsl:template> </xsl:template>
@ -146,276 +146,276 @@ p.intro {
<xsl:template match="/"> <xsl:template match="/">
<html> <html>
<head> <head>
<title>Kitodo.Presentation: OAI 2.0 Request Results</title> <title>Kitodo.Presentation: OAI 2.0 Request Results</title>
<style><xsl:call-template name="style"/></style> <style><xsl:call-template name="style"/></style>
</head> </head>
<body> <body>
<h1>Kitodo.Presentation: OAI 2.0 Request Results</h1> <h1>Kitodo.Presentation: OAI 2.0 Request Results</h1>
<xsl:call-template name="quicklinks"/> <xsl:call-template name="quicklinks"/>
<p class="intro">You are viewing an HTML version of the XML OAI-PMH response. To see the underlying XML as it appears to any OAI-PMH harvester use your web browser's view source option or disable XSLT processing.<br /> <p class="intro">You are viewing an HTML version of the XML OAI-PMH response. To see the underlying XML as it appears to any OAI-PMH harvester use your web browser's view source option or disable XSLT processing.<br />
More information about this XSLT is at the <a href="#moreinfo">bottom of the page</a>.</p> More information about this XSLT is at the <a href="#moreinfo">bottom of the page</a>.</p>
<xsl:apply-templates select="/oai:OAI-PMH" /> <xsl:apply-templates select="/oai:OAI-PMH" />
<xsl:call-template name="quicklinks"/> <xsl:call-template name="quicklinks"/>
<h2><a name="moreinfo">About the XSLT</a></h2> <h2><a name="moreinfo">About the XSLT</a></h2>
<p>An XSLT file has converted the <a href="http://www.openarchives.org">OAI-PMH 2.0</a> responses into XHTML in order to make it human-readable in a browser which supports XSLT such as Mozilla Firefox and Microsoft Internet Explorer.<br /> <p>An XSLT file has converted the <a href="http://www.openarchives.org">OAI-PMH 2.0</a> responses into XHTML in order to make it human-readable in a browser which supports XSLT such as Mozilla Firefox and Microsoft Internet Explorer.<br />
The original XSLT file was created by <a href="http://www.ecs.soton.ac.uk/people/cjg">Christopher Gutteridge</a> at the University of Southampton as part of the <a href="http://software.eprints.org">GNU EPrints system</a>, and is freely redistributable under the <a href="http://www.gnu.org">GPL</a>.<br /> The original XSLT file was created by <a href="http://www.ecs.soton.ac.uk/people/cjg">Christopher Gutteridge</a> at the University of Southampton as part of the <a href="http://software.eprints.org">GNU EPrints system</a>, and is freely redistributable under the <a href="http://www.gnu.org">GPL</a>.<br />
It was adapted to <a href="http://kitodo.org">Kitodo.Presentation</a> by <a href="mailto:sebastian.meyer@slub-dresden.de">Sebastian Meyer</a> at the Saxon State and University Library Dresden.</p> It was adapted to <a href="http://kitodo.org">Kitodo.Presentation</a> by <a href="mailto:sebastian.meyer@slub-dresden.de">Sebastian Meyer</a> at the Saxon State and University Library Dresden.</p>
</body> </body>
</html> </html>
</xsl:template> </xsl:template>
<xsl:template name="quicklinks"> <xsl:template name="quicklinks">
<ul class="quicklinks"> <ul class="quicklinks">
<li><a href="?verb=Identify">Identify</a> | </li> <li><a href="?verb=Identify">Identify</a> | </li>
<li><a href="?verb=ListIdentifiers&amp;metadataPrefix=oai_dc">ListIdentifiers (OAI_DC)</a> | </li> <li><a href="?verb=ListIdentifiers&amp;metadataPrefix=oai_dc">ListIdentifiers (OAI_DC)</a> | </li>
<li><a href="?verb=ListIdentifiers&amp;metadataPrefix=mets">ListIdentifiers (METS)</a> | </li> <li><a href="?verb=ListIdentifiers&amp;metadataPrefix=mets">ListIdentifiers (METS)</a> | </li>
<li><a href="?verb=ListIdentifiers&amp;metadataPrefix=epicur">ListIdentifiers (EPICUR)</a> | </li> <li><a href="?verb=ListIdentifiers&amp;metadataPrefix=epicur">ListIdentifiers (EPICUR)</a> | </li>
<li><a href="?verb=ListMetadataFormats">ListMetadataFormats</a> | </li> <li><a href="?verb=ListMetadataFormats">ListMetadataFormats</a> | </li>
<li><a href="?verb=ListRecords&amp;metadataPrefix=oai_dc">ListRecords (OAI_DC)</a> | </li> <li><a href="?verb=ListRecords&amp;metadataPrefix=oai_dc">ListRecords (OAI_DC)</a> | </li>
<li><a href="?verb=ListRecords&amp;metadataPrefix=mets">ListRecords (METS)</a> | </li> <li><a href="?verb=ListRecords&amp;metadataPrefix=mets">ListRecords (METS)</a> | </li>
<li><a href="?verb=ListRecords&amp;metadataPrefix=epicur">ListRecords (EPICUR)</a> | </li> <li><a href="?verb=ListRecords&amp;metadataPrefix=epicur">ListRecords (EPICUR)</a> | </li>
<li><a href="?verb=ListSets">ListSets</a></li> <li><a href="?verb=ListSets">ListSets</a></li>
</ul> </ul>
</xsl:template> </xsl:template>
<xsl:template match="/oai:OAI-PMH"> <xsl:template match="/oai:OAI-PMH">
<table class="values"> <table class="values">
<tr><td class="key">Datestamp of Response</td> <tr><td class="key">Datestamp of Response</td>
<td class="value"><xsl:value-of select="oai:responseDate"/></td></tr> <td class="value"><xsl:value-of select="oai:responseDate"/></td></tr>
<tr><td class="key">Request URL</td> <tr><td class="key">Request URL</td>
<td class="value"><xsl:value-of select="oai:request"/></td></tr> <td class="value"><xsl:value-of select="oai:request"/></td></tr>
</table> </table>
<xsl:choose> <xsl:choose>
<xsl:when test="oai:error"> <xsl:when test="oai:error">
<h2>OAI Error</h2> <h2>OAI Error</h2>
<p>The request could not be completed due to the following error.</p> <p>The request could not be completed due to the following error.</p>
<div class="results"> <div class="results">
<xsl:apply-templates select="oai:error"/> <xsl:apply-templates select="oai:error"/>
</div> </div>
</xsl:when> </xsl:when>
<xsl:otherwise> <xsl:otherwise>
<p>Request was of type <xsl:value-of select="oai:request/@verb"/>.</p> <p>Request was of type <xsl:value-of select="oai:request/@verb"/>.</p>
<div class="results"> <div class="results">
<xsl:apply-templates select="oai:Identify" /> <xsl:apply-templates select="oai:Identify" />
<xsl:apply-templates select="oai:GetRecord"/> <xsl:apply-templates select="oai:GetRecord"/>
<xsl:apply-templates select="oai:ListRecords"/> <xsl:apply-templates select="oai:ListRecords"/>
<xsl:apply-templates select="oai:ListSets"/> <xsl:apply-templates select="oai:ListSets"/>
<xsl:apply-templates select="oai:ListMetadataFormats"/> <xsl:apply-templates select="oai:ListMetadataFormats"/>
<xsl:apply-templates select="oai:ListIdentifiers"/> <xsl:apply-templates select="oai:ListIdentifiers"/>
</div> </div>
</xsl:otherwise> </xsl:otherwise>
</xsl:choose> </xsl:choose>
</xsl:template> </xsl:template>
<!-- <!--
Error Error
--> -->
<xsl:template match="/oai:OAI-PMH/oai:error"> <xsl:template match="/oai:OAI-PMH/oai:error">
<table class="values"> <table class="values">
<tr><td class="key">Error Code</td> <tr><td class="key">Error Code</td>
<td class="value"><xsl:value-of select="@code"/></td></tr> <td class="value"><xsl:value-of select="@code"/></td></tr>
</table> </table>
<p class="error"><xsl:value-of select="." /></p> <p class="error"><xsl:value-of select="." /></p>
</xsl:template> </xsl:template>
<!-- <!--
Identify Identify
--> -->
<xsl:template match="/oai:OAI-PMH/oai:Identify"> <xsl:template match="/oai:OAI-PMH/oai:Identify">
<h2>Repository</h2> <h2>Repository</h2>
<table class="values"> <table class="values">
<tr><td class="key">Name</td> <tr><td class="key">Name</td>
<td class="value"><xsl:value-of select="oai:repositoryName"/></td></tr> <td class="value"><xsl:value-of select="oai:repositoryName"/></td></tr>
<tr><td class="key">Base URL</td> <tr><td class="key">Base URL</td>
<td class="value"><xsl:value-of select="oai:baseURL"/></td></tr> <td class="value"><xsl:value-of select="oai:baseURL"/></td></tr>
<tr><td class="key">Protocol Version</td> <tr><td class="key">Protocol Version</td>
<td class="value"><xsl:value-of select="oai:protocolVersion"/></td></tr> <td class="value"><xsl:value-of select="oai:protocolVersion"/></td></tr>
<tr><td class="key">Earliest Datestamp</td> <tr><td class="key">Earliest Datestamp</td>
<td class="value"><xsl:value-of select="oai:earliestDatestamp"/></td></tr> <td class="value"><xsl:value-of select="oai:earliestDatestamp"/></td></tr>
<tr><td class="key">Deleted Record Policy</td> <tr><td class="key">Deleted Record Policy</td>
<td class="value"><xsl:value-of select="oai:deletedRecord"/></td></tr> <td class="value"><xsl:value-of select="oai:deletedRecord"/></td></tr>
<tr><td class="key">Granularity</td> <tr><td class="key">Granularity</td>
<td class="value"><xsl:value-of select="oai:granularity"/></td></tr> <td class="value"><xsl:value-of select="oai:granularity"/></td></tr>
<xsl:apply-templates select="oai:adminEmail"/> <xsl:apply-templates select="oai:adminEmail"/>
</table> </table>
</xsl:template> </xsl:template>
<xsl:template match="/oai:OAI-PMH/oai:Identify/oai:adminEmail"> <xsl:template match="/oai:OAI-PMH/oai:Identify/oai:adminEmail">
<tr><td class="key">Admin Email</td> <tr><td class="key">Admin Email</td>
<td class="value"><xsl:value-of select="."/></td></tr> <td class="value"><xsl:value-of select="."/></td></tr>
</xsl:template> </xsl:template>
<!-- <!--
GetRecord GetRecord
--> -->
<xsl:template match="oai:GetRecord"> <xsl:template match="oai:GetRecord">
<xsl:apply-templates select="oai:record" /> <xsl:apply-templates select="oai:record" />
</xsl:template> </xsl:template>
<!-- <!--
ListRecords ListRecords
--> -->
<xsl:template match="oai:ListRecords"> <xsl:template match="oai:ListRecords">
<xsl:apply-templates select="oai:record" /> <xsl:apply-templates select="oai:record" />
<xsl:apply-templates select="oai:resumptionToken" /> <xsl:apply-templates select="oai:resumptionToken" />
</xsl:template> </xsl:template>
<!-- <!--
ListIdentifiers ListIdentifiers
--> -->
<xsl:template match="oai:ListIdentifiers"> <xsl:template match="oai:ListIdentifiers">
<xsl:apply-templates select="oai:header" /> <xsl:apply-templates select="oai:header" />
<xsl:apply-templates select="oai:resumptionToken" /> <xsl:apply-templates select="oai:resumptionToken" />
</xsl:template> </xsl:template>
<!-- <!--
ListSets ListSets
--> -->
<xsl:template match="oai:ListSets"> <xsl:template match="oai:ListSets">
<xsl:apply-templates select="oai:set" /> <xsl:apply-templates select="oai:set" />
<xsl:apply-templates select="oai:resumptionToken" /> <xsl:apply-templates select="oai:resumptionToken" />
</xsl:template> </xsl:template>
<!-- <!--
ListMetadataFormats ListMetadataFormats
--> -->
<xsl:template match="oai:ListMetadataFormats"> <xsl:template match="oai:ListMetadataFormats">
<xsl:choose> <xsl:choose>
<xsl:when test="$identifier"> <xsl:when test="$identifier">
<p>This is a list of metadata formats available for the record "<xsl:value-of select='$identifier' />". Use these links to view the metadata: <xsl:apply-templates select="oai:metadataFormat/oai:metadataPrefix" /></p> <p>This is a list of metadata formats available for the record "<xsl:value-of select='$identifier' />". Use these links to view the metadata: <xsl:apply-templates select="oai:metadataFormat/oai:metadataPrefix" /></p>
</xsl:when> </xsl:when>
<xsl:otherwise> <xsl:otherwise>
<p>This is a list of metadata formats available from this repository.</p> <p>This is a list of metadata formats available from this repository.</p>
</xsl:otherwise> </xsl:otherwise>
</xsl:choose> </xsl:choose>
<xsl:apply-templates select="oai:metadataFormat" /> <xsl:apply-templates select="oai:metadataFormat" />
</xsl:template> </xsl:template>
<!-- <!--
Set Details Set Details
--> -->
<xsl:template match="oai:set"> <xsl:template match="oai:set">
<h2>Set</h2> <h2>Set</h2>
<table class="values"> <table class="values">
<tr><td class="key">Name</td> <tr><td class="key">Name</td>
<td class="value"><xsl:value-of select="oai:setName"/></td></tr> <td class="value"><xsl:value-of select="oai:setName"/></td></tr>
<xsl:apply-templates select="oai:setSpec" /> <xsl:apply-templates select="oai:setSpec" />
</table> </table>
</xsl:template> </xsl:template>
<xsl:template match="oai:setSpec"> <xsl:template match="oai:setSpec">
<tr><td class="key">setSpec</td> <tr><td class="key">setSpec</td>
<td class="value"><xsl:value-of select="."/> <td class="value"><xsl:value-of select="."/>
<xsl:text> </xsl:text><a class="link" href="?verb=ListIdentifiers&amp;metadataPrefix=oai_dc&amp;set={.}">Identifiers (OAI_DC)</a> <xsl:text> </xsl:text><a class="link" href="?verb=ListIdentifiers&amp;metadataPrefix=oai_dc&amp;set={.}">Identifiers (OAI_DC)</a>
<xsl:text> </xsl:text><a class="link" href="?verb=ListIdentifiers&amp;metadataPrefix=mets&amp;set={.}">Identifiers (METS)</a> <xsl:text> </xsl:text><a class="link" href="?verb=ListIdentifiers&amp;metadataPrefix=mets&amp;set={.}">Identifiers (METS)</a>
<xsl:text> </xsl:text><a class="link" href="?verb=ListIdentifiers&amp;metadataPrefix=epicur&amp;set={.}">Identifiers (EPICUR)</a> <xsl:text> </xsl:text><a class="link" href="?verb=ListIdentifiers&amp;metadataPrefix=epicur&amp;set={.}">Identifiers (EPICUR)</a>
<xsl:text> </xsl:text><a class="link" href="?verb=ListRecords&amp;metadataPrefix=oai_dc&amp;set={.}">Records (OAI_DC)</a> <xsl:text> </xsl:text><a class="link" href="?verb=ListRecords&amp;metadataPrefix=oai_dc&amp;set={.}">Records (OAI_DC)</a>
<xsl:text> </xsl:text><a class="link" href="?verb=ListRecords&amp;metadataPrefix=mets&amp;set={.}">Records (METS)</a> <xsl:text> </xsl:text><a class="link" href="?verb=ListRecords&amp;metadataPrefix=mets&amp;set={.}">Records (METS)</a>
<xsl:text> </xsl:text><a class="link" href="?verb=ListRecords&amp;metadataPrefix=epicur&amp;set={.}">Records (EPICUR)</a> <xsl:text> </xsl:text><a class="link" href="?verb=ListRecords&amp;metadataPrefix=epicur&amp;set={.}">Records (EPICUR)</a>
</td></tr> </td></tr>
</xsl:template> </xsl:template>
<!-- <!--
Metadata Format Details Metadata Format Details
--> -->
<xsl:template match="oai:metadataFormat"> <xsl:template match="oai:metadataFormat">
<h2>Metadata Format</h2> <h2>Metadata Format</h2>
<table class="values"> <table class="values">
<tr><td class="key">Prefix</td> <tr><td class="key">Prefix</td>
<td class="value"><a class="link" href="?verb=ListRecords&amp;metadataPrefix={oai:metadataPrefix}"><xsl:value-of select="oai:metadataPrefix"/></a></td></tr> <td class="value"><a class="link" href="?verb=ListRecords&amp;metadataPrefix={oai:metadataPrefix}"><xsl:value-of select="oai:metadataPrefix"/></a></td></tr>
<tr><td class="key">Namespace</td> <tr><td class="key">Namespace</td>
<td class="value"><xsl:value-of select="oai:metadataNamespace"/></td></tr> <td class="value"><xsl:value-of select="oai:metadataNamespace"/></td></tr>
<tr><td class="key">Schema</td> <tr><td class="key">Schema</td>
<td class="value"><a href="{oai:schema}"><xsl:value-of select="oai:schema"/></a></td></tr> <td class="value"><a href="{oai:schema}"><xsl:value-of select="oai:schema"/></a></td></tr>
</table> </table>
</xsl:template> </xsl:template>
<xsl:template match="oai:metadataPrefix"> <xsl:template match="oai:metadataPrefix">
<xsl:text> </xsl:text><a class="link" href="?verb=GetRecord&amp;metadataPrefix={.}&amp;identifier={$identifier}"><xsl:value-of select='.' /></a> <xsl:text> </xsl:text><a class="link" href="?verb=GetRecord&amp;metadataPrefix={.}&amp;identifier={$identifier}"><xsl:value-of select='.' /></a>
</xsl:template> </xsl:template>
<!-- <!--
Record Details Record Details
--> -->
<xsl:template match="oai:record"> <xsl:template match="oai:record">
<h2 class="oaiRecordTitle">OAI Record: <xsl:value-of select="oai:header/oai:identifier"/></h2> <h2 class="oaiRecordTitle">OAI Record: <xsl:value-of select="oai:header/oai:identifier"/></h2>
<div class="oaiRecord"> <div class="oaiRecord">
<xsl:apply-templates select="oai:header" /> <xsl:apply-templates select="oai:header" />
<xsl:apply-templates select="oai:metadata" /> <xsl:apply-templates select="oai:metadata" />
</div> </div>
</xsl:template> </xsl:template>
<xsl:template match="oai:header"> <xsl:template match="oai:header">
<h3>OAI Record Header</h3> <h3>OAI Record Header</h3>
<table class="values"> <table class="values">
<tr><td class="key">OAI Identifier</td> <tr><td class="key">OAI Identifier</td>
<td class="value"> <td class="value">
<xsl:value-of select="oai:identifier"/> <xsl:value-of select="oai:identifier"/>
<xsl:text> </xsl:text><a class="link" href="?verb=GetRecord&amp;metadataPrefix=oai_dc&amp;identifier={oai:identifier}">OAI_DC</a> <xsl:text> </xsl:text><a class="link" href="?verb=GetRecord&amp;metadataPrefix=oai_dc&amp;identifier={oai:identifier}">OAI_DC</a>
<xsl:text> </xsl:text><a class="link" href="?verb=GetRecord&amp;metadataPrefix=mets&amp;identifier={oai:identifier}">METS</a> <xsl:text> </xsl:text><a class="link" href="?verb=GetRecord&amp;metadataPrefix=mets&amp;identifier={oai:identifier}">METS</a>
<xsl:text> </xsl:text><a class="link" href="?verb=GetRecord&amp;metadataPrefix=epicur&amp;identifier={oai:identifier}">EPICUR</a> <xsl:text> </xsl:text><a class="link" href="?verb=GetRecord&amp;metadataPrefix=epicur&amp;identifier={oai:identifier}">EPICUR</a>
<xsl:text> </xsl:text><a class="link" href="?verb=ListMetadataFormats&amp;identifier={oai:identifier}">formats</a> <xsl:text> </xsl:text><a class="link" href="?verb=ListMetadataFormats&amp;identifier={oai:identifier}">formats</a>
</td></tr> </td></tr>
<tr><td class="key">Datestamp</td> <tr><td class="key">Datestamp</td>
<td class="value"><xsl:value-of select="oai:datestamp"/></td></tr> <td class="value"><xsl:value-of select="oai:datestamp"/></td></tr>
<xsl:apply-templates select="oai:setSpec" /> <xsl:apply-templates select="oai:setSpec" />
</table> </table>
<xsl:if test="@status='deleted'"> <xsl:if test="@status='deleted'">
<p>This record has been deleted.</p> <p>This record has been deleted.</p>
</xsl:if> </xsl:if>
</xsl:template> </xsl:template>
<xsl:template match="oai:metadata"> <xsl:template match="oai:metadata">
&#160; &#160;
<div class="metadata"> <div class="metadata">
<xsl:apply-templates select="*" /> <xsl:apply-templates select="*" />
</div> </div>
</xsl:template> </xsl:template>
<!-- <!--
Resumption Token Resumption Token
--> -->
<xsl:template match="oai:resumptionToken"> <xsl:template match="oai:resumptionToken">
<xsl:if test=". != ''"> <xsl:if test=". != ''">
<p>There are more results.</p> <p>There are more results.</p>
</xsl:if> </xsl:if>
<table class="values"> <table class="values">
<tr><td class="key">Submitted Records</td> <tr><td class="key">Submitted Records</td>
<td class="value"><xsl:value-of select="@cursor"/></td></tr> <td class="value"><xsl:value-of select="@cursor"/></td></tr>
<tr><td class="key">Total Records</td> <tr><td class="key">Total Records</td>
<td class="value"><xsl:value-of select="@completeListSize"/></td></tr> <td class="value"><xsl:value-of select="@completeListSize"/></td></tr>
<tr><td class="key">Expiration Datestamp</td> <tr><td class="key">Expiration Datestamp</td>
<td class="value"><xsl:value-of select="@expirationDate"/></td></tr> <td class="value"><xsl:value-of select="@expirationDate"/></td></tr>
<tr><td class="key">Resumption Token</td> <tr><td class="key">Resumption Token</td>
<td class="value"> <td class="value">
<xsl:if test=". != ''"> <xsl:if test=". != ''">
<a class="link" href="?verb={/oai:OAI-PMH/oai:request/@verb}&amp;resumptionToken={.}">Resume</a> <a class="link" href="?verb={/oai:OAI-PMH/oai:request/@verb}&amp;resumptionToken={.}">Resume</a>
</xsl:if> </xsl:if>
</td></tr> </td></tr>
</table> </table>
</xsl:template> </xsl:template>
<!-- <!--
Unknown Metadata Unknown Metadata
--> -->
<xsl:template match="oai:metadata/*" priority='-100'> <xsl:template match="oai:metadata/*" priority='-100'>
<h3>Unknown Metadata Format</h3> <h3>Unknown Metadata Format</h3>
<div class="xmlSource"> <div class="xmlSource">
<xsl:apply-templates select="." mode='xmlMarkup' /> <xsl:apply-templates select="." mode='xmlMarkup' />
</div> </div>
</xsl:template> </xsl:template>
<!-- <!--
DublinCore Metadata DublinCore Metadata
--> -->
<xsl:template match="oai_dc:dc" xmlns:oai_dc="http://www.openarchives.org/OAI/2.0/oai_dc/" > <xsl:template match="oai_dc:dc" xmlns:oai_dc="http://www.openarchives.org/OAI/2.0/oai_dc/" >
<div class="dcdata"> <div class="dcdata">
<h3>DublinCore Metadata</h3> <h3>DublinCore Metadata</h3>
<table class="dcdata"> <table class="dcdata">
<xsl:apply-templates select="*" /> <xsl:apply-templates select="*" />
</table> </table>
</div> </div>
</xsl:template> </xsl:template>
<xsl:template match="dc:title" xmlns:dc="http://purl.org/dc/elements/1.1/"> <xsl:template match="dc:title" xmlns:dc="http://purl.org/dc/elements/1.1/">
@ -456,22 +456,22 @@ p.intro {
<xsl:template match="dc:relation" xmlns:dc="http://purl.org/dc/elements/1.1/"> <xsl:template match="dc:relation" xmlns:dc="http://purl.org/dc/elements/1.1/">
<tr><td class="key">Relation</td><td class="value"> <tr><td class="key">Relation</td><td class="value">
<xsl:choose> <xsl:choose>
<xsl:when test='starts-with(.,"http")'> <xsl:when test='starts-with(.,"http")'>
<xsl:choose> <xsl:choose>
<xsl:when test='string-length(.) &gt; 50'> <xsl:when test='string-length(.) &gt; 50'>
<a class="link" href="{.}">URL</a> <a class="link" href="{.}">URL</a>
<i> URL not shown as it is very long.</i> <i> URL not shown as it is very long.</i>
</xsl:when> </xsl:when>
<xsl:otherwise> <xsl:otherwise>
<a href="{.}"><xsl:value-of select="."/></a> <a href="{.}"><xsl:value-of select="."/></a>
</xsl:otherwise> </xsl:otherwise>
</xsl:choose> </xsl:choose>
</xsl:when> </xsl:when>
<xsl:otherwise> <xsl:otherwise>
<xsl:value-of select="."/> <xsl:value-of select="."/>
</xsl:otherwise> </xsl:otherwise>
</xsl:choose> </xsl:choose>
</td></tr> </td></tr>
</xsl:template> </xsl:template>
@ -482,38 +482,38 @@ p.intro {
<tr><td class="key">Rights Management</td><td class="value"><xsl:value-of select="."/></td></tr></xsl:template> <tr><td class="key">Rights Management</td><td class="value"><xsl:value-of select="."/></td></tr></xsl:template>
<!-- <!--
EPICUR Metadata EPICUR Metadata
--> -->
<xsl:template match="epicur:epicur" xmlns:epicur="urn:nbn:de:1111-2004033116" > <xsl:template match="epicur:epicur" xmlns:epicur="urn:nbn:de:1111-2004033116" >
<div class="dcdata"> <div class="dcdata">
<h3>EPICUR Metadata</h3> <h3>EPICUR Metadata</h3>
<table class="dcdata"> <table class="dcdata">
<xsl:apply-templates select="*" /> <xsl:apply-templates select="*" />
</table> </table>
</div> </div>
</xsl:template> </xsl:template>
<xsl:template match="epicur:format" xmlns:epicur="urn:nbn:de:1111-2004033116" > <xsl:template match="epicur:format" xmlns:epicur="urn:nbn:de:1111-2004033116" >
<tr><td class="key">Format</td><td class="value"><xsl:value-of select="."/></td></tr> <tr><td class="key">Format</td><td class="value"><xsl:value-of select="."/></td></tr>
</xsl:template> </xsl:template>
<xsl:template match="epicur:identifier" xmlns:epicur="urn:nbn:de:1111-2004033116" > <xsl:template match="epicur:identifier" xmlns:epicur="urn:nbn:de:1111-2004033116" >
<tr><td class="key">Resource Identifier</td><td class="value"><xsl:value-of select="."/></td></tr> <tr><td class="key">Resource Identifier</td><td class="value"><xsl:value-of select="."/></td></tr>
</xsl:template> </xsl:template>
<!-- <!--
XML Pretty Maker XML Pretty Maker
--> -->
<xsl:template match="node()" mode='xmlMarkup'> <xsl:template match="node()" mode='xmlMarkup'>
<div class="xmlBlock"> <div class="xmlBlock">
&lt;<span class="xmlTagName"><xsl:value-of select='name(.)' /></span><xsl:apply-templates select="@*" mode='xmlMarkup'/>&gt;<xsl:apply-templates select="node()" mode='xmlMarkup' />&lt;/<span class="xmlTagName"><xsl:value-of select='name(.)' /></span>&gt; &lt;<span class="xmlTagName"><xsl:value-of select='name(.)' /></span><xsl:apply-templates select="@*" mode='xmlMarkup'/>&gt;<xsl:apply-templates select="node()" mode='xmlMarkup' />&lt;/<span class="xmlTagName"><xsl:value-of select='name(.)' /></span>&gt;
</div> </div>
</xsl:template> </xsl:template>
<xsl:template match="text()" mode='xmlMarkup'><span class="xmlText"><xsl:value-of select='.' /></span></xsl:template> <xsl:template match="text()" mode='xmlMarkup'><span class="xmlText"><xsl:value-of select='.' /></span></xsl:template>
<xsl:template match="@*" mode='xmlMarkup'> <xsl:template match="@*" mode='xmlMarkup'>
<xsl:text> </xsl:text><span class="xmlAttrName"><xsl:value-of select='name()' /></span>="<span class="xmlAttrValue"><xsl:value-of select='.' /></span>" <xsl:text> </xsl:text><span class="xmlAttrName"><xsl:value-of select='name()' /></span>="<span class="xmlAttrValue"><xsl:value-of select='.' /></span>"
</xsl:template> </xsl:template>
</xsl:stylesheet> </xsl:stylesheet>

View File

@ -24,7 +24,7 @@ class ext_update {
/** /**
* This holds the output ready to return * This holds the output ready to return
* *
* @var string * @var string
* @access protected * @access protected
*/ */
protected $content = ''; protected $content = '';