diff --git a/View_Assist_custom_sentences/Get_Sports_Scores/blueprint-getsportsscores.yaml b/View_Assist_custom_sentences/Get_Sports_Scores/blueprint-getsportsscores.yaml index b30fff41..f5bb6a70 100644 --- a/View_Assist_custom_sentences/Get_Sports_Scores/blueprint-getsportsscores.yaml +++ b/View_Assist_custom_sentences/Get_Sports_Scores/blueprint-getsportsscores.yaml @@ -16,6 +16,7 @@ blueprint: - es - fr - it + - nl - pl - pt no_sort: false @@ -349,6 +350,19 @@ action: {team}. outcome_win: a gagné outcome_lose: a perdu + nl: + responses: + is_singular_true_post: "{team_name} speelde tegen {opponent_name} en" + is_singular_false_post: De {team_name} speelde tegen {opponent_name} en + is_singular_true_pre: "{team_name} speelt tegen {opponent_name} {kickoff_in}" + is_singular_false_pre: De {team_name} speelde tegen {opponent_name} {kickoff_in} + is_singular_true_in: "{team_name} speelt momenteel tegen {opponent_name}." + is_singular_false_in: De {team_name} speelt momenteel tegen {opponent_name}. + is_singular_true_not_found: "{team} speelt niet vandaag" + is_singular_false_not_found: The {team} speelt niet vandaag + error: Sorry. Ik kon geen recente of komende data vinden voor {team} + outcome_win: gewonnen + outcome_lose: verloren pl: responses: is_singular_true_post: "{team_name} grał z {opponent_name} i" diff --git a/View_Assist_custom_sentences/Play_Music_with_Music_Assistant/blueprint-playmusicwithmusicassistant.yaml b/View_Assist_custom_sentences/Play_Music_with_Music_Assistant/blueprint-playmusicwithmusicassistant.yaml index 9a3dfbdb..3bbd6127 100644 --- a/View_Assist_custom_sentences/Play_Music_with_Music_Assistant/blueprint-playmusicwithmusicassistant.yaml +++ b/View_Assist_custom_sentences/Play_Music_with_Music_Assistant/blueprint-playmusicwithmusicassistant.yaml @@ -84,6 +84,17 @@ actions: ma_instance: !input ma_instance language: !input language translations: + it: + responses: + playartist_found: Riproduco dei brani di {artist} + playartist_not_found: Non sono riuscito a trovare brani di {search_artist} + playlist_found: Riproduco la playlist {playlist} + playlist_not_found: >- + Mi dispiace, non ho trovato alcuna playlist chiamata + {search_playlist} + playsong_found: Riproduco {song} di {artist} + playsong_not_found: Mi dispiace, non ho trovato {song} di {artist} + playsong_queue: Metto in coda {song} di {artist} ca: responses: playartist_found: "Reproduint música de {artist}" @@ -366,7 +377,7 @@ actions: then: - variables: conversation_response: >- - {{ translations[language]['responses']['playsong_found'].replace("{artist}", found_track.tracks[0].artists[0].name).replace("{song}", found_track.tracks[0].name) }} + {{ translations[language]['responses']['playsong_queue'].replace("{artist}", found_track.tracks[0].artists[0].name).replace("{song}", found_track.tracks[0].name) }} - set_conversation_response: "{{ conversation_response }}" - action: view_assist.set_state target: diff --git a/wiki/docs/extend-functionality/sentences/play-music-with-ma.md b/wiki/docs/extend-functionality/sentences/play-music-with-ma.md index 603d72d0..b8c2483c 100644 --- a/wiki/docs/extend-functionality/sentences/play-music-with-ma.md +++ b/wiki/docs/extend-functionality/sentences/play-music-with-ma.md @@ -14,21 +14,25 @@ Adjustments may be needed based on your specific usage and preferences. - en: `(play the artist {artist} | play some {artist} [music] |play [some] [music | songs] by {artist})` - de: `(Spiele den Künstler {artist} | Spiele etwas {artist} [Musik] | Spiele [etwas] [Musik | Lieder] von {artist})` +- it: `( metti | riproduci ) (musica | della musica | qualcosa | un brano | dei brani ) (di | dei) {artist}` ### Play Playlist Command - en: `start [the] {playlist} playlist` - de: `Spiele [die] Playlist {playlist}` +- it: `(metti | riproduci) la playlist {playlist}` ### Play Song Command - en: `play {song} by {artist}` - de: `Spiele [den Song|den Titel] {song} von {artist}` +- it: `( metti | riproduci ) [ il brano ] {song} ( di | dei ) {artist}` ### Queue Song Command - en: `(queue | cue | Q) {song} by {artist}` - de: `Setze [den Song|den Titel] {song} von {artist} [in|auf] die Warteschlange` +- it: `(aggiungi) [il brano] {song} (di | dei) {artist}` ## Changelog