Translate learn page and add audio speed control

This commit is contained in:
Remi
2025-09-18 23:55:13 +02:00
committed by itsrubberduck
parent 641042ac75
commit e861578e4e
4 changed files with 179 additions and 115 deletions

View File

@@ -10,6 +10,7 @@ export interface LearnConfig {
radioLevel: number
voice: string
audioChallenge: boolean
audioSpeed: number
}
export interface LearnState {
@@ -23,6 +24,7 @@ export const LEARN_CONFIG_DEFAULTS: LearnConfig = {
radioLevel: 4,
voice: '',
audioChallenge: false,
audioSpeed: 1,
}
export function createDefaultLearnConfig(): LearnConfig {