i18n Projects.vue

This commit is contained in:
Emi Boucly 2025-06-10 17:19:55 +02:00
parent af51cce5bb
commit ecb35bf14f
2 changed files with 21 additions and 5 deletions

View file

@ -11,7 +11,7 @@ import {RouterLink} from "vue-router";
<img class="rounded card img" src="../components/icons/Illustration3.png" alt="makeyourownapp-jam"> <img class="rounded card img" src="../components/icons/Illustration3.png" alt="makeyourownapp-jam">
</a> </a>
<br> <br>
<span>Make your own app! game jam</span> <span>{{ $t('projects.yawca') }}</span>
</div> </div>
<div> <div>
@ -19,7 +19,7 @@ import {RouterLink} from "vue-router";
<img class="rounded card" src="../components/images/sae302-screen.png" alt="sae302-chat" width="200"> <img class="rounded card" src="../components/images/sae302-screen.png" alt="sae302-chat" width="200">
</RouterLink> </RouterLink>
<br> <br>
<span>Communication app</span> <span>{{ $t('projects.sae302') }}</span>
</div> </div>
<div> <div>
@ -27,21 +27,21 @@ import {RouterLink} from "vue-router";
<img class="rounded card" src="../components/images/website.png" alt="website" width="200"> <img class="rounded card" src="../components/images/website.png" alt="website" width="200">
</a> </a>
<br> <br>
<span>Current website</span> <span>{{ $t('projects.website') }}</span>
</div> </div>
<div> <div>
<RouterLink to="/sae201" class="nav-li"> <RouterLink to="/sae201" class="nav-li">
<img class="rounded card" src="../components/images/schema_reseau.png" alt="sae201" width="200"> <img class="rounded card" src="../components/images/schema_reseau.png" alt="sae201" width="200">
</RouterLink> </RouterLink>
<br> <br>
<span>Network Project</span> <span>{{ $t('projects.sae201') }}</span>
</div> </div>
<div> <div>
<RouterLink to="/sae301" class="nav-li"> <RouterLink to="/sae301" class="nav-li">
<img class="rounded card" src="../components/images/sae301-scheme.jpg" alt="sae301" width="200"> <img class="rounded card" src="../components/images/sae301-scheme.jpg" alt="sae301" width="200">
</RouterLink> </RouterLink>
<br> <br>
<span>Electronics</span> <span>{{ $t('projects.sae301') }}</span>
</div> </div>

View file

@ -113,6 +113,13 @@ const i18n = createI18n({
feelingstitle: 'My feelings', feelingstitle: 'My feelings',
feelings: ' It\'s the project I loved the most this year. Having an appetite for Linux systems and their manipulation, I enjoyed working on this project.' feelings: ' It\'s the project I loved the most this year. Having an appetite for Linux systems and their manipulation, I enjoyed working on this project.'
}, },
projects: {
yawca: 'Make your own app! game jam',
sae302: 'Communication app',
website: 'Current website',
sae201: 'Network project',
sae301: 'Electronics project'
}
@ -227,6 +234,15 @@ const i18n = createI18n({
feelings: ' C\'est la SAÉ que j\'ai préféré de l\'année. Ayant une appétence pour les systèmes Linux et leur manipulation, j\'ai beaucoup apprécié travailler sur ce projet. ' feelings: ' C\'est la SAÉ que j\'ai préféré de l\'année. Ayant une appétence pour les systèmes Linux et leur manipulation, j\'ai beaucoup apprécié travailler sur ce projet. '
}, },
projects: {
yawca: 'Game jam Make your own app!',
sae302: 'Applications communicantes',
website: 'Site actuel',
sae201: 'Projet réseau',
sae301: 'Projet d\'électronique'
}