[i18n] the titles for the resume template are in the .po files

This commit is contained in:
max/sooulix 2024-08-15 00:58:08 +02:00
parent 04762f8e4f
commit dc1d98b7a2
10 changed files with 46 additions and 12 deletions

View File

@ -3,11 +3,12 @@
# This file is distributed under the same license as the PROJECT project.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2024.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-08-14 18:16+0200\n"
"POT-Creation-Date: 2024-08-15 00:56+0200\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"
@ -16,8 +17,42 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.16.0\n"
#: templates/base.html:91 templates/base.html:127 templates/base.html:159
#: templates/base.html:183
#: templates/partials/awards.html:5
msgid "resume award title"
msgstr ""
#: templates/partials/breadcrumbs.html:12
#: templates/partials/breadcrumbs.html:48
#: templates/partials/breadcrumbs.html:80
#: templates/partials/breadcrumbs.html:104 templates/resume.html:28
msgid "Home"
msgstr ""
#: templates/partials/education.html:5
msgid "resume education title"
msgstr ""
#: templates/partials/interests.html:5
msgid "resume interest title"
msgstr ""
#: templates/partials/languages.html:5
msgid "resume language title"
msgstr ""
#: templates/partials/projects.html:5
msgid "resume project title"
msgstr ""
#: templates/partials/publications.html:5
msgid "resume publication title"
msgstr ""
#: templates/partials/references.html:5
msgid "resume reference title"
msgstr ""
#: templates/partials/skills.html:5
msgid "resume skill title"
msgstr ""

View File

@ -2,7 +2,7 @@
{% if awards %}
<section class="section">
<header>
<h2 class='section-title'>{{ language.titles.awards }}</h2>
<h2 class='section-title'>{% trans %}resume award title{% endtrans %}</h2>
</header>
<section id="awards">
{% for award in awards %}

View File

@ -2,7 +2,7 @@
{% if education %}
<section class="section">
<header>
<h2 class='section-title'>{{ language.titles.education }} <span class="item-count">({{ education | length }})</span></h2>
<h2 class='section-title'>{% trans %}resume education title{% endtrans %} <span class="item-count">({{ education | length }})</span></h2>
</header>
<section id="education">

View File

@ -2,7 +2,7 @@
{% if interests %}
<section class="section">
<header>
<h2 class='section-title' class='section-title'>{{ language.titles.interests }}</h2>
<h2 class='section-title' class='section-title'>{% trans %}resume interest title{% endtrans %}</h2>
</header>
<section id="interests">
{% for interest in interests %}

View File

@ -2,7 +2,7 @@
{% if languages %}
<section class="section">
<header>
<h2 class='section-title'>{{ language.titles.languages }}</h2>
<h2 class='section-title'>{% trans %}resume language title{% endtrans %}</h2>
</header>
<section id="languages">
{% for language in languages %}

View File

@ -2,7 +2,7 @@
{% if projects %}
<section class="section">
<header>
<h2 class='section-title'>{{ language.titles.projects }} <span class="item-count">({{ projects | length }})</span></h2>
<h2 class='section-title'>{% trans %}resume project title{% endtrans %} <span class="item-count">({{ projects | length }})</span></h2>
</header>
<section id="projects">
{% for project in projects %}

View File

@ -2,7 +2,7 @@
{% if publications %}
<section class="section">
<header>
<h2 class='section-title'>{{ language.titles.publications }}</h2>
<h2 class='section-title'>{% trans %}resume publication title{% endtrans %}</h2>
</header>
<section id="publications">
{% for publication in publications %}

View File

@ -2,7 +2,7 @@
{% if references %}
<section class="section">
<header>
<h2 class='section-title'>{{ language.titles.references }}</h2>
<h2 class='section-title'>{% trans %}resume reference title{% endtrans %}</h2>
</header>
<section id="references">
{% for reference in references %}

View File

@ -2,7 +2,7 @@
{% if skills %}
<section class="section">
<header>
<h2 class='section-title'>{{ language.titles.skills }}</h2>
<h2 class='section-title'>{% trans %}resume skill title{% endtrans %}</h2>
</header>
<section id="skills">
{% for skill in skills %}

View File

@ -24,7 +24,6 @@
prose-img:rounded-md
">
<!-- <div class="aspect-w-16 aspect-h-9 mx-auto"></div> CSS placeholder -->
{% set language = page.language %}
{% set utils = page.utils %}
{% trans %}Home{% endtrans %}