-
Notifications
You must be signed in to change notification settings - Fork 574
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New feature for adding HassRespond in swedish. (#2831)
- Loading branch information
1 parent
a7dc268
commit 3becdd8
Showing
4 changed files
with
93 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
language: sv | ||
responses: | ||
intents: | ||
HassRespond: | ||
default: "" | ||
hello: "Hej från Home Assistant." | ||
listening: "Nej, jag spelar bara in när du säger väckningsordet." | ||
data: "Din data skickas till din Home Assistant server." | ||
commands: "För att lära dig vad du kan fråga, besök H.A. punkt I.O. snedstreck voice." | ||
creator: "Jag skapades av det underbara Home Assistant communityt, som består av pysslare över hela världen." |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
language: sv | ||
intents: | ||
HassRespond: | ||
data: | ||
- sentences: | ||
- "säg {response}" | ||
|
||
- sentences: | ||
- "(hallå|hej) [home assistant]" | ||
response: hello | ||
|
||
- sentences: | ||
- "lyssnar du (alltid|jämt|ständigt)" | ||
- "spelar du (alltid|jämt|ständigt) in" | ||
response: listening | ||
|
||
- sentences: | ||
- "vart sparas [min] (data|datan) [någonstans]" | ||
response: data | ||
|
||
- sentences: | ||
- "vad kan jag (säga|fråga)" | ||
response: commands | ||
|
||
- sentences: | ||
- "vem (skapade|gjorde) dig" | ||
response: creator |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
language: sv | ||
tests: | ||
- sentences: | ||
- "säg även små grytor har öron" | ||
intent: | ||
name: HassRespond | ||
slots: | ||
response: "även små grytor har öron" | ||
response: "även små grytor har öron" | ||
|
||
- sentences: | ||
- "hej home assistant" | ||
- "hallå home assistant" | ||
- "hej" | ||
- "hallå" | ||
intent: | ||
name: HassRespond | ||
response: "Hej från Home Assistant." | ||
|
||
- sentences: | ||
- "lyssnar du alltid" | ||
- "lyssnar du jämt" | ||
- "lyssnar du ständigt" | ||
- "spelar du alltid in" | ||
- "spelar du jämt in" | ||
- "spelar du ständigt in" | ||
intent: | ||
name: HassRespond | ||
response: "Nej, jag spelar bara in när du säger väckningsordet." | ||
|
||
- sentences: | ||
- "vart sparas data" | ||
- "vart sparas min data" | ||
- "vart sparas min data någonstans" | ||
- "vart sparas datan" | ||
- "vart sparas datan någonstans" | ||
intent: | ||
name: HassRespond | ||
response: "Din data skickas till din Home Assistant server." | ||
|
||
- sentences: | ||
- "vad kan jag säga" | ||
- "vad kan jag fråga" | ||
intent: | ||
name: HassRespond | ||
response: "För att lära dig vad du kan fråga, besök H.A. punkt I.O. snedstreck voice." | ||
|
||
- sentences: | ||
- "vem skapade dig" | ||
- "vem gjorde dig" | ||
intent: | ||
name: HassRespond | ||
response: "Jag skapades av det underbara Home Assistant communityt, som består av pysslare över hela världen." |