Add localization support for various components, including dialogs and views, in English, Spanish, and French. Implemented translations for user profile management, payment processes, and creator functionalities. Updated existing components to utilize the new translation system.

This commit is contained in:
2025-04-18 04:21:52 -04:00
parent a559611e04
commit d6c3bd7fa4
137 changed files with 1230 additions and 614 deletions

View File

@@ -11,7 +11,7 @@
<img
class="w-[990px] h-[330px] banner object-cover"
:src="brandingStore.value?.images?.banner ?? '/images/placeholders/banner.png'"
alt="Profile Banner"
:alt="t('alt')"
>
<!-- Tint Effect -->
<div
@@ -43,9 +43,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';
const authStore = useAuthStore();
const brandingStore = useBrandingStore();
const t = useTranslations();
// State
const showTint = ref(false);