diff --git a/frontend/src/components/Projects.vue b/frontend/src/components/Projects.vue
index 2363e9e..c3134ca 100644
--- a/frontend/src/components/Projects.vue
+++ b/frontend/src/components/Projects.vue
@@ -11,7 +11,7 @@ import {RouterLink} from "vue-router";
- Make your own app! game jam
+ {{ $t('projects.yawca') }}
@@ -19,7 +19,7 @@ import {RouterLink} from "vue-router";
-
Communication app
+
{{ $t('projects.sae302') }}
@@ -27,21 +27,21 @@ import {RouterLink} from "vue-router";
-
Current website
+
{{ $t('projects.website') }}
-
Network Project
+
{{ $t('projects.sae201') }}
-
Electronics
+
{{ $t('projects.sae301') }}
diff --git a/frontend/src/i18n/index.ts b/frontend/src/i18n/index.ts
index 7929237..d0d988a 100644
--- a/frontend/src/i18n/index.ts
+++ b/frontend/src/i18n/index.ts
@@ -113,6 +113,13 @@ const i18n = createI18n({
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.'
},
+ 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. '
},
+ projects: {
+ yawca: 'Game jam Make your own app!',
+ sae302: 'Applications communicantes',
+ website: 'Site actuel',
+ sae201: 'Projet réseau',
+ sae301: 'Projet d\'électronique'
+ }
+
+