diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2020-09-06 13:32:32 -0400 |
|---|---|---|
| committer | Andrew Lee <alee14498@protonmail.com> | 2020-09-06 13:32:32 -0400 |
| commit | 9113a265ba23892b87815f0dcacf31cef2694c4d (patch) | |
| tree | 7646289f9c90ca77201ffdfded254f1b15f5a061 /pages/projects | |
| parent | bedae60dd91df3c775e1f2486dd26a73450db846 (diff) | |
| download | personal-website-9113a265ba23892b87815f0dcacf31cef2694c4d.tar.gz personal-website-9113a265ba23892b87815f0dcacf31cef2694c4d.tar.bz2 personal-website-9113a265ba23892b87815f0dcacf31cef2694c4d.zip | |
i18n Support; French support
Diffstat (limited to 'pages/projects')
| -rw-r--r-- | pages/projects/index.vue | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/pages/projects/index.vue b/pages/projects/index.vue index 745607c..d5e7605 100644 --- a/pages/projects/index.vue +++ b/pages/projects/index.vue @@ -1,17 +1,17 @@ <template> <v-card> <header id="showcase"> - <h1 class="display-3 animate__animated animate__fadeIn">Projects</h1> - <h1 class="animate__animated animate__fadeIn">My current and past projects goes here.</h1> + <h1 class="display-3 animate__animated animate__fadeIn">{{ $t('ProjectsText') }}</h1> + <h1 class="animate__animated animate__fadeIn">{{ $t('ProjectsSubtitle') }}</h1> </header> <v-container> <v-row> <v-col cols="12"> <v-card class="green darken-4"> <v-card-title>Alee Productions</v-card-title> - <v-card-text>A future company that I'm planning on running.</v-card-text> + <v-card-text>{{ $t('ProjectsALP') }}</v-card-text> <v-card-actions> - <v-btn text normal target="_blank" href="https://alee-productions.xyz">Website</v-btn> + <v-btn text normal target="_blank" href="https://alee-productions.xyz">{{ $t('ProjectsWebsite') }}</v-btn> <v-btn text normal target="_blank" href="https://github.com/aleeproductions">GitHub</v-btn> <v-btn text normal target="_blank" href="https://twitter.com/aleeproductions">Twitter</v-btn> </v-card-actions> @@ -19,7 +19,7 @@ <br> <v-card class="green darken-4"> <v-card-title>AleeBot</v-card-title> - <v-card-text>An all-in-one bot that's made from the Discord.JS api.</v-card-text> + <v-card-text>{{ $t('ProjectsAleeBot') }}</v-card-text> <v-card-actions> <v-btn text normal target="_blank" href="https://github.com/aleeproductions/AleeBot">GitHub</v-btn> </v-card-actions> @@ -27,7 +27,7 @@ <br> <v-card class="green darken-4"> <v-card-title>DLMP3</v-card-title> - <v-card-text>A Discord bot that plays local mp3 audio tracks.</v-card-text> + <v-card-text>{{ $t('ProjectsDLMP3') }}</v-card-text> <v-card-actions> <v-btn text normal target="_blank" href="https://github.com/Alee14/DLMP3">GitHub</v-btn> </v-card-actions> @@ -35,23 +35,23 @@ <br> <v-card class="green darken-4"> <v-card-title>First Website</v-card-title> - <v-card-text>The first website that "I" in 2013.</v-card-text> + <v-card-text>{{ $t('ProjectsFirstWebsite') }}</v-card-text> <v-card-actions> - <v-btn text normal target="_blank" href="https://alee14.github.io/first-website">Website</v-btn> + <v-btn text normal target="_blank" href="https://alee14.github.io/first-website">{{ $t('ProjectsWebsite') }}</v-btn> </v-card-actions> </v-card> <br> <v-card class="green darken-4"> <v-card-title>Weather Web Page</v-card-title> - <v-card-text>The second website that I worked on as an assignment. Originally hosted in Mozilla Thimble and started in 2016.</v-card-text> + <v-card-text>{{ $t('ProjectsWWP') }}</v-card-text> <v-card-actions> - <v-btn text normal target="_blank" href="https://alee14.github.io/weather-website">Website</v-btn> + <v-btn text normal target="_blank" href="https://alee14.github.io/weather-website">{{ $t('ProjectsWebsite') }}</v-btn> </v-card-actions> </v-card> <br> <v-card class="green darken-4"> <v-card-title>Raspberry Pi OS Menu</v-card-title> - <v-card-text>A full screen menu. Programmed for the Raspberry Pi.</v-card-text> + <v-card-text>{{ $t('ProjectsRPIMenu') }}</v-card-text> <v-card-actions> <v-btn text normal target="_blank" href="https://github.com/Alee14/RPi-Menu">GitHub</v-btn> </v-card-actions> |
