mirror of
https://github.com/Akomry/website.git
synced 2025-12-06 08:43:53 +00:00
i18n Sae302View.vue
This commit is contained in:
parent
d17ac9d161
commit
ec69f5f57c
2 changed files with 39 additions and 15 deletions
|
|
@ -76,7 +76,21 @@ const i18n = createI18n({
|
|||
|
||||
linktree: 'Want a linktree? Have one.'
|
||||
|
||||
},
|
||||
sae302: {
|
||||
title: "What is SAE302?",
|
||||
body1: ' Basically, I had to recreate a communication app using JavaFX. From the very basics, I had to use SceneBuilder to create our graphical environment, then create the whole controller stack using callbacks. I then wrote a TCP server and client, and incorporated them in the client app. Even though we were guided through this project, only a few managed to finish it.',
|
||||
body21: 'We also had to use git versioning, and the whole code is available to download on ',
|
||||
body22: '. I used the Jetbrains\' IDE, IntelliJ.',
|
||||
learntitle: 'What i learnt',
|
||||
learn1: 'How to code in Java and in Object-Oriented Programming',
|
||||
learn2: 'How to create a graphical application using JavaFX',
|
||||
learn3: 'How to communicate between apps using TCP',
|
||||
feelingstitle: 'My feelings',
|
||||
feelings: 'My favorite project of the year, again. It was fun to develop such an app, and I was thrilled to finally code in Java and/or OOP.'
|
||||
|
||||
}
|
||||
|
||||
},
|
||||
fr: {
|
||||
nav: {
|
||||
|
|
@ -149,7 +163,21 @@ const i18n = createI18n({
|
|||
telecom: 'J\'étudie les télécommunications, donc évidemment que j\'en ai des connaissances et de l\'intérêt. Je prévoie de faire des pédales de guitares (une pédale d\'overdrive ça a l\'air tellement simple à faire, vraiment juste des filtres LC) et peut être un synthétiseur modulaire MOOD si je trouve un jour la motivation d\'en faire un. Je connais les bases sur les modulations d\'amplitude, de fréquence, les MAQ, les analyses de spectre, la fibre optique, l\'électronique...Et j\'espère pouvoir en apprendre plus :D ',
|
||||
|
||||
linktree: 'Tu veux un linktree ? Tiens, cadeau.'
|
||||
}
|
||||
},
|
||||
sae302: {
|
||||
title: "Qu'est-ce que la SAE302?",
|
||||
body1: ' Basiquement, j\'ai du recréer une application de communication en utilisant JavaFX. À partir des bases, j\'ai utilisé SceneBuilder pour créer l\'environnement graphique (FXML), puis j\'ai écrit les callbacks du contrôleur. J\'ai ensuite développé le serveur et le client TCP, que j\'ai incorporé dans l\'application. Même si on a été guidés dans le projet, seuls quelques uns ont réussi à le finir.',
|
||||
body21: 'On a aussi utilisé du versionnement Git, et le code est disponible au téléchargement sur ',
|
||||
body22: '. J\'ai utilisé l\'IDE de Jetbrains, IntelliJ.',
|
||||
learntitle: 'Ce que j\'ai appris',
|
||||
learn1: 'Comment coder en Java et en Programmation Orientée Objet',
|
||||
learn2: 'Comment créer une application graphique avec JavaFX',
|
||||
learn3: 'Comment communiquer entre deux applications via TCP',
|
||||
feelingstitle: 'Mon ressenti',
|
||||
feelings: 'Encore mon projet préféré de l\'année. C\'était fun de développer ce genre d\'application, et j\'étais excitée de pouvoir coder en Java/POO.'
|
||||
|
||||
},
|
||||
|
||||
}
|
||||
}
|
||||
})
|
||||
|
|
|
|||
|
|
@ -5,13 +5,10 @@
|
|||
<template>
|
||||
<div class="margin">
|
||||
|
||||
<h2>What is SAE302?</h2>
|
||||
<h2>{{$t('sae302.title')}}</h2>
|
||||
<div class="grid">
|
||||
<p class="marginauto">
|
||||
Basically, I had to recreate a communication app using JavaFX.
|
||||
From the very basics, I had to use SceneBuilder to create our graphical environment, then create the whole
|
||||
controller stack using callbacks. I then wrote a TCP server and client, and incorporated them in the client app.
|
||||
Even though we were guided through this project, only a few managed to finish it.
|
||||
{{$t('sae302.body1')}}
|
||||
</p>
|
||||
<img class="marginauto" src="../components/images/sae302-screen.png" alt="app-screen" width="500">
|
||||
</div>
|
||||
|
|
@ -19,25 +16,24 @@
|
|||
|
||||
<div class="grid">
|
||||
<img class="marginauto" src="../components/images/sae302-intellij.png" alt="intellij" width="700">
|
||||
<p class="marginauto">We also had to use git versioning, and the whole code is available to download on
|
||||
<a href="https://github.com/Akomry/sae302_applicom">GitHub</a>. I used the IntelliJ IDE.</p>
|
||||
<p class="marginauto">{{$t('sae302.body21')}}
|
||||
<a href="https://github.com/Akomry/sae302_applicom">GitHub</a>{{$t('sae302.body22')}}</p>
|
||||
</div>
|
||||
<br>
|
||||
|
||||
<div class="grid">
|
||||
<div>
|
||||
<h2>What I learnt</h2>
|
||||
<h2>{{$t('sae302.learntitle')}}</h2>
|
||||
<ul>
|
||||
<li>How to code in Java and in Object-Oriented Programming</li>
|
||||
<li>How to create a graphical application using JavaFX</li>
|
||||
<li>How to communicate between to apps using TCP</li>
|
||||
<li>{{$t('sae302.learn1')}}</li>
|
||||
<li>{{$t('sae302.learn2')}}</li>
|
||||
<li>{{$t('sae302.learn3')}}</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h2>My feelings</h2>
|
||||
<h2>{{$t('sae302.feelingstitle')}}</h2>
|
||||
<p>
|
||||
My favorite project of the year, again. It was fun to develop such an app, and I was thrilled to finally code in
|
||||
Java and/or OOP.
|
||||
{{$t('sae302.feelings')}}
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue