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
*
* @var array
* @var array
* @access protected
*/
protected $lastSearchedPhysicalPage = ['logicalPage' => NULL, 'physicalPage' => NULL];
@ -131,7 +131,7 @@ final class Document {
/**
* This holds the documents location
*
* @var string
* @var string
* @access protected
*/
protected $location = '';
@ -139,7 +139,7 @@ final class Document {
/**
* This holds the logical units
*
* @var array
* @var array
* @access protected
*/
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
*
* @var array
* @var array
* @access protected
*/
protected $metadataArray = [];
@ -156,7 +156,7 @@ final class Document {
* Is the metadata array loaded?
* @see $metadataArray
*
* @var boolean
* @var boolean
* @access protected
*/
protected $metadataArrayLoaded = FALSE;
@ -164,7 +164,7 @@ final class Document {
/**
* This holds the XML file's METS part as \SimpleXMLElement object
*
* @var \SimpleXMLElement
* @var \SimpleXMLElement
* @access protected
*/
protected $mets;
@ -172,7 +172,7 @@ final class Document {
/**
* The holds the total number of pages
*
* @var integer
* @var integer
* @access protected
*/
protected $numPages = 0;
@ -180,7 +180,7 @@ final class Document {
/**
* This holds the UID of the parent document or zero if not multi-volumed
*
* @var integer
* @var integer
* @access protected
*/
protected $parentId = 0;
@ -188,7 +188,7 @@ final class Document {
/**
* This holds the physical structure
*
* @var array
* @var array
* @access protected
*/
protected $physicalStructure = [];
@ -196,7 +196,7 @@ final class Document {
/**
* This holds the physical structure metadata
*
* @var array
* @var array
* @access protected
*/
protected $physicalStructureInfo = [];
@ -205,7 +205,7 @@ final class Document {
* Is the physical structure loaded?
* @see $physicalStructure
*
* @var boolean
* @var boolean
* @access protected
*/
protected $physicalStructureLoaded = FALSE;
@ -213,7 +213,7 @@ final class Document {
/**
* This holds the PID of the document or zero if not in database
*
* @var integer
* @var integer
* @access protected
*/
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
*
* @var array
* @var array
* @access protected
*/
protected $rawTextArray = [];
@ -229,7 +229,7 @@ final class Document {
/**
* Is the document instantiated successfully?
*
* @var boolean
* @var boolean
* @access protected
*/
protected $ready = FALSE;
@ -237,7 +237,7 @@ final class Document {
/**
* The METS file's record identifier
*
* @var string
* @var string
* @access protected
*/
protected $recordId;
@ -245,7 +245,7 @@ final class Document {
/**
* This holds the singleton object of the document
*
* @var array (\Kitodo\Dlf\Common\Document)
* @var array (\Kitodo\Dlf\Common\Document)
* @access protected
*/
protected static $registry = [];
@ -253,7 +253,7 @@ final class Document {
/**
* This holds the UID of the root document or zero if not multi-volumed
*
* @var integer
* @var integer
* @access protected
*/
protected $rootId = 0;
@ -262,7 +262,7 @@ final class Document {
* Is the root id loaded?
* @see $rootId
*
* @var boolean
* @var boolean
* @access protected
*/
protected $rootIdLoaded = FALSE;
@ -270,7 +270,7 @@ final class Document {
/**
* This holds the smLinks between logical and physical structMap
*
* @var array
* @var array
* @access protected
*/
protected $smLinks = ['l2p' => [], 'p2l' => []];
@ -279,7 +279,7 @@ final class Document {
* Are the smLinks loaded?
* @see $smLinks
*
* @var boolean
* @var boolean
* @access protected
*/
protected $smLinksLoaded = FALSE;
@ -287,7 +287,7 @@ final class Document {
/**
* This holds the logical structure
*
* @var array
* @var array
* @access protected
*/
protected $tableOfContents = [];
@ -296,7 +296,7 @@ final class Document {
* Is the table of contents loaded?
* @see $tableOfContents
*
* @var boolean
* @var boolean
* @access protected
*/
protected $tableOfContentsLoaded = FALSE;
@ -304,7 +304,7 @@ final class Document {
/**
* This holds the document's thumbnail location.
*
* @var string
* @var string
* @access protected
*/
protected $thumbnail = '';
@ -313,7 +313,7 @@ final class Document {
* Is the document's thumbnail location loaded?
* @see $thumbnail
*
* @var boolean
* @var boolean
* @access protected
*/
protected $thumbnailLoaded = FALSE;
@ -321,7 +321,7 @@ final class Document {
/**
* This holds the toplevel structure's @ID
*
* @var string
* @var string
* @access protected
*/
protected $toplevelId = '';
@ -329,7 +329,7 @@ final class Document {
/**
* This holds the UID or the URL of the document
*
* @var mixed
* @var mixed
* @access protected
*/
protected $uid = 0;
@ -337,7 +337,7 @@ final class Document {
/**
* This holds the whole XML file as \SimpleXMLElement object
*
* @var \SimpleXMLElement
* @var \SimpleXMLElement
* @access protected
*/
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
* @see \Countable
*
* @var integer
* @var integer
* @access protected
*/
protected $count = 0;
@ -34,7 +34,7 @@ class DocumentList implements \ArrayAccess, \Countable, \Iterator, \TYPO3\CMS\Co
* This holds the list entries in sorted order
* @see \ArrayAccess
*
* @var array
* @var array
* @access protected
*/
protected $elements = [];
@ -42,7 +42,7 @@ class DocumentList implements \ArrayAccess, \Countable, \Iterator, \TYPO3\CMS\Co
/**
* This holds the list's metadata
*
* @var array
* @var array
* @access protected
*/
protected $metadata = [];
@ -51,7 +51,7 @@ class DocumentList implements \ArrayAccess, \Countable, \Iterator, \TYPO3\CMS\Co
* This holds the current list position
* @see \Iterator
*
* @var integer
* @var integer
* @access protected
*/
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
*
* @var array
* @var array
* @access protected
*/
protected $records = [];
@ -67,7 +67,7 @@ class DocumentList implements \ArrayAccess, \Countable, \Iterator, \TYPO3\CMS\Co
/**
* Instance of \Kitodo\Dlf\Common\Solr class
*
* @var \Kitodo\Dlf\Common\Solr
* @var \Kitodo\Dlf\Common\Solr
* @access protected
*/
protected $solr;
@ -75,7 +75,7 @@ class DocumentList implements \ArrayAccess, \Countable, \Iterator, \TYPO3\CMS\Co
/**
* This holds the Solr metadata configuration
*
* @var array
* @var array
* @access protected
*/
protected $solrConfig = [];

View File

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

View File

@ -24,7 +24,7 @@ class Helper {
/**
* The extension key
*
* @var string
* @var string
* @access public
*/
public static $extKey = 'dlf';
@ -32,7 +32,7 @@ class Helper {
/**
* The locallang array for flash messages
*
* @var array
* @var array
* @access protected
*/
protected static $messages = [];
@ -53,7 +53,7 @@ class Helper {
/**
* 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
*
@ -479,7 +479,7 @@ class Helper {
/**
* Get the URN of an object
* @see http://www.persistent-identifier.de/?link=316
* @see http://www.persistent-identifier.de/?link=316
*
* @access public
*

View File

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

View File

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

View File

@ -26,7 +26,7 @@ class ConfigurationForm {
/**
* This holds the current configuration
*
* @var array
* @var array
* @access protected
*/
protected $conf = [];
@ -34,7 +34,7 @@ class ConfigurationForm {
/**
* This holds the output ready to return
*
* @var string
* @var string
* @access protected
*/
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
*
* @var array
* @var array
* @access protected
*/
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>';
// Add player configuration.
$output[] = '
<style>
#tx-dlf-audio { width: 100px; height: 100px };
</style>
<script id="tx-dlf-audioplayer-initViewer" type="text/javascript">
$(document).ready(function() {
AudioPlayer = new dlfAudioPlayer({
audio: {
mimeType: "' . $this->audio['mimetype'].'",
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"
});
});
</script>';
<style>#tx-dlf-audio { width: 100px; height: 100px; }</style>
<script id="tx-dlf-audioplayer-initViewer" type="text/javascript">
$(document).ready(function() {
AudioPlayer = new dlfAudioPlayer({
audio: {
mimeType: "'.$this->audio['mimetype'].'",
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"
});
});
</script>';
return implode("\n", $output);
}

View File

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

View File

@ -78,7 +78,7 @@ class Calendar extends \Kitodo\Dlf\Common\AbstractPlugin {
'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 = [];
foreach ($issues as $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')),
'###DAYSAT_NAME###' => strftime('%a', strtotime('last Saturday')),
'###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.
$subWeekPartContent = '';

View File

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

View File

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

View File

@ -29,7 +29,7 @@ class Metadata extends \Kitodo\Dlf\Common\AbstractPlugin {
/**
* This holds the hook objects
*
* @var array
* @var array
* @access protected
*/
protected $hookObjects = [];
@ -151,7 +151,7 @@ class Metadata extends \Kitodo\Dlf\Common\AbstractPlugin {
if ($resArray) {
// get correct language uid for translated realurl link
$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']) {
$metaList[$resArray['index_name']] = [
'wrap' => $resArray['wrap'],

View File

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

View File

@ -25,7 +25,7 @@ class PageView extends \Kitodo\Dlf\Common\AbstractPlugin {
/**
* Holds the controls to add to the map
*
* @var array
* @var array
* @access protected
*/
protected $controls = [];
@ -33,7 +33,7 @@ class PageView extends \Kitodo\Dlf\Common\AbstractPlugin {
/**
* Holds the current images' URLs and MIME types
*
* @var array
* @var array
* @access protected
*/
protected $images = [];
@ -41,7 +41,7 @@ class PageView extends \Kitodo\Dlf\Common\AbstractPlugin {
/**
* Holds the current fulltexts' URLs
*
* @var array
* @var array
* @access protected
*/
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>';
// Add viewer configuration.
$output[] = '
<script id="tx-dlf-pageview-initViewer" type="text/javascript">
window.onload = function() {
if (dlfUtils.exists(dlfViewer)) {
tx_dlf_viewer = new dlfViewer({
controls: ["'.implode('", "', $this->controls).'"],
div: "'.$this->conf['elementId'].'",
images: '.json_encode($this->images).',
fulltexts: '.json_encode($this->fulltexts).',
useInternalProxy: '.($this->conf['useInternalProxy'] ? 1 : 0).'
})
}
}
</script>';
<script id="tx-dlf-pageview-initViewer" type="text/javascript">
$(document).ready(function() {
if (dlfUtils.exists(dlfViewer)) {
tx_dlf_viewer = new dlfViewer({
controls: ["'.implode('", "', $this->controls).'"],
div: "'.$this->conf['elementId'].'",
images: '.json_encode($this->images).',
fulltexts: '.json_encode($this->fulltexts).',
useInternalProxy: '.($this->conf['useInternalProxy'] ? 1 : 0).'
});
}
});
</script>';
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 .= '</form>';
$output .= '<script>';
$output .= '
$(document).ready(function() {
$("#submitBasketForm").click(function() {
$("#addToBasketForm").submit();
});
});';
$output .= '$(document).ready(function() { $("#submitBasketForm").click(function() { $("#addToBasketForm").submit(); }); });';
$output .= '</script>';
$markerArray['###BASKETBUTTON###'] = $output;
} 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
*
* @var array
* @var array
* @access protected
*/
protected $activeEntries = [];

View File

@ -9,12 +9,12 @@ Installation instructions
See also: https://wiki.apache.org/solr/SolrTomcat
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.
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
-------------------

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 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
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.
-->
<schema name="dlf" version="3.0">
<types>
<fieldType name="string" class="solr.StrField" sortMissingLast="true" />
<fieldType name="boolean" class="solr.BoolField" sortMissingLast="true" />
<fieldType name="int" class="solr.IntPointField" positionIncrementGap="0"/>
<!-- Use dates of the form 1995-12-31Z23:59:49Z for this field. -->
<fieldType name="date" class="solr.DatePointField" positionIncrementGap="0"/>
<fieldType name="standard" class="solr.TextField" positionIncrementGap="100">
<analyzer>
<tokenizer class="solr.StandardTokenizerFactory" />
<filter class="solr.StandardFilterFactory" />
<filter class="solr.LowerCaseFilterFactory" />
</analyzer>
</fieldType>
<fieldType name="autocomplete" class="solr.TextField" positionIncrementGap="100">
<analyzer type="index">
<tokenizer class="solr.KeywordTokenizerFactory" />
<filter class="solr.LowerCaseFilterFactory" />
</analyzer>
<analyzer type="query">
<tokenizer class="solr.WhitespaceTokenizerFactory" />
<filter class="solr.LowerCaseFilterFactory" />
</analyzer>
</fieldType>
<fieldType name="fulltext" class="solr.TextField" positionIncrementGap="100">
<analyzer type="index">
<tokenizer class="solr.WhitespaceTokenizerFactory" />
<filter class="solr.FlattenGraphFilterFactory"/>
<filter class="solr.StopFilterFactory" ignoreCase="true" words="stopwords.txt" />
<!-- 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.ReversedWildcardFilterFactory" withOriginal="true" maxPosAsterisk="3" maxPosQuestion="2" maxFractionAsterisk="0.33" />
<filter class="solr.LowerCaseFilterFactory" />
<filter class="solr.TrimFilterFactory" />
<filter class="solr.SnowballPorterFilterFactory" language="German" protected="protwords.txt" />
<!-- <filter class="solr.GermanStemFilterFactory" /> -->
<filter class="solr.RemoveDuplicatesTokenFilterFactory" />
<!-- <filter class="solr.PatternReplaceFilterFactory" pattern="([^a-z])" replacement="" replace="all" /> -->
</analyzer>
<analyzer type="query">
<tokenizer class="solr.WhitespaceTokenizerFactory" />
<filter class="solr.SynonymGraphFilterFactory" synonyms="synonyms.txt" ignoreCase="true" expand="true" />
<filter class="solr.StopFilterFactory" ignoreCase="true" words="stopwords.txt" />
<!-- 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.LowerCaseFilterFactory" />
<filter class="solr.TrimFilterFactory" />
<filter class="solr.SnowballPorterFilterFactory" language="German" protected="protwords.txt" />
<!-- <filter class="solr.GermanStemFilterFactory" /> -->
<filter class="solr.RemoveDuplicatesTokenFilterFactory" />
<!-- <filter class="solr.PatternReplaceFilterFactory" pattern="([^a-z])" replacement="" replace="all" /> -->
</analyzer>
</fieldType>
</types>
<types>
<fieldType name="string" class="solr.StrField" sortMissingLast="true" />
<fieldType name="boolean" class="solr.BoolField" sortMissingLast="true" />
<fieldType name="int" class="solr.IntPointField" positionIncrementGap="0"/>
<!-- Use dates of the form 1995-12-31Z23:59:49Z for this field. -->
<fieldType name="date" class="solr.DatePointField" positionIncrementGap="0"/>
<fieldType name="standard" class="solr.TextField" positionIncrementGap="100">
<analyzer>
<tokenizer class="solr.StandardTokenizerFactory" />
<filter class="solr.StandardFilterFactory" />
<filter class="solr.LowerCaseFilterFactory" />
</analyzer>
</fieldType>
<fieldType name="autocomplete" class="solr.TextField" positionIncrementGap="100">
<analyzer type="index">
<tokenizer class="solr.KeywordTokenizerFactory" />
<filter class="solr.LowerCaseFilterFactory" />
</analyzer>
<analyzer type="query">
<tokenizer class="solr.WhitespaceTokenizerFactory" />
<filter class="solr.LowerCaseFilterFactory" />
</analyzer>
</fieldType>
<fieldType name="fulltext" class="solr.TextField" positionIncrementGap="100">
<analyzer type="index">
<tokenizer class="solr.WhitespaceTokenizerFactory" />
<filter class="solr.FlattenGraphFilterFactory"/>
<filter class="solr.StopFilterFactory" ignoreCase="true" words="stopwords.txt" />
<!-- 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.ReversedWildcardFilterFactory" withOriginal="true" maxPosAsterisk="3" maxPosQuestion="2" maxFractionAsterisk="0.33" />
<filter class="solr.LowerCaseFilterFactory" />
<filter class="solr.TrimFilterFactory" />
<filter class="solr.SnowballPorterFilterFactory" language="German" protected="protwords.txt" />
<!-- <filter class="solr.GermanStemFilterFactory" /> -->
<filter class="solr.RemoveDuplicatesTokenFilterFactory" />
<!-- <filter class="solr.PatternReplaceFilterFactory" pattern="([^a-z])" replacement="" replace="all" /> -->
</analyzer>
<analyzer type="query">
<tokenizer class="solr.WhitespaceTokenizerFactory" />
<filter class="solr.SynonymGraphFilterFactory" synonyms="synonyms.txt" ignoreCase="true" expand="true" />
<filter class="solr.StopFilterFactory" ignoreCase="true" words="stopwords.txt" />
<!-- 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.LowerCaseFilterFactory" />
<filter class="solr.TrimFilterFactory" />
<filter class="solr.SnowballPorterFilterFactory" language="German" protected="protwords.txt" />
<!-- <filter class="solr.GermanStemFilterFactory" /> -->
<filter class="solr.RemoveDuplicatesTokenFilterFactory" />
<!-- <filter class="solr.PatternReplaceFilterFactory" pattern="([^a-z])" replacement="" replace="all" /> -->
</analyzer>
</fieldType>
</types>
<fields>
<!--
Valid attributes for fields:
name: mandatory - the name for the field
type: mandatory - the name of a previously defined type from the
<types> section
indexed: true if this field should be indexed (searchable or sortable)
stored: true if this field should be retrievable
multiValued: true if this field may contain multiple values per document
omitNorms: (expert) set to true to omit the norms associated with
this field (this disables length normalization and index-time
boosting for the field, and saves some memory). Only full-text
fields or fields that need an index-time boost need norms.
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.
When using MoreLikeThis, fields used for similarity should be
stored for best performance.
termPositions: Store position information with the term vector.
This will increase storage costs.
termOffsets: Store offset information with the term vector. This
will increase storage costs.
default: a value that should be used if no value is specified
when adding a document.
required: true if this field is mandatory
-->
<fields>
<!--
Valid attributes for fields:
name: mandatory - the name for the field
type: mandatory - the name of a previously defined type from the
<types> section
indexed: true if this field should be indexed (searchable or sortable)
stored: true if this field should be retrievable
multiValued: true if this field may contain multiple values per document
omitNorms: (expert) set to true to omit the norms associated with
this field (this disables length normalization and index-time
boosting for the field, and saves some memory). Only full-text
fields or fields that need an index-time boost need norms.
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.
When using MoreLikeThis, fields used for similarity should be
stored for best performance.
termPositions: Store position information with the term vector.
This will increase storage costs.
termOffsets: Store offset information with the term vector. This
will increase storage costs.
default: a value that should be used if no value is specified
when adding a document.
required: true if this field is mandatory
-->
<!-- The mandatory and special fields are defined here, all other fields are dynamic fields. -->
<!-- Unique identifier for the document in the index. -->
<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. -->
<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. -->
<field name="pid" type="int" indexed="true" stored="false" required="true" default="0" />
<!-- Image number where this document starts. -->
<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! -->
<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! -->
<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! -->
<field name="sid" type="string" indexed="false" stored="true" required="true" default="" />
<!-- 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" />
<!-- Type of document (eg. monograph, chapter, etc.) -->
<field name="type" type="string" indexed="true" stored="true" required="true" default="" />
<!-- Next two fields are mandatory for identifying documents. -->
<field name="title" 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. -->
<field name="thumbnail" type="string" indexed="false" stored="true" multiValued="false" default="" />
<!-- CatchAll field. See <copyField> below. -->
<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" />
<!-- Autocomplete field for search form. -->
<field name="autocomplete" type="autocomplete" indexed="true" stored="false" multiValued="true" />
<!-- Fulltext field for OCR results. -->
<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). -->
<field name="record_id" type="string" indexed="true" stored="true" required="true" multiValued="false" default="" />
<!-- Permanent URL of the document (required for EPICUR output). -->
<field name="purl" type="string" indexed="true" stored="true" required="true" multiValued="false" default="" />
<!-- URN of the Document (required for EPICUR output). -->
<field name="urn" type="string" indexed="true" stored="true" required="true" multiValued="false" default="" />
<!-- Location of METS XML (required for METS output). -->
<field name="location" type="string" indexed="true" stored="true" required="true" multiValued="false" default="" />
<!-- Associated collection(s) of the document. -->
<field name="collection" type="string" indexed="true" stored="true" required="true" multiValued="true" default="" />
<!-- The mandatory and special fields are defined here, all other fields are dynamic fields. -->
<!-- Unique identifier for the document in the index. -->
<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. -->
<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. -->
<field name="pid" type="int" indexed="true" stored="false" required="true" default="0" />
<!-- Image number where this document starts. -->
<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! -->
<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! -->
<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! -->
<field name="sid" type="string" indexed="false" stored="true" required="true" default="" />
<!-- 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" />
<!-- Type of document (eg. monograph, chapter, etc.) -->
<field name="type" type="string" indexed="true" stored="true" required="true" default="" />
<!-- Next two fields are mandatory for identifying documents. -->
<field name="title" 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. -->
<field name="thumbnail" type="string" indexed="false" stored="true" multiValued="false" default="" />
<!-- CatchAll field. See <copyField> below. -->
<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" />
<!-- Autocomplete field for search form. -->
<field name="autocomplete" type="autocomplete" indexed="true" stored="false" multiValued="true" />
<!-- Fulltext field for OCR results. -->
<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). -->
<field name="record_id" type="string" indexed="true" stored="true" required="true" multiValued="false" default="" />
<!-- Permanent URL of the document (required for EPICUR output). -->
<field name="purl" type="string" indexed="true" stored="true" required="true" multiValued="false" default="" />
<!-- URN of the Document (required for EPICUR output). -->
<field name="urn" type="string" indexed="true" stored="true" required="true" multiValued="false" default="" />
<!-- Location of METS XML (required for METS output). -->
<field name="location" type="string" indexed="true" stored="true" required="true" multiValued="false" default="" />
<!-- Associated collection(s) of the document. -->
<field name="collection" type="string" indexed="true" stored="true" required="true" multiValued="true" default="" />
<!--
The following dynamic fields define all possible field variants.
The mapping between metadata fields and index fields is defined in TYPO3.
-->
<!-- tokenized, stored, indexed -->
<dynamicField name="*_tsi" type="standard" stored="true" indexed="true" multiValued="true" />
<!-- tokenized, stored, unindexed -->
<dynamicField name="*_tsu" type="standard" stored="true" indexed="false" multiValued="true" />
<!-- tokenized, unstored, indexed -->
<dynamicField name="*_tui" type="standard" stored="false" indexed="true" multiValued="true" />
<!-- tokenized, unstored, unindexed (this is ignored by Lucene) -->
<dynamicField name="*_tuu" type="standard" stored="false" indexed="false" multiValued="true" />
<!-- untokenized, stored, indexed -->
<dynamicField name="*_usi" type="string" stored="true" indexed="true" multiValued="true" />
<!-- untokenized, stored, unindexed -->
<dynamicField name="*_usu" type="string" stored="true" indexed="false" multiValued="true" />
<!-- untokenized, unstored, indexed -->
<dynamicField name="*_uui" type="string" stored="false" indexed="true" multiValued="true" />
<!-- untokenized, unstored, unindexed (this is ignored by Lucene) -->
<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. -->
<dynamicField name="*_faceting" type="string" stored="false" indexed="true" multiValued="true" />
<dynamicField name="*_sorting" type="standard" stored="true" indexed="true" multiValued="false" />
</fields>
<!--
The following dynamic fields define all possible field variants.
The mapping between metadata fields and index fields is defined in TYPO3.
-->
<!-- tokenized, stored, indexed -->
<dynamicField name="*_tsi" type="standard" stored="true" indexed="true" multiValued="true" />
<!-- tokenized, stored, unindexed -->
<dynamicField name="*_tsu" type="standard" stored="true" indexed="false" multiValued="true" />
<!-- tokenized, unstored, indexed -->
<dynamicField name="*_tui" type="standard" stored="false" indexed="true" multiValued="true" />
<!-- tokenized, unstored, unindexed (this is ignored by Lucene) -->
<dynamicField name="*_tuu" type="standard" stored="false" indexed="false" multiValued="true" />
<!-- untokenized, stored, indexed -->
<dynamicField name="*_usi" type="string" stored="true" indexed="true" multiValued="true" />
<!-- untokenized, stored, unindexed -->
<dynamicField name="*_usu" type="string" stored="true" indexed="false" multiValued="true" />
<!-- untokenized, unstored, indexed -->
<dynamicField name="*_uui" type="string" stored="false" indexed="true" multiValued="true" />
<!-- untokenized, unstored, unindexed (this is ignored by Lucene) -->
<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. -->
<dynamicField name="*_faceting" type="string" stored="false" indexed="true" multiValued="true" />
<dynamicField name="*_sorting" type="standard" stored="true" indexed="true" multiValued="false" />
</fields>
<uniqueKey>id</uniqueKey>
<uniqueKey>id</uniqueKey>
<copyField source="*_tsi" dest="default" />
<copyField source="*_tui" dest="default" />
<copyField source="*_usi" dest="default" />
<copyField source="*_uui" dest="default" />
<copyField source="*_tsi" dest="default" />
<copyField source="*_tui" dest="default" />
<copyField source="*_usi" dest="default" />
<copyField source="*_uui" dest="default" />
</schema>

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -9,69 +9,69 @@
* LICENSE.txt file that was distributed with this source code.
-->
<T3DataStructure>
<meta>
<langDisable>1</langDisable>
</meta>
<sheets>
<sDEF>
<ROOT>
<TCEforms>
<sheetTitle>LLL:EXT:dlf/Resources/Private/Language/Statistics.xml:tt_content.pi_flexform.sheet_general</sheetTitle>
</TCEforms>
<type>array</type>
<el>
<pages>
<TCEforms>
<onChange>reload</onChange>
<exclude>1</exclude>
<label>LLL:EXT:lang/locallang_general.xml:LGL.startingpoint</label>
<config>
<type>group</type>
<internal_type>db</internal_type>
<allowed>pages</allowed>
<size>1</size>
<maxitems>1</maxitems>
<minitems>1</minitems>
<show_thumbs>1</show_thumbs>
<wizards>
<suggest>
<type>suggest</type>
</suggest>
</wizards>
</config>
</TCEforms>
</pages>
<collections>
<TCEforms>
<displayCond>FIELD:pages:REQ:true</displayCond>
<exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/Statistics.xml:tt_content.pi_flexform.collections</label>
<config>
<type>select</type>
<items type="array"></items>
<itemsProcFunc>Kitodo\\Dlf\\Hooks\\FormEngine->itemsProcFunc_collectionList</itemsProcFunc>
<size>5</size>
<autoSizeMax>15</autoSizeMax>
<maxitems>1024</maxitems>
<minitems>0</minitems>
</config>
</TCEforms>
</collections>
<description>
<TCEforms>
<exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/Statistics.xml:tt_content.pi_flexform.description</label>
<config>
<type>text</type>
<cols>30</cols>
<rows>10</rows>
<wrap>virtual</wrap>
</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>
</TCEforms>
</description>
</el>
</ROOT>
</sDEF>
</sheets>
<meta>
<langDisable>1</langDisable>
</meta>
<sheets>
<sDEF>
<ROOT>
<TCEforms>
<sheetTitle>LLL:EXT:dlf/Resources/Private/Language/Statistics.xml:tt_content.pi_flexform.sheet_general</sheetTitle>
</TCEforms>
<type>array</type>
<el>
<pages>
<TCEforms>
<onChange>reload</onChange>
<exclude>1</exclude>
<label>LLL:EXT:lang/locallang_general.xml:LGL.startingpoint</label>
<config>
<type>group</type>
<internal_type>db</internal_type>
<allowed>pages</allowed>
<size>1</size>
<maxitems>1</maxitems>
<minitems>1</minitems>
<show_thumbs>1</show_thumbs>
<wizards>
<suggest>
<type>suggest</type>
</suggest>
</wizards>
</config>
</TCEforms>
</pages>
<collections>
<TCEforms>
<displayCond>FIELD:pages:REQ:true</displayCond>
<exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/Statistics.xml:tt_content.pi_flexform.collections</label>
<config>
<type>select</type>
<items type="array"></items>
<itemsProcFunc>Kitodo\\Dlf\\Hooks\\FormEngine->itemsProcFunc_collectionList</itemsProcFunc>
<size>5</size>
<autoSizeMax>15</autoSizeMax>
<maxitems>1024</maxitems>
<minitems>0</minitems>
</config>
</TCEforms>
</collections>
<description>
<TCEforms>
<exclude>1</exclude>
<label>LLL:EXT:dlf/Resources/Private/Language/Statistics.xml:tt_content.pi_flexform.description</label>
<config>
<type>text</type>
<cols>30</cols>
<rows>10</rows>
<wrap>virtual</wrap>
</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>
</TCEforms>
</description>
</el>
</ROOT>
</sDEF>
</sheets>
</T3DataStructure>

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -17,15 +17,15 @@ return [
'crdate' => 'crdate',
'cruser_id' => 'cruser_id',
'default_sortby' => 'ORDER BY title_sorting',
'delete' => 'deleted',
'delete' => 'deleted',
'enablecolumns' => [
'disabled' => 'hidden',
'starttime' => 'starttime',
'endtime' => 'endtime',
'fe_group' => 'fe_group',
],
'iconfile' => 'EXT:dlf/Resources/Public/Icons/txdlfdocuments.png',
'rootLevel' => 0,
'iconfile' => 'EXT:dlf/Resources/Public/Icons/txdlfdocuments.png',
'rootLevel' => 0,
'dividers2tabs' => 2,
'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',
'cruser_id' => 'cruser_id',
'default_sortby' => 'ORDER BY type',
'delete' => 'deleted',
'iconfile' => 'EXT:dlf/Resources/Public/Icons/txdlfformats.png',
'rootLevel' => 1,
'delete' => 'deleted',
'iconfile' => 'EXT:dlf/Resources/Public/Icons/txdlfformats.png',
'rootLevel' => 1,
'dividers2tabs' => 2,
'searchFields' => 'type,class',
],

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -13,8 +13,8 @@ System Setup
============
.. contents::
:local:
:depth: 2
:local:
:depth: 2
@ -48,10 +48,10 @@ behaviour before TYPO3 6.x.
The install tool writes this configuration to typo3conf/LocalConfiguration.php::
'FE' => [
'pageNotFoundOnCHashError' => '0',
'pageNotFound_handling' => '',
],
'FE' => [
'pageNotFoundOnCHashError' => '0',
'pageNotFound_handling' => '',
],
.. _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:
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.
Download Solr from http://lucene.apache.org/solr/.
Other versions since 5.0 should be possible but are not tested.
2. Copy the lib/ApacheSolr/configsets/dlf to $SOLR_HOME/configsets/dlf.
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
The documentation is available here:
https://lucene.apache.org/solr/guide/7_4/basic-authentication-plugin.html
.. _configuration-typoscript:

View File

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

View File

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

View File

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

View File

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

View File

@ -9,62 +9,62 @@
* LICENSE.txt file that was distributed with this source code.
-->
<T3locallang>
<meta type="array">
<type>module</type>
<description>Language labels for plugin Basket</description>
</meta>
<data 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.targetBasket">Target page (with "DLF: Basket" plugin)</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.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.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.preGeneration">Send ajax request for pdf pre generation</label>
<label index="mailSubject">Kitodo.Presentation - Document</label>
<label index="mailBody">The following documents are sent to you by Kitodo.Presentation:</label>
<label index="basket">Basket</label>
<label index="remove">Remove</label>
<label index="cutout">Cutout</label>
<label index="page">Page</label>
<label index="open">Open</label>
<label index="download">Download</label>
<label index="print">Print</label>
<label index="chooseAction">Choose an action</label>
<label index="choosePrinter">Choose a printer</label>
<label index="chooseMail">Choose a mail</label>
<label index="noTitle">No title</label>
<label index="count">%d Entries</label>
<label index="goBasket">Go to basket</label>
</languageKey>
<languageKey index="de" type="array">
<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.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.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.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.preGeneration">Ajax Request verschicken, um PDF vorzeitig zu generieren</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="basket">Warenkorb</label>
<label index="remove">Entfernen</label>
<label index="cutout">Ausschnitt</label>
<label index="page">Seite</label>
<label index="open">Öffnen</label>
<label index="download">Herunterladen</label>
<label index="print">Drucken</label>
<label index="chooseAction">Aktion auswählen</label>
<label index="choosePrinter">Drucker auswählen</label>
<label index="chooseMail">E-Mail Empfänger auswählen</label>
<label index="noTitle">Kein Titel vorhanden</label>
<label index="count">%d Einträge</label>
<label index="goBasket">Zum Warenkorb</label>
</languageKey>
</data>
<meta type="array">
<type>module</type>
<description>Language labels for plugin Basket</description>
</meta>
<data 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.targetBasket">Target page (with "DLF: Basket" plugin)</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.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.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.preGeneration">Send ajax request for pdf pre generation</label>
<label index="mailSubject">Kitodo.Presentation - Document</label>
<label index="mailBody">The following documents are sent to you by Kitodo.Presentation:</label>
<label index="basket">Basket</label>
<label index="remove">Remove</label>
<label index="cutout">Cutout</label>
<label index="page">Page</label>
<label index="open">Open</label>
<label index="download">Download</label>
<label index="print">Print</label>
<label index="chooseAction">Choose an action</label>
<label index="choosePrinter">Choose a printer</label>
<label index="chooseMail">Choose a mail</label>
<label index="noTitle">No title</label>
<label index="count">%d Entries</label>
<label index="goBasket">Go to basket</label>
</languageKey>
<languageKey index="de" type="array">
<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.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.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.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.preGeneration">Ajax Request verschicken, um PDF vorzeitig zu generieren</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="basket">Warenkorb</label>
<label index="remove">Entfernen</label>
<label index="cutout">Ausschnitt</label>
<label index="page">Seite</label>
<label index="open">Öffnen</label>
<label index="download">Herunterladen</label>
<label index="print">Drucken</label>
<label index="chooseAction">Aktion auswählen</label>
<label index="choosePrinter">Drucker auswählen</label>
<label index="chooseMail">E-Mail Empfänger auswählen</label>
<label index="noTitle">Kein Titel vorhanden</label>
<label index="count">%d Einträge</label>
<label index="goBasket">Zum Warenkorb</label>
</languageKey>
</data>
</T3locallang>

View File

@ -9,49 +9,49 @@
* LICENSE.txt file that was distributed with this source code.
-->
<T3locallang>
<meta type="array">
<type>module</type>
<description>Language labels for plugin Collection</description>
</meta>
<data type="array">
<languageKey index="default" type="array">
<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.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.none">no</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.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.targetFeed">Target page (with "DLF: Feeds" plugin)</label>
<label index="tt_content.pi_flexform.templateFile">Template file</label>
<label index="tt_content.pi_flexform.solrcore">Solr Core</label>
<label index="title"> title</label>
<label index="titles"> titles</label>
<label index="volume"> volume</label>
<label index="volumes"> volumes</label>
<label index="feedAlt">RSS feed</label>
<label index="feedTitle">Subscribe to the RSS feed of this collection!</label>
</languageKey>
<languageKey index="de" type="array">
<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.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.exclusive">exklusiv</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.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.templateFile">HTML-Template</label>
<label index="tt_content.pi_flexform.solrcore">Solr Kern</label>
<label index="title"> Titel</label>
<label index="titles"> Titel</label>
<label index="volume"> Band</label>
<label index="volumes"> Bände</label>
<label index="feedAlt">RSS-Feed</label>
<label index="feedTitle">Abonnieren Sie den RSS-Feed dieser Kollektion!</label>
</languageKey>
</data>
<meta type="array">
<type>module</type>
<description>Language labels for plugin Collection</description>
</meta>
<data type="array">
<languageKey index="default" type="array">
<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.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.none">no</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.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.targetFeed">Target page (with "DLF: Feeds" plugin)</label>
<label index="tt_content.pi_flexform.templateFile">Template file</label>
<label index="tt_content.pi_flexform.solrcore">Solr Core</label>
<label index="title"> title</label>
<label index="titles"> titles</label>
<label index="volume"> volume</label>
<label index="volumes"> volumes</label>
<label index="feedAlt">RSS feed</label>
<label index="feedTitle">Subscribe to the RSS feed of this collection!</label>
</languageKey>
<languageKey index="de" type="array">
<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.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.exclusive">exklusiv</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.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.templateFile">HTML-Template</label>
<label index="tt_content.pi_flexform.solrcore">Solr Kern</label>
<label index="title"> Titel</label>
<label index="titles"> Titel</label>
<label index="volume"> Band</label>
<label index="volumes"> Bände</label>
<label index="feedAlt">RSS-Feed</label>
<label index="feedTitle">Abonnieren Sie den RSS-Feed dieser Kollektion!</label>
</languageKey>
</data>
</T3locallang>

View File

@ -9,40 +9,40 @@
* LICENSE.txt file that was distributed with this source code.
-->
<T3locallang>
<meta type="array">
<type>module</type>
<description>Language labels for plugin Feeds</description>
</meta>
<data type="array">
<languageKey index="default" type="array">
<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.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.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.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.description">Feed's description</label>
<label index="new">NEW:</label>
<label index="update">UPDATE:</label>
<label index="noTitle">[no title]</label>
<label index="volume">Volume</label>
</languageKey>
<languageKey index="de" type="array">
<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.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.limit">Anzahl der Dokumente</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.title">Titel des Feeds</label>
<label index="tt_content.pi_flexform.description">Beschreibung des Feeds</label>
<label index="new">NEU:</label>
<label index="update">UPDATE:</label>
<label index="noTitle">[kein Titel]</label>
<label index="volume">Band</label>
</languageKey>
</data>
<meta type="array">
<type>module</type>
<description>Language labels for plugin Feeds</description>
</meta>
<data type="array">
<languageKey index="default" type="array">
<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.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.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.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.description">Feed's description</label>
<label index="new">NEW:</label>
<label index="update">UPDATE:</label>
<label index="noTitle">[no title]</label>
<label index="volume">Volume</label>
</languageKey>
<languageKey index="de" type="array">
<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.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.limit">Anzahl der Dokumente</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.title">Titel des Feeds</label>
<label index="tt_content.pi_flexform.description">Beschreibung des Feeds</label>
<label index="new">NEU:</label>
<label index="update">UPDATE:</label>
<label index="noTitle">[kein Titel]</label>
<label index="volume">Band</label>
</languageKey>
</data>
</T3locallang>

View File

@ -9,210 +9,210 @@
* LICENSE.txt file that was distributed with this source code.
-->
<T3locallang>
<meta type="array">
<type>module</type>
<description>Flash messages for extension 'dlf'</description>
</meta>
<data type="array">
<languageKey index="default" type="array">
<label index="flash.attention">Attention!</label>
<label index="flash.done">Done!</label>
<label index="flash.warning">Warning!</label>
<label index="flash.error">Error!</label>
<label index="flash.running">Please wait...</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.documentSaved">Document "%s" [%u] saved.</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.documentsToGo">%u documents to go.</label>
<label index="flash.fileNotLoaded">File "%s" could not be loaded.</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.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.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.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.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.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.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.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.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.usergroupOkay">Usergroup has access!</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.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.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.usergroupAddedMsg">Access to this SysFolder was granted for usergroup "_cli_dlf".</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.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.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.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.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.solrException">Apache Solr exception thrown:</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="update.metadataConfig">Updating metadata configuration...</label>
<label index="update.metadataConfigOkay">...successfully completed!</label>
<label index="update.metadataConfigNotOkay">...incomplete! Please check your configuration manually.</label>
<label index="update.copyIndexRelatedColumns">Copy index related columns...</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.solariumSolrUpdate">Re-adding cores to Solr...</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.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="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.notConnected">Connection failed!</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.nsOkayMsg">The namespace definitions for MODS, TEIHDR and ALTO do exist.</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.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="cliUserGroup.usrRealName">Kitodo.Presentation command line indexer</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.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.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.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.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.grpDescription">Usergroup for the Kitodo.Presentation command line indexer.</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.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.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.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.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.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.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>
</languageKey>
<languageKey index="de" type="array">
<label index="flash.attention">Achtung!</label>
<label index="flash.done">Fertig!</label>
<label index="flash.warning">Warnung!</label>
<label index="flash.error">Fehler!</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.newLibrary">Neue Bibliothek "%s" [%u] zur Datenbank hinzugefügt.</label>
<label index="flash.documentSaved">Dokument "%s" [%u] gespeichert.</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.documentsToGo">Verbleibende Dokumente zur Indexierung: %u</label>
<label index="flash.fileNotLoaded">Datei "%s" konnte nicht eingelesen werden.</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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.solrException">Apache Solr meldet Ausnahmefehler:</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="update.metadataConfig">Aktualisierung der Metadatenkonfiguration...</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.copyIndexRelatedColumns">Kopieren der Index bezogenen Tabellenspalten...</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.solariumSolrUpdate">Hinzufügen der Solr Kerne...</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.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="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.notConnected">Verbindung fehlgeschlagen!</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.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.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.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.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.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.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.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.usrNotCreated">Nutzer "_cli_dlf" nicht gefunden!</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.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.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.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.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.grpNotCreated">Nutzergruppe "_cli_dlf" nicht gefunden!</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.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.cliNotOkayMsg">Die TYPO3-Kommandozeilenschnittstelle steht für den Indexierungsdienst nicht zur Verfügung.</label>
</languageKey>
</data>
<meta type="array">
<type>module</type>
<description>Flash messages for extension 'dlf'</description>
</meta>
<data type="array">
<languageKey index="default" type="array">
<label index="flash.attention">Attention!</label>
<label index="flash.done">Done!</label>
<label index="flash.warning">Warning!</label>
<label index="flash.error">Error!</label>
<label index="flash.running">Please wait...</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.documentSaved">Document "%s" [%u] saved.</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.documentsToGo">%u documents to go.</label>
<label index="flash.fileNotLoaded">File "%s" could not be loaded.</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.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.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.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.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.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.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.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.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.usergroupOkay">Usergroup has access!</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.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.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.usergroupAddedMsg">Access to this SysFolder was granted for usergroup "_cli_dlf".</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.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.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.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.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.solrException">Apache Solr exception thrown:</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="update.metadataConfig">Updating metadata configuration...</label>
<label index="update.metadataConfigOkay">...successfully completed!</label>
<label index="update.metadataConfigNotOkay">...incomplete! Please check your configuration manually.</label>
<label index="update.copyIndexRelatedColumns">Copy index related columns...</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.solariumSolrUpdate">Re-adding cores to Solr...</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.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="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.notConnected">Connection failed!</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.nsOkayMsg">The namespace definitions for MODS, TEIHDR and ALTO do exist.</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.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="cliUserGroup.usrRealName">Kitodo.Presentation command line indexer</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.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.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.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.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.grpDescription">Usergroup for the Kitodo.Presentation command line indexer.</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.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.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.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.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.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.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>
</languageKey>
<languageKey index="de" type="array">
<label index="flash.attention">Achtung!</label>
<label index="flash.done">Fertig!</label>
<label index="flash.warning">Warnung!</label>
<label index="flash.error">Fehler!</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.newLibrary">Neue Bibliothek "%s" [%u] zur Datenbank hinzugefügt.</label>
<label index="flash.documentSaved">Dokument "%s" [%u] gespeichert.</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.documentsToGo">Verbleibende Dokumente zur Indexierung: %u</label>
<label index="flash.fileNotLoaded">Datei "%s" konnte nicht eingelesen werden.</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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.solrException">Apache Solr meldet Ausnahmefehler:</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="update.metadataConfig">Aktualisierung der Metadatenkonfiguration...</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.copyIndexRelatedColumns">Kopieren der Index bezogenen Tabellenspalten...</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.solariumSolrUpdate">Hinzufügen der Solr Kerne...</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.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="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.notConnected">Verbindung fehlgeschlagen!</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.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.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.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.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.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.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.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.usrNotCreated">Nutzer "_cli_dlf" nicht gefunden!</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.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.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.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.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.grpNotCreated">Nutzergruppe "_cli_dlf" nicht gefunden!</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.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.cliNotOkayMsg">Die TYPO3-Kommandozeilenschnittstelle steht für den Indexierungsdienst nicht zur Verfügung.</label>
</languageKey>
</data>
</T3locallang>

View File

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

View File

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

View File

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

View File

@ -9,346 +9,346 @@
* LICENSE.txt file that was distributed with this source code.
-->
<T3locallang>
<meta type="array">
<type>database</type>
<description>Language labels for extension 'dlf'</description>
</meta>
<data type="array">
<languageKey index="default" type="array">
<label index="tx_dlf_actionlog">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.file_name">Filename</label>
<label index="tx_dlf_actionlog.count_pages">Page count</label>
<label index="tx_dlf_actionlog.name">Name</label>
<label index="tx_dlf_actionlog.creation_date">Creation date</label>
<label index="tx_dlf_basket">Basket</label>
<label index="tx_dlf_basket.label">Basket</label>
<label index="tx_dlf_basket.sessionId">Session 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_documents">Documents</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.record_id">Record 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.urn">Uniform Resource Name (URN)</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_sorting">Title (Sorting)</label>
<label index="tx_dlf_documents.author">Author</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.thumbnail">Thumbnail</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.volume">Number of Volume</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.owner">Owner</label>
<label index="tx_dlf_documents.status">Status</label>
<label index="tx_dlf_documents.status.default">default</label>
<label index="tx_dlf_documents.tab1">Titledata</label>
<label index="tx_dlf_documents.tab2">Identifier</label>
<label index="tx_dlf_documents.tab3">Access</label>
<label index="tx_dlf_structures">Structures</label>
<label index="tx_dlf_structures.toplevel">Toplevel Unit?</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.oai_name">OAI-PMH Mapping</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.status">Status</label>
<label index="tx_dlf_structures.status.default">default</label>
<label index="tx_dlf_structures.tab1">General</label>
<label index="tx_dlf_structures.tab2">Translation</label>
<label index="tx_dlf_structures.tab3">Access</label>
<label index="tx_dlf_metadata">Metadata</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.format">Data Format</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.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_indexed">Index in Search Index?</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_facet">Prepare for faceting?</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.status">Status</label>
<label index="tx_dlf_metadata.status.default">default</label>
<label index="tx_dlf_metadata.tab1">General</label>
<label index="tx_dlf_metadata.tab2">Translation</label>
<label index="tx_dlf_metadata.tab3">Access</label>
<label index="tx_dlf_metadataformat">Metadata Format</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_sorting">XPath for sorting (optional)</label>
<label index="tx_dlf_metadataformat.mandatory">Mandatory field?</label>
<label index="tx_dlf_metadataformat.tab1">General</label>
<label index="tx_dlf_formats">Data Formats</label>
<label index="tx_dlf_formats.type">METS Name</label>
<label index="tx_dlf_formats.root">Root Element</label>
<label index="tx_dlf_formats.namespace">Namespace URI</label>
<label index="tx_dlf_formats.class">Class Name</label>
<label index="tx_dlf_formats.tab1">General</label>
<label index="tx_dlf_solrcores">Solr Cores</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.tab1">General</label>
<label index="tx_dlf_collections">Collections</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_search">Define (virtual) collection via Solr Query</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.thumbnail">Thumbnail</label>
<label index="tx_dlf_collections.priority">Priority</label>
<label index="tx_dlf_collections.documents">Documents</label>
<label index="tx_dlf_collections.owner">Owner</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.none">none</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.default">default</label>
<label index="tx_dlf_collections.tab1">General</label>
<label index="tx_dlf_collections.tab2">Translation</label>
<label index="tx_dlf_collections.tab3">Access</label>
<label index="tx_dlf_libraries">Libraries</label>
<label index="tx_dlf_libraries.label">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.contact">Contact</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_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_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_base">Union Catalog Base URL</label>
<label index="tx_dlf_libraries.tab1">General</label>
<label index="tx_dlf_libraries.tab2">Translation</label>
<label index="tx_dlf_libraries.tab3">Catalogs</label>
<label index="tx_dlf_printer">Printer</label>
<label index="tx_dlf_printer.label">Label</label>
<label index="tx_dlf_printer.address">Network address</label>
<label index="tx_dlf_printer.name">Name</label>
<label index="tx_dlf_printer.printcommand">CLI command(##fileName##)</label>
<label index="tx_dlf_mail">Email</label>
<label index="tx_dlf_mail.mail">Address</label>
<label index="tx_dlf_mail.name">Name</label>
<label index="tx_dlf_toolbox.toolsPdfDownload">PDF Download</label>
<label index="tx_dlf_toolbox.toolsFulltext">Fulltext</label>
<label index="tx_dlf_toolbox.toolsImageManipulation">Image Manipulation</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_basket">DLF: Basket</label>
<label index="tt_content.dlf_calendar">DLF: Calendar</label>
<label index="tt_content.dlf_collection">DLF: Collection</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_metadata">DLF: Metadata</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_pagegrid">DLF: Page Preview</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_statistics">DLF: Statistics</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_validator">DLF: Validator</label>
<label index="config.metadataFormats">Default metadata namespaces</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.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.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.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.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.fileGrpAudio">Audio fileGrp: @USE attribute value (default is "AUDIO")</label>
<label index="config.solrConnect">Solr Connection</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.solrPort">Solr Server Port: (default is "8983")</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.solrPass">Solr Server Password: (default is "")</label>
<label index="config.solrTimeout">Solr Server Timeout: (default is "10")</label>
</languageKey>
<languageKey index="de" type="array">
<label index="tx_dlf_actionlog">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.file_name">Dateiname</label>
<label index="tx_dlf_actionlog.count_pages">Seitenanzahl</label>
<label index="tx_dlf_actionlog.name">Name</label>
<label index="tx_dlf_actionlog.creation_date">Erstellungsdatum</label>
<label index="tx_dlf_basket">Warenkorb</label>
<label index="tx_dlf_basket.label">Warenkorb</label>
<label index="tx_dlf_basket.sessionId">Session ID</label>
<label index="tx_dlf_basket.docIds">Dokumenten IDs</label>
<label index="tx_dlf_basket.feUser">FE User ID</label>
<label index="tx_dlf_documents">Dokumente</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.record_id">Datensatz 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.urn">Uniform Resource Name (URN)</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_sorting">Titel (Sortierung)</label>
<label index="tx_dlf_documents.author">Autor</label>
<label index="tx_dlf_documents.year">Erscheinungsjahr</label>
<label index="tx_dlf_documents.place">Erscheinungsort</label>
<label index="tx_dlf_documents.thumbnail">Vorschaubild</label>
<label index="tx_dlf_documents.structure">Dokumententyp</label>
<label index="tx_dlf_documents.partof">Übergeordnete Einheit</label>
<label index="tx_dlf_documents.volume">Bandnummer</label>
<label index="tx_dlf_documents.volume_sorting">Bandnummer (Sortierung)</label>
<label index="tx_dlf_documents.collections">Sammlungen</label>
<label index="tx_dlf_documents.owner">Besitzer</label>
<label index="tx_dlf_documents.status">Status</label>
<label index="tx_dlf_documents.status.default">Standard</label>
<label index="tx_dlf_documents.tab1">Titeldaten</label>
<label index="tx_dlf_documents.tab2">Identifier</label>
<label index="tx_dlf_documents.tab3">Zugriff</label>
<label index="tx_dlf_structures">Strukturelemente</label>
<label index="tx_dlf_structures.toplevel">Toplevel-Element?</label>
<label index="tx_dlf_structures.label">Anzeigeform</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.thumbnail">Zeige Vorschaubild von...</label>
<label index="tx_dlf_structures.thumbnail.self">selbst</label>
<label index="tx_dlf_structures.status">Status</label>
<label index="tx_dlf_structures.status.default">Standard</label>
<label index="tx_dlf_structures.tab1">Allgemein</label>
<label index="tx_dlf_structures.tab2">Übersetzung</label>
<label index="tx_dlf_structures.tab3">Zugriff</label>
<label index="tx_dlf_metadata">Metadaten</label>
<label index="tx_dlf_metadata.label">Anzeigeform</label>
<label index="tx_dlf_metadata.index_name">Index-Bezeichnung</label>
<label index="tx_dlf_metadata.format">Datenformat</label>
<label index="tx_dlf_metadata.default_value">Standardwert</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_stored">Im Suchindex speichern?</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.is_sortable">Sortierbar 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.index_autocomplete">Für Suchvorschläge verwenden?</label>
<label index="tx_dlf_metadata.status">Status</label>
<label index="tx_dlf_metadata.status.default">Standard</label>
<label index="tx_dlf_metadata.tab1">Allgemein</label>
<label index="tx_dlf_metadata.tab2">Übersetzung</label>
<label index="tx_dlf_metadata.tab3">Zugriff</label>
<label index="tx_dlf_metadataformat">Metadatenformat</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_sorting">XPath für Sortierfeld (optional)</label>
<label index="tx_dlf_metadataformat.mandatory">Pflichtfeld?</label>
<label index="tx_dlf_metadataformat.tab1">Allgemein</label>
<label index="tx_dlf_formats">Datenformate</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.namespace">Namensraum URI</label>
<label index="tx_dlf_formats.class">Klassenname</label>
<label index="tx_dlf_formats.tab1">Allgemein</label>
<label index="tx_dlf_solrcores">Solr Kerne</label>
<label index="tx_dlf_solrcores.label">Anzeigeform</label>
<label index="tx_dlf_solrcores.index_name">Solr-Bezeichnung</label>
<label index="tx_dlf_solrcores.tab1">General</label>
<label index="tx_dlf_collections">Sammlungen</label>
<label index="tx_dlf_collections.label">Anzeigeform</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.index_search">(Virtuelle) Kollektion über Solr Anfrage definieren</label>
<label index="tx_dlf_collections.description">Beschreibung</label>
<label index="tx_dlf_collections.thumbnail">Vorschaubild</label>
<label index="tx_dlf_collections.priority">Priorität</label>
<label index="tx_dlf_collections.documents">Dokumente</label>
<label index="tx_dlf_collections.owner">Besitzer</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.none">keiner</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.default">Standard</label>
<label index="tx_dlf_collections.tab1">Allgemein</label>
<label index="tx_dlf_collections.tab2">Übersetzung</label>
<label index="tx_dlf_collections.tab3">Zugriff</label>
<label index="tx_dlf_libraries">Mandanten</label>
<label index="tx_dlf_libraries.label">Name</label>
<label index="tx_dlf_libraries.index_name">Index-Bezeichnung</label>
<label index="tx_dlf_libraries.website">Webseite</label>
<label index="tx_dlf_libraries.contact">Kontakt</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_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_base">Online Public Access Catalog (OPAC) URL</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.tab1">Allgemein</label>
<label index="tx_dlf_libraries.tab2">Übersetzung</label>
<label index="tx_dlf_libraries.tab3">Kataloge</label>
<label index="tx_dlf_printer">Drucker</label>
<label index="tx_dlf_printer.label">Label</label>
<label index="tx_dlf_printer.address">Netzwerkadresse</label>
<label index="tx_dlf_printer.name">Name</label>
<label index="tx_dlf_printer.printcommand">CLI Befehl (##fileName##)</label>
<label index="tx_dlf_mail">E-Mail</label>
<label index="tx_dlf_mail.mail">Adresse</label>
<label index="tx_dlf_mail.name">Name</label>
<label index="tx_dlf_toolbox.toolsPdfDownload">PDF-Download</label>
<label index="tx_dlf_toolbox.toolsFulltext">Volltext</label>
<label index="tx_dlf_toolbox.toolsImageManipulation">Bildbearbeitung</label>
<label index="tx_dlf_toolbox.toolsImageDownload">Bild-Download</label>
<label index="tt_content.dlf_audioplayer">DLF: Audioplayer</label>
<label index="tt_content.dlf_basket">DLF: Warenkorb</label>
<label index="tt_content.dlf_calendar">DLF: Kalender</label>
<label index="tt_content.dlf_collection">DLF: Kollektion</label>
<label index="tt_content.dlf_feeds">DLF: Feeds</label>
<label index="tt_content.dlf_listview">DLF: Listenansicht</label>
<label index="tt_content.dlf_metadata">DLF: Metadaten</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_pagegrid">DLF: Seitenvorschau</label>
<label index="tt_content.dlf_pageview">DLF: Seitenansicht</label>
<label index="tt_content.dlf_search">DLF: Suche</label>
<label index="tt_content.dlf_statistics">DLF: Statistik</label>
<label index="tt_content.dlf_tableofcontents">DLF: Inhaltsverzeichnis</label>
<label index="tt_content.dlf_toolbox">DLF: Werkzeugkasten</label>
<label index="tt_content.dlf_validator">DLF: Validator</label>
<label index="config.metadataFormats">Standard-Namensräume für Metadaten</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.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.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.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.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.fileGrpAudio">Audio fileGrp: @USE Attributwert der Audiodateien (Standard ist "AUDIO")</label>
<label index="config.solrConnect">Solr Verbindung</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.solrPort">Solr Server Port: (Standard ist "8983")</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.solrPass">Solr Server Kennwort: (Standard ist "")</label>
<label index="config.solrTimeout">Solr Server Timeout: (Standard ist "10")</label>
</languageKey>
</data>
<meta type="array">
<type>database</type>
<description>Language labels for extension 'dlf'</description>
</meta>
<data type="array">
<languageKey index="default" type="array">
<label index="tx_dlf_actionlog">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.file_name">Filename</label>
<label index="tx_dlf_actionlog.count_pages">Page count</label>
<label index="tx_dlf_actionlog.name">Name</label>
<label index="tx_dlf_actionlog.creation_date">Creation date</label>
<label index="tx_dlf_basket">Basket</label>
<label index="tx_dlf_basket.label">Basket</label>
<label index="tx_dlf_basket.sessionId">Session 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_documents">Documents</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.record_id">Record 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.urn">Uniform Resource Name (URN)</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_sorting">Title (Sorting)</label>
<label index="tx_dlf_documents.author">Author</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.thumbnail">Thumbnail</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.volume">Number of Volume</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.owner">Owner</label>
<label index="tx_dlf_documents.status">Status</label>
<label index="tx_dlf_documents.status.default">default</label>
<label index="tx_dlf_documents.tab1">Titledata</label>
<label index="tx_dlf_documents.tab2">Identifier</label>
<label index="tx_dlf_documents.tab3">Access</label>
<label index="tx_dlf_structures">Structures</label>
<label index="tx_dlf_structures.toplevel">Toplevel Unit?</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.oai_name">OAI-PMH Mapping</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.status">Status</label>
<label index="tx_dlf_structures.status.default">default</label>
<label index="tx_dlf_structures.tab1">General</label>
<label index="tx_dlf_structures.tab2">Translation</label>
<label index="tx_dlf_structures.tab3">Access</label>
<label index="tx_dlf_metadata">Metadata</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.format">Data Format</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.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_indexed">Index in Search Index?</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_facet">Prepare for faceting?</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.status">Status</label>
<label index="tx_dlf_metadata.status.default">default</label>
<label index="tx_dlf_metadata.tab1">General</label>
<label index="tx_dlf_metadata.tab2">Translation</label>
<label index="tx_dlf_metadata.tab3">Access</label>
<label index="tx_dlf_metadataformat">Metadata Format</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_sorting">XPath for sorting (optional)</label>
<label index="tx_dlf_metadataformat.mandatory">Mandatory field?</label>
<label index="tx_dlf_metadataformat.tab1">General</label>
<label index="tx_dlf_formats">Data Formats</label>
<label index="tx_dlf_formats.type">METS Name</label>
<label index="tx_dlf_formats.root">Root Element</label>
<label index="tx_dlf_formats.namespace">Namespace URI</label>
<label index="tx_dlf_formats.class">Class Name</label>
<label index="tx_dlf_formats.tab1">General</label>
<label index="tx_dlf_solrcores">Solr Cores</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.tab1">General</label>
<label index="tx_dlf_collections">Collections</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_search">Define (virtual) collection via Solr Query</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.thumbnail">Thumbnail</label>
<label index="tx_dlf_collections.priority">Priority</label>
<label index="tx_dlf_collections.documents">Documents</label>
<label index="tx_dlf_collections.owner">Owner</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.none">none</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.default">default</label>
<label index="tx_dlf_collections.tab1">General</label>
<label index="tx_dlf_collections.tab2">Translation</label>
<label index="tx_dlf_collections.tab3">Access</label>
<label index="tx_dlf_libraries">Libraries</label>
<label index="tx_dlf_libraries.label">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.contact">Contact</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_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_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_base">Union Catalog Base URL</label>
<label index="tx_dlf_libraries.tab1">General</label>
<label index="tx_dlf_libraries.tab2">Translation</label>
<label index="tx_dlf_libraries.tab3">Catalogs</label>
<label index="tx_dlf_printer">Printer</label>
<label index="tx_dlf_printer.label">Label</label>
<label index="tx_dlf_printer.address">Network address</label>
<label index="tx_dlf_printer.name">Name</label>
<label index="tx_dlf_printer.printcommand">CLI command(##fileName##)</label>
<label index="tx_dlf_mail">Email</label>
<label index="tx_dlf_mail.mail">Address</label>
<label index="tx_dlf_mail.name">Name</label>
<label index="tx_dlf_toolbox.toolsPdfDownload">PDF Download</label>
<label index="tx_dlf_toolbox.toolsFulltext">Fulltext</label>
<label index="tx_dlf_toolbox.toolsImageManipulation">Image Manipulation</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_basket">DLF: Basket</label>
<label index="tt_content.dlf_calendar">DLF: Calendar</label>
<label index="tt_content.dlf_collection">DLF: Collection</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_metadata">DLF: Metadata</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_pagegrid">DLF: Page Preview</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_statistics">DLF: Statistics</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_validator">DLF: Validator</label>
<label index="config.metadataFormats">Default metadata namespaces</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.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.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.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.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.fileGrpAudio">Audio fileGrp: @USE attribute value (default is "AUDIO")</label>
<label index="config.solrConnect">Solr Connection</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.solrPort">Solr Server Port: (default is "8983")</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.solrPass">Solr Server Password: (default is "")</label>
<label index="config.solrTimeout">Solr Server Timeout: (default is "10")</label>
</languageKey>
<languageKey index="de" type="array">
<label index="tx_dlf_actionlog">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.file_name">Dateiname</label>
<label index="tx_dlf_actionlog.count_pages">Seitenanzahl</label>
<label index="tx_dlf_actionlog.name">Name</label>
<label index="tx_dlf_actionlog.creation_date">Erstellungsdatum</label>
<label index="tx_dlf_basket">Warenkorb</label>
<label index="tx_dlf_basket.label">Warenkorb</label>
<label index="tx_dlf_basket.sessionId">Session ID</label>
<label index="tx_dlf_basket.docIds">Dokumenten IDs</label>
<label index="tx_dlf_basket.feUser">FE User ID</label>
<label index="tx_dlf_documents">Dokumente</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.record_id">Datensatz 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.urn">Uniform Resource Name (URN)</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_sorting">Titel (Sortierung)</label>
<label index="tx_dlf_documents.author">Autor</label>
<label index="tx_dlf_documents.year">Erscheinungsjahr</label>
<label index="tx_dlf_documents.place">Erscheinungsort</label>
<label index="tx_dlf_documents.thumbnail">Vorschaubild</label>
<label index="tx_dlf_documents.structure">Dokumententyp</label>
<label index="tx_dlf_documents.partof">Übergeordnete Einheit</label>
<label index="tx_dlf_documents.volume">Bandnummer</label>
<label index="tx_dlf_documents.volume_sorting">Bandnummer (Sortierung)</label>
<label index="tx_dlf_documents.collections">Sammlungen</label>
<label index="tx_dlf_documents.owner">Besitzer</label>
<label index="tx_dlf_documents.status">Status</label>
<label index="tx_dlf_documents.status.default">Standard</label>
<label index="tx_dlf_documents.tab1">Titeldaten</label>
<label index="tx_dlf_documents.tab2">Identifier</label>
<label index="tx_dlf_documents.tab3">Zugriff</label>
<label index="tx_dlf_structures">Strukturelemente</label>
<label index="tx_dlf_structures.toplevel">Toplevel-Element?</label>
<label index="tx_dlf_structures.label">Anzeigeform</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.thumbnail">Zeige Vorschaubild von...</label>
<label index="tx_dlf_structures.thumbnail.self">selbst</label>
<label index="tx_dlf_structures.status">Status</label>
<label index="tx_dlf_structures.status.default">Standard</label>
<label index="tx_dlf_structures.tab1">Allgemein</label>
<label index="tx_dlf_structures.tab2">Übersetzung</label>
<label index="tx_dlf_structures.tab3">Zugriff</label>
<label index="tx_dlf_metadata">Metadaten</label>
<label index="tx_dlf_metadata.label">Anzeigeform</label>
<label index="tx_dlf_metadata.index_name">Index-Bezeichnung</label>
<label index="tx_dlf_metadata.format">Datenformat</label>
<label index="tx_dlf_metadata.default_value">Standardwert</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_stored">Im Suchindex speichern?</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.is_sortable">Sortierbar 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.index_autocomplete">Für Suchvorschläge verwenden?</label>
<label index="tx_dlf_metadata.status">Status</label>
<label index="tx_dlf_metadata.status.default">Standard</label>
<label index="tx_dlf_metadata.tab1">Allgemein</label>
<label index="tx_dlf_metadata.tab2">Übersetzung</label>
<label index="tx_dlf_metadata.tab3">Zugriff</label>
<label index="tx_dlf_metadataformat">Metadatenformat</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_sorting">XPath für Sortierfeld (optional)</label>
<label index="tx_dlf_metadataformat.mandatory">Pflichtfeld?</label>
<label index="tx_dlf_metadataformat.tab1">Allgemein</label>
<label index="tx_dlf_formats">Datenformate</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.namespace">Namensraum URI</label>
<label index="tx_dlf_formats.class">Klassenname</label>
<label index="tx_dlf_formats.tab1">Allgemein</label>
<label index="tx_dlf_solrcores">Solr Kerne</label>
<label index="tx_dlf_solrcores.label">Anzeigeform</label>
<label index="tx_dlf_solrcores.index_name">Solr-Bezeichnung</label>
<label index="tx_dlf_solrcores.tab1">General</label>
<label index="tx_dlf_collections">Sammlungen</label>
<label index="tx_dlf_collections.label">Anzeigeform</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.index_search">(Virtuelle) Kollektion über Solr Anfrage definieren</label>
<label index="tx_dlf_collections.description">Beschreibung</label>
<label index="tx_dlf_collections.thumbnail">Vorschaubild</label>
<label index="tx_dlf_collections.priority">Priorität</label>
<label index="tx_dlf_collections.documents">Dokumente</label>
<label index="tx_dlf_collections.owner">Besitzer</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.none">keiner</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.default">Standard</label>
<label index="tx_dlf_collections.tab1">Allgemein</label>
<label index="tx_dlf_collections.tab2">Übersetzung</label>
<label index="tx_dlf_collections.tab3">Zugriff</label>
<label index="tx_dlf_libraries">Mandanten</label>
<label index="tx_dlf_libraries.label">Name</label>
<label index="tx_dlf_libraries.index_name">Index-Bezeichnung</label>
<label index="tx_dlf_libraries.website">Webseite</label>
<label index="tx_dlf_libraries.contact">Kontakt</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_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_base">Online Public Access Catalog (OPAC) URL</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.tab1">Allgemein</label>
<label index="tx_dlf_libraries.tab2">Übersetzung</label>
<label index="tx_dlf_libraries.tab3">Kataloge</label>
<label index="tx_dlf_printer">Drucker</label>
<label index="tx_dlf_printer.label">Label</label>
<label index="tx_dlf_printer.address">Netzwerkadresse</label>
<label index="tx_dlf_printer.name">Name</label>
<label index="tx_dlf_printer.printcommand">CLI Befehl (##fileName##)</label>
<label index="tx_dlf_mail">E-Mail</label>
<label index="tx_dlf_mail.mail">Adresse</label>
<label index="tx_dlf_mail.name">Name</label>
<label index="tx_dlf_toolbox.toolsPdfDownload">PDF-Download</label>
<label index="tx_dlf_toolbox.toolsFulltext">Volltext</label>
<label index="tx_dlf_toolbox.toolsImageManipulation">Bildbearbeitung</label>
<label index="tx_dlf_toolbox.toolsImageDownload">Bild-Download</label>
<label index="tt_content.dlf_audioplayer">DLF: Audioplayer</label>
<label index="tt_content.dlf_basket">DLF: Warenkorb</label>
<label index="tt_content.dlf_calendar">DLF: Kalender</label>
<label index="tt_content.dlf_collection">DLF: Kollektion</label>
<label index="tt_content.dlf_feeds">DLF: Feeds</label>
<label index="tt_content.dlf_listview">DLF: Listenansicht</label>
<label index="tt_content.dlf_metadata">DLF: Metadaten</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_pagegrid">DLF: Seitenvorschau</label>
<label index="tt_content.dlf_pageview">DLF: Seitenansicht</label>
<label index="tt_content.dlf_search">DLF: Suche</label>
<label index="tt_content.dlf_statistics">DLF: Statistik</label>
<label index="tt_content.dlf_tableofcontents">DLF: Inhaltsverzeichnis</label>
<label index="tt_content.dlf_toolbox">DLF: Werkzeugkasten</label>
<label index="tt_content.dlf_validator">DLF: Validator</label>
<label index="config.metadataFormats">Standard-Namensräume für Metadaten</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.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.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.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.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.fileGrpAudio">Audio fileGrp: @USE Attributwert der Audiodateien (Standard ist "AUDIO")</label>
<label index="config.solrConnect">Solr Verbindung</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.solrPort">Solr Server Port: (Standard ist "8983")</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.solrPass">Solr Server Kennwort: (Standard ist "")</label>
<label index="config.solrTimeout">Solr Server Timeout: (Standard ist "10")</label>
</languageKey>
</data>
</T3locallang>

View File

@ -9,58 +9,58 @@
* LICENSE.txt file that was distributed with this source code.
-->
<T3locallang>
<meta type="array">
<type>module</type>
<description>Language labels for plugin ListView</description>
</meta>
<data type="array">
<languageKey index="default" type="array">
<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.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.templateFile">Template file</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="nohits">Nothing found.</label>
<label index="count">Entries %d to %d of %d.</label>
<label index="prevPage">&lt;</label>
<label index="nextPage">&gt;</label>
<label index="page">%d</label>
<label index="separator"> - </label>
<label index="skip">...</label>
<label index="orderBy">Order by: </label>
<label index="relevance">relevance</label>
<label index="direction">Direction: </label>
<label index="direction.asc">ascending</label>
<label index="direction.desc">descending</label>
<label index="noTitle">[no title]</label>
<label index="addBasket">Add to basket</label>
<label index="hits">%d hits found in %d documents.</label>
</languageKey>
<languageKey index="de" type="array">
<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.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.templateFile">HTML-Template</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="nohits">Keine Treffer.</label>
<label index="count">Einträge %d bis %d von %d.</label>
<label index="prevPage">&lt;</label>
<label index="nextPage">&gt;</label>
<label index="page">%d</label>
<label index="separator"> - </label>
<label index="skip">...</label>
<label index="orderBy">Sortieren nach: </label>
<label index="relevance">Relevanz</label>
<label index="direction">Richtung: </label>
<label index="direction.asc">aufsteigend</label>
<label index="direction.desc">absteigend</label>
<label index="noTitle">[kein Titel]</label>
<label index="addBasket">Zum Warenkorb hinzufügen</label>
<label index="hits">Die Suche ergab %d Treffer in %d Dokumenten.</label>
</languageKey>
</data>
<meta type="array">
<type>module</type>
<description>Language labels for plugin ListView</description>
</meta>
<data type="array">
<languageKey index="default" type="array">
<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.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.templateFile">Template file</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="nohits">Nothing found.</label>
<label index="count">Entries %d to %d of %d.</label>
<label index="prevPage">&lt;</label>
<label index="nextPage">&gt;</label>
<label index="page">%d</label>
<label index="separator"> - </label>
<label index="skip">...</label>
<label index="orderBy">Order by: </label>
<label index="relevance">relevance</label>
<label index="direction">Direction: </label>
<label index="direction.asc">ascending</label>
<label index="direction.desc">descending</label>
<label index="noTitle">[no title]</label>
<label index="addBasket">Add to basket</label>
<label index="hits">%d hits found in %d documents.</label>
</languageKey>
<languageKey index="de" type="array">
<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.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.templateFile">HTML-Template</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="nohits">Keine Treffer.</label>
<label index="count">Einträge %d bis %d von %d.</label>
<label index="prevPage">&lt;</label>
<label index="nextPage">&gt;</label>
<label index="page">%d</label>
<label index="separator"> - </label>
<label index="skip">...</label>
<label index="orderBy">Sortieren nach: </label>
<label index="relevance">Relevanz</label>
<label index="direction">Richtung: </label>
<label index="direction.asc">aufsteigend</label>
<label index="direction.desc">absteigend</label>
<label index="noTitle">[kein Titel]</label>
<label index="addBasket">Zum Warenkorb hinzufügen</label>
<label index="hits">Die Suche ergab %d Treffer in %d Dokumenten.</label>
</languageKey>
</data>
</T3locallang>

View File

@ -9,38 +9,38 @@
* LICENSE.txt file that was distributed with this source code.
-->
<T3locallang>
<meta type="array">
<type>module</type>
<description>Language labels for plugin Metadata</description>
</meta>
<data type="array">
<languageKey index="default" type="array">
<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.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.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.rootline">Show metadata of superior structures</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.titledata">titledata only</label>
<label index="tt_content.pi_flexform.separator">Separator for multi-valued fields</label>
<label index="tt_content.pi_flexform.templateFile">Template file</label>
</languageKey>
<languageKey index="de" type="array">
<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.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.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.rootline">Metadaten übergeordneter Strukturen anzeigen</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.titledata">nur Titeldaten</label>
<label index="tt_content.pi_flexform.separator">Trennzeichen für mehrwertige Felder</label>
<label index="tt_content.pi_flexform.templateFile">HTML-Template</label>
</languageKey>
</data>
<meta type="array">
<type>module</type>
<description>Language labels for plugin Metadata</description>
</meta>
<data type="array">
<languageKey index="default" type="array">
<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.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.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.rootline">Show metadata of superior structures</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.titledata">titledata only</label>
<label index="tt_content.pi_flexform.separator">Separator for multi-valued fields</label>
<label index="tt_content.pi_flexform.templateFile">Template file</label>
</languageKey>
<languageKey index="de" type="array">
<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.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.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.rootline">Metadaten übergeordneter Strukturen anzeigen</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.titledata">nur Titeldaten</label>
<label index="tt_content.pi_flexform.separator">Trennzeichen für mehrwertige Felder</label>
<label index="tt_content.pi_flexform.templateFile">HTML-Template</label>
</languageKey>
</data>
</T3locallang>

View File

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

View File

@ -9,51 +9,51 @@
* LICENSE.txt file that was distributed with this source code.
-->
<T3locallang>
<meta type="array">
<type>module</type>
<description>Language labels for plugin OaiPmh</description>
</meta>
<data type="array">
<languageKey index="default" type="array">
<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.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.show_userdefined">Show user-defined collections?</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.stylesheet">Transformation stylesheet</label>
<label index="tt_content.pi_flexform.unqualified_epicur">Use unqualified epicur?</label>
<meta type="array">
<type>module</type>
<description>Language labels for plugin OaiPmh</description>
</meta>
<data type="array">
<languageKey index="default" type="array">
<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.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.show_userdefined">Show user-defined collections?</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.stylesheet">Transformation stylesheet</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="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="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="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="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>
</languageKey>
<languageKey index="de" type="array">
<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.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.show_userdefined">Benutzerdefinierte Kollektionen anzeigen?</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.stylesheet">XSL-Stylesheet</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="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="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="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="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>
</languageKey>
</data>
<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="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="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="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="error">An error occurred, please try again later. If this happens consistently, please contact the administrator.</label>
</languageKey>
<languageKey index="de" type="array">
<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.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.show_userdefined">Benutzerdefinierte Kollektionen anzeigen?</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.stylesheet">XSL-Stylesheet</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="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="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="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="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>
</languageKey>
</data>
</T3locallang>

View File

@ -9,34 +9,34 @@
* LICENSE.txt file that was distributed with this source code.
-->
<T3locallang>
<meta type="array">
<type>module</type>
<description>Language labels for plugin PageGrid</description>
</meta>
<data type="array">
<languageKey index="default" type="array">
<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.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.templateFile">Template file</label>
<label index="prevPage">&lt;</label>
<label index="nextPage">&gt;</label>
<label index="page">%d</label>
<label index="separator"> - </label>
<label index="skip">...</label>
</languageKey>
<languageKey index="de" type="array">
<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.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.templateFile">HTML-Template</label>
<label index="prevPage">&lt;</label>
<label index="nextPage">&gt;</label>
<label index="page">%d</label>
<label index="separator"> - </label>
<label index="skip">...</label>
</languageKey>
</data>
<meta type="array">
<type>module</type>
<description>Language labels for plugin PageGrid</description>
</meta>
<data type="array">
<languageKey index="default" type="array">
<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.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.templateFile">Template file</label>
<label index="prevPage">&lt;</label>
<label index="nextPage">&gt;</label>
<label index="page">%d</label>
<label index="separator"> - </label>
<label index="skip">...</label>
</languageKey>
<languageKey index="de" type="array">
<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.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.templateFile">HTML-Template</label>
<label index="prevPage">&lt;</label>
<label index="nextPage">&gt;</label>
<label index="page">%d</label>
<label index="separator"> - </label>
<label index="skip">...</label>
</languageKey>
</data>
</T3locallang>

View File

@ -9,48 +9,48 @@
* LICENSE.txt file that was distributed with this source code.
-->
<T3locallang>
<meta type="array">
<type>module</type>
<description>Language labels for plugin PageView</description>
</meta>
<data type="array">
<languageKey index="default" type="array">
<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.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.overviewmap">Overview Image</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.templateFile">Template file</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.magnifier">Activate magnifier</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="editMode">Set cutout</label>
<label index="editRemove">Remove cutout</label>
<label index="magnifier">Magnifier</label>
<label index="addBasket">Add to basket</label>
</languageKey>
<languageKey index="de" type="array">
<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.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.overviewmap">Übersichtsbild</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.templateFile">HTML-Template</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.magnifier">Lupenfunktion aktivieren</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="editMode">Ausschnitt auswählen</label>
<label index="editRemove">Ausschnitt entfernen</label>
<label index="magnifier">Lupe</label>
<label index="addBasket">Zum Warenkorb hinzufügen</label>
</languageKey>
</data>
<meta type="array">
<type>module</type>
<description>Language labels for plugin PageView</description>
</meta>
<data type="array">
<languageKey index="default" type="array">
<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.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.overviewmap">Overview Image</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.templateFile">Template file</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.magnifier">Activate magnifier</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="editMode">Set cutout</label>
<label index="editRemove">Remove cutout</label>
<label index="magnifier">Magnifier</label>
<label index="addBasket">Add to basket</label>
</languageKey>
<languageKey index="de" type="array">
<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.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.overviewmap">Übersichtsbild</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.templateFile">HTML-Template</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.magnifier">Lupenfunktion aktivieren</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="editMode">Ausschnitt auswählen</label>
<label index="editRemove">Ausschnitt entfernen</label>
<label index="magnifier">Lupe</label>
<label index="addBasket">Zum Warenkorb hinzufügen</label>
</languageKey>
</data>
</T3locallang>

View File

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

View File

@ -9,90 +9,90 @@
* LICENSE.txt file that was distributed with this source code.
-->
<T3locallang>
<meta type="array">
<type>module</type>
<description>Language labels for plugin Search</description>
</meta>
<data type="array">
<languageKey index="default" type="array">
<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.yes">yes</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.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.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.none">none</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.all">both</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.resetFacets">Allow to reset facets</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.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.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.separator">Separator for metadata in TS array</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.showSingleResult">Show single result in Page View?</label>
<label index="label.query">Search for:</label>
<label index="label.submit">Search</label>
<label index="label.inFulltext">in fulltext</label>
<label index="label.inMetadata">in metadata</label>
<label index="label.logicalPage">Page</label>
<label index="search">Search</label>
<label index="for"> for "%s"</label>
<label index="in"> in "%s"</label>
<label index="AND">and</label>
<label index="OR">or</label>
<label index="NOT">not</label>
<label index="resetFacet">Reset selection (%s)</label>
</languageKey>
<languageKey index="de" type="array">
<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.yes">ja</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.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.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.none">nein</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.all">beides</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.resetFacets">Facetten zurücksetzen erlauben</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.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.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.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.showLogicalPageField">Feld für logische Seite 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.submit">Suchen</label>
<label index="label.inFulltext">im Volltext</label>
<label index="label.inMetadata">in Metadaten</label>
<label index="label.logicalPage">Seite</label>
<label index="search">Suche</label>
<label index="for"> nach "%s"</label>
<label index="in"> in "%s"</label>
<label index="AND">und</label>
<label index="OR">oder</label>
<label index="NOT">nicht</label>
<label index="resetFacet">Auswahl entfernen (%s)</label>
</languageKey>
</data>
<meta type="array">
<type>module</type>
<description>Language labels for plugin Search</description>
</meta>
<data type="array">
<languageKey index="default" type="array">
<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.yes">yes</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.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.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.none">none</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.all">both</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.resetFacets">Allow to reset facets</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.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.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.separator">Separator for metadata in TS array</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.showSingleResult">Show single result in Page View?</label>
<label index="label.query">Search for:</label>
<label index="label.submit">Search</label>
<label index="label.inFulltext">in fulltext</label>
<label index="label.inMetadata">in metadata</label>
<label index="label.logicalPage">Page</label>
<label index="search">Search</label>
<label index="for"> for "%s"</label>
<label index="in"> in "%s"</label>
<label index="AND">and</label>
<label index="OR">or</label>
<label index="NOT">not</label>
<label index="resetFacet">Reset selection (%s)</label>
</languageKey>
<languageKey index="de" type="array">
<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.yes">ja</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.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.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.none">nein</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.all">beides</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.resetFacets">Facetten zurücksetzen erlauben</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.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.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.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.showLogicalPageField">Feld für logische Seite 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.submit">Suchen</label>
<label index="label.inFulltext">im Volltext</label>
<label index="label.inMetadata">in Metadaten</label>
<label index="label.logicalPage">Seite</label>
<label index="search">Suche</label>
<label index="for"> nach "%s"</label>
<label index="in"> in "%s"</label>
<label index="AND">und</label>
<label index="OR">oder</label>
<label index="NOT">nicht</label>
<label index="resetFacet">Auswahl entfernen (%s)</label>
</languageKey>
</data>
</T3locallang>

View File

@ -9,28 +9,28 @@
* LICENSE.txt file that was distributed with this source code.
-->
<T3locallang>
<meta type="array">
<type>module</type>
<description>Language labels for plugin Statistics </description>
</meta>
<data type="array">
<languageKey index="default" type="array">
<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.description">Description (Placeholders: ###TITLES### and ###VOLUMES###)</label>
<label index="title"> title</label>
<label index="titles"> titles</label>
<label index="volume"> volume</label>
<label index="volumes"> volumes</label>
</languageKey>
<languageKey index="de" type="array">
<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.description">Beschreibung (Platzhalter: ###TITLES### und ###VOLUMES###)</label>
<label index="title"> Titel</label>
<label index="titles"> Titel</label>
<label index="volume"> Band</label>
<label index="volumes"> Bände</label>
</languageKey>
</data>
<meta type="array">
<type>module</type>
<description>Language labels for plugin Statistics </description>
</meta>
<data type="array">
<languageKey index="default" type="array">
<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.description">Description (Placeholders: ###TITLES### and ###VOLUMES###)</label>
<label index="title"> title</label>
<label index="titles"> titles</label>
<label index="volume"> volume</label>
<label index="volumes"> volumes</label>
</languageKey>
<languageKey index="de" type="array">
<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.description">Beschreibung (Platzhalter: ###TITLES### und ###VOLUMES###)</label>
<label index="title"> Titel</label>
<label index="titles"> Titel</label>
<label index="volume"> Band</label>
<label index="volumes"> Bände</label>
</languageKey>
</data>
</T3locallang>

View File

@ -9,28 +9,28 @@
* LICENSE.txt file that was distributed with this source code.
-->
<T3locallang>
<meta type="array">
<type>module</type>
<description>Language labels for plugin TableOfContents</description>
</meta>
<data type="array">
<languageKey index="default" type="array">
<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.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.basketButton">Show basket button</label>
<label index="tt_content.pi_flexform.targetBasket">Target page (with "DLF: Basket" plugin)</label>
<label index="basketButton">Add to basket</label>
</languageKey>
<languageKey index="de" type="array">
<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.targetPid">Zielseite (mit Plugin "DLF: Seitenansicht")</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.targetBasket">Zielseite (mit Plugin "DLF: Warenkorb")</label>
<label index="basketButton">Zum Warenkorb hinzufügen</label>
</languageKey>
</data>
<meta type="array">
<type>module</type>
<description>Language labels for plugin TableOfContents</description>
</meta>
<data type="array">
<languageKey index="default" type="array">
<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.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.basketButton">Show basket button</label>
<label index="tt_content.pi_flexform.targetBasket">Target page (with "DLF: Basket" plugin)</label>
<label index="basketButton">Add to basket</label>
</languageKey>
<languageKey index="de" type="array">
<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.targetPid">Zielseite (mit Plugin "DLF: Seitenansicht")</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.targetBasket">Zielseite (mit Plugin "DLF: Warenkorb")</label>
<label index="basketButton">Zum Warenkorb hinzufügen</label>
</languageKey>
</data>
</T3locallang>

View File

@ -9,22 +9,22 @@
* LICENSE.txt file that was distributed with this source code.
-->
<T3locallang>
<meta type="array">
<type>module</type>
<description>Language labels for plugin Toolbox</description>
</meta>
<data type="array">
<languageKey index="default" type="array">
<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.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>
</languageKey>
<languageKey index="de" type="array">
<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.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>
</languageKey>
</data>
<meta type="array">
<type>module</type>
<description>Language labels for plugin Toolbox</description>
</meta>
<data type="array">
<languageKey index="default" type="array">
<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.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>
</languageKey>
<languageKey index="de" type="array">
<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.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>
</languageKey>
</data>
</T3locallang>

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -9,20 +9,20 @@
-->
<!-- ###TEMPLATE### -->
<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>
<!-- 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###" />
###LOGICAL_PAGE###
<!-- The following element is needed for auto-completion! -->
<div id="tx-dlf-search-suggest"></div>
<input type="submit" value="###LABEL_SUBMIT###" />
###FULLTEXTSWITCH###
###FIELD_DOC###
###FIELD_COLL###
###ADDITIONAL_INPUTS###
<!-- ###EXT_SEARCH_ENTRY### -->
<div class="tx-dlf-search-extended">###EXT_SEARCH_OPERATOR### ###EXT_SEARCH_FIELDSELECTOR### ###EXT_SEARCH_FIELDQUERY###</div>
<!-- ###EXT_SEARCH_ENTRY### -->
<label for="tx-dlf-search-query">###LABEL_QUERY###</label>
<!-- 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###" />
###LOGICAL_PAGE###
<!-- The following element is needed for auto-completion! -->
<div id="tx-dlf-search-suggest"></div>
<input type="submit" value="###LABEL_SUBMIT###" />
###FULLTEXTSWITCH###
###FIELD_DOC###
###FIELD_COLL###
###ADDITIONAL_INPUTS###
<!-- ###EXT_SEARCH_ENTRY### -->
<div class="tx-dlf-search-extended">###EXT_SEARCH_OPERATOR### ###EXT_SEARCH_FIELDSELECTOR### ###EXT_SEARCH_FIELDQUERY###</div>
<!-- ###EXT_SEARCH_ENTRY### -->
</div></form>
<div class="tx-dlf-search-facets">###FACETS_MENU###</div>
<!-- ###TEMPLATE### -->

View File

@ -9,8 +9,8 @@
-->
<!-- ###TEMPLATE### -->
<ul>
<!-- ###TOOLS### -->
<li>###TOOL###</li>
<!-- ###TOOLS### -->
<!-- ###TOOLS### -->
<li>###TOOL###</li>
<!-- ###TOOLS### -->
</ul>
<!-- ###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/">
@ -23,122 +23,122 @@
<xsl:template name="style">
td.value {
vertical-align: top;
padding-left: 1em;
padding: 3px;
vertical-align: top;
padding-left: 1em;
padding: 3px;
}
td.key {
background-color: #e0e0ff;
padding: 3px;
text-align: right;
border: 1px solid #c0c0c0;
white-space: nowrap;
font-weight: bold;
vertical-align: top;
background-color: #e0e0ff;
padding: 3px;
text-align: right;
border: 1px solid #c0c0c0;
white-space: nowrap;
font-weight: bold;
vertical-align: top;
}
.dcdata td.key {
background-color: #ffffe0;
background-color: #ffffe0;
}
body {
margin: 1em 2em 1em 2em;
margin: 1em 2em 1em 2em;
}
h1,
h2,
h3 {
font-family: sans-serif;
clear: left;
font-family: sans-serif;
clear: left;
}
h1 {
padding-bottom: 4px;
margin-bottom: 0px;
padding-bottom: 4px;
margin-bottom: 0px;
}
h2 {
margin-bottom: 0.5em;
margin-bottom: 0.5em;
}
h3 {
margin-bottom: 0.3em;
font-size: medium;
margin-bottom: 0.3em;
font-size: medium;
}
.link {
border: 1px outset #88f;
background-color: #c0c0ff;
padding: 1px 4px 1px 4px;
font-size: 80%;
text-decoration: none;
font-weight: bold;
font-family: sans-serif;
color: black;
border: 1px outset #88f;
background-color: #c0c0ff;
padding: 1px 4px 1px 4px;
font-size: 80%;
text-decoration: none;
font-weight: bold;
font-family: sans-serif;
color: black;
}
.link:hover {
color: red;
color: red;
}
.link:active {
color: red;
border: 1px inset #88f;
background-color: #a0a0df;
color: red;
border: 1px inset #88f;
background-color: #a0a0df;
}
.oaiRecord,
.oaiRecordTitle {
background-color: #f0f0ff;
border-style: solid;
border-color: #d0d0d0;
background-color: #f0f0ff;
border-style: solid;
border-color: #d0d0d0;
}
h2.oaiRecordTitle {
background-color: #e0e0ff;
font-size: medium;
font-weight: bold;
padding: 10px;
border-width: 2px 2px 0px 2px;
margin: 0px;
background-color: #e0e0ff;
font-size: medium;
font-weight: bold;
padding: 10px;
border-width: 2px 2px 0px 2px;
margin: 0px;
}
.oaiRecord {
margin-bottom: 3em;
border-width: 2px;
padding: 10px;
margin-bottom: 3em;
border-width: 2px;
padding: 10px;
}
.results {
margin-bottom: 1.5em;
margin-bottom: 1.5em;
}
ul.quicklinks {
margin-top: 2px;
padding: 4px;
text-align: left;
border-bottom: 2px solid #ccc;
border-top: 2px solid #ccc;
clear: left;
margin-top: 2px;
padding: 4px;
text-align: left;
border-bottom: 2px solid #ccc;
border-top: 2px solid #ccc;
clear: left;
}
ul.quicklinks li {
font-size: 80%;
display: inline;
list-style: none;
font-family: sans-serif;
font-size: 80%;
display: inline;
list-style: none;
font-family: sans-serif;
}
p.intro {
font-size: 80%;
font-size: 80%;
}
<xsl:call-template name='xmlstyle' />
</xsl:template>
<xsl:template name="xmlstyle">
.xmlSource {
font-size: 70%;
border: solid #c0c0a0 1px;
background-color: #ffffe0;
padding: 2em 2em 2em 0em;
font-size: 70%;
border: solid #c0c0a0 1px;
background-color: #ffffe0;
padding: 2em 2em 2em 0em;
}
.xmlBlock {
padding-left: 2em;
padding-left: 2em;
}
.xmlTagName {
color: #800000;
font-weight: bold;
color: #800000;
font-weight: bold;
}
.xmlAttrName {
font-weight: bold;
font-weight: bold;
}
.xmlAttrValue {
color: #0000c0;
color: #0000c0;
}
</xsl:template>
@ -146,276 +146,276 @@ p.intro {
<xsl:template match="/">
<html>
<head>
<title>Kitodo.Presentation: OAI 2.0 Request Results</title>
<style><xsl:call-template name="style"/></style>
</head>
<body>
<h1>Kitodo.Presentation: OAI 2.0 Request Results</h1>
<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 />
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:call-template name="quicklinks"/>
<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 />
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>
</body>
<head>
<title>Kitodo.Presentation: OAI 2.0 Request Results</title>
<style><xsl:call-template name="style"/></style>
</head>
<body>
<h1>Kitodo.Presentation: OAI 2.0 Request Results</h1>
<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 />
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:call-template name="quicklinks"/>
<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 />
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>
</body>
</html>
</xsl:template>
<xsl:template name="quicklinks">
<ul class="quicklinks">
<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=mets">ListIdentifiers (METS)</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=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=epicur">ListRecords (EPICUR)</a> | </li>
<li><a href="?verb=ListSets">ListSets</a></li>
</ul>
<ul class="quicklinks">
<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=mets">ListIdentifiers (METS)</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=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=epicur">ListRecords (EPICUR)</a> | </li>
<li><a href="?verb=ListSets">ListSets</a></li>
</ul>
</xsl:template>
<xsl:template match="/oai:OAI-PMH">
<table class="values">
<tr><td class="key">Datestamp of Response</td>
<td class="value"><xsl:value-of select="oai:responseDate"/></td></tr>
<tr><td class="key">Request URL</td>
<td class="value"><xsl:value-of select="oai:request"/></td></tr>
</table>
<xsl:choose>
<xsl:when test="oai:error">
<h2>OAI Error</h2>
<p>The request could not be completed due to the following error.</p>
<div class="results">
<xsl:apply-templates select="oai:error"/>
</div>
</xsl:when>
<xsl:otherwise>
<p>Request was of type <xsl:value-of select="oai:request/@verb"/>.</p>
<div class="results">
<xsl:apply-templates select="oai:Identify" />
<xsl:apply-templates select="oai:GetRecord"/>
<xsl:apply-templates select="oai:ListRecords"/>
<xsl:apply-templates select="oai:ListSets"/>
<xsl:apply-templates select="oai:ListMetadataFormats"/>
<xsl:apply-templates select="oai:ListIdentifiers"/>
</div>
</xsl:otherwise>
</xsl:choose>
<table class="values">
<tr><td class="key">Datestamp of Response</td>
<td class="value"><xsl:value-of select="oai:responseDate"/></td></tr>
<tr><td class="key">Request URL</td>
<td class="value"><xsl:value-of select="oai:request"/></td></tr>
</table>
<xsl:choose>
<xsl:when test="oai:error">
<h2>OAI Error</h2>
<p>The request could not be completed due to the following error.</p>
<div class="results">
<xsl:apply-templates select="oai:error"/>
</div>
</xsl:when>
<xsl:otherwise>
<p>Request was of type <xsl:value-of select="oai:request/@verb"/>.</p>
<div class="results">
<xsl:apply-templates select="oai:Identify" />
<xsl:apply-templates select="oai:GetRecord"/>
<xsl:apply-templates select="oai:ListRecords"/>
<xsl:apply-templates select="oai:ListSets"/>
<xsl:apply-templates select="oai:ListMetadataFormats"/>
<xsl:apply-templates select="oai:ListIdentifiers"/>
</div>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<!--
Error
Error
-->
<xsl:template match="/oai:OAI-PMH/oai:error">
<table class="values">
<tr><td class="key">Error Code</td>
<td class="value"><xsl:value-of select="@code"/></td></tr>
</table>
<p class="error"><xsl:value-of select="." /></p>
<table class="values">
<tr><td class="key">Error Code</td>
<td class="value"><xsl:value-of select="@code"/></td></tr>
</table>
<p class="error"><xsl:value-of select="." /></p>
</xsl:template>
<!--
Identify
Identify
-->
<xsl:template match="/oai:OAI-PMH/oai:Identify">
<h2>Repository</h2>
<table class="values">
<tr><td class="key">Name</td>
<td class="value"><xsl:value-of select="oai:repositoryName"/></td></tr>
<tr><td class="key">Base URL</td>
<td class="value"><xsl:value-of select="oai:baseURL"/></td></tr>
<tr><td class="key">Protocol Version</td>
<td class="value"><xsl:value-of select="oai:protocolVersion"/></td></tr>
<tr><td class="key">Earliest Datestamp</td>
<td class="value"><xsl:value-of select="oai:earliestDatestamp"/></td></tr>
<tr><td class="key">Deleted Record Policy</td>
<td class="value"><xsl:value-of select="oai:deletedRecord"/></td></tr>
<tr><td class="key">Granularity</td>
<td class="value"><xsl:value-of select="oai:granularity"/></td></tr>
<xsl:apply-templates select="oai:adminEmail"/>
</table>
<h2>Repository</h2>
<table class="values">
<tr><td class="key">Name</td>
<td class="value"><xsl:value-of select="oai:repositoryName"/></td></tr>
<tr><td class="key">Base URL</td>
<td class="value"><xsl:value-of select="oai:baseURL"/></td></tr>
<tr><td class="key">Protocol Version</td>
<td class="value"><xsl:value-of select="oai:protocolVersion"/></td></tr>
<tr><td class="key">Earliest Datestamp</td>
<td class="value"><xsl:value-of select="oai:earliestDatestamp"/></td></tr>
<tr><td class="key">Deleted Record Policy</td>
<td class="value"><xsl:value-of select="oai:deletedRecord"/></td></tr>
<tr><td class="key">Granularity</td>
<td class="value"><xsl:value-of select="oai:granularity"/></td></tr>
<xsl:apply-templates select="oai:adminEmail"/>
</table>
</xsl:template>
<xsl:template match="/oai:OAI-PMH/oai:Identify/oai:adminEmail">
<tr><td class="key">Admin Email</td>
<td class="value"><xsl:value-of select="."/></td></tr>
<tr><td class="key">Admin Email</td>
<td class="value"><xsl:value-of select="."/></td></tr>
</xsl:template>
<!--
GetRecord
GetRecord
-->
<xsl:template match="oai:GetRecord">
<xsl:apply-templates select="oai:record" />
<xsl:apply-templates select="oai:record" />
</xsl:template>
<!--
ListRecords
ListRecords
-->
<xsl:template match="oai:ListRecords">
<xsl:apply-templates select="oai:record" />
<xsl:apply-templates select="oai:resumptionToken" />
<xsl:apply-templates select="oai:record" />
<xsl:apply-templates select="oai:resumptionToken" />
</xsl:template>
<!--
ListIdentifiers
ListIdentifiers
-->
<xsl:template match="oai:ListIdentifiers">
<xsl:apply-templates select="oai:header" />
<xsl:apply-templates select="oai:resumptionToken" />
<xsl:apply-templates select="oai:header" />
<xsl:apply-templates select="oai:resumptionToken" />
</xsl:template>
<!--
ListSets
ListSets
-->
<xsl:template match="oai:ListSets">
<xsl:apply-templates select="oai:set" />
<xsl:apply-templates select="oai:resumptionToken" />
<xsl:apply-templates select="oai:set" />
<xsl:apply-templates select="oai:resumptionToken" />
</xsl:template>
<!--
ListMetadataFormats
ListMetadataFormats
-->
<xsl:template match="oai:ListMetadataFormats">
<xsl:choose>
<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>
</xsl:when>
<xsl:otherwise>
<p>This is a list of metadata formats available from this repository.</p>
</xsl:otherwise>
</xsl:choose>
<xsl:apply-templates select="oai:metadataFormat" />
<xsl:choose>
<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>
</xsl:when>
<xsl:otherwise>
<p>This is a list of metadata formats available from this repository.</p>
</xsl:otherwise>
</xsl:choose>
<xsl:apply-templates select="oai:metadataFormat" />
</xsl:template>
<!--
Set Details
Set Details
-->
<xsl:template match="oai:set">
<h2>Set</h2>
<table class="values">
<tr><td class="key">Name</td>
<td class="value"><xsl:value-of select="oai:setName"/></td></tr>
<xsl:apply-templates select="oai:setSpec" />
</table>
<h2>Set</h2>
<table class="values">
<tr><td class="key">Name</td>
<td class="value"><xsl:value-of select="oai:setName"/></td></tr>
<xsl:apply-templates select="oai:setSpec" />
</table>
</xsl:template>
<xsl:template match="oai:setSpec">
<tr><td class="key">setSpec</td>
<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=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=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=epicur&amp;set={.}">Records (EPICUR)</a>
</td></tr>
<tr><td class="key">setSpec</td>
<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=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=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=epicur&amp;set={.}">Records (EPICUR)</a>
</td></tr>
</xsl:template>
<!--
Metadata Format Details
Metadata Format Details
-->
<xsl:template match="oai:metadataFormat">
<h2>Metadata Format</h2>
<table class="values">
<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>
<tr><td class="key">Namespace</td>
<td class="value"><xsl:value-of select="oai:metadataNamespace"/></td></tr>
<tr><td class="key">Schema</td>
<td class="value"><a href="{oai:schema}"><xsl:value-of select="oai:schema"/></a></td></tr>
</table>
<h2>Metadata Format</h2>
<table class="values">
<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>
<tr><td class="key">Namespace</td>
<td class="value"><xsl:value-of select="oai:metadataNamespace"/></td></tr>
<tr><td class="key">Schema</td>
<td class="value"><a href="{oai:schema}"><xsl:value-of select="oai:schema"/></a></td></tr>
</table>
</xsl:template>
<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>
<!--
Record Details
Record Details
-->
<xsl:template match="oai:record">
<h2 class="oaiRecordTitle">OAI Record: <xsl:value-of select="oai:header/oai:identifier"/></h2>
<div class="oaiRecord">
<xsl:apply-templates select="oai:header" />
<xsl:apply-templates select="oai:metadata" />
</div>
<h2 class="oaiRecordTitle">OAI Record: <xsl:value-of select="oai:header/oai:identifier"/></h2>
<div class="oaiRecord">
<xsl:apply-templates select="oai:header" />
<xsl:apply-templates select="oai:metadata" />
</div>
</xsl:template>
<xsl:template match="oai:header">
<h3>OAI Record Header</h3>
<table class="values">
<tr><td class="key">OAI Identifier</td>
<td class="value">
<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=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=ListMetadataFormats&amp;identifier={oai:identifier}">formats</a>
</td></tr>
<tr><td class="key">Datestamp</td>
<td class="value"><xsl:value-of select="oai:datestamp"/></td></tr>
<xsl:apply-templates select="oai:setSpec" />
</table>
<xsl:if test="@status='deleted'">
<p>This record has been deleted.</p>
</xsl:if>
<h3>OAI Record Header</h3>
<table class="values">
<tr><td class="key">OAI Identifier</td>
<td class="value">
<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=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=ListMetadataFormats&amp;identifier={oai:identifier}">formats</a>
</td></tr>
<tr><td class="key">Datestamp</td>
<td class="value"><xsl:value-of select="oai:datestamp"/></td></tr>
<xsl:apply-templates select="oai:setSpec" />
</table>
<xsl:if test="@status='deleted'">
<p>This record has been deleted.</p>
</xsl:if>
</xsl:template>
<xsl:template match="oai:metadata">
&#160;
<div class="metadata">
<xsl:apply-templates select="*" />
</div>
&#160;
<div class="metadata">
<xsl:apply-templates select="*" />
</div>
</xsl:template>
<!--
Resumption Token
Resumption Token
-->
<xsl:template match="oai:resumptionToken">
<xsl:if test=". != ''">
<p>There are more results.</p>
</xsl:if>
<table class="values">
<tr><td class="key">Submitted Records</td>
<td class="value"><xsl:value-of select="@cursor"/></td></tr>
<tr><td class="key">Total Records</td>
<td class="value"><xsl:value-of select="@completeListSize"/></td></tr>
<tr><td class="key">Expiration Datestamp</td>
<td class="value"><xsl:value-of select="@expirationDate"/></td></tr>
<tr><td class="key">Resumption Token</td>
<td class="value">
<xsl:if test=". != ''">
<a class="link" href="?verb={/oai:OAI-PMH/oai:request/@verb}&amp;resumptionToken={.}">Resume</a>
</xsl:if>
</td></tr>
</table>
<xsl:if test=". != ''">
<p>There are more results.</p>
</xsl:if>
<table class="values">
<tr><td class="key">Submitted Records</td>
<td class="value"><xsl:value-of select="@cursor"/></td></tr>
<tr><td class="key">Total Records</td>
<td class="value"><xsl:value-of select="@completeListSize"/></td></tr>
<tr><td class="key">Expiration Datestamp</td>
<td class="value"><xsl:value-of select="@expirationDate"/></td></tr>
<tr><td class="key">Resumption Token</td>
<td class="value">
<xsl:if test=". != ''">
<a class="link" href="?verb={/oai:OAI-PMH/oai:request/@verb}&amp;resumptionToken={.}">Resume</a>
</xsl:if>
</td></tr>
</table>
</xsl:template>
<!--
Unknown Metadata
Unknown Metadata
-->
<xsl:template match="oai:metadata/*" priority='-100'>
<h3>Unknown Metadata Format</h3>
<div class="xmlSource">
<xsl:apply-templates select="." mode='xmlMarkup' />
</div>
<h3>Unknown Metadata Format</h3>
<div class="xmlSource">
<xsl:apply-templates select="." mode='xmlMarkup' />
</div>
</xsl:template>
<!--
DublinCore Metadata
DublinCore Metadata
-->
<xsl:template match="oai_dc:dc" xmlns:oai_dc="http://www.openarchives.org/OAI/2.0/oai_dc/" >
<div class="dcdata">
<h3>DublinCore Metadata</h3>
<table class="dcdata">
<xsl:apply-templates select="*" />
</table>
</div>
<div class="dcdata">
<h3>DublinCore Metadata</h3>
<table class="dcdata">
<xsl:apply-templates select="*" />
</table>
</div>
</xsl:template>
<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/">
<tr><td class="key">Relation</td><td class="value">
<xsl:choose>
<xsl:when test='starts-with(.,"http")'>
<xsl:choose>
<xsl:when test='string-length(.) &gt; 50'>
<a class="link" href="{.}">URL</a>
<i> URL not shown as it is very long.</i>
</xsl:when>
<xsl:otherwise>
<a href="{.}"><xsl:value-of select="."/></a>
</xsl:otherwise>
</xsl:choose>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="."/>
</xsl:otherwise>
</xsl:choose>
<xsl:choose>
<xsl:when test='starts-with(.,"http")'>
<xsl:choose>
<xsl:when test='string-length(.) &gt; 50'>
<a class="link" href="{.}">URL</a>
<i> URL not shown as it is very long.</i>
</xsl:when>
<xsl:otherwise>
<a href="{.}"><xsl:value-of select="."/></a>
</xsl:otherwise>
</xsl:choose>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="."/>
</xsl:otherwise>
</xsl:choose>
</td></tr>
</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>
<!--
EPICUR Metadata
EPICUR Metadata
-->
<xsl:template match="epicur:epicur" xmlns:epicur="urn:nbn:de:1111-2004033116" >
<div class="dcdata">
<h3>EPICUR Metadata</h3>
<table class="dcdata">
<xsl:apply-templates select="*" />
</table>
</div>
<div class="dcdata">
<h3>EPICUR Metadata</h3>
<table class="dcdata">
<xsl:apply-templates select="*" />
</table>
</div>
</xsl:template>
<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 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>
<!--
XML Pretty Maker
XML Pretty Maker
-->
<xsl:template match="node()" mode='xmlMarkup'>
<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;
</div>
<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;
</div>
</xsl:template>
<xsl:template match="text()" mode='xmlMarkup'><span class="xmlText"><xsl:value-of select='.' /></span></xsl:template>
<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:stylesheet>

View File

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