diff --git a/mir-module/src/main/java/org/mycore/mir/orcid/MIROrcidServlet.java b/mir-module/src/main/java/org/mycore/mir/orcid/MIROrcidServlet.java index 947b9a2ea8..35761b242d 100644 --- a/mir-module/src/main/java/org/mycore/mir/orcid/MIROrcidServlet.java +++ b/mir-module/src/main/java/org/mycore/mir/orcid/MIROrcidServlet.java @@ -1,8 +1,9 @@ package org.mycore.mir.orcid; import java.io.IOException; -import java.io.UnsupportedEncodingException; import java.net.MalformedURLException; +import java.net.URI; +import java.net.URISyntaxException; import java.net.URL; import java.net.URLEncoder; import java.nio.charset.StandardCharsets; @@ -55,10 +56,10 @@ public class MIROrcidServlet extends MCRServlet { private static final String SEARCH_ORCID_XPATH = "/search:search/search:result/common:orcid-identifier/common:path"; private static List getPersonList(String query) - throws MalformedURLException, UnsupportedEncodingException { - String encodedQuery = URLEncoder.encode(query, "UTF-8"); + throws MalformedURLException, URISyntaxException { + String encodedQuery = URLEncoder.encode(query, StandardCharsets.UTF_8); - URL url = new URL(ORCID_REQUEST_BASE + "search/?q=" + encodedQuery + "&rows=" + ORCID_FETCH_SIZE * 2); + URL url = new URI(ORCID_REQUEST_BASE + "search/?q=" + encodedQuery + "&rows=" + ORCID_FETCH_SIZE * 2).toURL(); try { Document document = new SAXBuilder().build(url); @@ -88,7 +89,7 @@ private static List getOrcidsFromDocument(Document document) { private static MIROrcidPersonEntry getEntry(String orcid) { try { - URL url = new URL(ORCID_REQUEST_BASE + orcid + "/personal-details"); + URL url = new URI(ORCID_REQUEST_BASE + orcid + "/personal-details").toURL(); Document document = new SAXBuilder().build(url); Element element = document.getRootElement(); @@ -105,7 +106,7 @@ private static MIROrcidPersonEntry getEntry(String orcid) { } return new MIROrcidPersonEntry(givenName.getTextTrim(), familyName.getTextTrim(), ORCID_URL + orcid); - } catch (JDOMException | IOException e) { + } catch (JDOMException | IOException | URISyntaxException e) { throw new MCRException(e); } } diff --git a/mir-module/src/main/java/org/mycore/mir/sherpa/MCRSherpaProxyResource.java b/mir-module/src/main/java/org/mycore/mir/sherpa/MCRSherpaProxyResource.java index 7607c44016..1f9fc142cd 100644 --- a/mir-module/src/main/java/org/mycore/mir/sherpa/MCRSherpaProxyResource.java +++ b/mir-module/src/main/java/org/mycore/mir/sherpa/MCRSherpaProxyResource.java @@ -22,6 +22,8 @@ import java.io.IOException; import java.io.InputStream; import java.net.MalformedURLException; +import java.net.URI; +import java.net.URISyntaxException; import java.net.URL; import java.util.Optional; @@ -64,17 +66,15 @@ public Response retrieve(@PathParam("type") String type, @QueryParam("filter") S urlStr+="&filter="+filter; } try { - URL url = new URL(urlStr); - try(InputStream is = url.openStream()){ - try(ByteArrayOutputStream bos = new ByteArrayOutputStream()){ - is.transferTo(bos); - return Response.ok(bos.toByteArray()).build(); - } + URL url = new URI(urlStr).toURL(); + try (InputStream is = url.openStream(); ByteArrayOutputStream bos = new ByteArrayOutputStream()) { + is.transferTo(bos); + return Response.ok(bos.toByteArray()).build(); } catch (IOException e) { LOGGER.error("Error while performing request!", e); return Response.serverError().build(); } - } catch (MalformedURLException e) { + } catch (MalformedURLException | URISyntaxException e) { LOGGER.error("Error while building URL " + urlStr, e); return Response.serverError().build(); } diff --git a/mir-module/src/main/java/org/mycore/mir/validation/MIRValidationHelper.java b/mir-module/src/main/java/org/mycore/mir/validation/MIRValidationHelper.java index 57be4e8ec7..abfd94235e 100644 --- a/mir-module/src/main/java/org/mycore/mir/validation/MIRValidationHelper.java +++ b/mir-module/src/main/java/org/mycore/mir/validation/MIRValidationHelper.java @@ -2,6 +2,8 @@ import java.io.IOException; import java.net.HttpURLConnection; +import java.net.URI; +import java.net.URISyntaxException; import java.net.URL; import org.apache.logging.log4j.LogManager; @@ -30,7 +32,7 @@ public static String validateSDNB(String sdnb) { public static boolean validatePPN(String ppn) { String database = MCRConfiguration2.getString("MIR.PPN.DatabaseList").orElse("gvk"); try { - URL url = new URL("http://uri.gbv.de/document/" + database + ":ppn:" + ppn); + URL url = new URI("http://uri.gbv.de/document/" + database + ":ppn:" + ppn).toURL(); HttpURLConnection connection = (HttpURLConnection) url.openConnection(); connection.setRequestMethod("GET"); connection.connect(); @@ -38,8 +40,8 @@ public static boolean validatePPN(String ppn) { if (resCode == 200 || resCode == 302) { return true; } - } catch (IOException e) { - LogManager.getLogger().error("IOException while validating PPN.", e); + } catch (IOException | URISyntaxException e) { + LogManager.getLogger().error("Exception while validating PPN.", e); } return false; } diff --git a/mir-module/src/main/resources/config/mir/messages_de.properties b/mir-module/src/main/resources/config/mir/messages_de.properties index 6374425ef1..0f12cc4e8e 100644 --- a/mir-module/src/main/resources/config/mir/messages_de.properties +++ b/mir-module/src/main/resources/config/mir/messages_de.properties @@ -1,7 +1,6 @@ #Generated by ResourceBundle Editor (http://essiembre.github.io/eclipse-rbe/) # [singular] and [plural] entries are used if objects # of type file appear e.g. as children -<<<<<<< Updated upstream IFS.directoryDelete = Verzeichnis l\u00F6schen @@ -822,765 +821,6 @@ subselect.category.title = Kategorie ausw\u00E4hlen user.profile.id.orcid = Ihre ORCID iD selfRegistration.error.mailExists = Die E-Mail-Adresse wird bereits verwendet. -======= -IFS.directoryDelete=Verzeichnis l\u00F6schen -basket=Merkliste -basket.add=auf die Merkliste -basket.add.searchpage=Alle Treffer dieser Seite merken -basket.button.down=nach unten verschieben -basket.button.remove=Eintrag entfernen -basket.button.up=nach oben verschieben -basket.clear=Merkliste leeren -basket.entries.multiple={0} Publikationen -basket.entries.none=Keine Publikationen -basket.entries.one=Eine Publikation -basket.numEntries.many=Auf ihrer Merkliste befinden sich {0} Dokumente. -basket.numEntries.none=Auf ihrer Merkliste befinden sich keine Dokumente. -basket.numEntries.one=Auf ihrer Merkliste befindet sich ein Dokument. -basket.open=Merkliste \u00F6ffnen -basket.remove=von Merkliste entfernen -basket.title.objects=Merkliste -browse.genre=Dokumenttypen -browse.mods.institution.corporate=Einrichtungen -browse.person.firstLetter=mit dem Buchstaben -browse.person.foundPersons=Gefundene Personen -browse.person.personNotFound=Keine Personen gefunden. -browse.person.searchPerson=oder mit den Zeichen -browse.person.searchplaceholder=Zeichen -browse.sdnb=Sachgruppen der Deutschen Nationalbibliographie -button.cancel=Abbrechen -button.loading=Lade... -button.save=Speichern -button.saveandredirect=Speichern und hochladen... -button.search=Suchen... -button.selectPerson=Person ausw\u00E4hlen -component.mods.metaData.dictionary.identifier.hdl=Handle -component.mods.metaData.dictionary.identifier.open-aire=OpenAIRE Kennzeichnung -component.mods.metaData.dictionary.tocLayout=Layout des Inhaltsverzeichnisses -component.mods.metaData.options.addFile=Hinzuf\u00FCgen einer Datei -component.mods.metaData.options.delDerivate=L\u00F6schen dieses Datenobjektes -component.mods.metaData.options.derivateLocked=Bearbeitung wg. PI gesperrt -component.mods.metaData.options.updateDerivateName=Dateibereich verwalten -component.mods.metaData.options.zip=als Zip speichern -component.pi.register.DNBURN=URN registrieren -component.pi.register.Datacite=DOI registrieren -component.pi.register.Epic=ePIC registrieren -component.pi.register.modal.abort=Abbrechen -component.pi.register.modal.text.DNBURN=Sind Sie sich sicher, dass Sie eine URN vergeben m\u00F6chten? Diese ist dauerhaft g\u00FCltig und kann nicht mehr gel\u00F6scht werden. -component.pi.register.modal.text.Datacite=Sind Sie sich sicher, dass Sie eine DOI vergeben m\u00F6chten? Diese ist dauerhaft g\u00FCltig und kann nicht mehr gel\u00F6scht werden. -component.pi.register.modal.text.Epic=Sind Sie sich sicher, dass Sie ein ePIC vergeben m\u00F6chten? Diese ist dauerhaft g\u00FCltig und kann nicht mehr gel\u00F6scht werden. -dataTable.filter=Filter -dataTable.filterInfo={0} bis {1} von {2} Eintr\u00E4gen -dataTable.first=Erster -dataTable.last=Letzter -dataTable.lengthMenu=Eintr\u00E4ge anzeigen -dataTable.next=N\u00E4chster -dataTable.noItemFound=Kein Eintrag gefunden! -dataTable.previous=Zur\u00FCck -editor.admin=Administration -editor.search.derivate=in den Dateien -editor.search.derivate.tooltip=Suchfeld f\u00FCr den Inhalt von Dateien -editor.search.fulltext.tooltip=Sollen nur Dokumente mit (frei verf\u00FCgbaren) Dateien angezeigt werden? -editor.search.genre.tooltip=Schr\u00E4nken Sie die Suche nach Dokumenttyp ein. -editor.search.license.tooltip=Schr\u00E4nken Sie die Suche nach Lizenzen ein -editor.search.metadata=in den Metadaten -editor.search.metadata.tooltip=Suchfeld f\u00FCr alle bibliografischen Angaben -editor.search.mir.author=Autor -editor.search.mir.expert=Expertensuche: -editor.search.mir.genre=Typ -editor.search.mir.hasFiles=vorhanden -editor.search.mir.identifier=Identifikator -editor.search.mir.identifier.tooltip=eindeutiges Kennzeichen wie z.B. ISBN, DOI oder MyCoRe-ID -editor.search.mir.impactFactor=Impact Factor -editor.search.mir.institute=Institution -editor.search.mir.institute.tooltip=Von welcher Einrichtung soll die Ver\u00F6ffentlichung stammen? -editor.search.mir.license=Nachnutzungsrechte -editor.search.mir.metadata=Metadaten -editor.search.mir.name=Name -editor.search.mir.name.tooltip=Name von Personen oder Institutionen, die am gesuchten Dokument mitwirkten -editor.search.mir.openAccess=frei verf\u00FCgbar -editor.search.mir.sdnb=Sachgruppe der DNB -editor.search.mir.sdnb.tooltip=auf der DDC basierende Klassifizierung nach Sachgruppen der DNB -editor.search.mir.title=Titel -editor.search.mir.title.tooltip=Titel des gesuchten Dokuments -editor.search.search=Suchen -editor.search.status=Ver\u00F6ffentlichungsstatus -editor.search.status.tooltip=Status der Publikation im Workflow\u0009\u0009 -mir.editor.person.authorSpecification=Autor(innen)-Spezifikation -mir.editor.person.search=Suchen -mir.editor.person.applyPerson=Name und alle IDs des Datensatzes \u00FCbernehmen -mir.editor.person.profession=Beruf -mir.editor.person.gender=Geschlecht -mir.editor.person.dateOfBirth=Geburtsdatum -mir.editor.person.alternateNames=Alternative Namen -mir.editor.person.website=Website -mir.editor.person.link=Link -mir.editor.person.wikipedia=Wikipedia -mir.editor.addIdentifier=ID hinzuf\u00FCgen -img.alt.search.complex=komplexe Suche -img.alt.search.simple=einfache Suche -latestObjects.more=ALLE -metaData.createdby=Erstellt von -metaData.derivateLocked=Volltext gesperrt -metaData.preview=Vorschau -metaData.previewInProcessing=Die Vorschau f\u00FCr {0} ist in Bearbeitung. Bitte versuchen Sie es sp\u00E4ter noch einmal. -metaData.review=Rezension -metadata.files.backToObject=zur\u00FCck zu den Metadaten -metadata.files.date=Datum -metadata.files.file=Dateien -metadata.files.name=Name -metadata.files.size=Gr\u00F6\u00DFe -metadata.files.toDerivate=zu den Dateien -metadata.versionInfo.action=Aktion -metadata.versionInfo.date=Datum -metadata.versionInfo.label=Versionsgeschichte -metadata.versionInfo.revision=Revision -metadata.versionInfo.startLabel=(Gesamte Versionsgeschichte) -metadata.versionInfo.user=Benutzer -metadata.versionInfo.version=Version -mir.abstract=Abstract -mir.abstract.aslink=als Link: -mir.abstract.editor=(Hrsg.) -mir.abstract.hideGroups=alles einklappen -mir.abstract.in=Abstract in: -mir.abstract.link=Link zum Abstract: -mir.abstract.ortext=oder Flie\u00DFtext: -mir.abstract.readless=\u00AB einklappen -mir.abstract.readmore=weiterlesen \u00BB -mir.abstract.showGroups=alles ausklappen -mir.abstract.text=Abstract, Beschreibung: -mir.abstract.text.2=Abstract, Beschreibung -mir.abstract.translated=Abstract-\u00DCbersetzung -mir.access=Zugriffsberechtigung -mir.accesskey=Zugriffsschl\u00FCssel -mir.accesskey.manage=Zugriffsschl\u00FCssel verwalten -mir.accesskey.required=Bitte geben Sie einen Zugriffsschl\u00FCssel ein. -mir.accesskey.setInfo=Gebebenenfalls besteht die M\u00F6glichkeit, einen Zugriffsschl\u00FCssel \u00FCber folgenden Link zu aktivieren. -mir.accesskey.setOnUser=Zugriffsschl\u00FCssel aktivieren -mir.actions=Aktionen -mir.actions.noaccess=Um das Dokument zu bearbeiten, melden Sie sich bitte an. -mir.actions.norights=Sie besitzen nicht die ben\u00F6tigten Rechte um das Dokument zu bearbeiten. -mir.admineditor=Bearbeiten im Admin-Editor -mir.affiliation=Zugeh\u00F6rigkeit -mir.articlenumber=Artikelnummer: -mir.articlenumber.short=Art.-Nr.: -mir.breadcrumb.home=Start -mir.cartographics.coordinates=Geographische Koordinaten: -mir.cartographics.coordinates.box=Box -mir.cartographics.coordinates.geoType=Geometrie-Typ -mir.cartographics.coordinates.none=Bitte w\u00E4hlen -mir.cartographics.coordinates.point=Punkt -mir.cartographics.coordinates.polygon=Polygon -mir.characteristics.no=Nein -mir.characteristics.yes=Ja -mir.citationAlert=Zitierform konnte nicht geladen werden. -mir.citationLink=Zitier-Link kopieren -mir.citationLink.title=Hier klicken um ggf. weitere Zitierlinks zu sehen. -mir.citationStyle=Zitierform: -mir.classification=Klassifikation(en):\u0009 -mir.classification.select=Klassifikation ausw\u00E4hlen -mir.college=Hochschule -mir.collegeplace=Hochschulort -mir.comment=Anmerkung: -mir.comment.type=Typ der Anmerkung: -mir.conference=Konferenz: -mir.confirm.cancelButton=Nein -mir.confirm.confirmButton=Ja -mir.confirm.derivate.text=Wollen Sie diesen Dateicontainer inkl. aller enthaltenen Dateien und ggf. Verzeichnissen l\u00F6schen? -mir.confirm.directory.text=Wollen Sie dieses Verzeichnis inkl. aller enthaltenen Dateien und ggf. Unterverzeichnissen l\u00F6schen? -mir.confirm.file.text=Wollen Sie diese Datei wirklich l\u00F6schen? -mir.confirm.text=Wollen Sie das Dokument mit ggf. allen angehangenen Dateien wirklich l\u00F6schen? -mir.confirm.title=Bitte best\u00E4tigen -mir.creator=Institution (Ersteller) -mir.creatorplace=Ort der Erstellung -mir.date.accepted=Annahme der Promotion / des Abschlusses: -mir.date.accepted.range=Annahme der Promotion / des Abschlusses: -mir.date.acceptedHabil=Habilitation am: -mir.date.broadcasted=Datum der Ausstrahlung: -mir.date.collected=Datum der Aufnahme: -mir.date.collected.range=Aufnahme: -mir.date.created=Erstellt am: -mir.date.created.range=Erstellung: -mir.date.issued.10=Ver\u00F6ffentlicht am: -mir.date.issued.4=Erscheinungsjahr: -mir.date.issued.onlyRange=Erscheinungsverlauf: -mir.date.issued.range=Ver\u00F6ffentlichung: -mir.date.period=Zeitraum -mir.date.recorded=Datum der Aufnahme: -mir.date.reviewed=Datum der \u00DCberpr\u00FCfung: -mir.date.reviewed.range=\u00DCberpr\u00FCfung: -mir.date.specification=Datumsangabe -mir.date.submitted=beantragt am: -mir.date.submitted.range=Einreichung: -mir.date.updated=Letzte \u00C4nderung: -mir.date.updated.range=Letzte \u00C4nderung: -mir.derivate.display.false=Dateibereich einblenden -mir.derivate.display.true=Dateibereich ausblenden -mir.derivate.no_access=Sie haben nicht die n\u00F6tigen Rechte, um die angeh\u00E4ngten Dateien zu sehen. -mir.derivate.no_access.intern=Um die angehangenen Dateien zu sehen, m\u00FCssen sie sich einloggen. -mir.derivate.no_access.ipAddressRange=Auf die angehangenen Dateien k\u00F6nnen Sie nur von einem Rechner der Bibliothek zugreifen. -mir.derivate.not_full_access=Sie haben nicht die n\u00F6tigen Rechte, um alle angeh\u00E4ngten Dateien zu sehen. -mir.derivate.type=Typ des Dateibereichs -mir.details.issue=Heft -mir.details.personpopover.title=Personendetails -mir.details.volume.journal=Jg. -mir.details.volume.series=Band -mir.dropdown.all=Alles -mir.dropdown.allMeta=Alle Metadaten -mir.dropdown.author=Autor -mir.dropdown.content=Volltext -mir.dropdown.name=Name -mir.dropdown.nameIdentifier=Namens Identifikator -mir.dropdown.title=Titel -mir.editing.delete=Diesen Eintrag l\u00F6schen -mir.editing.edit=Diesen Eintrag bearbeiten -mir.editing.embed=Referenzierten Eintrag einbetten -mir.editing.extract=Eingebetteten Eintrag auslagern -mir.editing.related.id=ID der Publikation eingeben -mir.editing.related.select=Publikation ausw\u00E4hlen -mir.editing.template.names=Neue Publikation der gleichen Person(en) eintragen -mir.editing.template.related=Neue verkn\u00FCpfte Publikation eintragen -mir.edition=Auflage: -mir.edition.out=Auflage -mir.editors.abbreviated=(Hrsg.) -mir.editstatus.canceled=Vorgang abgebrochen! -mir.editstatus.success=Erfolgreich gespeichert! -mir.embargo=Embargo: -mir.epusta.counter.abstract=Metadatenansicht: -mir.epusta.counter.fulltext=Volltextzugriffe: -mir.epusta.last12Month=12 Monate -mir.epusta.open=Grafik \u00F6ffnen -mir.epusta.panelheading=Zugriffsstatistik -mir.epusta.total=Gesamt -mir.error.blocked=Das Dokument ist gesperrt! -mir.error.codes.202=Die URL "{0}" ist korrekt, aber das Ausliefern leider nicht komplett. -mir.error.codes.400=Die URL "{0}" ist syntaktisch nicht korrekt. -mir.error.codes.401=Sie haben keine Berechtigung diese Seite zu sehen. -mir.error.codes.403=Sie d\u00FCrfen auf die URL "{0}" nicht zugreifen. -mir.error.codes.404=Die gew\u00FCnschte URL "{0}" wurde auf diesem Server nicht gefunden. -mir.error.codes.409=Die Anfrage nach "{0}" kann wegen eines Konfliktes nicht erf\u00FCllt werden. -mir.error.codes.412=Die Vorbedingung in einer oder mehreren der Kopfzeilen f\u00FCr die URL "{0}" trifft nicht zu. Diese Antwort soll es erm\u00F6glichen, dass der Anfragende Vorbedingungen in den Metainformationen der gew\u00FCnschte Ressource (Kopfzeilen) platziert, um zu verhindern, dass eine andere als die vorgesehene Ressource zur\u00FCckgeliefert wird. -mir.error.codes.413=Die Anfrage an "{0}" enth\u00E4lt mehr Daten als der Server verarbeiten m\u00F6chte oder kann. -mir.error.codes.416=Es wurden nur Teile von "{0}" angefordert. Diese Teile sind wohlm\u00F6glich \u00FCberlappend oder nicht in der korrekten Reihenfolge. -mir.error.codes.417=Der Server konnte nicht die Erwartung f\u00FCr die URL "{0}" erf\u00FCllen, die in der "Expect" Kopfzeile \u00FCbermittelt worden ist. -mir.error.codes.500=Es tauchte ein Fehler im Server auf, der verhinderte, dass die Anfrage nach "{0}" erf\u00FCllt werden konnte. -mir.error.codes.501=Der Server unterst\u00FCtzt nicht die notwendige Funktion ("Request method"), um diese Anfrage zu erf\u00FCllen. -mir.error.deleted=Das Dokument wurde gel\u00F6scht! -mir.error.finalLine=Mehr wissen wir auch nicht. -mir.error.headline={0}! -mir.error.headline.401=Zugriff gesperrt! -mir.error.headline.403=Zugriff gesperrt! -mir.error.message=Detaillierte Fehlernachricht -mir.error.subheadline=Das ist ein Fehler. -mir.export.choose=Bitte w\u00E4hlen Sie ein Export-Format. Nahezu alle g\u00E4ngigen Literaturverwaltungsprogramme unterst\u00FCtzen eines der folgenden Formate: -mir.export.format.bibtex=BibTeX -mir.export.format.bibtex.description=wird neben dem Textsatzsystem LaTeX auch von vielen Literaturverwaltungsprogrammen unterst\u00FCtzt. -mir.export.format.endnote=Endnote (tagged refer-format) -mir.export.format.endnote.description=f\u00FCr das Literaturverwaltungsprogramm Endnote (Thomson Reuters) und viele andere. -mir.export.format.isi=ISI Web of Science -mir.export.format.isi.description=Format des Web of Science (Web of Knowledge), Thomson Reuters, Institute for Scientific Information -mir.export.format.mods=MODS (Metadata Object Description Schema) -mir.export.format.mods.description=Standard der Library of Congress im XML-Format. Vollst\u00E4ndiger, verlustfreier Export. -mir.export.format.ris=RIS (Reference Manager) -mir.export.format.ris.description=Das RIS-Format ist ein Standard mit Ursprung im Literaturverwaltungsprogramm Reference Manager. -mir.export.format.wordbib=Microsoft Word 2007 Bibliographie-Datei -mir.export.format.wordbib.description=wird von Microsoft Office Word ab Version 2007 verwendet, um Literaturverzeichnisse zu verwalten. -mir.export.more=(mehr) -mir.extent=Umfang: -mir.form.editor.dynamic.header=Eingabeformular f\u00FCr -mir.form.editor.dynamic.header.in=in -mir.form.editor.dynamic.partof=Erschienen in -mir.geographic=Geografischer Ort: -mir.geographic.gnd.type=GND: -mir.help.abstract=Eine kurze Beschreibung des Datensatzes und des Kontextes (z.B. Zweck, Methoden der Datenerzeugung, r\u00E4umliche und zeitliche Eigenschaften, Datenqualit\u00E4t, Herkunft). -mir.help.abstract.aslink=Ist ein Abstract bereits im Web verf\u00FCgbar, kann dieses auch direkt verlinkt werden. -mir.help.abstract.language=Geben Sie die Sprache an, in der das hier ver\u00F6ffentlichte Abstract verfasst ist. Bei Zusammenfassungen in verschiedenen Sprachen k\u00F6nnen Sie diese mit dem \u201E+\u201C-Button wiederholen. -mir.help.abstract.ortext=Eine kurze Zusammenfassung des Dokumentinhalts. -mir.help.access=Geben Sie hier an, wer auf die angehangenen Dokumente zugreifen darf. -mir.help.affiliation=Organisation bzw. Institution der betreffenden Person. -mir.help.articlenumber=Die Nummer eines Artikels, der in einer Online-Zeitschrift oder auf einer Publikationsplattform erschienen ist. -mir.help.artist.photographer=K\u00FCnstler des Werkes oder Fotograf des Bildes. -mir.help.authorSpecification=Genauere Beschreibung der Autor(innen)-Rolle, meist relevant für Kontaktaufnahme oder statistische Auswertungen. -mir.help.author.interviewee=Eine Person, Familie oder Organisation, die f\u00FCr die Erstellung oder den Beitrag zu einer Ressource verantwortlich ist, indem sie auf einen Interviewer, in der Regel einen Reporter, Meinungsforscher oder \u00E4hnlichen, reagiert. -mir.help.cartographics.coordinates=Die Koordinaten des Ortes an dem die Daten erhoben bzw. gemessen wurden. M\u00F6glich ist die Eingabe in Form von: Longitude,Latitude(!) in Dezimalgrad (WGS84,EPSG 4326), oder die Auswahl \u00FCber OpenStreetMap. -mir.help.cartographics.place=Der Ort an dem die Daten erhoben bzw. gemessen wurden. M\u00F6glich ist die Eingabe einer Ortsbezeichnung. -mir.help.classification=Klassifikation ausw\u00E4hlen. -mir.help.college=Einrichtung in der die Hochschulschrift erstellt wurde. -mir.help.collegeplace=Ort an dem die Hochschulschrift erstellt wurde. -mir.help.comment=Hier kann eine beliebige Anmerkung zum Dokument notiert werden. -mir.help.comment.type=Der Typ der Anmerkung. Von Typ h\u00E4ngt es ab, ob die Anmerkung in den Metadaten oder in den Systeminformationen erscheint. -mir.help.conference=Tragen Sie bitte hier den Namen der Konferenz, ggf. mit Ort, Jahr oder Datum ein, in deren Zusammenhang das Dokument entstanden ist. -mir.help.creator=Institution unter deren Obhut das Werk erstellt wurde. -mir.help.creatorplace=Sitz der Institution. -mir.help.date.accepted=Datum der Promotion / des Abschlusses des Pr\u00FCfungsverfahrens. Das Datum muss im ISO Format mit Bindestrich \u201EYYYY-MM-DD\u201C, \u201EYYYY-MM\u201C oder \u201EYYYY\u201C angegeben werden.
\r\nBeispiel: \u201E2003-01-27\u201C oder \u201E2010\u201C oder \u201E2009-01\u201C -mir.help.date.accepted.range=Datum oder Zeitraum der Promotion / des Abschlusses des Pr\u00FCfungsverfahrens. Das Datum muss im ISO Format mit Bindestrich \u201EYYYY-MM-DD\u201C, \u201EYYYY-MM\u201C oder \u201EYYYY\u201C angegeben werden.
\r\nBeispiel: \u201E2003-01-27\u201C oder \u201E2010\u201C oder \u201E2009-01\u201C -mir.help.date.acceptedHabil=Datum der Promotion / des Abschlusses. Das Datum muss im ISO Format mit Bindestrich YYYY-MM-DD, YYYY-MM oder YYYY angegeben werden.\r\n
\r\nBeispiel: 2003-01-27 oder 2010 oder 2009-01 -mir.help.date.broadcasted=Datum an dem die Sendung in Radio oder Fernsehen gezeigt wurde (Erstausstrahlung). -mir.help.date.collected.range=Datum oder Zeitraum der Aufnahme (Erfassung). Das Datum muss im ISO-Format mit Bindestrich YYYY-MM-DD, YYYY-MM oder YYYY\r\nangegeben werden.\r\n
\r\nBeispiel: 2003-01-27 oder 2010 oder 2009-01 -mir.help.date.created=Datum der Erstellung. Das Datum muss im ISO-Format mit Bindestrich YYYY-MM-DD, YYYY-MM oder YYYY\r\nangegeben werden.\r\n
\r\nBeispiel: 2003-01-27 oder 2010 oder 2009-01 -mir.help.date.created.range=Datum oder Zeitraum der Erstellung. Das Datum muss im ISO-Format mit Bindestrich YYYY-MM-DD, YYYY-MM oder YYYY\r\nangegeben werden.\r\n
\r\nBeispiel: 2003-01-27 oder 2010 oder 2009-01 -mir.help.date.issued.10=Bei Konferenzb\u00E4nden, B\u00FCchern geben Sie bitte das Erscheinungsjahr an, bei Filmen das Datum der Aufnahme, bei Promotionen das Datum der ersten Online-Ver\u00F6ffentlichung. Das Datum muss im ISO-Format mit Bindestrich YYYY-MM-DD, YYYY-MM oder YYYY angegeben werden.\r\n
\r\nBeispiel: 2003-01-27 oder 2010 oder 2009-01 -mir.help.date.issued.4=Bei Konferenzb\u00E4nden, B\u00FCchern geben Sie bitte das Erscheinungsjahr an, bei Filmen das Datum der Aufnahme, bei Promotionen das Datum der ersten Online-Ver\u00F6ffentlichung. Das Datum muss im ISO-Format mit Bindestrich YYYY-MM-DD, YYYY-MM oder YYYY angegeben werden.\r\n
\r\nBeispiel: 2003-01-27 oder 2010 oder 2009-01 -mir.help.date.issued.onlyRange=Zeitraum, in dem das Journal oder die Serie erschienen ist. -mir.help.date.recorded=Wenn es sich bei den Erfassten Daten um eine Aufnahme handelt, kann hier das Aufnahmedatum angegeben werden. -mir.help.date.repeated=Das Datum (oder der Zeitraum) an dem die Daten erhoben, erstellt, ver\u00F6ffentlicht, etc. wurden. Bitte w\u00E4hlen Sie den entsprechenden Typ aus der Liste aus. Alle Angaben sind im ISO Format mit Bindestrich JJJJ-MM-TT. Weitere Datumsangaben lassen sich mit Hilfe des \u201E+\u201C-Buttons in separaten Zeilen hinzuzuf\u00FCgen. -mir.help.date.reviewed.range=Datum oder Zeitraum der \u00DCberpr\u00FCfung. Das Datum muss im ISO-Format mit Bindestrich YYYY-MM-DD, YYYY-MM oder YYYY angegeben werden.\r\n
\r\nBeispiel: 2003-01-27 oder 2010 oder 2009-01 -mir.help.date.submitted=Datum der Einreichung. Das Datum muss im ISO Format mit Bindestrich YYYY-MM-DD, YYYY-MM oder YYYY\r\nangegeben werden.\r\n
\r\nBeispiel: 2003-01-27 oder 2010 oder 2009-01 -mir.help.date.submitted.range=Datum oder Zeitraum der Einreichung. Das Datum muss im ISO Format mit Bindestrich YYYY-MM-DD, YYYY-MM oder YYYY\r\nangegeben werden.\r\n
\r\nBeispiel: 2003-01-27 oder 2010 oder 2009-01 -mir.help.date.updated=Datum der Aktualisierung. Das Datum muss im ISO Format mit Bindestrich YYYY-MM-DD, YYYY-MM oder YYYY\r\nangegeben werden.\r\n
\r\nBeispiel: 2003-01-27 oder 2010 oder 2009-01 -mir.help.date.updated.range=Datum oder Zeitraum der Aktualisierung. Das Datum muss im ISO Format mit Bindestrich YYYY-MM-DD, YYYY-MM oder YYYY\r\nangegeben werden.\r\n
\r\nBeispiel: 2003-01-27 oder 2010 oder 2009-01 -mir.help.derivate.label=Technische Beschriftung f\u00FCr die interne Verwendung. -mir.help.derivate.title=Beschriftung f\u00FCr die Darstellung auf der Webseite in Abh\u00E4ngigkeit von der Sprache. -mir.help.doi.handle.urn=Falls bereits eine DOI, ein Handle oder eine URN f\u00FCr Ihren Beitrag vergeben wurde, ist dieser persistente Identifikator hier anzugeben. -mir.help.edition=Auflagen- oder Ausgabebezeichnung der Publikation. -mir.help.editor.honoree=Eine Person, Familie oder Organisation, die durch eine Arbeit oder einen Gegenstand geehrt wird (z. B. der Geehrte einer Festschrift, eine Person, der eine Kopie vorgelegt wird). -mir.help.editor.organization=Tragen Sie den Namen der herausgebenden Einrichtung ein. Sie k\u00F6nnen \u00FCber den Suchen-Knopf ggf. den passenden GND-Eintrag ausw\u00E4hlen. -mir.help.embargo=Bitte geben Sie hier das Datum an, wann das Embargo ablaufen soll. Erst dann wird der Datensatz \u00F6ffentlich zug\u00E4nglich sein. Bis dahin haben nur Sie Zugriff. Alle Angaben sind im ISO Format mit Bindestrich JJJJ-MM-TT. Beispiel: \u201E2003-01-27\u201C oder \u201E2010\u201C oder \u201E2009-01\u201C.\r\n -mir.help.expand=Hier k\u00F6nnen Sie klicken, um mehr Optionen zu bekommen. -mir.help.extension.characteristics=Bitte geben Sie pro Jahr den Impact Faktor an und/oder w\u00E4hlen Sie aus, ob die Zeitschrift bzw. der Artikel in diesem Jahr referiert wurde. -mir.help.extent=Zahl der Seiten des Werks (bitte nur die durchgez\u00E4hlten Seiten ber\u00FCcksichtigen). Bei Bildern werden die Ausma\u00DFe angegeben. -mir.help.genre=Typ der Publikation bzw. Genre. -mir.help.geographicIdentifier=Falls der Ort bereits mit einer GND verkn\u00FCpft ist, kann diese hier angegeben werden. -mir.help.host.date=Datumsangaben zum beschriebenen Teil/Band/Volume. Angabe in ISO 8601 YYYY-MM-DD. -mir.help.host.order=Angabe einer Nummer, um die Reihenfolge in der \u00FCbergeordneten Publikation zu \u00E4ndern. Bitte nur eine ganze positive Zahl angeben. -mir.help.host.pages=Angabe der Seiten, auf denen Ihr Beitrag im Kontext einer \u00FCbergeordneten Publikation erschienen ist. -mir.help.identifier=

\r\nEin Identifier ist ein eindeutige und dauerhafte Kennung f\u00FCr eine digitale Ressource oder ein physisches Werk.\r\nEs k\u00F6nnen auch mehrere unterschiedliche Identifikatoren (DOI, URN, URI ...) angegeben werden.\r\n

\r\n

\r\nISBN ist immer in Form der ISBN13 anzugeben - mit Bindestrichen! Liegt nur die ISBN10 vor, so muss diese entsprechend konvertiert\r\nwerden (978 davor schreiben und Pr\u00FCfziffer anpassen). Einen Online-Konverter gibt es z.B. hier:\r\nhttp://www.isbn.org/converterpub.asp\r\n

\r\n

\r\nFalls eine DOI des Verlages vorhanden ist, ist diese in jedem Fall anzugeben. Soll die PPN angegeben werden, so ist der\r\nPPN-Zitierlink als URI einzutragen.\r\n

-mir.help.identifier.intern=Identifikator der Publikation, der nur einen begrenzten G\u00FCltigkeitsraum hat (z.B. innerhalb eines bestimmten Systems oder einer Einrichtung). -mir.help.identifier.isbn=ISBN ist immer in Form der ISBN13 anzugeben - mit Bindestrichen! Liegt nur die ISBN10 vor, so muss diese entsprechend konvertiert werden (978 davor schreiben und Pr\u00FCfziffer anpassen). Einen Online-Konverter gibt es z.B. hier: http://www.isbn.org/converterpub.asp. -mir.help.identifier.issn=Die ISSN der Zeitschrift. -mir.help.identifier.patent=Patentnummer unter der das Dokument gef\u00FChrt wird. -mir.help.identifier.project=Projekt-ID -mir.help.identifier.zdbid=ID der Zeitschrift bei der Zeitschriftendatenbank. -mir.help.institutes=Bitte nennen Sie die Einrichtung, der Sie zum Zeitpunkt der Erstver\u00F6ffentlichung Ihres Beitrags zugeh\u00F6rig waren. -mir.help.issue=Teillieferung des Zeitschriftenjahrgangs, in dem Ihr Beitrag erschienen ist (\u00FCblicher Weise die Heftnummer). -mir.help.language=Die Sprache, die im Datensatz verwendet wird. -mir.help.link=Hier k\u00F6nnen Sie eine URL zum beschriebenen Dokument angeben, wenn dieses sich auf Webseiten Dritter befindet, z.B. "http://www.springerlink.com/content/f7uw40686u422430/".\r\n
\r\n
\r\nVerweise zu anderen Informationen rund um das Dokument geh\u00F6ren nicht hierher. Diese k\u00F6nnen z.B. im Kommentarfeld oder bei der Beschreibung abgelegt werden. -mir.help.link.blog=Geben Sie hier den Link direkt zum Blockeintrag an. -mir.help.link.blog_entry=Geben Sie hier den Link zum Blog an. -mir.help.link.raw_object=Hier k\u00F6nnen Sie eine URL zum beschriebenen Dokument angeben, wenn dieses sich auf Webseiten Dritter befindet, z.B.\r\n"http://www.springerlink.com/content/f7uw40686u422430/".\r\n
\r\n
\r\nVerweise zu anderen Informationen rund um das Dokument geh\u00F6ren nicht hierher. Diese k\u00F6nnen z.B. im Kommentarfeld\r\noder bei der Beschreibung abgelegt werden. -mir.help.link.title=Geben Sie eine kurze Beschreibung an, die anstelle der URL gezeigt werden soll, z.B. "Version beim Springerverlag". -mir.help.name.repeated=Name und Rolle der Personen, in welcher sie bei der Erstellung des Dokumentes mitgewirkt haben. (Verlinkung auf GND). -mir.help.nameIdentifier=Falls die Person oder Organisation bereits mit einer GND oder VIAF verkn\u00FCpft ist, kann diese hier angegeben werden. -mir.help.namePart=Aufteilung des Namens in verschiedene Teile wie z.B. Vor- und Nachname. -mir.help.nameType=Typ des Namen. -mir.help.physical.description.form=Eine Bezeichnung einer bestimmten physischen Pr\u00E4sentation einer Ressource, einschlie\u00DFlich der physischen Form oder des Mediums eines Materials f\u00FCr eine Ressource. -mir.help.physical.description.note=Eine detaillierte Beschreibung der Datenstruktur, inkl. Beschreibung der Variablen/Parameter, Einheiten, verwendete Datenstandards, Datentypen (z.B. numeric, string). -mir.help.place=Der erstgenannte Erscheinungsort der Publikation. -mir.help.place.country=Erscheinungsland. -mir.help.producer.speaker=Eine Person, der zu einer Publikation beitr\u00E4gt, indem sie einen Vortrag, eine Rede usw. h\u00E4lt. -mir.help.project.acronym=Dies ist das Projektk\u00FCrzel. Auch hierf\u00FCr wird eine Autovervollst\u00E4ndigung aus den gelisteten OpenAIRE-Projekten angeboten. -mir.help.project.grant=Diese Felder werden bei Auswahl des Projektnamens bzw. -Akronyms automatisch ausgef\u00FCllt. Alternativ k\u00F6nnen die Angaben von Hand eingepflegt werden. F\u00FCr eine Meldung der Publikation \u00FCber OpenAIRE ist die Angabe Grant-ID, Programm-ID und Organisations-ID Pflicht! -mir.help.project.name=Geben Sie hier den Namen des Projektes ein. W\u00E4hrend der Eingabe wird eine Autovervollst\u00E4ndigung (enth\u00E4lt nur OpenAIRE-Projekte) angeboten. Wenn Sie den Namen aus der angebotenen Liste ausw\u00E4hlen, werden die restlichen Felder ausgef\u00FCllt. -mir.help.publisher=Verlagsname oder verlegende Institution in ausgeschriebener Form. -mir.help.publisher.organization=Die f\u00FCr die Ver\u00F6ffentlichung, Freigabe oder Erteilung der Publikation zust\u00E4ndige Einrichtung bzw. Organisation. -mir.help.publisher.station=Herausgeberstation (?) -mir.help.related.item=Hier k\u00F6nnen Sie das Dokument mit anderen bereits erfassten Publikationen verkn\u00FCpfen. W\u00E4hlen Sie dazu die entsprechende Publikation aus. Ihnen stehen Such- und Filteroption in der Auswahl zur Verf\u00FCgung. Wenn Sie die entsprechende Publikation gefunden haben, k\u00F6nnen Sie diese \u00FCber den Knopf "Ausw\u00E4hlen" zuordnen. Alternativ brechen Sie \u00FCber den Knopf "Abbrechen" die Auswahl ab. -mir.help.research.data.person=Name einer Person, die f\u00FCr den Datensatz verantwortlich ist, ihn erstellt hat, oder in einem anderen Zusammenhang mit ihm steht. W\u00E4hlen Sie die entsprechende Rolle aus der Liste aus. \u00DCber die Suche l\u00E4sst sich eine Person aus der GND der DNB ausw\u00E4hlen.\nWeitere Personen lassen sich mit Hilfe des \u201E+\u201C-Buttons in separaten Zeilen hinzuzuf\u00FCgen. -mir.help.rights=Unter welcher Lizenz stellen Sie Ihr Dokument hier ein? -mir.help.rightsHolder=Rechteinhaber im Sinne des Urheberrechts. -mir.help.role.advisor=Personen, die die Erstellung der Qualifikationsarbeit wissenschaftlich betreut haben. -mir.help.role.author=Person(en), die ma\u00DFgeblich an der Entstehung der Publikation beteiligt war(en) und diese verfasst haben. -mir.help.role.editor=Nat\u00FCrliche oder juristische Person oder Personengruppe, die den gesamten Publikationskontext \u2013 z.B. Sammelwerk oder Konferenzband \u2013 Ihres Einzelbeitrags inhaltlich verantwortet. -mir.help.role.inventor=Eine Person, Familie oder Organisation, die f\u00FCr die Erstellung eines neuen Ger\u00E4ts oder Prozesses verantwortlich ist. -mir.help.role.thesis=Person, die diese Hochschulschrift verfasst hat. -mir.help.role.thesisHabil=Die Person(en), die diese Habilitation verfasst bzw. ma\u00DFgeblich erstellt haben. -mir.help.sdnb=Die Zuordnung des Dokumentes zur Sachgruppe der DNB. Mit dem "+" Button k\u00F6nnen weitere Sachgruppen hinzugef\u00FCgt werden. -mir.help.series.title=Offizieller Titel der Serie / Schriftenreihe zum Zeitpunkt des Erscheinens Ihres Beitrags. -mir.help.series.volume=Manche Schriftenreihen z\u00E4hlen die darin erschienenen Einzelb\u00E4nde fort. Bitte geben Sie gegebenenfalls die Nummer Ihres Werks an. -mir.help.shelfmark=Signatur der Bibliothek unter der das Dokument im Bestand zu finden ist. -mir.help.sponsor.organisation=Eine Einrichtung oder Organisation, durch deren F\u00F6rderung die vorliegende Publikation in irgendeiner Art unterst\u00FCtzt wurde, z. B. Forschungsfinanzierung, Sponsoring einer Veranstaltung o.\u00E4. -mir.help.sponsor.program=Ein konkretes, gef\u00F6rdertes Programm oder Projekt in dessen Rahmen die Publikation entstanden ist. -mir.help.status=Geben Sie hier den Status der Publikation an. So lange ein Dokument den Status "eingereicht" hat, kann es auch vom Ersteller/Ablieferer bearbeitet werden. Dokumente die den Status "ver\u00F6ffentlicht" haben, sind f\u00FCr alle Nutzer findbar. -mir.help.subject.topic=Jedes frei zu vergebende Schlagwort sollte in ein separates Eingabefeld geschrieben werden. Bei mehreren Schlagw\u00F6rtern f\u00FCgen Sie mit dem "+"-Button jeweils ein neues Feld hinzu oder trennen Sie die Schlagw\u00F6rter mit einem ";". -mir.help.subject.topic.complex=Thematisch zusammengeh\u00F6rige Schlagw\u00F6rter sollten in einer Gruppe eingetragen werden. Mit dem '+'Button kann eine neue Gruppe zu erzeugt werden. -mir.help.subject.topic.gnd=Jedes Schlagwort sollte in ein separates Eingabefeld geschrieben werden, Alternativ trennen Sie die Schlagw\u00F6rter mit einem ";". Au\u00DFerdem kann das Schlagwort mit einer GND versehen werden. Nach der GND kann \u00FCber "Suchen..." gesucht werden. -mir.help.thesis.advisor.reviewer=Eine Person oder Organisation, die f\u00FCr die \u00DCberpr\u00FCfung bzw. Begutachtung der Dissertation verantwortlich ist. -mir.help.thesisHabil.reviewer=Eine Person oder Organisation, die f\u00FCr die \u00DCberpr\u00FCfung bzw. Begutachtung der Habilitation verantwortlich ist. -mir.help.title=Titel des Datensatzes (oder Objekts). -mir.help.title.abbreviated=Offizielle Abk\u00FCrzung der Zeitschrift / Schriftenreihe laut Zeitschriftendatenbank. -mir.help.title.blog=Geben Sie den Titel des Blogs an. -mir.help.title.complex=Bitte geben Sie die Sprache und die Art des zu erfassenden Titels an. Der f\u00FChrende Artikel kann separat angegeben werden, um diesen von der alphabetischen Sortierung auszuschlie\u00DFen.\r\n -mir.help.title.journal=Offizieller Titel der Zeitschrift (laut Zeitschriftendatenbank) zum Zeitpunkt des Erscheinens Ihres Beitrags. -mir.help.title.newspaper=Titel der Zeitung -mir.help.title.subTitle=Untertitel des Dokuments. Dieser wird durch einen Doppelpunkt getrennt vom Haupttitel dargestellt. -mir.help.title.thesis=Bitte geben Sie m\u00F6glichst auch eine englische \u00DCbersetzung des Titels an! -mir.help.title.thesis.translated=Der \u00FCbersetzte Titel. Mit dem "+"-Knopf k\u00F6nnen weitere \u00DCbersetzungen des Titels hinzugef\u00FCgt werden. -mir.help.tocLayout=Die Auswahl ist optional und nur f\u00FCr Zeitschriften, Serien etc. relevant.\r\nVerf\u00FCgbare Layouts sind in der Datei toc-layouts.xml definiert! -mir.help.topicIdentifier=Falls das Schlagwort bereits mit einer GND verkn\u00FCpft ist, kann diese hier angegeben werden. -mir.help.typeOfResource=

Folgende Optionen stehen zu Auswahl:

\r\n -mir.help.volume=Ist Ihr Beitrag in einer Zeitschrift oder als Teil einer Serie erschienen, so sind hier bitte Band, Volume bzw. Jahrgang anzugeben. -mir.host.date=Datum -mir.identifier.doi=DOI: -mir.identifier.hdl=Handle: -mir.identifier.intern=interne ID: -mir.identifier.isbn=ISBN: -mir.identifier.issn=ISSN: -mir.identifier.other=Sonstiges ({0}) -mir.identifier.patent=Patentnummer: -mir.identifier.ppn=PPN: -mir.identifier.project=Projekt-ID: -mir.identifier.uri=URI: -mir.identifier.urn=URN: -mir.identifier.zdbid=ZDB-ID: -mir.institution=Einrichtung -mir.issue=Heft: -mir.iwstatus.success=ImageWare-Paket wird erstellt ... -mir.jop=Verf\u00FCgbarkeit online & gedruckt anzeigen -mir.label=Label: -mir.language=Sprache: -mir.language.change=Sprache wechseln -mir.lecture.number=Vorlesungsnummer: -mir.lecture.semester=Semester: -mir.link=Link URL: -mir.link.blog=Link zum Blog: -mir.link.blog_entry=Link zum Blog-Eintrag: -mir.link.object_in_context=Link im Kontext: -mir.link.preview=Link zur Vorschau: -mir.link.raw_object=Link zum Volltext: -mir.link.title=Verbundene Quellen, Titel: -mir.loginRequiredInfo=Bitte nutzen Sie folgenden Link, um sich am System anzumelden. -mir.lsf.pid-link=im Online-Personal- und -Vorlesungsverzeichnis LSF anzeigen -mir.mail=E-Mail -mir.metaData.panel.heading.mir-access-rights=Rechte -mir.metaData.panel.heading.mir-citation=Zitieren -mir.metaData.panel.heading.mir-thumbnail=Vorschaubild -mir.metaData.panel.heading.mir-epusta=Zugriffsstatistik -mir.metaData.panel.heading.mir-export=Export -mir.metaData.panel.heading.mir_admindata_panel=Systeminformation -mir.metadata.content=Inhalt -mir.metadata.isReferencedBy=Referenziert von -mir.metadata.otherVersion=Andere Version -mir.metadata.review=Rezension -mir.metadata.succeeding=Nachfolger -mir.metadata.succeedingVersion=Neue Version -mir.namePart.date=Datum -mir.namePart.family=Nachname -mir.namePart.given=Vorname -mir.namePart.other=Sonstiges -mir.namePart.termsOfAddress=Anrede -mir.nameType=Typ -mir.nameType.conference=Konferenz -mir.nameType.corporate=K\u00F6rperschaft -mir.nameType.family=Familie -mir.nameType.personal=Person -mir.noScript.link=Anleitung wie Sie JavaScript in Ihrem Browser einschalten -mir.noScript.text=Um den vollen Funktionsumfang dieser Webseite zu erfahren, ben\u00F6tigen Sie JavaScript. Hier finden Sie die -mir.note=Notiz: -mir.order=Sortierung -mir.pages=Seiten -mir.pages.abbreviated.multiple=S. -mir.pages.abbreviated.single=S. -mir.pages.from=Seiten von: -mir.pages.to=bis -mir.pagination.entriesInfo={0} bis {1} von {2} Eintr\u00E4gen -mir.pagination.first=erste Seite -mir.pagination.hits.back=zur\u00FCck zur Trefferliste -mir.pagination.hits.entriesInfo={0} von {1} -mir.pagination.hits.next=n\u00E4chster Treffer -mir.pagination.hits.previous=vorheriger Treffer -mir.pagination.last=letzte Seite ({0}) -mir.pagination.next=n\u00E4chste Seite -mir.pagination.previous=vorherige Seite -mir.physical.description.form=Dateityp: -mir.physical.description.note=Datenstruktur: -mir.place=Erscheinungsort: -mir.place.country=Anmeldeland: -mir.placeholder.abstract.link=Link -mir.placeholder.characteristics.factor=Impact Factor -mir.placeholder.characteristics.year=JJJJ -mir.placeholder.college=Einrichtung -mir.placeholder.collegeplace=Ort der Einrichtung -mir.placeholder.conference=Titel der Konferenz ggf. mit Ort und Jahr oder Datum -mir.placeholder.date=JJJJ-MM-TT -mir.placeholder.derivate.order=Reihenfolge -mir.placeholder.edition=z. B. "3. Auflage" oder Bezeichnung der Ausgabe -mir.placeholder.extent=z. B. "50 Seiten" -mir.placeholder.name.family=Nachname -mir.placeholder.name.given=Vorname -mir.placeholder.name.organization=Name der Einrichtung -mir.placeholder.response.search=Suche in den Publikationen -mir.placeholder.series.title=z. B. "Beitr\u00E4ge zur Politikwissenschaft" -mir.placeholder.series.volume=z. B. "124" -mir.placeholder.title.link=Titel zum Link -mir.placeholder.title.main=Original-Titel -mir.placeholder.title.translated=\u00DCbersetzter Titel -mir.placeholder.year=JJJJ -mir.project.acronym=Projekt-Akronym: -mir.project.grantID=Grant-ID -mir.project.information=Projektinformation (OpenAIRE) -mir.project.name=Projektname: -mir.project.sponsor.organisation=F\u00F6rderorganisation: -mir.project.sponsor.organisationID=Organisation-ID -mir.project.sponsor.program=F\u00F6rderprogramm: -mir.project.sponsor.programmID=Programm-ID -mir.publication=Publikation -mir.publish.intro=Hier k\u00F6nnen Sie Ihre Publikation melden. \u00DCber diese Auswahl gelangen Sie zu den gew\u00FCnschten Eingabemasken, \u00FCber die Sie Ihre Publikationen eintragen k\u00F6nnen. Bitte w\u00E4hlen Sie den Publikationstyp: -mir.publisher=Verlag: -mir.publisher.station=Sender: -mir.publisherOrganization=Herausgebende Einrichtung -mir.register.email=your.mail@address.de -mir.register.realName=Vorname Nachname -mir.relatedItem=Verbundene Quelle -mir.relatedItem.alreadyLinked=Das ausgew\u00E4hlte Dokument wurde bereits mit diesem Dokument verkn\u00FCpft. -mir.relatedItem.doesNotExist=Referenz kann nicht angezeigt werden oder wurde gel\u00F6scht -mir.relatedItem.has_grouping=Teil einer Gruppierung -mir.relatedItem.host=Erschienen in -mir.relatedItem.in.book=Dieser Beitrag ist in folgendem Sammelwerk erschienen: -mir.relatedItem.in.common=Erschienen in: -mir.relatedItem.in.festschrift=Dieser Beitrag ist in folgender Festschrift erschienen: -mir.relatedItem.in.journal=Dieser Artikel ist in folgender Zeitschrift erschienen: -mir.relatedItem.in.lexicon=Dieser Eintrag ist in folgendem Lexikon erschienen: -mir.relatedItem.in.newspaper=Dieser Artikel ist in folgender Zeitung erschienen: -mir.relatedItem.in.proceedings=Dieser Beitrag ist in folgendem Tagungsband erschienen: -mir.relatedItem.isReferencedBy=Wird referenziert von -mir.relatedItem.list=Folgende {0} Publikationen verweisen auf diese Publikation -mir.relatedItem.original=Original -mir.relatedItem.others=Weitere Verkn\u00FCpfungen -mir.relatedItem.otherFormat=Anderes Format -mir.relatedItem.otherVersion=Andere Version -mir.relatedItem.preceding=Vorg\u00E4nger -mir.relatedItem.references=Referenziert -mir.relatedItem.review.request=Antrag auf Rezension -mir.relatedItem.reviewOf=Rezension von -mir.relatedItem.search=Verkn\u00FCpfte Publikationen als separate Trefferliste anzeigen -mir.relatedItem.series=In Serie -mir.response.button.filter=Filter -mir.response.openAccess.facet.false=beschr\u00E4nkt\n -mir.response.openAccess.facet.title=Verf\u00FCgbarkeit -mir.response.openAccess.facet.true=frei -mir.response.openAccess.false=Keine frei verf\u00FCgbare Datei angehangen. -mir.response.openAccess.true=Frei verf\u00FCgbare Datei angehangen. -mir.response.relevance=Relevanz des Treffers in Bezug auf alle Treffer dieser Suche -mir.results.hitDoesNotExist=Dieser Treffer kann nicht angezeigt werden oder wurde gerade gel\u00F6scht. -mir.rights=Lizenz -mir.rightsHolder=Rechteinhaber: -mir.role.advisor=Akademische Betreuung: -mir.role.annotator=Kommentator(in): -mir.role.artist=K\u00FCnstler(in): -mir.role.author=Autor(in): -mir.role.collector=Zusammensteller(in): -mir.role.contributor=Beitragende(r): -mir.role.creator=Urheber(in): -mir.role.dataContributor=Daten-Beitragende(r): -mir.role.editor=Herausgeber(in): -mir.role.honoree=Geehrte Person/K\u00F6rperschaft: -mir.role.interviewee=Interviewte Person: -mir.role.interviewer=Interviewer(in): -mir.role.inventor=Erfinder(in): -mir.role.metadataContact=Metadaten-Kontakt: -mir.role.other=Sonstige: -mir.role.owner=Eigent\u00FCmer(in): -mir.role.photographer=Fotograf(in): -mir.role.producer=Audio-/Video-Produktion: -mir.role.producer.name=Produzent(in): -mir.role.publisher=Verlag, Verleger(in): -mir.role.reviewer=Gutachter(in): -mir.role.speaker=(Vor-)Redner(in): -mir.role.thesis=Doktorand(in): -mir.role.thesisHabil=Habilitand(in): -mir.search.all=Alle Felder: -mir.search.in=Enthalten in: -mir.search.name=Person: -mir.search.name.advisor=Akademische Betreuung: -mir.search.name.creator=Autor: -mir.search.name.editor=Herausgeber: -mir.search.name.reviewer=Gutachter: -mir.search.new=Neue Suche -mir.search.refine=Suche verfeinern -mir.search.simple=Suche nach: -mir.search.title=Titel: -mir.search.year=Erscheinungsjahr: -mir.searchIdentifier.noResult=
Es wurde kein Eintrag gefunden!
-mir.select=(bitte w\u00E4hlen) -mir.select.collection=einem Sammelwerk -mir.select.editor=(Herausgeber) -mir.select.festschrift=einer Festschrift -mir.select.host=erschienen in: -mir.select.journal=einer Zeitschrift -mir.select.lexicon=einem Lexikon -mir.select.newspaper=einer Zeitung -mir.select.optional=(bitte ggf. w\u00E4hlen) -mir.select.proceedings=einem Tagungsband -mir.select.research_data=Forschungsdaten -mir.select.series=einer Serie -mir.series.title=in der Serie: -mir.series.volume=Bandnr. der Serie: -mir.shariff.subject=MIR -mir.shelfmark=Bibliothekssignatur: -mir.sort.name=nach Name -mir.sort.title=nach Titel -mir.sort.year=nach Jahr -mir.state.blocked=Gesperrt -mir.state.deleted=Gel\u00F6scht -mir.state.imported=Importiert -mir.state.new=Erstellt -mir.state.published=Ver\u00F6ffentlicht -mir.state.review=Wird bearbeitet -mir.state.submitted=Eingereicht -mir.step.deleted=Dieser Eintrag wurde gel\u00F6scht. -mir.step.embedded=Die Daten des referenzierten Eintrags wurden in diesen eingebettet. -mir.step.extracted=Die Daten des eingebetteten Eintrags wurden in einen neuen, separaten Eintrag ausgelagert. -mir.step.redirect=Weiter... -mir.subject.genre=Gattung: -mir.subject.genre.researchData=Forschungsgebiet: -mir.subject.topic=Schlagwort: -mir.subject.topic.complex=Schlagwortgruppe: -mir.subject.topic.gnd.type=GND: -mir.tab.abstract=Abstract -mir.tab.details=Details -mir.tab.edit=Bearbeiten -mir.tab.export=Exportieren -mir.tab.links=Links -mir.tab.related={0} verweisende Publikation(en) -mir.title=Titel: -mir.title.blog=Titel des Blogs: -mir.title.collection=Titel des Sammelwerks: -mir.title.festschrift=Titel der Festschrift: -mir.title.journal=Titel der Zeitschrift: -mir.title.lexicon=Titel des Lexikons: -mir.title.newspaper=Titel der Zeitung: -mir.title.nonSort=f\u00FChrende Artikel: -mir.title.partName=Teil Bezeichnung: -mir.title.partNumber=Teil Nr.: -mir.title.placeholder.series.relItemsearch=nach der Serie suchen oder Serie eingeben -mir.title.placeholder.lecture.relItemsearch=nach der Vorlesung suchen oder Vorlesung eingeben -mir.title.placeholder.book.relItemsearch=nach dem Buch suchen oder Buch eingeben -mir.title.placeholder.lexicon.relItemsearch=nach dem Lexikon suchen oder Lexikon eingeben -mir.title.placeholder.journal.relItemsearch=nach der Zeitschrift suchen oder Zeitschrift eingeben -mir.title.placeholder.collection.relItemsearch=nach dem Sammelwerk suchen oder Sammelwerk eingeben -mir.title.placeholder.festschrift.relItemsearch=nach der Festschrift suchen oder Festschrift eingeben -mir.title.placeholder.proceedings.relItemsearch=nach dem Tagungsband suchen oder Tagungsband eingeben -mir.title.placeholder.newspaper.relItemsearch=nach der Zeitung suchen oder Zeitung eingeben -mir.title.placeholder.blog.relItemsearch=nach dem Blog suchen oder Blog eingeben -mir.title.proceedings=Titel des Tagungsbandes: -mir.title.series=Titel der Serie: -mir.title.subTitle=Untertitel: -mir.title.thesis=Titel der -mir.title.type=Titel -mir.title.type.abbreviated=abgek\u00FCrzt -mir.title.type.alternative=alternativ -mir.title.type.main=Haupttitel -mir.title.type.original=Originaltitel -mir.title.type.translated=Titel\u00FCbersetzung -mir.title.type.uniform=Einheitstitel -mir.typeOfResource=Art: -mir.upload.addDerivate=Hinzuf\u00FCgen eines Dateibereichs -mir.upload.drop.derivate=Dateien/Verzeichnisse zum Anh\u00E4ngen ablegen oder durchsuchen. -mir.upload.drop.objekt=Dateien zum Anh\u00E4ngen ablegen. -mir.useAndReproduction=Nutzung und Vervielf\u00E4ltigung: -mir.validation.author=Bitte geben Sie mindestens eine/n Autor/in an. -mir.validation.blog.title=Bitte geben Sie den Titel des Blogs an. -mir.validation.college=Bitte geben sie eine Hochschule an. -mir.validation.collegeplace=Bitte geben sie einen Hochschulort an. -mir.validation.date=Bitte geben Sie ein Jahr (JJJJ), Jahr und Monat (JJJJ-MM) oder ein Datum (JJJJ-MM-TT) ein. -mir.validation.dateCreated=Bitte geben Sie das Erstellungsdatum an. -mir.validation.dateIssued=Bitte geben Sie das Ver\u00F6ffentlichungsdatum an. -mir.validation.doi=Der DOI muss mit "10." beginnen (ohne f\u00FChrendes "https://doi.org/"). -mir.validation.editor=Bitte geben Sie mindestens eine/n Herausgeber/in an. -mir.validation.failed=Bitte korrigieren Sie die folgenden Eingabefehler in den markierten Feldern: -mir.validation.genre=Bitte w\u00E4hlen Sie den Publikationstyp (Genre) aus. -mir.validation.handle=Das Handle muss im Format "/" eingegeben werden, d.h. ohne f\u00FChrendes "http://hdl.handle.net/". -mir.validation.host.issue=Bitte geben wie eine Heftnummer ein. -mir.validation.host.volume=Bitte geben wie eine Bandnummer/Jahrgang ein. -mir.validation.inventor=Bitte geben Sie mindestens eine/n Erfinder/in an. -mir.validation.isbn=Die ISBN muss mit 10 oder 13 Stellen (Ziffern, Bindestriche, gro\u00DFes X oder Leerzeichen) eingegeben werden. -mir.validation.issn=Die ISSN muss im Format NNNN-NNNN (nur Ziffern, bzw. gro\u00DFes X) eingegeben werden. -mir.validation.link.blog_entry=Bitte geben Sie den Link zum Blog ein. -mir.validation.order=Bitte geben Sie f\u00FCr die Sortierung nur eine ganze positive Zahl an. -mir.validation.ppn=Bitte geben Sie eine g\u00FCltige PPN ein. -mir.validation.relatedItem='Wird referenziert von' darf nur im Zusammenhang mit externen Quellen genutzt werden. -mir.validation.rights=Bitte geben Sie an, mit welchen Rechten die Publikation nachgenutzt werden kann. -mir.validation.sdnb=Bitte w\u00E4hlen Sie eine passende SDNB-Kategorie aus. -mir.validation.subject=Bitte vergeben Sie mindestens ein Schlagwort. -mir.validation.title=Bitte geben Sie einen Titel ein. -mir.validation.title.book=Bitte geben Sie den Buchtitel an. -mir.validation.title.collection=Bitte geben Sie den Titel des Sammelwerks an. -mir.validation.title.festschrift=Bitte geben Sie den Titel der Festschrift an. -mir.validation.title.lexicon=Bitte geben Sie den Titel des Lexikons an. -mir.validation.title.newspaper=Bitte geben Sie den Titel der Zeitung an. -mir.validation.title.series=Bitte geben Sie den Serientitel an. -mir.validation.url=Bitte korrigieren Sie den Link (beginnend mit http://, https:// oder ftp://). -mir.validation.urn=Bitte korrigieren Sie die URN (urn:nbn:...). -mir.volume=Band, Jahrgang: -mir.workflow.creator.review=Ihr Dokument befindet sich im Status in Bearbeitung. -mir.workflow.creator.submitted=Ihr Dokument befindet sich im Status eingereicht. Sie haben folgende M\u00F6glichkeiten: -mir.workflow.creator.submitted.require.derivate=F\u00FCgen sie einen Volltext hinzu. -mir.workflow.editor.review=Das Dokument befindet sich im Status in Bearbeitung. Sie haben folgende M\u00F6glichkeiten: -mir.workflow.sherpa.loading=Sherpa/Romeo-Informationen werden geladen ... -mir.workflow.sherpa.message=Informieren Sie sich \u00FCber die Richtlinien der von dieser Zeitschrift zugelassenen Open-Access-Pfade. -mir.workflow.state.published2blocked=Dokument Sperren -mir.workflow.state.published2blocked.message=Das Dokument wird gesperrt und ist nicht mehr sichtbar. -mir.workflow.state.review2blocked=Dokument Sperren -mir.workflow.state.review2blocked.message=Das Dokument wird gesperrt und ist nicht mehr sichtbar. -mir.workflow.state.review2published=Einreichung Publizieren -mir.workflow.state.review2published.message=Das Dokument wird publiziert. -mir.workflow.state.review2submitted=Einreichung zur\u00FCck an Author \u00FCbergeben. -mir.workflow.state.review2submitted.message=Das Dokument wird zur\u00FCck an den Author \u00FCbergeben. -mir.workflow.state.submitted2review=Einreichung an Review \u00FCbergeben -mir.workflow.state.submitted2review.message=Die einreichung wird abgegeben und anschlie\u00DFend von einem Bearbeiter gepr\u00FCft. -object.copyObject=Kopie dieses Eintrages erstellen -object.createImagewareZipPackage=ImageWare Zip-Paket erzeugen -object.editGenre=Genre \u00E4ndern -object.hasChildren=Dieses Dokument hat Kinder\n -object.newVersion=Neue Version dieses Eintrages erstellen -orcid.integration.confirmed.headline=Ihre ORCID\u00AE iD ist verkn\u00FCpft! -orcid.integration.confirmed.text=Sie haben die Verbundzentrale des GBV (VZG) als "Trusted Party" autorisiert,\r\nauf Ihr ORCID Profil zuzugreifen. Sie k\u00F6nnen diese Berechtigung \u00FCbrigens jederzeit in Ihrem ORCID Profil unter [Account Settings] > [Trusted organizations] widerrufen. Wir k\u00F6nnen nun\r\n -orcid.integration.confirmed.thanks=Vielen Dank -orcid.integration.import=Publikationsdaten aus Ihrem ORCID Profil nach MIR importieren -orcid.integration.more=Mehr zu den Vorteilen von ORCID und Autoren-Identifikatoren -orcid.integration.pending.authorize=und autorisieren Sie die Verbundzentrale des GBV (VZG) als "trusted party", auf Ihr ORCID Profil zuzugreifen. Wir k\u00F6nnen dann -orcid.integration.pending.headline=ORCID\u00AE iD verkn\u00FCpfen und viele Vorteile nutzen! -orcid.integration.pending.intro=Ihre ORCID\u00AE iD ist ein dauerhafter, pers\u00F6nlicher Identifikator, der Sie eindeutig von anderen WissenschaftlerInnen unterscheidbar macht und Mechanismen bietet, Ihre Forschungsergebnisse und Aktivit\u00E4ten zu verkn\u00FCpfen. ORCID ist bereis in viele Systeme von F\u00F6rderern, Institutionen, Verlagen, Datenbanken und anderen wissenschaftlichen Diensten integriert.\r\n -orcid.integration.popup.close=Fenster schlie\u00DFen -orcid.integration.popup.title=ORCID\u00AE Autorisierung -orcid.integration.popup.tooltip=\u00F6ffnet neues Fenster zum Login bei ORCID -orcid.integration.publish=Publikationsdaten aus dem MIR in Ihrem ORCID Profil nachtragen, sofern dort nicht vorhanden. -orcid.integration.rejected.denied=Schade, Sie haben die Verbundzentrale des GBV (VZG) nicht als Trusted Party autorisiert.\r\nWir k\u00F6nnen daher zuk\u00FCnftig nicht Ihre Publikationsdaten mit MIR synchronisieren.\r\n -orcid.integration.rejected.error=Fehlermeldung -orcid.integration.rejected.headline=ORCID\u00AE Autorisierung nicht erfolgt! -orcid.integration.rejected.retry=Wollen Sie es noch einmal versuchen? Haben Sie Ihre Meinung ge\u00E4ndert? -orcid.oauth.link=Registrieren oder verkn\u00FCpfen Sie Ihre ORCID iD hier ! -orcid.publication.action.confirmation=Die Publikation wurde in Ihr ORCID Profil \u00FCbertragen! -orcid.publication.action.create=ins ORCID Profil \u00FCbertragen -orcid.publication.action.update=im ORCID Profil aktualisieren -orcid.publication.inProfile.false=Diese Publikation ist NICHT in Ihrem ORCID-Profil vorhanden -orcid.publication.inProfile.true=Diese Publikation ist in Ihrem ORCID-Profil vorhanden -results=Trefferliste -results.hits.multiple={0} Publikationen gefunden. -results.hits.none=Keine Publikationen gefunden. -results.hits.one=Eine Publikation gefunden. -results.nObjects={0} Dokumente gefunden\r\n -results.noObject=Keine Dokumente gefunden -results.oneObject=Es wurde ein Dokument gefunden -results.size=Trefferseiten -search.and=und -search.hits.all=alle -search.hits.page=Treffern pro Ergebnisseite -search.hits.with=mit -search.numHits=Anzahl Treffer: -search.select=(bitte w\u00E4hlen) -search.sort=Sortierung: -search.sort.asc=aufsteigend -search.sort.desc=absteigend -search.sort.first=erst -search.sort.then=dann -selfRegistration.captcha=Captcha: -selfRegistration.error.captcha=Captcha-Pr\u00FCfung fehlgeschlagen. Bitte wiederholen! -selfRegistration.error.mailError=Es konnte keine Mail verschickt werden! Bitte versuchen Sie es sp\u00E4ter erneut! -selfRegistration.error.missingParameter=Unvollst\u00E4ndiger Best\u00E4tigungs-Link! -selfRegistration.error.userExists=Benutzer existiert bereits! -selfRegistration.error.userNotFound=Benutzer wurde nicht gefunden! -selfRegistration.mail.required=Bitte geben Sie ihre E-Mail-Adresse ein. -selfRegistration.realName.required=Bitte geben Sie ihren Namen ein. -selfRegistration.step.create.info=Bevor Sie eine Publikation einreichen k\u00F6nnen, ben\u00F6tigen Sie eine Nutzerkennung mit Autoren-Rechten. Sie k\u00F6nnen sich \u00FCber das unten stehende Formular selbst registrieren. Um die Registrierung abzuschlie\u00DFen, m\u00FCssen Sie einmal den Link aufrufen, der Ihnen per Mail zugesandt wird, nachdem Sie das Formular abgesandt haben. Vielen Dank! -selfRegistration.step.create.title=Schritt 1: Selbstregistrierung -selfRegistration.step.created.info=Es wurde eine Mail an Ihre eMail-Adresse {0} gesendet um diese zu validieren.
\nBitte benutzen Sie den darin enthaltenen Link um die Registrierung abzuschliessen. -selfRegistration.step.created.title=Ihre Benutzerkennung wurde angelegt -selfRegistration.step.verified.info=Vielen Dank f\u00FCr die Best\u00E4tigung Ihrer E-Mail Adresse! Sie k\u00F6nnen sich nun mit Ihrer eingerichteten Benutzerkennung {0} anmelden! -selfRegistration.step.verified.title=Ihre E-Mail Adresse wurde best\u00E4tigt -subselect.category.cancel=Auswahl abbrechen -subselect.category.title=Kategorie ausw\u00E4hlen -user.profile.id.orcid=Ihre ORCID iD pdf.errorbox.warning.message=Achtung! Bei einigen Ihrer PDF/A Dokumente sind Fehler aufgetreten. Bitte stellen Sie sicher, dass ihre PDF/A Dokumente mit aktuellen und geeigneten Programmen erstellt wurden und lesen Sie die Fehlerdokumentation. Anbei finden Sie eine Liste der aufgetretenen Fehler! pdf.errorbox.warning.heading=Warnung! pdf.errorbox.success.heading=Erfolg! @@ -1589,4 +829,3 @@ pdf.errorbox.button.info=Mehr Informationen pdf.errorbox.button.download=Herunterladen pdf.errorbox.conformity.level=Konformitätstufe pdf.errorbox.unknown.error=Keine weiteren Informationen! - diff --git a/mir-module/src/main/resources/config/mir/messages_en.properties b/mir-module/src/main/resources/config/mir/messages_en.properties index 05a71a8a38..a1bc333ea0 100644 --- a/mir-module/src/main/resources/config/mir/messages_en.properties +++ b/mir-module/src/main/resources/config/mir/messages_en.properties @@ -1,4 +1,3 @@ -<<<<<<< Updated upstream IFS.directoryDelete = Delete directory @@ -790,733 +789,6 @@ subselect.category.cancel = Cancel subselect.category.title = Choose category user.profile.id.orcid = Your ORCID iD -======= -IFS.directoryDelete=Delete directory -basket=E-shelf -basket.add=add to list -basket.add.searchpage=add all hits at this page -basket.button.down=move down -basket.button.remove=remove entry -basket.button.up=move up -basket.clear=Clear list -basket.entries.multiple={0} publications -basket.entries.none=No publications -basket.entries.one=One publication -basket.numEntries.many=In your list are {0} documents. -basket.numEntries.none=In your list are no documents. -basket.numEntries.one=In your list is one document. -basket.open=Open list -basket.remove=remove from list -basket.title.objects=Search list -browse.genre=Genres -browse.mods.institution.corporate=Institutions -browse.person.firstLetter=First Letter -browse.person.foundPersons=Found persons -browse.person.personNotFound=No persons found. -browse.person.searchPerson=Search -browse.person.searchplaceholder=Search -browse.sdnb=SDNB -button.cancel=Cancel -button.loading=Loading... -button.save=Save -button.saveandredirect=Save and upload ... -button.search=Search... -button.selectPerson=Select person -component.mods.metaData.dictionary.identifier.hdl=Handle -component.mods.metaData.dictionary.identifier.open-aire=OpenAIRE Identifier -component.mods.metaData.dictionary.tocLayout=Table of Contents layout -component.mods.metaData.options.addFile=Add a file -component.mods.metaData.options.delDerivate=Delete this data object -component.mods.metaData.options.derivateLocked=locked due to PI -component.mods.metaData.options.updateDerivateName=Manage file space -component.mods.metaData.options.zip=save as Zip -component.pi.register.DNBURN=register URN -component.pi.register.Datacite=register DOI -component.pi.register.Epic=register ePIC -component.pi.register.modal.abort=Abort -component.pi.register.modal.text.DNBURN=Are you sure you want to register a URN? This would be permanent and can not be deleted. -component.pi.register.modal.text.Datacite=Are you sure you want to register a DOI? This would be permanent and can not be deleted. -component.pi.register.modal.text.Epic=Are you sure you want to register a ePIC? This would be permanent and can not be deleted. -dataTable.filter=Filter -dataTable.filterInfo={0} to {1} of {2} entries -dataTable.first=First -dataTable.last=Last -dataTable.lengthMenu=Entries to show -dataTable.next=Next -dataTable.noItemFound=No entry found! -dataTable.previous=Previous -editor.admin=Administration -editor.search.derivate=within files -editor.search.derivate.tooltip=search in file content -editor.search.fulltext.tooltip=Show only documents with (open accessable) files? -editor.search.license.tooltip=restrict your search for licenses -editor.search.metadata=within metadata -editor.search.metadata.tooltip=search in all bibliographic informations -editor.search.mir.author=Author -editor.search.mir.expert=expert search: -editor.search.mir.genre=Type -editor.search.mir.hasFiles=available -editor.search.mir.identifier=Identifier -editor.search.mir.identifier.tooltip=unique identifier, e.g. ISBN, DOI or MyCoRe ID -editor.search.mir.impactFactor=Impact Factor -editor.search.mir.institute=Institute -editor.search.mir.institute.tooltip=institution that originated the publication -editor.search.mir.license=Licenses -editor.search.mir.metadata=Metadata -editor.search.mir.name=Name -editor.search.mir.name.tooltip=name of persons or institutions, who participated on the document -editor.search.mir.openAccess=open access -editor.search.mir.sdnb=SDNB -editor.search.mir.title=Title -editor.search.mir.title.tooltip=title of the publication -editor.search.search=search -editor.search.status=state of publication -editor.search.status.tooltip=State of publication in the workflow -mir.editor.person.authorSpecification=Author Specification -mir.editor.person.search=Search -mir.editor.person.applyPerson=Apply id and name of the dataset -mir.editor.person.profession=Profession -mir.editor.person.gender=Gender -mir.editor.person.dateOfBirth=Date of Birth -mir.editor.person.alternateNames=Alternative Names -mir.editor.person.website=Website -mir.editor.person.link=Link -mir.editor.person.wikipedia=Wikipedia -mir.editor.addIdentifier=Add Identifier -img.alt.search.complex=complex search -img.alt.search.simple=simple search -latestObjects.more=ALL -metaData.createdby=Created by -metaData.derivateLocked=File locked -metaData.preview=Preview -metaData.previewInProcessing=The Preview for {0} is processing. Please try again later . -metaData.review=Review -metadata.files.backToObject=back to metadata -metadata.files.date=Date -metadata.files.file=Files -metadata.files.name=Name -metadata.files.size=Size -metadata.files.toDerivate=to Files -metadata.versionInfo.action=action -metadata.versionInfo.date=date -metadata.versionInfo.label=version history -metadata.versionInfo.revision=revision -metadata.versionInfo.startLabel=(full version history) -metadata.versionInfo.user=user -metadata.versionInfo.version=version -mir.abstract=Abstract -mir.abstract.aslink=as link: -mir.abstract.editor=(edt.) -mir.abstract.hideGroups=hide all -mir.abstract.in=Abstract in: -mir.abstract.link=Link to abstract: -mir.abstract.ortext=or text: -mir.abstract.readless=\u00AB read less -mir.abstract.readmore=read more \u00BB -mir.abstract.showGroups=show all -mir.abstract.text=Abstract: -mir.abstract.text.2=Abstract, Description -mir.access=Access permissions -mir.accesskey=Access key -mir.accesskey.manage=Manage access keys -mir.accesskey.required=Please input an access key. -mir.accesskey.setInfo=If available, there is the possibility to activate an access key via the following link. -mir.accesskey.setOnUser=Set access key -mir.actions=Actions -mir.actions.noaccess=To edit the document, please log in. -mir.actions.norights=You don't have the rights to edit the document. -mir.admineditor=Edit in admin editor -mir.affiliation=Affiliation -mir.articlenumber=Article number: -mir.articlenumber.short=Art.-No.: -mir.breadcrumb.home=Home -mir.cartographics.coordinates=Geographic coordinates: -mir.cartographics.coordinates.box=Box -mir.cartographics.coordinates.geoType=Geometry type -mir.cartographics.coordinates.none=please choose -mir.cartographics.coordinates.point=Point -mir.cartographics.coordinates.polygon=Polygon -mir.characteristics.no=No -mir.characteristics.yes=Yes -mir.citationAlert=Could not load citation form. -mir.citationLink=copy citation link -mir.citationLink.title=Click here to see more citation links. -mir.citationStyle=Citation style: -mir.classification=Classification(s): -mir.classification.select=Select Classification -mir.college=College -mir.collegeplace=Collegeplace -mir.comment=Annotation: -mir.comment.type=Type of Annotation: -mir.conference=Conference: -mir.confirm.cancelButton=No -mir.confirm.confirmButton=Yes I am -mir.confirm.derivate.text=Are you sure you want to delete this file container including all files and directories? -mir.confirm.directory.text=Are you sure you want to delete this directories including all files and sub directories? -mir.confirm.file.text=Are you sure you want to delete this file? -mir.confirm.text=Are you sure you want to delete this document? -mir.confirm.title=Confirmation required -mir.creator=Institution (Creator) -mir.creatorplace=Place of Creation -mir.date.accepted=Graduation at: -mir.date.accepted.range=Graduation: -mir.date.acceptedHabil=Graduation at: -mir.date.broadcasted=Date of broadcasting: -mir.date.collected=Date of collection: -mir.date.collected.range=collection: -mir.date.created=Created at: -mir.date.created.range=creation: -mir.date.issued.10=Date published: -mir.date.issued.4=Year of publication: -mir.date.issued.onlyRange=Publication history: -mir.date.issued.range=Publication: -mir.date.period=time period -mir.date.recorded=Date of recording: -mir.date.reviewed=Date of review: -mir.date.reviewed.range=review: -mir.date.specification=date -mir.date.submitted=submitted at: -mir.date.submitted.range=submission: -mir.date.updated=Date of Update: -mir.date.updated.range=Update: -mir.derivate.display.false=Show filespace -mir.derivate.display.true=Hide filespace -mir.derivate.no_access=You don't have the required rights to see attached files. -mir.derivate.no_access.intern=To see the attached files you have to login. -mir.derivate.no_access.ipAddressRange=You can access the attached files only from a computer in the library. -mir.derivate.not_full_access=You do not have the required rights to see all attached files. -mir.derivate.type=derivate type -mir.details.issue=No. -mir.details.personpopover.title=person details -mir.details.volume.journal=Vol. -mir.details.volume.series=Vol. -mir.dropdown.all=Everything -mir.dropdown.allMeta=All metadata -mir.dropdown.author=Author -mir.dropdown.content=Full text -mir.dropdown.name=Surname -mir.dropdown.nameIdentifier=Name identifier -mir.dropdown.title=Title -mir.editing.delete=Delete this entry -mir.editing.edit=Edit this entry -mir.editing.embed=Embed related entry -mir.editing.extract=Extract embedded entry -mir.editing.related.id=ID of related publication -mir.editing.related.select=Choose publication -mir.editing.template.names=Add new publication of same person -mir.editing.template.related=Add new related entry -mir.edition=Edition: -mir.edition.out=Edition -mir.editors.abbreviated=(Eds.) -mir.editstatus.canceled=Discontinued operation! -mir.editstatus.success=Saved successfully! -mir.embargo=Embargo: -mir.epusta.counter.abstract=Abtractviews: -mir.epusta.counter.fulltext=Downloads: -mir.epusta.last12Month=Last 12 Month -mir.epusta.open=open graphic -mir.epusta.panelheading=Access Statistic -mir.epusta.total=Total -mir.error.accessKeyRequired=Access to the object "{0}" is only possible after entering a valid access key!
\nPlease use the following link to enter your access key. -mir.error.blocked=The document is blocked! -mir.error.codes.202=The request "{0}" was accepted for processing, but was not completed. -mir.error.codes.400=The request "{0}" sent was syntactically incorrect. -mir.error.codes.401=You do not have the privilege to acces this page. -mir.error.codes.403=The server understood the request "{0}" but refused to fulfill it. -mir.error.codes.404=The requested URL "{0}" was not found on this server. -mir.error.codes.409=The request "{0}" could not be completed due to a conflict with the current state of the resource. -mir.error.codes.412=The precondition given in one or more of the request-header fields for "{0}" evaluated to false when it was tested on the server. This response code allows the client to place preconditions on the current resource metainformation (header field data) and thus prevent the requested method from being applied to a resource other than the one intended. -mir.error.codes.413=The server is refusing to process the request for "{0}" because the request entity is larger than the server is willing or able to process. -mir.error.codes.416=The server cannot serve the requested byte range for "{0}". The ranges may have either overlap or are not in the right order. -mir.error.codes.417=The server could not meet the expectation given in the Expect request header for the resource "{0}". -mir.error.codes.500=An error inside the HTTP server occured which prevented it from fulfilling the request for "{0}". -mir.error.codes.501=The server does not support the functionality required to fulfill the request, as it does not recognize the request method and is not capable of supporting it for any resource. -mir.error.deleted=The document was deleted! -mir.error.finalLine=That's all we know. -mir.error.headline={0}! -mir.error.headline.401=Access not granted! -mir.error.headline.403=Access not granted! -mir.error.message=detailed error message -mir.error.subheadline=That's an error. -mir.export.choose=Please choose a file format. Nearly all bibliographic reference management software supports one of the following formats: -mir.export.format.bibtex=BibTeX -mir.export.format.bibtex.description=besides LaTeX, is also supported by many bibliographic reference management software. -mir.export.format.endnote=Endnote (tagged refer-format) -mir.export.format.endnote.description=for the "Endnote" reference management software (Thomson Reuters) and many others. -mir.export.format.isi=ISI Web of Science -mir.export.format.isi.description=Format of the Web of Science (Web of Knowledge), Thomson Reuters, Institute for Scientific Information -mir.export.format.mods=MODS (Metadata Object Description Schema) -mir.export.format.mods.description=Standard of Library of Congress in XML. Complete export without data loss. -mir.export.format.ris=RIS (Reference Manager) -mir.export.format.ris.description=The RIS format is a standard that has its origins in the "Reference Manager" software. -mir.export.format.wordbib=Microsoft Word 2007 bibliography file -mir.export.format.wordbib.description=is used by Microsoft Office Word 2007 or later, to manage bibliographic references. -mir.export.more=(more) -mir.extent=Extent: -mir.form.editor.dynamic.header=Submission form for -mir.form.editor.dynamic.header.in=in -mir.form.editor.dynamic.partof=Part of -mir.geographic=Geographic place: -mir.geographic.gnd.type=GND: -mir.help.abstract=A human readable description of the dataset and its context (e.g. purpose and methodology of data creation, spatio-temporal characteristics, data quality, provenance). -mir.help.abstract.aslink=Weblink to abstract. -mir.help.abstract.ortext=A short summary of the document content. -mir.help.access=Specify who should be able to access the dataset after publication. The metadata will be public in any case. -mir.help.affiliation=Organisation/Affiliation of the Person. -mir.help.articlenumber=The number of an article published in an online journal or publication platform. -mir.help.artist.photographer=Creator of the Picture/Image. -mir.help.author.interviewee=A person, family or organization responsible for creating or contributing to a resource by responding to an interviewer, usually a reporter, pollster, or some other information gathering agent. -mir.help.authorSpecification=More precise description of author role, mostly relevant for establishing contact or statistical evaluations. -mir.help.cartographics.coordinates=Coordinates of a geographic location where the data was collected/measured. Can be geographic coordinates of a single point as longitude,latitude(!) in decimal degree, WGS84, (EPSG 4326), or choose the location over OpenStreetMap. -mir.help.cartographics.place=A geographic location where the data was collected/measured. Can be a place name. -mir.help.classification=Choose classification. -mir.help.college=Organization which supervised the creation of the thesis. -mir.help.collegeplace=Place where the thesis was created. -mir.help.comment=Any comment about the document can be noted here. -mir.help.comment.type=Type of Annotation. -mir.help.conference=Please enter here the name of the conference, if applicable with place, year or date, in connection with which the document was created. -mir.help.creator=Institution which supervised the creation of the publication. -mir.help.creatorplace=Place of Institution (Creator). -mir.help.date.accepted=Date of graduation / completion of the examination procedure. The date must be in the ISO format with the hyphen "YYYY-MM-DD", "YYYY-MM" or "YYYY".
\r\nExample: \u201E2003-01-27\u201C or \u201E2010\u201C or \u201E2009-01\u201C -mir.help.date.accepted.range=Date or period of graduation / completion of the examination procedure. The date must be in the ISO format with the hyphen \u201EYYYY-MM-DD\u201C, \u201EYYYY-MM\u201C or \u201EYYYY\u201C.\r\n
\r\nExample: \u201E2003-01-27\u201C or \u201E2010\u201C or \u201E2009-01\u201C -mir.help.date.acceptedHabil=Date of graduation. The date must be in the ISO format with hyphen YYYY-MM-DD, YYYY-MM or YYYY be specified.\r\n
\r\nExample: 2003-01-27 or 2010 or 2009-01 -mir.help.date.broadcasted=Date on which the broadcast was shown on radio or television (first broadcast). -mir.help.date.collected.range=Date or period of recording (recording). The date must be in ISO format with hyphens YYYY-MM-DD, YYYY-MM or YYYY be specified.\r\n
\r\nExample: 2003-01-27 or 2010 or 2009-01 -mir.help.date.created=Date of creation. The date must be in ISO format with hyphens YYYY-MM-DD, YYYY-MM or YYYYbe specified.\r\n
\r\nExample: 2003-01-27 or 2010 or 2009-01 -mir.help.date.created.range=Date or period of creation. The date must be in ISO format with hyphens YYYY-MM-DD, YYYY-MM or YYYY be specified.\r\n
\r\nExample: 2003-01-27 or 2010 or 2009-01 -mir.help.date.issued.10=For conference proceedings, books, please indicate the year of publication, for films the date of the recording, for promotions the date of first online publication. The date must be in ISO format with hyphens YYYY-MM-DD, YYYY-MM or YYYY be specified.\r\n
\r\nExample: 2003-01-27 or 2010 or 2009-01 -mir.help.date.issued.4=For conference proceedings, books, please indicate the year of publication, for films the date of the recording, for promotions the date of first online publication. The date must be in ISO format with hyphens YYYY-MM-DD, YYYY-MM or YYYY be specified.\r\n
\r\nExample: 2003-01-27 or 2010 or 2009-01 -mir.help.date.issued.onlyRange=Timeperiod while the journal or series is published. -mir.help.date.recorded=If the recorded data is a recording, the recording date can be specified here. -mir.help.date.repeated=The date or date range when the dataset was collected, measured, created, published, etc. Please select the date type from the dropdown list. The date must be specified in format YYYY-MM-DD. Feel free to add multiple dates of different types by using the \u201C+\u201D button. -mir.help.date.reviewed.range=Date or period of review. The date must be specified in the ISO format with hyphens YYYY-MM-DD, YYYY-MM or YYYY.\r\n
\r\nExample: 2003-01-27 or 2010 or 2009-01 -mir.help.date.submitted=Date of submission. The date must be in the ISO format with hyphen YYYY-MM-DD, YYYY-MM or YYYY be specified.\r\n
\r\nExample: 2003-01-27 or 2010 or 2009-01 -mir.help.date.submitted.range=Date or period of submission. The date must be in the ISO format with hyphen YYYY-MM-DD, YYYY-MM or YYYY be specified.\r\n
\r\nExample: 2003-01-27 or 2010 or 2009-01 -mir.help.date.updated=Date of the update. The date must be in the ISO format with hyphen YYYY-MM-DD, YYYY-MM or YYYY be specified.\r\n
\r\nExample: 2003-01-27 or 2010 or 2009-01 -mir.help.date.updated.range=Date or period of the update. The date must be in the ISO format with hyphen YYYY-MM-DD, YYYY-MM or YYYY be specified.\r\n
\r\nExample: 2003-01-27 or 2010 or 2009-01 -mir.help.derivate.label=Technical label for internal use. -mir.help.derivate.title=Label presented on website in depend of language. -mir.help.doi.handle.urn=If a persistent identifier (e.g. DOI, URN) has been assigned to this dataset already, please enter it here. -mir.help.edition=Edition of a book, conference proceeding etc. -mir.help.editor.honoree=A person, family, or organization honored by a work or item (e.g., the honoree of a festschrift, a person to whom a copy is presented). -mir.help.editor.organization=Enter the name of the issuing institution. If necessary, you can use the search button to select the appropriate GND entry. -mir.help.embargo=A date until the dataset should be withhold from any public access. Only you will be able to access it. The date must be specified in ISO format with dashes YYYY-MM-DD. -mir.help.expand=Click here to get more options. -mir.help.extension.characteristics=Please indicate the impact factor per year and / or select whether the journal or the article was refereed this year. -mir.help.extent=Number of pages of the work (please consider only the number of pages). For images, the dimensions are specified. -mir.help.genre=Type of publication or genre. -mir.help.geographicIdentifier=If the place is already linked to an GND, you can enter it here. -mir.help.host.date=Contains date information relevant to the part described. Specify using ISO 8601 profile YYYY-MM-DD. -mir.help.host.order=Specifying a number to change the order in the parent publication. Please specify only an positive integer. -mir.help.host.pages=Indication of pages on which your contribution appeared in the context of a higher-level publication. -mir.help.identifier=Identifier (URN, DOI,...) -mir.help.identifier.intern=Identifier of the publication having only a limited validity time (e.g., within a particular software or device). -mir.help.identifier.isbn=ISBN always has to be in the form of ISBN13 - with hyphens! If only the ISBN10 is available, it must be converted accordingly (978 before write and adjust check digit). An online converter is available e.g. here: http://www.isbn.org/converterpub.asp . -mir.help.identifier.issn=ISSN of the journal. -mir.help.identifier.patent=Patent number under which the document is kept. -mir.help.identifier.project=project ID -mir.help.identifier.zdbid=Journal ID at the journal database. -mir.help.institutes=Please name the institution to which you belonged at the time of the first publication of your contribution. -mir.help.issue=Partial delivery of the journal years issues in which your contribution has been published (usually the issue number). -mir.help.language=Language used in the dataset. -mir.help.link=Here you can specify a URL to the described document if it is located on third party websites, e.g. "Http://www.springerlink.com/content/f7uw40686u422430/".\r\n
\r\n
\r\nReferences to other information about the document are not included here. These may e.g. in the comment field or in the description. -mir.help.link.blog_entry=Enter the link to the blog here. -mir.help.link.raw_object=A URL to the related resource (e.g. http://www.springerlink.com/content/f7uw40686u422430). -mir.help.link.title=A descriptive title of a related resource (e.g. paper, publication, data collection). -mir.help.name.repeated=Name and role of the persons in which they participated in the origin of the document. (Linking to GND, ORCID or other). -mir.help.nameIdentifier=If the Person or Organisation is already linked to an GND or VIAF, u can enter them here. -mir.help.namePart=Partitioning of the name in different parts like forename and surname. -mir.help.nameType=Type of the name. -mir.help.physical.description.form=A designation of a particular physical presentation of a resource, including the physical form or medium of material for a resource. -mir.help.physical.description.note=Detailed description of the data structure, incl. variable/parameter description, units of measure, data standards used, data types (e.g. numeric, string). -mir.help.place=The former publication of the publication. -mir.help.place.country=Country of publication. -mir.help.producer.speaker=A person contributing to a resource by speaking words, such as a lecture, speech, etc. -mir.help.project.acronym=Type your project code here, an autocomplete from the listed OpenAIRE projects is offered too. -mir.help.project.grant=These fields are filled in automatically when you select the project name or acronym. Alternatively, the information may be manually entered. For OpenAIRE compliance grant ID, program ID, and organization ID are required! -mir.help.project.name=Enter the name of the project. As you type an autocomplete is offered (contains only openAIRE projects). If you select the name from the list provided, the remaining fields are filled. -mir.help.publisher=Publishing name or publishing institution in full written form. -mir.help.publisher.organization=Organization responsible for publishing, releasing, or issuing a resource. -mir.help.publisher.station=publisher station -mir.help.related.item=Here you can link the document to other already registered publications. Select the appropriate publication. Search and filter options are available in the selection. Once you have found the relevant publication, you can assign it using the "Select" button. Alternatively, cancel the selection with the "Cancel" button. -mir.help.research.data.person=Name of a person who created or is responsible for the dataset. Please select the most appropriate role from the list.\nBy using the search you can select a person from the Virtual International Authority File (VIAF) or the German National Library file (GND). An additional individual can be added by using the \u201C+\u201D button, which will add a separate line. -mir.help.rights=A license under which the resource will be available. -mir.help.rightsHolder=A person or organization granting the license. Typically the originator of the resource. -mir.help.role.advisor=A person under whose supervision a degree candidate develops and presents a thesis, m\u00E9moire, or text of a dissertation. -mir.help.role.author=A person, family, or organization responsible for creating a work that is primarily textual in content, regardless of media type (e.g., printed text, spoken word, electronic text, tactile text) or genre (e.g., poems, novels, screenplays, blogs). Use also for persons, etc., creating a new work by paraphrasing, rewriting, or adapting works by another creator such that the modification has substantially changed the nature and content of the original or changed the medium of expression -mir.help.role.editor=A person, family, or organization contributing to a resource by revising or elucidating the content, e.g., adding an introduction, notes, or other critical matter. An editor may also prepare a resource for production, publication, or distribution. For major revisions, adaptations, etc., that substantially change the nature and content of the original work, resulting in a new work, see author (ref to gnd) -mir.help.role.inventor=A person, family, or organization responsible for creating a new device or process. -mir.help.role.thesis=A person who presents a thesis for a university or higher-level educational degree. -mir.help.role.thesisHabil=A person who presents a thesis habil for a university or higher-level educational degree. -mir.help.sdnb=Category (i.e. subject, field of research) the dataset originates from or relates to. Please use the \u201C+\u201D button to add multiple categories. -mir.help.series.title=Official title of the series at the time of publication of your contribution. -mir.help.series.volume=Some series of publications include the individual volumes published therein. Please indicate the number of your work, if applicable. -mir.help.shelfmark=Signature of the library under which the publication can be found there. -mir.help.sponsor.organisation=A organization sponsoring some aspect of a resource, e.g., funding research, sponsoring an event. -mir.help.sponsor.program=A specific, supported program or project within the publication was created. -mir.help.status=Enter the status of the publication here. As long as a document has the status "submitted", it can also be edited by the creator / deliverer. Documents that have the status "published" can be found by all users. -mir.help.subject.topic=Keywords that describe the domain, methodology, spatio-temporal characteristics. For more subjects use the "+" button to add new inputfields, or separate the subjects with ";". -mir.help.subject.topic.complex=Topical similar subjects should be grouped. To create an new group click on the '+' button. -mir.help.subject.topic.gnd=Keywords that describe the domain, methodology, spatio-temporal characteristics. For more subjects use the "+" button to add new inputfields, or separate the subjects with ";". U can assign a GND with the "Search..." button. -mir.help.thesis.advisor.reviewer=A person or organization responsible for the review of this dissertation (or other kind of publication). -mir.help.thesisHabil.reviewer=A person or organization responsible for the review of this habilitation (or other kind of publication). -mir.help.title=Title of the dataset (or object). -mir.help.title.abbreviated=Official abbreviation of the journal / publication series according to the journal database. -mir.help.title.blog=Enter the title of the blog. -mir.help.title.complex=Please specify the language and the type of title to be recorded. The leading article can be specified separately to exclude it from alphabetical sorting. -mir.help.title.journal=Official title of the journal (according to journal database) at the time of publication of your contribution. -mir.help.title.newspaper=journals title -mir.help.title.subTitle=Subtitle of document. -mir.help.title.thesis=Please also include an english (or german) translation of the title if possible! -mir.help.title.thesis.translated=The translated title. With the "+" - button further translations of the title can be added. -mir.help.tocLayout=Selection is optional and only relevant for journals, series etc.\r\nAvailable layouts are defined in the file toc-layouts.xml. -mir.help.topicIdentifier=If topic is already linked to an GND, you can enter it here. -mir.help.typeOfResource=

The following values may be used:

\r\n
    \r\n
  • \r\n text\r\n – Resources that are basically textual in nature.\r\n
  • \r\n
  • \r\n cartographic\r\n – Includes maps, atlases, globes, digital maps, and other cartographic items.\r\n
  • \r\n\r\n
  • \r\n notated music\r\n – Graphic, non-realized representations of musical works, both in printed and digitized manifestations that represent the\r\n four\r\n components of musical sound: pitch, duration, timbre, and loudness.\r\n
  • \r\n
  • \r\n sound recording\r\n – Used when a mixture of musical and nonmusical sound recordings occurs in a resource or when a user does not want to or\r\n cannot\r\n make a distinction between musical and nonmusical.\r\n
  • \r\n
  • \r\n sound recording-musical\r\n – Used when a resource is predominately a musical sound recording.\r\n
  • \r\n\r\n
  • \r\n sound recording-nonmusical\r\n – Used when the sound recording is nonmusical in nature.\r\n
  • \r\n
  • \r\n still image\r\n – Includes two-dimensional images and slides and transparencies.\r\n
  • \r\n
  • \r\n moving image\r\n – Includes motion pictures and videorecordings, as well as television programs, digital video, and animated computer\r\n graphics—but not slides and transparencies. It does not include moving images that are primarily computer\r\n programs, such as\r\n computer games or computer-oriented multimedia; these are included in "software, multimedia".\r\n
  • \r\n\r\n
  • \r\n three dimensional object\r\n – Includes man-made objects such as models, sculptures, clothing, and toys, as well as naturally occurring objects such as\r\n specimens mounted for viewing.\r\n
  • \r\n
  • \r\n software, multimedia\r\n – Appropriate for any electronic resource without a significant aspect that indicates one of the other\r\n categories. It\r\n includes: software, numeric data, computer-oriented multimedia, and online systems\r\n and services.\r\n
  • \r\n
  • \r\n mixed material\r\n – Indicates that there are significant materials in two or more forms that are usually related by virtue of their having\r\n been\r\n accumulated by or about a person or body. Mixed material includes archival fonds and manuscript\r\n collections of mixed forms of\r\n materials, such as text, photographs, and sound recordings.\r\n
  • \r\n
-mir.help.volume=If your entry has been published in a journal or as part of a series, please state the band, volume or year here. -mir.host.date=Date -mir.identifier.doi=DOI: -mir.identifier.hdl=Handle: -mir.identifier.intern=internal ID: -mir.identifier.isbn=ISBN: -mir.identifier.issn=ISSN: -mir.identifier.other=Other ({0}) -mir.identifier.patent=Patent number: -mir.identifier.ppn=PPN: -mir.identifier.project=Project ID: -mir.identifier.uri=URI: -mir.identifier.urn=URN: -mir.identifier.zdbid=ZDB-ID: -mir.institution=Institution -mir.issue=Issue: -mir.iwstatus.success=packaging zip for ImageWare ... -mir.jop=Show availability online & print+# -mir.label=Label: -mir.language=Language: -mir.language.change=Change language -mir.lecture.number=Lecture Number: -mir.lecture.semester=Semester: -mir.link=Link URL: -mir.link.blog=Link to the blog: -mir.link.blog_entry=Link to the blog entry: -mir.link.object_in_context=Link to context: -mir.link.preview=Link to preview: -mir.link.raw_object=Link to raw object: -mir.link.title=Related resource, title: -mir.loginRequiredInfo=Please use the following link to login to the system. -mir.lsf.pid-link=show in online staff directory and course catalog LSF -mir.metaData.panel.heading.mir-access-rights=Rights -mir.metaData.panel.heading.mir-thumbnail=Thumbnail -mir.metaData.panel.heading.mir-citation=Cite -mir.metaData.panel.heading.mir-epusta=Access Statistic -mir.metaData.panel.heading.mir-export=Export -mir.metaData.panel.heading.mir_admindata_panel=System Information -mir.metadata.content=Content -mir.metadata.isReferencedBy=Referenced by -mir.metadata.otherVersion=Other version -mir.metadata.review=Review -mir.metadata.succeeding=Succeeding -mir.metadata.succeedingVersion=new version -mir.namePart.date=Date -mir.namePart.family=Surname -mir.namePart.given=Forename -mir.namePart.other=Other -mir.namePart.termsOfAddress=Term of address -mir.nameType=Type -mir.nameType.conference=Conference -mir.nameType.corporate=Corporation -mir.nameType.family=Family -mir.nameType.personal=Person -mir.noScript.link=instructions how to enable JavaScript in your web browser -mir.noScript.text=For full functionality of this site it is necessary to enable JavaScript. Here are the -mir.note=Note: -mir.order=Order -mir.pages=Pages -mir.pages.abbreviated.multiple=pp. -mir.pages.abbreviated.single=p. -mir.pages.from=Pages from: -mir.pages.to=to -mir.pagination.entriesInfo={0} to {1} of {2} Entries -mir.pagination.first=first Page -mir.pagination.hits.back=back to result list -mir.pagination.hits.entriesInfo={0} of {1} -mir.pagination.hits.next=next hit -mir.pagination.hits.previous=previous hit -mir.pagination.last=last Page ({0}) -mir.pagination.next=next Page -mir.pagination.previous=previous Page -mir.physical.description.form=Data type: -mir.physical.description.note=Data structure: -mir.place=Place of publication: -mir.place.country=Country of registration: -mir.placeholder.abstract.link=Link to related resource -mir.placeholder.characteristics.factor=Impact Factor -mir.placeholder.characteristics.year=YYYY -mir.placeholder.college=College -mir.placeholder.collegeplace=College Place -mir.placeholder.conference=Title of the conference with place and date -mir.placeholder.date=YYYY-MM-DD -mir.placeholder.derivate.order=Order -mir.placeholder.edition=for example, "3rd edition" -mir.placeholder.extent=for example, "50 pages" -mir.placeholder.name.family=Last name -mir.placeholder.name.given=First name -mir.placeholder.name.organization=name of organization -mir.placeholder.response.search=Search within publications -mir.placeholder.series.title=e. g. "Lecture notes in Computer Science" -mir.placeholder.series.volume=e. g. "124" -mir.placeholder.title.link=Title of related resource -mir.placeholder.title.main=Original title -mir.placeholder.title.translated=Translated title -mir.placeholder.year=YYYY -mir.project.acronym=Project Acronym: -mir.project.grantID=Grant ID -mir.project.information=Project Information (OpenAIRE) -mir.project.name=Project name: -mir.project.sponsor.organisation=Funding organization: -mir.project.sponsor.organisationID=Organization-ID -mir.project.sponsor.program=Funding programm: -mir.project.sponsor.programmID=Program-ID -mir.publication=Publication -mir.publisher=Publisher: -mir.publisher.station=Broadcasting Station: -mir.publisherOrganization=Publishing organization -mir.register.email=your.mail@address.com -mir.register.realName=First name Surname -mir.relatedItem=Related item -mir.relatedItem.alreadyLinked=The currently selected document is already linked to this document. -mir.relatedItem.doesNotExist=Reference can not be displayed or was deleted -mir.relatedItem.has_grouping=Part of a grouping -mir.relatedItem.host=Appears in -mir.relatedItem.in.book=This contribution is contained in: -mir.relatedItem.in.common=Published in: -mir.relatedItem.in.festschrift=This contribution is contained in the following festschrift: -mir.relatedItem.in.journal=This article was published in the following journal: -mir.relatedItem.in.lexicon=This entry was published in the following lexicon: -mir.relatedItem.in.newspaper=This article was published in the following newspaper: -mir.relatedItem.in.proceedings=This contribution is contained in the following proceedings: -mir.relatedItem.isReferencedBy=Is referenced by -mir.relatedItem.list=The following {0} publications link to this publication -mir.relatedItem.original=Original -mir.relatedItem.others=Further Links -mir.relatedItem.otherFormat=Other format -mir.relatedItem.otherVersion=Other version -mir.relatedItem.preceding=Preceding -mir.relatedItem.references=References -mir.relatedItem.reviewOf=Review of -mir.relatedItem.search=Show related publications as separate result list -mir.relatedItem.series=In Series -mir.response.openAccess.facet.false=restricted -mir.response.openAccess.facet.title=Availability -mir.response.openAccess.facet.true=open -mir.response.openAccess.false=No free available file attached. -mir.response.openAccess.true=Free available file attached. -mir.response.relevance=Relevance of this hit in relation to all hits of current search -mir.results.hitDoesNotExist=This result can not be displayed or was recently deleted. -mir.rights=License -mir.rightsHolder=License Holder: -mir.role.advisor=Thesis advisor: -mir.role.annotator=Annotator: -mir.role.artist=Artist: -mir.role.author=Author: -mir.role.collector=Collector: -mir.role.contributor=Contributor: -mir.role.creator=Creator: -mir.role.dataContributor=Data contributor: -mir.role.editor=Editor: -mir.role.honoree=Honoree: -mir.role.interviewee=Interviewee: -mir.role.interviewer=Interviewer: -mir.role.inventor=Inventor: -mir.role.metadataContact=Metadata contact: -mir.role.other=Other: -mir.role.owner=Owner: -mir.role.photographer=Photographer: -mir.role.producer=Producer: -mir.role.producer.name=Producer: -mir.role.publisher=Publisher: -mir.role.reviewer=Reviewer: -mir.role.speaker=Speaker: -mir.role.thesis=Thesis author: -mir.role.thesisHabil=Thesis author: -mir.search.all=All fields: -mir.search.in=Published in: -mir.search.name=Person: -mir.search.name.advisor=Thesis advisor: -mir.search.name.creator=Author: -mir.search.name.editor=Editor: -mir.search.name.reviewer=Reviewer: -mir.search.new=New search -mir.search.refine=Refine search -mir.search.simple=Search for: -mir.search.title=Title: -mir.search.year=Year of publication: -mir.searchIdentifier.noResult=
No entry was found.
-mir.select=(please select) -mir.select.collection=a collection -mir.select.editor=(editor) -mir.select.festschrift=a festschrift -mir.select.host=appears in: -mir.select.journal=a journal -mir.select.lexicon=a lexicon -mir.select.newspaper=a newspaper -mir.select.optional=(please select, if necessary) -mir.select.proceedings=proceedings -mir.select.research_data=research data -mir.select.series=a series -mir.series.title=in series: -mir.series.volume=Volume of series: -mir.shariff.subject=MIR -mir.shelfmark=Library shelfmark: -mir.sort.name=by name -mir.sort.title=by title -mir.sort.year=by year -mir.state.blocked=blocked -mir.state.deleted=deleted -mir.state.imported=imported -mir.state.new=new -mir.state.published=published -mir.state.review=review -mir.state.submitted=submitted -mir.step.deleted=This entry has been deleted. -mir.step.embedded=The data of the referenced entry has been embedded into this entry. -mir.step.extracted=The data of the embedded entry has been moved to a new, separate entry. -mir.step.redirect=Continue... -mir.subject.genre=genre: -mir.subject.genre.researchData=Field of research: -mir.subject.topic=Keywords: -mir.subject.topic.complex=Subjectgroup: -mir.subject.topic.gnd.type=GND: -mir.tab.abstract=Abstract -mir.tab.details=Details -mir.tab.edit=Edit -mir.tab.export=Export -mir.tab.links=Links -mir.tab.related={0} related Publication(s) -mir.title=Title: -mir.title.blog=Blog title: -mir.title.journal=Journal title: -mir.title.newspaper=Newspaper title: -mir.title.nonSort=non sort: -mir.title.partName=Part name: -mir.title.partNumber=Part number: -mir.title.placeholder.series.relItemsearch=search for series or enter a series title -mir.title.placeholder.lecture.relItemsearch=search for lecture or enter a lecture title -mir.title.placeholder.book.relItemsearch=search for book or enter a book title -mir.title.placeholder.lexicon.relItemsearch=search for lexicon or enter a lexicon title -mir.title.placeholder.journal.relItemsearch=search for journal or enter a journal title -mir.title.placeholder.collection.relItemsearch=search for collection or enter a collection title -mir.title.placeholder.festschrift.relItemsearch=search for festschrift or enter a festschrift title -mir.title.placeholder.proceedings.relItemsearch=search for proceedings or enter a proceedings title -mir.title.placeholder.newspaper.relItemsearch=search for newspaper or enter a newspaper title -mir.title.placeholder.blog.relItemsearch=search for blog or enter a blog title -mir.title.subTitle=Subtitle: -mir.title.thesis=Title of -mir.title.thesis.help=Please enter an english translation of the title, too! -mir.title.type=Title -mir.title.type.abbreviated=abbreviated -mir.title.type.alternative=alternative -mir.title.type.main=Main title -mir.title.type.original=Original title -mir.title.type.translated=Translated title -mir.title.type.uniform=Uniform title -mir.typeOfResource=Type of resource: -mir.upload.addDerivate=Add a file area -mir.upload.drop.derivate=Drop files or directories to attach or browse. -mir.upload.drop.objekt=Drop files to attach -mir.useAndReproduction=Use and reproduction: -mir.validation.author=Author must be entered. -mir.validation.blog.title=Please enter the title of the blog. -mir.validation.college=Please enter college. -mir.validation.collegeplace=Please enter college place. -mir.validation.date=Please enter a year (YYYY), year and month (YYYY-MM), or a complete date (YYYY-MM-DD). -mir.validation.dateCreated=Date created must be entered. -mir.validation.dateIssued=Date issued must be entered. -mir.validation.doi=The DOI must start with "10." (without preceding "https://doi.org/"). -mir.validation.editor=Editor must be entered. -mir.validation.failed=Please fix the following validation errors in the marked fields: -mir.validation.genre=Choose genre. -mir.validation.handle=The handle must be entered in the format "/", without preceding "http://hdl.handle.net/". -mir.validation.inventor=Inventor must be entered. -mir.validation.isbn=The ISBN must be entered using 10 or 13 characters (digits, hyphen, the uppercase X or spaces). -mir.validation.issn=The ISSN must be entered as NNNN-NNNN (only digits, uppercase X). -mir.validation.link.blog_entry=Please enter the link to the blog. -mir.validation.order=Please only use Integers for ordering. -mir.validation.ppn=Please enter a valid PPN. -mir.validation.relatedItem='Is referenced by' can only be used in relation to external sources. -mir.validation.rights=Rights must be entered. -mir.validation.sdnb=Choose SDBN category. -mir.validation.subject=Please insert at least one keyword. -mir.validation.title=Title must be entered. -mir.validation.title.book=Please insert book title. -mir.validation.title.collection=Please insert collection title. -mir.validation.title.festschrift=Please insert festschrift title. -mir.validation.title.lexicon=Please insert lexicon title. -mir.validation.title.newspaper=Please insert newspaper title. -mir.validation.title.series=Please insert series title. -mir.validation.url=Please fix the link (starting with http://, https:// or ftp://). -mir.validation.urn=Please fix the URN (urn:nbn:...). -mir.volume=Volume: -mir.workflow.sherpa.loading=loading sherpa/romea information ... -mir.workflow.sherpa.message=Inform yourself about the Open Access pathways permitted by this journal's policy. -object.copyObject=create copy of this entry -object.createImagewareZipPackage=create ImageWare zip package -object.editGenre=Change type -object.hasChildren=This document has children -object.newVersion=create new version of -orcid.integration.confirmed.headline=Your ORCID\u00AE iD is connected! -orcid.integration.confirmed.text=You have authorized Verbundzentrale des GBV (VZG) as a "Trusted Party" to access your ORCID record. \r\nBy the way, you may revoke this permission any time at your ORCID record under \r\n[Account Settings] > [Trusted organizations]. We now can -orcid.integration.confirmed.thanks=Thank you -orcid.integration.import=import publication data from your ORCID record into MIR -orcid.integration.more=More about advantages of ORCID and author identification -orcid.integration.pending.authorize=and authorize Verbundzentrale des GBV (VZG) to access your ORCID record as a "trusted party". If you do so, we can -orcid.integration.pending.headline=Connect your ORCID\u00AE iD and benefit from integrated services! -orcid.integration.pending.intro=Your ORCID\u00AE iD is a persistent, personal identifier that distinguishes you from other researchers and provides mechanisms for linking your research outputs and activities. ORCID is already integrated into many systems used by publishers, funders, institutions and other research-related services. \r\n -orcid.integration.popup.close=Close window -orcid.integration.popup.title=ORCID\u00AE Authorization -orcid.integration.popup.tooltip=opens popup window to login at ORCID -orcid.integration.publish=complete your ORCID record by adding publications from MIR not already listed there. -orcid.integration.rejected.denied=Sorry, you did not authorize Verbundzentrale des GBV (VZG) as your trusted party.\r\nWe therefore can't synchronize your publication data between your ORCID record and MIR.\r\n\r\n -orcid.integration.rejected.error=Error message -orcid.integration.rejected.headline=ORCID\u00AE authorization failed or rejected -orcid.integration.rejected.retry=Try again? Changed your mind? -orcid.oauth.link=Click to Register or Connect your ORCID iD ! -orcid.publication.action.confirmation=The publication ahs been transferred to your ORCID record! -orcid.publication.action.create=add to my ORCID record -orcid.publication.action.update=update in my ORCID record -orcid.publication.inProfile.false=This publication is NOT contained in your ORCID record -orcid.publication.inProfile.true=This publication is already present in your ORCID record -results=Results -results.hits.multiple={0} publications found. -results.hits.none=No publications found. -results.hits.one=One publication found. -results.nObjects={0} documents found\r\n -results.noObject=no documents found\r\n -results.oneObject=One document found -results.size=Result pages -search.and=and -search.hits.all=all -search.hits.page=Hits per results page -search.hits.with=with -search.numHits=Number of hits: -search.select=(please select) -search.sort=Sort by: -search.sort.asc=ascending -search.sort.desc=descending -search.sort.first=first -search.sort.then=then -selfRegistration.captcha=Captcha: -selfRegistration.error.captcha=Captcha test failed. Please repeat! -selfRegistration.error.mailError=There was no mail will be sent! Please try again later! -selfRegistration.error.missingParameter=Incomplete confirmation link! -selfRegistration.error.userExists=User already exists! -selfRegistration.error.userNotFound=User not found! -selfRegistration.realName.required=Please input your name. -selfRegistration.step.create.title=Step 1: Self-registration -selfRegistration.step.created.title=Your user account was created -selfRegistration.step.verified.title=Your email address was confirmed -subselect.category.cancel=Cancel -subselect.category.title=Choose category -user.profile.id.orcid=Your ORCID iD pdf.errorbox.warning.message=Attention! Errors have occurred with some of your PDF/A documents. Please make sure that your PDF/A documents were created with up-to-date and suitable programs and read the error documentation. You will find a list of the occurred errors below! pdf.errorbox.warning.heading=Warning! pdf.errorbox.success.heading=Success! @@ -1525,4 +797,3 @@ pdf.errorbox.button.info=Learn More pdf.errorbox.button.download=Download pdf.errorbox.conformity.level=Conformity level pdf.errorbox.unknown.error=No further information! - diff --git a/mir-module/src/main/resources/xsl/metadata/mir-pdf-errorbox.xsl b/mir-module/src/main/resources/xsl/metadata/mir-pdf-errorbox.xsl deleted file mode 100644 index 0961805cf2..0000000000 --- a/mir-module/src/main/resources/xsl/metadata/mir-pdf-errorbox.xsl +++ /dev/null @@ -1,182 +0,0 @@ - - - - - - - - - - - - - - - - - - - -
-
-
-

- -

-

- -

-
-
-
- -
-
-
- -
-
-

- -

-

- -

-
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - danger - success - - - - -
    -
  • -

    - - - - - - -

    - - - - - - - - - -
  • - -
-
- - - -
  • -

    - - Specification: - - - - - - Clause: - - - - - - Test: - - - - -

    - - - - - - - - - - - -
  • -
    - - - - - - - - - - - - - - - - - - - - - - -
    \ No newline at end of file diff --git a/mir-module/src/main/resources/xsl/metadata/mir-workflow.xsl b/mir-module/src/main/resources/xsl/metadata/mir-workflow.xsl index c64eea7658..39aead7430 100644 --- a/mir-module/src/main/resources/xsl/metadata/mir-workflow.xsl +++ b/mir-module/src/main/resources/xsl/metadata/mir-workflow.xsl @@ -3,203 +3,186 @@ xmlns:i18n="xalan://org.mycore.services.i18n.MCRTranslation" xmlns:exslt="http://exslt.org/common" xmlns:mods="http://www.loc.gov/mods/v3" - xmlns:xlink="http://www.w3.org/1999/xlink" - version="1.0" exclude-result-prefixes="i18n exslt" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xsi:schemaLocation="xalan://org.mycore.validation.pdfa.MCRPdfAFunctions "> - - - - - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    -
    - -
    - - - - - - creatorSubmitted - Nutzer Ersteller - Dokument submitted - - - - - - - - - - - -

    - -

    -

    -
    - - - - - -
    -
    - - - - - - editorSubmitted - Nutzer editor - Dokument submitted - - - - - - - - - - creatorReview - Nutzer creator - Dokument review - - - -

    - -

    -
    - - - - - -
    - - - - - editorReview - Nutzer editor - Dokument review - - - - + version="1.0" exclude-result-prefixes="i18n exslt"> + + + + + + + + + + + + + + + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + +
    + + + + + + creatorSubmitted + Nutzer Ersteller + Dokument submitted + + + + + + + + + + + +

    + +

    +

    +
    + + + + +
    +
    + + + + + + editorSubmitted + Nutzer editor + Dokument submitted + + + + + + + + + creatorReview + Nutzer creator + Dokument review + + + +

    + +

    +
    + + + + +
    + + + + + editorReview + Nutzer editor + Dokument review + + + + + + + +

    + +

    +

    +
    + + + + +
    +
    @@ -224,23 +207,22 @@ - - - - - - - - - -
    - -

    - -

    -
    - -
    -
    +
    + + + + + + + + +
    + +

    + +

    +
    + +
    +
    - diff --git a/mir-wizard/src/main/java/org/mycore/mir/wizard/command/MIRWizardDownloadDBLib.java b/mir-wizard/src/main/java/org/mycore/mir/wizard/command/MIRWizardDownloadDBLib.java index ea45e46e09..de8f4e0756 100644 --- a/mir-wizard/src/main/java/org/mycore/mir/wizard/command/MIRWizardDownloadDBLib.java +++ b/mir-wizard/src/main/java/org/mycore/mir/wizard/command/MIRWizardDownloadDBLib.java @@ -23,7 +23,7 @@ package org.mycore.mir.wizard.command; import java.io.File; -import java.net.URL; +import java.net.URI; import org.apache.commons.io.FileUtils; import org.apache.commons.io.FilenameUtils; @@ -63,7 +63,7 @@ public void doExecute() { File file = new File(libDir + File.separator + fname); try { - FileUtils.copyURLToFile(new URL(url), file); + FileUtils.copyURLToFile(new URI(url).toURL(), file); MCRConfigurationDirSetup.loadExternalLibs(); success = true;