home-assistant-intents 2024.3.27__py3-none-any.whl → 2024.4.3__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.
@@ -26,6 +26,9 @@ class ErrorKey(str, Enum):
26
26
  NO_AREA = "no_area"
27
27
  """Area does not exist."""
28
28
 
29
+ NO_FLOOR = "no_floor"
30
+ """Floor does not exist."""
31
+
29
32
  NO_DOMAIN = "no_domain"
30
33
  """No devices exist for a domain."""
31
34
 
@@ -38,6 +41,12 @@ class ErrorKey(str, Enum):
38
41
  NO_DOMAIN_IN_AREA_EXPOSED = "no_domain_in_area_exposed"
39
42
  """No devices in an area are exposed for a domain."""
40
43
 
44
+ NO_DOMAIN_IN_FLOOR = "no_domain_in_floor"
45
+ """No devices in an floor exist for a domain."""
46
+
47
+ NO_DOMAIN_IN_FLOOR_EXPOSED = "no_domain_in_floor_exposed"
48
+ """No devices in an floor are exposed for a domain."""
49
+
41
50
  NO_DEVICE_CLASS = "no_device_class"
42
51
  """No devices of a class exist."""
43
52
 
@@ -50,6 +59,12 @@ class ErrorKey(str, Enum):
50
59
  NO_DEVICE_CLASS_IN_AREA_EXPOSED = "no_device_class_in_area_exposed"
51
60
  """No devices of a class are exposed in an area."""
52
61
 
62
+ NO_DEVICE_CLASS_IN_FLOOR = "no_device_class_in_floor"
63
+ """No devices of a class exist in an floor."""
64
+
65
+ NO_DEVICE_CLASS_IN_FLOOR_EXPOSED = "no_device_class_in_floor_exposed"
66
+ """No devices of a class are exposed in an floor."""
67
+
53
68
  NO_ENTITY = "no_entity"
54
69
  """Entity does not exist."""
55
70
 
@@ -62,12 +77,21 @@ class ErrorKey(str, Enum):
62
77
  NO_ENTITY_IN_AREA_EXPOSED = "no_entity_in_area_exposed"
63
78
  """Entity in area is not exposed."""
64
79
 
80
+ NO_ENTITY_IN_FLOOR = "no_entity_in_floor"
81
+ """Entity does not exist in floor."""
82
+
83
+ NO_ENTITY_IN_FLOOR_EXPOSED = "no_entity_in_floor_exposed"
84
+ """Entity in floor is not exposed."""
85
+
65
86
  DUPLICATE_ENTITIES = "duplicate_entities"
66
87
  """More than one entity matched with the same name."""
67
88
 
68
89
  DUPLICATE_ENTITIES_IN_AREA = "duplicate_entities_in_area"
69
90
  """More than one entity in an area matched with the same name."""
70
91
 
92
+ DUPLICATE_ENTITIES_IN_FLOOR = "duplicate_entities_in_floor"
93
+ """More than one entity in an floor matched with the same name."""
94
+
71
95
 
72
96
  def get_intents(
73
97
  language: str,
@@ -219,6 +219,18 @@
219
219
  }
220
220
  ]
221
221
  },
222
+ "HassMediaUnpause": {
223
+ "data": [
224
+ {
225
+ "sentences": [
226
+ "(<reactiva> [<pronom>] <name>)"
227
+ ],
228
+ "requires_context": {
229
+ "domain": "media_player"
230
+ }
231
+ }
232
+ ]
233
+ },
222
234
  "HassShoppingListAddItem": {
223
235
  "data": [
224
236
  {
@@ -292,6 +304,30 @@
292
304
  }
293
305
  ]
294
306
  },
307
+ "HassMediaNext": {
308
+ "data": [
309
+ {
310
+ "sentences": [
311
+ "[<reproduir> (<preposicio>|<pronom>)]<seguent>[ <element>][ <preposicio>]<name>"
312
+ ],
313
+ "requires_context": {
314
+ "domain": "media_player"
315
+ }
316
+ }
317
+ ]
318
+ },
319
+ "HassMediaPause": {
320
+ "data": [
321
+ {
322
+ "sentences": [
323
+ "(pausa[r]) [<pronom>] <name>"
324
+ ],
325
+ "requires_context": {
326
+ "domain": "media_player"
327
+ }
328
+ }
329
+ ]
330
+ },
295
331
  "HassClimateGetTemperature": {
296
332
  "data": [
297
333
  {
@@ -436,6 +472,9 @@
436
472
  "script": "Iniciant",
437
473
  "lock": "Tancant"
438
474
  },
475
+ "HassMediaPause": {
476
+ "default": "Reproducció en pausa"
477
+ },
439
478
  "HassNevermind": {
440
479
  "default": "No res, doncs"
441
480
  },
@@ -451,9 +490,15 @@
451
490
  "HassVacuumStart": {
452
491
  "default": "Comença la neteja"
453
492
  },
493
+ "HassMediaUnpause": {
494
+ "default": "Continuant amb la reproducció"
495
+ },
454
496
  "HassSetPosition": {
455
497
  "default": "Posició establerta"
456
498
  },
499
+ "HassMediaNext": {
500
+ "default": "Reproduint el següent"
501
+ },
457
502
  "HassClimateGetTemperature": {
458
503
  "default": "{{ state.state | float | abs | round(2) }} {{ 'grau' if state.state | float | abs == 1 else 'graus' }} {{ 'sota zero' if state.state | float < 0 else '' }}"
459
504
  },
@@ -665,10 +710,13 @@
665
710
  }
666
711
  },
667
712
  "expansion_rules": {
668
- "pronom": "(el|la|els|les|l')[ ]",
669
- "preposicio": "(en|de|a)[l|ls] [<pronom>][ ]",
670
- "name": "[el |la |l']{name}",
671
- "area": "[en el |en la |en l'|en |del |de la |de l'|al |a la |a l'| a]{area}",
713
+ "pronom_singular": "(el|la|l')[ ]",
714
+ "pronom_plural": "(els|les)[ ]",
715
+ "pronom": "(<pronom_singular>|<pronom_plural>)",
716
+ "preposicio_singular": "(en|de|a)[l|ls][ <pronom_singular>][ ]",
717
+ "preposicio": "(en|de|a)[l|ls][ <pronom>][ ]",
718
+ "name": "[<pronom_singular>]{name}",
719
+ "area": "[<preposicio_singular>]{area}",
672
720
  "quin_es": "(quin és|quina és|que es)",
673
721
  "lluentor": "{brightness} [per cent]",
674
722
  "engega": "(encén|encendre|engega[r]|posa|activa[r])",
@@ -680,10 +728,14 @@
680
728
  "graus": "{temperature} [graus] [{temperature_unit}]",
681
729
  "pujar": "(puja|aixeca)[r]",
682
730
  "baixar": "([a]baixa[r])",
683
- "configura": "(posa|configura|ajusta|canvia|establ[ir|eix])",
731
+ "configura": "(posa[r]|configura[r]|ajusta[r]|canvia[r]|establ(ir|eix))",
684
732
  "posició": "{position}[ ][%|per[ ]cent]",
685
733
  "percent": "[ ](%|per[ ]cent)",
686
- "cancela": "cancel[·l]a[r]"
734
+ "cancela": "cancel[·l]a[r]",
735
+ "seguent": "(següent|proper[a]|pròxim[a])",
736
+ "element": "(element|ítem|pista|cançó|tema|tonada|mitjà|canal|recurs|vídeo|clip|film)",
737
+ "reproduir": "(reprodu(ir|eix)|posa[r]|fica[r]|salta[r]|passa[r]|canvia[r])",
738
+ "reactiva": "(reactiva[r]|continua[r]|segu(ir|eix))"
687
739
  },
688
740
  "skip_words": [
689
741
  "si us plau",
@@ -88,6 +88,21 @@
88
88
  }
89
89
  }
90
90
  },
91
+ {
92
+ "sentences": [
93
+ "<turn> off <all> <light> (on|in) <floor>",
94
+ "<turn> off <all> <light> <floor>",
95
+ "<turn> off <all> <floor> <light>",
96
+ "<turn> <floor> <light> off",
97
+ "<floor> <light> off",
98
+ "deactivate <all> <floor> <light>",
99
+ "deactivate <all> <light> (on|in) <floor>"
100
+ ],
101
+ "response": "lights_floor",
102
+ "slots": {
103
+ "domain": "light"
104
+ }
105
+ },
91
106
  {
92
107
  "sentences": [
93
108
  "<close> <name> [in <area>]"
@@ -2529,6 +2544,21 @@
2529
2544
  }
2530
2545
  }
2531
2546
  },
2547
+ {
2548
+ "sentences": [
2549
+ "<turn> on <all> <light> (on|in) <floor>",
2550
+ "<turn> on <all> <light> <floor>",
2551
+ "<turn> on <all> <floor> <light>",
2552
+ "<turn> <floor> <light> on",
2553
+ "<floor> <light> on",
2554
+ "activate <all> <floor> <light>",
2555
+ "activate <all> <light> (on|in) <floor>"
2556
+ ],
2557
+ "response": "lights_floor",
2558
+ "slots": {
2559
+ "domain": "light"
2560
+ }
2561
+ },
2532
2562
  {
2533
2563
  "sentences": [
2534
2564
  "<turn> on [all] [the] fan[s] in <area>",
@@ -3022,20 +3052,28 @@
3022
3052
  "no_intent": "Sorry, I couldn't understand that",
3023
3053
  "handle_error": "An unexpected error occurred",
3024
3054
  "no_area": "Sorry, I am not aware of any area called {{ area }}",
3055
+ "no_floor": "Sorry, I am not aware of any floor called {{ floor }}",
3025
3056
  "no_domain": "Sorry, I am not aware of any {{ domain }}",
3026
3057
  "no_domain_in_area": "Sorry, I am not aware of any {{ domain }} in the {{ area }} area",
3058
+ "no_domain_in_floor": "Sorry, I am not aware of any {{ domain }} on the {{ floor }} floor",
3027
3059
  "no_device_class": "Sorry, I am not aware of any {{ device_class }}",
3028
3060
  "no_device_class_in_area": "Sorry, I am not aware of any {{ device_class }} in the {{ area }} area",
3061
+ "no_device_class_in_floor": "Sorry, I am not aware of any {{ device_class }} in the {{ floor }} floor",
3029
3062
  "no_entity": "Sorry, I am not aware of any device called {{ entity }}",
3030
3063
  "no_entity_in_area": "Sorry, I am not aware of any device called {{ entity }} in the {{ area }} area",
3064
+ "no_entity_in_floor": "Sorry, I am not aware of any device called {{ entity }} in the {{ floor }} floor",
3031
3065
  "no_entity_exposed": "Sorry, {{ entity }} is not exposed",
3032
3066
  "no_entity_in_area_exposed": "Sorry, {{ entity }} in the {{ area }} area is not exposed",
3067
+ "no_entity_in_floor_exposed": "Sorry, {{ entity }} in the {{ floor }} floor is not exposed",
3033
3068
  "no_domain_exposed": "Sorry, no {{ domain }} is exposed",
3034
3069
  "no_domain_in_area_exposed": "Sorry, no {{ domain }} in the {{ area }} area is exposed",
3070
+ "no_domain_in_floor_exposed": "Sorry, no {{ domain }} in the {{ floor }} floor is exposed",
3035
3071
  "no_device_class_exposed": "Sorry, no {{ device_class }} is exposed",
3036
3072
  "no_device_class_in_area_exposed": "Sorry, no {{ device_class }} in the {{ area }} area is exposed",
3073
+ "no_device_class_in_floor_exposed": "Sorry, no {{ device_class }} in the {{ floor }} floor is exposed",
3037
3074
  "duplicate_entities": "Sorry, there are multiple devices called {{ entity }}",
3038
- "duplicate_entities_in_area": "Sorry, there are multiple devices called {{ entity }} in the {{ area }} area"
3075
+ "duplicate_entities_in_area": "Sorry, there are multiple devices called {{ entity }} in the {{ area }} area",
3076
+ "duplicate_entities_in_floor": "Sorry, there are multiple devices called {{ entity }} in the {{ floor }} floor"
3039
3077
  },
3040
3078
  "intents": {
3041
3079
  "HassGetState": {
@@ -3051,6 +3089,7 @@
3051
3089
  "HassTurnOff": {
3052
3090
  "default": "Turned off the {{ state.domain }}",
3053
3091
  "lights_area": "Turned off the lights",
3092
+ "lights_floor": "Turned off the lights",
3054
3093
  "fans_area": "Turned off the fans",
3055
3094
  "cover": "Closed",
3056
3095
  "light_all": "Turned off all of the lights",
@@ -3065,6 +3104,7 @@
3065
3104
  "HassTurnOn": {
3066
3105
  "default": "Turned on the {{ state.domain }}",
3067
3106
  "lights_area": "Turned on the lights",
3107
+ "lights_floor": "Turned on the lights",
3068
3108
  "light_all": "Turned on all of the lights",
3069
3109
  "fans_area": "Turned on the fans",
3070
3110
  "cover": "Opened",
@@ -3614,6 +3654,7 @@
3614
3654
  "expansion_rules": {
3615
3655
  "name": "[the] {name}",
3616
3656
  "area": "[the] {area}",
3657
+ "floor": "[the] {floor}[ floor]",
3617
3658
  "what_is": "(what's|whats|what is)",
3618
3659
  "where_is": "(where's|wheres|where is)",
3619
3660
  "brightness": "{brightness}[[ ]%| percent]",
@@ -54,6 +54,15 @@
54
54
  "domain": "light"
55
55
  }
56
56
  },
57
+ {
58
+ "sentences": [
59
+ "<eteins> [<tous>] [<le>](<lumiere>|<lumieres>) [<dans>] [<le>]{floor}",
60
+ "<eteins> [<le>]{floor}"
61
+ ],
62
+ "slots": {
63
+ "domain": "light"
64
+ }
65
+ },
57
66
  {
58
67
  "sentences": [
59
68
  "<ferme> [<le>]{name}"
@@ -2670,6 +2679,16 @@
2670
2679
  "domain": "light"
2671
2680
  }
2672
2681
  },
2682
+ {
2683
+ "sentences": [
2684
+ "<allume> [<tous>] [<le>](<lumiere>|<lumieres>) [<dans>] [<le>]{floor}",
2685
+ "(<allume>|<eclaire>) [<le>]{floor}",
2686
+ "(<lumiere>|<lumieres>) [<dans>] [<le>]{floor}"
2687
+ ],
2688
+ "slots": {
2689
+ "domain": "light"
2690
+ }
2691
+ },
2673
2692
  {
2674
2693
  "sentences": [
2675
2694
  "<allume> [tous] (<ventilateur> | <ventilateurs>) <dans> [[<le>]{area}]"
@@ -3142,14 +3161,22 @@
3142
3161
  "no_device_class_in_area": "{% set translations = {\n \"awning\": \"d'auvents\",\n \"blind\": \"de stores\",\n \"curtain\": \"de rideaux\",\n \"door\": \"de portes\",\n \"garage\": \"de portes de garage\",\n \"gate\": \"de portes\",\n \"shade\": \"de stores\",\n \"shutter\": \"de volets\",\n \"window\": \"de fenêtres\"\n } %}\n{% if device_class in translations -%}\n Désolé, je n'ai pas trouvé {{ translations[device_class] }} dans cette pièce\n{%- else -%}\n Désolé, je n'ai rien trouvé de correspondant dans cette pièce\n{%- endif %}\n",
3143
3162
  "no_entity": "Désolé, je ne connais pas l'appareil {{ entity }}",
3144
3163
  "no_entity_in_area": "Désolé, je ne connais pas l'appareil {{ entity }}",
3164
+ "no_floor": "Désolé, je ne connais pas l'étage {{ floor }}",
3165
+ "no_domain_in_floor": "{% set translations = {\n \"button\": \"de boutons\",\n \"camera\": \"de caméras\",\n \"input_button\": \"de boutons\",\n \"alarm_control_panel\": \"d'alarmes\",\n \"automation\": \"d'automatisations\",\n \"fan\": \"de ventilateurs\",\n \"climate\": \"de thermostats\",\n \"humidifier\": \"d'humidificateurs\",\n \"input_boolean\": \"de commutateurs\",\n \"siren\": \"de sirènes\",\n \"water_heater\": \"de ballon d'eau chaude\",\n \"light\": \"de lumières\",\n \"switch\": \"de commutateurs\",\n \"script\": \"de scripts\",\n \"remote\": \"de télécommandes\",\n \"lock\": \"de verrous\",\n \"vacuum\": \"d'aspirateurs\",\n \"scene\": \"de scènes\",\n \"media_player\": \"de lecteurs multimédia\",\n \"lawn_mower\": \"de tondeuses à gazon\",\n \"valve\": \"de vannes\"\n } %}\n{% if domain in translations -%}\n Désolé, je n'ai pas trouvé {{ translations[domain] }} dans cet étage\n{%- else -%}\n Désolé, je n'ai rien trouvé de correspondant dans cet étage\n{%- endif %}\n",
3166
+ "no_device_class_in_floor": "{% set translations = {\n \"awning\": \"d'auvents\",\n \"blind\": \"de stores\",\n \"curtain\": \"de rideaux\",\n \"door\": \"de portes\",\n \"garage\": \"de portes de garage\",\n \"gate\": \"de portes\",\n \"shade\": \"de stores\",\n \"shutter\": \"de volets\",\n \"window\": \"de fenêtres\"\n } %}\n{% if device_class in translations -%}\n Désolé, je n'ai pas trouvé {{ translations[device_class] }} dans cet étage\n{%- else -%}\n Désolé, je n'ai rien trouvé de correspondant dans cet étage\n{%- endif %}\n",
3167
+ "no_entity_in_floor": "Désolé, je ne connais pas l'appareil {{ entity }}",
3145
3168
  "no_entity_exposed": "Désolé, l'appareil {{ entity }} n'est pas exposé",
3146
3169
  "no_entity_in_area_exposed": "Désolé, l'appareil {{ entity }} n'est pas exposé",
3147
3170
  "no_domain_exposed": "{% set translations = {\n \"button\": \"aucun bouton n'est exposé\",\n \"camera\": \"aucune caméra n'est exposée\",\n \"input_button\": \"aucun bouton n'est exposé\",\n \"alarm_control_panel\": \"aucune alarme n'est exposée\",\n \"automation\": \"aucune automatisation n'est exposée\",\n \"fan\": \"aucun ventilateur n'est exposé\",\n \"climate\": \"aucun thermostat n'est exposé\",\n \"humidifier\": \"aucun humidificateur n'est exposé\",\n \"input_boolean\": \"aucun commutateur n'est exposé\",\n \"siren\": \"aucune sirène n'est exposée\",\n \"water_heater\": \"aucun ballon d'eau chaude n'est exposé\",\n \"light\": \"aucune lumière n'est exposée\",\n \"switch\": \"aucun commutateur n'est exposé\",\n \"script\": \"aucun script n'est exposé\",\n \"remote\": \"aucune télécommande n'est exposée\",\n \"lock\": \"aucun verrou n'est exposé\",\n \"vacuum\": \"aucun aspirateur n'est exposé\",\n \"scene\": \"aucune scène n'est exposée\",\n \"media_player\": \"aucun lecteur multimédia n'est exposé\",\n \"lawn_mower\": \"aucune tondeuse à gazon n'est exposée\",\n \"valve\": \"aucune vanne n'est exposée\"\n } %}\n{% if domain in translations -%}\n Désolé, {{ translations[domain] }}\n{%- else -%}\n Désolé, aucun appareil de ce type n'est exposé\n{%- endif %}\n",
3148
3171
  "no_domain_in_area_exposed": "{% set translations = {\n \"button\": \"aucun bouton de cette pièce n'est exposé\",\n \"camera\": \"aucune caméra de cette pièce n'est exposée\",\n \"input_button\": \"aucun bouton de cette pièce n'est exposé\",\n \"alarm_control_panel\": \"aucune alarme de cette pièce n'est exposée\",\n \"automation\": \"aucune automatisation de cette pièce n'est exposée\",\n \"fan\": \"aucun ventilateur de cette pièce n'est exposé\",\n \"climate\": \"aucun thermostat de cette pièce n'est exposé\",\n \"humidifier\": \"aucun humidificateur de cette pièce n'est exposé\",\n \"input_boolean\": \"aucun commutateur de cette pièce n'est exposé\",\n \"siren\": \"aucune sirène de cette pièce n'est exposée\",\n \"water_heater\": \"aucun ballon d'eau chaude de cette pièce n'est exposé\",\n \"light\": \"aucune lumière de cette pièce n'est exposée\",\n \"switch\": \"aucun commutateur de cette pièce n'est exposé\",\n \"script\": \"aucun script de cette pièce n'est exposé\",\n \"remote\": \"aucune télécommande de cette pièce n'est exposée\",\n \"lock\": \"aucun verrou de cette pièce n'est exposé\",\n \"vacuum\": \"aucun aspirateur de cette pièce n'est exposé\",\n \"scene\": \"aucune scène de cette pièce n'est exposée\",\n \"media_player\": \"aucun lecteur multimédia de cette pièce n'est exposé\",\n \"lawn_mower\": \"aucune tondeuse à gazon de cette pièce n'est exposée\",\n \"valve\": \"aucune vanne de cette pièce n'est exposée\"\n } %}\n{% if domain in translations -%}\n Désolé, {{ translations[domain] }}\n{%- else -%}\n Désolé, aucun appareil de ce type n'est exposé\n{%- endif %}\n",
3149
3172
  "no_device_class_exposed": "{% set translations = {\n \"awning\": \"aucun auvent n'est exposé\",\n \"blind\": \"aucun store n'est exposé\",\n \"curtain\": \"aucun rideau n'est exposé\",\n \"door\": \"aucune porte n'est exposée\",\n \"garage\": \"aucune porte de garage n'est exposée\",\n \"gate\": \"aucune porte n'est exposée\",\n \"shade\": \"aucun store n'est exposé\",\n \"shutter\": \"aucun volet n'est exposé\",\n \"window\": \"aucune fenêtre n'est exposeé\"\n } %}\n{% if device_class in translations -%}\n Désolé, {{ translations[device_class] }}\n{%- else -%}\n Désolé, aucun appareil de ce type n'est exposé\n{%- endif %}\n",
3150
3173
  "no_device_class_in_area_exposed": "{% set translations = {\n \"awning\": \"aucun auvent de cette pièce n'est exposé\",\n \"blind\": \"aucun store de cette pièce n'est exposé\",\n \"curtain\": \"aucun rideau de cette pièce n'est exposé\",\n \"door\": \"aucune porte de cette pièce n'est exposée\",\n \"garage\": \"aucune porte de garage de cette pièce n'est exposée\",\n \"gate\": \"aucune porte de cette pièce n'est exposée\",\n \"shade\": \"aucun store de cette pièce n'est exposé\",\n \"shutter\": \"aucun volet de cette pièce n'est exposé\",\n \"window\": \"aucune fenêtre de cette pièce n'est exposeé\"\n } %}\n{% if device_class in translations -%}\n Désolé, {{ translations[device_class] }}\n{%- else -%}\n Désolé, aucun appareil de ce type n'est exposé\n{%- endif %}\n",
3174
+ "no_entity_in_floor_exposed": "Désolé, l'appareil {{ entity }} n'est pas exposé",
3175
+ "no_domain_in_floor_exposed": "{% set translations = {\n \"button\": \"aucun bouton de cet étage n'est exposé\",\n \"camera\": \"aucune caméra de cet étage n'est exposée\",\n \"input_button\": \"aucun bouton de cet étage n'est exposé\",\n \"alarm_control_panel\": \"aucune alarme de cet étage n'est exposée\",\n \"automation\": \"aucune automatisation de cet étage n'est exposée\",\n \"fan\": \"aucun ventilateur de cet étage n'est exposé\",\n \"climate\": \"aucun thermostat de cet étage n'est exposé\",\n \"humidifier\": \"aucun humidificateur de cet étage n'est exposé\",\n \"input_boolean\": \"aucun commutateur de cet étage n'est exposé\",\n \"siren\": \"aucune sirène de cet étage n'est exposée\",\n \"water_heater\": \"aucun ballon d'eau chaude de cet étage n'est exposé\",\n \"light\": \"aucune lumière de cet étage n'est exposée\",\n \"switch\": \"aucun commutateur de cet étage n'est exposé\",\n \"script\": \"aucun script de cet étage n'est exposé\",\n \"remote\": \"aucune télécommande de cet étage n'est exposée\",\n \"lock\": \"aucun verrou de cet étage n'est exposé\",\n \"vacuum\": \"aucun aspirateur de cet étage n'est exposé\",\n \"scene\": \"aucune scène de cet étage n'est exposée\",\n \"media_player\": \"aucun lecteur multimédia de cet étage n'est exposé\",\n \"lawn_mower\": \"aucune tondeuse à gazon de cet étage n'est exposée\",\n \"valve\": \"aucune vanne de cet étage n'est exposée\"\n } %}\n{% if domain in translations -%}\n Désolé, {{ translations[domain] }}\n{%- else -%}\n Désolé, aucun appareil de ce type n'est exposé\n{%- endif %}\n",
3176
+ "no_device_class_in_floor_exposed": "{% set translations = {\n \"awning\": \"aucun auvent de cet étage n'est exposé\",\n \"blind\": \"aucun store de cet étage n'est exposé\",\n \"curtain\": \"aucun rideau de cet étage n'est exposé\",\n \"door\": \"aucune porte de cet étage n'est exposée\",\n \"garage\": \"aucune porte de garage de cet étage n'est exposée\",\n \"gate\": \"aucune porte de cet étage n'est exposée\",\n \"shade\": \"aucun store de cet étage n'est exposé\",\n \"shutter\": \"aucun volet de cet étage n'est exposé\",\n \"window\": \"aucune fenêtre de cet étage n'est exposeé\"\n } %}\n{% if device_class in translations -%}\n Désolé, {{ translations[device_class] }}\n{%- else -%}\n Désolé, aucun appareil de ce type n'est exposé\n{%- endif %}\n",
3151
3177
  "duplicate_entities": "Désolé, plusieurs appareils sont nommés {{entity}}",
3152
- "duplicate_entities_in_area": "Désolé, plusieurs appareils de cette pièce sont nommés {{entity}}"
3178
+ "duplicate_entities_in_area": "Désolé, plusieurs appareils de cette pièce sont nommés {{entity}}",
3179
+ "duplicate_entities_in_floor": "Désolé, plusieurs appareils de cet étage sont nommés {{entity}}"
3153
3180
  },
3154
3181
  "intents": {
3155
3182
  "HassGetState": {
@@ -3764,7 +3791,7 @@
3764
3791
  "demarre": "(démarre|démarrer|lance|lancer)",
3765
3792
  "diminue": "(diminue|diminuer|baisse|baisser)",
3766
3793
  "eclaire": "(éclaire|éclairer|illumine|illuminer)",
3767
- "eteins": "(éteint|eteint|éteins|eteins|éteindre|eteindre|désactive|désactiver|stoppe|stopper|arrête|arrêter|coupe|couper)",
3794
+ "eteins": "(éteint|eteint|éteins|eteins|éteindre|eteindre|désactive|désactiver|stoppe|stopper|arrête|arrêter|coupe|couper|<eteins_dirty>)",
3768
3795
  "ferme": "(ferme|fermer|baisse|baisser)",
3769
3796
  "lis": "(lis|lire|lecture)",
3770
3797
  "mets": "(mets|mettre|passe|passer)",
@@ -3772,6 +3799,7 @@
3772
3799
  "regle": "(règle|régler|met|mets|mettre|ajuste|ajuster|change|changer)",
3773
3800
  "renvoie": "(renvoie|renvoyer|arrête|arrêter|stop[pe]|stopper)",
3774
3801
  "reprends": "(reprends|reprendre|reprise)",
3802
+ "eteins_dirty": "(étant|étends|étend|étendre|état|et tant|et teins|et teint|et teints|et t'as|été|étais|était)",
3775
3803
  "lumiere": "(lumière|lampe|ampoule)",
3776
3804
  "lumieres": "(lumières|lampes|ampoules)",
3777
3805
  "ventilateur": "[le ](ventilateur|brasseur d'air)",
@@ -7,7 +7,19 @@
7
7
  "sentences": [
8
8
  "<skru_av> <navn>",
9
9
  "(skru|slå) <navn> av"
10
- ]
10
+ ],
11
+ "excludes_context": {
12
+ "domain": [
13
+ "cover",
14
+ "scene",
15
+ "sensor",
16
+ "script",
17
+ "lock",
18
+ "binary_sensor",
19
+ "vacuum",
20
+ "valve"
21
+ ]
22
+ }
11
23
  },
12
24
  {
13
25
  "sentences": [
@@ -21,7 +33,9 @@
21
33
  "sensor",
22
34
  "script",
23
35
  "lock",
24
- "binary_sensor"
36
+ "binary_sensor",
37
+ "vacuum",
38
+ "valve"
25
39
  ]
26
40
  }
27
41
  },
@@ -36,6 +50,17 @@
36
50
  },
37
51
  "response": "lights_area"
38
52
  },
53
+ {
54
+ "sentences": [
55
+ "<skru_av> [<alle>] <lys> [<i_på>] <etasje>",
56
+ "<skru_av> [<alle>] <etasje>[s][ ]<lys>",
57
+ "<skru_av> <etasje> [<alle>] <lys>"
58
+ ],
59
+ "slots": {
60
+ "domain": "light"
61
+ },
62
+ "response": "lights_floor"
63
+ },
39
64
  {
40
65
  "sentences": [
41
66
  "<skru_av> <alle> <lys>"
@@ -126,6 +151,18 @@
126
151
  "name": "all"
127
152
  },
128
153
  "response": "lock"
154
+ },
155
+ {
156
+ "sentences": [
157
+ "<lukk> <navn>"
158
+ ],
159
+ "requires_context": {
160
+ "domain": "valve"
161
+ },
162
+ "slots": {
163
+ "domain": "valve"
164
+ },
165
+ "response": "valve"
129
166
  }
130
167
  ]
131
168
  },
@@ -159,6 +196,17 @@
159
196
  },
160
197
  "response": "lights_area"
161
198
  },
199
+ {
200
+ "sentences": [
201
+ "<skru_på> [<alle>] <lys> [<i_på>] <etasje>",
202
+ "<skru_på> [<alle>] <etasje>[s][ ]<lys>",
203
+ "<skru_på> <etasje> [<alle>] <lys>"
204
+ ],
205
+ "slots": {
206
+ "domain": "light"
207
+ },
208
+ "response": "lights_floor"
209
+ },
162
210
  {
163
211
  "sentences": [
164
212
  "<skru_på> <alle> <lys>"
@@ -214,6 +262,18 @@
214
262
  },
215
263
  "response": "scene"
216
264
  },
265
+ {
266
+ "sentences": [
267
+ "<åpne> <navn>"
268
+ ],
269
+ "requires_context": {
270
+ "domain": "valve"
271
+ },
272
+ "slots": {
273
+ "domain": "valve"
274
+ },
275
+ "response": "valve"
276
+ },
217
277
  {
218
278
  "sentences": [
219
279
  "lås <navn> [<i_på> <område>]"
@@ -238,7 +298,19 @@
238
298
  "sentences": [
239
299
  "<skru_på> <navn>",
240
300
  "(skru|slå) <navn> på"
241
- ]
301
+ ],
302
+ "excludes_context": {
303
+ "domain": [
304
+ "cover",
305
+ "scene",
306
+ "sensor",
307
+ "script",
308
+ "lock",
309
+ "binary_sensor",
310
+ "vacuum",
311
+ "valve"
312
+ ]
313
+ }
242
314
  },
243
315
  {
244
316
  "sentences": [
@@ -252,7 +324,9 @@
252
324
  "sensor",
253
325
  "script",
254
326
  "lock",
255
- "binary_sensor"
327
+ "binary_sensor",
328
+ "vacuum",
329
+ "valve"
256
330
  ]
257
331
  }
258
332
  },
@@ -287,6 +361,19 @@
287
361
  }
288
362
  ]
289
363
  },
364
+ "HassMediaUnpause": {
365
+ "data": [
366
+ {
367
+ "sentences": [
368
+ "<skru_på> <navn> [igjen]",
369
+ "gjenoppta <navn>"
370
+ ],
371
+ "requires_context": {
372
+ "domain": "media_player"
373
+ }
374
+ }
375
+ ]
376
+ },
290
377
  "HassShoppingListAddItem": {
291
378
  "data": [
292
379
  {
@@ -310,6 +397,21 @@
310
397
  }
311
398
  ]
312
399
  },
400
+ "HassSetPosition": {
401
+ "data": [
402
+ {
403
+ "sentences": [
404
+ "(<endre>|<åpne>|<lukk>) <navn> til <position>"
405
+ ],
406
+ "requires_context": {
407
+ "domain": "valve"
408
+ },
409
+ "slots": {
410
+ "domain": "valve"
411
+ }
412
+ }
413
+ ]
414
+ },
313
415
  "HassGetState": {
314
416
  "data": [
315
417
  {
@@ -1716,7 +1818,12 @@
1716
1818
  "<endre> <navn> [til] [lysstyrke] [til] <lysstyrke>",
1717
1819
  "<endre> lysstyrke[n] <i_på> <navn> til <lysstyrke>"
1718
1820
  ],
1719
- "response": "brightness"
1821
+ "response": "brightness",
1822
+ "excludes_context": {
1823
+ "domain": [
1824
+ "valve"
1825
+ ]
1826
+ }
1720
1827
  },
1721
1828
  {
1722
1829
  "sentences": [
@@ -1726,7 +1833,12 @@
1726
1833
  "slots": {
1727
1834
  "name": "all"
1728
1835
  },
1729
- "response": "brightness"
1836
+ "response": "brightness",
1837
+ "excludes_context": {
1838
+ "domain": [
1839
+ "valve"
1840
+ ]
1841
+ }
1730
1842
  },
1731
1843
  {
1732
1844
  "sentences": [
@@ -1736,7 +1848,12 @@
1736
1848
  "requires_context": {
1737
1849
  "domain": "light"
1738
1850
  },
1739
- "response": "brightness"
1851
+ "response": "brightness",
1852
+ "excludes_context": {
1853
+ "domain": [
1854
+ "valve"
1855
+ ]
1856
+ }
1740
1857
  },
1741
1858
  {
1742
1859
  "sentences": [
@@ -1746,7 +1863,12 @@
1746
1863
  "slots": {
1747
1864
  "name": "all"
1748
1865
  },
1749
- "response": "brightness"
1866
+ "response": "brightness",
1867
+ "excludes_context": {
1868
+ "domain": [
1869
+ "valve"
1870
+ ]
1871
+ }
1750
1872
  },
1751
1873
  {
1752
1874
  "sentences": [
@@ -1764,7 +1886,45 @@
1764
1886
  "slots": {
1765
1887
  "name": "all"
1766
1888
  },
1767
- "response": "color"
1889
+ "response": "color",
1890
+ "excludes_context": {
1891
+ "domain": [
1892
+ "valve"
1893
+ ]
1894
+ }
1895
+ }
1896
+ ]
1897
+ },
1898
+ "HassMediaNext": {
1899
+ "data": [
1900
+ {
1901
+ "sentences": [
1902
+ "spill av [den ]neste [<sang>] på <navn>",
1903
+ "hopp over [denne] [<sang>] på <navn>",
1904
+ "bytt til neste [<sang>] på <navn>",
1905
+ "spol (videre|til neste) [<sang>] på <navn>",
1906
+ "<navn> (hopp over denne|bytt til neste |spol (videre|til neste)) [<sang>]",
1907
+ "<navn> neste <sang>"
1908
+ ],
1909
+ "requires_context": {
1910
+ "domain": "media_player"
1911
+ },
1912
+ "expansion_rules": {
1913
+ "sang": "(sang[en]|låt[(en|a)])"
1914
+ }
1915
+ }
1916
+ ]
1917
+ },
1918
+ "HassMediaPause": {
1919
+ "data": [
1920
+ {
1921
+ "sentences": [
1922
+ "(pause;<navn>)",
1923
+ "sett <navn> [på] pause"
1924
+ ],
1925
+ "requires_context": {
1926
+ "domain": "media_player"
1927
+ }
1768
1928
  }
1769
1929
  ]
1770
1930
  },
@@ -1781,6 +1941,31 @@
1781
1941
  }
1782
1942
  ]
1783
1943
  },
1944
+ "HassVacuumReturnToBase": {
1945
+ "data": [
1946
+ {
1947
+ "sentences": [
1948
+ "(returner|kjør) <navn> til[bake til] (dock[en]|base[n])",
1949
+ "(returner|kjør[ tilbake]) <navn>[ tilbake]"
1950
+ ],
1951
+ "requires_context": {
1952
+ "domain": "vacuum"
1953
+ }
1954
+ }
1955
+ ]
1956
+ },
1957
+ "HassVacuumStart": {
1958
+ "data": [
1959
+ {
1960
+ "sentences": [
1961
+ "start <navn>"
1962
+ ],
1963
+ "requires_context": {
1964
+ "domain": "vacuum"
1965
+ }
1966
+ }
1967
+ ]
1968
+ },
1784
1969
  "HassListAddItem": {
1785
1970
  "data": [
1786
1971
  {
@@ -1797,15 +1982,33 @@
1797
1982
  }
1798
1983
  }
1799
1984
  ]
1985
+ },
1986
+ "HassSetVolume": {
1987
+ "data": [
1988
+ {
1989
+ "sentences": [
1990
+ "<endre> <navn> volum[et] til <volum> [prosent]",
1991
+ "<endre> (volum[et]|lyden) (for|til|<i_på>) <navn> [til] <volum> [prosent]"
1992
+ ],
1993
+ "requires_context": {
1994
+ "domain": "media_player"
1995
+ }
1996
+ }
1997
+ ]
1800
1998
  }
1801
1999
  },
1802
2000
  "responses": {
1803
2001
  "errors": {
1804
2002
  "no_intent": "Jeg skjønte dessverre ikke det",
1805
2003
  "no_area": "Det er ingen områder som heter {{ area }}",
2004
+ "no_floor": "Det er ingen etasje som heter {{ floor }}",
1806
2005
  "no_domain_in_area": "{{ area }} har ingen {{ domain }}",
2006
+ "no_domain_in_floor": "{{ floor }} har ingen {{ domain }}",
1807
2007
  "no_device_class_in_area": "{{ area }} har ingen {{ device_class }}",
2008
+ "no_device_class_in_floor": "{{ floor }} har ingen {{ device_class }}",
1808
2009
  "no_entity": "Finner ingen enhet som heter {{ entity }}",
2010
+ "no_entity_in_area": "Finner ingen enhet som heter {{ entity }} i {{ area }}",
2011
+ "no_entity_in_floor": "Finner ingen enhet som heter {{ entity }} i {{ floor }}",
1809
2012
  "handle_error": "Det oppsto en uventet feil"
1810
2013
  },
1811
2014
  "intents": {
@@ -1821,11 +2024,13 @@
1821
2024
  "default": "Slo av {{ slots.name }}",
1822
2025
  "lights_all": "Slo av alle lys",
1823
2026
  "lights_area": "Slo av lys",
2027
+ "lights_floor": "Slo av lys",
1824
2028
  "fans_all": "Slo av alle vifter",
1825
2029
  "fans_area": "Slo av vifter",
1826
2030
  "cover": "Lukket",
1827
2031
  "cover_device_class": "Lukket {{ slots.device_class }}",
1828
- "lock": "Låst opp"
2032
+ "lock": "Låst opp",
2033
+ "valve": "Stengt"
1829
2034
  },
1830
2035
  "HassShoppingListAddItem": {
1831
2036
  "item_added": "{{ slots.item | title }} lagt til"
@@ -1834,13 +2039,18 @@
1834
2039
  "default": "Slo på {{ slots.name }}",
1835
2040
  "lights_all": "Slo på alle lys",
1836
2041
  "lights_area": "Slo på lys",
2042
+ "lights_floor": "Slo på lys",
1837
2043
  "fans_all": "Slo på alle vifter",
1838
2044
  "fans_area": "Slo på vifter",
1839
2045
  "cover": "Åpnet",
1840
2046
  "cover_device_class": "Åpnet {{ slots.device_class }}",
1841
2047
  "scene": "Aktivert",
1842
2048
  "script": "Startet",
1843
- "lock": "Låst"
2049
+ "lock": "Låst",
2050
+ "valve": "Åpnet"
2051
+ },
2052
+ "HassMediaPause": {
2053
+ "default": "Pauset"
1844
2054
  },
1845
2055
  "HassListAddItem": {
1846
2056
  "item_added": "{{ slots.item | title }} lagt til"
@@ -1852,8 +2062,26 @@
1852
2062
  "brightness": "Lysstyrke justert",
1853
2063
  "color": "Farge endret"
1854
2064
  },
2065
+ "HassVacuumStart": {
2066
+ "default": "Startet"
2067
+ },
2068
+ "HassMediaUnpause": {
2069
+ "default": "Gjenopptar"
2070
+ },
2071
+ "HassSetPosition": {
2072
+ "default": "Posisjon satt"
2073
+ },
2074
+ "HassMediaNext": {
2075
+ "default": "Spiller av neste"
2076
+ },
1855
2077
  "HassClimateGetTemperature": {
1856
2078
  "default": "{{ state_attr(state.entity_id, 'current_temperature') }}"
2079
+ },
2080
+ "HassSetVolume": {
2081
+ "default": "Volum satt"
2082
+ },
2083
+ "HassVacuumReturnToBase": {
2084
+ "default": "Returnerer"
1857
2085
  }
1858
2086
  }
1859
2087
  },
@@ -2366,13 +2594,28 @@
2366
2594
  }
2367
2595
  ]
2368
2596
  },
2597
+ "volume": {
2598
+ "range": {
2599
+ "type": "percentage",
2600
+ "from": 0,
2601
+ "to": 100
2602
+ }
2603
+ },
2369
2604
  "shopping_list_item": {
2370
2605
  "wildcard": true
2606
+ },
2607
+ "position": {
2608
+ "range": {
2609
+ "type": "percentage",
2610
+ "from": 0,
2611
+ "to": 100
2612
+ }
2371
2613
  }
2372
2614
  },
2373
2615
  "expansion_rules": {
2374
2616
  "navn": "{name}[(en[e]|et|n[s])]",
2375
2617
  "område": "{area}[(n[s]|en|et[s]|met[s])]",
2618
+ "etasje": "{floor}[(en[e]|et|n[s])][ etasje[n]]",
2376
2619
  "sensor": "(sensor[er|en[e]])",
2377
2620
  "alle": "(alle|alt|samtlige)",
2378
2621
  "i_på": "(i|på|ved [siden av])",
@@ -2390,6 +2633,8 @@
2390
2633
  "kaldt_varmt": "(<kald>|<varm>)",
2391
2634
  "åpen": "(åpen|åpnet [opp]|rullet opp|lukket opp)",
2392
2635
  "lukket": "(lukket [igjen]|stengt|senket|rullet ned)",
2636
+ "volum": "{volume:volume_level}[[ ]%| prosent]",
2637
+ "position": "{position}[[ ]%| prosent]",
2393
2638
  "endre": "(endre|sett|juster|skru (opp|ned)|vri|dimm[e]|still [inn]|øk|senk|dim[me])",
2394
2639
  "skru_av": "(skru av|slukk|slå av|slukk|steng [av]|stopp)",
2395
2640
  "skru_på": "(skru på|tenn|sett[e] (på|igang|fart på)|slå på|start[e])",
@@ -2712,10 +2712,11 @@
2712
2712
  "data": [
2713
2713
  {
2714
2714
  "sentences": [
2715
- "<numeric_value_set> <name> volume (naar|op) <volume> [percent]",
2716
- "zet <name> [volume][ omhoog| omlaag] (op|naar) <volume> [percent]",
2717
- "<numeric_value_set> het volume ([omhoog |omlaag ](naar|op) <volume> [percent];[van |op ]<name>)",
2718
- "(zet [het ]volume (omhoog|omlaag)) ((naar|op) <volume> [percent];[van |op ]<name>)"
2715
+ "<numeric_value_set> <name> volume (naar|op) <volume>",
2716
+ "zet <name> [volume][ omhoog| omlaag] (op|naar) <volume>",
2717
+ "<numeric_value_set> het volume ([omhoog |omlaag ](naar|op) <volume>;[van |op ]<name>)",
2718
+ "zet [het ]volume (omhoog|omlaag) ((naar|op) <volume>;[van |op ]<name>)",
2719
+ "(<name>;volume) <volume>"
2719
2720
  ],
2720
2721
  "requires_context": {
2721
2722
  "domain": "media_player"
@@ -83,6 +83,17 @@
83
83
  }
84
84
  }
85
85
  },
86
+ {
87
+ "sentences": [
88
+ "<izključi> [vse] luči (v|na) <floor>",
89
+ "<izklopi> [vse] luči (v|na) <floor>",
90
+ "<ugasni> [vse] luči (v|na) <floor>"
91
+ ],
92
+ "response": "lights_floor",
93
+ "slots": {
94
+ "domain": "light"
95
+ }
96
+ },
86
97
  {
87
98
  "sentences": [
88
99
  "<zapri> <name> [[v|na] <area>]"
@@ -2497,6 +2508,17 @@
2497
2508
  }
2498
2509
  }
2499
2510
  },
2511
+ {
2512
+ "sentences": [
2513
+ "<vključi> [vse] luči (v|na) <floor>",
2514
+ "<vklopi> [vse] luči (v|na) <floor>",
2515
+ "<prižgi> [vse] luči (v|na) <floor>"
2516
+ ],
2517
+ "response": "lights_floor",
2518
+ "slots": {
2519
+ "domain": "light"
2520
+ }
2521
+ },
2500
2522
  {
2501
2523
  "sentences": [
2502
2524
  "<vključi> [vse|vso] (ventilator[je]|ventilacijo|napo) [v|na] <area>",
@@ -2929,19 +2951,27 @@
2929
2951
  "errors": {
2930
2952
  "no_intent": "Oprosti, tega nisem razumel",
2931
2953
  "no_area": "Območje z imenom {{ area }} ne obstaja",
2954
+ "no_floor": "Nadstropje z imenom {{ floor }} ne obstaja",
2932
2955
  "no_domain_in_area": "V območju {{ area }} ne obstaja {{ domain }}",
2956
+ "no_domain_in_floor": "V nadstropju {{ floor }} ne obstaja {{ domain }}",
2933
2957
  "no_device_class_in_area": "V območju {{ area }} ne obstaja {{ device_class }}",
2958
+ "no_device_class_in_floor": "V nadstropju {{ floor }} ne obstaja {{ device_class }}",
2934
2959
  "no_entity": "Ni naprave ali entitete z imenom {{ entity }}",
2935
2960
  "no_entity_in_area": "Ni naprave ali entitete z imenom {{ entity }} v območju {{ area }}",
2961
+ "no_entity_in_floor": "Ni naprave ali entitete z imenom {{ entity }} v nadstropju {{ floor }}",
2936
2962
  "handle_error": "Med izvajanjem je prišlo do nepričakovane napake",
2937
2963
  "no_entity_exposed": "Naprava ali entiteta z imenom {{ entity }} ni izpostavljena",
2938
2964
  "no_entity_in_area_exposed": "Naprava ali entiteta z imenom {{ entity }} v območju {{ area }} ni izpostavljena",
2965
+ "no_entity_in_floor_exposed": "Naprava ali entiteta z imenom {{ entity }} v nadstropju {{ floor }} ni izpostavljena",
2939
2966
  "no_domain_exposed": "Oprosti, {{ domain }} ni izpostavljena",
2940
2967
  "no_domain_in_area_exposed": "Oprosti, {{ domain }} v območju {{ area }} ni izpostavljena",
2968
+ "no_domain_in_floor_exposed": "Oprosti, {{ domain }} v nadstropju {{ floor }} ni izpostavljena",
2941
2969
  "no_device_class_exposed": "Oprosti, {{ device_class }} ni izpostavljena",
2942
2970
  "no_device_class_in_area_exposed": "Oprosti, {{ device_class }} v območju {{ area }} ni izpostavljena",
2971
+ "no_device_class_in_floor_exposed": "Oprosti, {{ device_class }} v nadstropju {{ floor }} ni izpostavljena",
2943
2972
  "duplicate_entities": "Oprosti, klicanih je bilo dvoje ali več naprav z imenom {{ entity }}",
2944
- "duplicate_entities_in_area": "Oprosti, v območju {{ area }} je bilo klicanih dvoje ali več naprav z imenom {{ entity }}"
2973
+ "duplicate_entities_in_area": "Oprosti, v območju {{ area }} je bilo klicanih dvoje ali več naprav z imenom {{ entity }}",
2974
+ "duplicate_entities_in_floor": "Oprosti, v nadstropju {{ floor }} je bilo klicanih dvoje ali več naprav z imenom {{ entity }}"
2945
2975
  },
2946
2976
  "intents": {
2947
2977
  "HassGetState": {
@@ -2965,6 +2995,7 @@
2965
2995
  "default": "Izklapljam {{ state.domain }}",
2966
2996
  "default_name": "Izklapljam {{ slots.name }}",
2967
2997
  "lights_area": "Izklopljeno",
2998
+ "lights_floor": "Izklopljeno",
2968
2999
  "light_all": "Vse luči izklopljene",
2969
3000
  "cover_device_class": "Zapiram {{ slots.device_class }}",
2970
3001
  "cover_single": "Zapiram {{ slots.name }}",
@@ -2981,6 +3012,7 @@
2981
3012
  "default": "Vklopljeno {{ state.domain }}",
2982
3013
  "default_name": "Vklopljeno {{ slots.name }}",
2983
3014
  "lights_area": "Vklopljeno",
3015
+ "lights_floor": "Vklopljeno",
2984
3016
  "fans_area": "Ventilator je vklopljen",
2985
3017
  "cover_device_class": "Odpiram {{ slots.device_class }}",
2986
3018
  "cover_single": "Odpiram {{ slots.name }}",
@@ -3578,6 +3610,7 @@
3578
3610
  "katere": "katere",
3579
3611
  "koliko": "koliko",
3580
3612
  "kje_je": "kje je|kje|kje so|kje se nahaja[jo|ta]",
3613
+ "floor": "{floor} [prv(o|em)|drug(o|em)|tretj(e|em)|četrt(o|em)|pet(o|em)|šest(o|em)|sedm(o|em)|osm(o|em)|devet(em|o)] [ nadstropj[u|e|a]] | klet[i|em] | pritličj(e|u) | mansard(i|a)",
3581
3614
  "vse": "[vsi|vsa|vse|vso]",
3582
3615
  "vsa": "[vsi|vsa|vse|vso]",
3583
3616
  "lock": "vrat[a]|ključavnic(e|a|o)",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: home-assistant-intents
3
- Version: 2024.3.27
3
+ Version: 2024.4.3
4
4
  Summary: Intents for Home Assistant
5
5
  Author-email: The Home Assistant Authors <hello@home-assistant.io>
6
6
  License: Apache-2.0
@@ -1,23 +1,23 @@
1
- home_assistant_intents/__init__.py,sha256=ILy0BXPlF1h98KBC_0PXHBCkXnWAnXyHdCzzDm5dMAA,2515
1
+ home_assistant_intents/__init__.py,sha256=WaWhgu9t3bADxizFkn-WsPCD795JKm4sU7dbMB4sa_c,3368
2
2
  home_assistant_intents/languages.py,sha256=yMLptHAtNZOdVTBH7gBncfEf8XOlVVqkwH8pxBz8WVA,594
3
3
  home_assistant_intents/data/af.json,sha256=r7aJrdTJIFxfEdImgSH5yfNi5L_hsMyltTPrTOYCkuY,3391
4
4
  home_assistant_intents/data/ar.json,sha256=oB-5SQFmkyP7GAcXU8MDbz9Pg2X3cMQq6ONAB6Lc1Hk,19745
5
5
  home_assistant_intents/data/bg.json,sha256=fdUOfFU884zM3MkwAAyyEpMlFmgIwLwj90UlrgrDRbE,60407
6
6
  home_assistant_intents/data/bn.json,sha256=4kORqghTS2fHqhmfIPog7QZJvBDynyVw7hZxkJraWRY,2362
7
- home_assistant_intents/data/ca.json,sha256=WkhmMaqCtFCYYEp8A9hdhbrez-kMzV-qjfSxPSV-amM,19280
7
+ home_assistant_intents/data/ca.json,sha256=HwqnZo6XdsgCd6_q9yrMl7BeRPtze7eThrwpEaUWTD0,20718
8
8
  home_assistant_intents/data/cs.json,sha256=wOrmTRcAU2sDOhgMyJeCRXGOlCeHNC47gseQ9uzTlms,66715
9
9
  home_assistant_intents/data/da.json,sha256=sFMNTdadaKfsOoZoJGdflMBgKORjGTRpLlxYHbaeUGo,22955
10
10
  home_assistant_intents/data/de-CH.json,sha256=_NB_Vrqtp85zZhd9KAih7N_XVCSCF1EKfAZVIskQcAI,30623
11
11
  home_assistant_intents/data/de.json,sha256=XDn6vz-nSZCiDy8rtnuTJoEwXDDTkgA4_lQd16bMWFw,65003
12
12
  home_assistant_intents/data/el.json,sha256=fbGqkARnmiGoyRu23fXyeCCj6z0HygTPklriRDduqXk,67879
13
- home_assistant_intents/data/en.json,sha256=NhowyF_7TmE6EC3sWTS3ZO1nBfBCvxFaI-f67SbkeQc,99875
13
+ home_assistant_intents/data/en.json,sha256=1K6AFP-WDTjGWSoyszMz6zFcJna35-dkG-k4ooO4EZs,101806
14
14
  home_assistant_intents/data/es.json,sha256=N9veOrG5xXAWTS-0JnHrj9fD-jYJNE4hX-plbITuzDc,116685
15
15
  home_assistant_intents/data/et.json,sha256=eVC_10snsT3fgE9DamDRVAcAbNjx7yydl3o-HgpRlD8,1005
16
16
  home_assistant_intents/data/eu.json,sha256=DI5uUuXVpleeK7qomNERNK5DD8OyyFtSZgyg11aWwTg,6407
17
17
  home_assistant_intents/data/fa.json,sha256=lV85lAo5z1BnNEsLvhz1p91tPcbKLxRbC7-c22MERT0,3344
18
18
  home_assistant_intents/data/fi.json,sha256=AX0G18iZZIcyEWNIpQaIoU3v6py70vLEpDt8GDVjfSM,68674
19
19
  home_assistant_intents/data/fr-CA.json,sha256=vLf5Cvx3BJUmIhOQFGbM0ISIxWTqzAUi3GzNz-CCLg0,9009
20
- home_assistant_intents/data/fr.json,sha256=uYz9iB09pOf8CYLWeAme-StvD63FE0z2z-ldsHgSNRo,132330
20
+ home_assistant_intents/data/fr.json,sha256=AHYTzy6jyvoQbXCKvabBAcZSTDdwBViqLV1ypCove1w,137454
21
21
  home_assistant_intents/data/gl.json,sha256=sZb7jKVlvRH91WPNLvntnqhFpjGQhwyqplB-Kk30Mvk,36322
22
22
  home_assistant_intents/data/gu.json,sha256=g_FtE4v7efgmZC8GY1YLVEonu9XWCbXJO310HpUen60,1832
23
23
  home_assistant_intents/data/he.json,sha256=Rc_3cTqZi3yoqpuXdUarFLk4j73eecrCMR_0KAGwILM,17909
@@ -36,15 +36,15 @@ home_assistant_intents/data/lv.json,sha256=jR0X7ijElhK6eoT3DsthJoFOO2eK28TM6XVfN
36
36
  home_assistant_intents/data/ml.json,sha256=yINyiooZIEivQcFCv69l-RBNIeKiLUMwJ8-hoH6iI9A,14734
37
37
  home_assistant_intents/data/mn.json,sha256=NYDBLX0LGmi8E_BDEAR-vq9OVRvrzZ7MKYZShDMK7dU,1825
38
38
  home_assistant_intents/data/ms.json,sha256=wnD5L3pmr6PlUzrKPrWo83XMyq0t2NXHueB91OqRd54,6416
39
- home_assistant_intents/data/nb.json,sha256=1dKZAX-8gilFX7U5iXuHXoVMye7XF-xu_cEtuAAVpxg,66021
40
- home_assistant_intents/data/nl.json,sha256=A876I-tDOqTP7Nu0ogXJTB7KFh00U8jA24jGCVUpDck,117662
39
+ home_assistant_intents/data/nb.json,sha256=N1_1I-u6GF2z8o0fd6Q7o_u-xzmoFVtHGd8YseB6OJY,72078
40
+ home_assistant_intents/data/nl.json,sha256=cIMLaMR_emZtDQ4Pu4bBWp8lVgH5nSZhZowYUEJD6Vg,117660
41
41
  home_assistant_intents/data/pl.json,sha256=I2rVJn2VutLtNUjgTD-xGbrgV62fF9pPs90qoq_SHBg,80016
42
42
  home_assistant_intents/data/pt-br.json,sha256=fKjkFidvt8nRYnT1jD45B6ZJDghtD03oa2doZnzNjJo,19196
43
43
  home_assistant_intents/data/pt.json,sha256=eTRjecj-H-S36NVSs0K0w7giVXSjTrQWb3ZB7uhOC5I,18077
44
44
  home_assistant_intents/data/ro.json,sha256=7zWrzxzc4kAyc8YK0t8RfREaZJQ_BIkluamEiiVP20w,107508
45
45
  home_assistant_intents/data/ru.json,sha256=6r8VevgKdTGBbk2bPcfM2fDkAwVmPFZ8XcxcyQppj10,103994
46
46
  home_assistant_intents/data/sk.json,sha256=MrCPpqOFJPq3eV6RP4cn6HmtMqe4Egn9GhL3HxrdUKU,18266
47
- home_assistant_intents/data/sl.json,sha256=xZjRj_eB5LmkKiVDwaPu0ILAaBbIgUC4paq7JYEjUY4,108912
47
+ home_assistant_intents/data/sl.json,sha256=PjDlLxrghYxTfgyRoilHowdd4qwKt0pJfDovzBcUY_8,110627
48
48
  home_assistant_intents/data/sr.json,sha256=IdXB_g11jeb-AmaPt6Zx15zrJ_efspy8QHo9V3-pXvs,29113
49
49
  home_assistant_intents/data/sv.json,sha256=MJIq-c1XKQ-QBMq8AXkdOEK2B1CnGWDouHwzzbqPppY,22734
50
50
  home_assistant_intents/data/sw.json,sha256=G3xTarPXaweAVAOg9eqDT4Daol6NtzWcd7iGJA0bp4I,11284
@@ -56,9 +56,9 @@ home_assistant_intents/data/vi.json,sha256=jturPv4kXyZlJkk7v34If1oLwRETP_C967_EZ
56
56
  home_assistant_intents/data/zh-cn.json,sha256=t5qBdB1s7KpnqQ8JyuuoA_qXl0uHY_Pa3gsIJX5s4oE,19297
57
57
  home_assistant_intents/data/zh-hk.json,sha256=VoFdBsOGsd9T9HsQNW15wbiFdG8F5DGea5_Rg63V7PY,15749
58
58
  home_assistant_intents/data/zh-tw.json,sha256=TGlcOvaYcwVsY59RKLtGq-85UBtuOs770jg6hF9k8II,40899
59
- home_assistant_intents-2024.3.27.dist-info/LICENSE.md,sha256=m6lVCtSEONCDbdqz2kgLO2n_oKrHt4eLWgA556tClBE,18657
60
- home_assistant_intents-2024.3.27.dist-info/METADATA,sha256=3kTBzTC3Z18EAObmKzCYM85Bwljoj2QMz_w5jNPGdz0,1338
61
- home_assistant_intents-2024.3.27.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
62
- home_assistant_intents-2024.3.27.dist-info/top_level.txt,sha256=wGSxLu2P6im7w_GKNo37031GezQlDHNSQ494yzeDcJU,23
63
- home_assistant_intents-2024.3.27.dist-info/zip-safe,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
64
- home_assistant_intents-2024.3.27.dist-info/RECORD,,
59
+ home_assistant_intents-2024.4.3.dist-info/LICENSE.md,sha256=m6lVCtSEONCDbdqz2kgLO2n_oKrHt4eLWgA556tClBE,18657
60
+ home_assistant_intents-2024.4.3.dist-info/METADATA,sha256=FgdAkFPPJkEDMV7Vs4i8O1EBYr1lPRHjFqUwiybTUP0,1337
61
+ home_assistant_intents-2024.4.3.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
62
+ home_assistant_intents-2024.4.3.dist-info/top_level.txt,sha256=wGSxLu2P6im7w_GKNo37031GezQlDHNSQ494yzeDcJU,23
63
+ home_assistant_intents-2024.4.3.dist-info/zip-safe,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
64
+ home_assistant_intents-2024.4.3.dist-info/RECORD,,