. ├── LICENSE ├── README.md ├── README.pdf ├── Santiago_cathedral_2021_Sunset.jpg ├── anki_exporter.py ├── app.icns ├── app_icon.iconset │   ├── icon_128x128.png │   ├── icon_128x128@2x.png │   ├── icon_16x16.png │   ├── icon_16x16@2x.png │   ├── icon_256x256.png │   ├── icon_256x256@2x.png │   ├── icon_32x32.png │   ├── icon_32x32@2x.png │   ├── icon_512x512.png │   └── icon_512x512@2x.png ├── aula_int_plus_1_glos_en_alfa.pdf ├── base_icon.png ├── core │   ├── __init__.py │   ├── asset_generator.py │   ├── audio_engine.py │   ├── bulk_importer.py │   ├── clean_glossary.py │   └── phrase_manager.py ├── database.py ├── doc │   ├── Notes.md │   ├── Notes.pdf │   └── images ├── docling_output.md ├── exported_phases.csv ├── main.py ├── main.spec ├── media ├── migrate_database.py ├── pyproject.toml ├── requirements.txt ├── spanish_alphabetical.txt ├── spanish_glossary_sorted.txt ├── spanish_glossary_sorted.xlsx ├── spanish_glossary_sorted_B.pdf ├── spanish_glossary_sorted_B.txt ├── spanish_glossary_sorted_B.xlsx ├── spanish_trainer-26-08-21.db ├── spanish_trainer-backup.db ├── spanish_trainer.db ├── spanish_trainer_backup.sql ├── spanish_trainer_legacy.db ├── tabs │   ├── __init__.py │   ├── review_tab.py │   ├── sandbox_tab.py │   └── settings_tab.py ├── test_dual.py ├── test_tts.py ├── tree.txt ├── tree2.txt ├── tts_utils.py ├── ui │   ├── __init__.py │   ├── cli │   └── gui ├── uv.lock └── video_generator.py 10 directories, 57 files