*** Wartungsfenster jeden ersten Mittwoch vormittag im Monat ***

Skip to content
Snippets Groups Projects
Commit e82056e6 authored by Moser, Maximilian's avatar Moser, Maximilian
Browse files

Replace individual successive gettext calls with translation blocks

parent 0da6921e
No related branches found
No related tags found
1 merge request!166📄 Footer: add 'About' page
......@@ -30,21 +30,25 @@
</ul>
</p>
<p>
{{ _("The %(sitename)s Repository empowers researchers to collaborate effectively, ensures transparency, and facilitates data reuse, contributing to the global Open Science movement and research reproducibility.", sitename=config.THEME_SITENAME) }}
{{ _("Integrated with modern tools and workflows, the repository offers a seamless experience from submission to retrieval.") }}
{{ _("It satisfies institutional and legal requirements for data storage, long-term preservation, and sharing.") }}
{{ _("%(sitename)s is TU Wien's central hub for research data, currently hosting %(record_count)s records", sitename=config.THEME_SITENAME, record_count=record_count()) }}.
{%- trans trimmed sitename=config.THEME_SITENAME, record_count=record_count() %}
The {{ sitename }} Repository empowers researchers to collaborate effectively, ensures transparency, and facilitates data reuse, contributing to the global Open Science movement and research reproducibility.
Integrated with modern tools and workflows, the repository offers a seamless experience from submission to retrieval.
It satisfies institutional and legal requirements for data storage, long-term preservation, and sharing.
{{ sitename }} is TU Wien's central hub for research data, currently hosting {{ record_count }} records
{%- endtrans %}
</p>
<h2>{{ _("Programmatic access") }}</h2>
<p>
{{ _("%(sitename)s is both a hub for storing research data and a powerful programmable platform.", sitename=config.THEME_SITENAME) }}
{{ _("Our extensive REST APIs allow researchers and developers to integrate repository functions into their own systems and workflows.") }}
{{ _("Our APIs range from querying metadata and running advanced searchers to automating data ingestion.") }}
{{ _("Standardized endpoints and consistent response structures help you quickly incorporate our repository's capabilities into your custom applications, dashboards, or data analysis pipelines.") }}
{{ _("Security and ease-of-use are at the forefront of our API design.") }}
{{ _("Data altering operations, like creating or updating records, can be done with token-based authentication.") }}
{{ _("Read-only operations, like retrieving metadata or executing search queries, are openly accessible, in line with the principles of transparent access to research data.") }}
{%- trans trimmed sitename=config.THEME_SITENAME %}
{{ sitename }} is both a hub for storing research data and a powerful programmable platform.
Our extensive REST APIs allow researchers and developers to integrate repository functions into their own systems and workflows.
Our APIs range from querying metadata and running advanced searchers to automating data ingestion.
Standardized endpoints and consistent response structures help you quickly incorporate our repository's capabilities into your custom applications, dashboards, or data analysis pipelines.
Security and ease-of-use are at the forefront of our API design.
Data altering operations, like creating or updating records, can be done with token-based authentication.
Read-only operations, like retrieving metadata or executing search queries, are openly accessible, in line with the principles of transparent access to research data.
{%- endtrans %}
</p>
<p>
{%- trans trimmed api_page_link = url_for("invenio_theme_tuw.tuw_about_api") %}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment