Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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}"
Expand Down Expand Up @@ -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:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ blueprint:
default: en
selector:
language:
languages: [de, en, pl, pt]
languages: [de, en, nl, pl, pt]
view:
name: View
description: The View Assist dashboard view to use for text information display
Expand Down Expand Up @@ -57,6 +57,12 @@ action:
title: "Umrechnung"
request_label: "Anfrage"
answer_label: "Antwort"
nl:
responses:
result: "{response} is gelijk aan {source}."
title: "Conversie"
request_label: "Vraag"
answer_label: "Antwoord"
pl:
responses:
result: "{response} jest równowartością {source}."
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down