add language menu item to tui configuration

This commit is contained in:
leonardotrapani
2026-02-01 13:19:21 +01:00
parent 1f6fce6941
commit e005184303
5 changed files with 39 additions and 1 deletions
+11
View File
@@ -0,0 +1,11 @@
package tui
import (
"github.com/leonardotrapani/hyprvoice/internal/config"
)
// editLanguage allows the user to select the global transcription language
func editLanguage(cfg *config.Config) error {
// implementation in task 5
return nil
}