2ff06ee7ae
Major Features:
- Internationalization (i18n) with auto-detection for ES/EN/PT
- Mobile-first responsive design for Studio and Experience
- Multi-model AI configuration (llama3.2:3b, qwen3.5:9b, gpt-oss:latest)
- Course language configuration (auto-detect or fixed per course)
Backend Changes:
- shared/common: ModelType enum for intelligent model selection
- LMS: log_ai_usage function migration (fix chat tutor 500 error)
- LMS/CMS: course language config fields (language_setting, fixed_language)
- LMS: /courses/{id}/language-config endpoint for language detection
Frontend Changes:
- Experience: Enhanced i18n with browser language detection
- Experience: Audio recording with HTTPS check and error handling
- Studio: Memory game with unique pair IDs and debug logging
- Studio: Expanded translations (250+ keys for ES, EN, PT)
- Both: Language selector in headers (mobile responsive)
Documentation:
- AI_MODELS_CONFIG.md: Multi-model configuration guide
- RESPONSIVIDAD_GUIA.md: Mobile-first design patterns
- I18N_RESPONSIVIDAD_IMPLEMENTACION.md: Implementation details
- DEBUG_AUDIO_RECORDING.md: Audio troubleshooting guide
- DEBUG_MEMORY_GAME.md: Memory game debugging steps
Bug Fixes:
- Fix chat tutor 500 error (missing log_ai_usage function)
- Fix audio recording (HTTPS check, browser compatibility)
- Fix memory game pair IDs (unique ID generation)
- Fix HotspotBlock TypeScript errors
Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
102 lines
3.0 KiB
TypeScript
102 lines
3.0 KiB
TypeScript
"use client";
|
|
|
|
import React, { createContext, useContext, useState, useEffect } from 'react';
|
|
import en from '../lib/locales/en.json';
|
|
import es from '../lib/locales/es.json';
|
|
import pt from '../lib/locales/pt.json';
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
const translations: Record<string, any> = { en, es, pt };
|
|
|
|
// Idiomas soportados
|
|
export const SUPPORTED_LANGUAGES = ['es', 'en', 'pt'] as const;
|
|
export type SupportedLanguage = typeof SUPPORTED_LANGUAGES[number];
|
|
|
|
interface I18nContextType {
|
|
language: string;
|
|
setLanguage: (lang: string) => void;
|
|
t: (path: string) => string;
|
|
detectBrowserLanguage: () => string;
|
|
}
|
|
|
|
const I18nContext = createContext<I18nContextType | undefined>(undefined);
|
|
|
|
/**
|
|
* Detecta el idioma del navegador del usuario
|
|
*/
|
|
function detectBrowserLanguage(): string {
|
|
if (typeof navigator === 'undefined') return 'es';
|
|
|
|
const browserLanguages = navigator.languages || [navigator.language || (navigator as any).userLanguage];
|
|
|
|
for (const browserLang of browserLanguages) {
|
|
if (SUPPORTED_LANGUAGES.includes(browserLang as SupportedLanguage)) {
|
|
return browserLang;
|
|
}
|
|
|
|
const langCode = browserLang.split('-')[0].toLowerCase();
|
|
if (SUPPORTED_LANGUAGES.includes(langCode as SupportedLanguage)) {
|
|
return langCode;
|
|
}
|
|
}
|
|
|
|
return 'es';
|
|
}
|
|
|
|
export function I18nProvider({ children }: { children: React.ReactNode }) {
|
|
const [language, setLanguageState] = useState('es');
|
|
const [isInitialized, setIsInitialized] = useState(false);
|
|
|
|
useEffect(() => {
|
|
const savedLang = localStorage.getItem('studio_language');
|
|
|
|
if (savedLang && SUPPORTED_LANGUAGES.includes(savedLang as SupportedLanguage)) {
|
|
setLanguageState(savedLang);
|
|
} else {
|
|
const detectedLang = detectBrowserLanguage();
|
|
setLanguageState(detectedLang);
|
|
localStorage.setItem('studio_language', detectedLang);
|
|
}
|
|
|
|
setIsInitialized(true);
|
|
}, []);
|
|
|
|
const setLanguage = (lang: string) => {
|
|
if (SUPPORTED_LANGUAGES.includes(lang as SupportedLanguage)) {
|
|
setLanguageState(lang);
|
|
localStorage.setItem('studio_language', lang);
|
|
}
|
|
};
|
|
|
|
const t = (path: string): string => {
|
|
const keys = path.split('.');
|
|
let result = translations[language] || translations['en'];
|
|
|
|
for (const key of keys) {
|
|
if (result[key]) {
|
|
result = result[key];
|
|
} else {
|
|
return path;
|
|
}
|
|
}
|
|
|
|
return typeof result === 'string' ? result : path;
|
|
};
|
|
|
|
return (
|
|
<I18nContext.Provider value={{ language, setLanguage, t, detectBrowserLanguage }}>
|
|
{children}
|
|
</I18nContext.Provider>
|
|
);
|
|
}
|
|
|
|
export function useTranslation() {
|
|
const context = useContext(I18nContext);
|
|
if (context === undefined) {
|
|
throw new Error('useTranslation must be used within an I18nProvider');
|
|
}
|
|
return context;
|
|
}
|
|
|
|
export { detectBrowserLanguage };
|