-
Notifications
You must be signed in to change notification settings - Fork 578
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for Timer pause/unpause in danish (#2896)
- Loading branch information
Showing
7 changed files
with
109 additions
and
1 deletion.
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,5 @@ | ||
language: da | ||
responses: | ||
intents: | ||
HassPauseTimer: | ||
default: "Nedtælling pauset" |
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,5 @@ | ||
language: da | ||
responses: | ||
intents: | ||
HassUnpauseTimer: | ||
default: "Nedtælling genoptaget" |
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,12 @@ | ||
language: da | ||
intents: | ||
HassPauseTimer: | ||
data: | ||
- sentences: | ||
- "<timer_pause> [min] <timer>" | ||
- "<timer_pause> [min] <timer_start> <timer>" | ||
- "<timer_pause> [min] <timer> <i_på> <timer_start>" | ||
- "<timer_pause> [min] {area} <timer>" | ||
- "<timer_pause> [min] <timer> <i_på> {area}" | ||
- "<timer_pause> [min] {timer_name:name} <timer>" | ||
- "<timer_pause> [min] <timer> (kaldet|ved navn) {timer_name:name}" |
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,12 @@ | ||
language: da | ||
intents: | ||
HassUnpauseTimer: | ||
data: | ||
- sentences: | ||
- "<timer_unpause> [min] <timer>" | ||
- "<timer_unpause> [min] <timer_start> <timer>" | ||
- "<timer_unpause> [min] <timer> <i_på> <timer_start>" | ||
- "<timer_unpause> [min] {area} <timer>" | ||
- "<timer_unpause> [min] <timer> <i_på> {area}" | ||
- "<timer_unpause> [min] {timer_name:name} <timer>" | ||
- "<timer_unpause> [min] <timer> (kaldet|ved navn) {timer_name:name}" |
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,37 @@ | ||
language: da | ||
tests: | ||
- sentences: | ||
- "pause nedtælling" | ||
- "midlertidig stop min timer" | ||
intent: | ||
name: HassPauseTimer | ||
response: Nedtælling pauset | ||
|
||
- sentences: | ||
- "pause 1 time nedtælling" | ||
- "stands min timer på 1 time" | ||
intent: | ||
name: HassPauseTimer | ||
slots: | ||
start_hours: 1 | ||
response: Nedtælling pauset | ||
|
||
- sentences: | ||
- "pause pizza nedtælling" | ||
- "midlertidig stop min timer kaldet pizza" | ||
intent: | ||
name: HassPauseTimer | ||
slots: | ||
name: | ||
- "pizza " | ||
- "pizza" | ||
response: Nedtælling pauset | ||
|
||
- sentences: | ||
- "pause køkken timer" | ||
- "midlertidig stands nedtælling i køkken" | ||
intent: | ||
name: HassPauseTimer | ||
slots: | ||
area: Køkken | ||
response: Nedtælling pauset |
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,37 @@ | ||
language: da | ||
tests: | ||
- sentences: | ||
- "fortsæt nedtælling" | ||
- "genoptag min timer" | ||
intent: | ||
name: HassUnpauseTimer | ||
response: Nedtælling genoptaget | ||
|
||
- sentences: | ||
- "fortsæt 1 time nedtælling" | ||
- "genoptag nedtælling på 1 time" | ||
intent: | ||
name: HassUnpauseTimer | ||
slots: | ||
start_hours: 1 | ||
response: Nedtælling genoptaget | ||
|
||
- sentences: | ||
- "fortsæt pizza timer" | ||
- "genoptag nedtælling ved navn pizza" | ||
intent: | ||
name: HassUnpauseTimer | ||
slots: | ||
name: | ||
- "pizza " | ||
- "pizza" | ||
response: Nedtælling genoptaget | ||
|
||
- sentences: | ||
- "genoptag køkken timer" | ||
- "fortsæt nedtælling i køkken" | ||
intent: | ||
name: HassUnpauseTimer | ||
slots: | ||
area: Køkken | ||
response: Nedtælling genoptaget |