feat: Implement internationalization

This commit is contained in:
gpt-engineer-app[bot]
2025-10-11 02:31:31 +00:00
parent 27b0e23a98
commit 44979cc34e
5 changed files with 332 additions and 5 deletions

View File

@@ -4,6 +4,7 @@ import { useAuth } from '@/contexts/AuthContext';
import { useLanguage } from '@/contexts/LanguageContext';
import DashboardStyles from '@/components/layouts/DashboardStyles';
import CurrencySelector from '@/components/CurrencySelector';
import LanguageSelector from '@/components/LanguageSelector';
import {
Home,
Plus,
@@ -480,6 +481,9 @@ const DashboardLayout = ({ children }: { children: React.ReactNode }) => {
{/* Right Side */}
<div className="flex items-center space-x-4">
{/* Language Selector */}
<LanguageSelector />
{/* Currency Selector */}
<CurrencySelector />