Skip to content

Commit

Permalink
feat/skill_aliases
Browse files Browse the repository at this point in the history
  • Loading branch information
JarbasAl committed Jul 11, 2024
1 parent d24f1aa commit 368813a
Show file tree
Hide file tree
Showing 14 changed files with 30 additions and 2 deletions.
6 changes: 4 additions & 2 deletions __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,10 @@
class SpotifySkill(OVOSCommonPlaybackSkill):
def __init__(self, *args, **kwargs):
self.spotify = SpotifyClient()
super().__init__(*args, **kwargs, supported_media=[MediaType.MUSIC],
skill_icon=join(dirname(__file__), "spotify.png"))
super().__init__(supported_media=[MediaType.MUSIC],
skill_icon=join(dirname(__file__), "spotify.png"),
skill_voc_filename="spotify_skill",
*args, **kwargs, )
if not self.has_configured_players():
LOG.warning("SPOTIFY NOT YET CONFIGURED!")

Expand Down
2 changes: 2 additions & 0 deletions locale/ca-es/spotify_skill.voc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
spotify
spotify skill
2 changes: 2 additions & 0 deletions locale/da-dk/spotify_skill.voc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
spotify
spotify skill
2 changes: 2 additions & 0 deletions locale/de-de/spotify_skill.voc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
spotify
spotify skill
2 changes: 2 additions & 0 deletions locale/en-us/spotify_skill.voc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
spotify
spotify skill
2 changes: 2 additions & 0 deletions locale/es-es/spotify_skill.voc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
spotify
spotify skill
2 changes: 2 additions & 0 deletions locale/fr-fr/spotify_skill.voc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
spotify
spotify skill
2 changes: 2 additions & 0 deletions locale/gl-es/spotify_skill.voc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
spotify
spotify skill
2 changes: 2 additions & 0 deletions locale/it-it/spotify_skill.voc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
spotify
spotify skill
2 changes: 2 additions & 0 deletions locale/nl-nl/spotify_skill.voc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
spotify
spotify skill
2 changes: 2 additions & 0 deletions locale/pl-pl/spotify_skill.voc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
spotify
spotify skill
2 changes: 2 additions & 0 deletions locale/pt-br/spotify_skill.voc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
spotify
spotify skill
2 changes: 2 additions & 0 deletions locale/ru-ru/spotify_skill.voc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
spotify
spotify skill
2 changes: 2 additions & 0 deletions locale/sv-se/spotify_skill.voc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
spotify
spotify skill

0 comments on commit 368813a

Please sign in to comment.