mirror of
https://github.com/Cian-H/invenio-theme-iform.git
synced 2025-12-23 05:01:58 +00:00
Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b286b9adaa | ||
|
|
19fada5940 | ||
|
|
7cb3b5a83b | ||
|
|
936c085f05 | ||
|
|
d43cf0e4b5 | ||
|
|
73a344eb52 | ||
|
|
aa37718a2c |
6
.github/workflows/tests.yml
vendored
6
.github/workflows/tests.yml
vendored
@@ -31,10 +31,10 @@ jobs:
|
|||||||
python-version: [3.8, 3.9]
|
python-version: [3.8, 3.9]
|
||||||
requirements-level: [pypi]
|
requirements-level: [pypi]
|
||||||
db-service: [postgresql13]
|
db-service: [postgresql13]
|
||||||
search-service: [elasticsearch7]
|
search-service: [opensearch2]
|
||||||
include:
|
include:
|
||||||
- search-service: elasticsearch7
|
- search-service: opensearch2
|
||||||
SEARCH_EXTRAS: "elasticsearch7"
|
SEARCH_EXTRAS: "opensearch2"
|
||||||
|
|
||||||
env:
|
env:
|
||||||
DB: ${{ matrix.db-service }}
|
DB: ${{ matrix.db-service }}
|
||||||
|
|||||||
17
CHANGES.rst
17
CHANGES.rst
@@ -8,6 +8,23 @@
|
|||||||
Changes
|
Changes
|
||||||
=======
|
=======
|
||||||
|
|
||||||
|
Version v4.10.0 (release 2022-10-13)
|
||||||
|
|
||||||
|
- global: migrate to v10 (#282)
|
||||||
|
|
||||||
|
Version v4.0.2 (release 2022-09-09)
|
||||||
|
|
||||||
|
- release v4.0.1
|
||||||
|
- update translation
|
||||||
|
- improve wording on search options
|
||||||
|
|
||||||
|
|
||||||
|
Version v4.0.1 (release 2022-08-05)
|
||||||
|
|
||||||
|
- update translation
|
||||||
|
- improve wording on search options
|
||||||
|
|
||||||
|
|
||||||
Version v4.0.0 (release 2022-07-29)
|
Version v4.0.0 (release 2022-07-29)
|
||||||
|
|
||||||
- remove unnecessary html code for header-search-bar
|
- remove unnecessary html code for header-search-bar
|
||||||
|
|||||||
@@ -15,7 +15,6 @@ encoding = utf-8
|
|||||||
|
|
||||||
[jinja2: **/templates/**.html]
|
[jinja2: **/templates/**.html]
|
||||||
encoding = utf-8
|
encoding = utf-8
|
||||||
extensions = jinja2.ext.autoescape, jinja2.ext.with_
|
|
||||||
|
|
||||||
# Extraction from JavaScript files
|
# Extraction from JavaScript files
|
||||||
|
|
||||||
|
|||||||
@@ -62,7 +62,7 @@ release = __version__
|
|||||||
#
|
#
|
||||||
# This is also used if you do content translation via gettext catalogs.
|
# This is also used if you do content translation via gettext catalogs.
|
||||||
# Usually you set "language" from the command line for these cases.
|
# Usually you set "language" from the command line for these cases.
|
||||||
language = None
|
language = "en"
|
||||||
|
|
||||||
# There are two options for replacing |today|: either, you set today to some
|
# There are two options for replacing |today|: either, you set today to some
|
||||||
# non-false value, then it is used:
|
# non-false value, then it is used:
|
||||||
|
|||||||
@@ -10,6 +10,6 @@
|
|||||||
|
|
||||||
from .ext import InvenioThemeTugraz
|
from .ext import InvenioThemeTugraz
|
||||||
|
|
||||||
__version__ = "4.0.0"
|
__version__ = "4.10.0"
|
||||||
|
|
||||||
__all__ = ("__version__", "InvenioThemeTugraz")
|
__all__ = ("__version__", "InvenioThemeTugraz")
|
||||||
|
|||||||
@@ -255,3 +255,10 @@ span.home-inline{
|
|||||||
border: solid @notificationBorder 1px;
|
border: solid @notificationBorder 1px;
|
||||||
z-index: 100000;
|
z-index: 100000;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#skip-to-main {
|
||||||
|
background-color: @primaryButton;
|
||||||
|
&:focus {
|
||||||
|
background-color: @primaryButtonInverted;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
@@ -46,7 +46,7 @@
|
|||||||
@primaryLinkHoverBackground : @primaryText;
|
@primaryLinkHoverBackground : @primaryText;
|
||||||
@primaryButton : @primaryBackground;
|
@primaryButton : @primaryBackground;
|
||||||
@primaryButtonHoverBackground : @primaryText;
|
@primaryButtonHoverBackground : @primaryText;
|
||||||
@primaryButtonInverted : #000f;
|
@primaryButtonInverted : @primaryText;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -8,8 +8,8 @@
|
|||||||
|
|
||||||
"""Frontpage records."""
|
"""Frontpage records."""
|
||||||
|
|
||||||
from elasticsearch_dsl.query import Q
|
|
||||||
from invenio_search.api import RecordsSearch
|
from invenio_search.api import RecordsSearch
|
||||||
|
from invenio_search.engine import dsl
|
||||||
|
|
||||||
|
|
||||||
class FrontpageRecordsSearch(RecordsSearch):
|
class FrontpageRecordsSearch(RecordsSearch):
|
||||||
@@ -19,7 +19,7 @@ class FrontpageRecordsSearch(RecordsSearch):
|
|||||||
"""Default index and filter for frontpage search."""
|
"""Default index and filter for frontpage search."""
|
||||||
|
|
||||||
index = "rdmrecords-records"
|
index = "rdmrecords-records"
|
||||||
default_filter = Q(
|
default_filter = dsl.Q(
|
||||||
"query_string",
|
"query_string",
|
||||||
query=("access.record:public " "AND versions.is_latest:true"),
|
query=("access.record:public " "AND versions.is_latest:true"),
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -14,12 +14,12 @@
|
|||||||
"title": "repo",
|
"title": "repo",
|
||||||
},{
|
},{
|
||||||
"key": "marc21",
|
"key": "marc21",
|
||||||
"text": _("search publications (thesis, books, papers, etc)"),
|
"text": _("Publications"),
|
||||||
"value": url_for("invenio_records_marc21.search"),
|
"value": url_for("invenio_records_marc21.search"),
|
||||||
"title": "publication",
|
"title": "publication",
|
||||||
},{
|
},{
|
||||||
"key": "lom",
|
"key": "lom",
|
||||||
"text": _("search open educational resources"),
|
"text": _("Open Educational Resources"),
|
||||||
"value": url_for("invenio_records_lom.search"),
|
"value": url_for("invenio_records_lom.search"),
|
||||||
"title": "oer",
|
"title": "oer",
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -8,22 +8,23 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: invenio-theme-tugraz 1.0.4\n"
|
"Project-Id-Version: invenio-theme-tugraz 1.0.4\n"
|
||||||
"Report-Msgid-Bugs-To: mojib.wali@tugraz.at\n"
|
"Report-Msgid-Bugs-To: mojib.wali@tugraz.at\n"
|
||||||
"POT-Creation-Date: 2022-03-03 10:34+0100\n"
|
"POT-Creation-Date: 2022-08-05 10:15+0200\n"
|
||||||
"PO-Revision-Date: 2020-10-06 10:27+0200\n"
|
"PO-Revision-Date: 2022-08-05 10:21+0200\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: \n"
|
||||||
"Language: de\n"
|
|
||||||
"Language-Team: de <LL@li.org>\n"
|
"Language-Team: de <LL@li.org>\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
|
"Language: de\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=utf-8\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
"Generated-By: Babel 2.9.1\n"
|
"Generated-By: Babel 2.9.1\n"
|
||||||
|
"X-Generator: Poedit 2.3.1\n"
|
||||||
|
|
||||||
#: invenio_theme_tugraz/config.py:13 invenio_theme_tugraz/config.py:62
|
#: invenio_theme_tugraz/config.py:13 invenio_theme_tugraz/config.py:60
|
||||||
msgid "TU Graz Repository"
|
msgid "TU Graz Repository"
|
||||||
msgstr "TU Graz Repository"
|
msgstr "TU Graz Repository"
|
||||||
|
|
||||||
#: invenio_theme_tugraz/config.py:65
|
#: invenio_theme_tugraz/config.py:63
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:30
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:30
|
||||||
msgid "Repository"
|
msgid "Repository"
|
||||||
msgstr "Repository"
|
msgstr "Repository"
|
||||||
@@ -39,8 +40,8 @@ msgstr "Sicher"
|
|||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:3
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:3
|
||||||
msgid ""
|
msgid ""
|
||||||
"your research is stored safely for the future in TU Graz library for as "
|
"your research is stored safely for the future in TU Graz library for as long "
|
||||||
"long as TU Graz library exists."
|
"as TU Graz library exists."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Ihre Forschung ist in der Bibliothek der TU Graz für die Zukunft "
|
"Ihre Forschung ist in der Bibliothek der TU Graz für die Zukunft "
|
||||||
"gespeichert, solange die Bibliothek der TU Graz existiert."
|
"gespeichert, solange die Bibliothek der TU Graz existiert."
|
||||||
@@ -51,8 +52,8 @@ msgstr "Vertrauenswürdig"
|
|||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:4
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:4
|
||||||
msgid ""
|
msgid ""
|
||||||
"built and operated by CERN and OpenAIRE to ensure that everyone can join "
|
"built and operated by CERN and OpenAIRE to ensure that everyone can join in "
|
||||||
"in Open Science."
|
"Open Science."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Aufgebaut und betrieben von CERN und OpenAIRE, um sicherzustellen, dass "
|
"Aufgebaut und betrieben von CERN und OpenAIRE, um sicherzustellen, dass "
|
||||||
"jeder an Open Science teilnehmen kann."
|
"jeder an Open Science teilnehmen kann."
|
||||||
@@ -66,8 +67,8 @@ msgid ""
|
|||||||
"every upload is assigned a Digital Object Identifier (DOI), to make them "
|
"every upload is assigned a Digital Object Identifier (DOI), to make them "
|
||||||
"citable and trackable."
|
"citable and trackable."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Jeder Upload wird mit einem Digital Object Identifier (DOI) versehen,um "
|
"Jeder Upload wird mit einem Digital Object Identifier (DOI) versehen,um ihn "
|
||||||
"ihn zitierfähig und nachverfolgbar zu"
|
"zitierfähig und nachverfolgbar zu"
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:6
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:6
|
||||||
msgid "No waiting time"
|
msgid "No waiting time"
|
||||||
@@ -75,11 +76,11 @@ msgstr "Keine Wartezeit"
|
|||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:6
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:6
|
||||||
msgid ""
|
msgid ""
|
||||||
"Uploads are made available online as soon as you hit publish, and your "
|
"Uploads are made available online as soon as you hit publish, and your DOI "
|
||||||
"DOI is registered within seconds."
|
"is registered within seconds."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Uploads stehen sofort nach drücken auf “Veröffentlichen” zur Verfügung. "
|
"Uploads stehen sofort nach drücken auf “Veröffentlichen” zur Verfügung. Ihre "
|
||||||
"Ihre DOI wird innerhalb von Sekunden registriert."
|
"DOI wird innerhalb von Sekunden registriert."
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:7
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:7
|
||||||
msgid "Open or closed"
|
msgid "Open or closed"
|
||||||
@@ -90,8 +91,8 @@ msgid ""
|
|||||||
"Share e.g. anonymized clinical trial data with only medical professionals "
|
"Share e.g. anonymized clinical trial data with only medical professionals "
|
||||||
"via our restricted access mode."
|
"via our restricted access mode."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Teilen Sie z.B. anonymisierte klinische Studiendaten nur mit "
|
"Teilen Sie z.B. anonymisierte klinische Studiendaten nur mit medizinischem "
|
||||||
"medizinischem Fachpersonal über unseren eingeschränkten Zugriffsmodus."
|
"Fachpersonal über unseren eingeschränkten Zugriffsmodus."
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:8
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:8
|
||||||
msgid "Versioning"
|
msgid "Versioning"
|
||||||
@@ -197,9 +198,10 @@ msgstr "Um die Schriftgröße zu ändern."
|
|||||||
#, fuzzy, python-format
|
#, fuzzy, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"<strong>Powered by</strong>\n"
|
"<strong>Powered by</strong>\n"
|
||||||
" <a href=\"%(invenio_rdm)s\" target=\"_blank\" "
|
" <a href=\"%(invenio_rdm)s\" target=\"_blank\" title=\"invenioRDM"
|
||||||
"title=\"invenioRDM\">"
|
"\">"
|
||||||
msgstr "<strong>Powered by</strong> <a href=\"%(invenio_rdm)s\" target=\"_blank\">"
|
msgstr ""
|
||||||
|
"<strong>Powered by</strong> <a href=\"%(invenio_rdm)s\" target=\"_blank\">"
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:126
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:126
|
||||||
#, fuzzy, python-format
|
#, fuzzy, python-format
|
||||||
@@ -207,7 +209,8 @@ msgid ""
|
|||||||
"<strong>Enabled by</strong>\n"
|
"<strong>Enabled by</strong>\n"
|
||||||
" <a href=\"%(fair_data)s\" target=\"_blank\" title=\"Fair Data "
|
" <a href=\"%(fair_data)s\" target=\"_blank\" title=\"Fair Data "
|
||||||
"Austria\">"
|
"Austria\">"
|
||||||
msgstr "<strong>Enabled by</strong> <a href=\"%(fair_data)s\" target=\"_blank\">"
|
msgstr ""
|
||||||
|
"<strong>Enabled by</strong> <a href=\"%(fair_data)s\" target=\"_blank\">"
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:140
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:140
|
||||||
#, python-format
|
#, python-format
|
||||||
@@ -235,103 +238,109 @@ msgstr "Testumgebung"
|
|||||||
msgid "This is the test instance of the TU Graz Repository."
|
msgid "This is the test instance of the TU Graz Repository."
|
||||||
msgstr "Dies ist die Testumgebung des TU Graz Repositorys."
|
msgstr "Dies ist die Testumgebung des TU Graz Repositorys."
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/header.html:39
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/header.html:40
|
||||||
msgid "Home"
|
msgid "Home"
|
||||||
msgstr "Startseite"
|
msgstr "Startseite"
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/header.html:49
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:26
|
||||||
msgid "My dashboard"
|
|
||||||
msgstr "Meine Übersicht"
|
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:27
|
|
||||||
msgid "Type and press enter to search"
|
|
||||||
msgstr "Suchbegriff eingeben und “Enter” drücken (?)"
|
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:43
|
|
||||||
msgid "Recent uploads"
|
msgid "Recent uploads"
|
||||||
msgstr "Kürzlich hochgeladene Dateien"
|
msgstr "Kürzlich hochgeladene Dateien"
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:47
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:30
|
||||||
msgid "There are no public records to show."
|
msgid "There are no public records to show."
|
||||||
msgstr "Es sind keine öffentlich zugänglichen Datensätze vorhanden."
|
msgstr "Es sind keine öffentlich zugänglichen Datensätze vorhanden."
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:61
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:44
|
||||||
msgid "Publication date"
|
msgid "Publication date"
|
||||||
msgstr "Datum der Veröffentlichung"
|
msgstr "Datum der Veröffentlichung"
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:66
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:49
|
||||||
msgid "Resource type"
|
msgid "Resource type"
|
||||||
msgstr "Art der Veröffentlichung"
|
msgstr "Art der Veröffentlichung"
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:104
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:87
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"\n"
|
||||||
" Uploaded on %(date)s\n"
|
" Uploaded on %(date)s\n"
|
||||||
" "
|
" "
|
||||||
msgstr "Hochgeladen am %(date)s\n"
|
msgstr ""
|
||||||
|
"\n"
|
||||||
|
"\t\tHochgeladen am %(date)s"
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:118
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:101
|
||||||
msgid "More"
|
msgid "More"
|
||||||
msgstr "Mehr"
|
msgstr "Mehr"
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:128
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:111
|
||||||
msgid "Need help?"
|
msgid "Need help?"
|
||||||
msgstr "Brauchen Sie Hilfe?"
|
msgstr "Brauchen Sie Hilfe?"
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:132
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:115
|
||||||
msgid "Contact us"
|
msgid "Contact us"
|
||||||
msgstr "Kontaktiere uns"
|
msgstr "Kontaktiere uns"
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:137
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:120
|
||||||
msgid "prioritizes all Recent uploads."
|
msgid "prioritizes all Recent uploads."
|
||||||
msgstr "reiht die neuesten Uploads vor."
|
msgstr "reiht die neuesten Uploads vor."
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:140
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:123
|
||||||
msgid "We can help with:"
|
msgid "We can help with:"
|
||||||
msgstr "Dabei können wir helfen:"
|
msgstr "Dabei können wir helfen:"
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:145
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:128
|
||||||
msgid "Uploading your research data, software, preprints, etc."
|
msgid "Uploading your research data, software, preprints, etc."
|
||||||
msgstr "Hochladen Ihrer Forschungsdaten, Software, Preprints usw."
|
msgstr "Hochladen Ihrer Forschungsdaten, Software, Preprints usw."
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:146
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:129
|
||||||
msgid "One-on-one with"
|
msgid "One-on-one with"
|
||||||
msgstr "One-on-one mit"
|
msgstr "One-on-one mit"
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:146
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:129
|
||||||
msgid "supporters."
|
msgid "supporters."
|
||||||
msgstr "Unterstützern"
|
msgstr "Unterstützern"
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:147
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:130
|
||||||
msgid "Quota increases beyond our default policy."
|
msgid "Quota increases beyond our default policy."
|
||||||
msgstr "Quota Erhöhungen über unsere Standard Policy hinaus."
|
msgstr "Quota Erhöhungen über unsere Standard Policy hinaus."
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:148
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:131
|
||||||
msgid "Scripts for automated uploading of larger datasets."
|
msgid "Scripts for automated uploading of larger datasets."
|
||||||
msgstr "Skripte zum automatisierten Hochladen größerer Datensätze."
|
msgstr "Skripte zum automatisierten Hochladen größerer Datensätze."
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:153
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:136
|
||||||
msgid "Why use"
|
msgid "Why use"
|
||||||
msgstr "Warum"
|
msgstr "Warum"
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/navbar.html:66
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/navbar.html:12
|
||||||
|
msgid "All"
|
||||||
|
msgstr "Alle"
|
||||||
|
|
||||||
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/navbar.html:17
|
||||||
|
msgid "Publications"
|
||||||
|
msgstr "Publikationen"
|
||||||
|
|
||||||
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/navbar.html:22
|
||||||
|
msgid "Open Educational Resources"
|
||||||
|
msgstr "Open Educational Resources"
|
||||||
|
|
||||||
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/navbar.html:76
|
||||||
msgid "REPOSITORY"
|
msgid "REPOSITORY"
|
||||||
msgstr "Repository"
|
msgstr "Repository"
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/navbar.html:68
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/navbar.html:78
|
||||||
msgid "LIBRARY & ARCHIVES"
|
msgid "LIBRARY & ARCHIVES"
|
||||||
msgstr "Bibliothek und Archiv"
|
msgstr "Bibliothek und Archiv"
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/navbar.html:78
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/navbar.html:88
|
||||||
msgid "SCIENCE"
|
msgid "SCIENCE"
|
||||||
msgstr "WISSEN"
|
msgstr "WISSEN"
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/navbar.html:79
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/navbar.html:89
|
||||||
msgid "PASSION"
|
msgid "PASSION"
|
||||||
msgstr "TECHNIK"
|
msgstr "TECHNIK"
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/navbar.html:80
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/navbar.html:90
|
||||||
msgid "TECHNOLOGY"
|
msgid "TECHNOLOGY"
|
||||||
msgstr "LEIDENSCHAFT"
|
msgstr "LEIDENSCHAFT"
|
||||||
|
|
||||||
@@ -393,8 +402,7 @@ msgid ""
|
|||||||
"Uploads get a Digital Object Identifier (DOI) to make them easily and "
|
"Uploads get a Digital Object Identifier (DOI) to make them easily and "
|
||||||
"uniquely citeable."
|
"uniquely citeable."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Uploads erhalten eine DOI und werden damit leichtauffindbar und "
|
"Uploads erhalten eine DOI und werden damit leichtauffindbar und zitierfähig."
|
||||||
"zitierfähig."
|
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/accounts/register_user.html:28
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/accounts/register_user.html:28
|
||||||
msgid "Communities."
|
msgid "Communities."
|
||||||
@@ -402,8 +410,8 @@ msgstr "Communities"
|
|||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/accounts/register_user.html:30
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/accounts/register_user.html:30
|
||||||
msgid ""
|
msgid ""
|
||||||
"Accept or reject uploads to your own community (e.g workshops, EU "
|
"Accept or reject uploads to your own community (e.g workshops, EU projects, "
|
||||||
"projects, institutions or entire disciplines)."
|
"institutions or entire disciplines)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Annehmen oder Ablehnen von Uploads in Ihrer eigenen Community (z.B. "
|
"Annehmen oder Ablehnen von Uploads in Ihrer eigenen Community (z.B. "
|
||||||
"workshop, EU-Projekt, Forschungseinrichtung, Disziplin)"
|
"workshop, EU-Projekt, Forschungseinrichtung, Disziplin)"
|
||||||
@@ -414,8 +422,8 @@ msgstr "Vertrauenswürdiges Forschungsdatenmanagement"
|
|||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/accounts/register_user.html:34
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/accounts/register_user.html:34
|
||||||
msgid ""
|
msgid ""
|
||||||
"Built on top of TU Graz expertise in managing of the research data from "
|
"Built on top of TU Graz expertise in managing of the research data from the "
|
||||||
"the Graz University of Technology."
|
"Graz University of Technology."
|
||||||
msgstr "Gebaut basierend auf Expertise derTU Graz im Bereich Data Management"
|
msgstr "Gebaut basierend auf Expertise derTU Graz im Bereich Data Management"
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/accounts/register_user.html:48
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/accounts/register_user.html:48
|
||||||
@@ -426,6 +434,12 @@ msgstr "Mit Ihrem TUGonline-Account registrieren"
|
|||||||
msgid "Sign up with repository credentials"
|
msgid "Sign up with repository credentials"
|
||||||
msgstr "Mit Ihren Repository Daten registrieren"
|
msgstr "Mit Ihren Repository Daten registrieren"
|
||||||
|
|
||||||
|
#~ msgid "My dashboard"
|
||||||
|
#~ msgstr "Meine Übersicht"
|
||||||
|
|
||||||
|
#~ msgid "Type and press enter to search"
|
||||||
|
#~ msgstr "Suchbegriff eingeben und “Enter” drücken (?)"
|
||||||
|
|
||||||
#~ msgid "Version"
|
#~ msgid "Version"
|
||||||
#~ msgstr "Version"
|
#~ msgstr "Version"
|
||||||
|
|
||||||
@@ -444,17 +458,6 @@ msgstr "Mit Ihren Repository Daten registrieren"
|
|||||||
#~ msgid "DOI"
|
#~ msgid "DOI"
|
||||||
#~ msgstr "DOI"
|
#~ msgstr "DOI"
|
||||||
|
|
||||||
#~ msgid "Open Access"
|
|
||||||
#~ msgstr ""
|
|
||||||
|
|
||||||
#~ msgid "No minted DOI"
|
|
||||||
#~ msgstr ""
|
|
||||||
|
|
||||||
#~ msgid ""
|
|
||||||
#~ "Enabled by\n"
|
|
||||||
#~ " <a href=\"%(fair_data)s\" target=\"_blank\">"
|
|
||||||
#~ msgstr ""
|
|
||||||
|
|
||||||
#~ msgid "Uploads"
|
#~ msgid "Uploads"
|
||||||
#~ msgstr "Hochladen"
|
#~ msgstr "Hochladen"
|
||||||
|
|
||||||
@@ -472,20 +475,15 @@ msgstr "Mit Ihren Repository Daten registrieren"
|
|||||||
|
|
||||||
#~ msgid ""
|
#~ msgid ""
|
||||||
#~ "\n"
|
#~ "\n"
|
||||||
#~ " There is a %(link_start)snewer "
|
#~ " There is a %(link_start)snewer version%(link_end)s of the "
|
||||||
#~ "version%(link_end)s of the record available."
|
#~ "record available.\n"
|
||||||
#~ "\n"
|
|
||||||
#~ " "
|
#~ " "
|
||||||
#~ msgstr ""
|
#~ msgstr ""
|
||||||
#~ "Es ist eine %(link_start)sneuere "
|
#~ "Es ist eine %(link_start)sneuere Version%(link_end)s des Eintrags "
|
||||||
#~ "Version%(link_end)s des Eintrags verfügbar."
|
#~ "verfügbar."
|
||||||
|
|
||||||
#~ msgid "Files"
|
#~ msgid "Files"
|
||||||
#~ msgstr "Dateien"
|
#~ msgstr "Dateien"
|
||||||
|
|
||||||
#~ msgid "Reason"
|
#~ msgid "Reason"
|
||||||
#~ msgstr "Grund"
|
#~ msgstr "Grund"
|
||||||
|
|
||||||
#~ msgid "Dashboard"
|
|
||||||
#~ msgstr ""
|
|
||||||
|
|
||||||
|
|||||||
@@ -7,22 +7,22 @@
|
|||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: invenio-theme-tugraz 3.7.0\n"
|
"Project-Id-Version: invenio-theme-tugraz 4.0.0\n"
|
||||||
"Report-Msgid-Bugs-To: mojib.wali@tugraz.at\n"
|
"Report-Msgid-Bugs-To: mojib.wali@tugraz.at\n"
|
||||||
"POT-Creation-Date: 2022-03-03 10:34+0100\n"
|
"POT-Creation-Date: 2022-08-05 10:15+0200\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=utf-8\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Generated-By: Babel 2.9.1\n"
|
"Generated-By: Babel 2.10.3\n"
|
||||||
|
|
||||||
#: invenio_theme_tugraz/config.py:13 invenio_theme_tugraz/config.py:62
|
#: invenio_theme_tugraz/config.py:13 invenio_theme_tugraz/config.py:60
|
||||||
msgid "TU Graz Repository"
|
msgid "TU Graz Repository"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: invenio_theme_tugraz/config.py:65
|
#: invenio_theme_tugraz/config.py:63
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:30
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:30
|
||||||
msgid "Repository"
|
msgid "Repository"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -224,35 +224,27 @@ msgstr ""
|
|||||||
msgid "This is the test instance of the TU Graz Repository."
|
msgid "This is the test instance of the TU Graz Repository."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/header.html:39
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/header.html:40
|
||||||
msgid "Home"
|
msgid "Home"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/header.html:49
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:26
|
||||||
msgid "My dashboard"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:27
|
|
||||||
msgid "Type and press enter to search"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:43
|
|
||||||
msgid "Recent uploads"
|
msgid "Recent uploads"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:47
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:30
|
||||||
msgid "There are no public records to show."
|
msgid "There are no public records to show."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:61
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:44
|
||||||
msgid "Publication date"
|
msgid "Publication date"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:66
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:49
|
||||||
msgid "Resource type"
|
msgid "Resource type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:104
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:87
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"\n"
|
||||||
@@ -260,67 +252,79 @@ msgid ""
|
|||||||
" "
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:118
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:101
|
||||||
msgid "More"
|
msgid "More"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:128
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:111
|
||||||
msgid "Need help?"
|
msgid "Need help?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:132
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:115
|
||||||
msgid "Contact us"
|
msgid "Contact us"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:137
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:120
|
||||||
msgid "prioritizes all Recent uploads."
|
msgid "prioritizes all Recent uploads."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:140
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:123
|
||||||
msgid "We can help with:"
|
msgid "We can help with:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:145
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:128
|
||||||
msgid "Uploading your research data, software, preprints, etc."
|
msgid "Uploading your research data, software, preprints, etc."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:146
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:129
|
||||||
msgid "One-on-one with"
|
msgid "One-on-one with"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:146
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:129
|
||||||
msgid "supporters."
|
msgid "supporters."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:147
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:130
|
||||||
msgid "Quota increases beyond our default policy."
|
msgid "Quota increases beyond our default policy."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:148
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:131
|
||||||
msgid "Scripts for automated uploading of larger datasets."
|
msgid "Scripts for automated uploading of larger datasets."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:153
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:136
|
||||||
msgid "Why use"
|
msgid "Why use"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/navbar.html:66
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/navbar.html:12
|
||||||
|
msgid "All"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/navbar.html:17
|
||||||
|
msgid "Publications"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/navbar.html:22
|
||||||
|
msgid "Open Educational Resources"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/navbar.html:76
|
||||||
msgid "REPOSITORY"
|
msgid "REPOSITORY"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/navbar.html:68
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/navbar.html:78
|
||||||
msgid "LIBRARY & ARCHIVES"
|
msgid "LIBRARY & ARCHIVES"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/navbar.html:78
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/navbar.html:88
|
||||||
msgid "SCIENCE"
|
msgid "SCIENCE"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/navbar.html:79
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/navbar.html:89
|
||||||
msgid "PASSION"
|
msgid "PASSION"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/navbar.html:80
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/navbar.html:90
|
||||||
msgid "TECHNOLOGY"
|
msgid "TECHNOLOGY"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@@ -10,9 +10,9 @@
|
|||||||
|
|
||||||
from typing import Dict
|
from typing import Dict
|
||||||
|
|
||||||
from elasticsearch_dsl.utils import AttrDict
|
|
||||||
from flask import Blueprint, render_template
|
from flask import Blueprint, render_template
|
||||||
from invenio_rdm_records.resources.serializers import UIJSONSerializer
|
from invenio_rdm_records.resources.serializers import UIJSONSerializer
|
||||||
|
from opensearch_dsl.utils import AttrDict
|
||||||
|
|
||||||
from .search import FrontpageRecordsSearch
|
from .search import FrontpageRecordsSearch
|
||||||
|
|
||||||
|
|||||||
14
setup.cfg
14
setup.cfg
@@ -40,16 +40,18 @@ install_requires =
|
|||||||
Flask-WebpackExt>=1.0.0
|
Flask-WebpackExt>=1.0.0
|
||||||
invenio-assets>=1.2.7,<1.3.0
|
invenio-assets>=1.2.7,<1.3.0
|
||||||
invenio-i18n>=1.3.1,<1.4.0
|
invenio-i18n>=1.3.1,<1.4.0
|
||||||
invenio_config_tugraz>=0.9.0,<0.10.0
|
invenio_config_tugraz>=0.10.0,<0.11.0
|
||||||
|
|
||||||
[options.extras_require]
|
[options.extras_require]
|
||||||
tests =
|
tests =
|
||||||
pytest-black>=0.3.0,<0.3.10
|
pytest-black>=0.3.0,<0.3.10
|
||||||
sphinx>=4.2.0,<5
|
Sphinx>=4.5.0
|
||||||
pytest-invenio>=1.4.7
|
pytest-invenio>=1.4.7
|
||||||
invenio-app>=1.3.0,<2.0.0
|
invenio-app>=1.3.0,<2.0.0
|
||||||
elasticsearch7 =
|
# elasticsearch7 =
|
||||||
invenio-search[elasticsearch7]>=1.4.2,<2.0
|
# invenio-search[elasticsearch7]>=2.1.0,<3.0.0
|
||||||
|
opensearch2 =
|
||||||
|
invenio-search[opensearch2]>=2.1.0,<3.0.0
|
||||||
|
|
||||||
[options.entry_points]
|
[options.entry_points]
|
||||||
invenio_base.apps =
|
invenio_base.apps =
|
||||||
@@ -98,6 +100,10 @@ output-dir = invenio_theme_tugraz/translations/
|
|||||||
[isort]
|
[isort]
|
||||||
profile=black
|
profile=black
|
||||||
|
|
||||||
|
[check-manifest]
|
||||||
|
ignore =
|
||||||
|
*-requirements.txt
|
||||||
|
|
||||||
[tool:pytest]
|
[tool:pytest]
|
||||||
addopts = --black --isort --pydocstyle --doctest-glob="*.rst" --doctest-modules --cov=invenio_theme_tugraz --cov-report=term-missing tests invenio_theme_tugraz
|
addopts = --black --isort --pydocstyle --doctest-glob="*.rst" --doctest-modules --cov=invenio_theme_tugraz --cov-report=term-missing tests invenio_theme_tugraz
|
||||||
testpaths = tests invenio_theme_tugraz
|
testpaths = tests invenio_theme_tugraz
|
||||||
|
|||||||
Reference in New Issue
Block a user