Class_generator/js/content/test-minimal.js
StillHammer 475006e912 Add Word Discovery game with auto-play TTS and Settings system
- New Word Discovery game with image support and practice phases
- Auto-play TTS on word appearance with speed control (0.7x-1.1x)
- Complete Settings page with TTS controls and debug interface
- Language standardization with BCP 47 codes (en-US, zh-CN, fr-FR)
- Media fallback handling for missing images and audio
- Settings Manager with voice selection and debug tools

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-19 14:39:08 +08:00

16 lines
399 B
JavaScript

// === CONTENU DE TEST MINIMAL ===
window.ContentModules = window.ContentModules || {};
window.ContentModules.TestMinimal = {
id: "test-minimal",
name: "Test Minimal (2 mots)",
description: "Contenu minimal pour tester la compatibilité - seulement 2 mots",
difficulty: "easy",
language: "en-US",
vocabulary: {
"hello": "bonjour",
"world": "monde"
}
};