Is hutopy finally trilangual

This commit is contained in:
2025-04-19 01:56:59 -04:00
parent af71c5e952
commit b1681252cc
140 changed files with 5441 additions and 1085 deletions

View File

@@ -28,9 +28,9 @@
<script setup>
import {ref} from 'vue';
import {useClient} from "@/plugins/api.js";
import { useTranslations } from "@/translations/translations";
import { useI18n } from 'vue-i18n';
const t = useTranslations();
const { t } = useI18n();
const props = defineProps({
email: {
required: true,
@@ -66,4 +66,21 @@ const cancel = () => {
};
</script>
<i18n>
{
"en": {
"title": "Change your Email",
"label": "Your email"
},
"fr": {
"title": "Changez votre Courriel",
"label": "Votre email"
},
"es": {
"title": "Cambia tu correo electrónico",
"label": "Tu correo electrónico"
}
}
</i18n>