mirror of
https://github.com/Cian-H/invenio-theme-iform.git
synced 2025-12-23 21:21:57 +00:00
Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
41bfcf0cee | ||
|
|
bc1c9bcc9c | ||
|
|
ae21366bfa | ||
|
|
9e92934451 | ||
|
|
0df53c42fa | ||
|
|
88d7125acf | ||
|
|
8425d410f2 |
@@ -308,7 +308,7 @@ export class RDMDepositForm extends Component {
|
|||||||
isDraftRecord={!this.props.record.is_published}
|
isDraftRecord={!this.props.record.is_published}
|
||||||
quota={{
|
quota={{
|
||||||
maxFiles: 100,
|
maxFiles: 100,
|
||||||
maxStorage: 10 ** 10,
|
maxStorage: 14 ** 10,
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</AccordionField>
|
</AccordionField>
|
||||||
@@ -481,7 +481,7 @@ export class RDMDepositForm extends Component {
|
|||||||
</Grid.Column>
|
</Grid.Column>
|
||||||
<Ref innerRef={this.sidebarRef}>
|
<Ref innerRef={this.sidebarRef}>
|
||||||
<Grid.Column width={5} className="deposit-sidebar">
|
<Grid.Column width={5} className="deposit-sidebar">
|
||||||
<Sticky context={this.sidebarRef} offset={20}>
|
<Sticky context={this.sidebarRef} offset={50}>
|
||||||
<Card className="actions">
|
<Card className="actions">
|
||||||
<Card.Content>
|
<Card.Content>
|
||||||
<SaveButton fluid className="save-button" />
|
<SaveButton fluid className="save-button" />
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
import $ from 'jquery';
|
import $ from 'jquery';
|
||||||
|
import 'semantic-ui-css';
|
||||||
|
|
||||||
$(function() {
|
$(function() {
|
||||||
let scriptNode = document.createElement("hidden"); //needed for zammad script
|
let scriptNode = document.createElement("hidden"); //needed for zammad script
|
||||||
@@ -17,6 +18,13 @@ $(function() {
|
|||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// used for sticky test instance notification
|
||||||
|
$('.ui.sticky.test-instance')
|
||||||
|
.sticky({
|
||||||
|
context: 'body'
|
||||||
|
})
|
||||||
|
;
|
||||||
|
|
||||||
export function toggleVisibility(id) {
|
export function toggleVisibility(id) {
|
||||||
var element = document.getElementById(id);
|
var element = document.getElementById(id);
|
||||||
var isHided = element.style.display === "none";
|
var isHided = element.style.display === "none";
|
||||||
|
|||||||
@@ -247,3 +247,10 @@ svg:not(:root) {
|
|||||||
span.home-inline{
|
span.home-inline{
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.test-instance{
|
||||||
|
text-align: center;
|
||||||
|
background-color: @notificationBackground;
|
||||||
|
border: solid @notificationBorder 1px;
|
||||||
|
z-index: 100000;
|
||||||
|
}
|
||||||
|
|||||||
@@ -51,7 +51,7 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
//account (signin, signup) specific
|
// account (signin, signup) specific
|
||||||
@primaryFormAccounts : #fff;
|
@primaryFormAccounts : #fff;
|
||||||
@formAccountsInputPlaceholder : silver;
|
@formAccountsInputPlaceholder : silver;
|
||||||
@fieldInputSelectionBackground: #50a2ce;
|
@fieldInputSelectionBackground: #50a2ce;
|
||||||
@@ -67,3 +67,7 @@
|
|||||||
|
|
||||||
// input
|
// input
|
||||||
@outlineColor: #85B7D9;
|
@outlineColor: #85B7D9;
|
||||||
|
|
||||||
|
// notification
|
||||||
|
@notificationBackground: #fffaf3;
|
||||||
|
@notificationBorder: #e2d5c2;
|
||||||
|
|||||||
@@ -17,7 +17,9 @@ INVENIO_THEME_TUGRAZ_DEFAULT_VALUE = _("TU Graz Repository")
|
|||||||
INVENIO_THEME_TUGRAZ_BASE_TEMPLATE = "invenio_theme_tugraz/base.html"
|
INVENIO_THEME_TUGRAZ_BASE_TEMPLATE = "invenio_theme_tugraz/base.html"
|
||||||
"""TU Graz Default base template"""
|
"""TU Graz Default base template"""
|
||||||
|
|
||||||
INVENIO_THEME_TUGRAZ_ACCOUNT_BASE = "invenio_theme_tugraz/accounts/accounts_base.html"
|
INVENIO_THEME_TUGRAZ_ACCOUNT_BASE = (
|
||||||
|
"invenio_theme_tugraz/accounts/accounts_base.html"
|
||||||
|
)
|
||||||
"""TU Graz Default account base template"""
|
"""TU Graz Default account base template"""
|
||||||
|
|
||||||
INVENIO_THEME_TUGRAZ_ICON = "images/icon_use.png"
|
INVENIO_THEME_TUGRAZ_ICON = "images/icon_use.png"
|
||||||
@@ -26,9 +28,16 @@ INVENIO_THEME_TUGRAZ_ICON = "images/icon_use.png"
|
|||||||
INVENIO_THEME_TUGRAZ_LOGIN_IMG = "images/login_logo.png"
|
INVENIO_THEME_TUGRAZ_LOGIN_IMG = "images/login_logo.png"
|
||||||
"""TU Logo for forms"""
|
"""TU Logo for forms"""
|
||||||
|
|
||||||
INVENIO_THEME_TUGRAZ_CONTACT_FORM = False
|
THEME_TUGRAZ_CONTACT_FORM = False
|
||||||
"""Enable/Disable Contact form."""
|
"""Enable/Disable Contact form."""
|
||||||
|
|
||||||
|
THEME_TUGRAZ_PRODUCTION = False
|
||||||
|
"""Production environment.
|
||||||
|
|
||||||
|
Can also be set as an environment variable in a .env file. Then the name
|
||||||
|
has to be 'INVENIO_THEME_TUGRAZ_PRODUCTION'.
|
||||||
|
"""
|
||||||
|
|
||||||
# Invenio-theme
|
# Invenio-theme
|
||||||
# ============
|
# ============
|
||||||
# See https://invenio-theme.readthedocs.io/en/latest/configuration.html
|
# See https://invenio-theme.readthedocs.io/en/latest/configuration.html
|
||||||
@@ -67,7 +76,9 @@ THEME_SITENAME = _("Repository")
|
|||||||
SECURITY_LOGIN_USER_TEMPLATE = "invenio_theme_tugraz/accounts/login_user.html"
|
SECURITY_LOGIN_USER_TEMPLATE = "invenio_theme_tugraz/accounts/login_user.html"
|
||||||
"""Login template"""
|
"""Login template"""
|
||||||
|
|
||||||
SECURITY_REGISTER_USER_TEMPLATE = "invenio_theme_tugraz/accounts/register_user.html"
|
SECURITY_REGISTER_USER_TEMPLATE = (
|
||||||
|
"invenio_theme_tugraz/accounts/register_user.html"
|
||||||
|
)
|
||||||
"""Sigup template"""
|
"""Sigup template"""
|
||||||
|
|
||||||
# Invenio-I18N
|
# Invenio-I18N
|
||||||
|
|||||||
@@ -34,5 +34,5 @@ class InvenioThemeTugraz(object):
|
|||||||
def init_config(self, app):
|
def init_config(self, app):
|
||||||
"""Initialize configuration."""
|
"""Initialize configuration."""
|
||||||
for k in dir(config):
|
for k in dir(config):
|
||||||
if k.startswith("INVENIO_THEME_TUGRAZ_"):
|
if k.startswith("INVENIO_THEME_TUGRAZ_") or k.startswith("THEME_TUGRAZ_"):
|
||||||
app.config.setdefault(k, getattr(config, k))
|
app.config.setdefault(k, getattr(config, k))
|
||||||
|
|||||||
@@ -56,6 +56,12 @@
|
|||||||
{%- endblock head %}
|
{%- endblock head %}
|
||||||
</head>
|
</head>
|
||||||
<body ng-csp {% if body_css_classes %} class="{{ body_css_classes|join(' ') }}"{% endif %}{% if g.ln %} lang="{{ g.ln.split('_', 1)[0]|safe }}"{% if rtl_direction %} {{ rtl_direction|safe }}{% endif %}{% endif %} itemscope itemtype="http://schema.org/WebPage" data-spy="scroll" data-target=".scrollspy-target">
|
<body ng-csp {% if body_css_classes %} class="{{ body_css_classes|join(' ') }}"{% endif %}{% if g.ln %} lang="{{ g.ln.split('_', 1)[0]|safe }}"{% if rtl_direction %} {{ rtl_direction|safe }}{% endif %}{% endif %} itemscope itemtype="http://schema.org/WebPage" data-spy="scroll" data-target=".scrollspy-target">
|
||||||
|
{% if not config.THEME_TUGRAZ_PRODUCTION %}
|
||||||
|
<div class="ui sticky test-instance">
|
||||||
|
<h4>{{_ ("Test Instance") }}</h4>
|
||||||
|
<p>{{_ ("This is the test instance of the TU Graz Repository.") }}</p>
|
||||||
|
</div>
|
||||||
|
{% endif %}
|
||||||
{%- block body %}
|
{%- block body %}
|
||||||
{%- block browserupgrade %}
|
{%- block browserupgrade %}
|
||||||
<!--[if lt IE 8]>
|
<!--[if lt IE 8]>
|
||||||
|
|||||||
@@ -33,6 +33,12 @@
|
|||||||
{{_ ("Documentation")}} <i class="external alternate icon"></i>
|
{{_ ("Documentation")}} <i class="external alternate icon"></i>
|
||||||
</a>
|
</a>
|
||||||
<br>
|
<br>
|
||||||
|
<a
|
||||||
|
href="https://www.tugraz.at/fileadmin/user_upload/tugrazExternal/0c4b9c02-50a6-4a31-b5fd-24a0f93b69c5/TUGraz_Repository_Guide.pdf"
|
||||||
|
title="Quick guide" target="_blank">
|
||||||
|
{{_ ("Handbook")}} <i class="external alternate icon"></i>
|
||||||
|
</a>
|
||||||
|
<br>
|
||||||
<!-- <a href="{{ url_for('invenio_theme_tugraz.comingsoon') }}">
|
<!-- <a href="{{ url_for('invenio_theme_tugraz.comingsoon') }}">
|
||||||
{{_ ("Impressum")}}<i class="angle right icon"></i>
|
{{_ ("Impressum")}}<i class="angle right icon"></i>
|
||||||
</a>
|
</a>
|
||||||
|
|||||||
@@ -6,9 +6,14 @@
|
|||||||
details.
|
details.
|
||||||
#}
|
#}
|
||||||
|
|
||||||
|
{% if not config.THEME_TUGRAZ_PRODUCTION %}
|
||||||
|
<div class="ui sticky test-instance">
|
||||||
|
<h4>{{_ ("Test Instance") }}</h4>
|
||||||
|
<p>{{_ ("This is the test instance of the TU Graz Repository.") }}</p>
|
||||||
|
</div>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
<header>
|
<header>
|
||||||
|
|
||||||
{%- block navbar %}
|
{%- block navbar %}
|
||||||
<nav>
|
<nav>
|
||||||
{%- block navbar_header %}
|
{%- block navbar_header %}
|
||||||
|
|||||||
@@ -134,7 +134,7 @@
|
|||||||
<!--contact us-->
|
<!--contact us-->
|
||||||
<div class="ui segment" style="padding-bottom: 10px;">
|
<div class="ui segment" style="padding-bottom: 10px;">
|
||||||
<h4>{{_ ("Need help?")}}</h4>
|
<h4>{{_ ("Need help?")}}</h4>
|
||||||
{%- if config.INVENIO_THEME_TUGRAZ_CONTACT_FORM %}
|
{%- if config.THEME_TUGRAZ_CONTACT_FORM %}
|
||||||
<div style="padding-bottom: 10px;">
|
<div style="padding-bottom: 10px;">
|
||||||
<a id="feedback-form" class="fluid ui button">
|
<a id="feedback-form" class="fluid ui button">
|
||||||
{{_ ("Contact us")}}
|
{{_ ("Contact us")}}
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ 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: 2021-03-19 10:53+0100\n"
|
"POT-Creation-Date: 2021-04-08 08:50+0200\n"
|
||||||
"PO-Revision-Date: 2020-10-06 10:27+0200\n"
|
"PO-Revision-Date: 2020-10-06 10:27+0200\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language: de\n"
|
"Language: de\n"
|
||||||
@@ -19,16 +19,16 @@ msgstr ""
|
|||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Generated-By: Babel 2.9.0\n"
|
"Generated-By: Babel 2.9.0\n"
|
||||||
|
|
||||||
#: invenio_theme_tugraz/config.py:14 invenio_theme_tugraz/config.py:54
|
#: invenio_theme_tugraz/config.py:14 invenio_theme_tugraz/config.py:63
|
||||||
msgid "TU Graz Repository"
|
msgid "TU Graz Repository"
|
||||||
msgstr "TU Graz Repository"
|
msgstr "TU Graz Repository"
|
||||||
|
|
||||||
#: invenio_theme_tugraz/config.py:57
|
#: invenio_theme_tugraz/config.py:66
|
||||||
#: 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"
|
||||||
|
|
||||||
#: invenio_theme_tugraz/config.py:80
|
#: invenio_theme_tugraz/config.py:91
|
||||||
msgid "German"
|
msgid "German"
|
||||||
msgstr "Deutsche"
|
msgstr "Deutsche"
|
||||||
|
|
||||||
@@ -46,8 +46,8 @@ 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 as TU Graz library exists."
|
"long as TU Graz library exists."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Ihre Forschung wird für die Zukunft sicher in der Bibliothek der TU Graz "
|
"Ihre Forschung ist in der Bibliothek der TU Graz für die Zukunft "
|
||||||
"gespeichert als solange die Bibliothek TU Graz existiert."
|
"gespeichert,solange die Bibliothek der TU Graz existiert."
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:4
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:4
|
||||||
msgid "Trusted"
|
msgid "Trusted"
|
||||||
@@ -58,8 +58,8 @@ 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 Open Science."
|
"in Open Science."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Gebaut und betrieben von CERN und OpenAIRE; um sicherzugehen, dass jedeR "
|
"Aufgebaut und betrieben von CERN und OpenAIRE, um sicherzustellen, dass "
|
||||||
"Zugang zu Open Science hat"
|
"jeder an Open Science teilnehmen kann."
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:5
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:5
|
||||||
msgid "Citeable"
|
msgid "Citeable"
|
||||||
@@ -70,8 +70,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 erhält eine DOI um sicherzustellen,dass er zitierbar und "
|
"Jeder Upload wird mit einem Digital Object Identifier (DOI) versehen,um "
|
||||||
"auffindbar ist"
|
"ihn 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"
|
||||||
@@ -95,7 +95,7 @@ msgid ""
|
|||||||
" 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 Fachpersonalüber unseren eingeschränkten Zugriffsmodus."
|
"medizinischem 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"
|
||||||
@@ -103,7 +103,7 @@ msgstr "Versionierung"
|
|||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:8
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:8
|
||||||
msgid "Easily update your dataset with our versioning feature."
|
msgid "Easily update your dataset with our versioning feature."
|
||||||
msgstr "Einfaches Updaten ihrer Datensätze mit unserere Versionierung."
|
msgstr "Einfaches Updaten ihrer Datensätze mit unserer Versionierung."
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:9
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:9
|
||||||
msgid "Usage statisics"
|
msgid "Usage statisics"
|
||||||
@@ -114,78 +114,96 @@ msgid "All uploads display standards compliant usage statistics"
|
|||||||
msgstr "Alle Uploads entsprechen den Standards der Nutzungsstatistiken."
|
msgstr "Alle Uploads entsprechen den Standards der Nutzungsstatistiken."
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:33
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:33
|
||||||
|
msgid "Documentation"
|
||||||
|
msgstr "Dokumentation"
|
||||||
|
|
||||||
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:39
|
||||||
|
msgid "Handbook"
|
||||||
|
msgstr "Handbuch"
|
||||||
|
|
||||||
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:44
|
||||||
msgid "Impressum"
|
msgid "Impressum"
|
||||||
msgstr "Imprint"
|
msgstr "Imprint"
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:37
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:48
|
||||||
msgid "Data protection"
|
msgid "Data protection"
|
||||||
msgstr "Datenschutzerklärung"
|
msgstr "Datenschutzerklärung"
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:41
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:52
|
||||||
msgid "Feedback"
|
msgid "Feedback"
|
||||||
msgstr "Feedback"
|
msgstr "Feedback"
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:50
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:61
|
||||||
msgid "Features"
|
msgid "Features"
|
||||||
msgstr "Features"
|
msgstr "Features"
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:52
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:63
|
||||||
msgid "Scalability"
|
msgid "Scalability"
|
||||||
msgstr "Skalierbarkeit"
|
msgstr "Skalierbarkeit"
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:54
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:65
|
||||||
msgid "Institutional integration"
|
msgid "Institutional integration"
|
||||||
msgstr "Institutionelle Einbindung"
|
msgstr "Institutionelle Einbindung"
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:56
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:67
|
||||||
msgid "Next Generation Repository"
|
msgid "Next Generation Repository"
|
||||||
msgstr "Repositorium der nächsten Generation"
|
msgstr "Repositorium der nächsten Generation"
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:59
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:70
|
||||||
msgid "Repository Profiles"
|
msgid "Repository Profiles"
|
||||||
msgstr "Repositorienprofile"
|
msgstr "Repositorienprofile"
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:61
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:72
|
||||||
msgid "Resilient"
|
msgid "Resilient"
|
||||||
msgstr "Resilient, widerstandsfähig"
|
msgstr "Resilient, widerstandsfähig"
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:68
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:79
|
||||||
msgid "Connected Services"
|
msgid "Connected Services"
|
||||||
msgstr "Verbundene Services "
|
msgstr "Verbundene Services "
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:72
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:83
|
||||||
msgid "PURE"
|
msgid "PURE"
|
||||||
msgstr "PURE"
|
msgstr "PURE"
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:75
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:86
|
||||||
msgid "CampusOnline"
|
msgid "CampusOnline"
|
||||||
msgstr "CampusOnline"
|
msgstr "CampusOnline"
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:78
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:89
|
||||||
msgid "Research Data Management"
|
msgid "Research Data Management"
|
||||||
msgstr "Forschungsdatenmanagement"
|
msgstr "Forschungsdatenmanagement"
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:85
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:96
|
||||||
msgid "Accessibility"
|
msgid "Accessibility"
|
||||||
msgstr "Barrierefreiheit"
|
msgstr "Barrierefreiheit"
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:86
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:97
|
||||||
msgid "Tipp:"
|
msgid "Tipp:"
|
||||||
msgstr ""
|
msgstr "Tipp"
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:86
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:97
|
||||||
msgid "Use Ctrl + and Crtl -"
|
msgid "Use Ctrl + and Crtl -"
|
||||||
msgstr "Verwenden Sie Strg+ und Strg-"
|
msgstr "Verwenden Sie Strg+ und Strg-"
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:86
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:97
|
||||||
msgid "to change the font size."
|
msgid "to change the font size."
|
||||||
msgstr "Um die Schriftgröße zu ändern."
|
msgstr "Um die Schriftgröße zu ändern."
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/header.html:34
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/accounts/accounts_base.html:61
|
||||||
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/header.html:11
|
||||||
|
msgid "Test Instance"
|
||||||
|
msgstr "Testumgebung"
|
||||||
|
|
||||||
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/accounts/accounts_base.html:62
|
||||||
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/header.html:12
|
||||||
|
msgid "This is the test instance of the TU Graz Repository."
|
||||||
|
msgstr "Dies ist die Testumgebung des TU Graz Repositorys."
|
||||||
|
|
||||||
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/header.html:39
|
||||||
msgid "Home"
|
msgid "Home"
|
||||||
msgstr "Startseite"
|
msgstr "Startseite"
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/header.html:47
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/header.html:52
|
||||||
msgid "Uploads"
|
msgid "Uploads"
|
||||||
msgstr "Hochladen"
|
msgstr "Hochladen"
|
||||||
|
|
||||||
@@ -233,11 +251,11 @@ msgstr "Kontaktiere uns"
|
|||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:145
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:145
|
||||||
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:148
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:148
|
||||||
msgid "We can help with:"
|
msgid "We can help with:"
|
||||||
msgstr "Wir können helfen bei:"
|
msgstr "Dabei können wir helfen:"
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:153
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:153
|
||||||
msgid "Uploading your research data, software, preprints, etc."
|
msgid "Uploading your research data, software, preprints, etc."
|
||||||
@@ -245,7 +263,7 @@ msgstr "Hochladen Ihrer Forschungsdaten, Software, Preprints usw."
|
|||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:154
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:154
|
||||||
msgid "One-on-one with"
|
msgid "One-on-one with"
|
||||||
msgstr "Eins-zu-eins mit"
|
msgstr "One-on-one mit"
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:154
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:154
|
||||||
msgid "supporters."
|
msgid "supporters."
|
||||||
@@ -253,7 +271,7 @@ msgstr "Unterstützern"
|
|||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:155
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:155
|
||||||
msgid "Quota increases beyond our default policy."
|
msgid "Quota increases beyond our default policy."
|
||||||
msgstr "Erhöhung Ihres Kontingents über das vertraglich Zugesicherte hinaus."
|
msgstr "Quota Erhöhungen über unsere Standard Policy hinaus."
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:156
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:156
|
||||||
msgid "Scripts for automated uploading of larger datasets."
|
msgid "Scripts for automated uploading of larger datasets."
|
||||||
@@ -375,7 +393,18 @@ msgstr "RDM DOI Abzeichen"
|
|||||||
msgid "DOI"
|
msgid "DOI"
|
||||||
msgstr "DOI"
|
msgstr "DOI"
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/landingpage/detail.html:44
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/landingpage/detail.html:35
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"\n"
|
||||||
|
" There is a %(link_start)snewer version%(link_end)s of the "
|
||||||
|
"record available.\n"
|
||||||
|
" "
|
||||||
|
msgstr ""
|
||||||
|
"Es ist eine %(link_start)sneuere Version%(link_end)s des Eintrags "
|
||||||
|
"verfügbar."
|
||||||
|
|
||||||
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/landingpage/detail.html:64
|
||||||
msgid "Open Access"
|
msgid "Open Access"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@@ -7,9 +7,9 @@
|
|||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: invenio-theme-tugraz 1.9.3\n"
|
"Project-Id-Version: invenio-theme-tugraz 2.0.5\n"
|
||||||
"Report-Msgid-Bugs-To: mojib.wali@tugraz.at\n"
|
"Report-Msgid-Bugs-To: mojib.wali@tugraz.at\n"
|
||||||
"POT-Creation-Date: 2021-03-19 10:53+0100\n"
|
"POT-Creation-Date: 2021-04-08 08:50+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"
|
||||||
@@ -18,16 +18,16 @@ msgstr ""
|
|||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Generated-By: Babel 2.9.0\n"
|
"Generated-By: Babel 2.9.0\n"
|
||||||
|
|
||||||
#: invenio_theme_tugraz/config.py:14 invenio_theme_tugraz/config.py:54
|
#: invenio_theme_tugraz/config.py:14 invenio_theme_tugraz/config.py:63
|
||||||
msgid "TU Graz Repository"
|
msgid "TU Graz Repository"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: invenio_theme_tugraz/config.py:57
|
#: invenio_theme_tugraz/config.py:66
|
||||||
#: 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 ""
|
||||||
|
|
||||||
#: invenio_theme_tugraz/config.py:80
|
#: invenio_theme_tugraz/config.py:91
|
||||||
msgid "German"
|
msgid "German"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -103,78 +103,96 @@ msgid "All uploads display standards compliant usage statistics"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:33
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:33
|
||||||
|
msgid "Documentation"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:39
|
||||||
|
msgid "Handbook"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:44
|
||||||
msgid "Impressum"
|
msgid "Impressum"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:37
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:48
|
||||||
msgid "Data protection"
|
msgid "Data protection"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:41
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:52
|
||||||
msgid "Feedback"
|
msgid "Feedback"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:50
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:61
|
||||||
msgid "Features"
|
msgid "Features"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:52
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:63
|
||||||
msgid "Scalability"
|
msgid "Scalability"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:54
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:65
|
||||||
msgid "Institutional integration"
|
msgid "Institutional integration"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:56
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:67
|
||||||
msgid "Next Generation Repository"
|
msgid "Next Generation Repository"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:59
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:70
|
||||||
msgid "Repository Profiles"
|
msgid "Repository Profiles"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:61
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:72
|
||||||
msgid "Resilient"
|
msgid "Resilient"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:68
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:79
|
||||||
msgid "Connected Services"
|
msgid "Connected Services"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:72
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:83
|
||||||
msgid "PURE"
|
msgid "PURE"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:75
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:86
|
||||||
msgid "CampusOnline"
|
msgid "CampusOnline"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:78
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:89
|
||||||
msgid "Research Data Management"
|
msgid "Research Data Management"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:85
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:96
|
||||||
msgid "Accessibility"
|
msgid "Accessibility"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:86
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:97
|
||||||
msgid "Tipp:"
|
msgid "Tipp:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:86
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:97
|
||||||
msgid "Use Ctrl + and Crtl -"
|
msgid "Use Ctrl + and Crtl -"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:86
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:97
|
||||||
msgid "to change the font size."
|
msgid "to change the font size."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/header.html:34
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/accounts/accounts_base.html:61
|
||||||
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/header.html:11
|
||||||
|
msgid "Test Instance"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/accounts/accounts_base.html:62
|
||||||
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/header.html:12
|
||||||
|
msgid "This is the test instance of the TU Graz Repository."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/header.html:39
|
||||||
msgid "Home"
|
msgid "Home"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/header.html:47
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/header.html:52
|
||||||
msgid "Uploads"
|
msgid "Uploads"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -359,7 +377,16 @@ msgstr ""
|
|||||||
msgid "DOI"
|
msgid "DOI"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/landingpage/detail.html:44
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/landingpage/detail.html:35
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"\n"
|
||||||
|
" There is a %(link_start)snewer version%(link_end)s of the "
|
||||||
|
"record available.\n"
|
||||||
|
" "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/landingpage/detail.html:64
|
||||||
msgid "Open Access"
|
msgid "Open Access"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@@ -12,4 +12,4 @@ This file is imported by ``invenio_theme_tugraz.__init__``,
|
|||||||
and parsed by ``setup.py``.
|
and parsed by ``setup.py``.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
__version__ = "2.0.5"
|
__version__ = "2.0.7"
|
||||||
|
|||||||
Reference in New Issue
Block a user