/
/
/
1{
2 "manifest": {
3 "description": "Host a multiplayer music quiz game where guests join with a QR code."
4 },
5 "config_entries": {
6 "mode": {
7 "label": "Playback Mode",
8 "description": "How the quiz rounds are played. In venue mode a configured player plays the music out loud for everyone in the room. In remote mode every guest listens on their own device (silent-disco style).",
9 "options": {
10 "venue": "Venue (play on a real speaker)",
11 "remote": "Remote (guests listen on their own device)"
12 }
13 },
14 "player": {
15 "label": "Quiz Player",
16 "description": "The player that plays the quiz rounds in venue mode. When set to auto, the last active player is used.",
17 "options": {
18 "__auto__": "Auto (last active player)"
19 }
20 },
21 "use_ai_distractors": {
22 "label": "Enhance the Experience with AI",
23 "description": "When enabled, the quiz uses a configured AI provider (such as Home Assistant, which provides LLM access) to enhance the experience â for example, generating more convincing fake answers for each round. Falls back to the built-in behavior when no AI provider is available."
24 }
25 },
26 "errors": {
27 "music_quiz_no_game": "There is no active Music Quiz game.",
28 "music_quiz_game_active": "A Music Quiz game is already in progress.",
29 "music_quiz_name_taken": "This player name is already taken.",
30 "music_quiz_game_full": "The Music Quiz game is full.",
31 "music_quiz_already_answered": "You already answered this round.",
32 "music_quiz_not_active_this_round": "You joined during this round, you can play along from the next round.",
33 "music_quiz_wrong_phase": "This action is not possible in the current game phase.",
34 "music_quiz_no_playback_target": "No playback target is available for the Music Quiz game.",
35 "music_quiz_name_required": "A player name is required.",
36 "music_quiz_round_count_min": "Music Quiz requires at least 1 round.",
37 "music_quiz_round_count_max": "Music Quiz supports at most {0} rounds.",
38 "music_quiz_suggestion_count_min": "The suggestion count must be at least 2.",
39 "music_quiz_suggestion_count_max": "The suggestion count must be at most {0}.",
40 "music_quiz_answer_duration_min": "The answer duration must be at least 1 second.",
41 "music_quiz_answer_duration_max": "The answer duration must be at most {0} seconds.",
42 "music_quiz_source_required": "At least one source is required.",
43 "music_quiz_sources_unavailable": "None of the configured sources could be loaded.",
44 "music_quiz_source_count_max": "Music Quiz supports at most {0} sources.",
45 "music_quiz_invalid_difficulty": "The selected difficulty is not valid.",
46 "music_quiz_invalid_language": "The selected Trivia language is not valid.",
47 "music_quiz_invalid_bonus_mode": "The selected timeline bonus mode is not valid.",
48 "music_quiz_invalid_playback_mode": "The selected playback mode is not valid.",
49 "music_quiz_no_unused_source_tracks": "No unused source tracks are available.",
50 "music_quiz_no_dated_tracks": "None of the selected tracks have a usable release year.",
51 "music_quiz_not_enough_dated_tracks": "At least {0} unique tracks with release years are required for this game.",
52 "music_quiz_trivia_ai_provider_required": "Trivia requires a configured AI provider.",
53 "music_quiz_trivia_insufficient_metadata": "At least {0} unique selected tracks with usable music metadata are required for Trivia.",
54 "music_quiz_trivia_generation_failed": "Music Assistant could not generate a valid Trivia question. Please try again.",
55 "music_quiz_not_enough_distractors": "Not enough distinct tracks are available to build answer options.",
56 "music_quiz_unknown_quiz_type": "This quiz type is not available.",
57 "music_quiz_unknown_player": "This Music Quiz player is not in the game.",
58 "music_quiz_unknown_suggestion": "This answer option is not available.",
59 "music_quiz_invalid_answer": "This answer is not valid for the current game."
60 }
61}
62