P.S: not everything needs to go in the translation section of your config.toml
. Just the things that you use a lot, across all your sections and pages. So stuff for nav, the name of your site, etc…
With that in mind there’s one other thing you need to know. I’ll use the hero section of your theme as an example.
<!-- index.html -->
<h3 class="title-text">
<b>Kalpa</b> is an atomic and immutable linux distribution offering the Plasma Desktop
</h3>
For this you wouldn’t put it in translations. Instead this is how you would do it
<!-- index.html -->
<h3 class="title-text">
{% if lang == 'en' %}
<b>Kalpa</b> is an atomic and immutable linux distribution offering the Plasma Desktop
{% elif lang == 'es' %}
<b>Kalpa</b> es una distribuzion atomica y immutabile para la Plasma Dekstop
{% endif %}
</h3>
Hopefully that helps. Good luck!