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 @@ -9,7 +9,7 @@ blueprint:
default: en
selector:
language:
languages: [ca, de, en, es, fr, it, pl, pt]
languages: [ca, de, en, es, fr, it, nl, pl, pt]
command_prompt:
name: Command Text
description: The phrase you want to use to trigger the automation
Expand Down Expand Up @@ -122,6 +122,17 @@ action:
minute_label: "Minuten zuvor"
hour_label: "Stunden zuvor"
day_label: "Tage zuvor"
nl:
responses:
person_away: "{person} is weg."
person_location: "{person} is op {location}"
person_undefined: "{person} is niet gedefineerd"
last_update:
prefix: "Laatst geupdated"
now_label: "nu"
minute_label: "minuten geleden"
hour_label: "uren geleden"
day_label: "dagen geleden"
pl:
responses:
person_away: "{person} jest poza domem."
Expand Down
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 @@ -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