diff --git a/MANIFEST.in b/MANIFEST.in index 694c744..6f2ef5d 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -19,7 +19,6 @@ include *.sh include *.txt include *.rst include LICENSE -include babel.ini include pytest.ini recursive-include docs *.bat recursive-include docs *.py diff --git a/babel.ini b/babel.ini deleted file mode 100644 index e746f5b..0000000 --- a/babel.ini +++ /dev/null @@ -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._ diff --git a/invenio_theme_iform/assets/semantic-ui/less/invenio_theme_iform/header.less b/invenio_theme_iform/assets/semantic-ui/less/invenio_theme_iform/header.less index 53d337b..e5ed553 100644 --- a/invenio_theme_iform/assets/semantic-ui/less/invenio_theme_iform/header.less +++ b/invenio_theme_iform/assets/semantic-ui/less/invenio_theme_iform/header.less @@ -95,28 +95,6 @@ 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 { display: inline-block; diff --git a/invenio_theme_iform/config.py b/invenio_theme_iform/config.py index 96d25e6..6b7b39f 100644 --- a/invenio_theme_iform/config.py +++ b/invenio_theme_iform/config.py @@ -10,7 +10,7 @@ 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.""" 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" """footer template""" -THEME_FRONTPAGE_TITLE = _("I-Form Repository") +THEME_FRONTPAGE_TITLE = "I-Form Repository" """Frontpage title.""" -THEME_SITENAME = _("Repository") +THEME_SITENAME = "Repository" """Site name.""" # Invenio-accounts diff --git a/invenio_theme_iform/ext.py b/invenio_theme_iform/ext.py index abb7add..44afa1f 100644 --- a/invenio_theme_iform/ext.py +++ b/invenio_theme_iform/ext.py @@ -59,13 +59,13 @@ def modify_user_dashboard(app): user_dashboard_menu = root_menu.submenu("dashboard") user_dashboard_menu.submenu("overview").register( "invenio_theme_iform.overview", - text=_("Overview"), + text="Overview", order=0, ) root_menu.submenu("actions.deposit").register( "invenio_theme_iform.overview", - _("My dashboard"), + "My dashboard", order=1, ) diff --git a/invenio_theme_iform/templates/invenio_theme_iform/423.html b/invenio_theme_iform/templates/invenio_theme_iform/423.html index e838ece..8696913 100644 --- a/invenio_theme_iform/templates/invenio_theme_iform/423.html +++ b/invenio_theme_iform/templates/invenio_theme_iform/423.html @@ -9,6 +9,6 @@ {% extends config.THEME_ERROR_TEMPLATE %} {% block message %} -

{{_("Locked")}}

-

{{_("The resource that is being accessed is locked.")}}

+

Locked

+

The resource that is being accessed is locked.

{% endblock message %} diff --git a/invenio_theme_iform/templates/invenio_theme_iform/accounts/accounts_base.html b/invenio_theme_iform/templates/invenio_theme_iform/accounts/accounts_base.html index 557048e..5167199 100644 --- a/invenio_theme_iform/templates/invenio_theme_iform/accounts/accounts_base.html +++ b/invenio_theme_iform/templates/invenio_theme_iform/accounts/accounts_base.html @@ -23,7 +23,7 @@ {%- endif %} {%- endblock head_meta %} {%- block head_title %} - {%- set title = title or _(config.THEME_SITENAME) or _('Invenio') %} + {%- set title = title or config.THEME_SITENAME %} {{title}} {%- endblock head_title %} {%- block head_links %} diff --git a/invenio_theme_iform/templates/invenio_theme_iform/accounts/header_login.html b/invenio_theme_iform/templates/invenio_theme_iform/accounts/header_login.html index 512a0af..3ae34b8 100644 --- a/invenio_theme_iform/templates/invenio_theme_iform/accounts/header_login.html +++ b/invenio_theme_iform/templates/invenio_theme_iform/accounts/header_login.html @@ -26,9 +26,7 @@
- - {{_('Sign out')}} - + Sign out
{%- endif %} diff --git a/invenio_theme_iform/templates/invenio_theme_iform/accounts/login_user.html b/invenio_theme_iform/templates/invenio_theme_iform/accounts/login_user.html index 65439f4..5252d4d 100644 --- a/invenio_theme_iform/templates/invenio_theme_iform/accounts/login_user.html +++ b/invenio_theme_iform/templates/invenio_theme_iform/accounts/login_user.html @@ -21,7 +21,7 @@
{%- block form_header %} -

{{ _('Log in to Repository') }}

+

Log in to Repository

{%- endblock form_header %}
@@ -34,17 +34,13 @@ {% for name in config.SSO_SAML_IDPS.keys() %}
{% endfor %} {%- if config.ACCOUNTS_LOCAL_LOGIN_ENABLED %} -
- {{ _("Or") }} -
+
Or
{%- endif %} {% endif %} @@ -54,7 +50,7 @@ {%- set accordion_active = "active" if form.errors else "" %}
- {{ _('Log in with repository credentials') }} + Log in with repository credentials
@@ -64,7 +60,7 @@ {{ render_field(form.email, icon="user icon", autofocus=True, errormsg=False) }} {{ render_field(form.password, icon="lock icon", errormsg=False) }}
@@ -79,7 +75,7 @@ {%- if security.registerable %}
{% trans sitename=config.ACCOUNTS_SITENAME %}New to {{ sitename }}?{% endtrans %} - {{ _('Sign up') }} + Sign up
{%- endif %} {%- endblock registerable %} @@ -88,7 +84,7 @@ {%- if security.recoverable %}
{{ _('Forgot password?') }} + href="{{ url_for_security('forgot_password') }}">Forgot password?
{%- endif %} {%- endblock recoverable %} diff --git a/invenio_theme_iform/templates/invenio_theme_iform/accounts/register_user.html b/invenio_theme_iform/templates/invenio_theme_iform/accounts/register_user.html index 44a9ec8..8fa40ef 100644 --- a/invenio_theme_iform/templates/invenio_theme_iform/accounts/register_user.html +++ b/invenio_theme_iform/templates/invenio_theme_iform/accounts/register_user.html @@ -17,21 +17,21 @@
-

{{ _("Create an Account") }}

+

Create an Account

-

{{ _("Citeable. Discoverable.") }}

+

Citeable. Discoverable.

- {{ _("Uploads get a Digital Object Identifier (DOI) to make them easily and uniquely citeable.")}} -

{{ _("Communities.") }}

+ Uploads get a Digital Object Identifier (DOI) to make them easily and uniquely citeable. +

Communities.

- {{ _("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). -

{{ _("Trusted Research Data Management") }}

+

Trusted Research Data Management

- {{ _("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.

@@ -41,7 +41,7 @@ {%- if config.INVENIO_CONFIG_IFORM_SHIBBOLETH %}
{{_ ("Or") }}
@@ -58,7 +58,7 @@
- {{ _("Sign up with repository credentials") }} + Sign up with repository credentials
@@ -79,7 +79,7 @@
diff --git a/invenio_theme_iform/templates/invenio_theme_iform/base.html b/invenio_theme_iform/templates/invenio_theme_iform/base.html index 6df257b..280a6a9 100644 --- a/invenio_theme_iform/templates/invenio_theme_iform/base.html +++ b/invenio_theme_iform/templates/invenio_theme_iform/base.html @@ -31,7 +31,7 @@ {%- endblock head_meta %} {%- block head_title %} - {%- set title = title or _(config.THEME_SITENAME) or _("Invenio") %} + {%- set title = title or config.THEME_SITENAME %} {{title}} {%- endblock head_title %} diff --git a/invenio_theme_iform/templates/invenio_theme_iform/benefits.html b/invenio_theme_iform/templates/invenio_theme_iform/benefits.html index a8c3797..92cfca6 100644 --- a/invenio_theme_iform/templates/invenio_theme_iform/benefits.html +++ b/invenio_theme_iform/templates/invenio_theme_iform/benefits.html @@ -7,15 +7,15 @@ #}
-

{{ _("Good reasons to use the I-Form Repository") }}

+

Good reasons to use the I-Form Repository

    -
  • {{_("Safe") }} — {{_("Your research results are permanently available.") }}
  • -
  • {{_("Trusted") }} — {{_("A service from I-Form, developed in cooperation with CERN.") }}
  • -
  • {{_("Citeable") }} — {{_("Every upload is assigned a Digital Object Identifier (DOI).") }}
  • -
  • {{_("No waiting time") }} — {{_("Uploads are made available online as soon as you hit publish. Your DOI is registered within seconds.") }}
  • -
  • {{_("Open or closed") }} — {{_("You determine the visibility of your uploads. A restricted access mode is possible.") }}
  • -
  • {{_("Versioning") }} — {{_("Easily update your dataset with the versioning feature.") }}
  • -
  • {{_("Usage statistics") }} — {{ _("All uploads display standards compliant usage statistics. ") }} ({{ _("More") }})
  • +
  • Safe — Your research results are permanently available.
  • +
  • Trusted — A service from I-Form, based on software developed by CERN.
  • +
  • Citeable — Every upload is assigned a Digital Object Identifier (DOI).
  • +
  • No waiting time — Uploads are made available online as soon as you hit publish. Your DOI is registered within seconds.
  • +
  • Open or closed — You determine the visibility of your uploads. A restricted access mode is possible.
  • +
  • Versioning — Easily update your dataset with the versioning feature.
  • +
  • Usage statistics — All uploads display standards compliant usage statistics. (More)
diff --git a/invenio_theme_iform/templates/invenio_theme_iform/contact_us.html b/invenio_theme_iform/templates/invenio_theme_iform/contact_us.html index 18023c9..a3d033d 100644 --- a/invenio_theme_iform/templates/invenio_theme_iform/contact_us.html +++ b/invenio_theme_iform/templates/invenio_theme_iform/contact_us.html @@ -7,23 +7,19 @@ #}
-

{{ _("Need help?") }}

+

Need help?

{%- if config.THEME_IFORM_CONTACT_FORM %} {%- endif %} -

- {{ _("We can help with:") }} -

+

We can help with:

    -
  • {{ _("Upload your research results, software, preprints, etc.") }}
  • -
  • {{ _("Increase upload limit beyond our default policy of 10GB.") }}
  • -
  • {{ _("Establish contact with data stewards.") }}
  • -
  • {{ _("Find individual solutions.") }}
  • +
  • Uploading your research results, software, preprints, etc.
  • +
  • Increasing upload limit beyond our default policy of 10GB.
  • +
  • Establishing contact with data stewards.
  • +
  • Finding individual solutions.
diff --git a/invenio_theme_iform/templates/invenio_theme_iform/default_error.html b/invenio_theme_iform/templates/invenio_theme_iform/default_error.html index 3cfcc53..21e9bf9 100644 --- a/invenio_theme_iform/templates/invenio_theme_iform/default_error.html +++ b/invenio_theme_iform/templates/invenio_theme_iform/default_error.html @@ -9,13 +9,10 @@ {% extends config.THEME_ERROR_TEMPLATE %} {% block message %} -

{{ _('Internal server error') }}

+

Internal server error

- {{ _( - 'Please contact our support - to let us know about this error.' - ).format(support_email=config.THEME_IFORM_SUPPORT_EMAIL) - }} + Please contact our support to let + us know about this error.

{# TODO: provide g.sentry_event_id here once sentry is configured, cf. invenio_theme/500.html #} {% endblock message %} diff --git a/invenio_theme_iform/templates/invenio_theme_iform/footer.html b/invenio_theme_iform/templates/invenio_theme_iform/footer.html index 1051477..d9bcf5f 100644 --- a/invenio_theme_iform/templates/invenio_theme_iform/footer.html +++ b/invenio_theme_iform/templates/invenio_theme_iform/footer.html @@ -21,40 +21,40 @@
-

{{ _("Repository") }}

+

Repository

@@ -62,53 +62,47 @@
-

{{ _("Features") }}

+

Features

-
{{ _("Scalability") }}
-
{{ _("Institutional integration") }}
-
{{ _("Next Generation Repository") }}
-
{{ _("Repository Profiles") }}
-
{{ _("Resilient") }}
+
Scalability
+
Institutional integration
+
Next Generation Repository
+
Repository Profiles
+
Resilient
-

{{ _("Accessibility") }}

+

Accessibility

-
- {{ _("Tipp:") }} -
-
- {{ _("Use Ctrl + and Crtl -") }} -
-
- {{ _("to change the font size.") }} -
+
Tip:
+
Use Ctrl + and Crtl -
+
to change the font size.
diff --git a/invenio_theme_iform/templates/invenio_theme_iform/frontpage_overview.html b/invenio_theme_iform/templates/invenio_theme_iform/frontpage_overview.html index 1ced273..7f3b087 100644 --- a/invenio_theme_iform/templates/invenio_theme_iform/frontpage_overview.html +++ b/invenio_theme_iform/templates/invenio_theme_iform/frontpage_overview.html @@ -10,34 +10,30 @@
-

{{ _("Research Results") }}

+

Research Results

-
- {{ _("Frontpage: Description for research results") }} -
+
Frontpage: Description for research results
-

{{ _("Publications") }}

+

Publications

-
- {{ _("Frontpage: Description for publications") }} -
+
Frontpage: Description for publications
-

{{ _("Educational Resources") }}

+

Educational Resources

-
- {{ _("Frontpage: Description for open educational resources") }} -
+
Frontpage: Description for open educational resources
diff --git a/invenio_theme_iform/templates/invenio_theme_iform/header.html b/invenio_theme_iform/templates/invenio_theme_iform/header.html index c76bdc6..1840037 100644 --- a/invenio_theme_iform/templates/invenio_theme_iform/header.html +++ b/invenio_theme_iform/templates/invenio_theme_iform/header.html @@ -8,8 +8,8 @@ {% if not config.THEME_IFORM_PRODUCTION %}
-

{{ _("Test Instance") }}

-

{{ _("This is the test instance of the I-Form Repository.") }}

+

Test Instance

+

This is the test instance of the I-Form Repository.

{% endif %} @@ -32,17 +32,16 @@
- {%- include "invenio_theme_iform/home_icon.svg" %} - {{ _("Home") }} + {%- include "invenio_theme_iform/home_icon.svg" %} Home
- {{ _("Communities") }} + Communities
- {{ _("Dashboard") }} + Dashboard
diff --git a/invenio_theme_iform/templates/invenio_theme_iform/navbar.html b/invenio_theme_iform/templates/invenio_theme_iform/navbar.html index c6ca8e1..e49699c 100644 --- a/invenio_theme_iform/templates/invenio_theme_iform/navbar.html +++ b/invenio_theme_iform/templates/invenio_theme_iform/navbar.html @@ -9,22 +9,22 @@ {% set options = [ { "key": "records", - "text": _("All"), + "text": "All", "value": url_for("invenio_search_ui.search"), "title": "repo", },{ "key": "rdm", - "text": _("Research Results"), + "text": "Research Results", "value": "/records/search", "title": "Research Data", },{ "key": "marc21", - "text": _("Publications"), + "text": "Publications", "value": url_for("invenio_records_marc21.search"), "title": "publication", },{ "key": "lom", - "text": _("Educational Resources"), + "text": "Educational Resources", "value": url_for("invenio_records_lom.search"), "title": "oer", } @@ -41,17 +41,6 @@
- -
- {%- for l in current_i18n.get_locales() %} - {%- if current_i18n.language != l.language %} - - {{ l.get_display_name().upper()[0:2] }} - - {%- endif %} - {%- endfor %} -
@@ -75,11 +64,11 @@
diff --git a/invenio_theme_iform/templates/invenio_theme_iform/overview.html b/invenio_theme_iform/templates/invenio_theme_iform/overview.html index d4248d2..0c96cfc 100644 --- a/invenio_theme_iform/templates/invenio_theme_iform/overview.html +++ b/invenio_theme_iform/templates/invenio_theme_iform/overview.html @@ -9,7 +9,7 @@ {%- extends config.INVENIO_THEME_IFORM_BASE_TEMPLATE %} {%- set active_dashboard_menu_item = "overview" %} -{%- set title = _("Overview") %} +{%- set title = "Overview" %} {% block javascript %} {{ super() }} @@ -29,35 +29,29 @@ {# 3 columns: Research-Uploads, Communities, and Requests #}
-

{{ _("Research Results") }}

+

Research Results

Research Results -
- {{ _("Overview: Description for research results") }} -
+
Overview: Description for research results
-

{{ _("Communities") }}

+

Communities

Communities -
- {{ _("Overview: Description of Communities") }} -
+
Overview: Description of Communities
-

{{ _("Requests") }}

+

Requests

Requests -
- {{ _("Overview: Description of Requests") }} -
+
Overview: Description of Requests
{% else %} {# not is_iform_authenticated #} @@ -65,12 +59,12 @@
{# a modal's HTML can be placed anywhere, so I placed it here, right before it's used #} {# actual column contents start here #}
-

{{ _("Research Results") }}

+

Research Results

- {{ _("Overview: Description for research results") }} + Overview: Description for research results
@@ -103,25 +95,21 @@ {% if can_view_marc21 %}
-

{{ _("Publications") }}

+

Publications

Publications -
- {{ _("Overview: Description for publications") }} -
+
Overview: Description for publications
{% endif %}
-

{{ _("Educational Resources") }}

+

Educational Resources

Open Educational Resources -
- {{ _("Overview: Description for open educational resources") }} -
+
Overview: Description for open educational resources
diff --git a/invenio_theme_iform/templates/invenio_theme_iform/recent_uploads.html b/invenio_theme_iform/templates/invenio_theme_iform/recent_uploads.html index bfcdd7a..e223dbd 100644 --- a/invenio_theme_iform/templates/invenio_theme_iform/recent_uploads.html +++ b/invenio_theme_iform/templates/invenio_theme_iform/recent_uploads.html @@ -8,13 +8,11 @@
-

{{ _("Recent uploads") }}

+

Recent uploads

{% if not records %}
-

- {{ _("There are no public records to show.") }} -

+

There are no public records to show.

{% endif %} @@ -25,13 +23,13 @@
{# Publication date/Version badge #} - + {{ r.created_date_l10n_long }} {# Resource type badge #} {% if r.metadata.types | length > 0%} - + {{ r.metadata.types[0] }} {% endif %} @@ -85,7 +83,7 @@ {% if records %} {%- endif %}
diff --git a/invenio_theme_iform/translations/.gitkeep b/invenio_theme_iform/translations/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/invenio_theme_iform/translations/de/LC_MESSAGES/messages.po b/invenio_theme_iform/translations/de/LC_MESSAGES/messages.po deleted file mode 100644 index 53912b1..0000000 --- a/invenio_theme_iform/translations/de/LC_MESSAGES/messages.po +++ /dev/null @@ -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 , 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 \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 OERhub." -"at ü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 "" -#~ "Powered by\n" -#~ " " -#~ msgstr "" -#~ "Powered by " - -#, fuzzy, python-format -#~ msgid "" -#~ "Enabled by\n" -#~ " " -#~ msgstr "" -#~ "Enabled by " - -#, 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" diff --git a/invenio_theme_iform/translations/en/LC_MESSAGES/messages.po b/invenio_theme_iform/translations/en/LC_MESSAGES/messages.po deleted file mode 100644 index 67eaa0e..0000000 --- a/invenio_theme_iform/translations/en/LC_MESSAGES/messages.po +++ /dev/null @@ -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 , 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 \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 OERhub.at. 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 "" diff --git a/invenio_theme_iform/translations/messages.pot b/invenio_theme_iform/translations/messages.pot deleted file mode 100644 index 1e3ba00..0000000 --- a/invenio_theme_iform/translations/messages.pot +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 "" diff --git a/pyproject.toml b/pyproject.toml index 97ed204..04f91ef 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -107,23 +107,3 @@ line-ending = "auto" [tool.pydocstyle] 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/"