├── .gitignore ├── CONTRIBUTORS ├── LICENSE ├── README.md ├── Spotify_Icon.png ├── __init__.py ├── auth.py ├── exceptions.py ├── locale ├── ca-es │ ├── And.dialog │ ├── AvailableDevices.dialog │ ├── CurrentAlbum.dialog │ ├── CurrentArtist.dialog │ ├── CurrentSong.dialog │ ├── Device.voc │ ├── DeviceNotFound.dialog │ ├── FailedToStart.dialog │ ├── For.dialog │ ├── For.voc │ ├── ForAlbum.dialog │ ├── ForArtist.dialog │ ├── ListeningToAlbumBy.dialog │ ├── ListeningToArtist.dialog │ ├── ListeningToGenre.dialog │ ├── ListeningToPlaylist.dialog │ ├── ListeningToSavedSongs.dialog │ ├── ListeningToSongBy.dialog │ ├── NoArtistResults.dialog │ ├── NoDefaultDeviceAvailable.dialog │ ├── NoDevicesAvailable.dialog │ ├── NoResults.dialog │ ├── NoSettingsReceived.dialog │ ├── NotAuthorized.dialog │ ├── NotConfigured.dialog │ ├── NothingPlaying.dialog │ ├── OnAlbum.dialog │ ├── PlaybackFailed.dialog │ ├── PlaylistNotFound.dialog │ ├── Search.voc │ ├── ShuffleOff.intent │ ├── ShuffleOn.intent │ ├── Spotify.voc │ ├── StopMusic.intent │ ├── ToDevice.rx │ ├── Transfer.voc │ ├── WhatAlbum.intent │ ├── WhatArtist.intent │ ├── WhatSong.intent │ ├── album.regex │ ├── artist.regex │ ├── by.dialog │ ├── on_spotify.regex │ ├── playlist.regex │ ├── saved_songs.regex │ └── song.regex ├── da-dk │ ├── And.dialog │ ├── AvailableDevices.dialog │ ├── CurrentAlbum.dialog │ ├── CurrentArtist.dialog │ ├── CurrentSong.dialog │ ├── Device.voc │ ├── DeviceNotFound.dialog │ ├── FailedToStart.dialog │ ├── For.dialog │ ├── For.voc │ ├── ForAlbum.dialog │ ├── ForArtist.dialog │ ├── ListeningToAlbumBy.dialog │ ├── ListeningToArtist.dialog │ ├── ListeningToGenre.dialog │ ├── ListeningToPlaylist.dialog │ ├── ListeningToSongBy.dialog │ ├── NoArtistResults.dialog │ ├── NoDefaultDeviceAvailable.dialog │ ├── NoDevicesAvailable.dialog │ ├── NoResults.dialog │ ├── NotAuthorized.dialog │ ├── NotConfigured.dialog │ ├── NothingPlaying.dialog │ ├── OnAlbum.dialog │ ├── PlaybackFailed.dialog │ ├── PlaylistNotFound.dialog │ ├── Search.voc │ ├── ShuffleOff.intent │ ├── ShuffleOn.intent │ ├── Spotify.voc │ ├── StopMusic.intent │ ├── ToDevice.rx │ ├── Transfer.voc │ ├── WhatAlbum.intent │ ├── WhatArtist.intent │ ├── WhatSong.intent │ ├── album.regex │ ├── artist.regex │ ├── by.dialog │ ├── on_spotify.regex │ ├── playlist.regex │ └── song.regex ├── de-de │ ├── And.dialog │ ├── AvailableDevices.dialog │ ├── CurrentAlbum.dialog │ ├── CurrentArtist.dialog │ ├── CurrentSong.dialog │ ├── Device.voc │ ├── DeviceNotFound.dialog │ ├── FailedToStart.dialog │ ├── For.dialog │ ├── For.voc │ ├── ForAlbum.dialog │ ├── ForArtist.dialog │ ├── ListeningToAlbumBy.dialog │ ├── ListeningToArtist.dialog │ ├── ListeningToGenre.dialog │ ├── ListeningToPlaylist.dialog │ ├── ListeningToSavedSongs.dialog │ ├── ListeningToSongBy.dialog │ ├── NoArtistResults.dialog │ ├── NoDefaultDeviceAvailable.dialog │ ├── NoDevicesAvailable.dialog │ ├── NoResults.dialog │ ├── NoSettingsReceived.dialog │ ├── NotAuthorized.dialog │ ├── NotConfigured.dialog │ ├── NothingPlaying.dialog │ ├── OnAlbum.dialog │ ├── PlaybackFailed.dialog │ ├── PlaylistNotFound.dialog │ ├── Search.voc │ ├── ShuffleOff.intent │ ├── ShuffleOn.intent │ ├── Spotify.voc │ ├── StopMusic.intent │ ├── ToDevice.rx │ ├── Transfer.voc │ ├── WhatAlbum.intent │ ├── WhatArtist.intent │ ├── WhatSong.intent │ ├── album.regex │ ├── artist.regex │ ├── by.dialog │ ├── on_spotify.regex │ ├── playlist.regex │ ├── saved_songs.regex │ └── song.regex ├── en-us │ ├── And.dialog │ ├── AvailableDevices.dialog │ ├── CurrentAlbum.dialog │ ├── CurrentArtist.dialog │ ├── CurrentSong.dialog │ ├── Device.voc │ ├── DeviceNotFound.dialog │ ├── FailedToStart.dialog │ ├── For.dialog │ ├── For.voc │ ├── ForAlbum.dialog │ ├── ForArtist.dialog │ ├── ListeningToAlbumBy.dialog │ ├── ListeningToArtist.dialog │ ├── ListeningToGenre.dialog │ ├── ListeningToPlaylist.dialog │ ├── ListeningToPodcast.dialog │ ├── ListeningToSavedSongs.dialog │ ├── ListeningToSongBy.dialog │ ├── NoArtistResults.dialog │ ├── NoDefaultDeviceAvailable.dialog │ ├── NoDevicesAvailable.dialog │ ├── NoResults.dialog │ ├── NoSettingsReceived.dialog │ ├── NotAuthorized.dialog │ ├── NotConfigured.dialog │ ├── NothingPlaying.dialog │ ├── OnAlbum.dialog │ ├── PlaybackFailed.dialog │ ├── PlaylistNotFound.dialog │ ├── Search.voc │ ├── ShuffleOff.intent │ ├── ShuffleOn.intent │ ├── Spotify.voc │ ├── StopMusic.intent │ ├── ToDevice.rx │ ├── Transfer.voc │ ├── WhatAlbum.intent │ ├── WhatArtist.intent │ ├── WhatSong.intent │ ├── album.regex │ ├── artist.regex │ ├── by.dialog │ ├── on_spotify.regex │ ├── playlist.regex │ ├── podcast.regex │ ├── saved_songs.regex │ └── song.regex ├── es-es │ ├── And.dialog │ ├── AvailableDevices.dialog │ ├── CurrentAlbum.dialog │ ├── CurrentArtist.dialog │ ├── CurrentSong.dialog │ ├── Device.voc │ ├── DeviceNotFound.dialog │ ├── FailedToStart.dialog │ ├── For.dialog │ ├── For.voc │ ├── ForAlbum.dialog │ ├── ForArtist.dialog │ ├── ListeningToAlbumBy.dialog │ ├── ListeningToArtist.dialog │ ├── ListeningToGenre.dialog │ ├── ListeningToPlaylist.dialog │ ├── ListeningToSavedSongs.dialog │ ├── ListeningToSongBy.dialog │ ├── NoArtistResults.dialog │ ├── NoDefaultDeviceAvailable.dialog │ ├── NoDevicesAvailable.dialog │ ├── NoResults.dialog │ ├── NoSettingsReceived.dialog │ ├── NotAuthorized.dialog │ ├── NotConfigured.dialog │ ├── NothingPlaying.dialog │ ├── OnAlbum.dialog │ ├── PlaybackFailed.dialog │ ├── PlaylistNotFound.dialog │ ├── Search.voc │ ├── ShuffleOff.intent │ ├── ShuffleOn.intent │ ├── Spotify.voc │ ├── StopMusic.intent │ ├── ToDevice.rx │ ├── Transfer.voc │ ├── WhatAlbum.intent │ ├── WhatArtist.intent │ ├── WhatSong.intent │ ├── album.regex │ ├── artist.regex │ ├── by.dialog │ ├── on_spotify.regex │ ├── playlist.regex │ ├── saved_songs.regex │ └── song.regex ├── fr-fr │ ├── And.dialog │ ├── AvailableDevices.dialog │ ├── CurrentAlbum.dialog │ ├── CurrentArtist.dialog │ ├── CurrentSong.dialog │ ├── Device.voc │ ├── DeviceNotFound.dialog │ ├── FailedToStart.dialog │ ├── For.dialog │ ├── For.voc │ ├── ForAlbum.dialog │ ├── ForArtist.dialog │ ├── ListeningToAlbumBy.dialog │ ├── ListeningToArtist.dialog │ ├── ListeningToGenre.dialog │ ├── ListeningToPlaylist.dialog │ ├── ListeningToSavedSongs.dialog │ ├── ListeningToSongBy.dialog │ ├── NoArtistResults.dialog │ ├── NoDefaultDeviceAvailable.dialog │ ├── NoDevicesAvailable.dialog │ ├── NoResults.dialog │ ├── NoSettingsReceived.dialog │ ├── NotAuthorized.dialog │ ├── NotConfigured.dialog │ ├── NothingPlaying.dialog │ ├── OnAlbum.dialog │ ├── PlaybackFailed.dialog │ ├── PlaylistNotFound.dialog │ ├── Search.voc │ ├── ShuffleOff.intent │ ├── ShuffleOn.intent │ ├── Spotify.voc │ ├── StopMusic.intent │ ├── ToDevice.rx │ ├── Transfer.voc │ ├── WhatAlbum.intent │ ├── WhatArtist.intent │ ├── WhatSong.intent │ ├── album.regex │ ├── artist.regex │ ├── by.dialog │ ├── on_spotify.regex │ ├── playlist.regex │ ├── saved_songs.regex │ └── song.regex ├── gl-es │ ├── And.dialog │ ├── AvailableDevices.dialog │ ├── CurrentAlbum.dialog │ ├── CurrentArtist.dialog │ ├── CurrentSong.dialog │ ├── Device.voc │ ├── DeviceNotFound.dialog │ ├── FailedToStart.dialog │ ├── For.dialog │ ├── For.voc │ ├── ForAlbum.dialog │ ├── ForArtist.dialog │ ├── ListeningToAlbumBy.dialog │ ├── ListeningToArtist.dialog │ ├── ListeningToGenre.dialog │ ├── ListeningToPlaylist.dialog │ ├── ListeningToSavedSongs.dialog │ ├── ListeningToSongBy.dialog │ ├── NoArtistResults.dialog │ ├── NoDefaultDeviceAvailable.dialog │ ├── NoDevicesAvailable.dialog │ ├── NoResults.dialog │ ├── NoSettingsReceived.dialog │ ├── NotAuthorized.dialog │ ├── NotConfigured.dialog │ ├── NothingPlaying.dialog │ ├── OnAlbum.dialog │ ├── PlaybackFailed.dialog │ ├── PlaylistNotFound.dialog │ ├── Search.voc │ ├── ShuffleOff.intent │ ├── ShuffleOn.intent │ ├── Spotify.voc │ ├── StopMusic.intent │ ├── ToDevice.rx │ ├── Transfer.voc │ ├── WhatAlbum.intent │ ├── WhatArtist.intent │ ├── WhatSong.intent │ ├── album.regex │ ├── artist.regex │ ├── by.dialog │ ├── on_spotify.regex │ ├── playlist.regex │ ├── saved_songs.regex │ └── song.regex ├── it-it │ ├── And.dialog │ ├── AvailableDevices.dialog │ ├── CurrentAlbum.dialog │ ├── CurrentArtist.dialog │ ├── CurrentSong.dialog │ ├── Device.voc │ ├── DeviceNotFound.dialog │ ├── FailedToStart.dialog │ ├── For.dialog │ ├── For.voc │ ├── ForAlbum.dialog │ ├── ForArtist.dialog │ ├── ListeningToAlbumBy.dialog │ ├── ListeningToArtist.dialog │ ├── ListeningToGenre.dialog │ ├── ListeningToPlaylist.dialog │ ├── ListeningToSavedSongs.dialog │ ├── ListeningToSongBy.dialog │ ├── NoArtistResults.dialog │ ├── NoDefaultDeviceAvailable.dialog │ ├── NoDevicesAvailable.dialog │ ├── NoResults.dialog │ ├── NoSettingsReceived.dialog │ ├── NotAuthorized.dialog │ ├── NotConfigured.dialog │ ├── NothingPlaying.dialog │ ├── OnAlbum.dialog │ ├── PlaybackFailed.dialog │ ├── PlaylistNotFound.dialog │ ├── Search.voc │ ├── ShuffleOff.intent │ ├── ShuffleOn.intent │ ├── Spotify.voc │ ├── StopMusic.intent │ ├── ToDevice.rx │ ├── Transfer.voc │ ├── WhatAlbum.intent │ ├── WhatArtist.intent │ ├── WhatSong.intent │ ├── album.regex │ ├── artist.regex │ ├── by.dialog │ ├── on_spotify.regex │ ├── playlist.regex │ ├── saved_songs.regex │ └── song.regex ├── nl-nl │ ├── And.dialog │ ├── AvailableDevices.dialog │ ├── CurrentAlbum.dialog │ ├── CurrentArtist.dialog │ ├── CurrentSong.dialog │ ├── Device.voc │ ├── DeviceNotFound.dialog │ ├── FailedToStart.dialog │ ├── For.dialog │ ├── For.voc │ ├── ForAlbum.dialog │ ├── ForArtist.dialog │ ├── ListeningToAlbumBy.dialog │ ├── ListeningToArtist.dialog │ ├── ListeningToGenre.dialog │ ├── ListeningToPlaylist.dialog │ ├── ListeningToSavedSongs.dialog │ ├── ListeningToSongBy.dialog │ ├── NoArtistResults.dialog │ ├── NoDefaultDeviceAvailable.dialog │ ├── NoDevicesAvailable.dialog │ ├── NoResults.dialog │ ├── NoSettingsReceived.dialog │ ├── NotAuthorized.dialog │ ├── NotConfigured.dialog │ ├── NothingPlaying.dialog │ ├── OnAlbum.dialog │ ├── PlaybackFailed.dialog │ ├── PlaylistNotFound.dialog │ ├── Search.voc │ ├── ShuffleOff.intent │ ├── ShuffleOn.intent │ ├── Spotify.voc │ ├── StopMusic.intent │ ├── ToDevice.rx │ ├── Transfer.voc │ ├── WhatAlbum.intent │ ├── WhatArtist.intent │ ├── WhatSong.intent │ ├── album.regex │ ├── artist.regex │ ├── by.dialog │ ├── on_spotify.regex │ ├── playlist.regex │ ├── saved_songs.regex │ └── song.regex ├── pl-pl │ ├── And.dialog │ ├── AvailableDevices.dialog │ ├── CurrentAlbum.dialog │ ├── CurrentArtist.dialog │ ├── CurrentSong.dialog │ ├── Device.voc │ ├── DeviceNotFound.dialog │ ├── FailedToStart.dialog │ ├── For.dialog │ ├── For.voc │ ├── ForAlbum.dialog │ ├── ForArtist.dialog │ ├── ListeningToAlbumBy.dialog │ ├── ListeningToArtist.dialog │ ├── ListeningToGenre.dialog │ ├── ListeningToPlaylist.dialog │ ├── ListeningToSavedSongs.dialog │ ├── ListeningToSongBy.dialog │ ├── NoArtistResults.dialog │ ├── NoDefaultDeviceAvailable.dialog │ ├── NoDevicesAvailable.dialog │ ├── NoResults.dialog │ ├── NoSettingsReceived.dialog │ ├── NotAuthorized.dialog │ ├── NotConfigured.dialog │ ├── NothingPlaying.dialog │ ├── OnAlbum.dialog │ ├── PlaybackFailed.dialog │ ├── PlaylistNotFound.dialog │ ├── Search.voc │ ├── ShuffleOff.intent │ ├── ShuffleOn.intent │ ├── Spotify.voc │ ├── StopMusic.intent │ ├── ToDevice.rx │ ├── Transfer.voc │ ├── WhatAlbum.intent │ ├── WhatArtist.intent │ ├── WhatSong.intent │ ├── album.regex │ ├── artist.regex │ ├── by.dialog │ ├── on_spotify.regex │ ├── playlist.regex │ ├── saved_songs.regex │ └── song.regex ├── pt-br │ ├── And.dialog │ ├── AvailableDevices.dialog │ ├── CurrentAlbum.dialog │ ├── CurrentArtist.dialog │ ├── CurrentSong.dialog │ ├── Device.voc │ ├── DeviceNotFound.dialog │ ├── FailedToStart.dialog │ ├── For.dialog │ ├── For.voc │ ├── ForAlbum.dialog │ ├── ForArtist.dialog │ ├── ListeningToAlbumBy.dialog │ ├── ListeningToArtist.dialog │ ├── ListeningToGenre.dialog │ ├── ListeningToPlaylist.dialog │ ├── ListeningToSavedSongs.dialog │ ├── ListeningToSongBy.dialog │ ├── NoArtistResults.dialog │ ├── NoDefaultDeviceAvailable.dialog │ ├── NoDevicesAvailable.dialog │ ├── NoResults.dialog │ ├── NoSettingsReceived.dialog │ ├── NotAuthorized.dialog │ ├── NotConfigured.dialog │ ├── NothingPlaying.dialog │ ├── OnAlbum.dialog │ ├── PlaybackFailed.dialog │ ├── PlaylistNotFound.dialog │ ├── Search.voc │ ├── ShuffleOff.intent │ ├── ShuffleOn.intent │ ├── Spotify.voc │ ├── StopMusic.intent │ ├── ToDevice.rx │ ├── Transfer.voc │ ├── WhatAlbum.intent │ ├── WhatArtist.intent │ ├── WhatSong.intent │ ├── album.regex │ ├── artist.regex │ ├── by.dialog │ ├── on_spotify.regex │ ├── playlist.regex │ ├── saved_songs.regex │ └── song.regex ├── ru-ru │ ├── And.dialog │ ├── AvailableDevices.dialog │ ├── Device.voc │ ├── FailedToStart.dialog │ ├── For.dialog │ ├── For.voc │ ├── ForAlbum.dialog │ ├── ForArtist.dialog │ ├── ListeningToAlbumBy.dialog │ ├── ListeningToArtist.dialog │ ├── ListeningToGenre.dialog │ ├── ListeningToPlaylist.dialog │ ├── ListeningToSongBy.dialog │ ├── NoArtistResults.dialog │ ├── NoDefaultDeviceAvailable.dialog │ ├── NoDevicesAvailable.dialog │ ├── NoResults.dialog │ ├── NotAuthorized.dialog │ ├── Search.voc │ ├── ShuffleOff.intent │ ├── ShuffleOn.intent │ ├── Spotify.voc │ ├── ToDevice.rx │ ├── Transfer.voc │ ├── album.regex │ ├── artist.regex │ ├── by.dialog │ ├── on_spotify.regex │ ├── playlist.regex │ └── song.regex └── sv-se │ ├── And.dialog │ ├── AvailableDevices.dialog │ ├── CurrentAlbum.dialog │ ├── CurrentArtist.dialog │ ├── CurrentSong.dialog │ ├── Device.voc │ ├── DeviceNotFound.dialog │ ├── FailedToStart.dialog │ ├── For.dialog │ ├── For.voc │ ├── ForAlbum.dialog │ ├── ForArtist.dialog │ ├── ListeningToAlbumBy.dialog │ ├── ListeningToArtist.dialog │ ├── ListeningToGenre.dialog │ ├── ListeningToPlaylist.dialog │ ├── ListeningToSavedSongs.dialog │ ├── ListeningToSongBy.dialog │ ├── NoArtistResults.dialog │ ├── NoDefaultDeviceAvailable.dialog │ ├── NoDevicesAvailable.dialog │ ├── NoResults.dialog │ ├── NoSettingsReceived.dialog │ ├── NotAuthorized.dialog │ ├── NotConfigured.dialog │ ├── NothingPlaying.dialog │ ├── OnAlbum.dialog │ ├── PlaybackFailed.dialog │ ├── PlaylistNotFound.dialog │ ├── Search.voc │ ├── ShuffleOff.intent │ ├── ShuffleOn.intent │ ├── Spotify.voc │ ├── StopMusic.intent │ ├── ToDevice.rx │ ├── Transfer.voc │ ├── WhatAlbum.intent │ ├── WhatArtist.intent │ ├── WhatSong.intent │ ├── album.regex │ ├── artist.regex │ ├── by.dialog │ ├── on_spotify.regex │ ├── playlist.regex │ ├── saved_songs.regex │ └── song.regex ├── requirements.sh ├── requirements.txt ├── settingsmeta.json ├── spotify.py └── test ├── __init__.py ├── behave ├── spotify-basic.feature └── steps │ └── spotify_steps.py ├── data ├── 1999.json ├── abbey_road.json ├── appetite_for_destruction.json ├── beatles.json ├── crazy.json ├── dont_stop_believin.json ├── enter_sandman.json ├── miley_cyrus.json └── queen.json └── intent ├── music.by.miley.cyrus.json ├── something.by.the.beatles.json ├── song.1999.json ├── songs.by.queen.json ├── the.album.abbey.road.json ├── the.album.appetite.for.destruction.json ├── the.artist.the.beatles.json ├── the.song.enter.sandman.json ├── the.track.crazy.json ├── track.1999.json ├── track.dont.stop.believin.json └── what.devices.json /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | .* 3 | settings.json 4 | -------------------------------------------------------------------------------- /CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/CONTRIBUTORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/README.md -------------------------------------------------------------------------------- /Spotify_Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/Spotify_Icon.png -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/__init__.py -------------------------------------------------------------------------------- /auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/auth.py -------------------------------------------------------------------------------- /exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/exceptions.py -------------------------------------------------------------------------------- /locale/ca-es/And.dialog: -------------------------------------------------------------------------------- 1 | i 2 | -------------------------------------------------------------------------------- /locale/ca-es/AvailableDevices.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/ca-es/AvailableDevices.dialog -------------------------------------------------------------------------------- /locale/ca-es/CurrentAlbum.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/ca-es/CurrentAlbum.dialog -------------------------------------------------------------------------------- /locale/ca-es/CurrentArtist.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/ca-es/CurrentArtist.dialog -------------------------------------------------------------------------------- /locale/ca-es/CurrentSong.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/ca-es/CurrentSong.dialog -------------------------------------------------------------------------------- /locale/ca-es/Device.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/ca-es/Device.voc -------------------------------------------------------------------------------- /locale/ca-es/DeviceNotFound.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/ca-es/DeviceNotFound.dialog -------------------------------------------------------------------------------- /locale/ca-es/FailedToStart.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/ca-es/FailedToStart.dialog -------------------------------------------------------------------------------- /locale/ca-es/For.dialog: -------------------------------------------------------------------------------- 1 | per a 2 | -------------------------------------------------------------------------------- /locale/ca-es/For.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/ca-es/For.voc -------------------------------------------------------------------------------- /locale/ca-es/ForAlbum.dialog: -------------------------------------------------------------------------------- 1 | per l'àlbum 2 | -------------------------------------------------------------------------------- /locale/ca-es/ForArtist.dialog: -------------------------------------------------------------------------------- 1 | per l'artista 2 | -------------------------------------------------------------------------------- /locale/ca-es/ListeningToAlbumBy.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/ca-es/ListeningToAlbumBy.dialog -------------------------------------------------------------------------------- /locale/ca-es/ListeningToArtist.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/ca-es/ListeningToArtist.dialog -------------------------------------------------------------------------------- /locale/ca-es/ListeningToGenre.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/ca-es/ListeningToGenre.dialog -------------------------------------------------------------------------------- /locale/ca-es/ListeningToPlaylist.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/ca-es/ListeningToPlaylist.dialog -------------------------------------------------------------------------------- /locale/ca-es/ListeningToSavedSongs.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/ca-es/ListeningToSavedSongs.dialog -------------------------------------------------------------------------------- /locale/ca-es/ListeningToSongBy.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/ca-es/ListeningToSongBy.dialog -------------------------------------------------------------------------------- /locale/ca-es/NoArtistResults.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/ca-es/NoArtistResults.dialog -------------------------------------------------------------------------------- /locale/ca-es/NoDefaultDeviceAvailable.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/ca-es/NoDefaultDeviceAvailable.dialog -------------------------------------------------------------------------------- /locale/ca-es/NoDevicesAvailable.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/ca-es/NoDevicesAvailable.dialog -------------------------------------------------------------------------------- /locale/ca-es/NoResults.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/ca-es/NoResults.dialog -------------------------------------------------------------------------------- /locale/ca-es/NoSettingsReceived.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/ca-es/NoSettingsReceived.dialog -------------------------------------------------------------------------------- /locale/ca-es/NotAuthorized.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/ca-es/NotAuthorized.dialog -------------------------------------------------------------------------------- /locale/ca-es/NotConfigured.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/ca-es/NotConfigured.dialog -------------------------------------------------------------------------------- /locale/ca-es/NothingPlaying.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/ca-es/NothingPlaying.dialog -------------------------------------------------------------------------------- /locale/ca-es/OnAlbum.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/ca-es/OnAlbum.dialog -------------------------------------------------------------------------------- /locale/ca-es/PlaybackFailed.dialog: -------------------------------------------------------------------------------- 1 | Spotify no ha pogut iniciar la reproducció: {reason} 2 | -------------------------------------------------------------------------------- /locale/ca-es/PlaylistNotFound.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/ca-es/PlaylistNotFound.dialog -------------------------------------------------------------------------------- /locale/ca-es/Search.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/ca-es/Search.voc -------------------------------------------------------------------------------- /locale/ca-es/ShuffleOff.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/ca-es/ShuffleOff.intent -------------------------------------------------------------------------------- /locale/ca-es/ShuffleOn.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/ca-es/ShuffleOn.intent -------------------------------------------------------------------------------- /locale/ca-es/Spotify.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/ca-es/Spotify.voc -------------------------------------------------------------------------------- /locale/ca-es/StopMusic.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/ca-es/StopMusic.intent -------------------------------------------------------------------------------- /locale/ca-es/ToDevice.rx: -------------------------------------------------------------------------------- 1 | a (?P.+) 2 | -------------------------------------------------------------------------------- /locale/ca-es/Transfer.voc: -------------------------------------------------------------------------------- 1 | transferiu 2 | moviment 3 | -------------------------------------------------------------------------------- /locale/ca-es/WhatAlbum.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/ca-es/WhatAlbum.intent -------------------------------------------------------------------------------- /locale/ca-es/WhatArtist.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/ca-es/WhatArtist.intent -------------------------------------------------------------------------------- /locale/ca-es/WhatSong.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/ca-es/WhatSong.intent -------------------------------------------------------------------------------- /locale/ca-es/album.regex: -------------------------------------------------------------------------------- 1 | el (àlbum|disc) (?P.+) 2 | -------------------------------------------------------------------------------- /locale/ca-es/artist.regex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/ca-es/artist.regex -------------------------------------------------------------------------------- /locale/ca-es/by.dialog: -------------------------------------------------------------------------------- 1 | de 2 | -------------------------------------------------------------------------------- /locale/ca-es/on_spotify.regex: -------------------------------------------------------------------------------- 1 | \s*(a|amb|utilitzant|usant) spotify\s* 2 | -------------------------------------------------------------------------------- /locale/ca-es/playlist.regex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/ca-es/playlist.regex -------------------------------------------------------------------------------- /locale/ca-es/saved_songs.regex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/ca-es/saved_songs.regex -------------------------------------------------------------------------------- /locale/ca-es/song.regex: -------------------------------------------------------------------------------- 1 | (la|el) (tema|cançó|pista) (?P.+) 2 | -------------------------------------------------------------------------------- /locale/da-dk/And.dialog: -------------------------------------------------------------------------------- 1 | og 2 | -------------------------------------------------------------------------------- /locale/da-dk/AvailableDevices.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/da-dk/AvailableDevices.dialog -------------------------------------------------------------------------------- /locale/da-dk/CurrentAlbum.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/da-dk/CurrentAlbum.dialog -------------------------------------------------------------------------------- /locale/da-dk/CurrentArtist.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/da-dk/CurrentArtist.dialog -------------------------------------------------------------------------------- /locale/da-dk/CurrentSong.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/da-dk/CurrentSong.dialog -------------------------------------------------------------------------------- /locale/da-dk/Device.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/da-dk/Device.voc -------------------------------------------------------------------------------- /locale/da-dk/DeviceNotFound.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/da-dk/DeviceNotFound.dialog -------------------------------------------------------------------------------- /locale/da-dk/FailedToStart.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/da-dk/FailedToStart.dialog -------------------------------------------------------------------------------- /locale/da-dk/For.dialog: -------------------------------------------------------------------------------- 1 | for 2 | -------------------------------------------------------------------------------- /locale/da-dk/For.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/da-dk/For.voc -------------------------------------------------------------------------------- /locale/da-dk/ForAlbum.dialog: -------------------------------------------------------------------------------- 1 | for albummet 2 | -------------------------------------------------------------------------------- /locale/da-dk/ForArtist.dialog: -------------------------------------------------------------------------------- 1 | for kunstneren 2 | -------------------------------------------------------------------------------- /locale/da-dk/ListeningToAlbumBy.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/da-dk/ListeningToAlbumBy.dialog -------------------------------------------------------------------------------- /locale/da-dk/ListeningToArtist.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/da-dk/ListeningToArtist.dialog -------------------------------------------------------------------------------- /locale/da-dk/ListeningToGenre.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/da-dk/ListeningToGenre.dialog -------------------------------------------------------------------------------- /locale/da-dk/ListeningToPlaylist.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/da-dk/ListeningToPlaylist.dialog -------------------------------------------------------------------------------- /locale/da-dk/ListeningToSongBy.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/da-dk/ListeningToSongBy.dialog -------------------------------------------------------------------------------- /locale/da-dk/NoArtistResults.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/da-dk/NoArtistResults.dialog -------------------------------------------------------------------------------- /locale/da-dk/NoDefaultDeviceAvailable.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/da-dk/NoDefaultDeviceAvailable.dialog -------------------------------------------------------------------------------- /locale/da-dk/NoDevicesAvailable.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/da-dk/NoDevicesAvailable.dialog -------------------------------------------------------------------------------- /locale/da-dk/NoResults.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/da-dk/NoResults.dialog -------------------------------------------------------------------------------- /locale/da-dk/NotAuthorized.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/da-dk/NotAuthorized.dialog -------------------------------------------------------------------------------- /locale/da-dk/NotConfigured.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/da-dk/NotConfigured.dialog -------------------------------------------------------------------------------- /locale/da-dk/NothingPlaying.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/da-dk/NothingPlaying.dialog -------------------------------------------------------------------------------- /locale/da-dk/OnAlbum.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/da-dk/OnAlbum.dialog -------------------------------------------------------------------------------- /locale/da-dk/PlaybackFailed.dialog: -------------------------------------------------------------------------------- 1 | Spotify kunne ikke starte afspilning: {reason} 2 | -------------------------------------------------------------------------------- /locale/da-dk/PlaylistNotFound.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/da-dk/PlaylistNotFound.dialog -------------------------------------------------------------------------------- /locale/da-dk/Search.voc: -------------------------------------------------------------------------------- 1 | søg 2 | led efter 3 | -------------------------------------------------------------------------------- /locale/da-dk/ShuffleOff.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/da-dk/ShuffleOff.intent -------------------------------------------------------------------------------- /locale/da-dk/ShuffleOn.intent: -------------------------------------------------------------------------------- 1 | (tænd|aktiver|set) Spotify shuffle (|on) 2 | -------------------------------------------------------------------------------- /locale/da-dk/Spotify.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/da-dk/Spotify.voc -------------------------------------------------------------------------------- /locale/da-dk/StopMusic.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/da-dk/StopMusic.intent -------------------------------------------------------------------------------- /locale/da-dk/ToDevice.rx: -------------------------------------------------------------------------------- 1 | til (?P.+) 2 | -------------------------------------------------------------------------------- /locale/da-dk/Transfer.voc: -------------------------------------------------------------------------------- 1 | overfør 2 | flyt 3 | -------------------------------------------------------------------------------- /locale/da-dk/WhatAlbum.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/da-dk/WhatAlbum.intent -------------------------------------------------------------------------------- /locale/da-dk/WhatArtist.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/da-dk/WhatArtist.intent -------------------------------------------------------------------------------- /locale/da-dk/WhatSong.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/da-dk/WhatSong.intent -------------------------------------------------------------------------------- /locale/da-dk/album.regex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/da-dk/album.regex -------------------------------------------------------------------------------- /locale/da-dk/artist.regex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/da-dk/artist.regex -------------------------------------------------------------------------------- /locale/da-dk/by.dialog: -------------------------------------------------------------------------------- 1 | af 2 | -------------------------------------------------------------------------------- /locale/da-dk/on_spotify.regex: -------------------------------------------------------------------------------- 1 | \s*(på|med|brug) spotify\s* 2 | -------------------------------------------------------------------------------- /locale/da-dk/playlist.regex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/da-dk/playlist.regex -------------------------------------------------------------------------------- /locale/da-dk/song.regex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/da-dk/song.regex -------------------------------------------------------------------------------- /locale/de-de/And.dialog: -------------------------------------------------------------------------------- 1 | und 2 | -------------------------------------------------------------------------------- /locale/de-de/AvailableDevices.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/de-de/AvailableDevices.dialog -------------------------------------------------------------------------------- /locale/de-de/CurrentAlbum.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/de-de/CurrentAlbum.dialog -------------------------------------------------------------------------------- /locale/de-de/CurrentArtist.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/de-de/CurrentArtist.dialog -------------------------------------------------------------------------------- /locale/de-de/CurrentSong.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/de-de/CurrentSong.dialog -------------------------------------------------------------------------------- /locale/de-de/Device.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/de-de/Device.voc -------------------------------------------------------------------------------- /locale/de-de/DeviceNotFound.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/de-de/DeviceNotFound.dialog -------------------------------------------------------------------------------- /locale/de-de/FailedToStart.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/de-de/FailedToStart.dialog -------------------------------------------------------------------------------- /locale/de-de/For.dialog: -------------------------------------------------------------------------------- 1 | nach 2 | -------------------------------------------------------------------------------- /locale/de-de/For.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/de-de/For.voc -------------------------------------------------------------------------------- /locale/de-de/ForAlbum.dialog: -------------------------------------------------------------------------------- 1 | nach dem Album 2 | -------------------------------------------------------------------------------- /locale/de-de/ForArtist.dialog: -------------------------------------------------------------------------------- 1 | nach dem Künstler 2 | -------------------------------------------------------------------------------- /locale/de-de/ListeningToAlbumBy.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/de-de/ListeningToAlbumBy.dialog -------------------------------------------------------------------------------- /locale/de-de/ListeningToArtist.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/de-de/ListeningToArtist.dialog -------------------------------------------------------------------------------- /locale/de-de/ListeningToGenre.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/de-de/ListeningToGenre.dialog -------------------------------------------------------------------------------- /locale/de-de/ListeningToPlaylist.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/de-de/ListeningToPlaylist.dialog -------------------------------------------------------------------------------- /locale/de-de/ListeningToSavedSongs.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/de-de/ListeningToSavedSongs.dialog -------------------------------------------------------------------------------- /locale/de-de/ListeningToSongBy.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/de-de/ListeningToSongBy.dialog -------------------------------------------------------------------------------- /locale/de-de/NoArtistResults.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/de-de/NoArtistResults.dialog -------------------------------------------------------------------------------- /locale/de-de/NoDefaultDeviceAvailable.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/de-de/NoDefaultDeviceAvailable.dialog -------------------------------------------------------------------------------- /locale/de-de/NoDevicesAvailable.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/de-de/NoDevicesAvailable.dialog -------------------------------------------------------------------------------- /locale/de-de/NoResults.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/de-de/NoResults.dialog -------------------------------------------------------------------------------- /locale/de-de/NoSettingsReceived.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/de-de/NoSettingsReceived.dialog -------------------------------------------------------------------------------- /locale/de-de/NotAuthorized.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/de-de/NotAuthorized.dialog -------------------------------------------------------------------------------- /locale/de-de/NotConfigured.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/de-de/NotConfigured.dialog -------------------------------------------------------------------------------- /locale/de-de/NothingPlaying.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/de-de/NothingPlaying.dialog -------------------------------------------------------------------------------- /locale/de-de/OnAlbum.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/de-de/OnAlbum.dialog -------------------------------------------------------------------------------- /locale/de-de/PlaybackFailed.dialog: -------------------------------------------------------------------------------- 1 | Spotify konnte Wiedergabe nicht starten: {reason} 2 | -------------------------------------------------------------------------------- /locale/de-de/PlaylistNotFound.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/de-de/PlaylistNotFound.dialog -------------------------------------------------------------------------------- /locale/de-de/Search.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/de-de/Search.voc -------------------------------------------------------------------------------- /locale/de-de/ShuffleOff.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/de-de/ShuffleOff.intent -------------------------------------------------------------------------------- /locale/de-de/ShuffleOn.intent: -------------------------------------------------------------------------------- 1 | (schalte|aktiviere) Spotify (Shuffle|Zufallswiedergabe) (| an) 2 | -------------------------------------------------------------------------------- /locale/de-de/Spotify.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/de-de/Spotify.voc -------------------------------------------------------------------------------- /locale/de-de/StopMusic.intent: -------------------------------------------------------------------------------- 1 | (stoppe|schalte|beende) (die Musik|Spotify) (aus|ab|) 2 | -------------------------------------------------------------------------------- /locale/de-de/ToDevice.rx: -------------------------------------------------------------------------------- 1 | auf (?P.+) 2 | -------------------------------------------------------------------------------- /locale/de-de/Transfer.voc: -------------------------------------------------------------------------------- 1 | übertrage 2 | bewege 3 | -------------------------------------------------------------------------------- /locale/de-de/WhatAlbum.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/de-de/WhatAlbum.intent -------------------------------------------------------------------------------- /locale/de-de/WhatArtist.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/de-de/WhatArtist.intent -------------------------------------------------------------------------------- /locale/de-de/WhatSong.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/de-de/WhatSong.intent -------------------------------------------------------------------------------- /locale/de-de/album.regex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/de-de/album.regex -------------------------------------------------------------------------------- /locale/de-de/artist.regex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/de-de/artist.regex -------------------------------------------------------------------------------- /locale/de-de/by.dialog: -------------------------------------------------------------------------------- 1 | von 2 | -------------------------------------------------------------------------------- /locale/de-de/on_spotify.regex: -------------------------------------------------------------------------------- 1 | \s*(auf|mit|nutze) spotify\s* 2 | -------------------------------------------------------------------------------- /locale/de-de/playlist.regex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/de-de/playlist.regex -------------------------------------------------------------------------------- /locale/de-de/saved_songs.regex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/de-de/saved_songs.regex -------------------------------------------------------------------------------- /locale/de-de/song.regex: -------------------------------------------------------------------------------- 1 | (der|das) (Titel|Lied) (?P.+) 2 | -------------------------------------------------------------------------------- /locale/en-us/And.dialog: -------------------------------------------------------------------------------- 1 | and 2 | -------------------------------------------------------------------------------- /locale/en-us/AvailableDevices.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/en-us/AvailableDevices.dialog -------------------------------------------------------------------------------- /locale/en-us/CurrentAlbum.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/en-us/CurrentAlbum.dialog -------------------------------------------------------------------------------- /locale/en-us/CurrentArtist.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/en-us/CurrentArtist.dialog -------------------------------------------------------------------------------- /locale/en-us/CurrentSong.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/en-us/CurrentSong.dialog -------------------------------------------------------------------------------- /locale/en-us/Device.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/en-us/Device.voc -------------------------------------------------------------------------------- /locale/en-us/DeviceNotFound.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/en-us/DeviceNotFound.dialog -------------------------------------------------------------------------------- /locale/en-us/FailedToStart.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/en-us/FailedToStart.dialog -------------------------------------------------------------------------------- /locale/en-us/For.dialog: -------------------------------------------------------------------------------- 1 | for 2 | -------------------------------------------------------------------------------- /locale/en-us/For.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/en-us/For.voc -------------------------------------------------------------------------------- /locale/en-us/ForAlbum.dialog: -------------------------------------------------------------------------------- 1 | for the album 2 | -------------------------------------------------------------------------------- /locale/en-us/ForArtist.dialog: -------------------------------------------------------------------------------- 1 | for the artist 2 | -------------------------------------------------------------------------------- /locale/en-us/ListeningToAlbumBy.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/en-us/ListeningToAlbumBy.dialog -------------------------------------------------------------------------------- /locale/en-us/ListeningToArtist.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/en-us/ListeningToArtist.dialog -------------------------------------------------------------------------------- /locale/en-us/ListeningToGenre.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/en-us/ListeningToGenre.dialog -------------------------------------------------------------------------------- /locale/en-us/ListeningToPlaylist.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/en-us/ListeningToPlaylist.dialog -------------------------------------------------------------------------------- /locale/en-us/ListeningToPodcast.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/en-us/ListeningToPodcast.dialog -------------------------------------------------------------------------------- /locale/en-us/ListeningToSavedSongs.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/en-us/ListeningToSavedSongs.dialog -------------------------------------------------------------------------------- /locale/en-us/ListeningToSongBy.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/en-us/ListeningToSongBy.dialog -------------------------------------------------------------------------------- /locale/en-us/NoArtistResults.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/en-us/NoArtistResults.dialog -------------------------------------------------------------------------------- /locale/en-us/NoDefaultDeviceAvailable.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/en-us/NoDefaultDeviceAvailable.dialog -------------------------------------------------------------------------------- /locale/en-us/NoDevicesAvailable.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/en-us/NoDevicesAvailable.dialog -------------------------------------------------------------------------------- /locale/en-us/NoResults.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/en-us/NoResults.dialog -------------------------------------------------------------------------------- /locale/en-us/NoSettingsReceived.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/en-us/NoSettingsReceived.dialog -------------------------------------------------------------------------------- /locale/en-us/NotAuthorized.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/en-us/NotAuthorized.dialog -------------------------------------------------------------------------------- /locale/en-us/NotConfigured.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/en-us/NotConfigured.dialog -------------------------------------------------------------------------------- /locale/en-us/NothingPlaying.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/en-us/NothingPlaying.dialog -------------------------------------------------------------------------------- /locale/en-us/OnAlbum.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/en-us/OnAlbum.dialog -------------------------------------------------------------------------------- /locale/en-us/PlaybackFailed.dialog: -------------------------------------------------------------------------------- 1 | Spotify couldn't start playback: {reason} 2 | -------------------------------------------------------------------------------- /locale/en-us/PlaylistNotFound.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/en-us/PlaylistNotFound.dialog -------------------------------------------------------------------------------- /locale/en-us/Search.voc: -------------------------------------------------------------------------------- 1 | search 2 | look for 3 | -------------------------------------------------------------------------------- /locale/en-us/ShuffleOff.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/en-us/ShuffleOff.intent -------------------------------------------------------------------------------- /locale/en-us/ShuffleOn.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/en-us/ShuffleOn.intent -------------------------------------------------------------------------------- /locale/en-us/Spotify.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/en-us/Spotify.voc -------------------------------------------------------------------------------- /locale/en-us/StopMusic.intent: -------------------------------------------------------------------------------- 1 | (stop|end|turn off) (the|) (music|spotify|) 2 | -------------------------------------------------------------------------------- /locale/en-us/ToDevice.rx: -------------------------------------------------------------------------------- 1 | to (?P.+) 2 | -------------------------------------------------------------------------------- /locale/en-us/Transfer.voc: -------------------------------------------------------------------------------- 1 | transfer 2 | move 3 | -------------------------------------------------------------------------------- /locale/en-us/WhatAlbum.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/en-us/WhatAlbum.intent -------------------------------------------------------------------------------- /locale/en-us/WhatArtist.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/en-us/WhatArtist.intent -------------------------------------------------------------------------------- /locale/en-us/WhatSong.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/en-us/WhatSong.intent -------------------------------------------------------------------------------- /locale/en-us/album.regex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/en-us/album.regex -------------------------------------------------------------------------------- /locale/en-us/artist.regex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/en-us/artist.regex -------------------------------------------------------------------------------- /locale/en-us/by.dialog: -------------------------------------------------------------------------------- 1 | by 2 | -------------------------------------------------------------------------------- /locale/en-us/on_spotify.regex: -------------------------------------------------------------------------------- 1 | \s*(on|with|using) spotify\s* 2 | -------------------------------------------------------------------------------- /locale/en-us/playlist.regex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/en-us/playlist.regex -------------------------------------------------------------------------------- /locale/en-us/podcast.regex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/en-us/podcast.regex -------------------------------------------------------------------------------- /locale/en-us/saved_songs.regex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/en-us/saved_songs.regex -------------------------------------------------------------------------------- /locale/en-us/song.regex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/en-us/song.regex -------------------------------------------------------------------------------- /locale/es-es/And.dialog: -------------------------------------------------------------------------------- 1 | y 2 | -------------------------------------------------------------------------------- /locale/es-es/AvailableDevices.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/es-es/AvailableDevices.dialog -------------------------------------------------------------------------------- /locale/es-es/CurrentAlbum.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/es-es/CurrentAlbum.dialog -------------------------------------------------------------------------------- /locale/es-es/CurrentArtist.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/es-es/CurrentArtist.dialog -------------------------------------------------------------------------------- /locale/es-es/CurrentSong.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/es-es/CurrentSong.dialog -------------------------------------------------------------------------------- /locale/es-es/Device.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/es-es/Device.voc -------------------------------------------------------------------------------- /locale/es-es/DeviceNotFound.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/es-es/DeviceNotFound.dialog -------------------------------------------------------------------------------- /locale/es-es/FailedToStart.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/es-es/FailedToStart.dialog -------------------------------------------------------------------------------- /locale/es-es/For.dialog: -------------------------------------------------------------------------------- 1 | por 2 | -------------------------------------------------------------------------------- /locale/es-es/For.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/es-es/For.voc -------------------------------------------------------------------------------- /locale/es-es/ForAlbum.dialog: -------------------------------------------------------------------------------- 1 | por el álbum 2 | -------------------------------------------------------------------------------- /locale/es-es/ForArtist.dialog: -------------------------------------------------------------------------------- 1 | por el artista 2 | -------------------------------------------------------------------------------- /locale/es-es/ListeningToAlbumBy.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/es-es/ListeningToAlbumBy.dialog -------------------------------------------------------------------------------- /locale/es-es/ListeningToArtist.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/es-es/ListeningToArtist.dialog -------------------------------------------------------------------------------- /locale/es-es/ListeningToGenre.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/es-es/ListeningToGenre.dialog -------------------------------------------------------------------------------- /locale/es-es/ListeningToPlaylist.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/es-es/ListeningToPlaylist.dialog -------------------------------------------------------------------------------- /locale/es-es/ListeningToSavedSongs.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/es-es/ListeningToSavedSongs.dialog -------------------------------------------------------------------------------- /locale/es-es/ListeningToSongBy.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/es-es/ListeningToSongBy.dialog -------------------------------------------------------------------------------- /locale/es-es/NoArtistResults.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/es-es/NoArtistResults.dialog -------------------------------------------------------------------------------- /locale/es-es/NoDefaultDeviceAvailable.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/es-es/NoDefaultDeviceAvailable.dialog -------------------------------------------------------------------------------- /locale/es-es/NoDevicesAvailable.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/es-es/NoDevicesAvailable.dialog -------------------------------------------------------------------------------- /locale/es-es/NoResults.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/es-es/NoResults.dialog -------------------------------------------------------------------------------- /locale/es-es/NoSettingsReceived.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/es-es/NoSettingsReceived.dialog -------------------------------------------------------------------------------- /locale/es-es/NotAuthorized.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/es-es/NotAuthorized.dialog -------------------------------------------------------------------------------- /locale/es-es/NotConfigured.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/es-es/NotConfigured.dialog -------------------------------------------------------------------------------- /locale/es-es/NothingPlaying.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/es-es/NothingPlaying.dialog -------------------------------------------------------------------------------- /locale/es-es/OnAlbum.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/es-es/OnAlbum.dialog -------------------------------------------------------------------------------- /locale/es-es/PlaybackFailed.dialog: -------------------------------------------------------------------------------- 1 | Spotify no pudo empezar la reproducción: {reason} 2 | -------------------------------------------------------------------------------- /locale/es-es/PlaylistNotFound.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/es-es/PlaylistNotFound.dialog -------------------------------------------------------------------------------- /locale/es-es/Search.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/es-es/Search.voc -------------------------------------------------------------------------------- /locale/es-es/ShuffleOff.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/es-es/ShuffleOff.intent -------------------------------------------------------------------------------- /locale/es-es/ShuffleOn.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/es-es/ShuffleOn.intent -------------------------------------------------------------------------------- /locale/es-es/Spotify.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/es-es/Spotify.voc -------------------------------------------------------------------------------- /locale/es-es/StopMusic.intent: -------------------------------------------------------------------------------- 1 | (para|quita|apaga) (la|el) (música|spotify) 2 | -------------------------------------------------------------------------------- /locale/es-es/ToDevice.rx: -------------------------------------------------------------------------------- 1 | en (?P.+) 2 | -------------------------------------------------------------------------------- /locale/es-es/Transfer.voc: -------------------------------------------------------------------------------- 1 | transfiere 2 | mueve 3 | -------------------------------------------------------------------------------- /locale/es-es/WhatAlbum.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/es-es/WhatAlbum.intent -------------------------------------------------------------------------------- /locale/es-es/WhatArtist.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/es-es/WhatArtist.intent -------------------------------------------------------------------------------- /locale/es-es/WhatSong.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/es-es/WhatSong.intent -------------------------------------------------------------------------------- /locale/es-es/album.regex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/es-es/album.regex -------------------------------------------------------------------------------- /locale/es-es/artist.regex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/es-es/artist.regex -------------------------------------------------------------------------------- /locale/es-es/by.dialog: -------------------------------------------------------------------------------- 1 | por 2 | -------------------------------------------------------------------------------- /locale/es-es/on_spotify.regex: -------------------------------------------------------------------------------- 1 | \s*(en|con|usando) spotify\s* 2 | -------------------------------------------------------------------------------- /locale/es-es/playlist.regex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/es-es/playlist.regex -------------------------------------------------------------------------------- /locale/es-es/saved_songs.regex: -------------------------------------------------------------------------------- 1 | (mis) canciones (guardadas|favoritas) (de spotify) 2 | -------------------------------------------------------------------------------- /locale/es-es/song.regex: -------------------------------------------------------------------------------- 1 | la (canción|pista) (?P.+) 2 | -------------------------------------------------------------------------------- /locale/fr-fr/And.dialog: -------------------------------------------------------------------------------- 1 | et 2 | -------------------------------------------------------------------------------- /locale/fr-fr/AvailableDevices.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/fr-fr/AvailableDevices.dialog -------------------------------------------------------------------------------- /locale/fr-fr/CurrentAlbum.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/fr-fr/CurrentAlbum.dialog -------------------------------------------------------------------------------- /locale/fr-fr/CurrentArtist.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/fr-fr/CurrentArtist.dialog -------------------------------------------------------------------------------- /locale/fr-fr/CurrentSong.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/fr-fr/CurrentSong.dialog -------------------------------------------------------------------------------- /locale/fr-fr/Device.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/fr-fr/Device.voc -------------------------------------------------------------------------------- /locale/fr-fr/DeviceNotFound.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/fr-fr/DeviceNotFound.dialog -------------------------------------------------------------------------------- /locale/fr-fr/FailedToStart.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/fr-fr/FailedToStart.dialog -------------------------------------------------------------------------------- /locale/fr-fr/For.dialog: -------------------------------------------------------------------------------- 1 | pour 2 | -------------------------------------------------------------------------------- /locale/fr-fr/For.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/fr-fr/For.voc -------------------------------------------------------------------------------- /locale/fr-fr/ForAlbum.dialog: -------------------------------------------------------------------------------- 1 | pour l'album 2 | -------------------------------------------------------------------------------- /locale/fr-fr/ForArtist.dialog: -------------------------------------------------------------------------------- 1 | pour l'artiste 2 | -------------------------------------------------------------------------------- /locale/fr-fr/ListeningToAlbumBy.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/fr-fr/ListeningToAlbumBy.dialog -------------------------------------------------------------------------------- /locale/fr-fr/ListeningToArtist.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/fr-fr/ListeningToArtist.dialog -------------------------------------------------------------------------------- /locale/fr-fr/ListeningToGenre.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/fr-fr/ListeningToGenre.dialog -------------------------------------------------------------------------------- /locale/fr-fr/ListeningToPlaylist.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/fr-fr/ListeningToPlaylist.dialog -------------------------------------------------------------------------------- /locale/fr-fr/ListeningToSavedSongs.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/fr-fr/ListeningToSavedSongs.dialog -------------------------------------------------------------------------------- /locale/fr-fr/ListeningToSongBy.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/fr-fr/ListeningToSongBy.dialog -------------------------------------------------------------------------------- /locale/fr-fr/NoArtistResults.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/fr-fr/NoArtistResults.dialog -------------------------------------------------------------------------------- /locale/fr-fr/NoDefaultDeviceAvailable.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/fr-fr/NoDefaultDeviceAvailable.dialog -------------------------------------------------------------------------------- /locale/fr-fr/NoDevicesAvailable.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/fr-fr/NoDevicesAvailable.dialog -------------------------------------------------------------------------------- /locale/fr-fr/NoResults.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/fr-fr/NoResults.dialog -------------------------------------------------------------------------------- /locale/fr-fr/NoSettingsReceived.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/fr-fr/NoSettingsReceived.dialog -------------------------------------------------------------------------------- /locale/fr-fr/NotAuthorized.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/fr-fr/NotAuthorized.dialog -------------------------------------------------------------------------------- /locale/fr-fr/NotConfigured.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/fr-fr/NotConfigured.dialog -------------------------------------------------------------------------------- /locale/fr-fr/NothingPlaying.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/fr-fr/NothingPlaying.dialog -------------------------------------------------------------------------------- /locale/fr-fr/OnAlbum.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/fr-fr/OnAlbum.dialog -------------------------------------------------------------------------------- /locale/fr-fr/PlaybackFailed.dialog: -------------------------------------------------------------------------------- 1 | Spotify n'a pas pu démarrer la lecture: {reason} 2 | -------------------------------------------------------------------------------- /locale/fr-fr/PlaylistNotFound.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/fr-fr/PlaylistNotFound.dialog -------------------------------------------------------------------------------- /locale/fr-fr/Search.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/fr-fr/Search.voc -------------------------------------------------------------------------------- /locale/fr-fr/ShuffleOff.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/fr-fr/ShuffleOff.intent -------------------------------------------------------------------------------- /locale/fr-fr/ShuffleOn.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/fr-fr/ShuffleOn.intent -------------------------------------------------------------------------------- /locale/fr-fr/Spotify.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/fr-fr/Spotify.voc -------------------------------------------------------------------------------- /locale/fr-fr/StopMusic.intent: -------------------------------------------------------------------------------- 1 | (Arrêter|éteindre) la (musique|spotify) 2 | -------------------------------------------------------------------------------- /locale/fr-fr/ToDevice.rx: -------------------------------------------------------------------------------- 1 | vers (?P.+) 2 | -------------------------------------------------------------------------------- /locale/fr-fr/Transfer.voc: -------------------------------------------------------------------------------- 1 | transférer 2 | déplacer 3 | -------------------------------------------------------------------------------- /locale/fr-fr/WhatAlbum.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/fr-fr/WhatAlbum.intent -------------------------------------------------------------------------------- /locale/fr-fr/WhatArtist.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/fr-fr/WhatArtist.intent -------------------------------------------------------------------------------- /locale/fr-fr/WhatSong.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/fr-fr/WhatSong.intent -------------------------------------------------------------------------------- /locale/fr-fr/album.regex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/fr-fr/album.regex -------------------------------------------------------------------------------- /locale/fr-fr/artist.regex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/fr-fr/artist.regex -------------------------------------------------------------------------------- /locale/fr-fr/by.dialog: -------------------------------------------------------------------------------- 1 | par 2 | -------------------------------------------------------------------------------- /locale/fr-fr/on_spotify.regex: -------------------------------------------------------------------------------- 1 | \s*(sur|avec|en utilisant) spotify\s* 2 | -------------------------------------------------------------------------------- /locale/fr-fr/playlist.regex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/fr-fr/playlist.regex -------------------------------------------------------------------------------- /locale/fr-fr/saved_songs.regex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/fr-fr/saved_songs.regex -------------------------------------------------------------------------------- /locale/fr-fr/song.regex: -------------------------------------------------------------------------------- 1 | (la|le)(morceau|musique|chanson|piste) (?P.+) 2 | -------------------------------------------------------------------------------- /locale/gl-es/And.dialog: -------------------------------------------------------------------------------- 1 | e 2 | -------------------------------------------------------------------------------- /locale/gl-es/AvailableDevices.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/gl-es/AvailableDevices.dialog -------------------------------------------------------------------------------- /locale/gl-es/CurrentAlbum.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/gl-es/CurrentAlbum.dialog -------------------------------------------------------------------------------- /locale/gl-es/CurrentArtist.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/gl-es/CurrentArtist.dialog -------------------------------------------------------------------------------- /locale/gl-es/CurrentSong.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/gl-es/CurrentSong.dialog -------------------------------------------------------------------------------- /locale/gl-es/Device.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/gl-es/Device.voc -------------------------------------------------------------------------------- /locale/gl-es/DeviceNotFound.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/gl-es/DeviceNotFound.dialog -------------------------------------------------------------------------------- /locale/gl-es/FailedToStart.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/gl-es/FailedToStart.dialog -------------------------------------------------------------------------------- /locale/gl-es/For.dialog: -------------------------------------------------------------------------------- 1 | para 2 | -------------------------------------------------------------------------------- /locale/gl-es/For.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/gl-es/For.voc -------------------------------------------------------------------------------- /locale/gl-es/ForAlbum.dialog: -------------------------------------------------------------------------------- 1 | para o álbum 2 | -------------------------------------------------------------------------------- /locale/gl-es/ForArtist.dialog: -------------------------------------------------------------------------------- 1 | para o artista 2 | -------------------------------------------------------------------------------- /locale/gl-es/ListeningToAlbumBy.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/gl-es/ListeningToAlbumBy.dialog -------------------------------------------------------------------------------- /locale/gl-es/ListeningToArtist.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/gl-es/ListeningToArtist.dialog -------------------------------------------------------------------------------- /locale/gl-es/ListeningToGenre.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/gl-es/ListeningToGenre.dialog -------------------------------------------------------------------------------- /locale/gl-es/ListeningToPlaylist.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/gl-es/ListeningToPlaylist.dialog -------------------------------------------------------------------------------- /locale/gl-es/ListeningToSavedSongs.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/gl-es/ListeningToSavedSongs.dialog -------------------------------------------------------------------------------- /locale/gl-es/ListeningToSongBy.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/gl-es/ListeningToSongBy.dialog -------------------------------------------------------------------------------- /locale/gl-es/NoArtistResults.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/gl-es/NoArtistResults.dialog -------------------------------------------------------------------------------- /locale/gl-es/NoDefaultDeviceAvailable.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/gl-es/NoDefaultDeviceAvailable.dialog -------------------------------------------------------------------------------- /locale/gl-es/NoDevicesAvailable.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/gl-es/NoDevicesAvailable.dialog -------------------------------------------------------------------------------- /locale/gl-es/NoResults.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/gl-es/NoResults.dialog -------------------------------------------------------------------------------- /locale/gl-es/NoSettingsReceived.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/gl-es/NoSettingsReceived.dialog -------------------------------------------------------------------------------- /locale/gl-es/NotAuthorized.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/gl-es/NotAuthorized.dialog -------------------------------------------------------------------------------- /locale/gl-es/NotConfigured.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/gl-es/NotConfigured.dialog -------------------------------------------------------------------------------- /locale/gl-es/NothingPlaying.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/gl-es/NothingPlaying.dialog -------------------------------------------------------------------------------- /locale/gl-es/OnAlbum.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/gl-es/OnAlbum.dialog -------------------------------------------------------------------------------- /locale/gl-es/PlaybackFailed.dialog: -------------------------------------------------------------------------------- 1 | Spotify non conseguíu iniciar a reprodución: {reason} 2 | -------------------------------------------------------------------------------- /locale/gl-es/PlaylistNotFound.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/gl-es/PlaylistNotFound.dialog -------------------------------------------------------------------------------- /locale/gl-es/Search.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/gl-es/Search.voc -------------------------------------------------------------------------------- /locale/gl-es/ShuffleOff.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/gl-es/ShuffleOff.intent -------------------------------------------------------------------------------- /locale/gl-es/ShuffleOn.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/gl-es/ShuffleOn.intent -------------------------------------------------------------------------------- /locale/gl-es/Spotify.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/gl-es/Spotify.voc -------------------------------------------------------------------------------- /locale/gl-es/StopMusic.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/gl-es/StopMusic.intent -------------------------------------------------------------------------------- /locale/gl-es/ToDevice.rx: -------------------------------------------------------------------------------- 1 | a (?P.+) 2 | -------------------------------------------------------------------------------- /locale/gl-es/Transfer.voc: -------------------------------------------------------------------------------- 1 | transferir 2 | mover 3 | -------------------------------------------------------------------------------- /locale/gl-es/WhatAlbum.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/gl-es/WhatAlbum.intent -------------------------------------------------------------------------------- /locale/gl-es/WhatArtist.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/gl-es/WhatArtist.intent -------------------------------------------------------------------------------- /locale/gl-es/WhatSong.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/gl-es/WhatSong.intent -------------------------------------------------------------------------------- /locale/gl-es/album.regex: -------------------------------------------------------------------------------- 1 | o (álbum) (?P.+) 2 | -------------------------------------------------------------------------------- /locale/gl-es/artist.regex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/gl-es/artist.regex -------------------------------------------------------------------------------- /locale/gl-es/by.dialog: -------------------------------------------------------------------------------- 1 | por 2 | -------------------------------------------------------------------------------- /locale/gl-es/on_spotify.regex: -------------------------------------------------------------------------------- 1 | \s*(no|con|usando) spotify\s* 2 | -------------------------------------------------------------------------------- /locale/gl-es/playlist.regex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/gl-es/playlist.regex -------------------------------------------------------------------------------- /locale/gl-es/saved_songs.regex: -------------------------------------------------------------------------------- 1 | (as miñas|) cancións de (spotify |)(favoritas|gardadas) 2 | -------------------------------------------------------------------------------- /locale/gl-es/song.regex: -------------------------------------------------------------------------------- 1 | (a |)(canción|pista) (?P.+) 2 | -------------------------------------------------------------------------------- /locale/it-it/And.dialog: -------------------------------------------------------------------------------- 1 | e 2 | -------------------------------------------------------------------------------- /locale/it-it/AvailableDevices.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/it-it/AvailableDevices.dialog -------------------------------------------------------------------------------- /locale/it-it/CurrentAlbum.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/it-it/CurrentAlbum.dialog -------------------------------------------------------------------------------- /locale/it-it/CurrentArtist.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/it-it/CurrentArtist.dialog -------------------------------------------------------------------------------- /locale/it-it/CurrentSong.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/it-it/CurrentSong.dialog -------------------------------------------------------------------------------- /locale/it-it/Device.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/it-it/Device.voc -------------------------------------------------------------------------------- /locale/it-it/DeviceNotFound.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/it-it/DeviceNotFound.dialog -------------------------------------------------------------------------------- /locale/it-it/FailedToStart.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/it-it/FailedToStart.dialog -------------------------------------------------------------------------------- /locale/it-it/For.dialog: -------------------------------------------------------------------------------- 1 | per 2 | -------------------------------------------------------------------------------- /locale/it-it/For.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/it-it/For.voc -------------------------------------------------------------------------------- /locale/it-it/ForAlbum.dialog: -------------------------------------------------------------------------------- 1 | per l'album 2 | -------------------------------------------------------------------------------- /locale/it-it/ForArtist.dialog: -------------------------------------------------------------------------------- 1 | dell'artista 2 | -------------------------------------------------------------------------------- /locale/it-it/ListeningToAlbumBy.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/it-it/ListeningToAlbumBy.dialog -------------------------------------------------------------------------------- /locale/it-it/ListeningToArtist.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/it-it/ListeningToArtist.dialog -------------------------------------------------------------------------------- /locale/it-it/ListeningToGenre.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/it-it/ListeningToGenre.dialog -------------------------------------------------------------------------------- /locale/it-it/ListeningToPlaylist.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/it-it/ListeningToPlaylist.dialog -------------------------------------------------------------------------------- /locale/it-it/ListeningToSavedSongs.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/it-it/ListeningToSavedSongs.dialog -------------------------------------------------------------------------------- /locale/it-it/ListeningToSongBy.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/it-it/ListeningToSongBy.dialog -------------------------------------------------------------------------------- /locale/it-it/NoArtistResults.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/it-it/NoArtistResults.dialog -------------------------------------------------------------------------------- /locale/it-it/NoDefaultDeviceAvailable.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/it-it/NoDefaultDeviceAvailable.dialog -------------------------------------------------------------------------------- /locale/it-it/NoDevicesAvailable.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/it-it/NoDevicesAvailable.dialog -------------------------------------------------------------------------------- /locale/it-it/NoResults.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/it-it/NoResults.dialog -------------------------------------------------------------------------------- /locale/it-it/NoSettingsReceived.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/it-it/NoSettingsReceived.dialog -------------------------------------------------------------------------------- /locale/it-it/NotAuthorized.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/it-it/NotAuthorized.dialog -------------------------------------------------------------------------------- /locale/it-it/NotConfigured.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/it-it/NotConfigured.dialog -------------------------------------------------------------------------------- /locale/it-it/NothingPlaying.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/it-it/NothingPlaying.dialog -------------------------------------------------------------------------------- /locale/it-it/OnAlbum.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/it-it/OnAlbum.dialog -------------------------------------------------------------------------------- /locale/it-it/PlaybackFailed.dialog: -------------------------------------------------------------------------------- 1 | Spotify non può avviare la riproduzione: {reason} 2 | -------------------------------------------------------------------------------- /locale/it-it/PlaylistNotFound.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/it-it/PlaylistNotFound.dialog -------------------------------------------------------------------------------- /locale/it-it/Search.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/it-it/Search.voc -------------------------------------------------------------------------------- /locale/it-it/ShuffleOff.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/it-it/ShuffleOff.intent -------------------------------------------------------------------------------- /locale/it-it/ShuffleOn.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/it-it/ShuffleOn.intent -------------------------------------------------------------------------------- /locale/it-it/Spotify.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/it-it/Spotify.voc -------------------------------------------------------------------------------- /locale/it-it/StopMusic.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/it-it/StopMusic.intent -------------------------------------------------------------------------------- /locale/it-it/ToDevice.rx: -------------------------------------------------------------------------------- 1 | su (?P.+) 2 | -------------------------------------------------------------------------------- /locale/it-it/Transfer.voc: -------------------------------------------------------------------------------- 1 | trasferimento 2 | sposta 3 | -------------------------------------------------------------------------------- /locale/it-it/WhatAlbum.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/it-it/WhatAlbum.intent -------------------------------------------------------------------------------- /locale/it-it/WhatArtist.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/it-it/WhatArtist.intent -------------------------------------------------------------------------------- /locale/it-it/WhatSong.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/it-it/WhatSong.intent -------------------------------------------------------------------------------- /locale/it-it/album.regex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/it-it/album.regex -------------------------------------------------------------------------------- /locale/it-it/artist.regex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/it-it/artist.regex -------------------------------------------------------------------------------- /locale/it-it/by.dialog: -------------------------------------------------------------------------------- 1 | di 2 | -------------------------------------------------------------------------------- /locale/it-it/on_spotify.regex: -------------------------------------------------------------------------------- 1 | \s*(su|con|usando) spotify\s* 2 | -------------------------------------------------------------------------------- /locale/it-it/playlist.regex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/it-it/playlist.regex -------------------------------------------------------------------------------- /locale/it-it/saved_songs.regex: -------------------------------------------------------------------------------- 1 | Le mie canzoni di spotify (piaciute|salvate) 2 | -------------------------------------------------------------------------------- /locale/it-it/song.regex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/it-it/song.regex -------------------------------------------------------------------------------- /locale/nl-nl/And.dialog: -------------------------------------------------------------------------------- 1 | en 2 | -------------------------------------------------------------------------------- /locale/nl-nl/AvailableDevices.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/nl-nl/AvailableDevices.dialog -------------------------------------------------------------------------------- /locale/nl-nl/CurrentAlbum.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/nl-nl/CurrentAlbum.dialog -------------------------------------------------------------------------------- /locale/nl-nl/CurrentArtist.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/nl-nl/CurrentArtist.dialog -------------------------------------------------------------------------------- /locale/nl-nl/CurrentSong.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/nl-nl/CurrentSong.dialog -------------------------------------------------------------------------------- /locale/nl-nl/Device.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/nl-nl/Device.voc -------------------------------------------------------------------------------- /locale/nl-nl/DeviceNotFound.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/nl-nl/DeviceNotFound.dialog -------------------------------------------------------------------------------- /locale/nl-nl/FailedToStart.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/nl-nl/FailedToStart.dialog -------------------------------------------------------------------------------- /locale/nl-nl/For.dialog: -------------------------------------------------------------------------------- 1 | voor 2 | -------------------------------------------------------------------------------- /locale/nl-nl/For.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/nl-nl/For.voc -------------------------------------------------------------------------------- /locale/nl-nl/ForAlbum.dialog: -------------------------------------------------------------------------------- 1 | voor het album 2 | -------------------------------------------------------------------------------- /locale/nl-nl/ForArtist.dialog: -------------------------------------------------------------------------------- 1 | voor de muzikant 2 | -------------------------------------------------------------------------------- /locale/nl-nl/ListeningToAlbumBy.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/nl-nl/ListeningToAlbumBy.dialog -------------------------------------------------------------------------------- /locale/nl-nl/ListeningToArtist.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/nl-nl/ListeningToArtist.dialog -------------------------------------------------------------------------------- /locale/nl-nl/ListeningToGenre.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/nl-nl/ListeningToGenre.dialog -------------------------------------------------------------------------------- /locale/nl-nl/ListeningToPlaylist.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/nl-nl/ListeningToPlaylist.dialog -------------------------------------------------------------------------------- /locale/nl-nl/ListeningToSavedSongs.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/nl-nl/ListeningToSavedSongs.dialog -------------------------------------------------------------------------------- /locale/nl-nl/ListeningToSongBy.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/nl-nl/ListeningToSongBy.dialog -------------------------------------------------------------------------------- /locale/nl-nl/NoArtistResults.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/nl-nl/NoArtistResults.dialog -------------------------------------------------------------------------------- /locale/nl-nl/NoDefaultDeviceAvailable.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/nl-nl/NoDefaultDeviceAvailable.dialog -------------------------------------------------------------------------------- /locale/nl-nl/NoDevicesAvailable.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/nl-nl/NoDevicesAvailable.dialog -------------------------------------------------------------------------------- /locale/nl-nl/NoResults.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/nl-nl/NoResults.dialog -------------------------------------------------------------------------------- /locale/nl-nl/NoSettingsReceived.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/nl-nl/NoSettingsReceived.dialog -------------------------------------------------------------------------------- /locale/nl-nl/NotAuthorized.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/nl-nl/NotAuthorized.dialog -------------------------------------------------------------------------------- /locale/nl-nl/NotConfigured.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/nl-nl/NotConfigured.dialog -------------------------------------------------------------------------------- /locale/nl-nl/NothingPlaying.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/nl-nl/NothingPlaying.dialog -------------------------------------------------------------------------------- /locale/nl-nl/OnAlbum.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/nl-nl/OnAlbum.dialog -------------------------------------------------------------------------------- /locale/nl-nl/PlaybackFailed.dialog: -------------------------------------------------------------------------------- 1 | Spotify kon afspelen niet starten: {reason} 2 | -------------------------------------------------------------------------------- /locale/nl-nl/PlaylistNotFound.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/nl-nl/PlaylistNotFound.dialog -------------------------------------------------------------------------------- /locale/nl-nl/Search.voc: -------------------------------------------------------------------------------- 1 | zoek 2 | zoek op 3 | -------------------------------------------------------------------------------- /locale/nl-nl/ShuffleOff.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/nl-nl/ShuffleOff.intent -------------------------------------------------------------------------------- /locale/nl-nl/ShuffleOn.intent: -------------------------------------------------------------------------------- 1 | zet spotify shuffle aan 2 | -------------------------------------------------------------------------------- /locale/nl-nl/Spotify.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/nl-nl/Spotify.voc -------------------------------------------------------------------------------- /locale/nl-nl/StopMusic.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/nl-nl/StopMusic.intent -------------------------------------------------------------------------------- /locale/nl-nl/ToDevice.rx: -------------------------------------------------------------------------------- 1 | naar (?P.+) 2 | -------------------------------------------------------------------------------- /locale/nl-nl/Transfer.voc: -------------------------------------------------------------------------------- 1 | verplaats 2 | verschuif 3 | -------------------------------------------------------------------------------- /locale/nl-nl/WhatAlbum.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/nl-nl/WhatAlbum.intent -------------------------------------------------------------------------------- /locale/nl-nl/WhatArtist.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/nl-nl/WhatArtist.intent -------------------------------------------------------------------------------- /locale/nl-nl/WhatSong.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/nl-nl/WhatSong.intent -------------------------------------------------------------------------------- /locale/nl-nl/album.regex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/nl-nl/album.regex -------------------------------------------------------------------------------- /locale/nl-nl/artist.regex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/nl-nl/artist.regex -------------------------------------------------------------------------------- /locale/nl-nl/by.dialog: -------------------------------------------------------------------------------- 1 | van 2 | -------------------------------------------------------------------------------- /locale/nl-nl/on_spotify.regex: -------------------------------------------------------------------------------- 1 | \s*(op|met|van) spotify\s* 2 | -------------------------------------------------------------------------------- /locale/nl-nl/playlist.regex: -------------------------------------------------------------------------------- 1 | (de|mijn) (spotify |)afspeellijst (?P.+) 2 | -------------------------------------------------------------------------------- /locale/nl-nl/saved_songs.regex: -------------------------------------------------------------------------------- 1 | (mijn |)(spotify|)(vind ik leuk|opgeslagen) nummers 2 | -------------------------------------------------------------------------------- /locale/nl-nl/song.regex: -------------------------------------------------------------------------------- 1 | het nummer (?P.+) 2 | -------------------------------------------------------------------------------- /locale/pl-pl/And.dialog: -------------------------------------------------------------------------------- 1 | i 2 | -------------------------------------------------------------------------------- /locale/pl-pl/AvailableDevices.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/pl-pl/AvailableDevices.dialog -------------------------------------------------------------------------------- /locale/pl-pl/CurrentAlbum.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/pl-pl/CurrentAlbum.dialog -------------------------------------------------------------------------------- /locale/pl-pl/CurrentArtist.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/pl-pl/CurrentArtist.dialog -------------------------------------------------------------------------------- /locale/pl-pl/CurrentSong.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/pl-pl/CurrentSong.dialog -------------------------------------------------------------------------------- /locale/pl-pl/Device.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/pl-pl/Device.voc -------------------------------------------------------------------------------- /locale/pl-pl/DeviceNotFound.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/pl-pl/DeviceNotFound.dialog -------------------------------------------------------------------------------- /locale/pl-pl/FailedToStart.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/pl-pl/FailedToStart.dialog -------------------------------------------------------------------------------- /locale/pl-pl/For.dialog: -------------------------------------------------------------------------------- 1 | na 2 | -------------------------------------------------------------------------------- /locale/pl-pl/For.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/pl-pl/For.voc -------------------------------------------------------------------------------- /locale/pl-pl/ForAlbum.dialog: -------------------------------------------------------------------------------- 1 | na album 2 | -------------------------------------------------------------------------------- /locale/pl-pl/ForArtist.dialog: -------------------------------------------------------------------------------- 1 | dla artysty 2 | -------------------------------------------------------------------------------- /locale/pl-pl/ListeningToAlbumBy.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/pl-pl/ListeningToAlbumBy.dialog -------------------------------------------------------------------------------- /locale/pl-pl/ListeningToArtist.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/pl-pl/ListeningToArtist.dialog -------------------------------------------------------------------------------- /locale/pl-pl/ListeningToGenre.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/pl-pl/ListeningToGenre.dialog -------------------------------------------------------------------------------- /locale/pl-pl/ListeningToPlaylist.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/pl-pl/ListeningToPlaylist.dialog -------------------------------------------------------------------------------- /locale/pl-pl/ListeningToSavedSongs.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/pl-pl/ListeningToSavedSongs.dialog -------------------------------------------------------------------------------- /locale/pl-pl/ListeningToSongBy.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/pl-pl/ListeningToSongBy.dialog -------------------------------------------------------------------------------- /locale/pl-pl/NoArtistResults.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/pl-pl/NoArtistResults.dialog -------------------------------------------------------------------------------- /locale/pl-pl/NoDefaultDeviceAvailable.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/pl-pl/NoDefaultDeviceAvailable.dialog -------------------------------------------------------------------------------- /locale/pl-pl/NoDevicesAvailable.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/pl-pl/NoDevicesAvailable.dialog -------------------------------------------------------------------------------- /locale/pl-pl/NoResults.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/pl-pl/NoResults.dialog -------------------------------------------------------------------------------- /locale/pl-pl/NoSettingsReceived.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/pl-pl/NoSettingsReceived.dialog -------------------------------------------------------------------------------- /locale/pl-pl/NotAuthorized.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/pl-pl/NotAuthorized.dialog -------------------------------------------------------------------------------- /locale/pl-pl/NotConfigured.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/pl-pl/NotConfigured.dialog -------------------------------------------------------------------------------- /locale/pl-pl/NothingPlaying.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/pl-pl/NothingPlaying.dialog -------------------------------------------------------------------------------- /locale/pl-pl/OnAlbum.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/pl-pl/OnAlbum.dialog -------------------------------------------------------------------------------- /locale/pl-pl/PlaybackFailed.dialog: -------------------------------------------------------------------------------- 1 | Spotify nie mógł rozpocząć odtwarzania: {reason} 2 | -------------------------------------------------------------------------------- /locale/pl-pl/PlaylistNotFound.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/pl-pl/PlaylistNotFound.dialog -------------------------------------------------------------------------------- /locale/pl-pl/Search.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/pl-pl/Search.voc -------------------------------------------------------------------------------- /locale/pl-pl/ShuffleOff.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/pl-pl/ShuffleOff.intent -------------------------------------------------------------------------------- /locale/pl-pl/ShuffleOn.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/pl-pl/ShuffleOn.intent -------------------------------------------------------------------------------- /locale/pl-pl/Spotify.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/pl-pl/Spotify.voc -------------------------------------------------------------------------------- /locale/pl-pl/StopMusic.intent: -------------------------------------------------------------------------------- 1 | (zatrzymaj|przestaj grać) (w|) (spotify|muzykę) 2 | -------------------------------------------------------------------------------- /locale/pl-pl/ToDevice.rx: -------------------------------------------------------------------------------- 1 | na urządzenie (?P.+) 2 | -------------------------------------------------------------------------------- /locale/pl-pl/Transfer.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/pl-pl/Transfer.voc -------------------------------------------------------------------------------- /locale/pl-pl/WhatAlbum.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/pl-pl/WhatAlbum.intent -------------------------------------------------------------------------------- /locale/pl-pl/WhatArtist.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/pl-pl/WhatArtist.intent -------------------------------------------------------------------------------- /locale/pl-pl/WhatSong.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/pl-pl/WhatSong.intent -------------------------------------------------------------------------------- /locale/pl-pl/album.regex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/pl-pl/album.regex -------------------------------------------------------------------------------- /locale/pl-pl/artist.regex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/pl-pl/artist.regex -------------------------------------------------------------------------------- /locale/pl-pl/by.dialog: -------------------------------------------------------------------------------- 1 | autorstwa 2 | -------------------------------------------------------------------------------- /locale/pl-pl/on_spotify.regex: -------------------------------------------------------------------------------- 1 | \s*(na|poprzez|używając) spotify\s* 2 | -------------------------------------------------------------------------------- /locale/pl-pl/playlist.regex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/pl-pl/playlist.regex -------------------------------------------------------------------------------- /locale/pl-pl/saved_songs.regex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/pl-pl/saved_songs.regex -------------------------------------------------------------------------------- /locale/pl-pl/song.regex: -------------------------------------------------------------------------------- 1 | (piosenkę|utwór) (?P.+) 2 | -------------------------------------------------------------------------------- /locale/pt-br/And.dialog: -------------------------------------------------------------------------------- 1 | e 2 | -------------------------------------------------------------------------------- /locale/pt-br/AvailableDevices.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/pt-br/AvailableDevices.dialog -------------------------------------------------------------------------------- /locale/pt-br/CurrentAlbum.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/pt-br/CurrentAlbum.dialog -------------------------------------------------------------------------------- /locale/pt-br/CurrentArtist.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/pt-br/CurrentArtist.dialog -------------------------------------------------------------------------------- /locale/pt-br/CurrentSong.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/pt-br/CurrentSong.dialog -------------------------------------------------------------------------------- /locale/pt-br/Device.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/pt-br/Device.voc -------------------------------------------------------------------------------- /locale/pt-br/DeviceNotFound.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/pt-br/DeviceNotFound.dialog -------------------------------------------------------------------------------- /locale/pt-br/FailedToStart.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/pt-br/FailedToStart.dialog -------------------------------------------------------------------------------- /locale/pt-br/For.dialog: -------------------------------------------------------------------------------- 1 | para 2 | -------------------------------------------------------------------------------- /locale/pt-br/For.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/pt-br/For.voc -------------------------------------------------------------------------------- /locale/pt-br/ForAlbum.dialog: -------------------------------------------------------------------------------- 1 | para o album 2 | -------------------------------------------------------------------------------- /locale/pt-br/ForArtist.dialog: -------------------------------------------------------------------------------- 1 | para o artista 2 | -------------------------------------------------------------------------------- /locale/pt-br/ListeningToAlbumBy.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/pt-br/ListeningToAlbumBy.dialog -------------------------------------------------------------------------------- /locale/pt-br/ListeningToArtist.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/pt-br/ListeningToArtist.dialog -------------------------------------------------------------------------------- /locale/pt-br/ListeningToGenre.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/pt-br/ListeningToGenre.dialog -------------------------------------------------------------------------------- /locale/pt-br/ListeningToPlaylist.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/pt-br/ListeningToPlaylist.dialog -------------------------------------------------------------------------------- /locale/pt-br/ListeningToSavedSongs.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/pt-br/ListeningToSavedSongs.dialog -------------------------------------------------------------------------------- /locale/pt-br/ListeningToSongBy.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/pt-br/ListeningToSongBy.dialog -------------------------------------------------------------------------------- /locale/pt-br/NoArtistResults.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/pt-br/NoArtistResults.dialog -------------------------------------------------------------------------------- /locale/pt-br/NoDefaultDeviceAvailable.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/pt-br/NoDefaultDeviceAvailable.dialog -------------------------------------------------------------------------------- /locale/pt-br/NoDevicesAvailable.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/pt-br/NoDevicesAvailable.dialog -------------------------------------------------------------------------------- /locale/pt-br/NoResults.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/pt-br/NoResults.dialog -------------------------------------------------------------------------------- /locale/pt-br/NoSettingsReceived.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/pt-br/NoSettingsReceived.dialog -------------------------------------------------------------------------------- /locale/pt-br/NotAuthorized.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/pt-br/NotAuthorized.dialog -------------------------------------------------------------------------------- /locale/pt-br/NotConfigured.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/pt-br/NotConfigured.dialog -------------------------------------------------------------------------------- /locale/pt-br/NothingPlaying.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/pt-br/NothingPlaying.dialog -------------------------------------------------------------------------------- /locale/pt-br/OnAlbum.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/pt-br/OnAlbum.dialog -------------------------------------------------------------------------------- /locale/pt-br/PlaybackFailed.dialog: -------------------------------------------------------------------------------- 1 | o Spotify não conseguiu iniciar a reprodução: {reason} 2 | -------------------------------------------------------------------------------- /locale/pt-br/PlaylistNotFound.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/pt-br/PlaylistNotFound.dialog -------------------------------------------------------------------------------- /locale/pt-br/Search.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/pt-br/Search.voc -------------------------------------------------------------------------------- /locale/pt-br/ShuffleOff.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/pt-br/ShuffleOff.intent -------------------------------------------------------------------------------- /locale/pt-br/ShuffleOn.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/pt-br/ShuffleOn.intent -------------------------------------------------------------------------------- /locale/pt-br/Spotify.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/pt-br/Spotify.voc -------------------------------------------------------------------------------- /locale/pt-br/StopMusic.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/pt-br/StopMusic.intent -------------------------------------------------------------------------------- /locale/pt-br/ToDevice.rx: -------------------------------------------------------------------------------- 1 | para (?P.+) 2 | -------------------------------------------------------------------------------- /locale/pt-br/Transfer.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/pt-br/Transfer.voc -------------------------------------------------------------------------------- /locale/pt-br/WhatAlbum.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/pt-br/WhatAlbum.intent -------------------------------------------------------------------------------- /locale/pt-br/WhatArtist.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/pt-br/WhatArtist.intent -------------------------------------------------------------------------------- /locale/pt-br/WhatSong.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/pt-br/WhatSong.intent -------------------------------------------------------------------------------- /locale/pt-br/album.regex: -------------------------------------------------------------------------------- 1 | o (álbum|disco) (?P.+) 2 | -------------------------------------------------------------------------------- /locale/pt-br/artist.regex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/pt-br/artist.regex -------------------------------------------------------------------------------- /locale/pt-br/by.dialog: -------------------------------------------------------------------------------- 1 | por 2 | -------------------------------------------------------------------------------- /locale/pt-br/on_spotify.regex: -------------------------------------------------------------------------------- 1 | \s*(no|com|usando) spotify\s* 2 | -------------------------------------------------------------------------------- /locale/pt-br/playlist.regex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/pt-br/playlist.regex -------------------------------------------------------------------------------- /locale/pt-br/saved_songs.regex: -------------------------------------------------------------------------------- 1 | (minhas|) músicas (spotify |)(favoritas|salvas) 2 | -------------------------------------------------------------------------------- /locale/pt-br/song.regex: -------------------------------------------------------------------------------- 1 | (a |)(canção|trilha) (?P.+) 2 | -------------------------------------------------------------------------------- /locale/ru-ru/And.dialog: -------------------------------------------------------------------------------- 1 | и 2 | -------------------------------------------------------------------------------- /locale/ru-ru/AvailableDevices.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/ru-ru/AvailableDevices.dialog -------------------------------------------------------------------------------- /locale/ru-ru/Device.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/ru-ru/Device.voc -------------------------------------------------------------------------------- /locale/ru-ru/FailedToStart.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/ru-ru/FailedToStart.dialog -------------------------------------------------------------------------------- /locale/ru-ru/For.dialog: -------------------------------------------------------------------------------- 1 | для 2 | -------------------------------------------------------------------------------- /locale/ru-ru/For.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/ru-ru/For.voc -------------------------------------------------------------------------------- /locale/ru-ru/ForAlbum.dialog: -------------------------------------------------------------------------------- 1 | для альбома 2 | -------------------------------------------------------------------------------- /locale/ru-ru/ForArtist.dialog: -------------------------------------------------------------------------------- 1 | для артиста 2 | -------------------------------------------------------------------------------- /locale/ru-ru/ListeningToAlbumBy.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/ru-ru/ListeningToAlbumBy.dialog -------------------------------------------------------------------------------- /locale/ru-ru/ListeningToArtist.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/ru-ru/ListeningToArtist.dialog -------------------------------------------------------------------------------- /locale/ru-ru/ListeningToGenre.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/ru-ru/ListeningToGenre.dialog -------------------------------------------------------------------------------- /locale/ru-ru/ListeningToPlaylist.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/ru-ru/ListeningToPlaylist.dialog -------------------------------------------------------------------------------- /locale/ru-ru/ListeningToSongBy.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/ru-ru/ListeningToSongBy.dialog -------------------------------------------------------------------------------- /locale/ru-ru/NoArtistResults.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/ru-ru/NoArtistResults.dialog -------------------------------------------------------------------------------- /locale/ru-ru/NoDefaultDeviceAvailable.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/ru-ru/NoDefaultDeviceAvailable.dialog -------------------------------------------------------------------------------- /locale/ru-ru/NoDevicesAvailable.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/ru-ru/NoDevicesAvailable.dialog -------------------------------------------------------------------------------- /locale/ru-ru/NoResults.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/ru-ru/NoResults.dialog -------------------------------------------------------------------------------- /locale/ru-ru/NotAuthorized.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/ru-ru/NotAuthorized.dialog -------------------------------------------------------------------------------- /locale/ru-ru/Search.voc: -------------------------------------------------------------------------------- 1 | найди 2 | посмотри 3 | -------------------------------------------------------------------------------- /locale/ru-ru/ShuffleOff.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/ru-ru/ShuffleOff.intent -------------------------------------------------------------------------------- /locale/ru-ru/ShuffleOn.intent: -------------------------------------------------------------------------------- 1 | начни случайный порядок 2 | -------------------------------------------------------------------------------- /locale/ru-ru/Spotify.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/ru-ru/Spotify.voc -------------------------------------------------------------------------------- /locale/ru-ru/ToDevice.rx: -------------------------------------------------------------------------------- 1 | на (?P.+) 2 | -------------------------------------------------------------------------------- /locale/ru-ru/Transfer.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/ru-ru/Transfer.voc -------------------------------------------------------------------------------- /locale/ru-ru/album.regex: -------------------------------------------------------------------------------- 1 | (альбом|запись) (?P.+) 2 | -------------------------------------------------------------------------------- /locale/ru-ru/artist.regex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/ru-ru/artist.regex -------------------------------------------------------------------------------- /locale/ru-ru/by.dialog: -------------------------------------------------------------------------------- 1 | от 2 | -------------------------------------------------------------------------------- /locale/ru-ru/on_spotify.regex: -------------------------------------------------------------------------------- 1 | \s*(на|с|используя) spotify\s* 2 | -------------------------------------------------------------------------------- /locale/ru-ru/playlist.regex: -------------------------------------------------------------------------------- 1 | (|мой) (спотифай |)плейлист (?P.+) 2 | -------------------------------------------------------------------------------- /locale/ru-ru/song.regex: -------------------------------------------------------------------------------- 1 | (песня|трек) (?P.+) 2 | -------------------------------------------------------------------------------- /locale/sv-se/And.dialog: -------------------------------------------------------------------------------- 1 | och 2 | -------------------------------------------------------------------------------- /locale/sv-se/AvailableDevices.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/sv-se/AvailableDevices.dialog -------------------------------------------------------------------------------- /locale/sv-se/CurrentAlbum.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/sv-se/CurrentAlbum.dialog -------------------------------------------------------------------------------- /locale/sv-se/CurrentArtist.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/sv-se/CurrentArtist.dialog -------------------------------------------------------------------------------- /locale/sv-se/CurrentSong.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/sv-se/CurrentSong.dialog -------------------------------------------------------------------------------- /locale/sv-se/Device.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/sv-se/Device.voc -------------------------------------------------------------------------------- /locale/sv-se/DeviceNotFound.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/sv-se/DeviceNotFound.dialog -------------------------------------------------------------------------------- /locale/sv-se/FailedToStart.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/sv-se/FailedToStart.dialog -------------------------------------------------------------------------------- /locale/sv-se/For.dialog: -------------------------------------------------------------------------------- 1 | efter 2 | -------------------------------------------------------------------------------- /locale/sv-se/For.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/sv-se/For.voc -------------------------------------------------------------------------------- /locale/sv-se/ForAlbum.dialog: -------------------------------------------------------------------------------- 1 | efter artisten 2 | -------------------------------------------------------------------------------- /locale/sv-se/ForArtist.dialog: -------------------------------------------------------------------------------- 1 | för artisten 2 | -------------------------------------------------------------------------------- /locale/sv-se/ListeningToAlbumBy.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/sv-se/ListeningToAlbumBy.dialog -------------------------------------------------------------------------------- /locale/sv-se/ListeningToArtist.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/sv-se/ListeningToArtist.dialog -------------------------------------------------------------------------------- /locale/sv-se/ListeningToGenre.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/sv-se/ListeningToGenre.dialog -------------------------------------------------------------------------------- /locale/sv-se/ListeningToPlaylist.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/sv-se/ListeningToPlaylist.dialog -------------------------------------------------------------------------------- /locale/sv-se/ListeningToSavedSongs.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/sv-se/ListeningToSavedSongs.dialog -------------------------------------------------------------------------------- /locale/sv-se/ListeningToSongBy.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/sv-se/ListeningToSongBy.dialog -------------------------------------------------------------------------------- /locale/sv-se/NoArtistResults.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/sv-se/NoArtistResults.dialog -------------------------------------------------------------------------------- /locale/sv-se/NoDefaultDeviceAvailable.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/sv-se/NoDefaultDeviceAvailable.dialog -------------------------------------------------------------------------------- /locale/sv-se/NoDevicesAvailable.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/sv-se/NoDevicesAvailable.dialog -------------------------------------------------------------------------------- /locale/sv-se/NoResults.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/sv-se/NoResults.dialog -------------------------------------------------------------------------------- /locale/sv-se/NoSettingsReceived.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/sv-se/NoSettingsReceived.dialog -------------------------------------------------------------------------------- /locale/sv-se/NotAuthorized.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/sv-se/NotAuthorized.dialog -------------------------------------------------------------------------------- /locale/sv-se/NotConfigured.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/sv-se/NotConfigured.dialog -------------------------------------------------------------------------------- /locale/sv-se/NothingPlaying.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/sv-se/NothingPlaying.dialog -------------------------------------------------------------------------------- /locale/sv-se/OnAlbum.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/sv-se/OnAlbum.dialog -------------------------------------------------------------------------------- /locale/sv-se/PlaybackFailed.dialog: -------------------------------------------------------------------------------- 1 | Spotify kunde inte starta uppspelningen: {reason} 2 | -------------------------------------------------------------------------------- /locale/sv-se/PlaylistNotFound.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/sv-se/PlaylistNotFound.dialog -------------------------------------------------------------------------------- /locale/sv-se/Search.voc: -------------------------------------------------------------------------------- 1 | sök 2 | leta efter 3 | -------------------------------------------------------------------------------- /locale/sv-se/ShuffleOff.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/sv-se/ShuffleOff.intent -------------------------------------------------------------------------------- /locale/sv-se/ShuffleOn.intent: -------------------------------------------------------------------------------- 1 | (slå på|aktivera|sätt) spotify (shuffle|blanda)(| till) 2 | -------------------------------------------------------------------------------- /locale/sv-se/Spotify.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/sv-se/Spotify.voc -------------------------------------------------------------------------------- /locale/sv-se/StopMusic.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/sv-se/StopMusic.intent -------------------------------------------------------------------------------- /locale/sv-se/ToDevice.rx: -------------------------------------------------------------------------------- 1 | till (?P.+) 2 | -------------------------------------------------------------------------------- /locale/sv-se/Transfer.voc: -------------------------------------------------------------------------------- 1 | överför 2 | flytta 3 | -------------------------------------------------------------------------------- /locale/sv-se/WhatAlbum.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/sv-se/WhatAlbum.intent -------------------------------------------------------------------------------- /locale/sv-se/WhatArtist.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/sv-se/WhatArtist.intent -------------------------------------------------------------------------------- /locale/sv-se/WhatSong.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/sv-se/WhatSong.intent -------------------------------------------------------------------------------- /locale/sv-se/album.regex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/sv-se/album.regex -------------------------------------------------------------------------------- /locale/sv-se/artist.regex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/sv-se/artist.regex -------------------------------------------------------------------------------- /locale/sv-se/by.dialog: -------------------------------------------------------------------------------- 1 | av 2 | -------------------------------------------------------------------------------- /locale/sv-se/on_spotify.regex: -------------------------------------------------------------------------------- 1 | \s*(på|med|använd) spotify\s* 2 | -------------------------------------------------------------------------------- /locale/sv-se/playlist.regex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/sv-se/playlist.regex -------------------------------------------------------------------------------- /locale/sv-se/saved_songs.regex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/sv-se/saved_songs.regex -------------------------------------------------------------------------------- /locale/sv-se/song.regex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/locale/sv-se/song.regex -------------------------------------------------------------------------------- /requirements.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/requirements.sh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | spotipy==2.17.1 2 | -------------------------------------------------------------------------------- /settingsmeta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/settingsmeta.json -------------------------------------------------------------------------------- /spotify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/spotify.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/test/__init__.py -------------------------------------------------------------------------------- /test/behave/spotify-basic.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/test/behave/spotify-basic.feature -------------------------------------------------------------------------------- /test/behave/steps/spotify_steps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/test/behave/steps/spotify_steps.py -------------------------------------------------------------------------------- /test/data/1999.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/test/data/1999.json -------------------------------------------------------------------------------- /test/data/abbey_road.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/test/data/abbey_road.json -------------------------------------------------------------------------------- /test/data/appetite_for_destruction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/test/data/appetite_for_destruction.json -------------------------------------------------------------------------------- /test/data/beatles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/test/data/beatles.json -------------------------------------------------------------------------------- /test/data/crazy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/test/data/crazy.json -------------------------------------------------------------------------------- /test/data/dont_stop_believin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/test/data/dont_stop_believin.json -------------------------------------------------------------------------------- /test/data/enter_sandman.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/test/data/enter_sandman.json -------------------------------------------------------------------------------- /test/data/miley_cyrus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/test/data/miley_cyrus.json -------------------------------------------------------------------------------- /test/data/queen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/test/data/queen.json -------------------------------------------------------------------------------- /test/intent/music.by.miley.cyrus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/test/intent/music.by.miley.cyrus.json -------------------------------------------------------------------------------- /test/intent/something.by.the.beatles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/test/intent/something.by.the.beatles.json -------------------------------------------------------------------------------- /test/intent/song.1999.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/test/intent/song.1999.json -------------------------------------------------------------------------------- /test/intent/songs.by.queen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/test/intent/songs.by.queen.json -------------------------------------------------------------------------------- /test/intent/the.album.abbey.road.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/test/intent/the.album.abbey.road.json -------------------------------------------------------------------------------- /test/intent/the.album.appetite.for.destruction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/test/intent/the.album.appetite.for.destruction.json -------------------------------------------------------------------------------- /test/intent/the.artist.the.beatles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/test/intent/the.artist.the.beatles.json -------------------------------------------------------------------------------- /test/intent/the.song.enter.sandman.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/test/intent/the.song.enter.sandman.json -------------------------------------------------------------------------------- /test/intent/the.track.crazy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/test/intent/the.track.crazy.json -------------------------------------------------------------------------------- /test/intent/track.1999.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/test/intent/track.1999.json -------------------------------------------------------------------------------- /test/intent/track.dont.stop.believin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/test/intent/track.dont.stop.believin.json -------------------------------------------------------------------------------- /test/intent/what.devices.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/spotify-skill/HEAD/test/intent/what.devices.json --------------------------------------------------------------------------------