Removed babel from plugin

This commit is contained in:
2025-05-13 14:57:12 +01:00
parent 1ba51405d7
commit 6cd04471e0
25 changed files with 112 additions and 1808 deletions

View File

@@ -19,7 +19,6 @@ include *.sh
include *.txt include *.txt
include *.rst include *.rst
include LICENSE include LICENSE
include babel.ini
include pytest.ini include pytest.ini
recursive-include docs *.bat recursive-include docs *.bat
recursive-include docs *.py recursive-include docs *.py

View File

@@ -1,23 +0,0 @@
# -*- coding: utf-8 -*-
#
# Copyright (C) 2020-2021 Graz University of Technology.
#
# invenio-theme-iform is free software; you can redistribute it and/or
# modify it under the terms of the MIT License; see LICENSE file for more
# details.
# Extraction from Python source files
[python: **.py]
encoding = utf-8
# Extraction from Jinja2 templates
[jinja2: **/templates/**.html]
encoding = utf-8
# Extraction from JavaScript files
[javascript: **.js]
encoding = utf-8
extract_messages = $._, jQuery._

View File

@@ -95,28 +95,6 @@
text-decoration: none; text-decoration: none;
} }
.short-menu-left-lang {
display: inline-block;
margin-right: 10px;
font-size: 17px !important;
font-weight: 300;
& a {
padding: 5px;
background-color: transparent;
color: @primaryLinkInverted;
text-decoration: none;
}
}
.short-menu-left-lang:hover {
& a {
background-color: @primaryLinkHoverBackground;
color: @primaryLink;
text-decoration: none;
}
}
.search-icon-header { .search-icon-header {
display: inline-block; display: inline-block;

View File

@@ -10,7 +10,7 @@
from invenio_i18n import gettext as _ from invenio_i18n import gettext as _
INVENIO_THEME_IFORM_DEFAULT_VALUE = _("I-Form Repository") INVENIO_THEME_IFORM_DEFAULT_VALUE = "I-Form Repository"
"""Default value for the application.""" """Default value for the application."""
INVENIO_THEME_IFORM_BASE_TEMPLATE = "invenio_theme_iform/base.html" INVENIO_THEME_IFORM_BASE_TEMPLATE = "invenio_theme_iform/base.html"
@@ -63,10 +63,10 @@ THEME_HEADER_LOGIN_TEMPLATE = "invenio_theme_iform/accounts/header_login.html"
THEME_FOOTER_TEMPLATE = "invenio_theme_iform/footer.html" THEME_FOOTER_TEMPLATE = "invenio_theme_iform/footer.html"
"""footer template""" """footer template"""
THEME_FRONTPAGE_TITLE = _("I-Form Repository") THEME_FRONTPAGE_TITLE = "I-Form Repository"
"""Frontpage title.""" """Frontpage title."""
THEME_SITENAME = _("Repository") THEME_SITENAME = "Repository"
"""Site name.""" """Site name."""
# Invenio-accounts # Invenio-accounts

View File

@@ -59,13 +59,13 @@ def modify_user_dashboard(app):
user_dashboard_menu = root_menu.submenu("dashboard") user_dashboard_menu = root_menu.submenu("dashboard")
user_dashboard_menu.submenu("overview").register( user_dashboard_menu.submenu("overview").register(
"invenio_theme_iform.overview", "invenio_theme_iform.overview",
text=_("Overview"), text="Overview",
order=0, order=0,
) )
root_menu.submenu("actions.deposit").register( root_menu.submenu("actions.deposit").register(
"invenio_theme_iform.overview", "invenio_theme_iform.overview",
_("My dashboard"), "My dashboard",
order=1, order=1,
) )

View File

@@ -9,6 +9,6 @@
{% extends config.THEME_ERROR_TEMPLATE %} {% extends config.THEME_ERROR_TEMPLATE %}
{% block message %} {% block message %}
<h1><i class="bolt icon"></i> {{_("Locked")}}</h1> <h1><i class="bolt icon"></i> Locked</h1>
<p>{{_("The resource that is being accessed is locked.")}}</p> <p>The resource that is being accessed is locked.</p>
{% endblock message %} {% endblock message %}

View File

@@ -23,7 +23,7 @@
{%- endif %} {%- endif %}
{%- endblock head_meta %} {%- endblock head_meta %}
{%- block head_title %} {%- block head_title %}
{%- set title = title or _(config.THEME_SITENAME) or _('Invenio') %} {%- set title = title or config.THEME_SITENAME %}
<title>{{title}}</title> <title>{{title}}</title>
{%- endblock head_title %} {%- endblock head_title %}
{%- block head_links %} {%- block head_links %}

View File

@@ -26,9 +26,7 @@
</a> </a>
</div> </div>
<div class="short-menu-right-button"> <div class="short-menu-right-button">
<a class="dropdown-item no-decoration" href="{{url_for_security('logout')}}"> <a class="dropdown-item no-decoration" href="{{url_for_security('logout')}}">Sign out</a>
{{_('Sign out')}}
</a>
</div> </div>
{%- endif %} {%- endif %}

View File

@@ -21,7 +21,7 @@
<div class="ui login segment padded"> <div class="ui login segment padded">
<div class="divider hidden"></div> <div class="divider hidden"></div>
{%- block form_header %} {%- block form_header %}
<h3 class="ui login header">{{ _('Log in to Repository') }}</h3> <h3 class="ui login header">Log in to Repository</h3>
{%- endblock form_header %} {%- endblock form_header %}
<div class="ui divider"></div> <div class="ui divider"></div>
<!--Log in with SSO--> <!--Log in with SSO-->
@@ -34,17 +34,13 @@
{% for name in config.SSO_SAML_IDPS.keys() %} {% for name in config.SSO_SAML_IDPS.keys() %}
<div class="field"> <div class="field">
<a class="login-page-button ui fluid large button" href="{{ url_for('sso_saml.sso', idp=name) }}"> <a class="login-page-button ui fluid large button" href="{{ url_for('sso_saml.sso', idp=name) }}">
{{ Log in with {{ config.SSO_SAML_IDPS[name]['title']|default("SAML", true) }}
_('Log in with %(title)s', title=config.SSO_SAML_IDPS[name]['title']|default("SAML", true))
}}
<img src="{{ url_for('static', filename=config.INVENIO_THEME_IFORM_ICON)}}" height="20px" /> <img src="{{ url_for('static', filename=config.INVENIO_THEME_IFORM_ICON)}}" height="20px" />
</a> </a>
</div> </div>
{% endfor %} {% endfor %}
{%- if config.ACCOUNTS_LOCAL_LOGIN_ENABLED %} {%- if config.ACCOUNTS_LOCAL_LOGIN_ENABLED %}
<div class="ui horizontal divider"> <div class="ui horizontal divider">Or</div>
{{ _("Or") }}
</div>
{%- endif %} {%- endif %}
{% endif %} {% endif %}
@@ -54,7 +50,7 @@
{%- set accordion_active = "active" if form.errors else "" %} {%- set accordion_active = "active" if form.errors else "" %}
<div class="ui styled accordion"> <div class="ui styled accordion">
<div class="title trigger {{ accordion_active }}"> <div class="title trigger {{ accordion_active }}">
{{ _('Log in with repository credentials') }} Log in with repository credentials
<i class="user icon button"></i> <i class="user icon button"></i>
</div> </div>
<div class="content {{ accordion_active }}"> <div class="content {{ accordion_active }}">
@@ -64,7 +60,7 @@
{{ render_field(form.email, icon="user icon", autofocus=True, errormsg=False) }} {{ render_field(form.email, icon="user icon", autofocus=True, errormsg=False) }}
{{ render_field(form.password, icon="lock icon", errormsg=False) }} {{ render_field(form.password, icon="lock icon", errormsg=False) }}
<button type="submit" class="ui fluid large submit button"> <button type="submit" class="ui fluid large submit button">
<i class="ui sign-in icon"></i>{{ _('Log In') }} <i class="ui sign-in icon"></i>Log In
</button> </button>
</form> </form>
</div> </div>
@@ -79,7 +75,7 @@
{%- if security.registerable %} {%- if security.registerable %}
<div class="ui primary segment padded text-muted"> <div class="ui primary segment padded text-muted">
{% trans sitename=config.ACCOUNTS_SITENAME %}New to {{ sitename }}?{% endtrans %} {% trans sitename=config.ACCOUNTS_SITENAME %}New to {{ sitename }}?{% endtrans %}
<a href="{{ url_for_security('register', next=request.args.get('next')) }}">{{ _('Sign up') }}</a> <a href="{{ url_for_security('register', next=request.args.get('next')) }}">Sign up</a>
</div> </div>
{%- endif %} {%- endif %}
{%- endblock registerable %} {%- endblock registerable %}
@@ -88,7 +84,7 @@
{%- if security.recoverable %} {%- if security.recoverable %}
<div class="ui basic segment padded"> <div class="ui basic segment padded">
<a class="ui inverted header tiny" <a class="ui inverted header tiny"
href="{{ url_for_security('forgot_password') }}">{{ _('Forgot password?') }}</a> href="{{ url_for_security('forgot_password') }}">Forgot password?</a>
</div> </div>
{%- endif %} {%- endif %}
{%- endblock recoverable %} {%- endblock recoverable %}

View File

@@ -17,21 +17,21 @@
<div class="ui stackable two column grid"> <div class="ui stackable two column grid">
<div class="centered row"> <div class="centered row">
<h1 class="ui header">{{ _("Create an Account") }}</h1> <h1 class="ui header">Create an Account</h1>
</div> </div>
<div class="column" id="switch_left"> <div class="column" id="switch_left">
<div class="ui basic segment"> <div class="ui basic segment">
<h4 class="ui header">{{ _("Citeable. Discoverable.") }}</h4> <h4 class="ui header">Citeable. Discoverable.</h4>
<p class="bodytext"> <p class="bodytext">
{{ _("Uploads get a Digital Object Identifier (DOI) to make them easily and uniquely citeable.")}}</h5> Uploads get a Digital Object Identifier (DOI) to make them easily and uniquely citeable.
<h4 class="ui header">{{ _("Communities.") }}</h4> <h4 class="ui header">Communities.</h4>
<p class="bodytext"> <p class="bodytext">
{{ _("Accept or reject uploads to your own community (e.g workshops, EU projects, institutions or entire disciplines).") }} Accept or reject uploads to your own community (e.g workshops, EU projects, institutions or entire disciplines).
</h5> </h5>
<h4 class="ui header">{{ _("Trusted Research Data Management") }}</h4> <h4 class="ui header">Trusted Research Data Management</h4>
<p class="bodytext"> <p class="bodytext">
{{ _("Built on top of I-Form expertise in them managing of research data.") }} Built on top of I-Form expertise in the managing of research data.
</h5> </h5>
</div> </div>
</div> </div>
@@ -41,7 +41,7 @@
{%- if config.INVENIO_CONFIG_IFORM_SHIBBOLETH %} {%- if config.INVENIO_CONFIG_IFORM_SHIBBOLETH %}
<div class="ui divider"></div> <div class="ui divider"></div>
<a href="{{ url_for("sso_saml.sso", idp="idp") }}" class="login-page-button ui fluid large button"> <a href="{{ url_for("sso_saml.sso", idp="idp") }}" class="login-page-button ui fluid large button">
<span style="font-size: 18px;">{{ _("Sign up with I-Form") }}</span> <span style="font-size: 18px;">Sign up with I-Form</span>
<img src="{{ url_for("static", filename=config.INVENIO_THEME_IFORM_ICON) }}" height="20px" /> <img src="{{ url_for("static", filename=config.INVENIO_THEME_IFORM_ICON) }}" height="20px" />
</a> </a>
<div class="ui inverted horizontal divider"><span class="text-color">{{_ ("Or") }}</span></div> <div class="ui inverted horizontal divider"><span class="text-color">{{_ ("Or") }}</span></div>
@@ -58,7 +58,7 @@
<div class="ui padded centered large form"> <div class="ui padded centered large form">
<div class="ui styled accordion"> <div class="ui styled accordion">
<div class="title trigger {{ accordion_active }}"> <div class="title trigger {{ accordion_active }}">
{{ _("Sign up with repository credentials") }} Sign up with repository credentials
<i class="user icon button"></i> <i class="user icon button"></i>
</div> </div>
<div class="content {{ accordion_active }}"> <div class="content {{ accordion_active }}">
@@ -79,7 +79,7 @@
<div class="centered row"> <div class="centered row">
<button type="submit" class="ui fluid large submit button"> <button type="submit" class="ui fluid large submit button">
<i class="ui edit outline icon"></i>{{ _("Sign up") }} <i class="ui edit outline icon"></i>Sign up
</button> </button>
</div> </div>
</form> </form>

View File

@@ -31,7 +31,7 @@
{%- endblock head_meta %} {%- endblock head_meta %}
{%- block head_title %} {%- block head_title %}
{%- set title = title or _(config.THEME_SITENAME) or _("Invenio") %} {%- set title = title or config.THEME_SITENAME %}
<title>{{title}}</title> <title>{{title}}</title>
{%- endblock head_title %} {%- endblock head_title %}

View File

@@ -7,15 +7,15 @@
#} #}
<div class="ui segment" style="padding-bottom: 10px;"> <div class="ui segment" style="padding-bottom: 10px;">
<h4>{{ _("Good reasons to use the I-Form Repository") }}</h4> <h4>Good reasons to use the I-Form Repository</h4>
<ul> <ul>
<li><strong>{{_("Safe") }}</strong> &mdash; {{_("Your research results are permanently available.") }}</li> <li><strong>Safe</strong> &mdash; Your research results are permanently available.</li>
<li><strong>{{_("Trusted") }}</strong> &mdash; {{_("A service from I-Form, developed in cooperation with CERN.") }}</li> <li><strong>Trusted</strong> &mdash; A service from I-Form, based on software developed by CERN.</li>
<li><strong>{{_("Citeable") }}</strong> &mdash; {{_("Every upload is assigned a Digital Object Identifier (DOI).") }}</li> <li><strong>Citeable</strong> &mdash; Every upload is assigned a Digital Object Identifier (DOI).</li>
<li><strong>{{_("No waiting time") }}</strong> &mdash; {{_("Uploads are made available online as soon as you hit publish. Your DOI is registered within seconds.") }}</li> <li><strong>No waiting time</strong> &mdash; Uploads are made available online as soon as you hit publish. Your DOI is registered within seconds.</li>
<li><strong>{{_("Open or closed") }}</strong> &mdash; {{_("You determine the visibility of your uploads. A restricted access mode is possible.") }}</li> <li><strong>Open or closed</strong> &mdash; You determine the visibility of your uploads. A restricted access mode is possible.</li>
<li><strong>{{_("Versioning") }}</strong> &mdash; {{_("Easily update your dataset with the versioning feature.") }}</li> <li><strong>Versioning</strong> &mdash; Easily update your dataset with the versioning feature.</li>
<li><strong>{{_("Usage statistics") }}</strong> &mdash; {{ _("All uploads display standards compliant usage statistics. ") }} <a href="help/statistics">({{ _("More") }})</a></li> <li><strong>Usage statistics</strong> &mdash; All uploads display standards compliant usage statistics. <a href="help/statistics">(More)</a></li>
</ul> </ul>
</div> </div>

View File

@@ -7,23 +7,19 @@
#} #}
<div class="ui segment"> <div class="ui segment">
<h4>{{ _("Need help?") }}</h4> <h4>Need help?</h4>
{%- if config.THEME_IFORM_CONTACT_FORM %} {%- if config.THEME_IFORM_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</a>
{{ _("Contact us") }}
</a>
</div> </div>
{%- endif %} {%- endif %}
<p> <p>We can help with:</p>
{{ _("We can help with:") }}
</p>
<ul> <ul>
<li>{{ _("Upload your research results, software, preprints, etc.") }}</li> <li>Uploading your research results, software, preprints, etc.</li>
<li>{{ _("Increase upload limit beyond our default policy of 10GB.") }}</li> <li>Increasing upload limit beyond our default policy of 10GB.</li>
<li>{{ _("Establish contact with data stewards.") }}</li> <li>Establishing contact with data stewards.</li>
<li>{{ _("Find individual solutions.") }}</li> <li>Finding individual solutions.</li>
</ul> </ul>
</div> </div>

View File

@@ -9,13 +9,10 @@
{% extends config.THEME_ERROR_TEMPLATE %} {% extends config.THEME_ERROR_TEMPLATE %}
{% block message %} {% block message %}
<h1> {{ _('Internal server error') }} </h1> <h1> Internal server error </h1>
<p> <p>
{{ _( Please contact <a href="mailto:{{config.THEME_IFORM_SUPPORT_EMAIL}}">our support</a> to let
'Please contact <a href="mailto:{support_email}">our support</a> us know about this error.
to let us know about this error.'
).format(support_email=config.THEME_IFORM_SUPPORT_EMAIL)
}}
</p> </p>
{# TODO: provide g.sentry_event_id here once sentry is configured, cf. invenio_theme/500.html #} {# TODO: provide g.sentry_event_id here once sentry is configured, cf. invenio_theme/500.html #}
{% endblock message %} {% endblock message %}

View File

@@ -21,40 +21,40 @@
<div class="ui grid"> <div class="ui grid">
<div class="doubling four column row"> <div class="doubling four column row">
<div class="column"> <div class="column">
<h2>{{ _("Repository") }}</h2> <h2>Repository</h2>
<div class="ui list"> <div class="ui list">
<div class="item"> <div class="item">
<a href="https://tu-graz-library.github.io/docs-repository" title="Repository documentation" <a href="https://tu-graz-library.github.io/docs-repository" title="Repository documentation"
target="_blank"> target="_blank">
{{ _("Documentation") }} <i class="external alternate icon"></i> Documentation <i class="external alternate icon"></i>
</a> </a>
</div> </div>
<div class="item"> <div class="item">
<a href="{{ url_for('invenio_config_iform.guide') }}" <a href="{{ url_for('invenio_config_iform.guide') }}"
title="Quick guide" target="_blank"> title="Quick guide" target="_blank">
{{ _("Reference Guide") }} <i class="download icon"></i> Reference Guide <i class="download icon"></i>
</a> </a>
</div> </div>
<div class="item"> <div class="item">
<a href="{{ url_for('invenio_app_rdm.help_search') }}" <a href="{{ url_for('invenio_app_rdm.help_search') }}"
title="Search guide"> title="Search guide">
{{ _("Search Guide") }}<i class="angle right icon"></i> Search Guide<i class="angle right icon"></i>
</a> </a>
</div> </div>
<div class="item"> <div class="item">
<a href="{{ url_for('invenio_config_iform.gdpr') }}" <a href="{{ url_for('invenio_config_iform.gdpr') }}"
title="General Data Protection Rights" target="_blank"> title="General Data Protection Rights" target="_blank">
{{ _("Data Protection") }} <i class="download icon"></i> Data Protection <i class="download icon"></i>
</a> </a>
</div> </div>
<div class="item"> <div class="item">
<a href="{{ url_for('invenio_config_iform.terms') }}" <a href="{{ url_for('invenio_config_iform.terms') }}"
title="Terms and Conditions" target="_blank"> title="Terms and Conditions" target="_blank">
{{ _("Terms and Conditions") }} <i class="download icon"></i> Terms and Conditions <i class="download icon"></i>
</a> </a>
</div> </div>
</div> </div>
@@ -62,53 +62,47 @@
<div class="column"> <div class="column">
<h2>{{ _("Features") }}</h2> <h2>Features</h2>
<div class="ui list"> <div class="ui list">
<div class="item">{{ _("Scalability") }}</div> <div class="item">Scalability</div>
<div class="item">{{ _("Institutional integration") }}</div> <div class="item">Institutional integration</div>
<div class="item">{{ _("Next Generation Repository") }}</div> <div class="item">Next Generation Repository</div>
<div class="item">{{ _("Repository Profiles") }}</div> <div class="item">Repository Profiles</div>
<div class="item">{{ _("Resilient") }}</div> <div class="item">Resilient</div>
</div> </div>
</div> </div>
<div class="column"> <div class="column">
<h2>{{ _("Connected Services") }}</h2> <h2>Connected Services</h2>
<div class="ui list"> <div class="ui list">
<div class="item"> <div class="item">
<a href="https://pure.tugraz.at" title="PURE" target="_blank"> <a href="https://pure.tugraz.at" title="PURE" target="_blank">
{{ _("PURE") }} <i class="external alternate icon"></i> PURE <i class="external alternate icon"></i>
</a> </a>
</div> </div>
<div class="item"> <div class="item">
<a href="http://campusonline.tugraz.at" title="CAMPUS online" target="_blank"> <a href="http://campusonline.tugraz.at" title="CAMPUS online" target="_blank">
{{ _("CampusOnline") }} <i class="external alternate icon"></i> CampusOnline <i class="external alternate icon"></i>
</a> </a>
</div> </div>
<div class="item"> <div class="item">
<a href="https://rdm.i-form.ie" title="Research Data Management" target="_blank"> <a href="https://rdm.i-form.ie" title="Research Data Management" target="_blank">
{{ _("Research Data Management") }} <i class="external alternate icon"></i> Research Data Management <i class="external alternate icon"></i>
</a> </a>
</div> </div>
</div> </div>
</div> </div>
<div class="column"> <div class="column">
<h2>{{ _("Accessibility") }}</h2> <h2>Accessibility</h2>
<div class="ui list"> <div class="ui list">
<div class="item"> <div class="item">Tip:</div>
{{ _("Tipp:") }} <div class="item">Use Ctrl + and Crtl -</div>
</div> <div class="item">to change the font size.</div>
<div class="item">
{{ _("Use Ctrl + and Crtl -") }}
</div>
<div class="item">
{{ _("to change the font size.") }}
</div>
</div> </div>
</div> </div>

View File

@@ -10,34 +10,30 @@
<div class="center aligned ui equal height grid"> <div class="center aligned ui equal height grid">
<div class="left aligned column"> <div class="left aligned column">
<div class="ui segment image"> <div class="ui segment image">
<h2>{{ _("Research Results") }}</h2> <h2>Research Results</h2>
<div> <div>Frontpage: Description for research results</div>
{{ _("Frontpage: Description for research results") }}
</div>
<ul> <ul>
{# {#
<li> <li>
<a href="research-results/browse">{{ _("Browse") }}</a> <a href="research-results/browse">Browse</a>
</li> </li>
#} #}
<li> <li>
<a href="records/search">{{ _("Search for research results") }}</a> <a href="records/search">Search for research results</a>
</li> </li>
<li> <li>
<a href="me/uploads">{{ _("Upload research results") }}</a> <a href="me/uploads">Upload research results</a>
</li> </li>
</ul> </ul>
</div> </div>
</div> </div>
<div class="left aligned column"> <div class="left aligned column">
<div class="ui segment image"> <div class="ui segment image">
<h2>{{ _("Publications") }}</h2> <h2>Publications</h2>
<div> <div>Frontpage: Description for publications</div>
{{ _("Frontpage: Description for publications") }}
</div>
<ul> <ul>
{# {#
@@ -46,30 +42,28 @@
</li> </li>
#} #}
<li> <li>
<a href="publications/search">{{ _("Search for publications") }}</a> <a href="publications/search">Search for publications</a>
</li> </li>
</ul> </ul>
</div> </div>
</div> </div>
<div class="left aligned column"> <div class="left aligned column">
<div class="ui segment image"> <div class="ui segment image">
<h2>{{ _("Educational Resources") }}</h2> <h2>Educational Resources</h2>
<div> <div>Frontpage: Description for open educational resources</div>
{{ _("Frontpage: Description for open educational resources") }}
</div>
<ul> <ul>
{# {#
<li> <li>
<a href="oer/browse">{{ _("Browse") }}</a> <a href="oer/browse">Browse</a>
</li> </li>
#} #}
<li> <li>
<a href="oer/search">{{ _("Search for educational resourses") }}</a> <a href="oer/search">Search for educational resourses</a>
</li> </li>
<li> <li>
<a href="oer/uploads">{{ _("Upload educational resources") }}</a> <a href="oer/uploads">Upload educational resources</a>
</li> </li>
</ul> </ul>
</div> </div>

View File

@@ -8,8 +8,8 @@
{% if not config.THEME_IFORM_PRODUCTION %} {% if not config.THEME_IFORM_PRODUCTION %}
<div class="ui sticky test-instance"> <div class="ui sticky test-instance">
<h4>{{ _("Test Instance") }}</h4> <h4>Test Instance</h4>
<p>{{ _("This is the test instance of the I-Form Repository.") }}</p> <p>This is the test instance of the I-Form Repository.</p>
</div> </div>
{% endif %} {% endif %}
@@ -32,17 +32,16 @@
<div class="two wide column main-menu-entry"> <div class="two wide column main-menu-entry">
<a href="{{url_for('invenio_theme_iform.index')}}" title="Home" class="no-decoration"> <a href="{{url_for('invenio_theme_iform.index')}}" title="Home" class="no-decoration">
<span class="home-inline"> <span class="home-inline">
{%- include "invenio_theme_iform/home_icon.svg" %} {%- include "invenio_theme_iform/home_icon.svg" %} Home
{{ _("Home") }}
</span> </span>
</a> </a>
</div> </div>
<div class="two wide column main-menu-entry"> <div class="two wide column main-menu-entry">
<a role="menuitem" href="/communities" class="no-decoration">{{ _("Communities") }}</a> <a role="menuitem" href="/communities" class="no-decoration">Communities</a>
</div> </div>
<div class="two wide column main-menu-entry"> <div class="two wide column main-menu-entry">
<a role="menuitem" href="/me/overview" class="no-decoration">{{ _("Dashboard") }}</a> <a role="menuitem" href="/me/overview" class="no-decoration">Dashboard</a>
</div> </div>
</div> </div>

View File

@@ -9,22 +9,22 @@
{% set options = [ {% set options = [
{ {
"key": "records", "key": "records",
"text": _("All"), "text": "All",
"value": url_for("invenio_search_ui.search"), "value": url_for("invenio_search_ui.search"),
"title": "repo", "title": "repo",
},{ },{
"key": "rdm", "key": "rdm",
"text": _("Research Results"), "text": "Research Results",
"value": "/records/search", "value": "/records/search",
"title": "Research Data", "title": "Research Data",
},{ },{
"key": "marc21", "key": "marc21",
"text": _("Publications"), "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": _("Educational Resources"), "text": "Educational Resources",
"value": url_for("invenio_records_lom.search"), "value": url_for("invenio_records_lom.search"),
"title": "oer", "title": "oer",
} }
@@ -41,17 +41,6 @@
<div id="header-search-bar" data-options='{{ options | tojson }}'></div> <div id="header-search-bar" data-options='{{ options | tojson }}'></div>
</div> </div>
</div> </div>
<div class="short-menu-left-lang">
{%- for l in current_i18n.get_locales() %}
{%- if current_i18n.language != l.language %}
<a href="{{ url_for("invenio_i18n.set_lang", lang_code=l.language) }}"
class="no-decoration">
{{ l.get_display_name().upper()[0:2] }}
</a>
{%- endif %}
{%- endfor %}
</div>
</div> </div>
</div> </div>
</div> </div>
@@ -75,11 +64,11 @@
</div> </div>
<div class="affiliation-text"> <div class="affiliation-text">
<a title="Home" href="{{url_for("invenio_theme_iform.index")}}" class="no-decoration"> <a title="Home" href="{{url_for("invenio_theme_iform.index")}}" class="no-decoration">
{{ _("I-FORM") }} I-FORM
<br> <br>
{{ _("RESEARCH DATA") }} RESEARCH DATA
<br> <br>
{{ _("REPOSITORY") }} REPOSITORY
</a> </a>
</div> </div>
</div> </div>

View File

@@ -9,7 +9,7 @@
{%- extends config.INVENIO_THEME_IFORM_BASE_TEMPLATE %} {%- extends config.INVENIO_THEME_IFORM_BASE_TEMPLATE %}
{%- set active_dashboard_menu_item = "overview" %} {%- set active_dashboard_menu_item = "overview" %}
{%- set title = _("Overview") %} {%- set title = "Overview" %}
{% block javascript %} {% block javascript %}
{{ super() }} {{ super() }}
@@ -29,35 +29,29 @@
{# 3 columns: Research-Uploads, Communities, and Requests #} {# 3 columns: Research-Uploads, Communities, and Requests #}
<div class="column"> <div class="column">
<div class="ui segment" style="height: 480px"> <div class="ui segment" style="height: 480px">
<h2>{{ _("Research Results") }}</h2> <h2>Research Results</h2>
<a class="ui left floated image" href="/me/uploads"> <a class="ui left floated image" href="/me/uploads">
<img width="400px" alt="Research Results" src="{{ url_for("static", filename="images/diamond.svg") }}"> <img width="400px" alt="Research Results" src="{{ url_for("static", filename="images/diamond.svg") }}">
</a> </a>
<div class="ui right floated text"> <div class="ui right floated text">Overview: Description for research results</div>
{{ _("Overview: Description for research results") }}
</div>
</div> </div>
</div> </div>
<div class="column"> <div class="column">
<div class="ui segment" style="height: 480px"> <div class="ui segment" style="height: 480px">
<h2>{{ _("Communities") }}</h2> <h2>Communities</h2>
<a class="ui left floated image" href="/me/communities"> <a class="ui left floated image" href="/me/communities">
<img width="400px" alt="Communities" src="{{ url_for("static", filename="images/group-discussion.svg") }}"> <img width="400px" alt="Communities" src="{{ url_for("static", filename="images/group-discussion.svg") }}">
</a> </a>
<div> <div>Overview: Description of Communities</div>
{{ _("Overview: Description of Communities") }}
</div>
</div> </div>
</div> </div>
<div class="column"> <div class="column">
<div class="ui segment" style="height: 480px"> <div class="ui segment" style="height: 480px">
<h2>{{ _("Requests") }}</h2> <h2>Requests</h2>
<a class="ui left floated image" href="/me/requests"> <a class="ui left floated image" href="/me/requests">
<img width="400px" alt="Requests" src="{{ url_for("static", filename="images/umbrella.svg") }}"> <img width="400px" alt="Requests" src="{{ url_for("static", filename="images/umbrella.svg") }}">
</a> </a>
<div> <div>Overview: Description of Requests</div>
{{ _("Overview: Description of Requests") }}
</div>
</div> </div>
</div> </div>
{% else %} {# not is_iform_authenticated #} {% else %} {# not is_iform_authenticated #}
@@ -65,12 +59,12 @@
<div class="column"> <div class="column">
{# a modal's HTML can be placed anywhere, so I placed it here, right before it's used #} {# a modal's HTML can be placed anywhere, so I placed it here, right before it's used #}
<div class="ui small modal" id="iform-unlock-modal"> <div class="ui small modal" id="iform-unlock-modal">
<div class="header">{{ _("On unlocking research uploads") }}</div> <div class="header">On unlocking research uploads</div>
<div class="content"> <div class="content">
<p> <p>
{{ _('To ensure a well-curated repository, new users need to get unlocked To ensure a well-curated repository, new users need to get unlocked
before being allowed to upload. Once unlocked, you can upload your research, before being allowed to upload. Once unlocked, you can upload your research,
request its inclusion in a community, generate a DOI for it, and publish it.') }} request its inclusion in a community, generate a DOI for it, and publish it.
{# TODO: extra lines on policy about who gets accepted how for Research-Uploads #} {# TODO: extra lines on policy about who gets accepted how for Research-Uploads #}
</p> </p>
<div id="anchor-unlock-form"> {# will be replaced with ZammadForm when generating it #} <div id="anchor-unlock-form"> {# will be replaced with ZammadForm when generating it #}
@@ -78,16 +72,14 @@
$('#iform-unlock-modal') $('#iform-unlock-modal')
.modal('hide')" .modal('hide')"
>Got it!</button> >Got it!</button>
<button id="generate-unlock-form" class="ui fluid button"> <button id="generate-unlock-form" class="ui fluid button">Request unlocking</button>
{{ _("Request unlocking") }}
</button>
</div> </div>
</div> </div>
</div> </div>
{# actual column contents start here #} {# actual column contents start here #}
<div class="ui disabled segment" style="height: 480px"> <div class="ui disabled segment" style="height: 480px">
<h2>{{ _("Research Results") }}</h2> <h2>Research Results</h2>
<div class="ui left floated image" style="cursor: pointer" onclick=" <div class="ui left floated image" style="cursor: pointer" onclick="
$('#iform-unlock-modal') $('#iform-unlock-modal')
.modal('show')" .modal('show')"
@@ -95,7 +87,7 @@
<img width="400px" alt="Research Results" src="{{ url_for("static", filename="images/diamond.svg") }}"> <img width="400px" alt="Research Results" src="{{ url_for("static", filename="images/diamond.svg") }}">
</div> </div>
<div class="ui right floated text"> <div class="ui right floated text">
{{ _("Overview: Description for research results") }} Overview: Description for research results
</div> </div>
</div> </div>
</div> </div>
@@ -103,25 +95,21 @@
{% if can_view_marc21 %} {% if can_view_marc21 %}
<div class="column"> <div class="column">
<div class="ui segment" style="height: 480px"> <div class="ui segment" style="height: 480px">
<h2>{{ _("Publications") }}</h2> <h2>Publications</h2>
<a class="ui left floated image" href="/publications/uploads"> <a class="ui left floated image" href="/publications/uploads">
<img width="400px" alt="Publications" src="{{ url_for("static", filename="images/library-book-svgrepo-com.svg") }}"> <img width="400px" alt="Publications" src="{{ url_for("static", filename="images/library-book-svgrepo-com.svg") }}">
</a> </a>
<div> <div>Overview: Description for publications</div>
{{ _("Overview: Description for publications") }}
</div>
</div> </div>
</div> </div>
{% endif %} {% endif %}
<div class="column"> <div class="column">
<div class="ui segment" style="height: 480px"> <div class="ui segment" style="height: 480px">
<h2>{{ _("Educational Resources") }}</h2> <h2>Educational Resources</h2>
<a class="ui left floated image" href="/oer/uploads"> <a class="ui left floated image" href="/oer/uploads">
<img width="400px" alt="Open Educational Resources" src="{{ url_for("static", filename="images/play.svg") }}"> <img width="400px" alt="Open Educational Resources" src="{{ url_for("static", filename="images/play.svg") }}">
</a> </a>
<div> <div>Overview: Description for open educational resources</div>
{{ _("Overview: Description for open educational resources") }}
</div>
</div> </div>
</div> </div>
</div> </div>

View File

@@ -8,13 +8,11 @@
<!---Recent uploads--> <!---Recent uploads-->
<div class="ten wide column random-records-frontpage"> <div class="ten wide column random-records-frontpage">
<h2>{{ _("Recent uploads") }}</h2> <h2>Recent uploads</h2>
{% if not records %} {% if not records %}
<div class="ui centered grid"> <div class="ui centered grid">
<p style="font-size: medium;"> <p style="font-size: medium;">There are no public records to show.</p>
{{ _("There are no public records to show.") }}
</p>
</div> </div>
{% endif %} {% endif %}
@@ -25,13 +23,13 @@
<article> <article>
<div class="badges"> <div class="badges">
{# Publication date/Version badge #} {# Publication date/Version badge #}
<span class="ui label blue" data-tooltip="{{ _("Publication date") }}" data-inverted=""> <span class="ui label blue" data-tooltip="Publication date" data-inverted="">
{{ r.created_date_l10n_long }} {{ r.created_date_l10n_long }}
</span> </span>
{# Resource type badge #} {# Resource type badge #}
{% if r.metadata.types | length > 0%} {% if r.metadata.types | length > 0%}
<span class="ui label grey" data-tooltip="{{ _("Resource type") }}" data-inverted=""> <span class="ui label grey" data-tooltip="Resource type" data-inverted="">
{{ r.metadata.types[0] }} {{ r.metadata.types[0] }}
</span> </span>
{% endif %} {% endif %}
@@ -85,7 +83,7 @@
{% if records %} {% if records %}
<div class="ui centered grid"> <div class="ui centered grid">
<a class="ui button more" href="{{ url_for("invenio_search_ui.search") }}">{{ _("More") }}</a> <a class="ui button more" href="{{ url_for("invenio_search_ui.search") }}">More</a>
</div> </div>
{%- endif %} {%- endif %}
</div> </div>

View File

@@ -1,648 +0,0 @@
# German translations for invenio-theme-iform.
# Copyright (C) 2020-2021 Graz University of Technology
# This file is distributed under the same license as the
# invenio-theme-iform project.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2020.
#
msgid ""
msgstr ""
"Project-Id-Version: invenio-theme-iform 1.0.4\n"
"Report-Msgid-Bugs-To: mojib.wali@tugraz.at\n"
"POT-Creation-Date: 2024-02-02 10:08+0100\n"
"PO-Revision-Date: 2024-02-09 22:25+0100\n"
"Last-Translator: \n"
"Language-Team: de <LL@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Generated-By: Babel 2.9.1\n"
"X-Generator: Poedit 2.3.1\n"
#: invenio_theme_iform/config.py:13 invenio_theme_iform/config.py:60
msgid "TU Graz Repository"
msgstr "TU Graz Repository"
#: invenio_theme_iform/config.py:63
#: invenio_theme_iform/templates/invenio_theme_iform/footer.html:24
msgid "Repository"
msgstr "Repository"
#: invenio_theme_iform/templates/invenio_theme_iform/overview.html:12
#: invenio_theme_iform/views.py:70
msgid "Overview"
msgstr "Übersicht"
#: invenio_theme_iform/views.py:76
msgid "My dashboard"
msgstr "Meine Übersicht"
#: invenio_theme_iform/templates/invenio_theme_iform/423.html:12
msgid "Locked"
msgstr "Locked"
#: invenio_theme_iform/templates/invenio_theme_iform/423.html:13
msgid "The resource that is being accessed is locked."
msgstr "Die angeforderte Ressource ist zurzeit gesperrt."
#: invenio_theme_iform/templates/invenio_theme_iform/accounts/accounts_base.html:26
#: invenio_theme_iform/templates/invenio_theme_iform/base.html:34
msgid "Invenio"
msgstr "Invenio"
#: invenio_theme_iform/templates/invenio_theme_iform/benefits.html:10
msgid "Good reasons to use the Repository of the TU Graz"
msgstr "Gute Gründe, das Repository der TU Graz zu nutzen"
#: invenio_theme_iform/templates/invenio_theme_iform/benefits.html:13
msgid "Safe"
msgstr "Sicher"
#: invenio_theme_iform/templates/invenio_theme_iform/benefits.html:13
msgid "Your research results are permanently available."
msgstr "Ihre Forschungsergebnisse sind dauerhaft verfügbar."
#: invenio_theme_iform/templates/invenio_theme_iform/benefits.html:14
msgid "Trusted"
msgstr "Vertrauenswürdig"
#: invenio_theme_iform/templates/invenio_theme_iform/benefits.html:14
msgid "A service from TU Graz, developed in cooperation with CERN."
msgstr "Ein Service der TU Graz, entwickelt in Kooperation mit CERN."
#: invenio_theme_iform/templates/invenio_theme_iform/benefits.html:15
msgid "Citeable"
msgstr "Zitierfähig"
#: invenio_theme_iform/templates/invenio_theme_iform/benefits.html:15
msgid "Every upload is assigned a Digital Object Identifier (DOI)."
msgstr "Jedem Upload wird ein Digital Object Identifier (DOI) zugewiesen."
#: invenio_theme_iform/templates/invenio_theme_iform/benefits.html:16
msgid "No waiting time"
msgstr "Keine Wartezeit"
#: invenio_theme_iform/templates/invenio_theme_iform/benefits.html:16
msgid ""
"Uploads are made available online as soon as you hit publish. Your DOI is "
"registered within seconds."
msgstr ""
"Uploads sind online verfügbar, sobald Sie auf \"Veröffentlichen\" klicken. "
"Ihre DOI wird innerhalb von Sekunden registriert."
#: invenio_theme_iform/templates/invenio_theme_iform/benefits.html:17
msgid "Open or closed"
msgstr "Offen oder geschlossen"
#: invenio_theme_iform/templates/invenio_theme_iform/benefits.html:17
msgid ""
"You determine the visibility of your uploads. A restricted access mode is "
"possible."
msgstr ""
"Sie bestimmen die Sichtbarkeit Ihrer Uploads. Ein eingeschränkter "
"Zugriffsmodus ist möglich."
#: invenio_theme_iform/templates/invenio_theme_iform/benefits.html:18
msgid "Versioning"
msgstr "Versionierung"
#: invenio_theme_iform/templates/invenio_theme_iform/benefits.html:18
msgid "Easily update your dataset with the versioning feature."
msgstr ""
"Aktualisieren Sie Ihren Datensatz ganz einfach mit der "
"Versionierungsfunktion."
#: invenio_theme_iform/templates/invenio_theme_iform/benefits.html:19
#, fuzzy
#| msgid "Usage statisics"
msgid "Usage statistics"
msgstr "Nutzungsstatistiken"
#: invenio_theme_iform/templates/invenio_theme_iform/benefits.html:19
#, fuzzy
#| msgid "All uploads display standards compliant usage statistics."
msgid "All uploads display standards compliant usage statistics. "
msgstr "Alle Uploads zeigen standardkonforme Nutzungsstatistiken an."
#: invenio_theme_iform/templates/invenio_theme_iform/benefits.html:19
#: invenio_theme_iform/templates/invenio_theme_iform/recent_uploads.html:88
msgid "More"
msgstr "Mehr"
#: invenio_theme_iform/templates/invenio_theme_iform/contact_us.html:10
msgid "Need help?"
msgstr "Brauchen Sie Hilfe?"
#: invenio_theme_iform/templates/invenio_theme_iform/contact_us.html:15
msgid "Contact us"
msgstr "Kontaktieren Sie uns"
#: invenio_theme_iform/templates/invenio_theme_iform/contact_us.html:20
msgid "We can help with:"
msgstr "Dabei können wir helfen:"
#: invenio_theme_iform/templates/invenio_theme_iform/contact_us.html:24
msgid "Upload your research results, software, preprints, etc."
msgstr "Hochladen Ihrer Forschungsergebnisse, Software, Preprints usw."
#: invenio_theme_iform/templates/invenio_theme_iform/contact_us.html:25
msgid "Increase upload limit beyond our default policy of 10GB."
msgstr "Upload-Limit Erhöhung über unsere Standardrichtlinie von 10 GB hinaus."
#: invenio_theme_iform/templates/invenio_theme_iform/contact_us.html:26
#, fuzzy
#| msgid "Create contact with data stewards."
msgid "Establish contact with data stewards."
msgstr "Kontakt mit den Data Stewards herstellen."
#: invenio_theme_iform/templates/invenio_theme_iform/contact_us.html:27
msgid "Find individual solutions."
msgstr "Individuelle Lösungen finden."
#: invenio_theme_iform/templates/invenio_theme_iform/footer.html:29
msgid "Documentation"
msgstr "Dokumentation"
#: invenio_theme_iform/templates/invenio_theme_iform/footer.html:36
msgid "Reference Guide"
msgstr "Handbuch"
#: invenio_theme_iform/templates/invenio_theme_iform/footer.html:43
msgid "Search Guide"
msgstr "Suchanleitung"
#: invenio_theme_iform/templates/invenio_theme_iform/footer.html:50
msgid "Data Protection"
msgstr "Datenschutzerklärung"
#: invenio_theme_iform/templates/invenio_theme_iform/footer.html:57
msgid "Terms and Conditions"
msgstr "Nutzungsbedingungen"
#: invenio_theme_iform/templates/invenio_theme_iform/footer.html:65
msgid "Features"
msgstr "Features"
#: invenio_theme_iform/templates/invenio_theme_iform/footer.html:68
msgid "Scalability"
msgstr "Skalierbarkeit"
#: invenio_theme_iform/templates/invenio_theme_iform/footer.html:69
msgid "Institutional integration"
msgstr "Institutionelle Einbindung"
#: invenio_theme_iform/templates/invenio_theme_iform/footer.html:70
msgid "Next Generation Repository"
msgstr "Repositorium der nächsten Generation"
#: invenio_theme_iform/templates/invenio_theme_iform/footer.html:71
msgid "Repository Profiles"
msgstr "Repositorienprofile"
#: invenio_theme_iform/templates/invenio_theme_iform/footer.html:72
msgid "Resilient"
msgstr "Resilient, widerstandsfähig"
#: invenio_theme_iform/templates/invenio_theme_iform/footer.html:78
msgid "Connected Services"
msgstr "Verbundene Services"
#: invenio_theme_iform/templates/invenio_theme_iform/footer.html:82
msgid "PURE"
msgstr "PURE"
#: invenio_theme_iform/templates/invenio_theme_iform/footer.html:88
msgid "CampusOnline"
msgstr "CampusOnline"
#: invenio_theme_iform/templates/invenio_theme_iform/footer.html:94
msgid "Research Data Management"
msgstr "Forschungsdatenmanagement"
#: invenio_theme_iform/templates/invenio_theme_iform/footer.html:101
msgid "Accessibility"
msgstr "Barrierefreiheit"
#: invenio_theme_iform/templates/invenio_theme_iform/footer.html:104
msgid "Tipp:"
msgstr "Tipp:"
#: invenio_theme_iform/templates/invenio_theme_iform/footer.html:107
msgid "Use Ctrl + and Crtl -"
msgstr "Verwenden Sie Strg+ und Strg-"
#: invenio_theme_iform/templates/invenio_theme_iform/footer.html:110
msgid "to change the font size."
msgstr "Um die Schriftgröße zu ändern."
#: invenio_theme_iform/templates/invenio_theme_iform/frontpage_overview.html:13
#: invenio_theme_iform/templates/invenio_theme_iform/navbar.html:17
#: invenio_theme_iform/templates/invenio_theme_iform/overview.html:26
msgid "Research Results"
msgstr "Forschungsergebnisse"
#: invenio_theme_iform/templates/invenio_theme_iform/frontpage_overview.html:16
#, fuzzy
#| msgid "Frontpage: Description for research result"
msgid "Frontpage: Description for research results"
msgstr ""
"Forschungsergebnisse ist der Sammelbegriff für alle Ergebnisse eines "
"Forschungsprojekts. Sie beschreiben die Daten, den Quellcode und alle "
"digitalen Objekte, auf denen die Publikationsergebnisse beruhen. Dazu "
"gehören auch die Werkzeuge, die zur Erhebung und Verarbeitung der "
"Forschungsdaten verwendet wurden. Die folgenden Links bieten die "
"Möglichkeit, Forschungsergebnisse zum Repository hinzuzufügen, aber auch "
"nach den Ergebnissen anderer Personen zu suchen."
#: invenio_theme_iform/templates/invenio_theme_iform/frontpage_overview.html:26
msgid "Search for research results"
msgstr "Suchen Sie nach Forschungsergebnissen"
#: invenio_theme_iform/templates/invenio_theme_iform/frontpage_overview.html:29
msgid "Upload research results"
msgstr "Erstellen Sie Forschungsergebnisse"
#: invenio_theme_iform/templates/invenio_theme_iform/frontpage_overview.html:36
#: invenio_theme_iform/templates/invenio_theme_iform/navbar.html:22
#: invenio_theme_iform/templates/invenio_theme_iform/overview.html:59
msgid "Publications"
msgstr "Publikationen"
#: invenio_theme_iform/templates/invenio_theme_iform/frontpage_overview.html:39
msgid "Frontpage: Description for publications"
msgstr ""
"Der Bereich Publikationen umfasst Zitate aus verschiedenen Bereichen. Open-"
"Access-Publikationen werden von Pure importiert. Veröffentlichungen von Open-"
"Access-Verlagen werden freigegeben. Digitale Kopien werden angeboten. Die "
"Veröffentlichungen der Universität werden einem breiten Publikum zugänglich "
"gemacht. Der folgende Link bietet die Möglichkeit, unter den Publikationen "
"zu suchen."
#: invenio_theme_iform/templates/invenio_theme_iform/frontpage_overview.html:49
msgid "Search for publications"
msgstr "Suchen Sie nach Publikationen"
#: invenio_theme_iform/templates/invenio_theme_iform/frontpage_overview.html:56
#: invenio_theme_iform/templates/invenio_theme_iform/navbar.html:27
#: invenio_theme_iform/templates/invenio_theme_iform/overview.html:70
msgid "Educational Resources"
msgstr "Bildungsinhalte"
#: invenio_theme_iform/templates/invenio_theme_iform/frontpage_overview.html:59
msgid "Frontpage: Description for open educational resources"
msgstr ""
"In diesem Bereich können Sie Ihre offen lizenzierten Bildungsinhalte (OER, "
"Open Educational Resources) hochladen und nach Bildungsressourcen suchen, "
"die von anderen hochgeladen wurden. Ihre hochgeladenen Inhalte werden "
"automatisch auf den <a href=\"https://oerhub.at\" target=\"_blank\">OERhub."
"at</a> übertragen. Um etwas in diesem Bereich hochzuladen, ist ein OER-"
"Zertifikat und die Aktivierung Ihres Accounts erforderlich."
#: invenio_theme_iform/templates/invenio_theme_iform/frontpage_overview.html:69
msgid "Search for educational resourses"
msgstr "Suchen Sie nach Bildungsinhalten"
#: invenio_theme_iform/templates/invenio_theme_iform/frontpage_overview.html:72
msgid "Upload educational resources"
msgstr "Erstellen Sie neue Bildungsinhalte"
#: invenio_theme_iform/templates/invenio_theme_iform/accounts/accounts_base.html:61
#: invenio_theme_iform/templates/invenio_theme_iform/header.html:11
msgid "Test Instance"
msgstr "Testumgebung"
#: invenio_theme_iform/templates/invenio_theme_iform/accounts/accounts_base.html:62
#: invenio_theme_iform/templates/invenio_theme_iform/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_iform/templates/invenio_theme_iform/header.html:40
msgid "Home"
msgstr "Startseite"
#: invenio_theme_iform/templates/invenio_theme_iform/header.html:46
#: invenio_theme_iform/templates/invenio_theme_iform/overview.html:37
msgid "Communities"
msgstr "Communities"
#: invenio_theme_iform/templates/invenio_theme_iform/header.html:49
msgid "Dashboard"
msgstr "Übersicht"
#: invenio_theme_iform/templates/invenio_theme_iform/navbar.html:12
msgid "All"
msgstr "Alle"
#: invenio_theme_iform/templates/invenio_theme_iform/navbar.html:78
msgid "TU GRAZ"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/navbar.html:80
msgid "REPOSITORY"
msgstr "Repository"
#: invenio_theme_iform/templates/invenio_theme_iform/navbar.html:82
msgid "LIBRARY & ARCHIVES"
msgstr "Bibliothek und Archiv"
#: invenio_theme_iform/templates/invenio_theme_iform/navbar.html:92
msgid "SCIENCE"
msgstr "WISSEN"
#: invenio_theme_iform/templates/invenio_theme_iform/navbar.html:93
msgid "PASSION"
msgstr "TECHNIK"
#: invenio_theme_iform/templates/invenio_theme_iform/navbar.html:94
msgid "TECHNOLOGY"
msgstr "LEIDENSCHAFT"
#: invenio_theme_iform/templates/invenio_theme_iform/overview.html:31
#, fuzzy
#| msgid "Overview: Description for research result"
msgid "Overview: Description for research results"
msgstr "Die Forschungsergebnisse bilden die Grundlage für Veröffentlichungen."
#: invenio_theme_iform/templates/invenio_theme_iform/overview.html:42
msgid "Overview: Description of Communities"
msgstr ""
"Bauen Sie eine Gemeinschaft von Einzelpersonen auf, um die Plattform "
"weiterzuführen und so Datensätze für Ihre Institution, Ihr Projekt, Ihr "
"Thema oder Ihre Veranstaltung zu organisieren, zu kuratieren und gemeinsam "
"zu bearbeiten."
#: invenio_theme_iform/templates/invenio_theme_iform/overview.html:48
msgid "Requests"
msgstr "Anfragen"
#: invenio_theme_iform/templates/invenio_theme_iform/overview.html:53
msgid "Overview: Description of Requests"
msgstr ""
"Prüfen Sie auf eingehende Benachrichtigungen und Gemeinschaftsaufgaben oder -"
"anfragen."
#: invenio_theme_iform/templates/invenio_theme_iform/overview.html:64
msgid "Overview: Description for publications"
msgstr ""
"Die Veröffentlichungen sind das zusammengefasste Ergebnis der Forschung."
#: invenio_theme_iform/templates/invenio_theme_iform/overview.html:75
msgid "Overview: Description for open educational resources"
msgstr ""
"Veröffentlichen Sie hier Ihre offen lizenzierten Bildungsmaterialien (OER), "
"damit andere sie finden und weiternutzen können."
#: invenio_theme_iform/templates/invenio_theme_iform/recent_uploads.html:11
msgid "Recent uploads"
msgstr "Kürzlich hochgeladene Dateien"
#: invenio_theme_iform/templates/invenio_theme_iform/recent_uploads.html:16
msgid "There are no public records to show."
msgstr "Es sind keine öffentlich zugänglichen Datensätze vorhanden."
#: invenio_theme_iform/templates/invenio_theme_iform/recent_uploads.html:28
msgid "Publication date"
msgstr "Datum der Veröffentlichung"
#: invenio_theme_iform/templates/invenio_theme_iform/recent_uploads.html:34
msgid "Resource type"
msgstr "Art der Veröffentlichung"
#: invenio_theme_iform/templates/invenio_theme_iform/accounts/header_login.html:8
#: invenio_theme_iform/templates/invenio_theme_iform/accounts/login_user.html:82
#: invenio_theme_iform/templates/invenio_theme_iform/accounts/register_user.html:82
msgid "Sign up"
msgstr "Registrieren"
#: invenio_theme_iform/templates/invenio_theme_iform/accounts/header_login.html:15
msgid "Log in"
msgstr "Einloggen"
#: invenio_theme_iform/templates/invenio_theme_iform/accounts/header_login.html:30
msgid "Sign out"
msgstr "Ausloggen"
#: invenio_theme_iform/templates/invenio_theme_iform/accounts/login_user.html:24
msgid "Log in to Repository"
msgstr "Anmelden"
#: invenio_theme_iform/templates/invenio_theme_iform/accounts/login_user.html:38
#, python-format
msgid "Log in with %(title)s"
msgstr "Einloggen mit %(title)s"
#: invenio_theme_iform/templates/invenio_theme_iform/accounts/login_user.html:46
#: invenio_theme_iform/templates/invenio_theme_iform/accounts/register_user.html:47
msgid "Or"
msgstr "Oder"
#: invenio_theme_iform/templates/invenio_theme_iform/accounts/login_user.html:57
msgid "Log in with repository credentials"
msgstr "Loggen Sie sich mit Ihrem Repository-Account ein"
#: invenio_theme_iform/templates/invenio_theme_iform/accounts/login_user.html:67
msgid "Log In"
msgstr "Einloggen"
#: invenio_theme_iform/templates/invenio_theme_iform/accounts/login_user.html:81
#, python-format
msgid "New to %(sitename)s?"
msgstr "Neu im %(sitename)s?"
#: invenio_theme_iform/templates/invenio_theme_iform/accounts/login_user.html:91
msgid "Forgot password?"
msgstr "Passwort vergessen?"
#: invenio_theme_iform/templates/invenio_theme_iform/accounts/register_user.html:20
msgid "Create an Account"
msgstr "Einen Account erstellen"
#: invenio_theme_iform/templates/invenio_theme_iform/accounts/register_user.html:25
msgid "Citeable. Discoverable."
msgstr "Zitierfähig. Auffindbar."
#: invenio_theme_iform/templates/invenio_theme_iform/accounts/register_user.html:27
msgid ""
"Uploads get a Digital Object Identifier (DOI) to make them easily and "
"uniquely citeable."
msgstr ""
"Uploads erhalten eine DOI und werden damit leichtauffindbar und zitierfähig."
#: invenio_theme_iform/templates/invenio_theme_iform/accounts/register_user.html:28
msgid "Communities."
msgstr "Communities."
#: invenio_theme_iform/templates/invenio_theme_iform/accounts/register_user.html:30
msgid ""
"Accept or reject uploads to your own community (e.g workshops, EU projects, "
"institutions or entire disciplines)."
msgstr ""
"Annehmen oder Ablehnen von Uploads in Ihrer eigenen Community (z.B. "
"workshop, EU-Projekt, Forschungseinrichtung, Disziplin)"
#: invenio_theme_iform/templates/invenio_theme_iform/accounts/register_user.html:32
msgid "Trusted Research Data Management"
msgstr "Vertrauenswürdiges Forschungsdatenmanagement"
#: invenio_theme_iform/templates/invenio_theme_iform/accounts/register_user.html:34
msgid ""
"Built on top of TU Graz expertise in managing of the research data from the "
"Graz University of Technology."
msgstr "Gebaut basierend auf Expertise der TU Graz im Bereich Data Management."
#: invenio_theme_iform/templates/invenio_theme_iform/accounts/register_user.html:44
msgid "Sign up with I-Form"
msgstr "Mit Ihrem TUGonline-Account registrieren"
#: invenio_theme_iform/templates/invenio_theme_iform/accounts/register_user.html:61
msgid "Sign up with repository credentials"
msgstr "Mit Ihren Repository Daten registrieren"
#~ msgid "Why use"
#~ msgstr "Warum"
#~ msgid "Your research is stored safely for the future in TU Graz library."
#~ msgstr ""
#~ "Ihre Forschung ist in der Bibliothek der TU Graz für die Zukunft "
#~ "gespeichert."
#~ msgid "Built by CERN and TU Graz. Operated by TU Graz."
#~ msgstr "Gebaut von CERN und TU Graz. Betrieben von der TU Graz."
#~ msgid "Share private or anonymized data via the restricted access mode."
#~ msgstr ""
#~ "Teilen Sie private oder anonymisierte Daten über den eingeschränkten "
#~ "Zugriffsmodus."
#~ msgid "prioritizes all Recent uploads."
#~ msgstr "reiht die neuesten Uploads vor."
#~ msgid "One-on-one with"
#~ msgstr "One-on-one mit"
#~ msgid "supporters."
#~ msgstr "UnterstützerInnen."
#~ msgid "Scripts for automated uploading of larger datasets."
#~ msgstr "Skripte zum automatisierten Hochladen größerer Datensätze."
#~ msgid ""
#~ "built and operated by CERN and OpenAIRE to ensure that everyone can join "
#~ "in Open Science."
#~ msgstr ""
#~ "Aufgebaut und betrieben von CERN und OpenAIRE, um sicherzustellen, dass "
#~ "jeder an Open Science teilnehmen kann."
#~ msgid "Research Result"
#~ msgstr "Forschungsergebnisse"
#~ msgid "Open Educational Resources"
#~ msgstr "Open Educational Resources"
#~ msgid "OER"
#~ msgstr "OER"
#~ msgid "Search"
#~ msgstr "Suche"
#, fuzzy
#~| msgid "Upload OER"
#~ msgid "Upload"
#~ msgstr "Upload OER"
#~ msgid "Impressum"
#~ msgstr "Imprint"
#~ msgid "Feedback"
#~ msgstr "Feedback"
#, fuzzy, python-format
#~ msgid ""
#~ "<strong>Powered by</strong>\n"
#~ " <a href=\"%(invenio_rdm)s\" target=\"_blank\" "
#~ "title=\"invenioRDM\">"
#~ msgstr ""
#~ "<strong>Powered by</strong> <a href=\"%(invenio_rdm)s\" target=\"_blank\">"
#, fuzzy, python-format
#~ msgid ""
#~ "<strong>Enabled by</strong>\n"
#~ " <a href=\"%(fair_data)s\" target=\"_blank\" title=\"Fair Data "
#~ "Austria\">"
#~ msgstr ""
#~ "<strong>Enabled by</strong> <a href=\"%(fair_data)s\" target=\"_blank\">"
#, python-format
#~ msgid ""
#~ "\n"
#~ " Uploaded on %(date)s\n"
#~ " "
#~ msgstr ""
#~ "\n"
#~ "\t\tHochgeladen am %(date)s"
#~ msgid "You can upload different types of records:"
#~ msgstr "Upload verschiedener Arten von Datensätzen:"
#~ msgid ""
#~ "Visibility of uploaded content is maximized through synchronization with "
#~ "data hubs (DataCite)."
#~ msgstr ""
#~ "Steigerung der Sichtbarkeit der Datensätze durch Synchronisation mit "
#~ "Harvestern (DataCite)."
#~ msgid ""
#~ "Open Educational Resources (OER) will be visible on various discovery "
#~ "tools like the OERhub."
#~ msgstr ""
#~ "Open Educational Resources (OER) werden auf Suchmaschinen wie OERhub "
#~ "sichtbar sein."
#~ msgid "Type and press enter to search"
#~ msgstr "Suchbegriff eingeben und “Enter” drücken (?)"
#~ msgid "Version"
#~ msgstr "Version"
#~ msgid ""
#~ "\n"
#~ " Uploaded on %(date)s\n"
#~ " "
#~ msgstr "Hochgeladen am %(date)s\n"
#~ msgid "Handbook"
#~ msgstr "Handbuch"
#~ msgid "RDM DOI Badge"
#~ msgstr "RDM DOI Abzeichen"
#~ msgid "DOI"
#~ msgstr "DOI"
#~ msgid "German"
#~ msgstr "Deutsche"
#~ msgid "New version"
#~ msgstr "neue Version"
#~ msgid "New upload"
#~ msgstr "Neuer upload"
#~ msgid "Edit upload"
#~ msgstr "Upload bearbeiten"
#~ 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."
#~ msgid "Files"
#~ msgstr "Dateien"
#~ msgid "Reason"
#~ msgstr "Grund"

View File

@@ -1,480 +0,0 @@
# English translations for invenio-theme-iform.
# Copyright (C) 2023 Graz University of Technology
# This file is distributed under the same license as the
# invenio-theme-iform project.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023.
#
msgid ""
msgstr ""
"Project-Id-Version: invenio-theme-iform 4.12.0\n"
"Report-Msgid-Bugs-To: mojib.wali@tugraz.at\n"
"POT-Creation-Date: 2024-02-02 10:08+0100\n"
"PO-Revision-Date: 2024-02-02 10:09+0100\n"
"Last-Translator: \n"
"Language-Team: en <LL@li.org>\n"
"Language: en\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Generated-By: Babel 2.13.1\n"
"X-Generator: Poedit 2.3.1\n"
#: invenio_theme_iform/config.py:13 invenio_theme_iform/config.py:60
msgid "TU Graz Repository"
msgstr ""
#: invenio_theme_iform/config.py:63
#: invenio_theme_iform/templates/invenio_theme_iform/footer.html:24
msgid "Repository"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/overview.html:12
#: invenio_theme_iform/views.py:70
msgid "Overview"
msgstr ""
#: invenio_theme_iform/views.py:76
msgid "My dashboard"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/423.html:12
msgid "Locked"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/423.html:13
msgid "The resource that is being accessed is locked."
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/accounts/accounts_base.html:26
#: invenio_theme_iform/templates/invenio_theme_iform/base.html:34
msgid "Invenio"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/benefits.html:10
msgid "Good reasons to use the Repository of the TU Graz"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/benefits.html:13
msgid "Safe"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/benefits.html:13
msgid "Your research results are permanently available."
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/benefits.html:14
msgid "Trusted"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/benefits.html:14
msgid "A service from TU Graz, developed in cooperation with CERN."
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/benefits.html:15
msgid "Citeable"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/benefits.html:15
msgid "Every upload is assigned a Digital Object Identifier (DOI)."
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/benefits.html:16
msgid "No waiting time"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/benefits.html:16
msgid ""
"Uploads are made available online as soon as you hit publish. Your DOI is "
"registered within seconds."
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/benefits.html:17
msgid "Open or closed"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/benefits.html:17
msgid ""
"You determine the visibility of your uploads. A restricted access mode is "
"possible."
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/benefits.html:18
msgid "Versioning"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/benefits.html:18
msgid "Easily update your dataset with the versioning feature."
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/benefits.html:19
msgid "Usage statistics"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/benefits.html:19
msgid "All uploads display standards compliant usage statistics. "
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/benefits.html:19
#: invenio_theme_iform/templates/invenio_theme_iform/recent_uploads.html:88
msgid "More"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/contact_us.html:10
msgid "Need help?"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/contact_us.html:15
msgid "Contact us"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/contact_us.html:20
msgid "We can help with:"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/contact_us.html:24
msgid "Upload your research results, software, preprints, etc."
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/contact_us.html:25
msgid "Increase upload limit beyond our default policy of 10GB."
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/contact_us.html:26
msgid "Establish contact with data stewards."
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/contact_us.html:27
msgid "Find individual solutions."
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/footer.html:29
msgid "Documentation"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/footer.html:36
msgid "Reference Guide"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/footer.html:43
msgid "Search Guide"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/footer.html:50
msgid "Data Protection"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/footer.html:57
msgid "Terms and Conditions"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/footer.html:65
msgid "Features"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/footer.html:68
msgid "Scalability"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/footer.html:69
msgid "Institutional integration"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/footer.html:70
msgid "Next Generation Repository"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/footer.html:71
msgid "Repository Profiles"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/footer.html:72
msgid "Resilient"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/footer.html:78
msgid "Connected Services"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/footer.html:82
msgid "PURE"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/footer.html:88
msgid "CampusOnline"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/footer.html:94
msgid "Research Data Management"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/footer.html:101
msgid "Accessibility"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/footer.html:104
msgid "Tipp:"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/footer.html:107
msgid "Use Ctrl + and Crtl -"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/footer.html:110
msgid "to change the font size."
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/frontpage_overview.html:13
#: invenio_theme_iform/templates/invenio_theme_iform/navbar.html:17
#: invenio_theme_iform/templates/invenio_theme_iform/overview.html:26
msgid "Research Results"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/frontpage_overview.html:16
#, fuzzy
#| msgid "Frontpage: Description for research result"
msgid "Frontpage: Description for research results"
msgstr ""
"Research results is the collective term for all the results of a research "
"project. They describe the data, source code and all digital objects on "
"which publication results are based. These include the tools used to collect "
"and process the research data. The following links offer the possibility to "
"add research results to the repository, but also to search for the results "
"of other people."
#: invenio_theme_iform/templates/invenio_theme_iform/frontpage_overview.html:26
msgid "Search for research results"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/frontpage_overview.html:29
msgid "Upload research results"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/frontpage_overview.html:36
#: invenio_theme_iform/templates/invenio_theme_iform/navbar.html:22
#: invenio_theme_iform/templates/invenio_theme_iform/overview.html:59
msgid "Publications"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/frontpage_overview.html:39
msgid "Frontpage: Description for publications"
msgstr ""
"The section of publications covers citations from several areas. Open Access "
"papers are imported from Pure. Publications from Open Access publishers are "
"shared. Digital copies are offered. University publications are made "
"available to a wide range of people. The following link offers the "
"possibility to search among publications."
#: invenio_theme_iform/templates/invenio_theme_iform/frontpage_overview.html:49
msgid "Search for publications"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/frontpage_overview.html:56
#: invenio_theme_iform/templates/invenio_theme_iform/navbar.html:27
#: invenio_theme_iform/templates/invenio_theme_iform/overview.html:70
msgid "Educational Resources"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/frontpage_overview.html:59
msgid "Frontpage: Description for open educational resources"
msgstr ""
"In this area, you can upload your openly licensed educational content (OER, "
"Open Educational Resources) and search for educational resources uploaded by "
"others. Your uploaded content will be automatically transferred to the <a "
"href=\"https://oerhub.at/en\" target=\"_blank\">OERhub.at</a>. To upload "
"something in this area, an OER certificate and activation of your account is "
"required."
#: invenio_theme_iform/templates/invenio_theme_iform/frontpage_overview.html:69
msgid "Search for educational resourses"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/frontpage_overview.html:72
msgid "Upload educational resources"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/accounts/accounts_base.html:61
#: invenio_theme_iform/templates/invenio_theme_iform/header.html:11
msgid "Test Instance"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/accounts/accounts_base.html:62
#: invenio_theme_iform/templates/invenio_theme_iform/header.html:12
msgid "This is the test instance of the TU Graz Repository."
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/header.html:40
msgid "Home"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/header.html:46
#: invenio_theme_iform/templates/invenio_theme_iform/overview.html:37
msgid "Communities"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/header.html:49
msgid "Dashboard"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/navbar.html:12
msgid "All"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/navbar.html:78
msgid "TU GRAZ"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/navbar.html:80
msgid "REPOSITORY"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/navbar.html:82
msgid "LIBRARY & ARCHIVES"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/navbar.html:92
msgid "SCIENCE"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/navbar.html:93
msgid "PASSION"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/navbar.html:94
msgid "TECHNOLOGY"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/overview.html:31
#, fuzzy
#| msgid "Overview: Description for research result"
msgid "Overview: Description for research results"
msgstr "Research results gives the base on which publications are built."
#: invenio_theme_iform/templates/invenio_theme_iform/overview.html:42
msgid "Overview: Description of Communities"
msgstr ""
"Grow a community of individuals to sustain the platform going forward and "
"thereby organize, curate and collaborate on records for your institution, "
"project, topic or event."
#: invenio_theme_iform/templates/invenio_theme_iform/overview.html:48
msgid "Requests"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/overview.html:53
msgid "Overview: Description of Requests"
msgstr ""
"Check for incoming notifications and community assignments or inquiries."
#: invenio_theme_iform/templates/invenio_theme_iform/overview.html:64
msgid "Overview: Description for publications"
msgstr "Publications are the synthesized result of research."
#: invenio_theme_iform/templates/invenio_theme_iform/overview.html:75
msgid "Overview: Description for open educational resources"
msgstr ""
"Educational resources: Publish your openly licensed educational material "
"(OER) here, so that others can find and resue it."
#: invenio_theme_iform/templates/invenio_theme_iform/recent_uploads.html:11
msgid "Recent uploads"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/recent_uploads.html:16
msgid "There are no public records to show."
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/recent_uploads.html:28
msgid "Publication date"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/recent_uploads.html:34
msgid "Resource type"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/accounts/header_login.html:8
#: invenio_theme_iform/templates/invenio_theme_iform/accounts/login_user.html:82
#: invenio_theme_iform/templates/invenio_theme_iform/accounts/register_user.html:82
msgid "Sign up"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/accounts/header_login.html:15
msgid "Log in"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/accounts/header_login.html:30
msgid "Sign out"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/accounts/login_user.html:24
msgid "Log in to Repository"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/accounts/login_user.html:38
#, python-format
msgid "Log in with %(title)s"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/accounts/login_user.html:46
#: invenio_theme_iform/templates/invenio_theme_iform/accounts/register_user.html:47
msgid "Or"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/accounts/login_user.html:57
msgid "Log in with repository credentials"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/accounts/login_user.html:67
msgid "Log In"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/accounts/login_user.html:81
#, python-format
msgid "New to %(sitename)s?"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/accounts/login_user.html:91
msgid "Forgot password?"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/accounts/register_user.html:20
msgid "Create an Account"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/accounts/register_user.html:25
msgid "Citeable. Discoverable."
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/accounts/register_user.html:27
msgid ""
"Uploads get a Digital Object Identifier (DOI) to make them easily and "
"uniquely citeable."
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/accounts/register_user.html:28
msgid "Communities."
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/accounts/register_user.html:30
msgid ""
"Accept or reject uploads to your own community (e.g workshops, EU projects, "
"institutions or entire disciplines)."
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/accounts/register_user.html:32
msgid "Trusted Research Data Management"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/accounts/register_user.html:34
msgid ""
"Built on top of TU Graz expertise in managing of the research data from the "
"Graz University of Technology."
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/accounts/register_user.html:44
msgid "Sign up with I-Form"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/accounts/register_user.html:61
msgid "Sign up with repository credentials"
msgstr ""

View File

@@ -1,451 +0,0 @@
# Translations template for invenio-theme-iform.
# Copyright (C) 2024 Graz University of Technology
# This file is distributed under the same license as the
# invenio-theme-iform project.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2024.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: invenio-theme-iform 4.12.3\n"
"Report-Msgid-Bugs-To: mojib.wali@tugraz.at\n"
"POT-Creation-Date: 2024-02-02 10:08+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.13.1\n"
#: invenio_theme_iform/config.py:13 invenio_theme_iform/config.py:60
msgid "TU Graz Repository"
msgstr ""
#: invenio_theme_iform/config.py:63
#: invenio_theme_iform/templates/invenio_theme_iform/footer.html:24
msgid "Repository"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/overview.html:12
#: invenio_theme_iform/views.py:70
msgid "Overview"
msgstr ""
#: invenio_theme_iform/views.py:76
msgid "My dashboard"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/423.html:12
msgid "Locked"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/423.html:13
msgid "The resource that is being accessed is locked."
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/accounts/accounts_base.html:26
#: invenio_theme_iform/templates/invenio_theme_iform/base.html:34
msgid "Invenio"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/benefits.html:10
msgid "Good reasons to use the Repository of the TU Graz"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/benefits.html:13
msgid "Safe"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/benefits.html:13
msgid "Your research results are permanently available."
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/benefits.html:14
msgid "Trusted"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/benefits.html:14
msgid "A service from TU Graz, developed in cooperation with CERN."
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/benefits.html:15
msgid "Citeable"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/benefits.html:15
msgid "Every upload is assigned a Digital Object Identifier (DOI)."
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/benefits.html:16
msgid "No waiting time"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/benefits.html:16
msgid ""
"Uploads are made available online as soon as you hit publish. Your DOI is"
" registered within seconds."
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/benefits.html:17
msgid "Open or closed"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/benefits.html:17
msgid ""
"You determine the visibility of your uploads. A restricted access mode is"
" possible."
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/benefits.html:18
msgid "Versioning"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/benefits.html:18
msgid "Easily update your dataset with the versioning feature."
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/benefits.html:19
msgid "Usage statistics"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/benefits.html:19
msgid "All uploads display standards compliant usage statistics. "
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/benefits.html:19
#: invenio_theme_iform/templates/invenio_theme_iform/recent_uploads.html:88
msgid "More"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/contact_us.html:10
msgid "Need help?"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/contact_us.html:15
msgid "Contact us"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/contact_us.html:20
msgid "We can help with:"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/contact_us.html:24
msgid "Upload your research results, software, preprints, etc."
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/contact_us.html:25
msgid "Increase upload limit beyond our default policy of 10GB."
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/contact_us.html:26
msgid "Establish contact with data stewards."
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/contact_us.html:27
msgid "Find individual solutions."
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/footer.html:29
msgid "Documentation"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/footer.html:36
msgid "Reference Guide"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/footer.html:43
msgid "Search Guide"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/footer.html:50
msgid "Data Protection"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/footer.html:57
msgid "Terms and Conditions"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/footer.html:65
msgid "Features"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/footer.html:68
msgid "Scalability"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/footer.html:69
msgid "Institutional integration"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/footer.html:70
msgid "Next Generation Repository"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/footer.html:71
msgid "Repository Profiles"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/footer.html:72
msgid "Resilient"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/footer.html:78
msgid "Connected Services"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/footer.html:82
msgid "PURE"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/footer.html:88
msgid "CampusOnline"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/footer.html:94
msgid "Research Data Management"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/footer.html:101
msgid "Accessibility"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/footer.html:104
msgid "Tipp:"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/footer.html:107
msgid "Use Ctrl + and Crtl -"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/footer.html:110
msgid "to change the font size."
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/frontpage_overview.html:13
#: invenio_theme_iform/templates/invenio_theme_iform/navbar.html:17
#: invenio_theme_iform/templates/invenio_theme_iform/overview.html:26
msgid "Research Results"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/frontpage_overview.html:16
msgid "Frontpage: Description for research results"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/frontpage_overview.html:26
msgid "Search for research results"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/frontpage_overview.html:29
msgid "Upload research results"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/frontpage_overview.html:36
#: invenio_theme_iform/templates/invenio_theme_iform/navbar.html:22
#: invenio_theme_iform/templates/invenio_theme_iform/overview.html:59
msgid "Publications"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/frontpage_overview.html:39
msgid "Frontpage: Description for publications"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/frontpage_overview.html:49
msgid "Search for publications"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/frontpage_overview.html:56
#: invenio_theme_iform/templates/invenio_theme_iform/navbar.html:27
#: invenio_theme_iform/templates/invenio_theme_iform/overview.html:70
msgid "Educational Resources"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/frontpage_overview.html:59
msgid "Frontpage: Description for open educational resources"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/frontpage_overview.html:69
msgid "Search for educational resourses"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/frontpage_overview.html:72
msgid "Upload educational resources"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/accounts/accounts_base.html:61
#: invenio_theme_iform/templates/invenio_theme_iform/header.html:11
msgid "Test Instance"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/accounts/accounts_base.html:62
#: invenio_theme_iform/templates/invenio_theme_iform/header.html:12
msgid "This is the test instance of the TU Graz Repository."
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/header.html:40
msgid "Home"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/header.html:46
#: invenio_theme_iform/templates/invenio_theme_iform/overview.html:37
msgid "Communities"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/header.html:49
msgid "Dashboard"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/navbar.html:12
msgid "All"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/navbar.html:78
msgid "TU GRAZ"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/navbar.html:80
msgid "REPOSITORY"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/navbar.html:82
msgid "LIBRARY & ARCHIVES"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/navbar.html:92
msgid "SCIENCE"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/navbar.html:93
msgid "PASSION"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/navbar.html:94
msgid "TECHNOLOGY"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/overview.html:31
msgid "Overview: Description for research results"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/overview.html:42
msgid "Overview: Description of Communities"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/overview.html:48
msgid "Requests"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/overview.html:53
msgid "Overview: Description of Requests"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/overview.html:64
msgid "Overview: Description for publications"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/overview.html:75
msgid "Overview: Description for open educational resources"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/recent_uploads.html:11
msgid "Recent uploads"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/recent_uploads.html:16
msgid "There are no public records to show."
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/recent_uploads.html:28
msgid "Publication date"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/recent_uploads.html:34
msgid "Resource type"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/accounts/header_login.html:8
#: invenio_theme_iform/templates/invenio_theme_iform/accounts/login_user.html:82
#: invenio_theme_iform/templates/invenio_theme_iform/accounts/register_user.html:82
msgid "Sign up"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/accounts/header_login.html:15
msgid "Log in"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/accounts/header_login.html:30
msgid "Sign out"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/accounts/login_user.html:24
msgid "Log in to Repository"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/accounts/login_user.html:38
#, python-format
msgid "Log in with %(title)s"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/accounts/login_user.html:46
#: invenio_theme_iform/templates/invenio_theme_iform/accounts/register_user.html:47
msgid "Or"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/accounts/login_user.html:57
msgid "Log in with repository credentials"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/accounts/login_user.html:67
msgid "Log In"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/accounts/login_user.html:81
#, python-format
msgid "New to %(sitename)s?"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/accounts/login_user.html:91
msgid "Forgot password?"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/accounts/register_user.html:20
msgid "Create an Account"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/accounts/register_user.html:25
msgid "Citeable. Discoverable."
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/accounts/register_user.html:27
msgid ""
"Uploads get a Digital Object Identifier (DOI) to make them easily and "
"uniquely citeable."
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/accounts/register_user.html:28
msgid "Communities."
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/accounts/register_user.html:30
msgid ""
"Accept or reject uploads to your own community (e.g workshops, EU "
"projects, institutions or entire disciplines)."
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/accounts/register_user.html:32
msgid "Trusted Research Data Management"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/accounts/register_user.html:34
msgid ""
"Built on top of TU Graz expertise in managing of the research data from "
"the Graz University of Technology."
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/accounts/register_user.html:44
msgid "Sign up with I-Form"
msgstr ""
#: invenio_theme_iform/templates/invenio_theme_iform/accounts/register_user.html:61
msgid "Sign up with repository credentials"
msgstr ""

View File

@@ -107,23 +107,3 @@ line-ending = "auto"
[tool.pydocstyle] [tool.pydocstyle]
add_ignore = ["D401"] add_ignore = ["D401"]
# Babel configuration
[tool.babel.compile_catalog]
directory = "invenio_theme_iform/translations/"
use-fuzzy = true
[tool.babel.extract_messages]
copyright_holder = "I-Form Advanced Research Manufacturing Research Centre"
msgid_bugs_address = "cian.hughes@dcu.ie"
mapping-file = "babel.ini"
output-file = "invenio_theme_iform/translations/messages.pot"
add-comments = "NOTE"
[tool.babel.init_catalog]
input-file = "invenio_theme_iform/translations/messages.pot"
output-dir = "invenio_theme_iform/translations/"
[tool.babel.update_catalog]
input-file = "invenio_theme_iform/translations/messages.pot"
output-dir = "invenio_theme_iform/translations/"