home-assistant-intents 2024.7.3__py3-none-any.whl → 2024.7.29__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -235,6 +235,11 @@
235
235
  },
236
236
  "HassGetWeather": {
237
237
  "data": [
238
+ {
239
+ "sentences": [
240
+ "wie ist[ das] Wetter"
241
+ ]
242
+ },
238
243
  {
239
244
  "sentences": [
240
245
  "wie ist[ das] Wetter[ (für|in) <name>]",
@@ -247,6 +252,17 @@
247
252
  }
248
253
  ]
249
254
  },
255
+ "HassGetCurrentTime": {
256
+ "data": [
257
+ {
258
+ "sentences": [
259
+ "wie spät ist es",
260
+ "(wie viel|wieviel) uhr (ist es|haben wir)[ jetzt]",
261
+ "(nenn[e]|gib|gebe) mir die uhrzeit"
262
+ ]
263
+ }
264
+ ]
265
+ },
250
266
  "HassTurnOn": {
251
267
  "data": [
252
268
  {
@@ -554,6 +570,16 @@
554
570
  }
555
571
  ]
556
572
  },
573
+ "HassGetCurrentDate": {
574
+ "data": [
575
+ {
576
+ "sentences": [
577
+ "<welche> (tag|datum) (ist|haben wir) heute",
578
+ "(nenn[e]|gib|gebe) mir das[ (heutige|aktuelle)] datum"
579
+ ]
580
+ }
581
+ ]
582
+ },
557
583
  "HassIncreaseTimer": {
558
584
  "data": [
559
585
  {
@@ -668,7 +694,7 @@
668
694
  "data": [
669
695
  {
670
696
  "sentences": [
671
- "[<starte> ]nächste[r|s|n][ <song>][ (<an>|am)][ artikel_bestimmt] <name>"
697
+ "[<starte> ]<naechster>[ <song>][ (<an>|am)][ <artikel_bestimmt>] <name>"
672
698
  ],
673
699
  "requires_context": {
674
700
  "domain": "media_player"
@@ -676,7 +702,7 @@
676
702
  },
677
703
  {
678
704
  "sentences": [
679
- "[<starte> ]nächste[r|s|n][ <song>]"
705
+ "[<starte> ]<naechster>[ <song>]"
680
706
  ],
681
707
  "requires_context": {
682
708
  "area": {
@@ -686,7 +712,7 @@
686
712
  },
687
713
  {
688
714
  "sentences": [
689
- "[<starte> ]nächste[r|s|n][ <song>] <area>"
715
+ "[<starte> ]<naechster>[ <song>] <area>"
690
716
  ]
691
717
  }
692
718
  ]
@@ -778,12 +804,7 @@
778
804
  "<timer_set>[ einen] <timer_duration> Timer namens {timer_name:name}",
779
805
  "<timer_set>[ einen] Timer namens {timer_name:name} für <timer_duration>",
780
806
  "<timer_set>[ einen] Timer für <timer_duration> namens {timer_name:name}"
781
- ],
782
- "requires_context": {
783
- "area": {
784
- "slot": false
785
- }
786
- }
807
+ ]
787
808
  },
788
809
  {
789
810
  "sentences": [
@@ -1331,6 +1352,22 @@
1331
1352
  "device_class": "garage_door"
1332
1353
  }
1333
1354
  },
1355
+ {
1356
+ "sentences": [
1357
+ "(ist|steht) <name>[ <area>] {bs_window_states:state}",
1358
+ "(ist|steht) <name> {bs_window_states:state} <area>",
1359
+ "(ist|steht) <area> <name> {bs_window_states:state}"
1360
+ ],
1361
+ "response": "einzeln_janein",
1362
+ "requires_context": {
1363
+ "domain": "binary_sensor",
1364
+ "device_class": "window"
1365
+ },
1366
+ "slots": {
1367
+ "domain": "binary_sensor",
1368
+ "device_class": "window"
1369
+ }
1370
+ },
1334
1371
  {
1335
1372
  "sentences": [
1336
1373
  "(ist|wurde) <name>[ <area>] {bs_gas_states:state}",
@@ -1599,6 +1636,33 @@
1599
1636
  }
1600
1637
  ]
1601
1638
  },
1639
+ "HassMediaPrevious": {
1640
+ "data": [
1641
+ {
1642
+ "sentences": [
1643
+ "[(<starte>|<wiederhole>) ]<vorheriger_letzter>[ <song>][ (<an>|am)][ <artikel_bestimmt>] <name>"
1644
+ ],
1645
+ "requires_context": {
1646
+ "domain": "media_player"
1647
+ }
1648
+ },
1649
+ {
1650
+ "sentences": [
1651
+ "[(<starte>|<wiederhole>) ]<vorheriger_letzter>[ <song>]"
1652
+ ],
1653
+ "requires_context": {
1654
+ "area": {
1655
+ "slot": true
1656
+ }
1657
+ }
1658
+ },
1659
+ {
1660
+ "sentences": [
1661
+ "[(<starte>|<wiederhole>) ]<vorheriger_letzter>[ <song>] <area>"
1662
+ ]
1663
+ }
1664
+ ]
1665
+ },
1602
1666
  "HassListAddItem": {
1603
1667
  "data": [
1604
1668
  {
@@ -1737,6 +1801,9 @@
1737
1801
  "HassMediaPause": {
1738
1802
  "default": "Pausiert"
1739
1803
  },
1804
+ "HassGetCurrentTime": {
1805
+ "default": "{% set hour_str = '{0:02d}'.format(slots.time.hour) %} {% set minute_str = '{0:02d}'.format(slots.time.minute) %} Es ist {{ hour_str }}:{{ minute_str }}\n"
1806
+ },
1740
1807
  "HassPauseTimer": {
1741
1808
  "default": "Timer pausiert"
1742
1809
  },
@@ -1746,9 +1813,15 @@
1746
1813
  "HassListAddItem": {
1747
1814
  "item_added": "{{ slots.item }} hinzugefügt"
1748
1815
  },
1816
+ "HassGetCurrentDate": {
1817
+ "default": "{% set months = {\n 1: 'Januar',\n 2: 'Februar',\n 3: 'März',\n 4: 'April',\n 5: 'Mai',\n 6: 'Juni',\n 7: 'Juli',\n 8: 'August',\n 9: 'September',\n 10: 'Oktober',\n 11: 'November',\n 12: 'Dezember',\n} %} {% set weekday = [\n 'Montag',\n 'Dienstag',\n 'Mittwoch',\n 'Donnerstag',\n 'Freitag',\n 'Samstag',\n 'Sonntag'\n] %} Es ist {{ weekday[slots.date.weekday()] }} der {{ slots.date.day }}. {{ months[slots.date.month] }} {{ slots.date.year }}\n"
1818
+ },
1749
1819
  "HassUnpauseTimer": {
1750
1820
  "default": "Timer fortgesetzt"
1751
1821
  },
1822
+ "HassMediaPrevious": {
1823
+ "default": "Spiele vorheriges"
1824
+ },
1752
1825
  "HassGetWeather": {
1753
1826
  "default": "{% set weather_condition = {\n 'clear': 'und klar',\n 'clear-night': 'und klare Nacht',\n 'cloudy': 'und bewölkt',\n 'exceptional': 'und außergewöhnlich',\n 'fog': 'mit Nebel',\n 'hail': 'mit Hagel',\n 'lightning': 'mit Gewitter',\n 'lightning-rainy': 'mit Gewitter und Regen',\n 'partlycloudy': 'und teilweise bewölkt',\n 'pouring': 'und strömender Regen',\n 'rainy': 'und regnerisch',\n 'snowy': 'und verschneit',\n 'snowy-rainy': 'mit Schnee und Regen',\n 'sunny': 'und sonnig',\n 'windy': 'und windig',\n 'windy-variant': 'mit Wind und Wolken'\n} %} {{ state.attributes.get('temperature') }} {{ state.attributes.get('temperature_unit') }} {{ weather_condition.get((state.state | string).lower(), \"\") }}\n"
1754
1827
  },
@@ -1772,7 +1845,7 @@
1772
1845
  "default": "Timer gestoppt"
1773
1846
  },
1774
1847
  "HassClimateGetTemperature": {
1775
- "default": "{{ state_attr(state.entity_id, 'current_temperature') }}"
1848
+ "default": "{{ state_attr(state.entity_id, 'current_temperature') }} Grad"
1776
1849
  },
1777
1850
  "HassSetVolume": {
1778
1851
  "default": "Lautstärke festgelegt"
@@ -2059,6 +2132,18 @@
2059
2132
  }
2060
2133
  ]
2061
2134
  },
2135
+ "bs_window_states": {
2136
+ "values": [
2137
+ {
2138
+ "in": "(auf|offen|geöffnet|gekippt)",
2139
+ "out": "on"
2140
+ },
2141
+ {
2142
+ "in": "(zu|geschlossen)",
2143
+ "out": "off"
2144
+ }
2145
+ ]
2146
+ },
2062
2147
  "bs_gas_states": {
2063
2148
  "values": [
2064
2149
  {
@@ -2197,6 +2282,7 @@
2197
2282
  "auf": "(auf|hoch|rauf|nach oben)",
2198
2283
  "zu": "(zu|[he]runter|nach unten)",
2199
2284
  "von_dem": "(von[ dem]|vom)",
2285
+ "zu_dem": "(zu[ dem]|zum)",
2200
2286
  "alle": "((alle|sämtliche)[r]|jede[r|s|n]|<artikel> (ganze|komplette|sämtliche)[n])[ der]",
2201
2287
  "schliessen": "(schlie(ß|ss)[e|en]|zumachen|zu machen)",
2202
2288
  "öffnen": "(öffne[n]|aufmachen|auf machen)",
@@ -2230,7 +2316,7 @@
2230
2316
  "batterie": "<artikel> (Batterie[n]|Akku[s])",
2231
2317
  "irgend": "(irgend(<artikel_unbestimmt>[s]|welche[s]|wo)|(einige|manche)[s]|<artikel_unbestimmt>[s]) <artikel_bestimmt>",
2232
2318
  "etwas": "[irgend][et]was",
2233
- "welche": "(welche[r|s]|was für[ <artikel_unbestimmt>[s]]) <artikel_bestimmt>",
2319
+ "welche": "(welche[r|s|n]|was für[ <artikel_unbestimmt>[s]]) <artikel_bestimmt>",
2234
2320
  "wieviel": "(wie[ ]viel[e]|welche Anzahl[ (an|von)])",
2235
2321
  "ladestand": "<artikel>[ Lade][zu]Stand",
2236
2322
  "co": "Kohlen[stoff]monoxid",
@@ -2252,7 +2338,10 @@
2252
2338
  "timer_start_minutes": "{timer_minutes:start_minutes} Minute[n][ [und]{timer_seconds:start_seconds} Sekunde[n]]",
2253
2339
  "timer_start_hours": "{timer_hours:start_hours} Stunde[n][ [und]{timer_minutes:start_minutes} Minute[n]][ [und]{timer_seconds:start_seconds} Sekunde[n]]",
2254
2340
  "timer_start": "<timer_start_seconds>|<timer_start_minutes>|<timer_start_hours>",
2341
+ "naechster": "nächste[r|s|n]",
2342
+ "vorheriger_letzter": "(vorherige|letzte)[r|s|n]",
2255
2343
  "starte": "(starte|spiele)",
2344
+ "wiederhole": "(wiederhole[ <artikel_bestimmt>]|zurück <zu_dem>)",
2256
2345
  "song": "(Titel|Lied|Song|Track|Stück)",
2257
2346
  "media_type": "(musik|[fernseh]sendung|gerät[e])"
2258
2347
  },
@@ -196,7 +196,7 @@
196
196
  },
197
197
  {
198
198
  "sentences": [
199
- "unlock <name> [in <area>]"
199
+ "unlock <name>[ in <area>]"
200
200
  ],
201
201
  "requires_context": {
202
202
  "domain": "lock"
@@ -205,8 +205,8 @@
205
205
  },
206
206
  {
207
207
  "sentences": [
208
- "unlock [all] [the] [(lock|door)[s]] [in] <area>",
209
- "unlock [all] <area> [(lock|door)[s]]"
208
+ "unlock[ all] <lockable>[ in] <area>",
209
+ "unlock[ all] <area>[ <lockable>]"
210
210
  ],
211
211
  "slots": {
212
212
  "domain": "lock",
@@ -1093,7 +1093,7 @@
1093
1093
  },
1094
1094
  {
1095
1095
  "sentences": [
1096
- "is <name> {lock_states:state} [in <area>]"
1096
+ "(is|are) <name> ([<currently>];{lock_states:state}[ in <area>])"
1097
1097
  ],
1098
1098
  "response": "one_yesno",
1099
1099
  "requires_context": {
@@ -1105,8 +1105,8 @@
1105
1105
  },
1106
1106
  {
1107
1107
  "sentences": [
1108
- "(is|are) [there] any door[s] {lock_states:state} [in <area>]",
1109
- "(is|are) [there] any {lock_states:state} door[s] [in <area>]"
1108
+ "((is|are)[ there]|do I have) any <lockable> ([<currently>];{lock_states:state}[ in <area>])",
1109
+ "((is|are)[ there]|do I have) any ([<currently>];{lock_states:state} <lockable>[ in <area>])"
1110
1110
  ],
1111
1111
  "response": "any",
1112
1112
  "slots": {
@@ -1115,7 +1115,7 @@
1115
1115
  },
1116
1116
  {
1117
1117
  "sentences": [
1118
- "are all [the] door[s] {lock_states:state} [in <area>]"
1118
+ "are all <lockable> ([<currently>];{lock_states:state}[ in <area>])"
1119
1119
  ],
1120
1120
  "response": "all",
1121
1121
  "slots": {
@@ -1124,7 +1124,7 @@
1124
1124
  },
1125
1125
  {
1126
1126
  "sentences": [
1127
- "(which|what) door[s] (is|are) {lock_states:state} [in <area>]"
1127
+ "(which|what) <lockable> (is|are) ([<currently>];{lock_states:state}[ in <area>])"
1128
1128
  ],
1129
1129
  "response": "which",
1130
1130
  "slots": {
@@ -1133,13 +1133,25 @@
1133
1133
  },
1134
1134
  {
1135
1135
  "sentences": [
1136
- "how many door[s] (is|are) {lock_states:state} [in <area>]"
1136
+ "how many <lockable> (is|are) ([<currently>];{lock_states:state}[ in <area>])"
1137
1137
  ],
1138
1138
  "response": "how_many",
1139
1139
  "slots": {
1140
1140
  "domain": "lock"
1141
1141
  }
1142
1142
  },
1143
+ {
1144
+ "sentences": [
1145
+ "tell me the[ current] status of <name>[ in <area>][ <currently>]"
1146
+ ],
1147
+ "response": "one",
1148
+ "requires_context": {
1149
+ "domain": "lock"
1150
+ },
1151
+ "slots": {
1152
+ "domain": "lock"
1153
+ }
1154
+ },
1143
1155
  {
1144
1156
  "sentences": [
1145
1157
  "(do you know|tell me|<what_is>) [the [current] (state|value) of] <name> [in <area>]"
@@ -2515,6 +2527,16 @@
2515
2527
  }
2516
2528
  ]
2517
2529
  },
2530
+ "HassGetCurrentTime": {
2531
+ "data": [
2532
+ {
2533
+ "sentences": [
2534
+ "(<what_is>|tell me) the [current] time",
2535
+ "what time is it[ [right ]now]"
2536
+ ]
2537
+ }
2538
+ ]
2539
+ },
2518
2540
  "HassTurnOn": {
2519
2541
  "data": [
2520
2542
  {
@@ -2692,7 +2714,7 @@
2692
2714
  },
2693
2715
  {
2694
2716
  "sentences": [
2695
- "lock <name> [in <area>]"
2717
+ "lock <name>[ in <area>]"
2696
2718
  ],
2697
2719
  "requires_context": {
2698
2720
  "domain": "lock"
@@ -2701,8 +2723,8 @@
2701
2723
  },
2702
2724
  {
2703
2725
  "sentences": [
2704
- "lock [all] [the] [(lock|door)[s]] [in] <area>",
2705
- "lock [all] <area> [(lock|door)[s]]"
2726
+ "lock[ all] <lockable>[ in] <area>",
2727
+ "lock[ all] <area>[ <lockable>]"
2706
2728
  ],
2707
2729
  "slots": {
2708
2730
  "domain": "lock",
@@ -2864,6 +2886,16 @@
2864
2886
  }
2865
2887
  ]
2866
2888
  },
2889
+ "HassGetCurrentDate": {
2890
+ "data": [
2891
+ {
2892
+ "sentences": [
2893
+ "(<what_is>|tell me) (todays|today's|the current) date",
2894
+ "(<what_is>|tell me) the date[ today]"
2895
+ ]
2896
+ }
2897
+ ]
2898
+ },
2867
2899
  "HassIncreaseTimer": {
2868
2900
  "data": [
2869
2901
  {
@@ -3378,6 +3410,9 @@
3378
3410
  "HassMediaPause": {
3379
3411
  "default": "Paused"
3380
3412
  },
3413
+ "HassGetCurrentTime": {
3414
+ "default": "{% set minute_str = '{0:02d}'.format(slots.time.minute) %}\n{% if slots.time.hour <= 12: %} {{ slots.time.hour }}:{{ minute_str }} AM {% else: %} {{ slots.time.hour - 12 }}:{{ minute_str }} PM {% endif %}\n"
3415
+ },
3381
3416
  "HassPauseTimer": {
3382
3417
  "default": "Timer paused"
3383
3418
  },
@@ -3387,6 +3422,9 @@
3387
3422
  "HassListAddItem": {
3388
3423
  "item_added": "Added {{ slots.item }}"
3389
3424
  },
3425
+ "HassGetCurrentDate": {
3426
+ "default": "{% set months = {\n 1: 'January',\n 2: 'February',\n 3: 'March',\n 4: 'April',\n 5: 'May',\n 6: 'June',\n 7: 'July',\n 8: 'August',\n 9: 'September',\n 10: 'October',\n 11: 'November',\n 12: 'December',\n} %} {% set ordinal = {\n 1: '1st',\n 2: '2nd',\n 3: '3rd',\n 4: '4th',\n 5: '5th',\n 6: '6th',\n 7: '7th',\n 8: '8th',\n 9: '9th',\n 10: '10th',\n 11: '11th',\n 12: '12th',\n 13: '13th',\n 14: '14th',\n 15: '15th',\n 16: '16th',\n 17: '17th',\n 18: '18th',\n 19: '19th',\n 20: '20th',\n 21: '21st',\n 22: '22nd',\n 23: '23rd',\n 24: '24th',\n 25: '25th',\n 26: '26th',\n 27: '27th',\n 28: '28th',\n 29: '29th',\n 30: '30th',\n 31: '31st',\n } %}\n{{ months[slots.date.month] }} {{ ordinal[slots.date.day] }}, {{ slots.date.year }}\n"
3427
+ },
3390
3428
  "HassUnpauseTimer": {
3391
3429
  "default": "Timer resumed"
3392
3430
  },
@@ -3579,7 +3617,7 @@
3579
3617
  "lock_states": {
3580
3618
  "values": [
3581
3619
  {
3582
- "in": "locked",
3620
+ "in": "[securely ]locked",
3583
3621
  "out": "locked"
3584
3622
  },
3585
3623
  {
@@ -3974,6 +4012,7 @@
3974
4012
  "area": "[the] {area}",
3975
4013
  "floor": "[the] {floor}[ floor]",
3976
4014
  "what_is": "(what's|whats|what is)",
4015
+ "lockable": "[the ](lock|door|window|gate|garage door|shutter)[s]",
3977
4016
  "where_is": "(where's|wheres|where is)",
3978
4017
  "brightness": "{brightness}[[ ]%| percent]",
3979
4018
  "light": "[the] (light|lights|lighting)",
@@ -3987,6 +4026,7 @@
3987
4026
  "in": "(in|on|at|of)",
3988
4027
  "position": "{position}[[ ]%| percent]",
3989
4028
  "volume": "{volume:volume_level}[[ ]%| percent]",
4029
+ "currently": "(currently|presently|right now|at the moment)",
3990
4030
  "all": "(all|all of|every|every single|each|each and every)",
3991
4031
  "home": "(home|house|appartment|flat)",
3992
4032
  "everywhere": "(everywhere|in all [the] rooms|in every room[s]|in each room|in the <home>)",
@@ -2574,6 +2574,16 @@
2574
2574
  }
2575
2575
  ]
2576
2576
  },
2577
+ "HassGetCurrentTime": {
2578
+ "data": [
2579
+ {
2580
+ "sentences": [
2581
+ "[<dime> ]qué hora es[ ahora]",
2582
+ "<dime> la hora[ actual]"
2583
+ ]
2584
+ }
2585
+ ]
2586
+ },
2577
2587
  "HassTurnOn": {
2578
2588
  "data": [
2579
2589
  {
@@ -2884,6 +2894,17 @@
2884
2894
  }
2885
2895
  ]
2886
2896
  },
2897
+ "HassGetCurrentDate": {
2898
+ "data": [
2899
+ {
2900
+ "sentences": [
2901
+ "[<dime> ]qué (día|fecha) es[ hoy]",
2902
+ "[<dime> ](a|en) qué (día|fecha) estamos[ hoy]",
2903
+ "<dime> la fecha"
2904
+ ]
2905
+ }
2906
+ ]
2907
+ },
2887
2908
  "HassIncreaseTimer": {
2888
2909
  "data": [
2889
2910
  {
@@ -3342,6 +3363,9 @@
3342
3363
  "HassMediaPause": {
3343
3364
  "default": "Reproducción en pausa"
3344
3365
  },
3366
+ "HassGetCurrentTime": {
3367
+ "default": "{% set next_hour = 0 %} {% set minute_str = \"\" %} {% if slots.time.minute > 0: %}\n {% if slots.time.minute == 15: %}\n {% set minute_str = \"y cuarto\" %}\n {% elif slots.time.minute == 30: %}\n {% set minute_str = \"y media\" %}\n {% elif slots.time.minute < 30: %}\n {% set minute_str = 'y {0:01d}'.format(slots.time.minute) %}\n {% else: %}\n {% set next_hour = 1 %}\n {% if slots.time.minute == 45: %}\n {% set minute_str = \"menos cuarto\" %}\n {% else: %}\n {% set minute_str = 'menos {0:01d}'.format(60 - slots.time.minute) %}\n {% endif %}\n {% endif %}\n{% endif %} {% if slots.time.hour + next_hour > 12: %}\n {% set hour12 = slots.time.hour + next_hour - 12 %}\n{% elif slots.time.hour + next_hour == 0: %}\n {% set hour12 = 12 %}\n{% else: %}\n {% set hour12 = slots.time.hour + next_hour %}\n{% endif %} {% if hour12 == 1 : %}\n Es la\n{% else: %}\n Son las\n{% endif %} {{hour12}} {{minute_str}} {% if slots.time.hour == 0: %}\n de la medianoche\n{% elif slots.time.hour < 4: %}\n de la madrugada\n{% elif slots.time.hour < 12: %}\n de la mañana\n{% elif slots.time.hour == 12: %}\n del mediodía\n{% elif slots.time.hour < 21: %}\n de la tarde\n{% else: %}\n de la noche\n{% endif %}\n"
3368
+ },
3345
3369
  "HassPauseTimer": {
3346
3370
  "default": "Temporizador en pausa"
3347
3371
  },
@@ -3354,6 +3378,9 @@
3354
3378
  "HassListAddItem": {
3355
3379
  "item_added": "Se añadió {{ slots.item }}"
3356
3380
  },
3381
+ "HassGetCurrentDate": {
3382
+ "default": "{% set months = {\n 1: 'enero',\n 2: 'febrero',\n 3: 'marzo',\n 4: 'abril',\n 5: 'mayo',\n 6: 'junio',\n 7: 'julio',\n 8: 'agosto',\n 9: 'septiembre',\n 10: 'octubre',\n 11: 'noviembre',\n 12: 'diciembre',\n} %} {% set weekday = [ 'lunes', 'martes', 'miércoles', 'jueves', 'viernes', 'sábado', 'domingo' ] %} Es {{ weekday[slots.date.weekday()] }}, {{slots.date.day}} de {{ months[slots.date.month] }} de {{ slots.date.year }}\n"
3383
+ },
3357
3384
  "HassUnpauseTimer": {
3358
3385
  "default": "Continuando temporizador"
3359
3386
  },
@@ -921,6 +921,18 @@
921
921
  }
922
922
  ]
923
923
  },
924
+ "HassMediaPrevious": {
925
+ "data": [
926
+ {
927
+ "sentences": [
928
+ "edellinen [raita|biisi|kappale|jakso] [laitteelle|laitteella] <nimi>"
929
+ ],
930
+ "requires_context": {
931
+ "domain": "media_player"
932
+ }
933
+ }
934
+ ]
935
+ },
924
936
  "HassListAddItem": {
925
937
  "data": [
926
938
  {
@@ -1022,6 +1034,9 @@
1022
1034
  "HassListAddItem": {
1023
1035
  "item_added": "{{ slots.item }} lisätty"
1024
1036
  },
1037
+ "HassMediaPrevious": {
1038
+ "default": "Toistetaan edellinen"
1039
+ },
1025
1040
  "HassGetWeather": {
1026
1041
  "default": "{% set weather_condition = {\n 'clear': 'ja kirkasta',\n 'clear-night': 'ja kirkasta',\n 'cloudy': 'ja pilvistä',\n 'exceptional': 'ja poikkeukselliset sääolosuhteet',\n 'fog': 'ja sumuista',\n 'hail': 'ja tihkua',\n 'lightning': 'ja ukkosta',\n 'lightning-rainy': 'ja ukkosmyrsky',\n 'partlycloudy': 'ja osittain pilvistä',\n 'pouring': 'ja rankkasade',\n 'rainy': 'ja sataa vettä',\n 'snowy': 'ja sataa lunta',\n 'snowy-rainy': 'ja sataa räntää',\n 'sunny': 'ja aurinkoista',\n 'windy': 'ja tuulista',\n 'windy-variant': 'tuulista ja aurinkoista'\n} %} {{ state.attributes.get('temperature') }} {{ state.attributes.get('temperature_unit') }} {{ weather_condition.get((state.state | string).lower(), \"\") }}\n"
1027
1042
  },
@@ -2709,6 +2709,17 @@
2709
2709
  }
2710
2710
  ]
2711
2711
  },
2712
+ "HassGetCurrentTime": {
2713
+ "data": [
2714
+ {
2715
+ "sentences": [
2716
+ "Quelle heure est-il[ maintenant]",
2717
+ "Quelle heure est il[ maintenant]",
2718
+ "Il est quelle heure[ maintenant]"
2719
+ ]
2720
+ }
2721
+ ]
2722
+ },
2712
2723
  "HassTurnOn": {
2713
2724
  "data": [
2714
2725
  {
@@ -3045,6 +3056,25 @@
3045
3056
  }
3046
3057
  ]
3047
3058
  },
3059
+ "HassGetCurrentDate": {
3060
+ "data": [
3061
+ {
3062
+ "sentences": [
3063
+ "Quel jour sommes-nous[ aujourd'hui]",
3064
+ "Quelle est la date[ d'aujourd'hui]",
3065
+ "Quelle est la date aujourd'hui",
3066
+ "Quelle est la date du jour",
3067
+ "On est quel jour[ aujourd'hui]",
3068
+ "On est le combien[ aujourd'hui]",
3069
+ "Nous sommes le combien[ aujourd'hui]",
3070
+ "C'est quoi la date[ aujourd'hui]",
3071
+ "C'est quoi la date du jour",
3072
+ "Quel jour est-il",
3073
+ "Quel jour est il"
3074
+ ]
3075
+ }
3076
+ ]
3077
+ },
3048
3078
  "HassIncreaseTimer": {
3049
3079
  "data": [
3050
3080
  {
@@ -3591,6 +3621,9 @@
3591
3621
  "HassMediaPause": {
3592
3622
  "default": "Lecture en pause"
3593
3623
  },
3624
+ "HassGetCurrentTime": {
3625
+ "default": "{% set minute_str = '{0:02d}'.format(slots.time.minute) %} {% set hour_str = '{0:02d}'.format(slots.time.hour) %} Il est {{ hour_str }}:{{ minute_str }}\n"
3626
+ },
3594
3627
  "HassPauseTimer": {
3595
3628
  "default": "Minuteur mis en pause"
3596
3629
  },
@@ -3600,6 +3633,9 @@
3600
3633
  "HassListAddItem": {
3601
3634
  "item_added": "{{ slots.item }} ajouté"
3602
3635
  },
3636
+ "HassGetCurrentDate": {
3637
+ "default": "{% set months = {\n 1: 'janvier',\n 2: 'février',\n 3: 'mars',\n 4: 'avril',\n 5: 'mai',\n 6: 'juin',\n 7: 'juillet',\n 8: 'août',\n 9: 'septembre',\n 10: 'octobre',\n 11: 'novembre',\n 12: 'décembre',\n} %}\nNous sommes le {% if slots.date.day == 1 -%}\n premier\n{%- else -%}\n {{slots.date.day}}\n{%- endif %}\n {{ months[slots.date.month] }} {{ slots.date.year }}\n"
3638
+ },
3603
3639
  "HassUnpauseTimer": {
3604
3640
  "default": "Minuteur relancé"
3605
3641
  },
@@ -4236,7 +4272,7 @@
4236
4272
  "diminue": "(diminue|diminuer|baisse|baisser)",
4237
4273
  "eclaire": "(éclaire|éclairer|illumine|illuminer)",
4238
4274
  "eteins": "(éteint|eteint|éteins|eteins|éteindre|eteindre|désactive|désactiver|stoppe|stopper|arrête|arrêter|coupe|couper|<eteins_dirty>)",
4239
- "ferme": "(ferme|fermer|baisse|baisser)",
4275
+ "ferme": "(ferme|fermer|baisse|baisser|<ferme_dirty>)",
4240
4276
  "lis": "(lis|lire)",
4241
4277
  "mets": "(mets|mettre|passe|passer|<mets_dirty>)",
4242
4278
  "ouvre": "(ouvre|ouvrir|monte|monter)",
@@ -4249,6 +4285,7 @@
4249
4285
  "ajoute": "(ajoute|ajouter|rajoute|rajotuer)",
4250
4286
  "eteins_dirty": "(étant|étends|étend|étendre|état|et tant|et teins|et teint|et teints|et t'as|été|étais|était)",
4251
4287
  "mets_dirty": "(mais|maître)",
4288
+ "ferme_dirty": "faire",
4252
4289
  "lumiere": "(lumière|lampe|ampoule)",
4253
4290
  "lumieres": "(lumières|lampes|ampoules)",
4254
4291
  "ventilateur": "[le ](ventilateur|brasseur d'air)",
@@ -139,6 +139,18 @@
139
139
  }
140
140
  ]
141
141
  },
142
+ "HassNevermind": {
143
+ "data": [
144
+ {
145
+ "sentences": [
146
+ "לא משנה",
147
+ "ביטול",
148
+ "עצור|עצרי",
149
+ "בטל[י]"
150
+ ]
151
+ }
152
+ ]
153
+ },
142
154
  "HassLightSet": {
143
155
  "data": [
144
156
  {
@@ -278,6 +278,18 @@
278
278
  }
279
279
  }
280
280
  },
281
+ {
282
+ "sentences": [
283
+ "[<turn_on>] [script ]<name>"
284
+ ],
285
+ "requires_context": {
286
+ "domain": "script"
287
+ },
288
+ "slots": {
289
+ "domain": "script"
290
+ },
291
+ "response": "script"
292
+ },
281
293
  {
282
294
  "sentences": [
283
295
  "<turn_on> [la] ([scena] <name>)"
@@ -1614,7 +1626,7 @@
1614
1626
  "fan": "(ventol(a|e) | ventilator(e|i) | ventilazione | climatizzator(e|i) | condizionator(e|i))",
1615
1627
  "garage": "(serrand(a|e) | port(a|e) [basculant(e|i)|de(l|i) garage] | saracinesc(a|he))",
1616
1628
  "light": "( [punt(o|i)] luce | luci | lampad[in](a|e) | lampadari[o])",
1617
- "turn_on": "[fa(`|’|'|i|re)](accend(i|ere) | attiv(a|are))",
1629
+ "turn_on": "[fa(`|’|'|i|re)](accend(i|ere) | attiv(a|are) | esegu(i|ire) | avvi(a|are))",
1618
1630
  "turn_off": "((spegn|speng)(i|ere) | disattiv(a|are))",
1619
1631
  "open": "(apr(i|ire) | alz(a|are))",
1620
1632
  "close": "(chiud(i|ere) | abbass(a|are))",
@@ -66,6 +66,16 @@
66
66
  }
67
67
  ]
68
68
  },
69
+ "HassGetCurrentTime": {
70
+ "data": [
71
+ {
72
+ "sentences": [
73
+ "Wéi vill Auer ass et [elo]",
74
+ "Wéi spéit ass et [elo]"
75
+ ]
76
+ }
77
+ ]
78
+ },
69
79
  "HassTurnOn": {
70
80
  "data": [
71
81
  {
@@ -112,6 +122,16 @@
112
122
  }
113
123
  ]
114
124
  },
125
+ "HassGetCurrentDate": {
126
+ "data": [
127
+ {
128
+ "sentences": [
129
+ "Wéien Dag ass haut",
130
+ "De wéivillte[n] si mer [haut]"
131
+ ]
132
+ }
133
+ ]
134
+ },
115
135
  "HassLightSet": {
116
136
  "data": [
117
137
  {
@@ -323,6 +343,12 @@
323
343
  "cover_area": "{{ slots.area }} ass erop",
324
344
  "cover_device_class": "{{ slots.device_class }} ass erop"
325
345
  },
346
+ "HassGetCurrentTime": {
347
+ "default": "{% set hour_str = '{0:02d}'.format(slots.time.hour) %} {% set minute_str = '{0:02d}'.format(slots.time.minute) %} Et ass {{ hour_str }}:{{ minute_str }}\n"
348
+ },
349
+ "HassGetCurrentDate": {
350
+ "default": "{% set months = {\n 1: 'Januar',\n 2: 'Februar',\n 3: 'März',\n 4: 'Abrëll',\n 5: 'Mee',\n 6: 'Juni',\n 7: 'Juli',\n 8: 'August',\n 9: 'September',\n 10: 'Oktober',\n 11: 'November',\n 12: 'Dezember',\n} %} {% set weekday = [\n 'Méindeg',\n 'Dënschdeg',\n 'Mëttwoch',\n 'Donneschdeg',\n 'Freideg',\n 'Samsdeg',\n 'Sonndeg'\n] %} Haut ass {{ weekday[slots.date.weekday()] }}, den {{ slots.date.day }}. {{ months[slots.date.month] }} {{ slots.date.year }}\n"
351
+ },
326
352
  "HassGetWeather": {
327
353
  "default": "{% set weather_condition = {\n 'clear': 'a kloer',\n 'clear-night': 'a kloer Nuecht',\n 'cloudy': 'a Wolleken',\n 'exceptional': 'an aussergewéinlech',\n 'fog': 'mat Niwwel',\n 'hail': 'mat Knëppelsteng',\n 'lightning': 'mat Wiederen',\n 'lightning-rainy': 'mat Wiederen a Reen',\n 'partlycloudy': 'and partly cloudy',\n 'pouring': 'and pouring rain',\n 'rainy': 'a Reen',\n 'snowy': 'a Schnéi',\n 'snowy-rainy': 'mat Schnéi a Reen',\n 'sunny': 'a sonneg',\n 'windy': 'a lëfteg',\n 'windy-variant': 'mat Wand a Wolleken'\n} %} {{ state.attributes.get('temperature') }} {{ state.attributes.get('temperature_unit') }} {{ weather_condition.get((state.state | string).lower(), \"\") }}\n"
328
354
  },