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: [en, ca, de, fr, es, pl, pt, ro, it]
languages: [en, ca, de, fr, es, nl, pl, pt, ro, it]
command_add1:
name: Command Text Add 1
description: First phrase for adding to the list
Expand Down Expand Up @@ -143,6 +143,16 @@ action:
one_item: "Hay 1 elemento pendiente en tu {list_name}. Es {items}"
multiple_items: "Hay {count} elementos en tu {list_name}. Son {items}"
multiple_items_limited: "Hay {count} elementos en tu {list_name}. Los primeros {max_items} son: {items}, y más."
nl:
responses:
added: "{item} toegevoegd aan {list_name}"
already_in: "{item} is al op je {list_name}"
removed: "{item} verwijderd van {list_name}"
not_in: "{item} is niet aanwezig in {list_name}"
empty: "Er zijn geen ongemarkeerde items in je {list_name}"
one_item: "Er is 1 ongemarkeerde item op je {list_name}. Het is {items}"
multiple_items: "Er zijn {count} items op je {list_name}. Dit zijn {items}"
multiple_items_limited: "Er zijn {count} items in je {list_name}. De eerste {max_items} zijn: {items}, en meer."
pl:
responses:
added: "{item} dodano do {list_name}"
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