Compare commits

..

25 Commits

Author SHA1 Message Date
Christoph Ladurner
dac35b2e0e release v4.12.8 2024-03-11 20:20:52 +01:00
Christoph Ladurner
cf5ecfd2f6 ui: add banner to header 2024-03-11 20:20:16 +01:00
Christoph Ladurner
0919760cfd release v4.12.7 2024-02-12 13:34:50 +01:00
Christoph Ladurner
40be6ff4b4 translation: fix typo 2024-02-12 13:34:18 +01:00
Christoph Ladurner
602c4b6523 release v4.12.6 2024-02-02 12:43:31 +01:00
Christoph Ladurner
4a581d6703 fix: error_handler gets 1 parameter 2024-02-02 12:43:11 +01:00
Christoph Ladurner
b426e0cc39 release v4.12.5 2024-02-02 11:21:42 +01:00
Christoph Ladurner
b975800532 release v4.12.4 2024-02-02 10:39:20 +01:00
Christoph Ladurner
19143a7860 ui: add 423 error page 2024-02-02 10:38:57 +01:00
Christoph Ladurner
2d47e30416 fix: types could be empty list
* it is true that types will always exists, but it could be an empty
2024-02-02 09:51:18 +01:00
Christoph Ladurner
87bead9b7e setup: sort tests imports
* remove unnecessary special opensearch2. moved to tests.
2024-01-31 10:33:13 +01:00
Christoph Ladurner
11bce0a1ce workflows: change to reusable workflows 2024-01-31 10:33:13 +01:00
Christoph Ladurner
ebcd040be0 wording: update one string frontpage 2024-01-31 10:12:09 +01:00
Christoph Ladurner
515a02aed5 wording: update frontpage 2024-01-31 10:12:09 +01:00
Christoph Ladurner
7314baccc9 release v4.12.3 2024-01-28 21:19:08 +01:00
Christoph Ladurner
66a694a321 wording: update text in benefits 2024-01-28 21:18:21 +01:00
Christoph Ladurner
529b22ad20 translation: fix research result typo 2024-01-28 21:18:21 +01:00
Christoph Ladurner
a5d23135eb ui: remove commented code
* the overriding is solved by overriding the translation strings
2024-01-28 21:18:21 +01:00
Christoph Ladurner
4c3ebcee23 ui: remove comingsoon rule
* there is a more general solution used now.
2024-01-28 21:18:21 +01:00
Christoph Ladurner
2dcb7c1fab release v4.12.2 2024-01-07 16:50:06 +01:00
Christoph Ladurner
fd41e0c073 ui: use only first type
* multiple types may be more precise but sometimes also to much
  information on the starting page
2024-01-07 16:49:28 +01:00
Christoph Ladurner
264c915e89 ui: change overview logos 2024-01-07 16:49:28 +01:00
Christoph Ladurner
0f0bb85deb wording: improve 2024-01-07 16:49:28 +01:00
Christoph Ladurner
35e5ea38e0 wording: improve wording
* external input
2024-01-07 16:49:28 +01:00
Christoph Ladurner
7da3f16b00 fix: multiple subjects not displayed in one row 2024-01-07 16:49:28 +01:00
27 changed files with 780 additions and 570 deletions

View File

@@ -5,22 +5,5 @@ on:
jobs:
build-n-publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.7
uses: actions/setup-python@v2
with:
python-version: 3.7
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel babel
- name: Build package
run: |
python setup.py compile_catalog sdist bdist_wheel
- name: pypi-publish
uses: pypa/gh-action-pypi-publish@v1.3.1
with:
user: __token__
password: ${{ secrets.pypi_password }}
uses: tu-graz-library/.github/.github/workflows/pypi-publish.yml@main
secrets: inherit

View File

@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
#
# Copyright (C) 2020-2022 Graz University of Technology.
# Copyright (C) 2020-2024 Graz University of Technology.
#
# invenio-theme-tugraz is free software; you can redistribute it and/or
# modify it under the terms of the MIT License; see LICENSE file for more
@@ -24,48 +24,5 @@ on:
default: 'Manual trigger'
jobs:
Tests:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: [3.9, "3.10"]
requirements-level: [pypi]
db-service: [postgresql13]
search-service: [opensearch2]
include:
- search-service: opensearch2
SEARCH_EXTRAS: "opensearch2"
env:
DB: ${{ matrix.db-service }}
SEARCH: ${{ matrix.search-service }}
EXTRAS: tests,${{ matrix.SEARCH_EXTRAS }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Generate dependencies
run: |
pip install wheel requirements-builder
requirements-builder -e "$EXTRAS" --level=${{ matrix.requirements-level }} setup.py > .${{ matrix.requirements-level }}-${{ matrix.python-version }}-requirements.txt
- name: Cache pip
uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('.${{ matrix.requirements-level }}-${{ matrix.python-version }}-requirements.txt') }}
- name: Install dependencies
run: |
pip install -r .${{ matrix.requirements-level }}-${{ matrix.python-version }}-requirements.txt
pip install ".[$EXTRAS]"
pip freeze
docker --version
docker-compose --version
- name: Run tests
run: |
./run-tests.sh
tests:
uses: tu-graz-library/.github/.github/workflows/tests.yml@main

View File

@@ -8,6 +8,53 @@
Changes
=======
Version v4.12.8 (release 2024-03-11)
- ui: add banner to header
Version v4.12.7 (release 2024-02-12)
- translation: fix typo
Version v4.12.6 (release 2024-02-02)
- fix: error_handler gets 1 parameter
Version v4.12.5 (release 2024-02-02)
Version v4.12.4 (release 2024-02-02)
- ui: add 423 error page
- fix: types could be empty list
- setup: sort tests imports
- workflows: change to reusable workflows
- wording: update one string frontpage
- wording: update frontpage
Version v4.12.3 (release 2024-01-28)
- wording: update text in benefits
- translation: fix research result typo
- ui: remove commented code
- ui: remove comingsoon rule
Version v4.12.2 (release 2024-01-07)
- ui: use only first type
- ui: change overview logos
- wording: improve
- wording: improve wording
- fix: multiple subjects not displayed in one row
Version v4.12.1 (release 2023-11-23)
- translation: change text on frontpage overview

View File

@@ -10,6 +10,6 @@
from .ext import InvenioThemeTugraz
__version__ = "4.12.1"
__version__ = "4.12.8"
__all__ = ("__version__", "InvenioThemeTugraz")

View File

@@ -177,3 +177,7 @@ pre {
.ui.equal.height .ui.segment {
height: 100%;
}
.ui.flashed.message.manage {
text-align: center;
}

View File

@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
#
# Copyright (C) 2020-2021 Graz University of Technology.
# Copyright (C) 2020-2024 Graz University of Technology.
#
# invenio-theme-tugraz is free software; you can redistribute it and/or
# modify it under the terms of the MIT License; see LICENSE file for more
@@ -9,7 +9,7 @@
"""invenio module for TUGRAZ theme."""
from . import config
from .views import index
from .views import index, locked
class InvenioThemeTugraz(object):
@@ -26,6 +26,9 @@ class InvenioThemeTugraz(object):
# https://flask.palletsprojects.com/en/1.1.x/api/#flask.Flask.add_url_rule
app.add_url_rule("/", "index", index)
self.init_config(app)
app.register_error_handler(423, locked)
app.extensions["invenio-theme-tugraz"] = self
def init_config(self, app):

View File

@@ -0,0 +1 @@
<svg enable-background="new 0 0 64 64" height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><path d="m47.562 6.75c-.38-.474-.955-.75-1.562-.75h-28c-.607 0-1.182.276-1.562.75l-16 20c-.637.796-.573 1.943.147 2.664l30 30c.391.391.903.586 1.415.586s1.024-.195 1.414-.586l30-30c.721-.721.784-1.868.147-2.664zm10.276 19.25h-10.35l-4.8-16h2.351zm-41.054 4 10.722 20.677-20.677-20.677zm4.506 0h8.71v16.798zm12.71 0h8.71l-8.71 16.798zm13.216 0h9.956l-20.678 20.677zm-8.704-20 4.8 16h-9.312v-16zm-8.512 16h-9.312l4.8-16h4.512zm-11.039-16h2.351l-4.8 16h-10.35z"/></svg>

After

Width:  |  Height:  |  Size: 583 B

View File

@@ -0,0 +1 @@
<svg fill="none" height="48" viewBox="0 0 48 48" width="48" xmlns="http://www.w3.org/2000/svg"><g clip-rule="evenodd" fill="#333" fill-rule="evenodd"><path d="m11.0392 17.2183c-.4756.2768-.8742.5498-1.18834.7845-.34219.2557-.85823.0372-.84079-.3896.01851-.4528.06658-1.0087.17644-1.5915.17477-.9271.50589-1.9223 1.12309-2.6789-.4552-.8767-.70618-1.8366-.70618-2.8428 0-4.14214 4.25328-7.5 9.49998-7.5s9.5 3.35786 9.5 7.5c0 4.1421-4.2533 7.5-9.5 7.5-2.304 0-4.4165-.6475-6.0613-1.7247-.7675.2816-1.4393.615-2.0029.943zm1.4999-3.9218c.0919.1771.0698.3919-.0563.5465l-.6017.7375c.1536-.0626.3111-.1237.4722-.1828l.7077-.2596c.1484-.0545.3139-.0355.4461.0511l.6307.413c1.3021.8527 3.0299 1.3978 4.9656 1.3978 4.6086 0 7.5-2.8772 7.5-5.5 0-2.62276-2.8914-5.5-7.5-5.5s-7.5 2.87724-7.5 5.5c0 .6661.1647 1.3116.4812 1.9212z"/><path d="m32.1035 10c-1.1521 0-2.1445.2398-2.9566.6265-.7113.3304-1.3112.7766-1.7493 1.3019.1348-.4596.2059-.9377.2059-1.4284 0-.4134-.0505-.81784-.147-1.20984 1.2777-.8079 2.8919-1.29016 4.647-1.29016 4.1421 0 7.5 2.6863 7.5 6 0 .8463-.2191 1.6517-.6143 2.3819-.0881.1629-.0893.3595-.0084.5261.0953.1962.1748.401.241.6083.1805.5653.2624 1.1496.2971 1.6307.0308.4261-.4853.6495-.8354.4048-.3202-.2239-.7262-.4769-1.2086-.7166-.0941-.0467-.1911-.0929-.2909-.1384-.1536-.0698-.3314-.0505-.4745.0388-1.2712.7924-2.8697 1.2644-4.606 1.2644-3.5699 0-6.5573-1.9954-7.3146-4.668.7532-.5186 1.3846-1.1387 1.8571-1.8321-.0281.1638-.0425.3307-.0425.5001 0 1.4176 1.014 2.663 2.5433 3.3735.8121.3867 1.8046.6265 2.9567.6265 3.0275 0 5.4837-1.779 5.4999-3.9781 0-.0073.0001-.0146.0001-.0219 0-.0029 0-.0057 0-.0086-.0041-1.414-1.0171-2.6558-2.5432-3.3648-.8121-.3868-1.8047-.6266-2.9568-.6266z"/><path d="m13 31c1.6579 0 3-1.3421 3-3s-1.3421-3-3-3-3 1.3421-3 3 1.3421 3 3 3zm0 2c2.7625 0 5-2.2375 5-5s-2.2375-5-5-5-5 2.2375-5 5 2.2375 5 5 5z"/><path d="m5.62151 38.7886c-.48599.4893-.62151.8839-.62151 1.2114v1h18v-1c0-.3275-.1355-.7221-.6215-1.2114-.5043-.5077-1.2895-1.0094-2.3027-1.4522-2.0371-.8903-4.5143-1.3364-6.0758-1.3364s-4.03865.4461-6.07582 1.3364c-1.01321.4428-1.79842.9445-2.30267 1.4522zm8.37849-4.7886c-3.6712 0-11 2.01-11 6v3h22v-3c0-3.99-7.3287-6-11-6z"/><path d="m35 31c1.6579 0 3-1.3421 3-3s-1.3421-3-3-3-3 1.3421-3 3 1.3421 3 3 3zm0 2c2.7625 0 5-2.2375 5-5s-2.2375-5-5-5-5 2.2375-5 5 2.2375 5 5 5z"/><path d="m24 29c1.1054 0 2-.8946 2-2s-.8946-2-2-2-2 .8946-2 2 .8946 2 2 2zm0 2c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4z"/><path d="m25.6215 38.7886c-.486.4893-.6215.8839-.6215 1.2114v1h18v-1c0-.3275-.1355-.7221-.6215-1.2114-.5043-.5077-1.2895-1.0094-2.3027-1.4522-2.0371-.8903-4.5143-1.3364-6.0758-1.3364s-4.0387.4461-6.0758 1.3364c-1.0132.4428-1.7984.9445-2.3027 1.4522zm8.3785-4.7886c-3.6712 0-11 2.01-11 6v3h22v-3c0-3.99-7.3287-6-11-6z"/><path d="m24 34c-3.3093 0-5.6283 1.5425-6.2929 2.2071l-1.4143-1.4142c1.0021-1.002 3.8164-2.7929 7.7072-2.7929 3.8907 0 6.705 1.7909 7.7071 2.7929l-1.4143 1.4142c-.6646-.6646-2.9836-2.2071-6.2928-2.2071z"/></g></svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

@@ -0,0 +1,40 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
<svg fill="#000000" height="800px" width="800px" version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
viewBox="0 0 512.427 512.427" xml:space="preserve">
<g transform="translate(1 1)">
<g>
<g>
<path d="M502.893,396.948h-54.941l19.102-5.12c1.707-0.853,4.267-1.707,5.12-4.267s1.707-4.267,0.853-6.827l-12.67-47.026
c0.07-0.83,0.031-1.664-0.13-2.467l-8.533-33.28c-0.405-0.81-1.006-1.81-1.704-2.731l-42.692-158.453
c0.228-1.166,0.251-2.368,0.023-3.51l-8.533-33.28c-0.526-1.052-1.377-2.426-2.352-3.527L384.28,51.348
c-0.853-4.267-5.973-6.827-10.24-5.973l-82.773,22.187c-4.267,0.853-6.827,5.973-5.973,10.24l18.404,68.485
c-6.845-3.409-14.542-5.339-22.671-5.339H33.56c-3.413,0-5.973,1.707-7.68,5.12c-1.707,2.56-1.707,5.973,0,8.533l10.24,16.213
c7.68,13.653,7.68,29.867,0,43.52l-7.545,11.947H7.96c-3.413,0-5.973,1.707-7.68,5.12c-1.707,2.56-1.707,5.973,0,8.533
l10.24,16.213c7.68,13.653,7.68,29.867,0,43.52L0.28,315.882c-1.707,2.56-1.707,5.973,0,8.533s4.267,4.267,7.68,4.267h20.076
l8.084,12.8c7.68,13.653,7.68,29.867,0,43.52l-7.545,11.947H7.96c-5.12,0-8.533,3.413-8.533,8.533v51.2
c0,5.12,3.413,8.533,8.533,8.533h494.933c5.12,0,8.533-3.413,8.533-8.533v-51.2C511.427,400.362,508.013,396.948,502.893,396.948
z M292.303,312.89c8.853-9.215,14.323-21.7,14.323-35.409s-5.47-26.194-14.323-35.409c12.984-2.949,24.135-10.859,31.324-21.623
l29.419,109.472l7.34,28.627c0.198,0.395,0.42,0.778,0.661,1.147l10.011,37.253h-51.961c8.15-9.076,13.129-21.05,13.129-34.133
C332.227,338.528,315.083,318.064,292.303,312.89z M387.693,129.855l-65.707,17.92l-4.267-16.213l65.707-17.92L387.693,129.855z
M392.263,146.011l39.228,148.419l-65.994,17.689l-33.635-125.96c-0.582-4.934-1.863-9.661-3.758-14.072l-2.089-7.824
L392.263,146.011z M370.627,328.682l65.426-16.994l4.285,16.212l-65.444,17.849L370.627,328.682z M387.693,395.242l-8.951-33.52
l65.868-17.655l8.79,33.255L387.693,395.242z M370.627,64.148l8.501,32.163l-66.498,17.824l-8.563-32.067L370.627,64.148z
M50.627,161.428l-1.707-3.413h232.107c14.067,0,26.217,8.625,31.425,20.847l2.436,9.064c0.173,1.385,0.272,2.792,0.272,4.222
c0,18.773-15.36,34.133-34.133,34.133h-25.6H48.92l1.707-3.413C61.72,204.095,61.72,180.202,50.627,161.428z M25.027,246.762
l-1.707-3.413h10.24h221.867c18.773,0,34.133,15.36,34.133,34.133c0,18.773-15.36,34.133-34.133,34.133H33.56H23.32l1.707-3.413
C36.12,289.428,36.12,265.535,25.027,246.762z M50.627,332.095l-1.707-3.413h206.507h25.6c18.773,0,34.133,15.36,34.133,34.133
c0,18.773-15.36,34.133-34.133,34.133H48.92l1.707-3.413C61.72,374.762,61.72,350.868,50.627,332.095z M494.36,448.148H16.493
v-34.133H33.56h247.467h101.547h1.707h110.08V448.148z"/>
<path d="M93.293,371.348h187.733c5.12,0,8.533-3.413,8.533-8.533s-3.413-8.533-8.533-8.533H93.293
c-5.12,0-8.533,3.413-8.533,8.533S88.173,371.348,93.293,371.348z"/>
<path d="M67.693,286.015h187.733c5.12,0,8.533-3.413,8.533-8.533c0-5.12-3.413-8.533-8.533-8.533H67.693
c-5.12,0-8.533,3.413-8.533,8.533C59.16,282.602,62.573,286.015,67.693,286.015z"/>
<path d="M93.293,200.682h187.733c5.12,0,8.533-3.413,8.533-8.533s-3.413-8.533-8.533-8.533H93.293
c-5.12,0-8.533,3.413-8.533,8.533S88.173,200.682,93.293,200.682z"/>
<path d="M357.827,182.762l26.453,98.987c1.707,3.413,5.12,5.973,8.533,5.973c0,0,0.853,0,1.707-0.853
c4.267-0.853,6.827-5.973,5.973-10.24l-26.453-98.133c-0.853-4.267-5.973-6.827-10.24-5.973S356.973,178.495,357.827,182.762z"/>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.6 KiB

View File

@@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.8" data-attribution="cc0-icons" viewBox="0 0 24 24">
<path d="m4.5 2 15 10-15 10V2Z"/>
</svg>

After

Width:  |  Height:  |  Size: 256 B

View File

@@ -0,0 +1 @@
<svg enable-background="new 0 0 64 64" height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><path d="m32 0c-27.377 0-31.93 25.415-31.973 25.671-.097.58.066 1.173.447 1.622.38.448.938.707 1.526.707h28v30c0 3.309 2.691 6 6 6s6-2.691 6-6c0-1.104-.896-2-2-2s-2 .896-2 2c0 1.103-.897 2-2 2s-2-.897-2-2v-30h28c.007-.001.013 0 .02 0 1.104 0 2-.896 2-2 0-.234-.041-.459-.115-.669-.645-3.04-6.265-25.331-31.905-25.331zm-27.455 24c1.712-5.749 7.927-20 27.455-20s25.743 14.251 27.455 20z"/></svg>

After

Width:  |  Height:  |  Size: 510 B

View File

@@ -0,0 +1,14 @@
{#
Copyright (C) 2024 Graz University of Technology.
invenio-theme-tugraz is free software; you can redistribute it and/or
modify it under the terms of the MIT License; see LICENSE file for more
details.
#}
{% extends config.THEME_ERROR_TEMPLATE %}
{% block message %}
<h1><i class="bolt icon"></i> {{_("Locked")}}</h1>
<p>{{_("The resource that is being accessed is locked.")}}</p>
{% endblock message %}

View File

@@ -17,42 +17,38 @@
<div class="ui stackable two column grid">
<div class="centered row">
<h1 class="ui header">{{ _('Create an Account') }}</h1>
<h1 class="ui header">{{ _("Create an Account") }}</h1>
</div>
<div class="column" id="switch_left">
<div class="ui basic segment">
<h4 class="ui header">{{ _('Citeable. Discoverable.') }}</h4>
<h4 class="ui header">{{ _("Citeable. Discoverable.") }}</h4>
<p class="bodytext">
{{ _('Uploads get a Digital Object Identifier (DOI) to make them easily and uniquely citeable.')}}</h5>
<h4 class="ui header">{{ _('Communities.') }}</h4>
{{ _("Uploads get a Digital Object Identifier (DOI) to make them easily and uniquely citeable.")}}</h5>
<h4 class="ui header">{{ _("Communities.") }}</h4>
<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>
<h4 class="ui header">{{ _('Trusted Research Data Management') }}</h4>
<h4 class="ui header">{{ _("Trusted Research Data Management") }}</h4>
<p class="bodytext">
{{ _('Built on top of TU Graz expertise in managing of the research data from the Graz University of Technology.') }}
{{ _("Built on top of TU Graz expertise in managing of the research data from the Graz University of Technology.") }}
</h5>
</div>
</div>
<div class="column" id="switch_right">
<!--Sigup with SSO-->
{# Sigup with SSO #}
{%- if config.INVENIO_CONFIG_TUGRAZ_SHIBBOLETH %}
<div class="ui divider"></div>
<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 TUGRAZ ') }}</span>
<img src="{{ url_for('static', filename=config.INVENIO_THEME_TUGRAZ_ICON)}}" height="20px" />
</a>
<div class="ui inverted horizontal divider"><span class="text-color">{{_ ("Or")}}</span></div>
<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 TUGRAZ") }}</span>
<img src="{{ url_for("static", filename=config.INVENIO_THEME_TUGRAZ_ICON) }}" height="20px" />
</a>
<div class="ui inverted horizontal divider"><span class="text-color">{{_ ("Or") }}</span></div>
{%- endif %}
{%- block form_header %}
<!-- can add a header img-->
{# can add a header img #}
{%- block form_outer %}
{%- endblock form_outer %}
{%- endblock form_header %}
@@ -62,11 +58,11 @@
<div class="ui padded centered large form">
<div class="ui styled accordion">
<div class="title trigger {{ accordion_active }}">
{{ _('Sign up with repository credentials') }}
{{ _("Sign up with repository credentials") }}
<i class="user icon button"></i>
</div>
<div class="content {{ accordion_active }}">
<form class="ui large form" action="{{ url_for_security('register') }}" method="POST" name="register_user_form">
<form class="ui large form" action="{{ url_for_security("register") }}" method="POST" name="register_user_form">
{{ form_errors(form) }}
{{ form.hidden_tag() }}
{%- block registration_form_fields scoped %}
@@ -83,7 +79,7 @@
<div class="centered row">
<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>
</div>
</form>
@@ -93,7 +89,6 @@
{%- endwith %}
<div class="ui divider"></div>
</div>
</div>
</div>

View File

@@ -1,17 +1,21 @@
{#
Copyright (C) 2020-2023 Graz University of Technology.
Copyright (C) 2020-2024 Graz University of Technology.
invenio-theme-tugraz is free software; you can redistribute it and/or
modify it under the terms of the MIT License; see LICENSE file for more
details.
#}
<ul>
<li><strong>{{_("Safe") }}</strong> &mdash; {{_("your research is stored safely for the future in TU Graz library for as long as TU Graz library exists.") }}</li>
<li><strong>{{_("Trusted") }}</strong> &mdash; {{_("built and operated by CERN and OpenAIRE to ensure that everyone can join in Open Science.") }}</li>
<li><strong>{{_("Citeable") }}</strong> &mdash; {{_("every upload is assigned a Digital Object Identifier (DOI), to make them citable and trackable.") }}</li>
<li><strong>{{_("No waiting time") }}</strong> &mdash; {{_("Uploads are made available online as soon as you hit publish, and your DOI is registered within seconds.") }}</li>
<li><strong>{{_("Open or closed") }}</strong> &mdash; {{_("Share e.g. anonymized clinical trial data with only medical professionals via our restricted access mode.") }}</li>
<li><strong>{{_("Versioning") }}</strong> &mdash; {{_("Easily update your dataset with our versioning feature.") }}</li>
<li><strong>{{_("Usage statisics") }}</strong> &mdash; {{ _("All uploads display standards compliant usage statistics") }}</li>
</ul>
<div class="ui segment" style="padding-bottom: 10px;">
<h4>{{ _("Good reasons to use the Repository of the TU Graz") }}</h4>
<ul>
<li><strong>{{_("Safe") }}</strong> &mdash; {{_("Your research results are permanently available.") }}</li>
<li><strong>{{_("Trusted") }}</strong> &mdash; {{_("A service from TU Graz, developed in cooperation with CERN.") }}</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>{{_("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>{{_("Usage statistics") }}</strong> &mdash; {{ _("All uploads display standards compliant usage statistics. ") }} <a href="help/statistics">({{ _("More") }})</a></li>
</ul>
</div>

View File

@@ -1,15 +0,0 @@
{#
Copyright (C) 2020-2023 Graz University of Technology.
invenio-theme-tugraz is free software; you can redistribute it and/or
modify it under the terms of the MIT License; see LICENSE file for more
details.
#}
{%- extends config.INVENIO_THEME_TUGRAZ_BASE_TEMPLATE %}
{%- block page_body %}
<div class="ui container">
<h1 style="text-align: center;">comingsoon</h1>
</div>
{%- endblock %}

View File

@@ -0,0 +1,29 @@
{#
Copyright (C) 2020-2024 Graz University of Technology.
invenio-theme-tugraz is free software; you can redistribute it and/or
modify it under the terms of the MIT License; see LICENSE file for more
details.
#}
<div class="ui segment">
<h4>{{ _("Need help?") }}</h4>
{%- if config.THEME_TUGRAZ_CONTACT_FORM %}
<div style="padding-bottom: 10px;">
<a id="feedback-form" class="fluid ui button">
{{ _("Contact us") }}
</a>
</div>
{%- endif %}
<p>
{{ _("We can help with:") }}
</p>
<ul>
<li>{{ _("Upload your research results, software, preprints, etc.") }}</li>
<li>{{ _("Increase upload limit beyond our default policy of 10GB.") }}</li>
<li>{{ _("Establish contact with data stewards.") }}</li>
<li>{{ _("Find individual solutions.") }}</li>
</ul>
</div>

View File

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

View File

@@ -15,6 +15,11 @@
<div>
<header>
{%- block site_banner %}
{% from 'invenio_banners/banner.html' import banner %}
{{ banner() }}
{%- endblock site_banner %}
{%- block navbar %}
<nav>
{%- block navbar_header %}
@@ -46,7 +51,7 @@
<a role="menuitem" href="/communities" class="no-decoration">{{ _("Communities") }}</a>
</div>
<div class="two wide column main-menu-entry">
<a role="menuitem" href="/me/overview" class="no-decoration">{{ _("My dashboard") }}</a>
<a role="menuitem" href="/me/overview" class="no-decoration">{{ _("Dashboard") }}</a>
</div>
</div>

View File

@@ -25,36 +25,8 @@
<!---segments-->
<div class="six wide column">
<!--contact us-->
<div class="ui segment">
<h4>{{ _("Need help?") }}</h4>
{%- if config.THEME_TUGRAZ_CONTACT_FORM %}
<div style="padding-bottom: 10px;">
<a id="feedback-form" class="fluid ui button">
{{ _("Contact us") }}
</a>
</div>
{%- endif %}
<p>
{{ config.THEME_SITENAME }} {{ _("prioritizes all Recent uploads.") }}
</p>
<p>
{{ _("We can help with:") }}
</p>
<ul>
<li>{{ _("Uploading your research data, software, preprints, etc.") }}</li>
<li>{{ _("One-on-one with") }} {{ config.THEME_SITENAME }} {{ _("supporters.") }}</li>
<li>{{ _("Quota increases beyond our default policy.") }}</li>
<li>{{ _("Scripts for automated uploading of larger datasets.") }}</li>
</ul>
</div>
<div class="ui segment" style="padding-bottom: 10px;">
<h4>{{ _("Why use") }} {{ config.THEME_SITENAME }}</h4>
{% include "invenio_theme_tugraz/benefits.html" %}
</div>
{% include "invenio_theme_tugraz/contact_us.html" %}
{% include "invenio_theme_tugraz/benefits.html" %}
</div>
</div>
</div>

View File

@@ -24,7 +24,7 @@
"title": "publication",
},{
"key": "lom",
"text": _("Open Educational Resources"),
"text": _("Educational Resources"),
"value": url_for("invenio_records_lom.search"),
"title": "oer",
}

View File

@@ -23,12 +23,12 @@
<div class="ui five column stackable grid overview">
<div class="column">
<div class="ui segment" style="height: 480px">
<h2>{{ _("Research Result") }}</h2>
<h2>{{ _("Research Results") }}</h2>
<a class="ui left floated image" href="/me/uploads">
<img alt="Research Result" src="{{ url_for("static", filename="images/cyan_400x400.png") }}">
<img width="400px" alt="Research Results" src="{{ url_for("static", filename="images/diamond.svg") }}">
</a>
<div class="ui right floated text">
Research results gives the base on which publications are built.
{{ _("Overview: Description for research results") }}
</div>
</div>
</div>
@@ -36,10 +36,10 @@
<div class="ui segment" style="height: 480px">
<h2>{{ _("Communities") }}</h2>
<a class="ui left floated image" href="/me/communities">
<img alt="Communities" src="{{ url_for("static", filename="images/dark_blue_400x400.png") }}">
<img width="400px" alt="Communities" src="{{ url_for("static", filename="images/group-discussion.svg") }}">
</a>
<div>
Communities form the area local interests could be planted on.
{{ _("Overview: Description of Communities") }}
</div>
</div>
</div>
@@ -47,10 +47,10 @@
<div class="ui segment" style="height: 480px">
<h2>{{ _("Requests") }}</h2>
<a class="ui left floated image" href="/me/requests">
<img alt="Requests" src="{{ url_for("static", filename="images/light_green_400x400.png") }}">
<img width="400px" alt="Requests" src="{{ url_for("static", filename="images/umbrella.svg") }}">
</a>
<div>
Requests build the bridge to communicate with the administration.
{{ _("Overview: Description of Requests") }}
</div>
</div>
</div>
@@ -58,21 +58,21 @@
<div class="ui segment" style="height: 480px">
<h2>{{ _("Publications") }}</h2>
<a class="ui left floated image" href="/publications/uploads">
<img alt="Publications" src="{{ url_for("static", filename="images/red_400x400.png") }}">
<img width="400px" alt="Publications" src="{{ url_for("static", filename="images/library-book-svgrepo-com.svg") }}">
</a>
<div>
Publications are the synthesized result of research.
{{ _("Overview: Description for publications") }}
</div>
</div>
</div>
<div class="column">
<div class="ui segment" style="height: 480px">
<h2>{{ _("OER") }}</h2>
<h2>{{ _("Educational Resources") }}</h2>
<a class="ui left floated image" href="/oer/uploads">
<img alt="Open Educational Resources" src="{{ url_for("static", filename="images/rosa_400x400.png") }}">
<img width="400px" alt="Open Educational Resources" src="{{ url_for("static", filename="images/play.svg") }}">
</a>
<div>
Open Educational Resources are the basis for training other possible scientists.
{{ _("Overview: Description for open educational resources") }}
</div>
</div>
</div>

View File

@@ -12,7 +12,9 @@
{% if not records %}
<div class="ui centered grid">
<p style="font-size: medium;">{{ _("There are no public records to show.") }}</p>
<p style="font-size: medium;">
{{ _("There are no public records to show.") }}
</p>
</div>
{% endif %}
@@ -22,20 +24,21 @@
<article>
<div class="badges">
<!--Publication date/Version badge-->
{# Publication date/Version badge #}
<span class="ui label blue" data-tooltip="{{ _("Publication date") }}" data-inverted="">
{{ r.created_date_l10n_long }}
</span>
<!--Resource type badge-->
<span class="ui label grey" data-tooltip="{{ _("Resource type") }}" data-inverted="">
{%- for type in r.metadata.types %}
{{ type }}
{%- endfor %}
</span>
{# Resource type badge #}
{% if r.metadata.types | length > 0%}
<span class="ui label grey" data-tooltip="{{ _("Resource type") }}" data-inverted="">
{{ r.metadata.types[0] }}
</span>
{% endif %}
<span class="ui label access-status {{ r.access_status.id }}"
data-tooltip="{{ r.access_status.description_l10n }}" data-inverted="">
data-tooltip="{{ r.access_status.description_l10n }}"
data-inverted="">
<i class="icon {{ r.access_status.icon }}"></i>
{{ r.access_status.title_l10n }}
</span>
@@ -63,22 +66,18 @@
</a>
</p>
<div class="ui grid">
<div class="two column row">
<div class="left floated column">
{%- for subject in r.metadata.subjects %}
<div class="ui tiny label">{{ subject }}</div>
{%- endfor %}
<div>
<small>
{#
{% trans user=userprofile, date=creation_date | dateformat("long")%}
Uploaded on {{date}}
{% endtrans %}
#}
</small>
</div>
</div>
<div class="ui">
{%- for subject in r.metadata.subjects %}
<span class="ui tiny label">{{ subject }}</span>
{%- endfor %}
<div>
<small>
{#
{% trans user=userprofile, date=creation_date | dateformat("long")%}
Uploaded on {{date}}
{% endtrans %}
#}
</small>
</div>
</div>
</article>

View File

@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: invenio-theme-tugraz 1.0.4\n"
"Report-Msgid-Bugs-To: mojib.wali@tugraz.at\n"
"POT-Creation-Date: 2023-11-20 15:04+0100\n"
"PO-Revision-Date: 2023-11-20 15:29+0100\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"
@@ -30,95 +30,135 @@ msgid "Repository"
msgstr "Repository"
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/overview.html:12
#: invenio_theme_tugraz/views.py:80
#: invenio_theme_tugraz/views.py:70
msgid "Overview"
msgstr "Übersicht"
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/header.html:49
#: invenio_theme_tugraz/views.py:86
#: invenio_theme_tugraz/views.py:76
msgid "My dashboard"
msgstr "Meine Übersicht"
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/423.html:12
msgid "Locked"
msgstr "Locked"
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/423.html:13
msgid "The resource that is being accessed is locked."
msgstr "Die angeforderte Ressource ist zurzeit gesperrt."
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/accounts/accounts_base.html:26
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/base.html:34
msgid "Invenio"
msgstr "Invenio"
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/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_tugraz/templates/invenio_theme_tugraz/benefits.html:13
msgid "Safe"
msgstr "Sicher"
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:10
msgid ""
"your research is stored safely for the future in TU Graz library for as long "
"as TU Graz library exists."
msgstr ""
"Ihre Forschung ist in der Bibliothek der TU Graz für die Zukunft "
"gespeichert, solange die Bibliothek der TU Graz existiert."
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:13
msgid "Your research results are permanently available."
msgstr "Ihre Forschungsergebnisse sind dauerhaft verfügbar."
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:11
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:14
msgid "Trusted"
msgstr "Vertrauenswürdig"
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:11
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."
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/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_tugraz/templates/invenio_theme_tugraz/benefits.html:12
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:15
msgid "Citeable"
msgstr "Zitierfähig "
msgstr "Zitierfähig"
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:12
msgid ""
"every upload is assigned a Digital Object Identifier (DOI), to make them "
"citable and trackable."
msgstr ""
"Jeder Upload wird mit einem Digital Object Identifier (DOI) versehen,um ihn "
"zitierfähig und nachverfolgbar zu"
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/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_tugraz/templates/invenio_theme_tugraz/benefits.html:13
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:16
msgid "No waiting time"
msgstr "Keine Wartezeit"
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:13
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:16
msgid ""
"Uploads are made available online as soon as you hit publish, and your DOI "
"is registered within seconds."
"Uploads are made available online as soon as you hit publish. Your DOI is "
"registered within seconds."
msgstr ""
"Uploads stehen sofort nach drücken auf Veröffentlichen” zur Verfügung. Ihre "
"DOI wird innerhalb von Sekunden registriert."
"Uploads sind online verfügbar, sobald Sie auf \"Veröffentlichen\" klicken. "
"Ihre DOI wird innerhalb von Sekunden registriert."
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:14
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:17
msgid "Open or closed"
msgstr "Offen oder geschlossen"
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:14
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:17
msgid ""
"Share e.g. anonymized clinical trial data with only medical professionals "
"via our restricted access mode."
"You determine the visibility of your uploads. A restricted access mode is "
"possible."
msgstr ""
"Teilen Sie z.B. anonymisierte klinische Studiendaten nur mit medizinischem "
"Fachpersonal über unseren eingeschränkten Zugriffsmodus."
"Sie bestimmen die Sichtbarkeit Ihrer Uploads. Ein eingeschränkter "
"Zugriffsmodus ist möglich."
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:15
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:18
msgid "Versioning"
msgstr "Versionierung"
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:15
msgid "Easily update your dataset with our versioning feature."
msgstr "Einfaches Updaten ihrer Datensätze mit unserer Versionierung."
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:18
msgid "Easily update your dataset with the versioning feature."
msgstr ""
"Aktualisieren Sie Ihren Datensatz ganz einfach mit der "
"Versionierungsfunktion."
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:16
msgid "Usage statisics"
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:19
#, fuzzy
#| msgid "Usage statisics"
msgid "Usage statistics"
msgstr "Nutzungsstatistiken"
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:16
msgid "All uploads display standards compliant usage statistics"
msgstr "Alle Uploads entsprechen den Standards der Nutzungsstatistiken."
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/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_tugraz/templates/invenio_theme_tugraz/benefits.html:19
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/recent_uploads.html:88
msgid "More"
msgstr "Mehr"
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/contact_us.html:10
msgid "Need help?"
msgstr "Brauchen Sie Hilfe?"
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/contact_us.html:15
msgid "Contact us"
msgstr "Kontaktieren Sie uns"
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/contact_us.html:20
msgid "We can help with:"
msgstr "Dabei können wir helfen:"
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/contact_us.html:24
msgid "Upload your research results, software, preprints, etc."
msgstr "Hochladen Ihrer Forschungsergebnisse, Software, Preprints usw."
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/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_tugraz/templates/invenio_theme_tugraz/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_tugraz/templates/invenio_theme_tugraz/contact_us.html:27
msgid "Find individual solutions."
msgstr "Individuelle Lösungen finden."
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:29
msgid "Documentation"
@@ -166,7 +206,7 @@ msgstr "Resilient, widerstandsfähig"
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:78
msgid "Connected Services"
msgstr "Verbundene Services "
msgstr "Verbundene Services"
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:82
msgid "PURE"
@@ -186,7 +226,7 @@ msgstr "Barrierefreiheit"
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:104
msgid "Tipp:"
msgstr "Tipp"
msgstr "Tipp:"
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:107
msgid "Use Ctrl + and Crtl -"
@@ -197,19 +237,31 @@ msgid "to change the font size."
msgstr "Um die Schriftgröße zu ändern."
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/frontpage_overview.html:13
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/navbar.html:17
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/overview.html:26
msgid "Research Result"
msgid "Research Results"
msgstr "Forschungsergebnisse"
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/frontpage_overview.html:16
msgid "Description for research result"
#, fuzzy
#| msgid "Frontpage: Description for research result"
msgid "Frontpage: Description for research results"
msgstr ""
"Forschungsergebnisse ist der Sammelbegriff für alles was bei einem "
"Forschungsprojekt an Ergebnisse vorhanden sind. Sie beschreiben auf welchen "
"Daten die Publikationen fußen. Sie beschreiben mit welchen Tools die "
"Forschungsdaten gesammelt und bearbeitet wurden. Die folgenden Verlinkungen "
"bieten die Möglichkeit Forschungsergebnisse dem Repository hinzuzufügen, "
"aber auch die Ergebnisse anderer Personen zu suchen."
"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_tugraz/templates/invenio_theme_tugraz/frontpage_overview.html:26
msgid "Search for research results"
msgstr "Suchen Sie nach Forschungsergebnissen"
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/frontpage_overview.html:29
msgid "Upload research results"
msgstr "Erstellen Sie Forschungsergebnisse"
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/frontpage_overview.html:36
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/navbar.html:22
@@ -218,24 +270,42 @@ msgid "Publications"
msgstr "Publikationen"
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/frontpage_overview.html:39
msgid "Description for publications"
msgid "Frontpage: Description for publications"
msgstr ""
"Publikationen umfassen sehr viele Bereiche. Es werden OpenAccess papers aus "
"Pure importiert. Es werden OpenAcces Verlagspublikationen veröffentlicht. Es "
"werden Digitalisate angeboten. Es werden Hochschulschriften einer breiten "
"Masse an Personen zur Verfügung gestellt. Die Suche bietet die Möglichkeit "
"aus der Menge an Publikationen das richtige zu wählen."
"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_tugraz/templates/invenio_theme_tugraz/frontpage_overview.html:49
msgid "Search for publications"
msgstr "Suchen Sie nach Publikationen"
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/frontpage_overview.html:56
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/navbar.html:27
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/overview.html:70
msgid "OER"
msgstr "OER"
msgid "Educational Resources"
msgstr "Bildungsinhalte"
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/frontpage_overview.html:59
msgid "Description for open educational resources"
msgid "Frontpage: Description for open educational resources"
msgstr ""
"Open Educational Resources sind offene Bildungsresourcen die einen "
"niederschwelligen Zugriff zu freien Bildungsresourcen bieten."
"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_tugraz/templates/invenio_theme_tugraz/frontpage_overview.html:69
msgid "Search for educational resourses"
msgstr "Suchen Sie nach Bildungsinhalten"
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/frontpage_overview.html:72
msgid "Upload educational resources"
msgstr "Erstellen Sie neue Bildungsinhalte"
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/accounts/accounts_base.html:61
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/header.html:11
@@ -256,58 +326,14 @@ msgstr "Startseite"
msgid "Communities"
msgstr "Communities"
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:30
msgid "Need help?"
msgstr "Brauchen Sie Hilfe?"
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:34
msgid "Contact us"
msgstr "Kontaktiere uns"
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:39
msgid "prioritizes all Recent uploads."
msgstr "reiht die neuesten Uploads vor."
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:42
msgid "We can help with:"
msgstr "Dabei können wir helfen:"
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:46
msgid "Uploading your research data, software, preprints, etc."
msgstr "Hochladen Ihrer Forschungsdaten, Software, Preprints usw."
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:47
msgid "One-on-one with"
msgstr "One-on-one mit"
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:47
msgid "supporters."
msgstr "Unterstützern"
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:48
msgid "Quota increases beyond our default policy."
msgstr "Quota Erhöhungen über unsere Standard Policy hinaus."
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:49
msgid "Scripts for automated uploading of larger datasets."
msgstr "Skripte zum automatisierten Hochladen größerer Datensätze."
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:54
msgid "Why use"
msgstr "Warum"
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/header.html:49
msgid "Dashboard"
msgstr "Übersicht"
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/navbar.html:12
msgid "All"
msgstr "Alle"
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/navbar.html:17
msgid "Research Results"
msgstr "Forschungsergebenisse"
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/navbar.html:27
msgid "Open Educational Resources"
msgstr "Open Educational Resources"
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/navbar.html:78
msgid "TU GRAZ"
msgstr ""
@@ -332,33 +358,60 @@ msgstr "TECHNIK"
msgid "TECHNOLOGY"
msgstr "LEIDENSCHAFT"
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/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_tugraz/templates/invenio_theme_tugraz/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_tugraz/templates/invenio_theme_tugraz/overview.html:48
msgid "Requests"
msgstr "Anfragen"
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/overview.html:53
msgid "Overview: Description of Requests"
msgstr ""
"Prüfen Sie auf eingehende Benachrichtigungen und Gemeinschaftsaufgaben oder -"
"anfragen."
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/overview.html:64
msgid "Overview: Description for publications"
msgstr ""
"Die Veröffentlichungen sind das zusammengefasste Ergebnis der Forschung."
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/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_tugraz/templates/invenio_theme_tugraz/recent_uploads.html:11
msgid "Recent uploads"
msgstr "Kürzlich hochgeladene Dateien"
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/recent_uploads.html:15
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/recent_uploads.html:16
msgid "There are no public records to show."
msgstr "Es sind keine öffentlich zugänglichen Datensätze vorhanden."
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/recent_uploads.html:26
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/recent_uploads.html:28
msgid "Publication date"
msgstr "Datum der Veröffentlichung"
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/recent_uploads.html:31
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/recent_uploads.html:34
msgid "Resource type"
msgstr "Art der Veröffentlichung"
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/recent_uploads.html:89
msgid "More"
msgstr "Mehr"
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/accounts/header_login.html:8
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/accounts/login_user.html:82
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/accounts/register_user.html:86
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/accounts/register_user.html:82
msgid "Sign up"
msgstr "Registrieren"
@@ -380,7 +433,7 @@ msgid "Log in with %(title)s"
msgstr "Einloggen mit %(title)s"
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/accounts/login_user.html:46
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/accounts/register_user.html:51
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/accounts/register_user.html:47
msgid "Or"
msgstr "Oder"
@@ -399,7 +452,7 @@ msgstr "Neu im %(sitename)s?"
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/accounts/login_user.html:91
msgid "Forgot password?"
msgstr "Passwort vergessen"
msgstr "Passwort vergessen?"
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/accounts/register_user.html:20
msgid "Create an Account"
@@ -418,7 +471,7 @@ msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/accounts/register_user.html:28
msgid "Communities."
msgstr "Communities"
msgstr "Communities."
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/accounts/register_user.html:30
msgid ""
@@ -436,16 +489,68 @@ msgstr "Vertrauenswürdiges Forschungsdatenmanagement"
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 derTU Graz im Bereich Data Management"
msgstr "Gebaut basierend auf Expertise der TU Graz im Bereich Data Management."
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/accounts/register_user.html:48
msgid "Sign up with TUGRAZ "
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/accounts/register_user.html:44
msgid "Sign up with TUGRAZ"
msgstr "Mit Ihrem TUGonline-Account registrieren"
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/accounts/register_user.html:65
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/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"
@@ -487,9 +592,6 @@ msgstr "Mit Ihren Repository Daten registrieren"
#~ "Steigerung der Sichtbarkeit der Datensätze durch Synchronisation mit "
#~ "Harvestern (DataCite)."
#~ msgid "Upload Research Output"
#~ msgstr "Upload Forschungsergebnisse"
#~ msgid ""
#~ "Open Educational Resources (OER) will be visible on various discovery "
#~ "tools like the OERhub."
@@ -497,9 +599,6 @@ msgstr "Mit Ihren Repository Daten registrieren"
#~ "Open Educational Resources (OER) werden auf Suchmaschinen wie OERhub "
#~ "sichtbar sein."
#~ msgid "Upload OER"
#~ msgstr "Upload OER"
#~ msgid "Type and press enter to search"
#~ msgstr "Suchbegriff eingeben und “Enter” drücken (?)"

View File

@@ -8,16 +8,16 @@ msgid ""
msgstr ""
"Project-Id-Version: invenio-theme-tugraz 4.12.0\n"
"Report-Msgid-Bugs-To: mojib.wali@tugraz.at\n"
"POT-Creation-Date: 2023-11-20 15:04+0100\n"
"PO-Revision-Date: 2023-11-22 14:47+0100\n"
"Language: en\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"
"Plural-Forms: nplurals=2; plural=(n != 1);\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"
"Last-Translator: \n"
"X-Generator: Poedit 2.3.1\n"
#: invenio_theme_tugraz/config.py:13 invenio_theme_tugraz/config.py:60
@@ -30,84 +30,122 @@ msgid "Repository"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/overview.html:12
#: invenio_theme_tugraz/views.py:80
#: invenio_theme_tugraz/views.py:70
msgid "Overview"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/header.html:49
#: invenio_theme_tugraz/views.py:86
#: invenio_theme_tugraz/views.py:76
msgid "My dashboard"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/423.html:12
msgid "Locked"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/423.html:13
msgid "The resource that is being accessed is locked."
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/accounts/accounts_base.html:26
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/base.html:34
msgid "Invenio"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:10
msgid "Good reasons to use the Repository of the TU Graz"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:13
msgid "Safe"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:10
msgid ""
"your research is stored safely for the future in TU Graz library for as "
"long as TU Graz library exists."
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:13
msgid "Your research results are permanently available."
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:11
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:14
msgid "Trusted"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:11
msgid ""
"built and operated by CERN and OpenAIRE to ensure that everyone can join "
"in Open Science."
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:14
msgid "A service from TU Graz, developed in cooperation with CERN."
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:12
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:15
msgid "Citeable"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:12
msgid ""
"every upload is assigned a Digital Object Identifier (DOI), to make them "
"citable and trackable."
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:15
msgid "Every upload is assigned a Digital Object Identifier (DOI)."
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:13
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:16
msgid "No waiting time"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:13
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:16
msgid ""
"Uploads are made available online as soon as you hit publish, and your "
"DOI is registered within seconds."
"Uploads are made available online as soon as you hit publish. Your DOI is "
"registered within seconds."
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:14
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:17
msgid "Open or closed"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:14
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:17
msgid ""
"Share e.g. anonymized clinical trial data with only medical "
"professionals via our restricted access mode."
"You determine the visibility of your uploads. A restricted access mode is "
"possible."
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:15
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:18
msgid "Versioning"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:15
msgid "Easily update your dataset with our versioning feature."
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:18
msgid "Easily update your dataset with the versioning feature."
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:16
msgid "Usage statisics"
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:19
msgid "Usage statistics"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:16
msgid "All uploads display standards compliant usage statistics"
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:19
msgid "All uploads display standards compliant usage statistics. "
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:19
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/recent_uploads.html:88
msgid "More"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/contact_us.html:10
msgid "Need help?"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/contact_us.html:15
msgid "Contact us"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/contact_us.html:20
msgid "We can help with:"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/contact_us.html:24
msgid "Upload your research results, software, preprints, etc."
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/contact_us.html:25
msgid "Increase upload limit beyond our default policy of 10GB."
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/contact_us.html:26
msgid "Establish contact with data stewards."
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/contact_us.html:27
msgid "Find individual solutions."
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:29
@@ -187,18 +225,30 @@ msgid "to change the font size."
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/frontpage_overview.html:13
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/navbar.html:17
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/overview.html:26
msgid "Research Result"
msgid "Research Results"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/frontpage_overview.html:16
msgid "Description for research result"
#, 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_tugraz/templates/invenio_theme_tugraz/frontpage_overview.html:26
msgid "Search for research results"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/frontpage_overview.html:29
msgid "Upload research results"
msgstr ""
"Research results is the collective term for all the results of a "
"research project. They describe the data on which the publications are "
"based. They describe 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_tugraz/templates/invenio_theme_tugraz/frontpage_overview.html:36
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/navbar.html:22
@@ -207,24 +257,41 @@ msgid "Publications"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/frontpage_overview.html:39
msgid "Description for publications"
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_tugraz/templates/invenio_theme_tugraz/frontpage_overview.html:49
msgid "Search for publications"
msgstr ""
"Publications cover many areas. OpenAccess papers are imported from Pure. "
"OpenAccess publisher publications are published. Digital copies are "
"offered. University publications are made available to a wide range of "
"people. The search offers the possibility to choose the right "
"publication from the many available."
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/frontpage_overview.html:56
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/navbar.html:27
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/overview.html:70
msgid "OER"
msgid "Educational Resources"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/frontpage_overview.html:59
msgid "Description for open educational resources"
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_tugraz/templates/invenio_theme_tugraz/frontpage_overview.html:69
msgid "Search for educational resourses"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/frontpage_overview.html:72
msgid "Upload educational resources"
msgstr ""
"Open Educational Resources are open educational resources that offer low-"
"threshold access to free educational resources."
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/accounts/accounts_base.html:61
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/header.html:11
@@ -245,58 +312,14 @@ msgstr ""
msgid "Communities"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:30
msgid "Need help?"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:34
msgid "Contact us"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:39
msgid "prioritizes all Recent uploads."
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:42
msgid "We can help with:"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:46
msgid "Uploading your research data, software, preprints, etc."
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:47
msgid "One-on-one with"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:47
msgid "supporters."
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:48
msgid "Quota increases beyond our default policy."
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:49
msgid "Scripts for automated uploading of larger datasets."
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:54
msgid "Why use"
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/header.html:49
msgid "Dashboard"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/navbar.html:12
msgid "All"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/navbar.html:17
msgid "Research Results"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/navbar.html:27
msgid "Open Educational Resources"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/navbar.html:78
msgid "TU GRAZ"
msgstr ""
@@ -321,33 +344,57 @@ msgstr ""
msgid "TECHNOLOGY"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/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_tugraz/templates/invenio_theme_tugraz/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_tugraz/templates/invenio_theme_tugraz/overview.html:48
msgid "Requests"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/overview.html:53
msgid "Overview: Description of Requests"
msgstr ""
"Check for incoming notifications and community assignments or inquiries."
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/overview.html:64
msgid "Overview: Description for publications"
msgstr "Publications are the synthesized result of research."
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/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_tugraz/templates/invenio_theme_tugraz/recent_uploads.html:11
msgid "Recent uploads"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/recent_uploads.html:15
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/recent_uploads.html:16
msgid "There are no public records to show."
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/recent_uploads.html:26
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/recent_uploads.html:28
msgid "Publication date"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/recent_uploads.html:31
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/recent_uploads.html:34
msgid "Resource type"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/recent_uploads.html:89
msgid "More"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/accounts/header_login.html:8
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/accounts/login_user.html:82
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/accounts/register_user.html:86
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/accounts/register_user.html:82
msgid "Sign up"
msgstr ""
@@ -369,7 +416,7 @@ msgid "Log in with %(title)s"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/accounts/login_user.html:46
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/accounts/register_user.html:51
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/accounts/register_user.html:47
msgid "Or"
msgstr ""
@@ -410,8 +457,8 @@ msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/accounts/register_user.html:30
msgid ""
"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)."
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/accounts/register_user.html:32
@@ -420,14 +467,14 @@ msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/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."
"Built on top of TU Graz expertise in managing of the research data from the "
"Graz University of Technology."
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/accounts/register_user.html:48
msgid "Sign up with TUGRAZ "
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/accounts/register_user.html:44
msgid "Sign up with TUGRAZ"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/accounts/register_user.html:65
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/accounts/register_user.html:61
msgid "Sign up with repository credentials"
msgstr ""

View File

@@ -1,15 +1,15 @@
# Translations template for invenio-theme-tugraz.
# Copyright (C) 2023 Graz University of Technology
# Copyright (C) 2024 Graz University of Technology
# This file is distributed under the same license as the
# invenio-theme-tugraz project.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2024.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: invenio-theme-tugraz 4.12.0\n"
"Project-Id-Version: invenio-theme-tugraz 4.12.3\n"
"Report-Msgid-Bugs-To: mojib.wali@tugraz.at\n"
"POT-Creation-Date: 2023-11-20 15:04+0100\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"
@@ -28,84 +28,122 @@ msgid "Repository"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/overview.html:12
#: invenio_theme_tugraz/views.py:80
#: invenio_theme_tugraz/views.py:70
msgid "Overview"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/header.html:49
#: invenio_theme_tugraz/views.py:86
#: invenio_theme_tugraz/views.py:76
msgid "My dashboard"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/423.html:12
msgid "Locked"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/423.html:13
msgid "The resource that is being accessed is locked."
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/accounts/accounts_base.html:26
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/base.html:34
msgid "Invenio"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:10
msgid "Good reasons to use the Repository of the TU Graz"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:13
msgid "Safe"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:10
msgid ""
"your research is stored safely for the future in TU Graz library for as "
"long as TU Graz library exists."
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:13
msgid "Your research results are permanently available."
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:11
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:14
msgid "Trusted"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:11
msgid ""
"built and operated by CERN and OpenAIRE to ensure that everyone can join "
"in Open Science."
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:14
msgid "A service from TU Graz, developed in cooperation with CERN."
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:12
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:15
msgid "Citeable"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:12
msgid ""
"every upload is assigned a Digital Object Identifier (DOI), to make them "
"citable and trackable."
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:15
msgid "Every upload is assigned a Digital Object Identifier (DOI)."
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:13
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:16
msgid "No waiting time"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:13
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:16
msgid ""
"Uploads are made available online as soon as you hit publish, and your "
"DOI is registered within seconds."
"Uploads are made available online as soon as you hit publish. Your DOI is"
" registered within seconds."
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:14
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:17
msgid "Open or closed"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:14
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:17
msgid ""
"Share e.g. anonymized clinical trial data with only medical professionals"
" via our restricted access mode."
"You determine the visibility of your uploads. A restricted access mode is"
" possible."
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:15
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:18
msgid "Versioning"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:15
msgid "Easily update your dataset with our versioning feature."
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:18
msgid "Easily update your dataset with the versioning feature."
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:16
msgid "Usage statisics"
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:19
msgid "Usage statistics"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:16
msgid "All uploads display standards compliant usage statistics"
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:19
msgid "All uploads display standards compliant usage statistics. "
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:19
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/recent_uploads.html:88
msgid "More"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/contact_us.html:10
msgid "Need help?"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/contact_us.html:15
msgid "Contact us"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/contact_us.html:20
msgid "We can help with:"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/contact_us.html:24
msgid "Upload your research results, software, preprints, etc."
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/contact_us.html:25
msgid "Increase upload limit beyond our default policy of 10GB."
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/contact_us.html:26
msgid "Establish contact with data stewards."
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/contact_us.html:27
msgid "Find individual solutions."
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:29
@@ -185,12 +223,21 @@ msgid "to change the font size."
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/frontpage_overview.html:13
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/navbar.html:17
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/overview.html:26
msgid "Research Result"
msgid "Research Results"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/frontpage_overview.html:16
msgid "Description for research result"
msgid "Frontpage: Description for research results"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/frontpage_overview.html:26
msgid "Search for research results"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/frontpage_overview.html:29
msgid "Upload research results"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/frontpage_overview.html:36
@@ -200,16 +247,29 @@ msgid "Publications"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/frontpage_overview.html:39
msgid "Description for publications"
msgid "Frontpage: Description for publications"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/frontpage_overview.html:49
msgid "Search for publications"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/frontpage_overview.html:56
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/navbar.html:27
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/overview.html:70
msgid "OER"
msgid "Educational Resources"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/frontpage_overview.html:59
msgid "Description for open educational resources"
msgid "Frontpage: Description for open educational resources"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/frontpage_overview.html:69
msgid "Search for educational resourses"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/frontpage_overview.html:72
msgid "Upload educational resources"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/accounts/accounts_base.html:61
@@ -231,58 +291,14 @@ msgstr ""
msgid "Communities"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:30
msgid "Need help?"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:34
msgid "Contact us"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:39
msgid "prioritizes all Recent uploads."
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:42
msgid "We can help with:"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:46
msgid "Uploading your research data, software, preprints, etc."
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:47
msgid "One-on-one with"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:47
msgid "supporters."
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:48
msgid "Quota increases beyond our default policy."
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:49
msgid "Scripts for automated uploading of larger datasets."
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:54
msgid "Why use"
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/header.html:49
msgid "Dashboard"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/navbar.html:12
msgid "All"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/navbar.html:17
msgid "Research Results"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/navbar.html:27
msgid "Open Educational Resources"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/navbar.html:78
msgid "TU GRAZ"
msgstr ""
@@ -307,33 +323,49 @@ msgstr ""
msgid "TECHNOLOGY"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/overview.html:31
msgid "Overview: Description for research results"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/overview.html:42
msgid "Overview: Description of Communities"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/overview.html:48
msgid "Requests"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/overview.html:53
msgid "Overview: Description of Requests"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/overview.html:64
msgid "Overview: Description for publications"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/overview.html:75
msgid "Overview: Description for open educational resources"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/recent_uploads.html:11
msgid "Recent uploads"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/recent_uploads.html:15
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/recent_uploads.html:16
msgid "There are no public records to show."
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/recent_uploads.html:26
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/recent_uploads.html:28
msgid "Publication date"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/recent_uploads.html:31
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/recent_uploads.html:34
msgid "Resource type"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/recent_uploads.html:89
msgid "More"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/accounts/header_login.html:8
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/accounts/login_user.html:82
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/accounts/register_user.html:86
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/accounts/register_user.html:82
msgid "Sign up"
msgstr ""
@@ -355,7 +387,7 @@ msgid "Log in with %(title)s"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/accounts/login_user.html:46
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/accounts/register_user.html:51
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/accounts/register_user.html:47
msgid "Or"
msgstr ""
@@ -410,11 +442,11 @@ msgid ""
"the Graz University of Technology."
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/accounts/register_user.html:48
msgid "Sign up with TUGRAZ "
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/accounts/register_user.html:44
msgid "Sign up with TUGRAZ"
msgstr ""
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/accounts/register_user.html:65
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/accounts/register_user.html:61
msgid "Sign up with repository credentials"
msgstr ""

View File

@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
#
# Copyright (C) 2020-2021 Graz University of Technology.
# Copyright (C) 2020-2024 Graz University of Technology.
#
# invenio-theme-tugraz is free software; you can redistribute it and/or
# modify it under the terms of the MIT License; see LICENSE file for more
@@ -65,16 +65,6 @@ def modify_user_dashboard():
"""Modify user dashboard."""
user_dashboard_menu = current_menu.submenu("dashboard")
# order matters, this has to be here, otherwise it want override the orginal
# entry
# this is to buggy, it depends on the load order of the packages which is indeterminate
# user_dashboard_menu.submenu("uploads").register(
# "invenio_app_rdm_users.uploads",
# text=_("Research Results"),
# order=1,
# )
user_dashboard_menu.submenu("overview").register(
"invenio_theme_tugraz.overview",
text=_("Overview"),
@@ -93,7 +83,6 @@ def ui_blueprint(app):
routes = app.config.get("TUG_ROUTES")
blueprint.add_url_rule(routes["index"], view_func=index)
blueprint.add_url_rule(routes["comingsoon"], view_func=comingsoon)
return blueprint
@@ -113,6 +102,6 @@ def index():
)
def comingsoon():
"""Comingsoon."""
return render_template("invenio_theme_tugraz/comingsoon.html")
def locked(e):
"""Error page for status locked."""
return render_template("invenio_theme_tugraz/423.html")

View File

@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
#
# Copyright (C) 2020-2021 Graz University of Technology.
# Copyright (C) 2020-2024 Graz University of Technology.
#
# invenio-theme-tugraz is free software; you can redistribute it and/or
# modify it under the terms of the MIT License; see LICENSE file for more
@@ -27,6 +27,7 @@ classifiers =
Topic :: Software Development :: Libraries :: Python Modules
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Development Status :: 3 - Alpha
[options]
@@ -42,12 +43,11 @@ install_requires =
[options.extras_require]
tests =
pytest-black-ng>=0.4.0
Sphinx>=4.5.0
pytest-invenio>=2.1.0,<3.0.0
invenio-app>=1.3.4,<1.4.0
opensearch2 =
invenio-search[opensearch2]>=2.1.0,<3.0.0
pytest-black-ng>=0.4.0
pytest-invenio>=2.1.0,<3.0.0
Sphinx>=4.5.0
[options.entry_points]
invenio_base.apps =