[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. # This file is distributed under the same license as the PROJECT project.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2024. # FIRST AUTHOR <EMAIL@ADDRESS>, 2024.
# #
#, fuzzy
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PROJECT VERSION\n" "Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\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" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -16,8 +17,42 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.16.0\n" "Generated-By: Babel 2.16.0\n"
#: templates/base.html:91 templates/base.html:127 templates/base.html:159 #: templates/partials/awards.html:5
#: templates/base.html:183 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" msgid "Home"
msgstr "" 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 %} {% if awards %}
<section class="section"> <section class="section">
<header> <header>
<h2 class='section-title'>{{ language.titles.awards }}</h2> <h2 class='section-title'>{% trans %}resume award title{% endtrans %}</h2>
</header> </header>
<section id="awards"> <section id="awards">
{% for award in awards %} {% for award in awards %}

View File

@ -2,7 +2,7 @@
{% if education %} {% if education %}
<section class="section"> <section class="section">
<header> <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> </header>
<section id="education"> <section id="education">

View File

@ -2,7 +2,7 @@
{% if interests %} {% if interests %}
<section class="section"> <section class="section">
<header> <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> </header>
<section id="interests"> <section id="interests">
{% for interest in interests %} {% for interest in interests %}

View File

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

View File

@ -2,7 +2,7 @@
{% if projects %} {% if projects %}
<section class="section"> <section class="section">
<header> <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> </header>
<section id="projects"> <section id="projects">
{% for project in projects %} {% for project in projects %}

View File

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

View File

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

View File

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

View File

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