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

@@ -1,5 +1,4 @@
<template>
<div class="relative">
<!-- Banner Container with mouse events -->
<div
@@ -35,7 +34,6 @@
></banner-editor>
</template>
</v-dialog>
</template>
<script setup>
@@ -43,11 +41,11 @@ import BannerEditor from "@/views/creators/BannerEditor.vue";
import {computed, ref} from "vue";
import {useBrandingStore} from "@/stores/brandingStore.js";
import {useAuthStore} from "@/stores/authStore.js";
import { useTranslations } from '@/translations/translations';
import { useI18n } from 'vue-i18n';
const authStore = useAuthStore();
const brandingStore = useBrandingStore();
const t = useTranslations();
const { t } = useI18n();
// State
const showTint = ref(false);
@@ -61,12 +59,24 @@ const openBannerEditor = () => {
const isCurrentCreator = computed(() => {
return authStore.userId === brandingStore.value.id;
});
</script>
<style scoped>
.banner {
@apply border-b border-solid border-hTertiary;
}
</style>
</style>
<i18n>
{
"en": {
"alt": "Creator banner"
},
"fr": {
"alt": "Bannière du créateur"
},
"es": {
"alt": "Banner del creador"
}
}
</i18n>