From ecb35bf14f97237952549028ff8f70350168208e Mon Sep 17 00:00:00 2001 From: Emi Boucly Date: Tue, 10 Jun 2025 17:19:55 +0200 Subject: [PATCH] i18n Projects.vue --- frontend/src/components/Projects.vue | 10 +++++----- frontend/src/i18n/index.ts | 16 ++++++++++++++++ 2 files changed, 21 insertions(+), 5 deletions(-) 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"; makeyourownapp-jam
- Make your own app! game jam + {{ $t('projects.yawca') }}
@@ -19,7 +19,7 @@ import {RouterLink} from "vue-router"; sae302-chat
- Communication app + {{ $t('projects.sae302') }}
@@ -27,21 +27,21 @@ import {RouterLink} from "vue-router"; website
- Current website + {{ $t('projects.website') }}
sae201
- Network Project + {{ $t('projects.sae201') }}
sae301
- 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' + } + +