homeassistant 2025.6.2__py3-none-any.whl → 2025.7.0b0__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.
Files changed (2790) hide show
  1. homeassistant/__main__.py +4 -8
  2. homeassistant/auth/mfa_modules/notify.py +4 -4
  3. homeassistant/auth/mfa_modules/totp.py +5 -5
  4. homeassistant/bootstrap.py +16 -9
  5. homeassistant/brands/sony.json +7 -1
  6. homeassistant/brands/tilt.json +5 -0
  7. homeassistant/components/abode/__init__.py +3 -73
  8. homeassistant/components/abode/services.py +90 -0
  9. homeassistant/components/adax/__init__.py +1 -1
  10. homeassistant/components/adax/coordinator.py +24 -1
  11. homeassistant/components/adax/sensor.py +77 -0
  12. homeassistant/components/aemet/sensor.py +3 -0
  13. homeassistant/components/agent_dvr/camera.py +2 -2
  14. homeassistant/components/ai_task/__init__.py +134 -0
  15. homeassistant/components/ai_task/const.py +34 -0
  16. homeassistant/components/ai_task/entity.py +103 -0
  17. homeassistant/components/ai_task/http.py +54 -0
  18. homeassistant/components/ai_task/icons.json +7 -0
  19. homeassistant/components/ai_task/manifest.json +9 -0
  20. homeassistant/components/ai_task/services.yaml +19 -0
  21. homeassistant/components/ai_task/strings.json +22 -0
  22. homeassistant/components/ai_task/task.py +75 -0
  23. homeassistant/components/ai_task/translations/bg.json +1 -0
  24. homeassistant/components/ai_task/translations/cs.json +22 -0
  25. homeassistant/components/ai_task/translations/de.json +22 -0
  26. homeassistant/components/ai_task/translations/el.json +22 -0
  27. homeassistant/components/ai_task/translations/en.json +22 -0
  28. homeassistant/components/ai_task/translations/es.json +22 -0
  29. homeassistant/components/ai_task/translations/et.json +22 -0
  30. homeassistant/components/ai_task/translations/fr.json +1 -0
  31. homeassistant/components/ai_task/translations/ga.json +1 -0
  32. homeassistant/components/ai_task/translations/lt.json +22 -0
  33. homeassistant/components/ai_task/translations/nl.json +1 -0
  34. homeassistant/components/ai_task/translations/pt.json +22 -0
  35. homeassistant/components/ai_task/translations/ru.json +22 -0
  36. homeassistant/components/ai_task/translations/sk.json +22 -0
  37. homeassistant/components/ai_task/translations/sv.json +19 -0
  38. homeassistant/components/ai_task/translations/tr.json +1 -0
  39. homeassistant/components/ai_task/translations/zh-Hans.json +22 -0
  40. homeassistant/components/ai_task/translations/zh-Hant.json +22 -0
  41. homeassistant/components/airly/config_flow.py +3 -3
  42. homeassistant/components/airnow/coordinator.py +1 -1
  43. homeassistant/components/airnow/manifest.json +1 -1
  44. homeassistant/components/airq/manifest.json +1 -1
  45. homeassistant/components/airthings/__init__.py +6 -20
  46. homeassistant/components/airthings/coordinator.py +36 -0
  47. homeassistant/components/airthings/sensor.py +26 -3
  48. homeassistant/components/airthings/translations/mk.json +11 -0
  49. homeassistant/components/airtouch5/manifest.json +1 -1
  50. homeassistant/components/alexa_devices/__init__.py +1 -0
  51. homeassistant/components/alexa_devices/binary_sensor.py +45 -4
  52. homeassistant/components/alexa_devices/icons.json +32 -2
  53. homeassistant/components/alexa_devices/manifest.json +1 -1
  54. homeassistant/components/alexa_devices/sensor.py +88 -0
  55. homeassistant/components/alexa_devices/strings.json +15 -0
  56. homeassistant/components/alexa_devices/translations/cs.json +15 -0
  57. homeassistant/components/alexa_devices/translations/de.json +15 -0
  58. homeassistant/components/alexa_devices/translations/el.json +15 -0
  59. homeassistant/components/alexa_devices/translations/en.json +15 -0
  60. homeassistant/components/alexa_devices/translations/es.json +15 -0
  61. homeassistant/components/alexa_devices/translations/et.json +15 -0
  62. homeassistant/components/alexa_devices/translations/pt.json +75 -0
  63. homeassistant/components/alexa_devices/translations/sk.json +15 -0
  64. homeassistant/components/alexa_devices/translations/zh-Hant.json +15 -0
  65. homeassistant/components/altruist/__init__.py +27 -0
  66. homeassistant/components/altruist/config_flow.py +107 -0
  67. homeassistant/components/altruist/const.py +5 -0
  68. homeassistant/components/altruist/coordinator.py +64 -0
  69. homeassistant/components/altruist/icons.json +15 -0
  70. homeassistant/components/altruist/manifest.json +12 -0
  71. homeassistant/components/altruist/quality_scale.yaml +83 -0
  72. homeassistant/components/altruist/sensor.py +249 -0
  73. homeassistant/components/altruist/strings.json +51 -0
  74. homeassistant/components/altruist/translations/bg.json +41 -0
  75. homeassistant/components/altruist/translations/cs.json +51 -0
  76. homeassistant/components/altruist/translations/de.json +51 -0
  77. homeassistant/components/altruist/translations/el.json +51 -0
  78. homeassistant/components/altruist/translations/en.json +51 -0
  79. homeassistant/components/altruist/translations/es.json +51 -0
  80. homeassistant/components/altruist/translations/et.json +51 -0
  81. homeassistant/components/altruist/translations/lt.json +51 -0
  82. homeassistant/components/altruist/translations/nl.json +19 -0
  83. homeassistant/components/altruist/translations/pt.json +51 -0
  84. homeassistant/components/altruist/translations/sk.json +51 -0
  85. homeassistant/components/altruist/translations/sv.json +47 -0
  86. homeassistant/components/altruist/translations/zh-Hans.json +51 -0
  87. homeassistant/components/altruist/translations/zh-Hant.json +51 -0
  88. homeassistant/components/amcrest/__init__.py +4 -50
  89. homeassistant/components/amcrest/services.py +62 -0
  90. homeassistant/components/analytics/analytics.py +13 -2
  91. homeassistant/components/android_ip_webcam/camera.py +16 -0
  92. homeassistant/components/anthropic/__init__.py +84 -3
  93. homeassistant/components/anthropic/config_flow.py +107 -53
  94. homeassistant/components/anthropic/const.py +2 -0
  95. homeassistant/components/anthropic/conversation.py +41 -25
  96. homeassistant/components/anthropic/strings.json +34 -18
  97. homeassistant/components/anthropic/translations/bg.json +0 -12
  98. homeassistant/components/anthropic/translations/ca.json +0 -14
  99. homeassistant/components/anthropic/translations/cs.json +33 -18
  100. homeassistant/components/anthropic/translations/de.json +33 -18
  101. homeassistant/components/anthropic/translations/el.json +33 -13
  102. homeassistant/components/anthropic/translations/en-GB.json +0 -22
  103. homeassistant/components/anthropic/translations/en.json +33 -18
  104. homeassistant/components/anthropic/translations/es.json +33 -18
  105. homeassistant/components/anthropic/translations/et.json +33 -18
  106. homeassistant/components/anthropic/translations/fi.json +1 -11
  107. homeassistant/components/anthropic/translations/fr.json +0 -22
  108. homeassistant/components/anthropic/translations/ga.json +1 -17
  109. homeassistant/components/anthropic/translations/gl.json +0 -17
  110. homeassistant/components/anthropic/translations/he.json +0 -13
  111. homeassistant/components/anthropic/translations/hu.json +0 -22
  112. homeassistant/components/anthropic/translations/id.json +0 -10
  113. homeassistant/components/anthropic/translations/it.json +0 -12
  114. homeassistant/components/anthropic/translations/ja.json +0 -17
  115. homeassistant/components/anthropic/translations/ko.json +0 -13
  116. homeassistant/components/anthropic/translations/lt.json +33 -18
  117. homeassistant/components/anthropic/translations/nl.json +15 -11
  118. homeassistant/components/anthropic/translations/pl.json +0 -10
  119. homeassistant/components/anthropic/translations/pt-BR.json +1 -11
  120. homeassistant/components/anthropic/translations/pt.json +33 -18
  121. homeassistant/components/anthropic/translations/ru.json +0 -22
  122. homeassistant/components/anthropic/translations/sk.json +33 -18
  123. homeassistant/components/anthropic/translations/sl.json +0 -12
  124. homeassistant/components/anthropic/translations/sv.json +20 -18
  125. homeassistant/components/anthropic/translations/tr.json +0 -22
  126. homeassistant/components/anthropic/translations/vi.json +1 -14
  127. homeassistant/components/anthropic/translations/zh-Hans.json +33 -18
  128. homeassistant/components/anthropic/translations/zh-Hant.json +33 -18
  129. homeassistant/components/apcupsd/sensor.py +45 -0
  130. homeassistant/components/api/__init__.py +20 -3
  131. homeassistant/components/assist_pipeline/pipeline.py +10 -0
  132. homeassistant/components/assist_satellite/__init__.py +95 -1
  133. homeassistant/components/assist_satellite/entity.py +159 -1
  134. homeassistant/components/assist_satellite/icons.json +3 -0
  135. homeassistant/components/assist_satellite/manifest.json +2 -1
  136. homeassistant/components/assist_satellite/services.yaml +46 -0
  137. homeassistant/components/assist_satellite/strings.json +38 -0
  138. homeassistant/components/assist_satellite/translations/bg.json +15 -0
  139. homeassistant/components/assist_satellite/translations/cs.json +38 -0
  140. homeassistant/components/assist_satellite/translations/de.json +38 -0
  141. homeassistant/components/assist_satellite/translations/el.json +38 -0
  142. homeassistant/components/assist_satellite/translations/en.json +38 -0
  143. homeassistant/components/assist_satellite/translations/es.json +38 -0
  144. homeassistant/components/assist_satellite/translations/et.json +38 -0
  145. homeassistant/components/assist_satellite/translations/fr.json +30 -0
  146. homeassistant/components/assist_satellite/translations/ga.json +30 -0
  147. homeassistant/components/assist_satellite/translations/lt.json +38 -0
  148. homeassistant/components/assist_satellite/translations/mk.json +22 -1
  149. homeassistant/components/assist_satellite/translations/pt.json +38 -0
  150. homeassistant/components/assist_satellite/translations/ru.json +38 -0
  151. homeassistant/components/assist_satellite/translations/sk.json +38 -0
  152. homeassistant/components/assist_satellite/translations/sv.json +27 -0
  153. homeassistant/components/assist_satellite/translations/zh-Hans.json +38 -0
  154. homeassistant/components/assist_satellite/translations/zh-Hant.json +38 -0
  155. homeassistant/components/atag/water_heater.py +2 -0
  156. homeassistant/components/august/translations/mk.json +12 -0
  157. homeassistant/components/aurora/translations/sv.json +2 -2
  158. homeassistant/components/automation/helpers.py +2 -3
  159. homeassistant/components/axis/hub/hub.py +2 -2
  160. homeassistant/components/backup/__init__.py +4 -2
  161. homeassistant/components/blink/__init__.py +2 -2
  162. homeassistant/components/blink/services.py +27 -25
  163. homeassistant/components/bosch_alarm/manifest.json +1 -1
  164. homeassistant/components/bosch_alarm/quality_scale.yaml +20 -17
  165. homeassistant/components/bryant_evolution/translations/el.json +1 -1
  166. homeassistant/components/bsblan/manifest.json +1 -1
  167. homeassistant/components/camera/__init__.py +8 -20
  168. homeassistant/components/camera/manifest.json +1 -1
  169. homeassistant/components/camera/webrtc.py +9 -0
  170. homeassistant/components/climate/__init__.py +0 -26
  171. homeassistant/components/climate/strings.json +3 -0
  172. homeassistant/components/climate/translations/bg.json +3 -0
  173. homeassistant/components/climate/translations/cs.json +3 -0
  174. homeassistant/components/climate/translations/de.json +3 -0
  175. homeassistant/components/climate/translations/el.json +3 -0
  176. homeassistant/components/climate/translations/en.json +3 -0
  177. homeassistant/components/climate/translations/es.json +3 -0
  178. homeassistant/components/climate/translations/et.json +3 -0
  179. homeassistant/components/climate/translations/fr.json +3 -0
  180. homeassistant/components/climate/translations/ga.json +7 -1
  181. homeassistant/components/climate/translations/he.json +3 -0
  182. homeassistant/components/climate/translations/id.json +3 -0
  183. homeassistant/components/climate/translations/lt.json +3 -0
  184. homeassistant/components/climate/translations/pt.json +3 -0
  185. homeassistant/components/climate/translations/ru.json +3 -0
  186. homeassistant/components/climate/translations/sk.json +3 -0
  187. homeassistant/components/climate/translations/sv.json +3 -0
  188. homeassistant/components/climate/translations/tr.json +3 -0
  189. homeassistant/components/climate/translations/zh-Hans.json +3 -0
  190. homeassistant/components/climate/translations/zh-Hant.json +3 -0
  191. homeassistant/components/cloud/manifest.json +1 -1
  192. homeassistant/components/cloudflare/__init__.py +24 -13
  193. homeassistant/components/command_line/notify.py +4 -23
  194. homeassistant/components/command_line/sensor.py +3 -30
  195. homeassistant/components/command_line/utils.py +39 -8
  196. homeassistant/components/compensation/manifest.json +1 -1
  197. homeassistant/components/control4/__init__.py +2 -2
  198. homeassistant/components/conversation/__init__.py +1 -1
  199. homeassistant/components/conversation/chat_log.py +30 -19
  200. homeassistant/components/conversation/manifest.json +1 -1
  201. homeassistant/components/conversation/models.py +13 -1
  202. homeassistant/components/cover/__init__.py +0 -4
  203. homeassistant/components/deconz/climate.py +0 -2
  204. homeassistant/components/deconz/logbook.py +3 -3
  205. homeassistant/components/derivative/config_flow.py +4 -0
  206. homeassistant/components/derivative/const.py +1 -0
  207. homeassistant/components/derivative/manifest.json +1 -1
  208. homeassistant/components/derivative/sensor.py +105 -22
  209. homeassistant/components/derivative/strings.json +4 -0
  210. homeassistant/components/derivative/translations/cs.json +4 -0
  211. homeassistant/components/derivative/translations/de.json +4 -0
  212. homeassistant/components/derivative/translations/el.json +4 -0
  213. homeassistant/components/derivative/translations/en.json +4 -0
  214. homeassistant/components/derivative/translations/es.json +4 -0
  215. homeassistant/components/derivative/translations/et.json +4 -0
  216. homeassistant/components/derivative/translations/lt.json +4 -0
  217. homeassistant/components/derivative/translations/pt.json +4 -0
  218. homeassistant/components/derivative/translations/ru.json +1 -0
  219. homeassistant/components/derivative/translations/sk.json +4 -0
  220. homeassistant/components/derivative/translations/sv.json +4 -0
  221. homeassistant/components/derivative/translations/zh-Hans.json +4 -0
  222. homeassistant/components/derivative/translations/zh-Hant.json +4 -0
  223. homeassistant/components/device_automation/condition.py +52 -19
  224. homeassistant/components/devolo_home_control/__init__.py +28 -16
  225. homeassistant/components/devolo_home_control/climate.py +1 -1
  226. homeassistant/components/devolo_home_control/const.py +0 -3
  227. homeassistant/components/devolo_home_control/cover.py +1 -1
  228. homeassistant/components/devolo_home_control/entity.py +21 -0
  229. homeassistant/components/devolo_home_control/light.py +1 -1
  230. homeassistant/components/devolo_home_control/siren.py +1 -1
  231. homeassistant/components/devolo_home_control/strings.json +21 -0
  232. homeassistant/components/devolo_home_control/translations/cs.json +21 -0
  233. homeassistant/components/devolo_home_control/translations/de.json +21 -0
  234. homeassistant/components/devolo_home_control/translations/el.json +17 -0
  235. homeassistant/components/devolo_home_control/translations/en.json +21 -0
  236. homeassistant/components/devolo_home_control/translations/es.json +21 -0
  237. homeassistant/components/devolo_home_control/translations/et.json +21 -0
  238. homeassistant/components/devolo_home_control/translations/ga.json +13 -1
  239. homeassistant/components/devolo_home_control/translations/lt.json +11 -0
  240. homeassistant/components/devolo_home_control/translations/pt.json +21 -0
  241. homeassistant/components/devolo_home_control/translations/sk.json +21 -0
  242. homeassistant/components/devolo_home_control/translations/tr.json +11 -0
  243. homeassistant/components/devolo_home_control/translations/zh-Hans.json +11 -0
  244. homeassistant/components/devolo_home_control/translations/zh-Hant.json +21 -0
  245. homeassistant/components/devolo_home_network/device_tracker.py +2 -0
  246. homeassistant/components/discord/manifest.json +1 -1
  247. homeassistant/components/dnsip/sensor.py +4 -3
  248. homeassistant/components/dormakaba_dkey/manifest.json +1 -1
  249. homeassistant/components/downloader/__init__.py +2 -2
  250. homeassistant/components/downloader/services.py +4 -4
  251. homeassistant/components/ecovacs/binary_sensor.py +4 -5
  252. homeassistant/components/ecovacs/entity.py +8 -12
  253. homeassistant/components/ecovacs/number.py +3 -5
  254. homeassistant/components/ecovacs/select.py +5 -5
  255. homeassistant/components/ecovacs/sensor.py +2 -4
  256. homeassistant/components/edl21/manifest.json +1 -1
  257. homeassistant/components/eheimdigital/number.py +13 -13
  258. homeassistant/components/eheimdigital/select.py +12 -12
  259. homeassistant/components/eheimdigital/sensor.py +11 -11
  260. homeassistant/components/eheimdigital/time.py +10 -12
  261. homeassistant/components/electric_kiwi/strings.json +7 -1
  262. homeassistant/components/electric_kiwi/translations/cs.json +6 -0
  263. homeassistant/components/electric_kiwi/translations/de.json +6 -0
  264. homeassistant/components/electric_kiwi/translations/el.json +6 -0
  265. homeassistant/components/electric_kiwi/translations/en-GB.json +6 -0
  266. homeassistant/components/electric_kiwi/translations/en.json +6 -0
  267. homeassistant/components/electric_kiwi/translations/es.json +6 -0
  268. homeassistant/components/electric_kiwi/translations/et.json +6 -0
  269. homeassistant/components/electric_kiwi/translations/fr.json +6 -0
  270. homeassistant/components/electric_kiwi/translations/ga.json +14 -1
  271. homeassistant/components/electric_kiwi/translations/he.json +6 -0
  272. homeassistant/components/electric_kiwi/translations/id.json +6 -0
  273. homeassistant/components/electric_kiwi/translations/lt.json +6 -0
  274. homeassistant/components/electric_kiwi/translations/mk.json +14 -1
  275. homeassistant/components/electric_kiwi/translations/pt.json +6 -0
  276. homeassistant/components/electric_kiwi/translations/ru.json +6 -0
  277. homeassistant/components/electric_kiwi/translations/sk.json +6 -0
  278. homeassistant/components/electric_kiwi/translations/sv.json +6 -0
  279. homeassistant/components/electric_kiwi/translations/tr.json +6 -0
  280. homeassistant/components/electric_kiwi/translations/zh-Hans.json +6 -0
  281. homeassistant/components/electric_kiwi/translations/zh-Hant.json +6 -0
  282. homeassistant/components/elkm1/__init__.py +5 -65
  283. homeassistant/components/elkm1/services.py +78 -0
  284. homeassistant/components/enphase_envoy/__init__.py +5 -22
  285. homeassistant/components/enphase_envoy/config_flow.py +2 -2
  286. homeassistant/components/enphase_envoy/diagnostics.py +6 -4
  287. homeassistant/components/enphase_envoy/entity.py +2 -2
  288. homeassistant/components/enphase_envoy/manifest.json +1 -1
  289. homeassistant/components/enphase_envoy/sensor.py +109 -0
  290. homeassistant/components/enphase_envoy/strings.json +28 -1
  291. homeassistant/components/enphase_envoy/translations/bg.json +6 -0
  292. homeassistant/components/enphase_envoy/translations/cs.json +28 -1
  293. homeassistant/components/enphase_envoy/translations/de.json +47 -20
  294. homeassistant/components/enphase_envoy/translations/el.json +24 -0
  295. homeassistant/components/enphase_envoy/translations/en-GB.json +0 -3
  296. homeassistant/components/enphase_envoy/translations/en.json +28 -1
  297. homeassistant/components/enphase_envoy/translations/es.json +28 -1
  298. homeassistant/components/enphase_envoy/translations/et.json +27 -0
  299. homeassistant/components/enphase_envoy/translations/hu.json +0 -3
  300. homeassistant/components/enphase_envoy/translations/ja.json +0 -3
  301. homeassistant/components/enphase_envoy/translations/lt.json +28 -1
  302. homeassistant/components/enphase_envoy/translations/pt-BR.json +0 -3
  303. homeassistant/components/enphase_envoy/translations/pt.json +27 -0
  304. homeassistant/components/enphase_envoy/translations/ru.json +0 -3
  305. homeassistant/components/enphase_envoy/translations/sk.json +28 -1
  306. homeassistant/components/enphase_envoy/translations/sv.json +18 -3
  307. homeassistant/components/enphase_envoy/translations/tr.json +0 -3
  308. homeassistant/components/enphase_envoy/translations/zh-Hans.json +28 -1
  309. homeassistant/components/enphase_envoy/translations/zh-Hant.json +27 -0
  310. homeassistant/components/eq3btsmart/__init__.py +1 -7
  311. homeassistant/components/eq3btsmart/binary_sensor.py +0 -4
  312. homeassistant/components/eq3btsmart/climate.py +27 -46
  313. homeassistant/components/eq3btsmart/const.py +10 -9
  314. homeassistant/components/eq3btsmart/entity.py +38 -5
  315. homeassistant/components/eq3btsmart/manifest.json +1 -1
  316. homeassistant/components/eq3btsmart/number.py +18 -24
  317. homeassistant/components/eq3btsmart/schemas.py +2 -2
  318. homeassistant/components/eq3btsmart/sensor.py +1 -7
  319. homeassistant/components/eq3btsmart/switch.py +24 -8
  320. homeassistant/components/eq3btsmart/translations/nl.json +12 -0
  321. homeassistant/components/esphome/assist_satellite.py +12 -1
  322. homeassistant/components/esphome/dashboard.py +1 -3
  323. homeassistant/components/esphome/entity.py +89 -14
  324. homeassistant/components/esphome/entry_data.py +22 -2
  325. homeassistant/components/esphome/manager.py +63 -3
  326. homeassistant/components/esphome/manifest.json +1 -1
  327. homeassistant/components/esphome/translations/sv.json +2 -2
  328. homeassistant/components/evohome/water_heater.py +5 -3
  329. homeassistant/components/ezviz/select.py +104 -24
  330. homeassistant/components/ezviz/strings.json +10 -0
  331. homeassistant/components/ezviz/translations/cs.json +10 -0
  332. homeassistant/components/ezviz/translations/de.json +10 -0
  333. homeassistant/components/ezviz/translations/el.json +10 -0
  334. homeassistant/components/ezviz/translations/en.json +10 -0
  335. homeassistant/components/ezviz/translations/es.json +10 -0
  336. homeassistant/components/ezviz/translations/et.json +10 -0
  337. homeassistant/components/ezviz/translations/pt.json +10 -0
  338. homeassistant/components/ezviz/translations/sk.json +10 -0
  339. homeassistant/components/ezviz/translations/zh-Hant.json +10 -0
  340. homeassistant/components/ffmpeg/__init__.py +10 -41
  341. homeassistant/components/ffmpeg/const.py +9 -0
  342. homeassistant/components/ffmpeg/services.py +52 -0
  343. homeassistant/components/fibaro/cover.py +77 -32
  344. homeassistant/components/fibaro/light.py +2 -2
  345. homeassistant/components/fitbit/strings.json +7 -1
  346. homeassistant/components/fitbit/translations/cs.json +6 -0
  347. homeassistant/components/fitbit/translations/de.json +6 -0
  348. homeassistant/components/fitbit/translations/el.json +9 -0
  349. homeassistant/components/fitbit/translations/en-GB.json +6 -0
  350. homeassistant/components/fitbit/translations/en.json +6 -0
  351. homeassistant/components/fitbit/translations/es.json +6 -0
  352. homeassistant/components/fitbit/translations/et.json +6 -0
  353. homeassistant/components/fitbit/translations/fr.json +6 -0
  354. homeassistant/components/fitbit/translations/ga.json +14 -1
  355. homeassistant/components/fitbit/translations/he.json +6 -0
  356. homeassistant/components/fitbit/translations/id.json +6 -0
  357. homeassistant/components/fitbit/translations/lt.json +6 -0
  358. homeassistant/components/fitbit/translations/mk.json +14 -1
  359. homeassistant/components/fitbit/translations/pt.json +6 -0
  360. homeassistant/components/fitbit/translations/ru.json +6 -0
  361. homeassistant/components/fitbit/translations/sk.json +6 -0
  362. homeassistant/components/fitbit/translations/sv.json +6 -0
  363. homeassistant/components/fitbit/translations/tr.json +6 -0
  364. homeassistant/components/fitbit/translations/zh-Hans.json +6 -0
  365. homeassistant/components/fitbit/translations/zh-Hant.json +6 -0
  366. homeassistant/components/flick_electric/translations/mk.json +9 -0
  367. homeassistant/components/flume/translations/nl.json +13 -0
  368. homeassistant/components/foscam/__init__.py +1 -1
  369. homeassistant/components/foscam/config_flow.py +2 -2
  370. homeassistant/components/foscam/coordinator.py +1 -1
  371. homeassistant/components/foscam/manifest.json +2 -2
  372. homeassistant/components/freedompro/climate.py +0 -2
  373. homeassistant/components/fritz/__init__.py +1 -1
  374. homeassistant/components/fritz/binary_sensor.py +2 -1
  375. homeassistant/components/fritz/button.py +3 -8
  376. homeassistant/components/fritz/coordinator.py +16 -207
  377. homeassistant/components/fritz/device_tracker.py +3 -8
  378. homeassistant/components/fritz/entity.py +2 -1
  379. homeassistant/components/fritz/helpers.py +39 -0
  380. homeassistant/components/fritz/models.py +182 -0
  381. homeassistant/components/fritz/sensor.py +2 -1
  382. homeassistant/components/fritz/services.py +3 -2
  383. homeassistant/components/fritz/switch.py +3 -9
  384. homeassistant/components/fritzbox/translations/mk.json +9 -0
  385. homeassistant/components/fronius/translations/sv.json +1 -1
  386. homeassistant/components/frontend/__init__.py +1 -2
  387. homeassistant/components/frontend/manifest.json +1 -1
  388. homeassistant/components/fully_kiosk/__init__.py +1 -1
  389. homeassistant/components/fully_kiosk/services.py +65 -63
  390. homeassistant/components/geocaching/strings.json +7 -1
  391. homeassistant/components/geocaching/translations/cs.json +6 -0
  392. homeassistant/components/geocaching/translations/de.json +6 -0
  393. homeassistant/components/geocaching/translations/el.json +6 -0
  394. homeassistant/components/geocaching/translations/en-GB.json +6 -0
  395. homeassistant/components/geocaching/translations/en.json +6 -0
  396. homeassistant/components/geocaching/translations/es.json +6 -0
  397. homeassistant/components/geocaching/translations/et.json +6 -0
  398. homeassistant/components/geocaching/translations/fr.json +6 -0
  399. homeassistant/components/geocaching/translations/ga.json +14 -1
  400. homeassistant/components/geocaching/translations/he.json +6 -0
  401. homeassistant/components/geocaching/translations/id.json +6 -0
  402. homeassistant/components/geocaching/translations/lt.json +6 -0
  403. homeassistant/components/geocaching/translations/mk.json +14 -1
  404. homeassistant/components/geocaching/translations/pt.json +6 -0
  405. homeassistant/components/geocaching/translations/ru.json +6 -0
  406. homeassistant/components/geocaching/translations/sk.json +6 -0
  407. homeassistant/components/geocaching/translations/sv.json +6 -0
  408. homeassistant/components/geocaching/translations/tr.json +6 -0
  409. homeassistant/components/geocaching/translations/zh-Hans.json +6 -0
  410. homeassistant/components/geocaching/translations/zh-Hant.json +6 -0
  411. homeassistant/components/go2rtc/__init__.py +73 -32
  412. homeassistant/components/goalzero/sensor.py +1 -0
  413. homeassistant/components/google/__init__.py +3 -138
  414. homeassistant/components/google/strings.json +7 -1
  415. homeassistant/components/google/translations/cs.json +6 -0
  416. homeassistant/components/google/translations/de.json +6 -0
  417. homeassistant/components/google/translations/el.json +6 -0
  418. homeassistant/components/google/translations/en-GB.json +6 -0
  419. homeassistant/components/google/translations/en.json +6 -0
  420. homeassistant/components/google/translations/es.json +6 -0
  421. homeassistant/components/google/translations/et.json +6 -0
  422. homeassistant/components/google/translations/fr.json +6 -0
  423. homeassistant/components/google/translations/ga.json +10 -0
  424. homeassistant/components/google/translations/he.json +6 -0
  425. homeassistant/components/google/translations/id.json +6 -0
  426. homeassistant/components/google/translations/lt.json +6 -0
  427. homeassistant/components/google/translations/mk.json +14 -1
  428. homeassistant/components/google/translations/pt.json +6 -0
  429. homeassistant/components/google/translations/ru.json +6 -0
  430. homeassistant/components/google/translations/sk.json +6 -0
  431. homeassistant/components/google/translations/sv.json +6 -0
  432. homeassistant/components/google/translations/tr.json +6 -0
  433. homeassistant/components/google/translations/zh-Hans.json +6 -0
  434. homeassistant/components/google/translations/zh-Hant.json +6 -0
  435. homeassistant/components/google_assistant/helpers.py +5 -6
  436. homeassistant/components/google_assistant_sdk/__init__.py +4 -54
  437. homeassistant/components/google_assistant_sdk/services.py +63 -0
  438. homeassistant/components/google_assistant_sdk/strings.json +7 -1
  439. homeassistant/components/google_assistant_sdk/translations/cs.json +6 -0
  440. homeassistant/components/google_assistant_sdk/translations/de.json +6 -0
  441. homeassistant/components/google_assistant_sdk/translations/el.json +6 -0
  442. homeassistant/components/google_assistant_sdk/translations/en-GB.json +6 -0
  443. homeassistant/components/google_assistant_sdk/translations/en.json +6 -0
  444. homeassistant/components/google_assistant_sdk/translations/es.json +6 -0
  445. homeassistant/components/google_assistant_sdk/translations/et.json +6 -0
  446. homeassistant/components/google_assistant_sdk/translations/fr.json +6 -0
  447. homeassistant/components/google_assistant_sdk/translations/ga.json +12 -0
  448. homeassistant/components/google_assistant_sdk/translations/he.json +6 -0
  449. homeassistant/components/google_assistant_sdk/translations/id.json +6 -0
  450. homeassistant/components/google_assistant_sdk/translations/lt.json +6 -0
  451. homeassistant/components/google_assistant_sdk/translations/mk.json +14 -1
  452. homeassistant/components/google_assistant_sdk/translations/pt.json +6 -0
  453. homeassistant/components/google_assistant_sdk/translations/ru.json +6 -0
  454. homeassistant/components/google_assistant_sdk/translations/sk.json +6 -0
  455. homeassistant/components/google_assistant_sdk/translations/sv.json +6 -0
  456. homeassistant/components/google_assistant_sdk/translations/tr.json +6 -0
  457. homeassistant/components/google_assistant_sdk/translations/zh-Hans.json +6 -0
  458. homeassistant/components/google_assistant_sdk/translations/zh-Hant.json +6 -0
  459. homeassistant/components/google_drive/strings.json +7 -1
  460. homeassistant/components/google_drive/translations/cs.json +6 -0
  461. homeassistant/components/google_drive/translations/de.json +6 -0
  462. homeassistant/components/google_drive/translations/el.json +6 -0
  463. homeassistant/components/google_drive/translations/en-GB.json +6 -0
  464. homeassistant/components/google_drive/translations/en.json +6 -0
  465. homeassistant/components/google_drive/translations/es.json +6 -0
  466. homeassistant/components/google_drive/translations/et.json +6 -0
  467. homeassistant/components/google_drive/translations/fr.json +6 -0
  468. homeassistant/components/google_drive/translations/ga.json +8 -0
  469. homeassistant/components/google_drive/translations/he.json +6 -0
  470. homeassistant/components/google_drive/translations/id.json +6 -0
  471. homeassistant/components/google_drive/translations/lt.json +6 -0
  472. homeassistant/components/google_drive/translations/mk.json +14 -1
  473. homeassistant/components/google_drive/translations/pt.json +6 -0
  474. homeassistant/components/google_drive/translations/ru.json +6 -0
  475. homeassistant/components/google_drive/translations/sk.json +6 -0
  476. homeassistant/components/google_drive/translations/sv.json +6 -0
  477. homeassistant/components/google_drive/translations/tr.json +6 -0
  478. homeassistant/components/google_drive/translations/zh-Hans.json +6 -0
  479. homeassistant/components/google_drive/translations/zh-Hant.json +6 -0
  480. homeassistant/components/google_generative_ai_conversation/__init__.py +78 -5
  481. homeassistant/components/google_generative_ai_conversation/config_flow.py +101 -47
  482. homeassistant/components/google_generative_ai_conversation/const.py +5 -1
  483. homeassistant/components/google_generative_ai_conversation/conversation.py +22 -461
  484. homeassistant/components/google_generative_ai_conversation/entity.py +477 -0
  485. homeassistant/components/google_generative_ai_conversation/strings.json +39 -25
  486. homeassistant/components/google_generative_ai_conversation/translations/bg.json +15 -9
  487. homeassistant/components/google_generative_ai_conversation/translations/ca.json +0 -14
  488. homeassistant/components/google_generative_ai_conversation/translations/cs.json +41 -28
  489. homeassistant/components/google_generative_ai_conversation/translations/de.json +41 -28
  490. homeassistant/components/google_generative_ai_conversation/translations/el.json +41 -28
  491. homeassistant/components/google_generative_ai_conversation/translations/en-GB.json +0 -28
  492. homeassistant/components/google_generative_ai_conversation/translations/en.json +41 -28
  493. homeassistant/components/google_generative_ai_conversation/translations/es.json +41 -28
  494. homeassistant/components/google_generative_ai_conversation/translations/et.json +41 -28
  495. homeassistant/components/google_generative_ai_conversation/translations/fi.json +0 -13
  496. homeassistant/components/google_generative_ai_conversation/translations/fr.json +0 -25
  497. homeassistant/components/google_generative_ai_conversation/translations/fy.json +0 -11
  498. homeassistant/components/google_generative_ai_conversation/translations/ga.json +0 -9
  499. homeassistant/components/google_generative_ai_conversation/translations/he.json +0 -24
  500. homeassistant/components/google_generative_ai_conversation/translations/hu.json +0 -28
  501. homeassistant/components/google_generative_ai_conversation/translations/id.json +0 -23
  502. homeassistant/components/google_generative_ai_conversation/translations/it.json +0 -18
  503. homeassistant/components/google_generative_ai_conversation/translations/ja.json +0 -23
  504. homeassistant/components/google_generative_ai_conversation/translations/ko.json +0 -15
  505. homeassistant/components/google_generative_ai_conversation/translations/lt.json +41 -28
  506. homeassistant/components/google_generative_ai_conversation/translations/lv.json +0 -9
  507. homeassistant/components/google_generative_ai_conversation/translations/nb.json +0 -9
  508. homeassistant/components/google_generative_ai_conversation/translations/nl.json +17 -17
  509. homeassistant/components/google_generative_ai_conversation/translations/pl.json +0 -23
  510. homeassistant/components/google_generative_ai_conversation/translations/pt-BR.json +0 -11
  511. homeassistant/components/google_generative_ai_conversation/translations/pt.json +41 -28
  512. homeassistant/components/google_generative_ai_conversation/translations/ro.json +0 -11
  513. homeassistant/components/google_generative_ai_conversation/translations/ru.json +0 -28
  514. homeassistant/components/google_generative_ai_conversation/translations/sk.json +41 -28
  515. homeassistant/components/google_generative_ai_conversation/translations/sl.json +0 -23
  516. homeassistant/components/google_generative_ai_conversation/translations/sv.json +21 -28
  517. homeassistant/components/google_generative_ai_conversation/translations/tr.json +0 -23
  518. homeassistant/components/google_generative_ai_conversation/translations/uk.json +0 -11
  519. homeassistant/components/google_generative_ai_conversation/translations/vi.json +0 -12
  520. homeassistant/components/google_generative_ai_conversation/translations/zh-Hans.json +41 -28
  521. homeassistant/components/google_generative_ai_conversation/translations/zh-Hant.json +41 -28
  522. homeassistant/components/google_generative_ai_conversation/tts.py +215 -0
  523. homeassistant/components/google_mail/__init__.py +3 -3
  524. homeassistant/components/google_mail/services.py +48 -47
  525. homeassistant/components/google_mail/strings.json +7 -1
  526. homeassistant/components/google_mail/translations/cs.json +6 -0
  527. homeassistant/components/google_mail/translations/de.json +6 -0
  528. homeassistant/components/google_mail/translations/el.json +6 -0
  529. homeassistant/components/google_mail/translations/en-GB.json +6 -0
  530. homeassistant/components/google_mail/translations/en.json +6 -0
  531. homeassistant/components/google_mail/translations/es.json +6 -0
  532. homeassistant/components/google_mail/translations/et.json +6 -0
  533. homeassistant/components/google_mail/translations/fr.json +6 -0
  534. homeassistant/components/google_mail/translations/ga.json +14 -1
  535. homeassistant/components/google_mail/translations/he.json +6 -0
  536. homeassistant/components/google_mail/translations/id.json +6 -0
  537. homeassistant/components/google_mail/translations/lt.json +6 -0
  538. homeassistant/components/google_mail/translations/mk.json +12 -0
  539. homeassistant/components/google_mail/translations/pt.json +6 -0
  540. homeassistant/components/google_mail/translations/ru.json +6 -0
  541. homeassistant/components/google_mail/translations/sk.json +6 -0
  542. homeassistant/components/google_mail/translations/sv.json +6 -0
  543. homeassistant/components/google_mail/translations/tr.json +6 -0
  544. homeassistant/components/google_mail/translations/zh-Hans.json +6 -0
  545. homeassistant/components/google_mail/translations/zh-Hant.json +6 -0
  546. homeassistant/components/google_photos/__init__.py +14 -7
  547. homeassistant/components/google_photos/services.py +79 -79
  548. homeassistant/components/google_photos/strings.json +7 -1
  549. homeassistant/components/google_photos/translations/cs.json +6 -0
  550. homeassistant/components/google_photos/translations/de.json +6 -0
  551. homeassistant/components/google_photos/translations/el.json +6 -0
  552. homeassistant/components/google_photos/translations/en-GB.json +6 -0
  553. homeassistant/components/google_photos/translations/en.json +6 -0
  554. homeassistant/components/google_photos/translations/es.json +6 -0
  555. homeassistant/components/google_photos/translations/et.json +6 -0
  556. homeassistant/components/google_photos/translations/fr.json +6 -0
  557. homeassistant/components/google_photos/translations/ga.json +8 -0
  558. homeassistant/components/google_photos/translations/he.json +6 -0
  559. homeassistant/components/google_photos/translations/id.json +6 -0
  560. homeassistant/components/google_photos/translations/lt.json +6 -0
  561. homeassistant/components/google_photos/translations/mk.json +14 -1
  562. homeassistant/components/google_photos/translations/pt.json +6 -0
  563. homeassistant/components/google_photos/translations/ru.json +6 -0
  564. homeassistant/components/google_photos/translations/sk.json +6 -0
  565. homeassistant/components/google_photos/translations/sv.json +6 -0
  566. homeassistant/components/google_photos/translations/tr.json +6 -0
  567. homeassistant/components/google_photos/translations/zh-Hans.json +6 -0
  568. homeassistant/components/google_photos/translations/zh-Hant.json +6 -0
  569. homeassistant/components/google_sheets/__init__.py +12 -80
  570. homeassistant/components/google_sheets/services.py +88 -0
  571. homeassistant/components/google_sheets/strings.json +7 -1
  572. homeassistant/components/google_sheets/translations/cs.json +6 -0
  573. homeassistant/components/google_sheets/translations/de.json +6 -0
  574. homeassistant/components/google_sheets/translations/el.json +6 -0
  575. homeassistant/components/google_sheets/translations/en-GB.json +6 -0
  576. homeassistant/components/google_sheets/translations/en.json +6 -0
  577. homeassistant/components/google_sheets/translations/es.json +6 -0
  578. homeassistant/components/google_sheets/translations/et.json +6 -0
  579. homeassistant/components/google_sheets/translations/fr.json +6 -0
  580. homeassistant/components/google_sheets/translations/ga.json +14 -1
  581. homeassistant/components/google_sheets/translations/he.json +6 -0
  582. homeassistant/components/google_sheets/translations/id.json +6 -0
  583. homeassistant/components/google_sheets/translations/lt.json +6 -0
  584. homeassistant/components/google_sheets/translations/mk.json +10 -0
  585. homeassistant/components/google_sheets/translations/pt.json +6 -0
  586. homeassistant/components/google_sheets/translations/ru.json +6 -0
  587. homeassistant/components/google_sheets/translations/sk.json +6 -0
  588. homeassistant/components/google_sheets/translations/sv.json +6 -0
  589. homeassistant/components/google_sheets/translations/tr.json +6 -0
  590. homeassistant/components/google_sheets/translations/zh-Hans.json +6 -0
  591. homeassistant/components/google_sheets/translations/zh-Hant.json +6 -0
  592. homeassistant/components/google_tasks/strings.json +7 -1
  593. homeassistant/components/google_tasks/translations/cs.json +6 -0
  594. homeassistant/components/google_tasks/translations/de.json +6 -0
  595. homeassistant/components/google_tasks/translations/el.json +6 -0
  596. homeassistant/components/google_tasks/translations/en-GB.json +6 -0
  597. homeassistant/components/google_tasks/translations/en.json +6 -0
  598. homeassistant/components/google_tasks/translations/es.json +6 -0
  599. homeassistant/components/google_tasks/translations/et.json +6 -0
  600. homeassistant/components/google_tasks/translations/fr.json +10 -0
  601. homeassistant/components/google_tasks/translations/ga.json +8 -0
  602. homeassistant/components/google_tasks/translations/he.json +6 -0
  603. homeassistant/components/google_tasks/translations/id.json +6 -0
  604. homeassistant/components/google_tasks/translations/lt.json +6 -0
  605. homeassistant/components/google_tasks/translations/mk.json +14 -1
  606. homeassistant/components/google_tasks/translations/pt.json +6 -0
  607. homeassistant/components/google_tasks/translations/ru.json +6 -0
  608. homeassistant/components/google_tasks/translations/sk.json +6 -0
  609. homeassistant/components/google_tasks/translations/sv.json +6 -0
  610. homeassistant/components/google_tasks/translations/tr.json +6 -0
  611. homeassistant/components/google_tasks/translations/zh-Hans.json +6 -0
  612. homeassistant/components/google_tasks/translations/zh-Hant.json +6 -0
  613. homeassistant/components/group/sensor.py +5 -5
  614. homeassistant/components/growatt_server/translations/de.json +28 -28
  615. homeassistant/components/habitica/services.py +521 -514
  616. homeassistant/components/habitica/translations/mk.json +39 -0
  617. homeassistant/components/hassio/__init__.py +1 -9
  618. homeassistant/components/hassio/const.py +1 -1
  619. homeassistant/components/hassio/coordinator.py +1 -1
  620. homeassistant/components/hassio/translations/lt.json +6 -6
  621. homeassistant/components/hassio/update_helper.py +3 -6
  622. homeassistant/components/here_travel_time/coordinator.py +11 -9
  623. homeassistant/components/here_travel_time/manifest.json +1 -1
  624. homeassistant/components/here_travel_time/model.py +3 -1
  625. homeassistant/components/here_travel_time/sensor.py +6 -2
  626. homeassistant/components/hive/translations/mk.json +8 -0
  627. homeassistant/components/hive/water_heater.py +3 -1
  628. homeassistant/components/home_connect/diagnostics.py +20 -2
  629. homeassistant/components/home_connect/manifest.json +3 -2
  630. homeassistant/components/home_connect/quality_scale.yaml +71 -0
  631. homeassistant/components/home_connect/strings.json +7 -1
  632. homeassistant/components/home_connect/translations/cs.json +6 -0
  633. homeassistant/components/home_connect/translations/de.json +6 -0
  634. homeassistant/components/home_connect/translations/el.json +6 -0
  635. homeassistant/components/home_connect/translations/en-GB.json +6 -0
  636. homeassistant/components/home_connect/translations/en.json +6 -0
  637. homeassistant/components/home_connect/translations/es.json +6 -0
  638. homeassistant/components/home_connect/translations/et.json +6 -0
  639. homeassistant/components/home_connect/translations/fr.json +6 -0
  640. homeassistant/components/home_connect/translations/ga.json +8 -0
  641. homeassistant/components/home_connect/translations/he.json +6 -0
  642. homeassistant/components/home_connect/translations/id.json +6 -0
  643. homeassistant/components/home_connect/translations/lt.json +6 -0
  644. homeassistant/components/home_connect/translations/mk.json +12 -0
  645. homeassistant/components/home_connect/translations/pt.json +6 -0
  646. homeassistant/components/home_connect/translations/ru.json +6 -0
  647. homeassistant/components/home_connect/translations/sk.json +6 -0
  648. homeassistant/components/home_connect/translations/sv.json +6 -0
  649. homeassistant/components/home_connect/translations/tr.json +6 -0
  650. homeassistant/components/home_connect/translations/zh-Hans.json +6 -0
  651. homeassistant/components/home_connect/translations/zh-Hant.json +6 -0
  652. homeassistant/components/homeassistant/__init__.py +45 -45
  653. homeassistant/components/homeassistant/strings.json +1 -0
  654. homeassistant/components/homeassistant/system_health.py +1 -0
  655. homeassistant/components/homeassistant/translations/cs.json +1 -0
  656. homeassistant/components/homeassistant/translations/de.json +1 -0
  657. homeassistant/components/homeassistant/translations/el.json +2 -1
  658. homeassistant/components/homeassistant/translations/en.json +1 -0
  659. homeassistant/components/homeassistant/translations/es.json +1 -0
  660. homeassistant/components/homeassistant/translations/et.json +1 -0
  661. homeassistant/components/homeassistant/translations/lt.json +10 -9
  662. homeassistant/components/homeassistant/translations/pt.json +5 -0
  663. homeassistant/components/homeassistant/translations/ru.json +1 -0
  664. homeassistant/components/homeassistant/translations/sk.json +1 -0
  665. homeassistant/components/homeassistant/translations/sv.json +1 -0
  666. homeassistant/components/homeassistant/translations/zh-Hans.json +1 -0
  667. homeassistant/components/homeassistant/translations/zh-Hant.json +1 -0
  668. homeassistant/components/homeassistant_hardware/firmware_config_flow.py +182 -246
  669. homeassistant/components/homeassistant_hardware/manifest.json +1 -1
  670. homeassistant/components/homeassistant_hardware/silabs_multiprotocol_addon.py +6 -15
  671. homeassistant/components/homeassistant_hardware/strings.json +1 -29
  672. homeassistant/components/homeassistant_hardware/translations/bg.json +0 -18
  673. homeassistant/components/homeassistant_hardware/translations/ca.json +0 -28
  674. homeassistant/components/homeassistant_hardware/translations/cs.json +1 -29
  675. homeassistant/components/homeassistant_hardware/translations/da.json +0 -10
  676. homeassistant/components/homeassistant_hardware/translations/de.json +1 -29
  677. homeassistant/components/homeassistant_hardware/translations/el.json +1 -29
  678. homeassistant/components/homeassistant_hardware/translations/en-GB.json +0 -31
  679. homeassistant/components/homeassistant_hardware/translations/en.json +1 -29
  680. homeassistant/components/homeassistant_hardware/translations/es.json +1 -29
  681. homeassistant/components/homeassistant_hardware/translations/et.json +1 -29
  682. homeassistant/components/homeassistant_hardware/translations/fi.json +0 -10
  683. homeassistant/components/homeassistant_hardware/translations/fr.json +0 -31
  684. homeassistant/components/homeassistant_hardware/translations/fy.json +0 -3
  685. homeassistant/components/homeassistant_hardware/translations/he.json +0 -31
  686. homeassistant/components/homeassistant_hardware/translations/hu.json +0 -31
  687. homeassistant/components/homeassistant_hardware/translations/id.json +0 -31
  688. homeassistant/components/homeassistant_hardware/translations/it.json +0 -13
  689. homeassistant/components/homeassistant_hardware/translations/ja.json +0 -29
  690. homeassistant/components/homeassistant_hardware/translations/ko.json +0 -29
  691. homeassistant/components/homeassistant_hardware/translations/lt.json +17 -45
  692. homeassistant/components/homeassistant_hardware/translations/lv.json +0 -4
  693. homeassistant/components/homeassistant_hardware/translations/nl.json +0 -22
  694. homeassistant/components/homeassistant_hardware/translations/pt-BR.json +0 -4
  695. homeassistant/components/homeassistant_hardware/translations/pt.json +1 -29
  696. homeassistant/components/homeassistant_hardware/translations/ru.json +1 -29
  697. homeassistant/components/homeassistant_hardware/translations/sk.json +1 -29
  698. homeassistant/components/homeassistant_hardware/translations/sv.json +1 -29
  699. homeassistant/components/homeassistant_hardware/translations/tr.json +0 -31
  700. homeassistant/components/homeassistant_hardware/translations/uk.json +0 -3
  701. homeassistant/components/homeassistant_hardware/translations/vi.json +0 -3
  702. homeassistant/components/homeassistant_hardware/translations/zh-Hans.json +1 -29
  703. homeassistant/components/homeassistant_hardware/translations/zh-Hant.json +1 -29
  704. homeassistant/components/homeassistant_hardware/update.py +20 -68
  705. homeassistant/components/homeassistant_hardware/util.py +53 -2
  706. homeassistant/components/homeassistant_sky_connect/config_flow.py +44 -7
  707. homeassistant/components/homeassistant_sky_connect/strings.json +2 -44
  708. homeassistant/components/homeassistant_sky_connect/translations/bg.json +0 -10
  709. homeassistant/components/homeassistant_sky_connect/translations/ca.json +2 -44
  710. homeassistant/components/homeassistant_sky_connect/translations/cs.json +4 -46
  711. homeassistant/components/homeassistant_sky_connect/translations/da.json +0 -10
  712. homeassistant/components/homeassistant_sky_connect/translations/de.json +4 -46
  713. homeassistant/components/homeassistant_sky_connect/translations/el.json +4 -46
  714. homeassistant/components/homeassistant_sky_connect/translations/en-GB.json +2 -46
  715. homeassistant/components/homeassistant_sky_connect/translations/en.json +4 -46
  716. homeassistant/components/homeassistant_sky_connect/translations/es.json +4 -46
  717. homeassistant/components/homeassistant_sky_connect/translations/et.json +4 -46
  718. homeassistant/components/homeassistant_sky_connect/translations/fi.json +0 -10
  719. homeassistant/components/homeassistant_sky_connect/translations/fr.json +2 -46
  720. homeassistant/components/homeassistant_sky_connect/translations/fy.json +0 -3
  721. homeassistant/components/homeassistant_sky_connect/translations/he.json +2 -46
  722. homeassistant/components/homeassistant_sky_connect/translations/hu.json +2 -46
  723. homeassistant/components/homeassistant_sky_connect/translations/id.json +2 -46
  724. homeassistant/components/homeassistant_sky_connect/translations/it.json +0 -16
  725. homeassistant/components/homeassistant_sky_connect/translations/ja.json +2 -46
  726. homeassistant/components/homeassistant_sky_connect/translations/ko.json +0 -21
  727. homeassistant/components/homeassistant_sky_connect/translations/lt.json +31 -73
  728. homeassistant/components/homeassistant_sky_connect/translations/lv.json +0 -3
  729. homeassistant/components/homeassistant_sky_connect/translations/nl.json +1 -23
  730. homeassistant/components/homeassistant_sky_connect/translations/pt-BR.json +0 -4
  731. homeassistant/components/homeassistant_sky_connect/translations/pt.json +4 -46
  732. homeassistant/components/homeassistant_sky_connect/translations/ru.json +4 -46
  733. homeassistant/components/homeassistant_sky_connect/translations/sk.json +4 -46
  734. homeassistant/components/homeassistant_sky_connect/translations/sv.json +4 -46
  735. homeassistant/components/homeassistant_sky_connect/translations/tr.json +2 -46
  736. homeassistant/components/homeassistant_sky_connect/translations/uk.json +0 -3
  737. homeassistant/components/homeassistant_sky_connect/translations/zh-Hans.json +4 -46
  738. homeassistant/components/homeassistant_sky_connect/translations/zh-Hant.json +4 -46
  739. homeassistant/components/homeassistant_yellow/config_flow.py +58 -3
  740. homeassistant/components/homeassistant_yellow/strings.json +1 -25
  741. homeassistant/components/homeassistant_yellow/translations/bg.json +0 -18
  742. homeassistant/components/homeassistant_yellow/translations/ca.json +1 -25
  743. homeassistant/components/homeassistant_yellow/translations/cs.json +2 -26
  744. homeassistant/components/homeassistant_yellow/translations/da.json +0 -10
  745. homeassistant/components/homeassistant_yellow/translations/de.json +2 -26
  746. homeassistant/components/homeassistant_yellow/translations/el.json +2 -26
  747. homeassistant/components/homeassistant_yellow/translations/en-GB.json +1 -26
  748. homeassistant/components/homeassistant_yellow/translations/en.json +2 -26
  749. homeassistant/components/homeassistant_yellow/translations/es.json +2 -26
  750. homeassistant/components/homeassistant_yellow/translations/et.json +2 -26
  751. homeassistant/components/homeassistant_yellow/translations/fi.json +0 -10
  752. homeassistant/components/homeassistant_yellow/translations/fr.json +1 -26
  753. homeassistant/components/homeassistant_yellow/translations/he.json +1 -26
  754. homeassistant/components/homeassistant_yellow/translations/hu.json +1 -26
  755. homeassistant/components/homeassistant_yellow/translations/id.json +1 -26
  756. homeassistant/components/homeassistant_yellow/translations/it.json +0 -13
  757. homeassistant/components/homeassistant_yellow/translations/ja.json +1 -26
  758. homeassistant/components/homeassistant_yellow/translations/ko.json +0 -22
  759. homeassistant/components/homeassistant_yellow/translations/lt.json +19 -43
  760. homeassistant/components/homeassistant_yellow/translations/nl.json +1 -19
  761. homeassistant/components/homeassistant_yellow/translations/pt-BR.json +0 -4
  762. homeassistant/components/homeassistant_yellow/translations/pt.json +2 -26
  763. homeassistant/components/homeassistant_yellow/translations/ru.json +2 -26
  764. homeassistant/components/homeassistant_yellow/translations/sk.json +2 -26
  765. homeassistant/components/homeassistant_yellow/translations/sv.json +2 -26
  766. homeassistant/components/homeassistant_yellow/translations/tr.json +1 -26
  767. homeassistant/components/homeassistant_yellow/translations/uk.json +0 -3
  768. homeassistant/components/homeassistant_yellow/translations/zh-Hans.json +2 -26
  769. homeassistant/components/homeassistant_yellow/translations/zh-Hant.json +2 -26
  770. homeassistant/components/homee/__init__.py +2 -1
  771. homeassistant/components/homee/climate.py +23 -9
  772. homeassistant/components/homee/config_flow.py +49 -0
  773. homeassistant/components/homee/diagnostics.py +43 -0
  774. homeassistant/components/homee/entity.py +5 -2
  775. homeassistant/components/homee/event.py +57 -21
  776. homeassistant/components/homee/lock.py +6 -2
  777. homeassistant/components/homee/manifest.json +1 -1
  778. homeassistant/components/homee/number.py +29 -0
  779. homeassistant/components/homee/select.py +5 -0
  780. homeassistant/components/homee/sensor.py +10 -0
  781. homeassistant/components/homee/siren.py +49 -0
  782. homeassistant/components/homee/strings.json +72 -2
  783. homeassistant/components/homee/switch.py +1 -0
  784. homeassistant/components/homee/translations/bg.json +19 -1
  785. homeassistant/components/homee/translations/cs.json +71 -1
  786. homeassistant/components/homee/translations/de.json +71 -1
  787. homeassistant/components/homee/translations/el.json +71 -1
  788. homeassistant/components/homee/translations/en-GB.json +71 -1
  789. homeassistant/components/homee/translations/en.json +71 -1
  790. homeassistant/components/homee/translations/es.json +71 -1
  791. homeassistant/components/homee/translations/et.json +71 -1
  792. homeassistant/components/homee/translations/fi.json +15 -0
  793. homeassistant/components/homee/translations/ga.json +68 -0
  794. homeassistant/components/homee/translations/he.json +7 -1
  795. homeassistant/components/homee/translations/hr.json +20 -1
  796. homeassistant/components/homee/translations/hu.json +47 -1
  797. homeassistant/components/homee/translations/id.json +7 -1
  798. homeassistant/components/homee/translations/it.json +13 -1
  799. homeassistant/components/homee/translations/lt.json +71 -1
  800. homeassistant/components/homee/translations/nl.json +7 -1
  801. homeassistant/components/homee/translations/pt.json +72 -1
  802. homeassistant/components/homee/translations/sk.json +71 -1
  803. homeassistant/components/homee/translations/sv.json +63 -2
  804. homeassistant/components/homee/translations/tr.json +62 -1
  805. homeassistant/components/homee/translations/zh-Hans.json +71 -1
  806. homeassistant/components/homee/translations/zh-Hant.json +71 -1
  807. homeassistant/components/homekit_controller/config_flow.py +4 -5
  808. homeassistant/components/homekit_controller/manifest.json +1 -1
  809. homeassistant/components/homematicip_cloud/__init__.py +3 -4
  810. homeassistant/components/homematicip_cloud/climate.py +0 -2
  811. homeassistant/components/homematicip_cloud/services.py +37 -54
  812. homeassistant/components/homematicip_cloud/switch.py +29 -30
  813. homeassistant/components/homewizard/__init__.py +2 -5
  814. homeassistant/components/homewizard/const.py +7 -1
  815. homeassistant/components/homewizard/helpers.py +6 -1
  816. homeassistant/components/homewizard/manifest.json +1 -1
  817. homeassistant/components/homewizard/select.py +89 -0
  818. homeassistant/components/homewizard/strings.json +15 -2
  819. homeassistant/components/homewizard/translations/cs.json +16 -3
  820. homeassistant/components/homewizard/translations/de.json +16 -3
  821. homeassistant/components/homewizard/translations/el.json +22 -0
  822. homeassistant/components/homewizard/translations/en-GB.json +3 -3
  823. homeassistant/components/homewizard/translations/en.json +16 -3
  824. homeassistant/components/homewizard/translations/es.json +16 -3
  825. homeassistant/components/homewizard/translations/et.json +13 -0
  826. homeassistant/components/homewizard/translations/ga.json +15 -1
  827. homeassistant/components/homewizard/translations/hu.json +0 -1
  828. homeassistant/components/homewizard/translations/ja.json +0 -1
  829. homeassistant/components/homewizard/translations/lt.json +19 -3
  830. homeassistant/components/homewizard/translations/mk.json +0 -3
  831. homeassistant/components/homewizard/translations/nl.json +10 -1
  832. homeassistant/components/homewizard/translations/pt-BR.json +0 -1
  833. homeassistant/components/homewizard/translations/pt.json +19 -3
  834. homeassistant/components/homewizard/translations/ru.json +0 -1
  835. homeassistant/components/homewizard/translations/sk.json +16 -3
  836. homeassistant/components/homewizard/translations/sv.json +8 -1
  837. homeassistant/components/homewizard/translations/tr.json +10 -1
  838. homeassistant/components/homewizard/translations/zh-Hans.json +16 -3
  839. homeassistant/components/homewizard/translations/zh-Hant.json +16 -3
  840. homeassistant/components/http/__init__.py +6 -5
  841. homeassistant/components/http/ban.py +1 -2
  842. homeassistant/components/http/cors.py +4 -4
  843. homeassistant/components/huawei_lte/translations/mk.json +5 -0
  844. homeassistant/components/hue/__init__.py +15 -10
  845. homeassistant/components/hue/services.py +17 -17
  846. homeassistant/components/hue/translations/el.json +14 -2
  847. homeassistant/components/husqvarna_automower/manifest.json +1 -1
  848. homeassistant/components/husqvarna_automower/strings.json +7 -1
  849. homeassistant/components/husqvarna_automower/translations/cs.json +6 -0
  850. homeassistant/components/husqvarna_automower/translations/de.json +6 -0
  851. homeassistant/components/husqvarna_automower/translations/el.json +6 -0
  852. homeassistant/components/husqvarna_automower/translations/en-GB.json +6 -0
  853. homeassistant/components/husqvarna_automower/translations/en.json +6 -0
  854. homeassistant/components/husqvarna_automower/translations/es.json +6 -0
  855. homeassistant/components/husqvarna_automower/translations/et.json +6 -0
  856. homeassistant/components/husqvarna_automower/translations/fr.json +6 -0
  857. homeassistant/components/husqvarna_automower/translations/ga.json +12 -0
  858. homeassistant/components/husqvarna_automower/translations/he.json +6 -0
  859. homeassistant/components/husqvarna_automower/translations/id.json +6 -0
  860. homeassistant/components/husqvarna_automower/translations/lt.json +6 -0
  861. homeassistant/components/husqvarna_automower/translations/mk.json +12 -0
  862. homeassistant/components/husqvarna_automower/translations/pt.json +6 -0
  863. homeassistant/components/husqvarna_automower/translations/ru.json +6 -0
  864. homeassistant/components/husqvarna_automower/translations/sk.json +6 -0
  865. homeassistant/components/husqvarna_automower/translations/sv.json +6 -0
  866. homeassistant/components/husqvarna_automower/translations/tr.json +6 -0
  867. homeassistant/components/husqvarna_automower/translations/zh-Hans.json +6 -0
  868. homeassistant/components/husqvarna_automower/translations/zh-Hant.json +6 -0
  869. homeassistant/components/husqvarna_automower_ble/__init__.py +4 -2
  870. homeassistant/components/husqvarna_automower_ble/coordinator.py +5 -4
  871. homeassistant/components/husqvarna_automower_ble/lawn_mower.py +3 -3
  872. homeassistant/components/hyperion/manifest.json +1 -1
  873. homeassistant/components/hyperion/strings.json +3 -0
  874. homeassistant/components/hyperion/switch.py +3 -0
  875. homeassistant/components/hyperion/translations/cs.json +3 -0
  876. homeassistant/components/hyperion/translations/de.json +3 -0
  877. homeassistant/components/hyperion/translations/el.json +3 -0
  878. homeassistant/components/hyperion/translations/en.json +3 -0
  879. homeassistant/components/hyperion/translations/es.json +3 -0
  880. homeassistant/components/hyperion/translations/et.json +3 -0
  881. homeassistant/components/hyperion/translations/ga.json +9 -1
  882. homeassistant/components/hyperion/translations/hu.json +3 -0
  883. homeassistant/components/hyperion/translations/lt.json +3 -0
  884. homeassistant/components/hyperion/translations/pt.json +3 -0
  885. homeassistant/components/hyperion/translations/sk.json +3 -0
  886. homeassistant/components/hyperion/translations/sv.json +3 -0
  887. homeassistant/components/hyperion/translations/tr.json +3 -0
  888. homeassistant/components/hyperion/translations/zh-Hans.json +3 -0
  889. homeassistant/components/hyperion/translations/zh-Hant.json +3 -0
  890. homeassistant/components/icloud/__init__.py +14 -3
  891. homeassistant/components/icloud/services.py +4 -3
  892. homeassistant/components/imeon_inverter/entity.py +40 -0
  893. homeassistant/components/imeon_inverter/sensor.py +6 -32
  894. homeassistant/components/imgw_pib/config_flow.py +3 -1
  895. homeassistant/components/imgw_pib/manifest.json +1 -1
  896. homeassistant/components/imgw_pib/translations/el.json +3 -0
  897. homeassistant/components/immich/__init__.py +2 -1
  898. homeassistant/components/immich/coordinator.py +11 -1
  899. homeassistant/components/immich/manifest.json +1 -1
  900. homeassistant/components/immich/strings.json +5 -0
  901. homeassistant/components/immich/translations/bg.json +5 -0
  902. homeassistant/components/immich/translations/cs.json +5 -0
  903. homeassistant/components/immich/translations/de.json +5 -0
  904. homeassistant/components/immich/translations/el.json +7 -0
  905. homeassistant/components/immich/translations/en.json +5 -0
  906. homeassistant/components/immich/translations/es.json +5 -0
  907. homeassistant/components/immich/translations/et.json +5 -0
  908. homeassistant/components/immich/translations/ga.json +5 -0
  909. homeassistant/components/immich/translations/lt.json +5 -0
  910. homeassistant/components/immich/translations/pt.json +5 -0
  911. homeassistant/components/immich/translations/ru.json +5 -0
  912. homeassistant/components/immich/translations/sk.json +5 -0
  913. homeassistant/components/immich/translations/sv.json +5 -0
  914. homeassistant/components/immich/translations/tr.json +5 -0
  915. homeassistant/components/immich/translations/zh-Hans.json +5 -0
  916. homeassistant/components/immich/translations/zh-Hant.json +5 -0
  917. homeassistant/components/immich/update.py +57 -0
  918. homeassistant/components/insteon/__init__.py +2 -2
  919. homeassistant/components/insteon/services.py +291 -0
  920. homeassistant/components/insteon/utils.py +4 -276
  921. homeassistant/components/intellifire/translations/mk.json +7 -0
  922. homeassistant/components/intent/timers.py +3 -2
  923. homeassistant/components/iotty/strings.json +7 -1
  924. homeassistant/components/iotty/translations/cs.json +6 -0
  925. homeassistant/components/iotty/translations/de.json +6 -0
  926. homeassistant/components/iotty/translations/el.json +6 -0
  927. homeassistant/components/iotty/translations/en-GB.json +6 -0
  928. homeassistant/components/iotty/translations/en.json +6 -0
  929. homeassistant/components/iotty/translations/es.json +6 -0
  930. homeassistant/components/iotty/translations/et.json +6 -0
  931. homeassistant/components/iotty/translations/fr.json +14 -1
  932. homeassistant/components/iotty/translations/ga.json +14 -1
  933. homeassistant/components/iotty/translations/he.json +6 -0
  934. homeassistant/components/iotty/translations/id.json +6 -0
  935. homeassistant/components/iotty/translations/lt.json +6 -0
  936. homeassistant/components/iotty/translations/mk.json +14 -1
  937. homeassistant/components/iotty/translations/pt.json +6 -0
  938. homeassistant/components/iotty/translations/ru.json +6 -0
  939. homeassistant/components/iotty/translations/sk.json +6 -0
  940. homeassistant/components/iotty/translations/sv.json +6 -0
  941. homeassistant/components/iotty/translations/tr.json +6 -0
  942. homeassistant/components/iotty/translations/zh-Hans.json +6 -0
  943. homeassistant/components/iotty/translations/zh-Hant.json +6 -0
  944. homeassistant/components/iqvia/manifest.json +1 -1
  945. homeassistant/components/israel_rail/translations/el.json +1 -1
  946. homeassistant/components/ista_ecotrend/manifest.json +1 -0
  947. homeassistant/components/ista_ecotrend/quality_scale.yaml +14 -6
  948. homeassistant/components/isy994/__init__.py +10 -7
  949. homeassistant/components/isy994/services.py +0 -19
  950. homeassistant/components/jellyfin/media_source.py +3 -3
  951. homeassistant/components/jewish_calendar/__init__.py +1 -1
  952. homeassistant/components/jewish_calendar/{service.py → services.py} +2 -0
  953. homeassistant/components/juicenet/__init__.py +20 -93
  954. homeassistant/components/juicenet/config_flow.py +1 -72
  955. homeassistant/components/juicenet/const.py +0 -3
  956. homeassistant/components/juicenet/manifest.json +3 -4
  957. homeassistant/components/juicenet/strings.json +4 -37
  958. homeassistant/components/juicenet/translations/bg.json +1 -17
  959. homeassistant/components/juicenet/translations/ca.json +1 -41
  960. homeassistant/components/juicenet/translations/cs.json +4 -37
  961. homeassistant/components/juicenet/translations/da.json +1 -19
  962. homeassistant/components/juicenet/translations/de.json +4 -37
  963. homeassistant/components/juicenet/translations/el.json +4 -17
  964. homeassistant/components/juicenet/translations/en-GB.json +1 -41
  965. homeassistant/components/juicenet/translations/en.json +4 -37
  966. homeassistant/components/juicenet/translations/es.json +4 -37
  967. homeassistant/components/juicenet/translations/et.json +4 -37
  968. homeassistant/components/juicenet/translations/fi.json +1 -41
  969. homeassistant/components/juicenet/translations/fr.json +1 -21
  970. homeassistant/components/juicenet/translations/he.json +1 -20
  971. homeassistant/components/juicenet/translations/hu.json +1 -41
  972. homeassistant/components/juicenet/translations/id.json +1 -21
  973. homeassistant/components/juicenet/translations/it.json +1 -41
  974. homeassistant/components/juicenet/translations/ja.json +1 -41
  975. homeassistant/components/juicenet/translations/ko.json +1 -41
  976. homeassistant/components/juicenet/translations/lb.json +1 -21
  977. homeassistant/components/juicenet/translations/lt.json +4 -37
  978. homeassistant/components/juicenet/translations/mk.json +1 -9
  979. homeassistant/components/juicenet/translations/nb.json +1 -21
  980. homeassistant/components/juicenet/translations/nl.json +1 -21
  981. homeassistant/components/juicenet/translations/pl.json +1 -21
  982. homeassistant/components/juicenet/translations/pt-BR.json +1 -33
  983. homeassistant/components/juicenet/translations/pt.json +4 -37
  984. homeassistant/components/juicenet/translations/ro.json +1 -41
  985. homeassistant/components/juicenet/translations/ru.json +1 -41
  986. homeassistant/components/juicenet/translations/sk.json +4 -37
  987. homeassistant/components/juicenet/translations/sl.json +1 -21
  988. homeassistant/components/juicenet/translations/sv.json +1 -41
  989. homeassistant/components/juicenet/translations/tr.json +1 -41
  990. homeassistant/components/juicenet/translations/uk.json +1 -21
  991. homeassistant/components/juicenet/translations/vi.json +1 -21
  992. homeassistant/components/juicenet/translations/zh-Hans.json +4 -37
  993. homeassistant/components/juicenet/translations/zh-Hant.json +4 -37
  994. homeassistant/components/justnimbus/__init__.py +6 -9
  995. homeassistant/components/justnimbus/coordinator.py +6 -2
  996. homeassistant/components/justnimbus/sensor.py +3 -6
  997. homeassistant/components/kaleidescape/__init__.py +13 -17
  998. homeassistant/components/kaleidescape/media_player.py +6 -12
  999. homeassistant/components/kaleidescape/remote.py +7 -12
  1000. homeassistant/components/kaleidescape/sensor.py +9 -14
  1001. homeassistant/components/keenetic_ndms2/__init__.py +10 -19
  1002. homeassistant/components/keenetic_ndms2/binary_sensor.py +3 -7
  1003. homeassistant/components/keenetic_ndms2/config_flow.py +26 -18
  1004. homeassistant/components/keenetic_ndms2/const.py +0 -2
  1005. homeassistant/components/keenetic_ndms2/device_tracker.py +3 -5
  1006. homeassistant/components/keenetic_ndms2/router.py +3 -1
  1007. homeassistant/components/keenetic_ndms2/strings.json +4 -0
  1008. homeassistant/components/keenetic_ndms2/translations/bg.json +3 -0
  1009. homeassistant/components/keenetic_ndms2/translations/cs.json +4 -0
  1010. homeassistant/components/keenetic_ndms2/translations/de.json +4 -0
  1011. homeassistant/components/keenetic_ndms2/translations/el.json +4 -0
  1012. homeassistant/components/keenetic_ndms2/translations/en.json +4 -0
  1013. homeassistant/components/keenetic_ndms2/translations/es.json +4 -0
  1014. homeassistant/components/keenetic_ndms2/translations/et.json +4 -0
  1015. homeassistant/components/keenetic_ndms2/translations/lt.json +4 -0
  1016. homeassistant/components/keenetic_ndms2/translations/nl.json +3 -0
  1017. homeassistant/components/keenetic_ndms2/translations/pt.json +4 -0
  1018. homeassistant/components/keenetic_ndms2/translations/sk.json +4 -0
  1019. homeassistant/components/keenetic_ndms2/translations/sv.json +3 -0
  1020. homeassistant/components/keenetic_ndms2/translations/zh-Hans.json +4 -0
  1021. homeassistant/components/keenetic_ndms2/translations/zh-Hant.json +4 -0
  1022. homeassistant/components/kegtron/__init__.py +12 -16
  1023. homeassistant/components/kegtron/sensor.py +3 -7
  1024. homeassistant/components/keymitt_ble/__init__.py +5 -14
  1025. homeassistant/components/keymitt_ble/coordinator.py +4 -3
  1026. homeassistant/components/keymitt_ble/entity.py +1 -1
  1027. homeassistant/components/keymitt_ble/switch.py +3 -6
  1028. homeassistant/components/kmtronic/__init__.py +10 -45
  1029. homeassistant/components/kmtronic/const.py +0 -5
  1030. homeassistant/components/kmtronic/coordinator.py +50 -0
  1031. homeassistant/components/kmtronic/switch.py +5 -5
  1032. homeassistant/components/knx/manifest.json +1 -0
  1033. homeassistant/components/knx/quality_scale.yaml +11 -8
  1034. homeassistant/components/knx/services.py +14 -4
  1035. homeassistant/components/knx/strings.json +15 -1
  1036. homeassistant/components/knx/translations/bg.json +5 -0
  1037. homeassistant/components/knx/translations/cs.json +14 -0
  1038. homeassistant/components/knx/translations/de.json +14 -0
  1039. homeassistant/components/knx/translations/el.json +17 -2
  1040. homeassistant/components/knx/translations/en-GB.json +14 -0
  1041. homeassistant/components/knx/translations/en.json +14 -0
  1042. homeassistant/components/knx/translations/es.json +14 -0
  1043. homeassistant/components/knx/translations/et.json +14 -0
  1044. homeassistant/components/knx/translations/fr.json +5 -0
  1045. homeassistant/components/knx/translations/ga.json +14 -0
  1046. homeassistant/components/knx/translations/hu.json +14 -0
  1047. homeassistant/components/knx/translations/it.json +14 -0
  1048. homeassistant/components/knx/translations/lt.json +14 -0
  1049. homeassistant/components/knx/translations/pt.json +14 -0
  1050. homeassistant/components/knx/translations/sk.json +14 -0
  1051. homeassistant/components/knx/translations/sv.json +14 -0
  1052. homeassistant/components/knx/translations/tr.json +11 -0
  1053. homeassistant/components/knx/translations/zh-Hans.json +14 -0
  1054. homeassistant/components/knx/translations/zh-Hant.json +14 -0
  1055. homeassistant/components/kodi/__init__.py +19 -21
  1056. homeassistant/components/kodi/const.py +0 -4
  1057. homeassistant/components/kodi/media_player.py +5 -8
  1058. homeassistant/components/kodi/translations/de.json +1 -1
  1059. homeassistant/components/konnected/__init__.py +1 -8
  1060. homeassistant/components/konnected/const.py +0 -2
  1061. homeassistant/components/kostal_plenticore/__init__.py +6 -13
  1062. homeassistant/components/kostal_plenticore/coordinator.py +6 -4
  1063. homeassistant/components/kostal_plenticore/diagnostics.py +3 -5
  1064. homeassistant/components/kostal_plenticore/number.py +3 -5
  1065. homeassistant/components/kostal_plenticore/select.py +3 -5
  1066. homeassistant/components/kostal_plenticore/sensor.py +3 -5
  1067. homeassistant/components/kostal_plenticore/switch.py +3 -5
  1068. homeassistant/components/lacrosse_view/__init__.py +5 -12
  1069. homeassistant/components/lacrosse_view/coordinator.py +4 -2
  1070. homeassistant/components/lacrosse_view/diagnostics.py +3 -8
  1071. homeassistant/components/lacrosse_view/sensor.py +4 -7
  1072. homeassistant/components/lametric/__init__.py +6 -8
  1073. homeassistant/components/lametric/button.py +3 -5
  1074. homeassistant/components/lametric/const.py +1 -0
  1075. homeassistant/components/lametric/coordinator.py +4 -2
  1076. homeassistant/components/lametric/diagnostics.py +3 -5
  1077. homeassistant/components/lametric/entity.py +8 -3
  1078. homeassistant/components/lametric/helpers.py +5 -11
  1079. homeassistant/components/lametric/manifest.json +1 -1
  1080. homeassistant/components/lametric/notify.py +8 -6
  1081. homeassistant/components/lametric/number.py +3 -5
  1082. homeassistant/components/lametric/quality_scale.yaml +2 -1
  1083. homeassistant/components/lametric/select.py +3 -5
  1084. homeassistant/components/lametric/sensor.py +3 -5
  1085. homeassistant/components/lametric/strings.json +7 -1
  1086. homeassistant/components/lametric/switch.py +3 -5
  1087. homeassistant/components/lametric/translations/cs.json +6 -0
  1088. homeassistant/components/lametric/translations/de.json +6 -0
  1089. homeassistant/components/lametric/translations/el.json +6 -0
  1090. homeassistant/components/lametric/translations/en-GB.json +6 -0
  1091. homeassistant/components/lametric/translations/en.json +6 -0
  1092. homeassistant/components/lametric/translations/es.json +6 -0
  1093. homeassistant/components/lametric/translations/et.json +6 -0
  1094. homeassistant/components/lametric/translations/fr.json +6 -0
  1095. homeassistant/components/lametric/translations/ga.json +12 -0
  1096. homeassistant/components/lametric/translations/he.json +6 -0
  1097. homeassistant/components/lametric/translations/id.json +6 -0
  1098. homeassistant/components/lametric/translations/lt.json +6 -0
  1099. homeassistant/components/lametric/translations/mk.json +12 -0
  1100. homeassistant/components/lametric/translations/pt.json +6 -0
  1101. homeassistant/components/lametric/translations/ru.json +6 -0
  1102. homeassistant/components/lametric/translations/sk.json +6 -0
  1103. homeassistant/components/lametric/translations/sv.json +6 -0
  1104. homeassistant/components/lametric/translations/tr.json +6 -0
  1105. homeassistant/components/lametric/translations/zh-Hans.json +6 -0
  1106. homeassistant/components/lametric/translations/zh-Hant.json +6 -0
  1107. homeassistant/components/lametric/update.py +46 -0
  1108. homeassistant/components/landisgyr_heat_meter/__init__.py +8 -10
  1109. homeassistant/components/landisgyr_heat_meter/coordinator.py +7 -2
  1110. homeassistant/components/landisgyr_heat_meter/sensor.py +8 -13
  1111. homeassistant/components/lastfm/__init__.py +6 -8
  1112. homeassistant/components/lastfm/config_flow.py +5 -7
  1113. homeassistant/components/lastfm/coordinator.py +2 -0
  1114. homeassistant/components/lastfm/sensor.py +3 -4
  1115. homeassistant/components/laundrify/__init__.py +6 -14
  1116. homeassistant/components/laundrify/binary_sensor.py +3 -6
  1117. homeassistant/components/laundrify/coordinator.py +2 -0
  1118. homeassistant/components/laundrify/sensor.py +3 -6
  1119. homeassistant/components/lcn/__init__.py +22 -27
  1120. homeassistant/components/lcn/binary_sensor.py +10 -15
  1121. homeassistant/components/lcn/climate.py +5 -8
  1122. homeassistant/components/lcn/const.py +0 -4
  1123. homeassistant/components/lcn/cover.py +6 -9
  1124. homeassistant/components/lcn/entity.py +2 -2
  1125. homeassistant/components/lcn/helpers.py +28 -10
  1126. homeassistant/components/lcn/light.py +6 -9
  1127. homeassistant/components/lcn/manifest.json +2 -1
  1128. homeassistant/components/lcn/quality_scale.yaml +77 -0
  1129. homeassistant/components/lcn/scene.py +5 -7
  1130. homeassistant/components/lcn/sensor.py +8 -9
  1131. homeassistant/components/lcn/services.py +18 -7
  1132. homeassistant/components/lcn/switch.py +9 -18
  1133. homeassistant/components/lcn/translations/sv.json +1 -1
  1134. homeassistant/components/lcn/websocket.py +18 -22
  1135. homeassistant/components/ld2410_ble/__init__.py +9 -13
  1136. homeassistant/components/ld2410_ble/binary_sensor.py +3 -5
  1137. homeassistant/components/ld2410_ble/coordinator.py +11 -3
  1138. homeassistant/components/ld2410_ble/models.py +4 -0
  1139. homeassistant/components/ld2410_ble/sensor.py +6 -6
  1140. homeassistant/components/leaone/__init__.py +12 -16
  1141. homeassistant/components/leaone/sensor.py +3 -7
  1142. homeassistant/components/led_ble/__init__.py +8 -13
  1143. homeassistant/components/led_ble/light.py +4 -5
  1144. homeassistant/components/led_ble/models.py +3 -0
  1145. homeassistant/components/letpot/coordinator.py +2 -0
  1146. homeassistant/components/letpot/quality_scale.yaml +3 -3
  1147. homeassistant/components/lg_netcast/__init__.py +16 -10
  1148. homeassistant/components/lg_netcast/device_trigger.py +7 -8
  1149. homeassistant/components/lg_netcast/media_player.py +5 -10
  1150. homeassistant/components/lg_thinq/manifest.json +2 -1
  1151. homeassistant/components/lg_thinq/vacuum.py +2 -1
  1152. homeassistant/components/lifx/__init__.py +10 -15
  1153. homeassistant/components/lifx/binary_sensor.py +4 -5
  1154. homeassistant/components/lifx/button.py +4 -6
  1155. homeassistant/components/lifx/const.py +9 -1
  1156. homeassistant/components/lifx/coordinator.py +4 -2
  1157. homeassistant/components/lifx/diagnostics.py +4 -5
  1158. homeassistant/components/lifx/light.py +5 -7
  1159. homeassistant/components/lifx/manager.py +7 -9
  1160. homeassistant/components/lifx/migration.py +3 -3
  1161. homeassistant/components/lifx/select.py +4 -10
  1162. homeassistant/components/lifx/sensor.py +4 -5
  1163. homeassistant/components/lifx/util.py +6 -4
  1164. homeassistant/components/linear_garage_door/__init__.py +6 -10
  1165. homeassistant/components/linear_garage_door/coordinator.py +4 -2
  1166. homeassistant/components/linear_garage_door/cover.py +3 -5
  1167. homeassistant/components/linear_garage_door/diagnostics.py +3 -5
  1168. homeassistant/components/linear_garage_door/light.py +3 -5
  1169. homeassistant/components/litterrobot/icons.json +3 -0
  1170. homeassistant/components/litterrobot/manifest.json +1 -1
  1171. homeassistant/components/litterrobot/sensor.py +8 -0
  1172. homeassistant/components/litterrobot/strings.json +4 -0
  1173. homeassistant/components/litterrobot/translations/cs.json +4 -0
  1174. homeassistant/components/litterrobot/translations/de.json +4 -0
  1175. homeassistant/components/litterrobot/translations/el.json +4 -0
  1176. homeassistant/components/litterrobot/translations/en.json +4 -0
  1177. homeassistant/components/litterrobot/translations/es.json +4 -0
  1178. homeassistant/components/litterrobot/translations/et.json +4 -0
  1179. homeassistant/components/litterrobot/translations/lt.json +4 -0
  1180. homeassistant/components/litterrobot/translations/pt.json +4 -0
  1181. homeassistant/components/litterrobot/translations/sensor.sv.json +16 -16
  1182. homeassistant/components/litterrobot/translations/sk.json +4 -0
  1183. homeassistant/components/litterrobot/translations/sv.json +13 -9
  1184. homeassistant/components/litterrobot/translations/zh-Hans.json +4 -0
  1185. homeassistant/components/litterrobot/translations/zh-Hant.json +5 -0
  1186. homeassistant/components/livisi/__init__.py +6 -13
  1187. homeassistant/components/livisi/binary_sensor.py +6 -7
  1188. homeassistant/components/livisi/climate.py +4 -6
  1189. homeassistant/components/livisi/coordinator.py +4 -2
  1190. homeassistant/components/livisi/entity.py +2 -3
  1191. homeassistant/components/livisi/switch.py +5 -6
  1192. homeassistant/components/local_calendar/__init__.py +14 -15
  1193. homeassistant/components/local_calendar/calendar.py +4 -4
  1194. homeassistant/components/local_calendar/diagnostics.py +3 -4
  1195. homeassistant/components/lock/translations/fi.json +2 -0
  1196. homeassistant/components/lookin/__init__.py +6 -8
  1197. homeassistant/components/lookin/climate.py +4 -5
  1198. homeassistant/components/lookin/coordinator.py +6 -3
  1199. homeassistant/components/lookin/light.py +4 -5
  1200. homeassistant/components/lookin/media_player.py +4 -5
  1201. homeassistant/components/lookin/models.py +4 -0
  1202. homeassistant/components/lookin/sensor.py +3 -5
  1203. homeassistant/components/loqed/__init__.py +7 -17
  1204. homeassistant/components/loqed/coordinator.py +7 -3
  1205. homeassistant/components/loqed/lock.py +3 -7
  1206. homeassistant/components/loqed/sensor.py +3 -5
  1207. homeassistant/components/luftdaten/__init__.py +7 -37
  1208. homeassistant/components/luftdaten/coordinator.py +58 -0
  1209. homeassistant/components/luftdaten/diagnostics.py +4 -7
  1210. homeassistant/components/luftdaten/sensor.py +5 -8
  1211. homeassistant/components/lupusec/__init__.py +4 -4
  1212. homeassistant/components/lupusec/alarm_control_panel.py +4 -4
  1213. homeassistant/components/lupusec/binary_sensor.py +3 -4
  1214. homeassistant/components/lupusec/switch.py +3 -4
  1215. homeassistant/components/lutron/__init__.py +8 -3
  1216. homeassistant/components/lutron/binary_sensor.py +3 -7
  1217. homeassistant/components/lutron/config_flow.py +3 -7
  1218. homeassistant/components/lutron/cover.py +3 -4
  1219. homeassistant/components/lutron/event.py +3 -4
  1220. homeassistant/components/lutron/fan.py +3 -7
  1221. homeassistant/components/lutron/light.py +3 -3
  1222. homeassistant/components/lutron/scene.py +3 -4
  1223. homeassistant/components/lutron/switch.py +3 -4
  1224. homeassistant/components/lyric/__init__.py +8 -65
  1225. homeassistant/components/lyric/climate.py +5 -8
  1226. homeassistant/components/lyric/coordinator.py +89 -0
  1227. homeassistant/components/lyric/entity.py +6 -8
  1228. homeassistant/components/lyric/sensor.py +5 -8
  1229. homeassistant/components/lyric/strings.json +7 -1
  1230. homeassistant/components/lyric/translations/cs.json +6 -0
  1231. homeassistant/components/lyric/translations/de.json +6 -0
  1232. homeassistant/components/lyric/translations/el.json +6 -0
  1233. homeassistant/components/lyric/translations/en-GB.json +6 -0
  1234. homeassistant/components/lyric/translations/en.json +6 -0
  1235. homeassistant/components/lyric/translations/es.json +6 -0
  1236. homeassistant/components/lyric/translations/et.json +6 -0
  1237. homeassistant/components/lyric/translations/fr.json +6 -0
  1238. homeassistant/components/lyric/translations/ga.json +12 -0
  1239. homeassistant/components/lyric/translations/he.json +6 -0
  1240. homeassistant/components/lyric/translations/id.json +6 -0
  1241. homeassistant/components/lyric/translations/lt.json +6 -0
  1242. homeassistant/components/lyric/translations/mk.json +14 -1
  1243. homeassistant/components/lyric/translations/pt.json +12 -0
  1244. homeassistant/components/lyric/translations/ru.json +6 -0
  1245. homeassistant/components/lyric/translations/sk.json +6 -0
  1246. homeassistant/components/lyric/translations/sv.json +6 -0
  1247. homeassistant/components/lyric/translations/tr.json +6 -0
  1248. homeassistant/components/lyric/translations/zh-Hans.json +6 -0
  1249. homeassistant/components/lyric/translations/zh-Hant.json +6 -0
  1250. homeassistant/components/matrix/__init__.py +4 -30
  1251. homeassistant/components/matrix/const.py +5 -0
  1252. homeassistant/components/matrix/services.py +61 -0
  1253. homeassistant/components/matter/binary_sensor.py +30 -0
  1254. homeassistant/components/matter/icons.json +15 -0
  1255. homeassistant/components/matter/light.py +2 -2
  1256. homeassistant/components/matter/sensor.py +89 -6
  1257. homeassistant/components/matter/strings.json +32 -0
  1258. homeassistant/components/matter/translations/bg.json +9 -0
  1259. homeassistant/components/matter/translations/cs.json +32 -0
  1260. homeassistant/components/matter/translations/de.json +32 -0
  1261. homeassistant/components/matter/translations/el.json +32 -0
  1262. homeassistant/components/matter/translations/en.json +32 -0
  1263. homeassistant/components/matter/translations/es.json +32 -0
  1264. homeassistant/components/matter/translations/et.json +32 -0
  1265. homeassistant/components/matter/translations/fi.json +9 -0
  1266. homeassistant/components/matter/translations/fr.json +3 -0
  1267. homeassistant/components/matter/translations/ga.json +3 -0
  1268. homeassistant/components/matter/translations/lt.json +32 -0
  1269. homeassistant/components/matter/translations/nl.json +10 -0
  1270. homeassistant/components/matter/translations/pt.json +32 -0
  1271. homeassistant/components/matter/translations/sk.json +32 -0
  1272. homeassistant/components/matter/translations/sv.json +31 -0
  1273. homeassistant/components/matter/translations/tr.json +3 -0
  1274. homeassistant/components/matter/translations/zh-Hans.json +32 -0
  1275. homeassistant/components/matter/translations/zh-Hant.json +32 -0
  1276. homeassistant/components/matter/vacuum.py +9 -10
  1277. homeassistant/components/maxcube/climate.py +0 -2
  1278. homeassistant/components/mcp/strings.json +2 -2
  1279. homeassistant/components/mcp/translations/pt.json +6 -0
  1280. homeassistant/components/mcp_server/http.py +0 -1
  1281. homeassistant/components/mealie/__init__.py +2 -2
  1282. homeassistant/components/mealie/manifest.json +1 -1
  1283. homeassistant/components/mealie/services.py +113 -105
  1284. homeassistant/components/meater/__init__.py +9 -74
  1285. homeassistant/components/meater/const.py +4 -0
  1286. homeassistant/components/meater/coordinator.py +77 -0
  1287. homeassistant/components/meater/diagnostics.py +55 -0
  1288. homeassistant/components/meater/sensor.py +59 -42
  1289. homeassistant/components/meater/strings.json +12 -1
  1290. homeassistant/components/meater/translations/cs.json +12 -1
  1291. homeassistant/components/meater/translations/de.json +12 -1
  1292. homeassistant/components/meater/translations/el.json +10 -1
  1293. homeassistant/components/meater/translations/en.json +12 -1
  1294. homeassistant/components/meater/translations/es.json +12 -1
  1295. homeassistant/components/meater/translations/et.json +12 -1
  1296. homeassistant/components/meater/translations/ga.json +19 -1
  1297. homeassistant/components/meater/translations/lt.json +12 -1
  1298. homeassistant/components/meater/translations/mk.json +12 -1
  1299. homeassistant/components/meater/translations/pt.json +12 -1
  1300. homeassistant/components/meater/translations/sk.json +12 -1
  1301. homeassistant/components/meater/translations/sv.json +7 -1
  1302. homeassistant/components/meater/translations/tr.json +12 -1
  1303. homeassistant/components/meater/translations/zh-Hans.json +12 -1
  1304. homeassistant/components/meater/translations/zh-Hant.json +12 -1
  1305. homeassistant/components/media_player/__init__.py +19 -34
  1306. homeassistant/components/media_player/intent.py +19 -4
  1307. homeassistant/components/melcloud/strings.json +0 -10
  1308. homeassistant/components/melcloud/translations/ca.json +0 -9
  1309. homeassistant/components/melcloud/translations/cs.json +0 -10
  1310. homeassistant/components/melcloud/translations/de.json +0 -10
  1311. homeassistant/components/melcloud/translations/el.json +0 -10
  1312. homeassistant/components/melcloud/translations/en-GB.json +0 -10
  1313. homeassistant/components/melcloud/translations/en.json +0 -10
  1314. homeassistant/components/melcloud/translations/es.json +0 -10
  1315. homeassistant/components/melcloud/translations/et.json +0 -10
  1316. homeassistant/components/melcloud/translations/fi.json +0 -9
  1317. homeassistant/components/melcloud/translations/fr.json +0 -8
  1318. homeassistant/components/melcloud/translations/fy.json +1 -7
  1319. homeassistant/components/melcloud/translations/hu.json +0 -10
  1320. homeassistant/components/melcloud/translations/id.json +0 -9
  1321. homeassistant/components/melcloud/translations/it.json +0 -9
  1322. homeassistant/components/melcloud/translations/ja.json +0 -9
  1323. homeassistant/components/melcloud/translations/ko.json +0 -9
  1324. homeassistant/components/melcloud/translations/lt.json +0 -10
  1325. homeassistant/components/melcloud/translations/nl.json +0 -5
  1326. homeassistant/components/melcloud/translations/pl.json +0 -9
  1327. homeassistant/components/melcloud/translations/pt-BR.json +0 -9
  1328. homeassistant/components/melcloud/translations/pt.json +0 -10
  1329. homeassistant/components/melcloud/translations/ru.json +0 -10
  1330. homeassistant/components/melcloud/translations/sk.json +0 -10
  1331. homeassistant/components/melcloud/translations/sv.json +0 -10
  1332. homeassistant/components/melcloud/translations/tr.json +0 -10
  1333. homeassistant/components/melcloud/translations/zh-Hans.json +0 -10
  1334. homeassistant/components/melcloud/translations/zh-Hant.json +0 -10
  1335. homeassistant/components/microbees/strings.json +7 -1
  1336. homeassistant/components/microbees/translations/cs.json +6 -0
  1337. homeassistant/components/microbees/translations/de.json +6 -0
  1338. homeassistant/components/microbees/translations/el.json +6 -0
  1339. homeassistant/components/microbees/translations/en-GB.json +6 -0
  1340. homeassistant/components/microbees/translations/en.json +6 -0
  1341. homeassistant/components/microbees/translations/es.json +6 -0
  1342. homeassistant/components/microbees/translations/et.json +6 -0
  1343. homeassistant/components/microbees/translations/fr.json +6 -0
  1344. homeassistant/components/microbees/translations/ga.json +14 -1
  1345. homeassistant/components/microbees/translations/he.json +6 -0
  1346. homeassistant/components/microbees/translations/id.json +6 -0
  1347. homeassistant/components/microbees/translations/lt.json +6 -0
  1348. homeassistant/components/microbees/translations/mk.json +14 -1
  1349. homeassistant/components/microbees/translations/pt.json +6 -0
  1350. homeassistant/components/microbees/translations/ru.json +6 -0
  1351. homeassistant/components/microbees/translations/sk.json +6 -0
  1352. homeassistant/components/microbees/translations/sv.json +6 -0
  1353. homeassistant/components/microbees/translations/tr.json +6 -0
  1354. homeassistant/components/microbees/translations/zh-Hans.json +6 -0
  1355. homeassistant/components/microbees/translations/zh-Hant.json +6 -0
  1356. homeassistant/components/miele/const.py +27 -0
  1357. homeassistant/components/miele/icons.json +21 -24
  1358. homeassistant/components/miele/sensor.py +14 -34
  1359. homeassistant/components/miele/strings.json +28 -25
  1360. homeassistant/components/miele/translations/bg.json +19 -18
  1361. homeassistant/components/miele/translations/ca.json +0 -7
  1362. homeassistant/components/miele/translations/cs.json +27 -24
  1363. homeassistant/components/miele/translations/de.json +27 -24
  1364. homeassistant/components/miele/translations/el.json +28 -3
  1365. homeassistant/components/miele/translations/en-GB.json +7 -27
  1366. homeassistant/components/miele/translations/en.json +26 -23
  1367. homeassistant/components/miele/translations/es.json +27 -24
  1368. homeassistant/components/miele/translations/et.json +27 -24
  1369. homeassistant/components/miele/translations/fr.json +9 -4
  1370. homeassistant/components/miele/translations/ga.json +9 -27
  1371. homeassistant/components/miele/translations/he.json +6 -26
  1372. homeassistant/components/miele/translations/hu.json +1 -27
  1373. homeassistant/components/miele/translations/id.json +6 -0
  1374. homeassistant/components/miele/translations/it.json +1 -27
  1375. homeassistant/components/miele/translations/lt.json +27 -24
  1376. homeassistant/components/miele/translations/mk.json +12 -0
  1377. homeassistant/components/miele/translations/nl.json +24 -0
  1378. homeassistant/components/miele/translations/pt.json +27 -24
  1379. homeassistant/components/miele/translations/ru.json +6 -0
  1380. homeassistant/components/miele/translations/sk.json +27 -24
  1381. homeassistant/components/miele/translations/sv.json +27 -24
  1382. homeassistant/components/miele/translations/tr.json +9 -7
  1383. homeassistant/components/miele/translations/zh-Hans.json +27 -24
  1384. homeassistant/components/miele/translations/zh-Hant.json +27 -24
  1385. homeassistant/components/min_max/translations/pt.json +1 -1
  1386. homeassistant/components/modbus/manifest.json +1 -1
  1387. homeassistant/components/monzo/strings.json +7 -1
  1388. homeassistant/components/monzo/translations/cs.json +6 -0
  1389. homeassistant/components/monzo/translations/de.json +6 -0
  1390. homeassistant/components/monzo/translations/el.json +6 -0
  1391. homeassistant/components/monzo/translations/en-GB.json +6 -0
  1392. homeassistant/components/monzo/translations/en.json +6 -0
  1393. homeassistant/components/monzo/translations/es.json +6 -0
  1394. homeassistant/components/monzo/translations/et.json +6 -0
  1395. homeassistant/components/monzo/translations/fr.json +14 -1
  1396. homeassistant/components/monzo/translations/ga.json +14 -1
  1397. homeassistant/components/monzo/translations/he.json +6 -0
  1398. homeassistant/components/monzo/translations/id.json +6 -0
  1399. homeassistant/components/monzo/translations/lt.json +6 -0
  1400. homeassistant/components/monzo/translations/mk.json +14 -1
  1401. homeassistant/components/monzo/translations/pt.json +6 -0
  1402. homeassistant/components/monzo/translations/ru.json +6 -0
  1403. homeassistant/components/monzo/translations/sk.json +6 -0
  1404. homeassistant/components/monzo/translations/sv.json +6 -0
  1405. homeassistant/components/monzo/translations/tr.json +6 -0
  1406. homeassistant/components/monzo/translations/zh-Hans.json +6 -0
  1407. homeassistant/components/monzo/translations/zh-Hant.json +6 -0
  1408. homeassistant/components/motion_blinds/translations/el.json +7 -3
  1409. homeassistant/components/motionmount/translations/el.json +1 -1
  1410. homeassistant/components/mqtt/__init__.py +2 -4
  1411. homeassistant/components/mqtt/client.py +8 -14
  1412. homeassistant/components/mqtt/config_flow.py +42 -6
  1413. homeassistant/components/mqtt/entity.py +6 -2
  1414. homeassistant/components/mqtt/icons.json +5 -0
  1415. homeassistant/components/mqtt/sensor.py +3 -40
  1416. homeassistant/components/mqtt/strings.json +26 -5
  1417. homeassistant/components/mqtt/translations/cs.json +7 -5
  1418. homeassistant/components/mqtt/translations/de.json +25 -4
  1419. homeassistant/components/mqtt/translations/el.json +11 -4
  1420. homeassistant/components/mqtt/translations/en-GB.json +1 -5
  1421. homeassistant/components/mqtt/translations/en.json +26 -5
  1422. homeassistant/components/mqtt/translations/es.json +25 -4
  1423. homeassistant/components/mqtt/translations/et.json +25 -4
  1424. homeassistant/components/mqtt/translations/fr.json +0 -5
  1425. homeassistant/components/mqtt/translations/fy.json +0 -1
  1426. homeassistant/components/mqtt/translations/ga.json +0 -7
  1427. homeassistant/components/mqtt/translations/he.json +0 -5
  1428. homeassistant/components/mqtt/translations/hu.json +0 -5
  1429. homeassistant/components/mqtt/translations/id.json +0 -4
  1430. homeassistant/components/mqtt/translations/it.json +0 -4
  1431. homeassistant/components/mqtt/translations/ja.json +0 -4
  1432. homeassistant/components/mqtt/translations/lt.json +0 -5
  1433. homeassistant/components/mqtt/translations/nl.json +0 -5
  1434. homeassistant/components/mqtt/translations/pt.json +24 -5
  1435. homeassistant/components/mqtt/translations/ru.json +18 -5
  1436. homeassistant/components/mqtt/translations/sk.json +25 -4
  1437. homeassistant/components/mqtt/translations/sl.json +0 -3
  1438. homeassistant/components/mqtt/translations/sv.json +3 -6
  1439. homeassistant/components/mqtt/translations/tr.json +0 -4
  1440. homeassistant/components/mqtt/translations/zh-Hans.json +0 -5
  1441. homeassistant/components/mqtt/translations/zh-Hant.json +7 -5
  1442. homeassistant/components/mqtt/triggers.yaml +14 -0
  1443. homeassistant/components/mqtt/util.py +2 -4
  1444. homeassistant/components/music_assistant/__init__.py +33 -2
  1445. homeassistant/components/music_assistant/button.py +53 -0
  1446. homeassistant/components/music_assistant/helpers.py +28 -0
  1447. homeassistant/components/music_assistant/icons.json +7 -0
  1448. homeassistant/components/music_assistant/media_player.py +11 -50
  1449. homeassistant/components/music_assistant/strings.json +7 -0
  1450. homeassistant/components/music_assistant/translations/cs.json +7 -0
  1451. homeassistant/components/music_assistant/translations/de.json +7 -0
  1452. homeassistant/components/music_assistant/translations/el.json +7 -0
  1453. homeassistant/components/music_assistant/translations/en.json +7 -0
  1454. homeassistant/components/music_assistant/translations/es.json +7 -0
  1455. homeassistant/components/music_assistant/translations/et.json +7 -0
  1456. homeassistant/components/music_assistant/translations/lt.json +7 -0
  1457. homeassistant/components/music_assistant/translations/pt.json +7 -0
  1458. homeassistant/components/music_assistant/translations/sk.json +7 -0
  1459. homeassistant/components/music_assistant/translations/zh-Hans.json +7 -0
  1460. homeassistant/components/music_assistant/translations/zh-Hant.json +7 -0
  1461. homeassistant/components/mysensors/manifest.json +1 -1
  1462. homeassistant/components/mysensors/translations/el.json +4 -2
  1463. homeassistant/components/myuplink/strings.json +7 -1
  1464. homeassistant/components/myuplink/translations/cs.json +6 -0
  1465. homeassistant/components/myuplink/translations/de.json +6 -0
  1466. homeassistant/components/myuplink/translations/el.json +6 -0
  1467. homeassistant/components/myuplink/translations/en-GB.json +6 -0
  1468. homeassistant/components/myuplink/translations/en.json +6 -0
  1469. homeassistant/components/myuplink/translations/es.json +6 -0
  1470. homeassistant/components/myuplink/translations/et.json +6 -0
  1471. homeassistant/components/myuplink/translations/fr.json +6 -0
  1472. homeassistant/components/myuplink/translations/ga.json +14 -1
  1473. homeassistant/components/myuplink/translations/he.json +6 -0
  1474. homeassistant/components/myuplink/translations/id.json +6 -0
  1475. homeassistant/components/myuplink/translations/lt.json +6 -0
  1476. homeassistant/components/myuplink/translations/mk.json +14 -1
  1477. homeassistant/components/myuplink/translations/pt.json +6 -0
  1478. homeassistant/components/myuplink/translations/ru.json +6 -0
  1479. homeassistant/components/myuplink/translations/sk.json +6 -0
  1480. homeassistant/components/myuplink/translations/sv.json +6 -0
  1481. homeassistant/components/myuplink/translations/tr.json +6 -0
  1482. homeassistant/components/myuplink/translations/zh-Hans.json +6 -0
  1483. homeassistant/components/myuplink/translations/zh-Hant.json +6 -0
  1484. homeassistant/components/neato/manifest.json +1 -1
  1485. homeassistant/components/neato/strings.json +7 -1
  1486. homeassistant/components/neato/translations/cs.json +6 -0
  1487. homeassistant/components/neato/translations/de.json +6 -0
  1488. homeassistant/components/neato/translations/el.json +6 -0
  1489. homeassistant/components/neato/translations/en-GB.json +6 -0
  1490. homeassistant/components/neato/translations/en.json +6 -0
  1491. homeassistant/components/neato/translations/es.json +6 -0
  1492. homeassistant/components/neato/translations/et.json +6 -0
  1493. homeassistant/components/neato/translations/fr.json +6 -0
  1494. homeassistant/components/neato/translations/ga.json +14 -1
  1495. homeassistant/components/neato/translations/he.json +6 -0
  1496. homeassistant/components/neato/translations/id.json +6 -0
  1497. homeassistant/components/neato/translations/lt.json +6 -0
  1498. homeassistant/components/neato/translations/mk.json +14 -1
  1499. homeassistant/components/neato/translations/pt.json +6 -0
  1500. homeassistant/components/neato/translations/ru.json +6 -0
  1501. homeassistant/components/neato/translations/sk.json +6 -0
  1502. homeassistant/components/neato/translations/sv.json +6 -0
  1503. homeassistant/components/neato/translations/tr.json +6 -0
  1504. homeassistant/components/neato/translations/zh-Hans.json +6 -0
  1505. homeassistant/components/neato/translations/zh-Hant.json +6 -0
  1506. homeassistant/components/ness_alarm/manifest.json +1 -1
  1507. homeassistant/components/nest/climate.py +0 -2
  1508. homeassistant/components/nest/strings.json +7 -1
  1509. homeassistant/components/nest/translations/cs.json +6 -0
  1510. homeassistant/components/nest/translations/de.json +6 -0
  1511. homeassistant/components/nest/translations/el.json +6 -0
  1512. homeassistant/components/nest/translations/en-GB.json +6 -0
  1513. homeassistant/components/nest/translations/en.json +6 -0
  1514. homeassistant/components/nest/translations/es.json +6 -0
  1515. homeassistant/components/nest/translations/et.json +6 -0
  1516. homeassistant/components/nest/translations/fr.json +6 -0
  1517. homeassistant/components/nest/translations/ga.json +8 -0
  1518. homeassistant/components/nest/translations/he.json +6 -0
  1519. homeassistant/components/nest/translations/id.json +6 -0
  1520. homeassistant/components/nest/translations/lt.json +6 -0
  1521. homeassistant/components/nest/translations/mk.json +14 -1
  1522. homeassistant/components/nest/translations/pt.json +9 -0
  1523. homeassistant/components/nest/translations/ru.json +6 -0
  1524. homeassistant/components/nest/translations/sk.json +6 -0
  1525. homeassistant/components/nest/translations/sv.json +7 -1
  1526. homeassistant/components/nest/translations/tr.json +6 -0
  1527. homeassistant/components/nest/translations/zh-Hans.json +6 -0
  1528. homeassistant/components/nest/translations/zh-Hant.json +6 -0
  1529. homeassistant/components/netatmo/manifest.json +1 -1
  1530. homeassistant/components/netatmo/strings.json +7 -1
  1531. homeassistant/components/netatmo/translations/cs.json +6 -0
  1532. homeassistant/components/netatmo/translations/de.json +6 -0
  1533. homeassistant/components/netatmo/translations/el.json +6 -0
  1534. homeassistant/components/netatmo/translations/en-GB.json +6 -0
  1535. homeassistant/components/netatmo/translations/en.json +6 -0
  1536. homeassistant/components/netatmo/translations/es.json +6 -0
  1537. homeassistant/components/netatmo/translations/et.json +6 -0
  1538. homeassistant/components/netatmo/translations/fr.json +6 -0
  1539. homeassistant/components/netatmo/translations/ga.json +12 -0
  1540. homeassistant/components/netatmo/translations/he.json +6 -0
  1541. homeassistant/components/netatmo/translations/id.json +6 -0
  1542. homeassistant/components/netatmo/translations/lt.json +6 -0
  1543. homeassistant/components/netatmo/translations/mk.json +12 -0
  1544. homeassistant/components/netatmo/translations/pt.json +6 -0
  1545. homeassistant/components/netatmo/translations/ru.json +6 -0
  1546. homeassistant/components/netatmo/translations/sk.json +6 -0
  1547. homeassistant/components/netatmo/translations/sv.json +6 -0
  1548. homeassistant/components/netatmo/translations/tr.json +6 -0
  1549. homeassistant/components/netatmo/translations/zh-Hans.json +6 -0
  1550. homeassistant/components/netatmo/translations/zh-Hant.json +6 -0
  1551. homeassistant/components/netgear/translations/mk.json +7 -0
  1552. homeassistant/components/netgear_lte/__init__.py +1 -1
  1553. homeassistant/components/netgear_lte/services.py +33 -25
  1554. homeassistant/components/network/__init__.py +1 -3
  1555. homeassistant/components/nextbus/manifest.json +1 -1
  1556. homeassistant/components/nextcloud/translations/mk.json +9 -0
  1557. homeassistant/components/nextdns/binary_sensor.py +8 -25
  1558. homeassistant/components/nextdns/button.py +4 -19
  1559. homeassistant/components/nextdns/coordinator.py +4 -13
  1560. homeassistant/components/nextdns/entity.py +35 -0
  1561. homeassistant/components/nextdns/sensor.py +13 -27
  1562. homeassistant/components/nextdns/strings.json +10 -1
  1563. homeassistant/components/nextdns/switch.py +3 -9
  1564. homeassistant/components/nextdns/translations/ar.json +0 -7
  1565. homeassistant/components/nextdns/translations/bg.json +1 -1
  1566. homeassistant/components/nextdns/translations/ca.json +0 -5
  1567. homeassistant/components/nextdns/translations/cs.json +10 -1
  1568. homeassistant/components/nextdns/translations/de.json +10 -1
  1569. homeassistant/components/nextdns/translations/el.json +10 -1
  1570. homeassistant/components/nextdns/translations/en-GB.json +5 -2
  1571. homeassistant/components/nextdns/translations/en.json +10 -1
  1572. homeassistant/components/nextdns/translations/es.json +10 -1
  1573. homeassistant/components/nextdns/translations/et.json +10 -1
  1574. homeassistant/components/nextdns/translations/fi.json +0 -5
  1575. homeassistant/components/nextdns/translations/fr.json +10 -1
  1576. homeassistant/components/nextdns/translations/ga.json +22 -0
  1577. homeassistant/components/nextdns/translations/he.json +0 -5
  1578. homeassistant/components/nextdns/translations/hu.json +0 -5
  1579. homeassistant/components/nextdns/translations/id.json +0 -5
  1580. homeassistant/components/nextdns/translations/it.json +0 -5
  1581. homeassistant/components/nextdns/translations/ja.json +0 -5
  1582. homeassistant/components/nextdns/translations/ko.json +0 -5
  1583. homeassistant/components/nextdns/translations/lt.json +10 -1
  1584. homeassistant/components/nextdns/translations/lv.json +0 -5
  1585. homeassistant/components/nextdns/translations/mk.json +11 -1
  1586. homeassistant/components/nextdns/translations/nb.json +0 -5
  1587. homeassistant/components/nextdns/translations/nl.json +0 -5
  1588. homeassistant/components/nextdns/translations/pl.json +7 -1
  1589. homeassistant/components/nextdns/translations/pt-BR.json +0 -5
  1590. homeassistant/components/nextdns/translations/pt.json +10 -1
  1591. homeassistant/components/nextdns/translations/ro.json +0 -5
  1592. homeassistant/components/nextdns/translations/ru.json +10 -1
  1593. homeassistant/components/nextdns/translations/sk.json +10 -1
  1594. homeassistant/components/nextdns/translations/sv.json +7 -1
  1595. homeassistant/components/nextdns/translations/tr.json +10 -1
  1596. homeassistant/components/nextdns/translations/uk.json +0 -5
  1597. homeassistant/components/nextdns/translations/zh-Hans.json +10 -1
  1598. homeassistant/components/nextdns/translations/zh-Hant.json +10 -1
  1599. homeassistant/components/nfandroidtv/__init__.py +1 -10
  1600. homeassistant/components/nfandroidtv/notify.py +32 -19
  1601. homeassistant/components/niko_home_control/config_flow.py +0 -12
  1602. homeassistant/components/niko_home_control/light.py +2 -63
  1603. homeassistant/components/niko_home_control/strings.json +0 -6
  1604. homeassistant/components/niko_home_control/translations/cs.json +0 -6
  1605. homeassistant/components/niko_home_control/translations/de.json +0 -6
  1606. homeassistant/components/niko_home_control/translations/el.json +0 -6
  1607. homeassistant/components/niko_home_control/translations/en-GB.json +0 -6
  1608. homeassistant/components/niko_home_control/translations/en.json +0 -6
  1609. homeassistant/components/niko_home_control/translations/es.json +0 -6
  1610. homeassistant/components/niko_home_control/translations/et.json +0 -6
  1611. homeassistant/components/niko_home_control/translations/hu.json +0 -6
  1612. homeassistant/components/niko_home_control/translations/id.json +0 -5
  1613. homeassistant/components/niko_home_control/translations/it.json +0 -6
  1614. homeassistant/components/niko_home_control/translations/ja.json +0 -6
  1615. homeassistant/components/niko_home_control/translations/lt.json +0 -6
  1616. homeassistant/components/niko_home_control/translations/nl.json +0 -6
  1617. homeassistant/components/niko_home_control/translations/pt.json +0 -6
  1618. homeassistant/components/niko_home_control/translations/ru.json +0 -6
  1619. homeassistant/components/niko_home_control/translations/sk.json +0 -6
  1620. homeassistant/components/niko_home_control/translations/sv.json +0 -6
  1621. homeassistant/components/niko_home_control/translations/tr.json +0 -6
  1622. homeassistant/components/niko_home_control/translations/zh-Hans.json +0 -6
  1623. homeassistant/components/niko_home_control/translations/zh-Hant.json +0 -6
  1624. homeassistant/components/nina/__init__.py +5 -7
  1625. homeassistant/components/nina/binary_sensor.py +4 -3
  1626. homeassistant/components/nina/coordinator.py +2 -0
  1627. homeassistant/components/nmbs/config_flow.py +0 -65
  1628. homeassistant/components/nmbs/sensor.py +11 -103
  1629. homeassistant/components/nmbs/strings.json +0 -6
  1630. homeassistant/components/nmbs/translations/bg.json +0 -5
  1631. homeassistant/components/nmbs/translations/cs.json +0 -6
  1632. homeassistant/components/nmbs/translations/de.json +0 -6
  1633. homeassistant/components/nmbs/translations/el.json +0 -6
  1634. homeassistant/components/nmbs/translations/en-GB.json +0 -6
  1635. homeassistant/components/nmbs/translations/en.json +0 -6
  1636. homeassistant/components/nmbs/translations/es.json +0 -6
  1637. homeassistant/components/nmbs/translations/et.json +0 -6
  1638. homeassistant/components/nmbs/translations/ga.json +0 -6
  1639. homeassistant/components/nmbs/translations/hu.json +0 -6
  1640. homeassistant/components/nmbs/translations/ja.json +0 -5
  1641. homeassistant/components/nmbs/translations/lt.json +0 -6
  1642. homeassistant/components/nmbs/translations/nl.json +0 -5
  1643. homeassistant/components/nmbs/translations/pt-BR.json +0 -5
  1644. homeassistant/components/nmbs/translations/pt.json +0 -6
  1645. homeassistant/components/nmbs/translations/ru.json +0 -6
  1646. homeassistant/components/nmbs/translations/sk.json +0 -6
  1647. homeassistant/components/nmbs/translations/sv.json +0 -6
  1648. homeassistant/components/nmbs/translations/tr.json +0 -6
  1649. homeassistant/components/nmbs/translations/zh-Hans.json +0 -6
  1650. homeassistant/components/nmbs/translations/zh-Hant.json +0 -6
  1651. homeassistant/components/nobo_hub/translations/el.json +4 -0
  1652. homeassistant/components/nordpool/services.py +2 -0
  1653. homeassistant/components/notify/legacy.py +1 -2
  1654. homeassistant/components/ntfy/__init__.py +5 -6
  1655. homeassistant/components/ntfy/config_flow.py +115 -0
  1656. homeassistant/components/ntfy/coordinator.py +74 -0
  1657. homeassistant/components/ntfy/icons.json +62 -0
  1658. homeassistant/components/ntfy/notify.py +3 -2
  1659. homeassistant/components/ntfy/quality_scale.yaml +1 -1
  1660. homeassistant/components/ntfy/sensor.py +272 -0
  1661. homeassistant/components/ntfy/strings.json +111 -2
  1662. homeassistant/components/ntfy/translations/bg.json +49 -1
  1663. homeassistant/components/ntfy/translations/cs.json +110 -1
  1664. homeassistant/components/ntfy/translations/de.json +110 -1
  1665. homeassistant/components/ntfy/translations/el.json +110 -1
  1666. homeassistant/components/ntfy/translations/en.json +110 -1
  1667. homeassistant/components/ntfy/translations/es.json +110 -1
  1668. homeassistant/components/ntfy/translations/et.json +110 -1
  1669. homeassistant/components/ntfy/translations/ga.json +17 -0
  1670. homeassistant/components/ntfy/translations/lt.json +112 -2
  1671. homeassistant/components/ntfy/translations/nl.json +27 -1
  1672. homeassistant/components/ntfy/translations/pt.json +112 -2
  1673. homeassistant/components/ntfy/translations/ru.json +28 -1
  1674. homeassistant/components/ntfy/translations/sk.json +110 -1
  1675. homeassistant/components/ntfy/translations/sv.json +100 -1
  1676. homeassistant/components/ntfy/translations/tr.json +32 -1
  1677. homeassistant/components/ntfy/translations/zh-Hans.json +110 -1
  1678. homeassistant/components/ntfy/translations/zh-Hant.json +110 -1
  1679. homeassistant/components/nuki/lock.py +2 -2
  1680. homeassistant/components/nut/translations/fi.json +4 -1
  1681. homeassistant/components/nzbget/__init__.py +11 -43
  1682. homeassistant/components/nzbget/services.py +59 -0
  1683. homeassistant/components/nzbget/strings.json +5 -0
  1684. homeassistant/components/nzbget/translations/bg.json +5 -0
  1685. homeassistant/components/nzbget/translations/cs.json +5 -0
  1686. homeassistant/components/nzbget/translations/de.json +5 -0
  1687. homeassistant/components/nzbget/translations/el.json +5 -0
  1688. homeassistant/components/nzbget/translations/en-GB.json +5 -0
  1689. homeassistant/components/nzbget/translations/en.json +5 -0
  1690. homeassistant/components/nzbget/translations/es.json +5 -0
  1691. homeassistant/components/nzbget/translations/et.json +5 -0
  1692. homeassistant/components/nzbget/translations/fr.json +5 -0
  1693. homeassistant/components/nzbget/translations/ga.json +7 -1
  1694. homeassistant/components/nzbget/translations/hu.json +5 -0
  1695. homeassistant/components/nzbget/translations/it.json +5 -0
  1696. homeassistant/components/nzbget/translations/lt.json +5 -0
  1697. homeassistant/components/nzbget/translations/pt.json +5 -0
  1698. homeassistant/components/nzbget/translations/sk.json +5 -0
  1699. homeassistant/components/nzbget/translations/sv.json +5 -0
  1700. homeassistant/components/nzbget/translations/tr.json +5 -0
  1701. homeassistant/components/nzbget/translations/zh-Hans.json +5 -0
  1702. homeassistant/components/nzbget/translations/zh-Hant.json +5 -0
  1703. homeassistant/components/ohme/services.py +2 -0
  1704. homeassistant/components/ollama/__init__.py +84 -6
  1705. homeassistant/components/ollama/config_flow.py +136 -68
  1706. homeassistant/components/ollama/const.py +2 -0
  1707. homeassistant/components/ollama/conversation.py +61 -37
  1708. homeassistant/components/ollama/manifest.json +1 -1
  1709. homeassistant/components/ollama/strings.json +30 -15
  1710. homeassistant/components/ollama/translations/bg.json +0 -9
  1711. homeassistant/components/ollama/translations/ca.json +0 -15
  1712. homeassistant/components/ollama/translations/cs.json +29 -14
  1713. homeassistant/components/ollama/translations/de.json +29 -14
  1714. homeassistant/components/ollama/translations/el.json +29 -14
  1715. homeassistant/components/ollama/translations/en-GB.json +0 -18
  1716. homeassistant/components/ollama/translations/en.json +29 -14
  1717. homeassistant/components/ollama/translations/es.json +29 -14
  1718. homeassistant/components/ollama/translations/et.json +29 -14
  1719. homeassistant/components/ollama/translations/fi.json +0 -9
  1720. homeassistant/components/ollama/translations/fr.json +0 -18
  1721. homeassistant/components/ollama/translations/he.json +0 -9
  1722. homeassistant/components/ollama/translations/hu.json +0 -18
  1723. homeassistant/components/ollama/translations/id.json +0 -9
  1724. homeassistant/components/ollama/translations/it.json +0 -10
  1725. homeassistant/components/ollama/translations/ja.json +0 -18
  1726. homeassistant/components/ollama/translations/lt.json +29 -14
  1727. homeassistant/components/ollama/translations/nl.json +14 -8
  1728. homeassistant/components/ollama/translations/pl.json +0 -9
  1729. homeassistant/components/ollama/translations/pt.json +29 -14
  1730. homeassistant/components/ollama/translations/ru.json +10 -15
  1731. homeassistant/components/ollama/translations/sk.json +29 -14
  1732. homeassistant/components/ollama/translations/sl.json +0 -12
  1733. homeassistant/components/ollama/translations/sv.json +15 -14
  1734. homeassistant/components/ollama/translations/tr.json +0 -18
  1735. homeassistant/components/ollama/translations/vi.json +1 -11
  1736. homeassistant/components/ollama/translations/zh-Hans.json +29 -14
  1737. homeassistant/components/ollama/translations/zh-Hant.json +29 -14
  1738. homeassistant/components/onboarding/views.py +2 -4
  1739. homeassistant/components/ondilo_ico/strings.json +7 -1
  1740. homeassistant/components/ondilo_ico/translations/cs.json +6 -0
  1741. homeassistant/components/ondilo_ico/translations/de.json +6 -0
  1742. homeassistant/components/ondilo_ico/translations/el.json +6 -0
  1743. homeassistant/components/ondilo_ico/translations/en-GB.json +6 -0
  1744. homeassistant/components/ondilo_ico/translations/en.json +6 -0
  1745. homeassistant/components/ondilo_ico/translations/es.json +6 -0
  1746. homeassistant/components/ondilo_ico/translations/et.json +6 -0
  1747. homeassistant/components/ondilo_ico/translations/fr.json +6 -0
  1748. homeassistant/components/ondilo_ico/translations/ga.json +14 -1
  1749. homeassistant/components/ondilo_ico/translations/he.json +6 -0
  1750. homeassistant/components/ondilo_ico/translations/id.json +6 -0
  1751. homeassistant/components/ondilo_ico/translations/lt.json +6 -0
  1752. homeassistant/components/ondilo_ico/translations/mk.json +14 -1
  1753. homeassistant/components/ondilo_ico/translations/pt.json +6 -0
  1754. homeassistant/components/ondilo_ico/translations/ru.json +6 -0
  1755. homeassistant/components/ondilo_ico/translations/sk.json +6 -0
  1756. homeassistant/components/ondilo_ico/translations/sv.json +6 -0
  1757. homeassistant/components/ondilo_ico/translations/tr.json +6 -0
  1758. homeassistant/components/ondilo_ico/translations/zh-Hans.json +6 -0
  1759. homeassistant/components/ondilo_ico/translations/zh-Hant.json +6 -0
  1760. homeassistant/components/onedrive/__init__.py +2 -2
  1761. homeassistant/components/onedrive/services.py +10 -9
  1762. homeassistant/components/onedrive/strings.json +7 -1
  1763. homeassistant/components/onedrive/translations/cs.json +6 -0
  1764. homeassistant/components/onedrive/translations/de.json +6 -0
  1765. homeassistant/components/onedrive/translations/el.json +6 -0
  1766. homeassistant/components/onedrive/translations/en-GB.json +6 -0
  1767. homeassistant/components/onedrive/translations/en.json +6 -0
  1768. homeassistant/components/onedrive/translations/es.json +6 -0
  1769. homeassistant/components/onedrive/translations/et.json +6 -0
  1770. homeassistant/components/onedrive/translations/fr.json +6 -0
  1771. homeassistant/components/onedrive/translations/ga.json +8 -0
  1772. homeassistant/components/onedrive/translations/he.json +6 -0
  1773. homeassistant/components/onedrive/translations/id.json +6 -0
  1774. homeassistant/components/onedrive/translations/lt.json +6 -0
  1775. homeassistant/components/onedrive/translations/mk.json +12 -0
  1776. homeassistant/components/onedrive/translations/pt.json +6 -0
  1777. homeassistant/components/onedrive/translations/ru.json +6 -0
  1778. homeassistant/components/onedrive/translations/sk.json +6 -0
  1779. homeassistant/components/onedrive/translations/sv.json +6 -0
  1780. homeassistant/components/onedrive/translations/tr.json +6 -0
  1781. homeassistant/components/onedrive/translations/zh-Hans.json +6 -0
  1782. homeassistant/components/onedrive/translations/zh-Hant.json +6 -0
  1783. homeassistant/components/onewire/binary_sensor.py +4 -6
  1784. homeassistant/components/onewire/const.py +0 -1
  1785. homeassistant/components/onewire/entity.py +2 -5
  1786. homeassistant/components/onewire/switch.py +4 -12
  1787. homeassistant/components/onkyo/__init__.py +2 -2
  1788. homeassistant/components/onkyo/services.py +3 -2
  1789. homeassistant/components/onvif/__init__.py +3 -3
  1790. homeassistant/components/onvif/const.py +9 -2
  1791. homeassistant/components/onvif/device.py +3 -3
  1792. homeassistant/components/onvif/event.py +25 -7
  1793. homeassistant/components/onvif/manifest.json +1 -1
  1794. homeassistant/components/openai_conversation/__init__.py +92 -7
  1795. homeassistant/components/openai_conversation/config_flow.py +264 -154
  1796. homeassistant/components/openai_conversation/const.py +2 -0
  1797. homeassistant/components/openai_conversation/conversation.py +22 -16
  1798. homeassistant/components/openai_conversation/strings.json +52 -25
  1799. homeassistant/components/openai_conversation/translations/af.json +0 -10
  1800. homeassistant/components/openai_conversation/translations/bg.json +0 -14
  1801. homeassistant/components/openai_conversation/translations/ca.json +0 -14
  1802. homeassistant/components/openai_conversation/translations/cs.json +56 -30
  1803. homeassistant/components/openai_conversation/translations/da.json +0 -9
  1804. homeassistant/components/openai_conversation/translations/de.json +56 -30
  1805. homeassistant/components/openai_conversation/translations/el.json +56 -30
  1806. homeassistant/components/openai_conversation/translations/en-GB.json +0 -30
  1807. homeassistant/components/openai_conversation/translations/en.json +56 -30
  1808. homeassistant/components/openai_conversation/translations/es.json +56 -30
  1809. homeassistant/components/openai_conversation/translations/et.json +56 -30
  1810. homeassistant/components/openai_conversation/translations/fi.json +0 -12
  1811. homeassistant/components/openai_conversation/translations/fr.json +0 -30
  1812. homeassistant/components/openai_conversation/translations/fy.json +0 -9
  1813. homeassistant/components/openai_conversation/translations/ga.json +0 -22
  1814. homeassistant/components/openai_conversation/translations/he.json +0 -18
  1815. homeassistant/components/openai_conversation/translations/hu.json +0 -30
  1816. homeassistant/components/openai_conversation/translations/id.json +0 -18
  1817. homeassistant/components/openai_conversation/translations/it.json +0 -17
  1818. homeassistant/components/openai_conversation/translations/ja.json +0 -29
  1819. homeassistant/components/openai_conversation/translations/ko.json +0 -11
  1820. homeassistant/components/openai_conversation/translations/lt.json +56 -30
  1821. homeassistant/components/openai_conversation/translations/lv.json +0 -9
  1822. homeassistant/components/openai_conversation/translations/nb.json +0 -11
  1823. homeassistant/components/openai_conversation/translations/nl.json +7 -19
  1824. homeassistant/components/openai_conversation/translations/pl.json +0 -29
  1825. homeassistant/components/openai_conversation/translations/pt-BR.json +0 -18
  1826. homeassistant/components/openai_conversation/translations/pt.json +56 -30
  1827. homeassistant/components/openai_conversation/translations/ro.json +0 -11
  1828. homeassistant/components/openai_conversation/translations/ru.json +49 -30
  1829. homeassistant/components/openai_conversation/translations/sk.json +56 -30
  1830. homeassistant/components/openai_conversation/translations/sl.json +0 -21
  1831. homeassistant/components/openai_conversation/translations/sv.json +38 -30
  1832. homeassistant/components/openai_conversation/translations/tr.json +0 -23
  1833. homeassistant/components/openai_conversation/translations/uk.json +0 -12
  1834. homeassistant/components/openai_conversation/translations/vi.json +0 -12
  1835. homeassistant/components/openai_conversation/translations/zh-Hans.json +56 -30
  1836. homeassistant/components/openai_conversation/translations/zh-Hant.json +56 -30
  1837. homeassistant/components/opentherm_gw/__init__.py +12 -290
  1838. homeassistant/components/opentherm_gw/services.py +297 -0
  1839. homeassistant/components/opentherm_gw/strings.json +5 -0
  1840. homeassistant/components/opentherm_gw/translations/bg.json +5 -0
  1841. homeassistant/components/opentherm_gw/translations/cs.json +5 -0
  1842. homeassistant/components/opentherm_gw/translations/de.json +5 -0
  1843. homeassistant/components/opentherm_gw/translations/el.json +5 -0
  1844. homeassistant/components/opentherm_gw/translations/en-GB.json +5 -0
  1845. homeassistant/components/opentherm_gw/translations/en.json +5 -0
  1846. homeassistant/components/opentherm_gw/translations/es.json +5 -0
  1847. homeassistant/components/opentherm_gw/translations/et.json +5 -0
  1848. homeassistant/components/opentherm_gw/translations/fi.json +5 -0
  1849. homeassistant/components/opentherm_gw/translations/fr.json +5 -0
  1850. homeassistant/components/opentherm_gw/translations/ga.json +5 -0
  1851. homeassistant/components/opentherm_gw/translations/hu.json +5 -0
  1852. homeassistant/components/opentherm_gw/translations/it.json +5 -0
  1853. homeassistant/components/opentherm_gw/translations/lt.json +5 -0
  1854. homeassistant/components/opentherm_gw/translations/pt.json +5 -0
  1855. homeassistant/components/opentherm_gw/translations/sk.json +5 -0
  1856. homeassistant/components/opentherm_gw/translations/sv.json +5 -0
  1857. homeassistant/components/opentherm_gw/translations/tr.json +5 -0
  1858. homeassistant/components/opentherm_gw/translations/zh-Hans.json +5 -0
  1859. homeassistant/components/opentherm_gw/translations/zh-Hant.json +5 -0
  1860. homeassistant/components/opower/translations/el.json +3 -0
  1861. homeassistant/components/osoenergy/manifest.json +1 -1
  1862. homeassistant/components/osoenergy/translations/nl.json +13 -0
  1863. homeassistant/components/overkiz/manifest.json +1 -1
  1864. homeassistant/components/overkiz/translations/el.json +2 -0
  1865. homeassistant/components/overseerr/__init__.py +2 -2
  1866. homeassistant/components/overseerr/sensor.py +1 -1
  1867. homeassistant/components/overseerr/services.py +36 -33
  1868. homeassistant/components/overseerr/strings.json +1 -1
  1869. homeassistant/components/ovo_energy/manifest.json +1 -1
  1870. homeassistant/components/paperless_ngx/__init__.py +3 -3
  1871. homeassistant/components/paperless_ngx/config_flow.py +15 -8
  1872. homeassistant/components/paperless_ngx/coordinator.py +3 -6
  1873. homeassistant/components/paperless_ngx/diagnostics.py +1 -0
  1874. homeassistant/components/paperless_ngx/entity.py +4 -6
  1875. homeassistant/components/paperless_ngx/sensor.py +9 -8
  1876. homeassistant/components/paperless_ngx/strings.json +13 -4
  1877. homeassistant/components/paperless_ngx/translations/bg.json +7 -1
  1878. homeassistant/components/paperless_ngx/translations/cs.json +13 -4
  1879. homeassistant/components/paperless_ngx/translations/de.json +13 -4
  1880. homeassistant/components/paperless_ngx/translations/el.json +13 -4
  1881. homeassistant/components/paperless_ngx/translations/en-GB.json +5 -0
  1882. homeassistant/components/paperless_ngx/translations/en.json +13 -4
  1883. homeassistant/components/paperless_ngx/translations/es.json +13 -4
  1884. homeassistant/components/paperless_ngx/translations/et.json +13 -4
  1885. homeassistant/components/paperless_ngx/translations/fr.json +13 -4
  1886. homeassistant/components/paperless_ngx/translations/ga.json +9 -2
  1887. homeassistant/components/paperless_ngx/translations/hu.json +5 -0
  1888. homeassistant/components/paperless_ngx/translations/id.json +4 -2
  1889. homeassistant/components/paperless_ngx/translations/ja.json +9 -1
  1890. homeassistant/components/paperless_ngx/translations/lt.json +13 -4
  1891. homeassistant/components/paperless_ngx/translations/mk.json +5 -0
  1892. homeassistant/components/paperless_ngx/translations/nl.json +9 -2
  1893. homeassistant/components/paperless_ngx/translations/pt-BR.json +5 -0
  1894. homeassistant/components/paperless_ngx/translations/pt.json +13 -4
  1895. homeassistant/components/paperless_ngx/translations/ru.json +13 -4
  1896. homeassistant/components/paperless_ngx/translations/sk.json +13 -4
  1897. homeassistant/components/paperless_ngx/translations/sv.json +13 -4
  1898. homeassistant/components/paperless_ngx/translations/tr.json +13 -4
  1899. homeassistant/components/paperless_ngx/translations/zh-Hans.json +13 -4
  1900. homeassistant/components/paperless_ngx/translations/zh-Hant.json +13 -4
  1901. homeassistant/components/paperless_ngx/update.py +90 -0
  1902. homeassistant/components/picnic/__init__.py +12 -4
  1903. homeassistant/components/picnic/services.py +3 -5
  1904. homeassistant/components/playstation_network/__init__.py +34 -0
  1905. homeassistant/components/playstation_network/config_flow.py +125 -0
  1906. homeassistant/components/playstation_network/const.py +18 -0
  1907. homeassistant/components/playstation_network/coordinator.py +74 -0
  1908. homeassistant/components/playstation_network/helpers.py +154 -0
  1909. homeassistant/components/playstation_network/icons.json +32 -0
  1910. homeassistant/components/playstation_network/manifest.json +70 -0
  1911. homeassistant/components/playstation_network/media_player.py +131 -0
  1912. homeassistant/components/playstation_network/quality_scale.yaml +72 -0
  1913. homeassistant/components/playstation_network/sensor.py +168 -0
  1914. homeassistant/components/playstation_network/strings.json +73 -0
  1915. homeassistant/components/playstation_network/translations/bg.json +12 -0
  1916. homeassistant/components/playstation_network/translations/cs.json +73 -0
  1917. homeassistant/components/playstation_network/translations/de.json +73 -0
  1918. homeassistant/components/playstation_network/translations/el.json +73 -0
  1919. homeassistant/components/playstation_network/translations/en.json +73 -0
  1920. homeassistant/components/playstation_network/translations/es.json +73 -0
  1921. homeassistant/components/playstation_network/translations/et.json +73 -0
  1922. homeassistant/components/playstation_network/translations/lt.json +44 -0
  1923. homeassistant/components/playstation_network/translations/nl.json +14 -0
  1924. homeassistant/components/playstation_network/translations/pt.json +73 -0
  1925. homeassistant/components/playstation_network/translations/sk.json +73 -0
  1926. homeassistant/components/playstation_network/translations/sv.json +32 -0
  1927. homeassistant/components/playstation_network/translations/zh-Hans.json +44 -0
  1928. homeassistant/components/playstation_network/translations/zh-Hant.json +73 -0
  1929. homeassistant/components/plex/__init__.py +1 -1
  1930. homeassistant/components/plex/const.py +0 -1
  1931. homeassistant/components/plex/icons.json +0 -3
  1932. homeassistant/components/plex/services.py +5 -24
  1933. homeassistant/components/plex/services.yaml +0 -2
  1934. homeassistant/components/plex/strings.json +0 -4
  1935. homeassistant/components/plex/translations/bg.json +0 -3
  1936. homeassistant/components/plex/translations/cs.json +0 -4
  1937. homeassistant/components/plex/translations/de.json +0 -4
  1938. homeassistant/components/plex/translations/en-GB.json +0 -4
  1939. homeassistant/components/plex/translations/en.json +0 -4
  1940. homeassistant/components/plex/translations/es.json +0 -4
  1941. homeassistant/components/plex/translations/et.json +0 -4
  1942. homeassistant/components/plex/translations/fi.json +0 -4
  1943. homeassistant/components/plex/translations/fr.json +0 -4
  1944. homeassistant/components/plex/translations/hu.json +0 -4
  1945. homeassistant/components/plex/translations/id.json +0 -4
  1946. homeassistant/components/plex/translations/it.json +0 -4
  1947. homeassistant/components/plex/translations/ja.json +0 -4
  1948. homeassistant/components/plex/translations/ko.json +0 -4
  1949. homeassistant/components/plex/translations/lt.json +0 -4
  1950. homeassistant/components/plex/translations/pt.json +0 -4
  1951. homeassistant/components/plex/translations/ru.json +0 -4
  1952. homeassistant/components/plex/translations/sk.json +0 -4
  1953. homeassistant/components/plex/translations/sl.json +0 -4
  1954. homeassistant/components/plex/translations/sv.json +0 -4
  1955. homeassistant/components/plex/translations/tr.json +0 -4
  1956. homeassistant/components/plex/translations/zh-Hans.json +0 -4
  1957. homeassistant/components/plex/translations/zh-Hant.json +0 -4
  1958. homeassistant/components/plugwise/climate.py +0 -12
  1959. homeassistant/components/plugwise/manifest.json +1 -1
  1960. homeassistant/components/plugwise/strings.json +0 -3
  1961. homeassistant/components/plugwise/translations/cs.json +0 -3
  1962. homeassistant/components/plugwise/translations/de.json +0 -3
  1963. homeassistant/components/plugwise/translations/el.json +0 -3
  1964. homeassistant/components/plugwise/translations/en-GB.json +0 -3
  1965. homeassistant/components/plugwise/translations/en.json +0 -3
  1966. homeassistant/components/plugwise/translations/es.json +0 -3
  1967. homeassistant/components/plugwise/translations/et.json +0 -3
  1968. homeassistant/components/plugwise/translations/hu.json +0 -3
  1969. homeassistant/components/plugwise/translations/ja.json +0 -3
  1970. homeassistant/components/plugwise/translations/lt.json +0 -3
  1971. homeassistant/components/plugwise/translations/nl.json +0 -3
  1972. homeassistant/components/plugwise/translations/pt.json +0 -3
  1973. homeassistant/components/plugwise/translations/ru.json +0 -3
  1974. homeassistant/components/plugwise/translations/sk.json +0 -3
  1975. homeassistant/components/plugwise/translations/sv.json +0 -3
  1976. homeassistant/components/plugwise/translations/tr.json +0 -3
  1977. homeassistant/components/plugwise/translations/zh-Hans.json +0 -3
  1978. homeassistant/components/plugwise/translations/zh-Hant.json +0 -3
  1979. homeassistant/components/point/strings.json +7 -1
  1980. homeassistant/components/point/translations/cs.json +6 -0
  1981. homeassistant/components/point/translations/de.json +6 -0
  1982. homeassistant/components/point/translations/el.json +6 -0
  1983. homeassistant/components/point/translations/en-GB.json +6 -0
  1984. homeassistant/components/point/translations/en.json +6 -0
  1985. homeassistant/components/point/translations/es.json +6 -0
  1986. homeassistant/components/point/translations/et.json +6 -0
  1987. homeassistant/components/point/translations/fr.json +10 -0
  1988. homeassistant/components/point/translations/ga.json +14 -1
  1989. homeassistant/components/point/translations/he.json +6 -0
  1990. homeassistant/components/point/translations/id.json +6 -0
  1991. homeassistant/components/point/translations/lt.json +6 -0
  1992. homeassistant/components/point/translations/mk.json +14 -1
  1993. homeassistant/components/point/translations/pt.json +6 -0
  1994. homeassistant/components/point/translations/ru.json +6 -0
  1995. homeassistant/components/point/translations/sk.json +6 -0
  1996. homeassistant/components/point/translations/sv.json +6 -0
  1997. homeassistant/components/point/translations/tr.json +6 -0
  1998. homeassistant/components/point/translations/zh-Hans.json +6 -0
  1999. homeassistant/components/point/translations/zh-Hant.json +6 -0
  2000. homeassistant/components/profiler/__init__.py +9 -9
  2001. homeassistant/components/ps4/__init__.py +2 -2
  2002. homeassistant/components/ps4/services.py +3 -2
  2003. homeassistant/components/ps4/translations/mk.json +7 -0
  2004. homeassistant/components/qbus/climate.py +4 -11
  2005. homeassistant/components/qbus/const.py +1 -0
  2006. homeassistant/components/qbus/cover.py +193 -0
  2007. homeassistant/components/qbus/entity.py +15 -3
  2008. homeassistant/components/qbus/light.py +7 -18
  2009. homeassistant/components/qbus/scene.py +1 -2
  2010. homeassistant/components/qbus/switch.py +4 -9
  2011. homeassistant/components/qbus/translations/el.json +5 -0
  2012. homeassistant/components/radarr/entity.py +1 -5
  2013. homeassistant/components/random/translations/fi.json +7 -0
  2014. homeassistant/components/recorder/__init__.py +2 -2
  2015. homeassistant/components/recorder/auto_repairs/schema.py +2 -4
  2016. homeassistant/components/recorder/history/__init__.py +5 -5
  2017. homeassistant/components/recorder/manifest.json +1 -1
  2018. homeassistant/components/recorder/pool.py +2 -2
  2019. homeassistant/components/recorder/services.py +99 -117
  2020. homeassistant/components/recorder/services.yaml +1 -1
  2021. homeassistant/components/recorder/statistics.py +1 -1
  2022. homeassistant/components/recorder/util.py +3 -4
  2023. homeassistant/components/rehlko/manifest.json +1 -1
  2024. homeassistant/components/remote_calendar/manifest.json +1 -1
  2025. homeassistant/components/reolink/__init__.py +11 -0
  2026. homeassistant/components/reolink/binary_sensor.py +1 -0
  2027. homeassistant/components/reolink/camera.py +15 -4
  2028. homeassistant/components/reolink/config_flow.py +8 -1
  2029. homeassistant/components/reolink/const.py +1 -0
  2030. homeassistant/components/reolink/diagnostics.py +2 -0
  2031. homeassistant/components/reolink/entity.py +18 -6
  2032. homeassistant/components/reolink/host.py +13 -3
  2033. homeassistant/components/reolink/icons.json +18 -0
  2034. homeassistant/components/reolink/light.py +1 -1
  2035. homeassistant/components/reolink/media_source.py +4 -4
  2036. homeassistant/components/reolink/number.py +27 -0
  2037. homeassistant/components/reolink/services.py +41 -38
  2038. homeassistant/components/reolink/strings.json +21 -6
  2039. homeassistant/components/reolink/switch.py +19 -0
  2040. homeassistant/components/reolink/translations/cs.json +24 -9
  2041. homeassistant/components/reolink/translations/de.json +24 -9
  2042. homeassistant/components/reolink/translations/el.json +26 -0
  2043. homeassistant/components/reolink/translations/en-GB.json +3 -9
  2044. homeassistant/components/reolink/translations/en.json +24 -9
  2045. homeassistant/components/reolink/translations/es.json +24 -9
  2046. homeassistant/components/reolink/translations/et.json +24 -9
  2047. homeassistant/components/reolink/translations/fi.json +0 -9
  2048. homeassistant/components/reolink/translations/fr.json +3 -9
  2049. homeassistant/components/reolink/translations/ga.json +12 -0
  2050. homeassistant/components/reolink/translations/hu.json +3 -9
  2051. homeassistant/components/reolink/translations/id.json +0 -9
  2052. homeassistant/components/reolink/translations/it.json +0 -9
  2053. homeassistant/components/reolink/translations/ja.json +3 -9
  2054. homeassistant/components/reolink/translations/ko.json +3 -9
  2055. homeassistant/components/reolink/translations/lt.json +24 -9
  2056. homeassistant/components/reolink/translations/mk.json +17 -0
  2057. homeassistant/components/reolink/translations/nl.json +0 -9
  2058. homeassistant/components/reolink/translations/pl.json +0 -9
  2059. homeassistant/components/reolink/translations/pt.json +24 -9
  2060. homeassistant/components/reolink/translations/ru.json +6 -9
  2061. homeassistant/components/reolink/translations/sk.json +24 -9
  2062. homeassistant/components/reolink/translations/sv.json +27 -12
  2063. homeassistant/components/reolink/translations/tr.json +12 -9
  2064. homeassistant/components/reolink/translations/zh-Hans.json +24 -9
  2065. homeassistant/components/reolink/translations/zh-Hant.json +24 -9
  2066. homeassistant/components/rest/__init__.py +3 -3
  2067. homeassistant/components/rest/data.py +46 -34
  2068. homeassistant/components/rflink/manifest.json +1 -1
  2069. homeassistant/components/rmvtransport/sensor.py +1 -2
  2070. homeassistant/components/russound_rio/__init__.py +36 -1
  2071. homeassistant/components/russound_rio/entity.py +20 -20
  2072. homeassistant/components/russound_rio/icons.json +12 -0
  2073. homeassistant/components/russound_rio/manifest.json +1 -1
  2074. homeassistant/components/russound_rio/media_player.py +2 -8
  2075. homeassistant/components/russound_rio/number.py +112 -0
  2076. homeassistant/components/russound_rio/strings.json +21 -0
  2077. homeassistant/components/russound_rio/switch.py +85 -0
  2078. homeassistant/components/russound_rio/translations/bg.json +10 -0
  2079. homeassistant/components/russound_rio/translations/cs.json +21 -0
  2080. homeassistant/components/russound_rio/translations/de.json +21 -0
  2081. homeassistant/components/russound_rio/translations/el.json +21 -0
  2082. homeassistant/components/russound_rio/translations/en.json +21 -0
  2083. homeassistant/components/russound_rio/translations/es.json +21 -0
  2084. homeassistant/components/russound_rio/translations/et.json +21 -0
  2085. homeassistant/components/russound_rio/translations/lt.json +21 -0
  2086. homeassistant/components/russound_rio/translations/pt.json +21 -0
  2087. homeassistant/components/russound_rio/translations/sk.json +21 -0
  2088. homeassistant/components/russound_rio/translations/sv.json +21 -0
  2089. homeassistant/components/russound_rio/translations/zh-Hans.json +21 -0
  2090. homeassistant/components/russound_rio/translations/zh-Hant.json +21 -0
  2091. homeassistant/components/samsungtv/manifest.json +1 -0
  2092. homeassistant/components/samsungtv/quality_scale.yaml +96 -0
  2093. homeassistant/components/screenlogic/__init__.py +2 -2
  2094. homeassistant/components/screenlogic/services.py +89 -84
  2095. homeassistant/components/script/helpers.py +1 -1
  2096. homeassistant/components/sensibo/translations/sv.json +8 -8
  2097. homeassistant/components/sensor/icons.json +12 -1
  2098. homeassistant/components/sensor/translations/de.json +2 -2
  2099. homeassistant/components/sensorpush_cloud/manifest.json +1 -1
  2100. homeassistant/components/senz/strings.json +7 -1
  2101. homeassistant/components/senz/translations/cs.json +6 -0
  2102. homeassistant/components/senz/translations/de.json +6 -0
  2103. homeassistant/components/senz/translations/el.json +6 -0
  2104. homeassistant/components/senz/translations/en-GB.json +6 -0
  2105. homeassistant/components/senz/translations/en.json +6 -0
  2106. homeassistant/components/senz/translations/es.json +6 -0
  2107. homeassistant/components/senz/translations/et.json +6 -0
  2108. homeassistant/components/senz/translations/fr.json +6 -0
  2109. homeassistant/components/senz/translations/ga.json +14 -1
  2110. homeassistant/components/senz/translations/he.json +6 -0
  2111. homeassistant/components/senz/translations/id.json +6 -0
  2112. homeassistant/components/senz/translations/lt.json +6 -0
  2113. homeassistant/components/senz/translations/mk.json +14 -1
  2114. homeassistant/components/senz/translations/pt.json +6 -0
  2115. homeassistant/components/senz/translations/ru.json +6 -0
  2116. homeassistant/components/senz/translations/sk.json +6 -0
  2117. homeassistant/components/senz/translations/sv.json +6 -0
  2118. homeassistant/components/senz/translations/tr.json +6 -0
  2119. homeassistant/components/senz/translations/zh-Hans.json +6 -0
  2120. homeassistant/components/senz/translations/zh-Hant.json +6 -0
  2121. homeassistant/components/seventeentrack/__init__.py +2 -2
  2122. homeassistant/components/seventeentrack/manifest.json +1 -1
  2123. homeassistant/components/seventeentrack/services.py +86 -79
  2124. homeassistant/components/shelly/manifest.json +1 -1
  2125. homeassistant/components/shelly/translations/el.json +13 -1
  2126. homeassistant/components/shopping_list/__init__.py +27 -6
  2127. homeassistant/components/shopping_list/intent.py +31 -2
  2128. homeassistant/components/smappee/strings.json +7 -1
  2129. homeassistant/components/smappee/translations/cs.json +6 -0
  2130. homeassistant/components/smappee/translations/de.json +6 -0
  2131. homeassistant/components/smappee/translations/el.json +7 -0
  2132. homeassistant/components/smappee/translations/en-GB.json +6 -0
  2133. homeassistant/components/smappee/translations/en.json +6 -0
  2134. homeassistant/components/smappee/translations/es.json +6 -0
  2135. homeassistant/components/smappee/translations/et.json +6 -0
  2136. homeassistant/components/smappee/translations/fr.json +6 -0
  2137. homeassistant/components/smappee/translations/ga.json +14 -1
  2138. homeassistant/components/smappee/translations/he.json +6 -0
  2139. homeassistant/components/smappee/translations/id.json +6 -0
  2140. homeassistant/components/smappee/translations/lt.json +6 -0
  2141. homeassistant/components/smappee/translations/mk.json +14 -1
  2142. homeassistant/components/smappee/translations/pt.json +6 -0
  2143. homeassistant/components/smappee/translations/ru.json +6 -0
  2144. homeassistant/components/smappee/translations/sk.json +6 -0
  2145. homeassistant/components/smappee/translations/sv.json +6 -0
  2146. homeassistant/components/smappee/translations/tr.json +6 -0
  2147. homeassistant/components/smappee/translations/zh-Hans.json +6 -0
  2148. homeassistant/components/smappee/translations/zh-Hant.json +6 -0
  2149. homeassistant/components/smarla/__init__.py +2 -1
  2150. homeassistant/components/smarla/const.py +1 -1
  2151. homeassistant/components/smarla/entity.py +16 -4
  2152. homeassistant/components/smarla/icons.json +5 -0
  2153. homeassistant/components/smarla/manifest.json +1 -1
  2154. homeassistant/components/smarla/number.py +63 -0
  2155. homeassistant/components/smarla/strings.json +5 -0
  2156. homeassistant/components/smarla/switch.py +3 -18
  2157. homeassistant/components/smarla/translations/cs.json +5 -0
  2158. homeassistant/components/smarla/translations/de.json +5 -0
  2159. homeassistant/components/smarla/translations/el.json +5 -0
  2160. homeassistant/components/smarla/translations/en-GB.json +5 -0
  2161. homeassistant/components/smarla/translations/en.json +5 -0
  2162. homeassistant/components/smarla/translations/es.json +5 -0
  2163. homeassistant/components/smarla/translations/et.json +5 -0
  2164. homeassistant/components/smarla/translations/ga.json +5 -0
  2165. homeassistant/components/smarla/translations/hu.json +5 -0
  2166. homeassistant/components/smarla/translations/it.json +9 -1
  2167. homeassistant/components/smarla/translations/lt.json +5 -0
  2168. homeassistant/components/smarla/translations/pt.json +5 -0
  2169. homeassistant/components/smarla/translations/sk.json +5 -0
  2170. homeassistant/components/smarla/translations/sv.json +5 -0
  2171. homeassistant/components/smarla/translations/tr.json +5 -0
  2172. homeassistant/components/smarla/translations/zh-Hans.json +5 -0
  2173. homeassistant/components/smarla/translations/zh-Hant.json +5 -0
  2174. homeassistant/components/smartthings/binary_sensor.py +8 -0
  2175. homeassistant/components/smartthings/sensor.py +10 -0
  2176. homeassistant/components/smartthings/strings.json +14 -2
  2177. homeassistant/components/smartthings/switch.py +1 -0
  2178. homeassistant/components/smartthings/translations/cs.json +12 -0
  2179. homeassistant/components/smartthings/translations/de.json +12 -0
  2180. homeassistant/components/smartthings/translations/el.json +15 -0
  2181. homeassistant/components/smartthings/translations/en-GB.json +9 -0
  2182. homeassistant/components/smartthings/translations/en.json +12 -0
  2183. homeassistant/components/smartthings/translations/es.json +12 -0
  2184. homeassistant/components/smartthings/translations/et.json +12 -0
  2185. homeassistant/components/smartthings/translations/fi.json +5 -0
  2186. homeassistant/components/smartthings/translations/fr.json +12 -0
  2187. homeassistant/components/smartthings/translations/ga.json +11 -0
  2188. homeassistant/components/smartthings/translations/he.json +6 -0
  2189. homeassistant/components/smartthings/translations/id.json +6 -0
  2190. homeassistant/components/smartthings/translations/lt.json +12 -0
  2191. homeassistant/components/smartthings/translations/mk.json +10 -0
  2192. homeassistant/components/smartthings/translations/pt.json +15 -0
  2193. homeassistant/components/smartthings/translations/ru.json +9 -0
  2194. homeassistant/components/smartthings/translations/sk.json +12 -0
  2195. homeassistant/components/smartthings/translations/sv.json +12 -0
  2196. homeassistant/components/smartthings/translations/tr.json +6 -0
  2197. homeassistant/components/smartthings/translations/zh-Hans.json +12 -0
  2198. homeassistant/components/smartthings/translations/zh-Hant.json +12 -0
  2199. homeassistant/components/smarttub/translations/mk.json +2 -1
  2200. homeassistant/components/smlight/manifest.json +1 -1
  2201. homeassistant/components/sonos/__init__.py +23 -45
  2202. homeassistant/components/sonos/alarms.py +2 -2
  2203. homeassistant/components/sonos/binary_sensor.py +8 -9
  2204. homeassistant/components/sonos/const.py +0 -1
  2205. homeassistant/components/sonos/diagnostics.py +29 -14
  2206. homeassistant/components/sonos/entity.py +10 -4
  2207. homeassistant/components/sonos/helpers.py +35 -0
  2208. homeassistant/components/sonos/household_coordinator.py +9 -4
  2209. homeassistant/components/sonos/media_player.py +49 -22
  2210. homeassistant/components/sonos/number.py +11 -6
  2211. homeassistant/components/sonos/sensor.py +10 -9
  2212. homeassistant/components/sonos/speaker.py +47 -21
  2213. homeassistant/components/sonos/strings.json +9 -0
  2214. homeassistant/components/sonos/switch.py +25 -18
  2215. homeassistant/components/sonos/translations/cs.json +3 -0
  2216. homeassistant/components/sonos/translations/de.json +10 -1
  2217. homeassistant/components/sonos/translations/el.json +3 -0
  2218. homeassistant/components/sonos/translations/en.json +9 -0
  2219. homeassistant/components/sonos/translations/es.json +9 -0
  2220. homeassistant/components/sonos/translations/et.json +9 -0
  2221. homeassistant/components/sonos/translations/pt.json +9 -0
  2222. homeassistant/components/sonos/translations/sk.json +9 -0
  2223. homeassistant/components/sonos/translations/zh-Hant.json +3 -0
  2224. homeassistant/components/spotify/strings.json +7 -1
  2225. homeassistant/components/spotify/translations/cs.json +6 -0
  2226. homeassistant/components/spotify/translations/de.json +6 -0
  2227. homeassistant/components/spotify/translations/el.json +6 -0
  2228. homeassistant/components/spotify/translations/en-GB.json +6 -0
  2229. homeassistant/components/spotify/translations/en.json +6 -0
  2230. homeassistant/components/spotify/translations/es.json +6 -0
  2231. homeassistant/components/spotify/translations/et.json +6 -0
  2232. homeassistant/components/spotify/translations/fr.json +6 -0
  2233. homeassistant/components/spotify/translations/ga.json +14 -1
  2234. homeassistant/components/spotify/translations/he.json +6 -0
  2235. homeassistant/components/spotify/translations/id.json +6 -0
  2236. homeassistant/components/spotify/translations/lt.json +6 -0
  2237. homeassistant/components/spotify/translations/mk.json +14 -1
  2238. homeassistant/components/spotify/translations/pt.json +6 -0
  2239. homeassistant/components/spotify/translations/ru.json +6 -0
  2240. homeassistant/components/spotify/translations/sk.json +6 -0
  2241. homeassistant/components/spotify/translations/sv.json +6 -0
  2242. homeassistant/components/spotify/translations/tr.json +6 -0
  2243. homeassistant/components/spotify/translations/zh-Hans.json +6 -0
  2244. homeassistant/components/spotify/translations/zh-Hant.json +6 -0
  2245. homeassistant/components/sql/manifest.json +1 -1
  2246. homeassistant/components/squeezebox/button.py +0 -5
  2247. homeassistant/components/squeezebox/entity.py +7 -0
  2248. homeassistant/components/squeezebox/media_player.py +0 -5
  2249. homeassistant/components/ssdp/server.py +1 -1
  2250. homeassistant/components/starline/sensor.py +1 -1
  2251. homeassistant/components/stream/__init__.py +5 -8
  2252. homeassistant/components/stream/core.py +4 -4
  2253. homeassistant/components/stream/fmp4utils.py +2 -2
  2254. homeassistant/components/stream/manifest.json +1 -1
  2255. homeassistant/components/sun/__init__.py +8 -5
  2256. homeassistant/components/sun/binary_sensor.py +100 -0
  2257. homeassistant/components/sun/condition.py +37 -18
  2258. homeassistant/components/sun/icons.json +9 -0
  2259. homeassistant/components/sun/sensor.py +26 -0
  2260. homeassistant/components/sun/strings.json +15 -0
  2261. homeassistant/components/sun/translations/bg.json +7 -0
  2262. homeassistant/components/sun/translations/cs.json +15 -0
  2263. homeassistant/components/sun/translations/de.json +15 -0
  2264. homeassistant/components/sun/translations/el.json +15 -0
  2265. homeassistant/components/sun/translations/en-GB.json +9 -0
  2266. homeassistant/components/sun/translations/en.json +15 -0
  2267. homeassistant/components/sun/translations/es.json +15 -0
  2268. homeassistant/components/sun/translations/et.json +15 -0
  2269. homeassistant/components/sun/translations/fr.json +9 -0
  2270. homeassistant/components/sun/translations/ga.json +19 -1
  2271. homeassistant/components/sun/translations/he.json +15 -0
  2272. homeassistant/components/sun/translations/hu.json +15 -0
  2273. homeassistant/components/sun/translations/id.json +15 -0
  2274. homeassistant/components/sun/translations/it.json +9 -0
  2275. homeassistant/components/sun/translations/lt.json +15 -0
  2276. homeassistant/components/sun/translations/nl.json +9 -0
  2277. homeassistant/components/sun/translations/pt.json +15 -0
  2278. homeassistant/components/sun/translations/ru.json +15 -0
  2279. homeassistant/components/sun/translations/sk.json +15 -0
  2280. homeassistant/components/sun/translations/sv.json +15 -0
  2281. homeassistant/components/sun/translations/tr.json +15 -0
  2282. homeassistant/components/sun/translations/zh-Hans.json +15 -0
  2283. homeassistant/components/sun/translations/zh-Hant.json +15 -0
  2284. homeassistant/components/swiss_public_transport/__init__.py +2 -2
  2285. homeassistant/components/swiss_public_transport/services.py +26 -23
  2286. homeassistant/components/switch/light.py +4 -4
  2287. homeassistant/components/switch_as_x/entity.py +3 -3
  2288. homeassistant/components/switchbot/__init__.py +6 -0
  2289. homeassistant/components/switchbot/config_flow.py +6 -2
  2290. homeassistant/components/switchbot/const.py +12 -0
  2291. homeassistant/components/switchbot/humidifier.py +84 -1
  2292. homeassistant/components/switchbot/icons.json +58 -0
  2293. homeassistant/components/switchbot/light.py +69 -25
  2294. homeassistant/components/switchbot/manifest.json +1 -1
  2295. homeassistant/components/switchbot/sensor.py +15 -1
  2296. homeassistant/components/switchbot/strings.json +54 -0
  2297. homeassistant/components/switchbot/translations/cs.json +54 -0
  2298. homeassistant/components/switchbot/translations/de.json +54 -0
  2299. homeassistant/components/switchbot/translations/el.json +53 -0
  2300. homeassistant/components/switchbot/translations/en.json +54 -0
  2301. homeassistant/components/switchbot/translations/es.json +54 -1
  2302. homeassistant/components/switchbot/translations/et.json +54 -0
  2303. homeassistant/components/switchbot/translations/nl.json +22 -1
  2304. homeassistant/components/switchbot/translations/pt.json +54 -0
  2305. homeassistant/components/switchbot/translations/ru.json +23 -0
  2306. homeassistant/components/switchbot/translations/sk.json +54 -0
  2307. homeassistant/components/switchbot/translations/zh-Hant.json +54 -0
  2308. homeassistant/components/switchbot_cloud/manifest.json +1 -1
  2309. homeassistant/components/synology_dsm/__init__.py +13 -5
  2310. homeassistant/components/synology_dsm/services.py +77 -0
  2311. homeassistant/components/system_health/__init__.py +1 -1
  2312. homeassistant/components/tado/__init__.py +2 -2
  2313. homeassistant/components/tado/services.py +17 -16
  2314. homeassistant/components/tailscale/translations/nl.json +5 -0
  2315. homeassistant/components/tedee/binary_sensor.py +17 -1
  2316. homeassistant/components/tedee/manifest.json +1 -1
  2317. homeassistant/components/telegram_bot/__init__.py +203 -916
  2318. homeassistant/components/telegram_bot/bot.py +1013 -0
  2319. homeassistant/components/telegram_bot/broadcast.py +10 -2
  2320. homeassistant/components/telegram_bot/config_flow.py +623 -0
  2321. homeassistant/components/telegram_bot/const.py +110 -0
  2322. homeassistant/components/telegram_bot/icons.json +6 -0
  2323. homeassistant/components/telegram_bot/manifest.json +2 -1
  2324. homeassistant/components/telegram_bot/polling.py +24 -15
  2325. homeassistant/components/telegram_bot/quality_scale.yaml +72 -0
  2326. homeassistant/components/telegram_bot/services.yaml +95 -0
  2327. homeassistant/components/telegram_bot/strings.json +247 -4
  2328. homeassistant/components/telegram_bot/translations/bg.json +144 -0
  2329. homeassistant/components/telegram_bot/translations/ca.json +0 -3
  2330. homeassistant/components/telegram_bot/translations/cs.json +246 -3
  2331. homeassistant/components/telegram_bot/translations/de.json +246 -3
  2332. homeassistant/components/telegram_bot/translations/el.json +247 -3
  2333. homeassistant/components/telegram_bot/translations/en-GB.json +187 -4
  2334. homeassistant/components/telegram_bot/translations/en.json +246 -3
  2335. homeassistant/components/telegram_bot/translations/es.json +246 -3
  2336. homeassistant/components/telegram_bot/translations/et.json +246 -3
  2337. homeassistant/components/telegram_bot/translations/fi.json +0 -4
  2338. homeassistant/components/telegram_bot/translations/fr.json +192 -0
  2339. homeassistant/components/telegram_bot/translations/ga.json +295 -1
  2340. homeassistant/components/telegram_bot/translations/he.json +157 -3
  2341. homeassistant/components/telegram_bot/translations/hu.json +220 -3
  2342. homeassistant/components/telegram_bot/translations/id.json +27 -4
  2343. homeassistant/components/telegram_bot/translations/it.json +149 -4
  2344. homeassistant/components/telegram_bot/translations/ja.json +0 -4
  2345. homeassistant/components/telegram_bot/translations/lt.json +246 -3
  2346. homeassistant/components/telegram_bot/translations/mk.json +56 -1
  2347. homeassistant/components/telegram_bot/translations/nl.json +218 -3
  2348. homeassistant/components/telegram_bot/translations/pt.json +246 -3
  2349. homeassistant/components/telegram_bot/translations/ru.json +240 -4
  2350. homeassistant/components/telegram_bot/translations/sk.json +246 -3
  2351. homeassistant/components/telegram_bot/translations/sv.json +236 -3
  2352. homeassistant/components/telegram_bot/translations/tr.json +246 -3
  2353. homeassistant/components/telegram_bot/translations/zh-Hans.json +246 -3
  2354. homeassistant/components/telegram_bot/translations/zh-Hant.json +246 -3
  2355. homeassistant/components/telegram_bot/webhooks.py +63 -46
  2356. homeassistant/components/template/alarm_control_panel.py +71 -15
  2357. homeassistant/components/template/button.py +7 -17
  2358. homeassistant/components/template/config.py +0 -4
  2359. homeassistant/components/template/cover.py +4 -12
  2360. homeassistant/components/template/fan.py +84 -17
  2361. homeassistant/components/template/helpers.py +1 -2
  2362. homeassistant/components/template/image.py +5 -2
  2363. homeassistant/components/template/light.py +28 -39
  2364. homeassistant/components/template/lock.py +73 -13
  2365. homeassistant/components/template/number.py +12 -22
  2366. homeassistant/components/template/select.py +9 -19
  2367. homeassistant/components/template/switch.py +10 -18
  2368. homeassistant/components/template/template_entity.py +17 -9
  2369. homeassistant/components/template/vacuum.py +80 -23
  2370. homeassistant/components/template/weather.py +21 -18
  2371. homeassistant/components/tensorflow/image_processing.py +4 -5
  2372. homeassistant/components/tensorflow/manifest.json +1 -1
  2373. homeassistant/components/tesla_fleet/climate.py +0 -6
  2374. homeassistant/components/tesla_fleet/config_flow.py +174 -14
  2375. homeassistant/components/tesla_fleet/const.py +1 -0
  2376. homeassistant/components/tesla_fleet/manifest.json +1 -1
  2377. homeassistant/components/tesla_fleet/strings.json +29 -5
  2378. homeassistant/components/tesla_fleet/translations/bg.json +2 -1
  2379. homeassistant/components/tesla_fleet/translations/ca.json +0 -3
  2380. homeassistant/components/tesla_fleet/translations/cs.json +28 -4
  2381. homeassistant/components/tesla_fleet/translations/de.json +28 -4
  2382. homeassistant/components/tesla_fleet/translations/el.json +28 -4
  2383. homeassistant/components/tesla_fleet/translations/en-GB.json +6 -6
  2384. homeassistant/components/tesla_fleet/translations/en.json +28 -4
  2385. homeassistant/components/tesla_fleet/translations/es.json +28 -4
  2386. homeassistant/components/tesla_fleet/translations/et.json +28 -4
  2387. homeassistant/components/tesla_fleet/translations/fr.json +12 -0
  2388. homeassistant/components/tesla_fleet/translations/ga.json +35 -0
  2389. homeassistant/components/tesla_fleet/translations/he.json +6 -3
  2390. homeassistant/components/tesla_fleet/translations/hu.json +0 -6
  2391. homeassistant/components/tesla_fleet/translations/id.json +7 -3
  2392. homeassistant/components/tesla_fleet/translations/it.json +0 -3
  2393. homeassistant/components/tesla_fleet/translations/ja.json +0 -6
  2394. homeassistant/components/tesla_fleet/translations/lt.json +28 -4
  2395. homeassistant/components/tesla_fleet/translations/mk.json +17 -0
  2396. homeassistant/components/tesla_fleet/translations/ne.json +9 -1
  2397. homeassistant/components/tesla_fleet/translations/nl.json +1 -3
  2398. homeassistant/components/tesla_fleet/translations/pl.json +0 -3
  2399. homeassistant/components/tesla_fleet/translations/pt.json +28 -4
  2400. homeassistant/components/tesla_fleet/translations/ru.json +6 -6
  2401. homeassistant/components/tesla_fleet/translations/sk.json +28 -4
  2402. homeassistant/components/tesla_fleet/translations/sl.json +0 -3
  2403. homeassistant/components/tesla_fleet/translations/sv.json +16 -4
  2404. homeassistant/components/tesla_fleet/translations/tr.json +28 -4
  2405. homeassistant/components/tesla_fleet/translations/zh-Hans.json +28 -4
  2406. homeassistant/components/tesla_fleet/translations/zh-Hant.json +28 -4
  2407. homeassistant/components/teslemetry/__init__.py +2 -2
  2408. homeassistant/components/teslemetry/manifest.json +1 -1
  2409. homeassistant/components/teslemetry/sensor.py +1 -2
  2410. homeassistant/components/teslemetry/services.py +3 -2
  2411. homeassistant/components/tessie/manifest.json +1 -1
  2412. homeassistant/components/thread/diagnostics.py +1 -3
  2413. homeassistant/components/threshold/translations/sv.json +2 -2
  2414. homeassistant/components/tilt_pi/__init__.py +28 -0
  2415. homeassistant/components/tilt_pi/config_flow.py +63 -0
  2416. homeassistant/components/tilt_pi/const.py +8 -0
  2417. homeassistant/components/tilt_pi/coordinator.py +53 -0
  2418. homeassistant/components/tilt_pi/entity.py +39 -0
  2419. homeassistant/components/tilt_pi/icons.json +9 -0
  2420. homeassistant/components/tilt_pi/manifest.json +10 -0
  2421. homeassistant/components/tilt_pi/quality_scale.yaml +80 -0
  2422. homeassistant/components/tilt_pi/sensor.py +93 -0
  2423. homeassistant/components/tilt_pi/strings.json +31 -0
  2424. homeassistant/components/tilt_pi/translations/bg.json +21 -0
  2425. homeassistant/components/tilt_pi/translations/cs.json +31 -0
  2426. homeassistant/components/tilt_pi/translations/de.json +31 -0
  2427. homeassistant/components/tilt_pi/translations/el.json +31 -0
  2428. homeassistant/components/tilt_pi/translations/en.json +31 -0
  2429. homeassistant/components/tilt_pi/translations/es.json +31 -0
  2430. homeassistant/components/tilt_pi/translations/et.json +31 -0
  2431. homeassistant/components/tilt_pi/translations/lt.json +31 -0
  2432. homeassistant/components/tilt_pi/translations/nl.json +21 -0
  2433. homeassistant/components/tilt_pi/translations/pt.json +31 -0
  2434. homeassistant/components/tilt_pi/translations/sk.json +31 -0
  2435. homeassistant/components/tilt_pi/translations/sv.json +28 -0
  2436. homeassistant/components/tilt_pi/translations/zh-Hans.json +31 -0
  2437. homeassistant/components/tilt_pi/translations/zh-Hant.json +31 -0
  2438. homeassistant/components/tomorrowio/translations/nl.json +1 -0
  2439. homeassistant/components/toon/strings.json +7 -1
  2440. homeassistant/components/toon/translations/cs.json +6 -0
  2441. homeassistant/components/toon/translations/de.json +6 -0
  2442. homeassistant/components/toon/translations/el.json +6 -0
  2443. homeassistant/components/toon/translations/en-GB.json +6 -0
  2444. homeassistant/components/toon/translations/en.json +6 -0
  2445. homeassistant/components/toon/translations/es.json +6 -0
  2446. homeassistant/components/toon/translations/et.json +6 -0
  2447. homeassistant/components/toon/translations/fr.json +6 -0
  2448. homeassistant/components/toon/translations/ga.json +14 -1
  2449. homeassistant/components/toon/translations/he.json +10 -0
  2450. homeassistant/components/toon/translations/id.json +6 -0
  2451. homeassistant/components/toon/translations/lt.json +6 -0
  2452. homeassistant/components/toon/translations/mk.json +12 -0
  2453. homeassistant/components/toon/translations/pt.json +6 -0
  2454. homeassistant/components/toon/translations/ru.json +6 -0
  2455. homeassistant/components/toon/translations/sk.json +6 -0
  2456. homeassistant/components/toon/translations/sv.json +6 -0
  2457. homeassistant/components/toon/translations/tr.json +6 -0
  2458. homeassistant/components/toon/translations/zh-Hans.json +6 -0
  2459. homeassistant/components/toon/translations/zh-Hant.json +6 -0
  2460. homeassistant/components/tplink/climate.py +1 -10
  2461. homeassistant/components/tplink/sensor.py +1 -2
  2462. homeassistant/components/tplink/strings.json +0 -3
  2463. homeassistant/components/tplink/translations/bg.json +0 -3
  2464. homeassistant/components/tplink/translations/cs.json +0 -3
  2465. homeassistant/components/tplink/translations/de.json +0 -3
  2466. homeassistant/components/tplink/translations/el.json +0 -3
  2467. homeassistant/components/tplink/translations/en-GB.json +0 -3
  2468. homeassistant/components/tplink/translations/en.json +0 -3
  2469. homeassistant/components/tplink/translations/es.json +0 -3
  2470. homeassistant/components/tplink/translations/et.json +0 -3
  2471. homeassistant/components/tplink/translations/ga.json +0 -3
  2472. homeassistant/components/tplink/translations/hu.json +0 -3
  2473. homeassistant/components/tplink/translations/ja.json +0 -3
  2474. homeassistant/components/tplink/translations/lt.json +0 -3
  2475. homeassistant/components/tplink/translations/pt-BR.json +0 -3
  2476. homeassistant/components/tplink/translations/pt.json +0 -3
  2477. homeassistant/components/tplink/translations/ru.json +0 -3
  2478. homeassistant/components/tplink/translations/sk.json +0 -3
  2479. homeassistant/components/tplink/translations/sv.json +0 -3
  2480. homeassistant/components/tplink/translations/tr.json +0 -3
  2481. homeassistant/components/tplink/translations/zh-Hans.json +0 -3
  2482. homeassistant/components/tplink/translations/zh-Hant.json +0 -3
  2483. homeassistant/components/tradfri/translations/el.json +3 -1
  2484. homeassistant/components/trend/binary_sensor.py +3 -0
  2485. homeassistant/components/trend/config_flow.py +3 -0
  2486. homeassistant/components/trend/manifest.json +1 -1
  2487. homeassistant/components/trend/strings.json +2 -0
  2488. homeassistant/components/trend/translations/bg.json +2 -0
  2489. homeassistant/components/trend/translations/cs.json +2 -0
  2490. homeassistant/components/trend/translations/de.json +2 -0
  2491. homeassistant/components/trend/translations/el.json +2 -0
  2492. homeassistant/components/trend/translations/en-GB.json +2 -0
  2493. homeassistant/components/trend/translations/en.json +2 -0
  2494. homeassistant/components/trend/translations/es.json +2 -0
  2495. homeassistant/components/trend/translations/et.json +2 -0
  2496. homeassistant/components/trend/translations/fr.json +2 -0
  2497. homeassistant/components/trend/translations/he.json +2 -0
  2498. homeassistant/components/trend/translations/hu.json +2 -0
  2499. homeassistant/components/trend/translations/id.json +2 -0
  2500. homeassistant/components/trend/translations/ja.json +2 -0
  2501. homeassistant/components/trend/translations/lt.json +2 -0
  2502. homeassistant/components/trend/translations/pt-BR.json +2 -0
  2503. homeassistant/components/trend/translations/pt.json +2 -0
  2504. homeassistant/components/trend/translations/ru.json +2 -0
  2505. homeassistant/components/trend/translations/sk.json +2 -0
  2506. homeassistant/components/trend/translations/sv.json +2 -0
  2507. homeassistant/components/trend/translations/tr.json +2 -0
  2508. homeassistant/components/trend/translations/zh-Hans.json +2 -0
  2509. homeassistant/components/trend/translations/zh-Hant.json +2 -0
  2510. homeassistant/components/tts/entity.py +3 -3
  2511. homeassistant/components/tts/media_source.py +2 -2
  2512. homeassistant/components/tuya/__init__.py +1 -1
  2513. homeassistant/components/tuya/translations/mk.json +5 -0
  2514. homeassistant/components/tuya/translations/nl.json +13 -1
  2515. homeassistant/components/unifi/button.py +6 -5
  2516. homeassistant/components/unifi/device_tracker.py +7 -10
  2517. homeassistant/components/unifi/entity.py +7 -6
  2518. homeassistant/components/unifi/hub/hub.py +2 -2
  2519. homeassistant/components/unifi/image.py +6 -5
  2520. homeassistant/components/unifi/sensor.py +6 -5
  2521. homeassistant/components/unifi/switch.py +11 -12
  2522. homeassistant/components/unifi/update.py +5 -6
  2523. homeassistant/components/unifiprotect/services.py +1 -0
  2524. homeassistant/components/utility_meter/strings.json +1 -1
  2525. homeassistant/components/vacuum/__init__.py +2 -15
  2526. homeassistant/components/vegehub/__init__.py +103 -0
  2527. homeassistant/components/vegehub/config_flow.py +168 -0
  2528. homeassistant/components/vegehub/const.py +9 -0
  2529. homeassistant/components/vegehub/coordinator.py +52 -0
  2530. homeassistant/components/vegehub/entity.py +28 -0
  2531. homeassistant/components/vegehub/manifest.json +12 -0
  2532. homeassistant/components/vegehub/quality_scale.yaml +84 -0
  2533. homeassistant/components/vegehub/sensor.py +94 -0
  2534. homeassistant/components/vegehub/strings.json +44 -0
  2535. homeassistant/components/vegehub/translations/bg.json +33 -0
  2536. homeassistant/components/vegehub/translations/cs.json +44 -0
  2537. homeassistant/components/vegehub/translations/de.json +44 -0
  2538. homeassistant/components/vegehub/translations/el.json +44 -0
  2539. homeassistant/components/vegehub/translations/en.json +44 -0
  2540. homeassistant/components/vegehub/translations/es.json +44 -0
  2541. homeassistant/components/vegehub/translations/et.json +44 -0
  2542. homeassistant/components/vegehub/translations/lt.json +44 -0
  2543. homeassistant/components/vegehub/translations/nl.json +23 -0
  2544. homeassistant/components/vegehub/translations/pt.json +44 -0
  2545. homeassistant/components/vegehub/translations/ru.json +30 -0
  2546. homeassistant/components/vegehub/translations/sk.json +44 -0
  2547. homeassistant/components/vegehub/translations/sv.json +40 -0
  2548. homeassistant/components/vegehub/translations/zh-Hans.json +44 -0
  2549. homeassistant/components/vegehub/translations/zh-Hant.json +44 -0
  2550. homeassistant/components/velbus/translations/el.json +8 -0
  2551. homeassistant/components/vera/manifest.json +1 -1
  2552. homeassistant/components/vulcan/translations/mk.json +11 -0
  2553. homeassistant/components/wallbox/translations/cs.json +3 -0
  2554. homeassistant/components/wallbox/translations/el.json +5 -0
  2555. homeassistant/components/wallbox/translations/lt.json +3 -0
  2556. homeassistant/components/wallbox/translations/pt.json +3 -0
  2557. homeassistant/components/wallbox/translations/zh-Hans.json +3 -0
  2558. homeassistant/components/water_heater/__init__.py +9 -2
  2559. homeassistant/components/watergate/translations/el.json +34 -0
  2560. homeassistant/components/webdav/manifest.json +1 -1
  2561. homeassistant/components/websocket_api/commands.py +67 -13
  2562. homeassistant/components/websocket_api/messages.py +13 -0
  2563. homeassistant/components/weheat/manifest.json +1 -1
  2564. homeassistant/components/weheat/strings.json +7 -1
  2565. homeassistant/components/weheat/translations/cs.json +6 -0
  2566. homeassistant/components/weheat/translations/de.json +6 -0
  2567. homeassistant/components/weheat/translations/el.json +6 -0
  2568. homeassistant/components/weheat/translations/en-GB.json +6 -0
  2569. homeassistant/components/weheat/translations/en.json +6 -0
  2570. homeassistant/components/weheat/translations/es.json +6 -0
  2571. homeassistant/components/weheat/translations/et.json +6 -0
  2572. homeassistant/components/weheat/translations/fr.json +12 -0
  2573. homeassistant/components/weheat/translations/ga.json +12 -0
  2574. homeassistant/components/weheat/translations/he.json +6 -0
  2575. homeassistant/components/weheat/translations/id.json +6 -0
  2576. homeassistant/components/weheat/translations/lt.json +6 -0
  2577. homeassistant/components/weheat/translations/mk.json +12 -0
  2578. homeassistant/components/weheat/translations/pt.json +6 -0
  2579. homeassistant/components/weheat/translations/ru.json +6 -0
  2580. homeassistant/components/weheat/translations/sk.json +6 -0
  2581. homeassistant/components/weheat/translations/sv.json +6 -0
  2582. homeassistant/components/weheat/translations/tr.json +6 -0
  2583. homeassistant/components/weheat/translations/zh-Hans.json +6 -0
  2584. homeassistant/components/weheat/translations/zh-Hant.json +6 -0
  2585. homeassistant/components/whirlpool/climate.py +1 -3
  2586. homeassistant/components/withings/strings.json +7 -1
  2587. homeassistant/components/withings/translations/cs.json +6 -0
  2588. homeassistant/components/withings/translations/de.json +6 -0
  2589. homeassistant/components/withings/translations/el.json +6 -0
  2590. homeassistant/components/withings/translations/en-GB.json +6 -0
  2591. homeassistant/components/withings/translations/en.json +6 -0
  2592. homeassistant/components/withings/translations/es.json +6 -0
  2593. homeassistant/components/withings/translations/et.json +6 -0
  2594. homeassistant/components/withings/translations/fr.json +6 -0
  2595. homeassistant/components/withings/translations/ga.json +12 -0
  2596. homeassistant/components/withings/translations/he.json +6 -0
  2597. homeassistant/components/withings/translations/id.json +6 -0
  2598. homeassistant/components/withings/translations/lt.json +6 -0
  2599. homeassistant/components/withings/translations/mk.json +14 -1
  2600. homeassistant/components/withings/translations/pt.json +6 -0
  2601. homeassistant/components/withings/translations/ru.json +6 -0
  2602. homeassistant/components/withings/translations/sk.json +6 -0
  2603. homeassistant/components/withings/translations/sv.json +6 -0
  2604. homeassistant/components/withings/translations/tr.json +6 -0
  2605. homeassistant/components/withings/translations/zh-Hans.json +6 -0
  2606. homeassistant/components/withings/translations/zh-Hant.json +6 -0
  2607. homeassistant/components/wiz/__init__.py +3 -3
  2608. homeassistant/components/wiz/manifest.json +1 -1
  2609. homeassistant/components/wyoming/assist_satellite.py +130 -22
  2610. homeassistant/components/wyoming/conversation.py +3 -3
  2611. homeassistant/components/wyoming/manifest.json +1 -1
  2612. homeassistant/components/wyoming/tts.py +106 -2
  2613. homeassistant/components/wyoming/wake_word.py +4 -2
  2614. homeassistant/components/xbox/strings.json +7 -1
  2615. homeassistant/components/xbox/translations/cs.json +6 -0
  2616. homeassistant/components/xbox/translations/de.json +6 -0
  2617. homeassistant/components/xbox/translations/el.json +6 -0
  2618. homeassistant/components/xbox/translations/en-GB.json +6 -0
  2619. homeassistant/components/xbox/translations/en.json +6 -0
  2620. homeassistant/components/xbox/translations/es.json +6 -0
  2621. homeassistant/components/xbox/translations/et.json +6 -0
  2622. homeassistant/components/xbox/translations/fr.json +6 -0
  2623. homeassistant/components/xbox/translations/ga.json +14 -1
  2624. homeassistant/components/xbox/translations/he.json +6 -0
  2625. homeassistant/components/xbox/translations/id.json +6 -0
  2626. homeassistant/components/xbox/translations/lt.json +6 -0
  2627. homeassistant/components/xbox/translations/mk.json +14 -1
  2628. homeassistant/components/xbox/translations/pt.json +6 -0
  2629. homeassistant/components/xbox/translations/ru.json +6 -0
  2630. homeassistant/components/xbox/translations/sk.json +6 -0
  2631. homeassistant/components/xbox/translations/sv.json +6 -0
  2632. homeassistant/components/xbox/translations/tr.json +6 -0
  2633. homeassistant/components/xbox/translations/zh-Hans.json +6 -0
  2634. homeassistant/components/xbox/translations/zh-Hant.json +6 -0
  2635. homeassistant/components/xiaomi_miio/fan.py +9 -3
  2636. homeassistant/components/xiaomi_miio/manifest.json +1 -1
  2637. homeassistant/components/xiaomi_miio/strings.json +13 -13
  2638. homeassistant/components/xiaomi_miio/translations/pt.json +30 -7
  2639. homeassistant/components/xiaomi_miio/translations/sv.json +30 -7
  2640. homeassistant/components/yale/strings.json +7 -1
  2641. homeassistant/components/yale/translations/cs.json +6 -0
  2642. homeassistant/components/yale/translations/de.json +6 -0
  2643. homeassistant/components/yale/translations/el.json +6 -0
  2644. homeassistant/components/yale/translations/en-GB.json +6 -0
  2645. homeassistant/components/yale/translations/en.json +6 -0
  2646. homeassistant/components/yale/translations/es.json +6 -0
  2647. homeassistant/components/yale/translations/et.json +6 -0
  2648. homeassistant/components/yale/translations/fr.json +14 -1
  2649. homeassistant/components/yale/translations/ga.json +14 -1
  2650. homeassistant/components/yale/translations/he.json +6 -0
  2651. homeassistant/components/yale/translations/id.json +6 -0
  2652. homeassistant/components/yale/translations/lt.json +6 -0
  2653. homeassistant/components/yale/translations/mk.json +14 -1
  2654. homeassistant/components/yale/translations/pt.json +6 -0
  2655. homeassistant/components/yale/translations/ru.json +6 -0
  2656. homeassistant/components/yale/translations/sk.json +6 -0
  2657. homeassistant/components/yale/translations/sv.json +6 -0
  2658. homeassistant/components/yale/translations/tr.json +6 -0
  2659. homeassistant/components/yale/translations/zh-Hans.json +6 -0
  2660. homeassistant/components/yale/translations/zh-Hant.json +6 -0
  2661. homeassistant/components/yolink/__init__.py +2 -2
  2662. homeassistant/components/yolink/manifest.json +1 -1
  2663. homeassistant/components/yolink/services.py +3 -2
  2664. homeassistant/components/yolink/strings.json +7 -1
  2665. homeassistant/components/yolink/translations/cs.json +6 -0
  2666. homeassistant/components/yolink/translations/de.json +6 -0
  2667. homeassistant/components/yolink/translations/el.json +6 -0
  2668. homeassistant/components/yolink/translations/en-GB.json +6 -0
  2669. homeassistant/components/yolink/translations/en.json +6 -0
  2670. homeassistant/components/yolink/translations/es.json +6 -0
  2671. homeassistant/components/yolink/translations/et.json +6 -0
  2672. homeassistant/components/yolink/translations/fr.json +6 -0
  2673. homeassistant/components/yolink/translations/ga.json +12 -0
  2674. homeassistant/components/yolink/translations/he.json +6 -0
  2675. homeassistant/components/yolink/translations/id.json +6 -0
  2676. homeassistant/components/yolink/translations/lt.json +6 -0
  2677. homeassistant/components/yolink/translations/mk.json +12 -0
  2678. homeassistant/components/yolink/translations/pt.json +6 -0
  2679. homeassistant/components/yolink/translations/ru.json +6 -0
  2680. homeassistant/components/yolink/translations/sk.json +6 -0
  2681. homeassistant/components/yolink/translations/sv.json +6 -0
  2682. homeassistant/components/yolink/translations/tr.json +6 -0
  2683. homeassistant/components/yolink/translations/zh-Hans.json +6 -0
  2684. homeassistant/components/yolink/translations/zh-Hant.json +6 -0
  2685. homeassistant/components/yolink/valve.py +4 -1
  2686. homeassistant/components/zha/manifest.json +7 -1
  2687. homeassistant/components/zha/strings.json +53 -3
  2688. homeassistant/components/zha/translations/cs.json +50 -0
  2689. homeassistant/components/zha/translations/de.json +50 -0
  2690. homeassistant/components/zha/translations/el.json +54 -0
  2691. homeassistant/components/zha/translations/en.json +50 -0
  2692. homeassistant/components/zha/translations/es.json +50 -0
  2693. homeassistant/components/zha/translations/et.json +50 -0
  2694. homeassistant/components/zha/translations/pt.json +53 -0
  2695. homeassistant/components/zha/translations/sk.json +50 -0
  2696. homeassistant/components/zha/translations/zh-Hant.json +50 -0
  2697. homeassistant/components/zha/websocket_api.py +2 -2
  2698. homeassistant/components/zimi/__init__.py +1 -1
  2699. homeassistant/components/zimi/light.py +1 -3
  2700. homeassistant/components/zoneminder/__init__.py +5 -25
  2701. homeassistant/components/zoneminder/const.py +3 -0
  2702. homeassistant/components/zoneminder/services.py +40 -0
  2703. homeassistant/components/zwave_js/__init__.py +2 -5
  2704. homeassistant/components/zwave_js/api.py +21 -24
  2705. homeassistant/components/zwave_js/climate.py +1 -3
  2706. homeassistant/components/zwave_js/device_trigger.py +4 -3
  2707. homeassistant/components/zwave_js/discovery.py +36 -8
  2708. homeassistant/components/zwave_js/manifest.json +1 -1
  2709. homeassistant/components/zwave_js/services.py +7 -0
  2710. homeassistant/components/zwave_js/strings.json +8 -8
  2711. homeassistant/components/zwave_js/translations/cs.json +7 -7
  2712. homeassistant/components/zwave_js/translations/de.json +7 -7
  2713. homeassistant/components/zwave_js/translations/el.json +7 -7
  2714. homeassistant/components/zwave_js/translations/en-GB.json +7 -7
  2715. homeassistant/components/zwave_js/translations/en.json +7 -7
  2716. homeassistant/components/zwave_js/translations/es.json +5 -5
  2717. homeassistant/components/zwave_js/translations/et.json +7 -7
  2718. homeassistant/components/zwave_js/translations/fi.json +0 -1
  2719. homeassistant/components/zwave_js/translations/ga.json +0 -6
  2720. homeassistant/components/zwave_js/translations/hu.json +0 -8
  2721. homeassistant/components/zwave_js/translations/ko.json +0 -3
  2722. homeassistant/components/zwave_js/translations/lt.json +7 -7
  2723. homeassistant/components/zwave_js/translations/mk.json +0 -5
  2724. homeassistant/components/zwave_js/translations/pt.json +0 -8
  2725. homeassistant/components/zwave_js/translations/ru.json +0 -8
  2726. homeassistant/components/zwave_js/translations/sk.json +6 -6
  2727. homeassistant/components/zwave_js/translations/sv.json +7 -7
  2728. homeassistant/components/zwave_js/translations/tr.json +0 -2
  2729. homeassistant/components/zwave_js/translations/zh-Hans.json +6 -6
  2730. homeassistant/components/zwave_js/translations/zh-Hant.json +7 -7
  2731. homeassistant/components/zwave_js/trigger.py +7 -35
  2732. homeassistant/components/zwave_js/triggers/event.py +29 -3
  2733. homeassistant/components/zwave_js/triggers/value_updated.py +27 -1
  2734. homeassistant/config.py +1 -2
  2735. homeassistant/const.py +4 -3
  2736. homeassistant/core.py +11 -14
  2737. homeassistant/core_config.py +5 -6
  2738. homeassistant/exceptions.py +1 -2
  2739. homeassistant/generated/config_flows.py +5 -1
  2740. homeassistant/generated/dhcp.py +81 -1
  2741. homeassistant/generated/integrations.json +36 -13
  2742. homeassistant/generated/usb.py +6 -0
  2743. homeassistant/generated/zeroconf.py +10 -0
  2744. homeassistant/helpers/area_registry.py +3 -6
  2745. homeassistant/helpers/backup.py +1 -2
  2746. homeassistant/helpers/condition.py +45 -24
  2747. homeassistant/helpers/config_entry_flow.py +3 -6
  2748. homeassistant/helpers/config_validation.py +5 -8
  2749. homeassistant/helpers/deprecation.py +3 -4
  2750. homeassistant/helpers/device_registry.py +48 -5
  2751. homeassistant/helpers/entity.py +1 -29
  2752. homeassistant/helpers/entity_registry.py +127 -13
  2753. homeassistant/helpers/json.py +1 -4
  2754. homeassistant/helpers/llm.py +17 -4
  2755. homeassistant/helpers/network.py +2 -4
  2756. homeassistant/helpers/recorder.py +5 -6
  2757. homeassistant/helpers/selector.py +72 -5
  2758. homeassistant/helpers/service.py +8 -7
  2759. homeassistant/helpers/storage.py +1 -1
  2760. homeassistant/helpers/sun.py +2 -2
  2761. homeassistant/helpers/system_info.py +19 -2
  2762. homeassistant/helpers/template.py +28 -17
  2763. homeassistant/helpers/trigger.py +257 -14
  2764. homeassistant/helpers/typing.py +1 -2
  2765. homeassistant/loader.py +11 -6
  2766. homeassistant/package_constraints.txt +25 -19
  2767. homeassistant/scripts/__init__.py +1 -3
  2768. homeassistant/scripts/check_config.py +1 -2
  2769. homeassistant/setup.py +1 -2
  2770. homeassistant/strings.json +3 -1
  2771. homeassistant/util/async_.py +1 -2
  2772. homeassistant/util/signal_type.pyi +2 -3
  2773. homeassistant/util/timeout.py +19 -5
  2774. homeassistant/util/yaml/loader.py +11 -7
  2775. {homeassistant-2025.6.2.dist-info → homeassistant-2025.7.0b0.dist-info}/METADATA +10 -19
  2776. {homeassistant-2025.6.2.dist-info → homeassistant-2025.7.0b0.dist-info}/RECORD +2781 -2604
  2777. homeassistant/backports/enum.py +0 -29
  2778. homeassistant/backports/functools.py +0 -31
  2779. homeassistant/components/devolo_home_control/devolo_multi_level_switch.py +0 -27
  2780. homeassistant/components/juicenet/device.py +0 -19
  2781. homeassistant/components/juicenet/entity.py +0 -34
  2782. homeassistant/components/juicenet/number.py +0 -92
  2783. homeassistant/components/juicenet/sensor.py +0 -117
  2784. homeassistant/components/juicenet/switch.py +0 -49
  2785. homeassistant/components/synology_dsm/service.py +0 -77
  2786. {homeassistant-2025.6.2.dist-info → homeassistant-2025.7.0b0.dist-info}/WHEEL +0 -0
  2787. {homeassistant-2025.6.2.dist-info → homeassistant-2025.7.0b0.dist-info}/entry_points.txt +0 -0
  2788. {homeassistant-2025.6.2.dist-info → homeassistant-2025.7.0b0.dist-info}/licenses/LICENSE.md +0 -0
  2789. {homeassistant-2025.6.2.dist-info → homeassistant-2025.7.0b0.dist-info}/licenses/homeassistant/backports/LICENSE.Python +0 -0
  2790. {homeassistant-2025.6.2.dist-info → homeassistant-2025.7.0b0.dist-info}/top_level.txt +0 -0
@@ -17,11 +17,9 @@
17
17
  "flow_title": "{model}",
18
18
  "progress": {
19
19
  "install_addon": "Po\u010dkajte, pros\u00edm, k\u00fdm sa dokon\u010d\u00ed in\u0161tal\u00e1cia doplnku {addon_name}. M\u00f4\u017ee to trva\u0165 nieko\u013eko min\u00fat.",
20
- "install_zigbee_flasher_addon": "Nain\u0161taluje sa doplnok Silicon Labs Flasher, \u010do m\u00f4\u017ee trva\u0165 nieko\u013eko min\u00fat.",
21
- "run_zigbee_flasher_addon": "Po\u010dkajte, pros\u00edm, k\u00fdm sa firmv\u00e9r Zigbee nain\u0161taluje do v\u00e1\u0161ho {model}, \u010do potrv\u00e1 nieko\u013eko min\u00fat. K\u00fdm sa to neskon\u010d\u00ed, nevykon\u00e1vajte \u017eiadne zmeny na va\u0161om hardv\u00e9ri alebo softv\u00e9ri.",
20
+ "install_firmware": "Po\u010dkajte, pros\u00edm, k\u00fdm sa do v\u00e1\u0161ho {model} nain\u0161taluje firmv\u00e9r {firmware_name}, \u010do potrv\u00e1 nieko\u013eko min\u00fat. K\u00fdm sa to neskon\u010d\u00ed, nevykon\u00e1vajte \u017eiadne zmeny na hardv\u00e9ri alebo softv\u00e9ri.",
22
21
  "start_addon": "Po\u010dkajte, pros\u00edm, k\u00fdm sa dokon\u010d\u00ed spustenie doplnku {addon_name}. M\u00f4\u017ee to trva\u0165 nieko\u013eko sek\u00fand.",
23
- "start_otbr_addon": "Po\u010dkajte, pros\u00edm, k\u00fdm sa dokon\u010d\u00ed spustenie doplnku {addon_name}. M\u00f4\u017ee to trva\u0165 nieko\u013eko sek\u00fand.",
24
- "uninstall_zigbee_flasher_addon": "Odstra\u0148uje sa doplnok Silicon Labs Flasher."
22
+ "start_otbr_addon": "Po\u010dkajte, pros\u00edm, k\u00fdm sa dokon\u010d\u00ed spustenie doplnku {addon_name}. M\u00f4\u017ee to trva\u0165 nieko\u013eko sek\u00fand."
25
23
  },
26
24
  "step": {
27
25
  "confirm_otbr": {
@@ -36,10 +34,6 @@
36
34
  "description": "In\u0161taluje sa doplnok OpenThread Border Router (OTBR).",
37
35
  "title": "In\u0161tal\u00e1cia doplnku OpenThread Border Router"
38
36
  },
39
- "install_zigbee_flasher_addon": {
40
- "description": "In\u0161tal\u00e1cia doplnku Silicon Labs Flasher.",
41
- "title": "In\u0161tal\u00e1cia blika\u010da"
42
- },
43
37
  "otbr_failed": {
44
38
  "description": "In\u0161tal\u00e1cia doplnku OpenThread Border Router bola ne\u00faspe\u0161n\u00e1. Uistite sa, \u017ee sa so str\u00e1nkou {model} nepok\u00fa\u0161a komunikova\u0165 \u017eiadny in\u00fd softv\u00e9r , m\u00e1te pr\u00edstup na internet a m\u00f4\u017eete nain\u0161talova\u0165 in\u00e9 doplnky, a sk\u00faste to znova. Ak probl\u00e9m pretrv\u00e1va, skontrolujte protokoly programu Supervisor.",
45
39
  "title": "Nepodarilo sa nastavi\u0165 OpenThread Border Router"
@@ -52,21 +46,9 @@
52
46
  },
53
47
  "title": "Vyberte firmv\u00e9r"
54
48
  },
55
- "run_zigbee_flasher_addon": {
56
- "description": "In\u0161tal\u00e1cia firmv\u00e9ru Zigbee. Bude to trva\u0165 asi min\u00fatu.",
57
- "title": "In\u0161tal\u00e1cia firmv\u00e9ru Zigbee"
58
- },
59
49
  "start_otbr_addon": {
60
50
  "description": "Sp\u00fa\u0161\u0165a sa doplnok OpenThread hrani\u010dn\u00fd router (OTBR).",
61
51
  "title": "Spustenie doplnku OpenThread hrani\u010dn\u00fd router"
62
- },
63
- "uninstall_zigbee_flasher_addon": {
64
- "description": "Odstr\u00e1nenie doplnku Silicon Labs Flasher.",
65
- "title": "Odstr\u00e1nenie blika\u010da"
66
- },
67
- "zigbee_flasher_failed": {
68
- "description": "Proces in\u0161tal\u00e1cie firmv\u00e9ru Zigbee bol ne\u00faspe\u0161n\u00fd. Uistite sa, \u017ee sa so zariaden\u00edm {model} nepok\u00fa\u0161a komunikova\u0165 \u017eiadny in\u00fd softv\u00e9r, a sk\u00faste to znova.",
69
- "title": "In\u0161tal\u00e1cia Zigbee zlyhala"
70
52
  }
71
53
  }
72
54
  },
@@ -95,11 +77,9 @@
95
77
  },
96
78
  "progress": {
97
79
  "install_addon": "Po\u010dkajte, pros\u00edm, k\u00fdm sa dokon\u010d\u00ed in\u0161tal\u00e1cia doplnku {addon_name}. M\u00f4\u017ee to trva\u0165 nieko\u013eko min\u00fat.",
98
- "install_zigbee_flasher_addon": "Nain\u0161taluje sa doplnok Silicon Labs Flasher, \u010do m\u00f4\u017ee trva\u0165 nieko\u013eko min\u00fat.",
99
- "run_zigbee_flasher_addon": "Po\u010dkajte, pros\u00edm, k\u00fdm sa firmv\u00e9r Zigbee nain\u0161taluje do v\u00e1\u0161ho {model}, \u010do potrv\u00e1 nieko\u013eko min\u00fat. K\u00fdm sa to neskon\u010d\u00ed, nevykon\u00e1vajte \u017eiadne zmeny na va\u0161om hardv\u00e9ri alebo softv\u00e9ri.",
80
+ "install_firmware": "Po\u010dkajte, pros\u00edm, k\u00fdm sa do v\u00e1\u0161ho {model} nain\u0161taluje firmv\u00e9r {firmware_name}, \u010do potrv\u00e1 nieko\u013eko min\u00fat. K\u00fdm sa to neskon\u010d\u00ed, nevykon\u00e1vajte \u017eiadne zmeny na hardv\u00e9ri alebo softv\u00e9ri.",
100
81
  "start_addon": "Po\u010dkajte, pros\u00edm, k\u00fdm sa dokon\u010d\u00ed spustenie doplnku {addon_name}. M\u00f4\u017ee to trva\u0165 nieko\u013eko sek\u00fand.",
101
- "start_otbr_addon": "Po\u010dkajte, pros\u00edm, k\u00fdm sa dokon\u010d\u00ed spustenie doplnku {addon_name}. M\u00f4\u017ee to trva\u0165 nieko\u013eko sek\u00fand.",
102
- "uninstall_zigbee_flasher_addon": "Odstra\u0148uje sa doplnok Silicon Labs Flasher."
82
+ "start_otbr_addon": "Po\u010dkajte, pros\u00edm, k\u00fdm sa dokon\u010d\u00ed spustenie doplnku {addon_name}. M\u00f4\u017ee to trva\u0165 nieko\u013eko sek\u00fand."
103
83
  },
104
84
  "step": {
105
85
  "addon_installed_other_device": {
@@ -125,9 +105,6 @@
125
105
  "description": "Spustite zmenu kan\u00e1la pre siete Zigbee a Thread.\n\nPozn\u00e1mka: ide o pokro\u010dil\u00fa oper\u00e1ciu, ktor\u00e1 m\u00f4\u017ee sp\u00f4sobi\u0165 nefunk\u010dnos\u0165 siet\u00ed Thread a Zigbee, ak je nov\u00fd kan\u00e1l pre\u0165a\u017een\u00fd. V z\u00e1vislosti od existuj\u00facich podmienok v sieti sa mnoh\u00e9 va\u0161e zariadenia nemusia presun\u00fa\u0165 na nov\u00fd kan\u00e1l a bud\u00fa si vy\u017eadova\u0165 op\u00e4tovn\u00e9 pripojenie, k\u00fdm za\u010dn\u00fa op\u00e4\u0165 fungova\u0165. Pou\u017e\u00edvajte s opatrnos\u0165ou.\n\nPo v\u00fdbere mo\u017enosti **Odosla\u0165** sa zmena kan\u00e1la spust\u00ed potichu na pozad\u00ed a skon\u010d\u00ed sa po nieko\u013ek\u00fdch min\u00fatach.",
126
106
  "title": "Rekonfigur\u00e1cia podpory multiprotokolov IEEE 802.15.4"
127
107
  },
128
- "configure_flasher_addon": {
129
- "title": "In\u0161tal\u00e1cia doplnku Silicon Labs Flasher sa za\u010dala"
130
- },
131
108
  "confirm_otbr": {
132
109
  "description": "Va\u0161a str\u00e1nka {model} je teraz OpenThread Border Router a zobraz\u00ed sa v integr\u00e1cii Thread.",
133
110
  "title": "Nastavenie hrani\u010dn\u00e9ho smerova\u010da OpenThread je dokon\u010den\u00e9"
@@ -139,17 +116,10 @@
139
116
  "install_addon": {
140
117
  "title": "In\u0161tal\u00e1cia doplnku Silicon Labs Multiprotocol sa za\u010dala"
141
118
  },
142
- "install_flasher_addon": {
143
- "title": "In\u0161tal\u00e1cia doplnku Silicon Labs Flasher sa za\u010dala"
144
- },
145
119
  "install_otbr_addon": {
146
120
  "description": "In\u0161taluje sa doplnok OpenThread Border Router (OTBR).",
147
121
  "title": "In\u0161tal\u00e1cia doplnku OpenThread Border Router"
148
122
  },
149
- "install_zigbee_flasher_addon": {
150
- "description": "In\u0161tal\u00e1cia doplnku Silicon Labs Flasher.",
151
- "title": "In\u0161tal\u00e1cia blika\u010da"
152
- },
153
123
  "notify_channel_change": {
154
124
  "description": "Bola spusten\u00e1 zmena kan\u00e1la Zigbee a Thread a skon\u010d\u00ed sa o {delay_minutes} min\u00fat.",
155
125
  "title": "Iniciovan\u00e1 zmena kan\u00e1la"
@@ -173,17 +143,9 @@
173
143
  "reconfigure_addon": {
174
144
  "title": "Rekonfigur\u00e1cia podpory multiprotokolov IEEE 802.15.4"
175
145
  },
176
- "run_zigbee_flasher_addon": {
177
- "description": "In\u0161tal\u00e1cia firmv\u00e9ru Zigbee. Bude to trva\u0165 asi min\u00fatu.",
178
- "title": "In\u0161tal\u00e1cia firmv\u00e9ru Zigbee"
179
- },
180
146
  "start_addon": {
181
147
  "title": "Sp\u00fa\u0161\u0165a sa doplnok Silicon Labs Multiprotocol."
182
148
  },
183
- "start_flasher_addon": {
184
- "description": "Firmv\u00e9r Zigbee sa teraz in\u0161taluje. Bude to trva\u0165 nieko\u013eko min\u00fat.",
185
- "title": "In\u0161tal\u00e1cia firmv\u00e9ru"
186
- },
187
149
  "start_otbr_addon": {
188
150
  "description": "Sp\u00fa\u0161\u0165a sa doplnok OpenThread hrani\u010dn\u00fd router (OTBR).",
189
151
  "title": "Spustenie doplnku OpenThread hrani\u010dn\u00fd router"
@@ -194,10 +156,6 @@
194
156
  },
195
157
  "description": "Vypnut\u00edm podpory viacer\u00fdch protokolov sa r\u00e1dio v\u00e1\u0161ho {hardware_name} vr\u00e1ti sp\u00e4\u0165 na firmv\u00e9r iba Zigbee a vypne sa podpora vl\u00e1kien poskytovan\u00e1 {hardware_name}. Va\u0161e zariadenia Thread bud\u00fa na\u010falej fungova\u0165 len vtedy, ak budete ma\u0165 v bl\u00edzkosti in\u00fd Thread border router. \n\n In\u0161tal\u00e1cia firmv\u00e9ru Zigbee a obnovenie z\u00e1lohy bude trva\u0165 nieko\u013eko min\u00fat.",
196
158
  "title": "Odstr\u00e1nenie podpory r\u00e1diov\u00e9ho multiprotokolu IEEE 802.15.4"
197
- },
198
- "zigbee_flasher_failed": {
199
- "description": "Proces in\u0161tal\u00e1cie firmv\u00e9ru Zigbee bol ne\u00faspe\u0161n\u00fd. Uistite sa, \u017ee sa so zariaden\u00edm {model} nepok\u00fa\u0161a komunikova\u0165 \u017eiadny in\u00fd softv\u00e9r, a sk\u00faste to znova.",
200
- "title": "In\u0161tal\u00e1cia Zigbee zlyhala"
201
159
  }
202
160
  }
203
161
  }
@@ -17,11 +17,9 @@
17
17
  "flow_title": "{model}",
18
18
  "progress": {
19
19
  "install_addon": "Var god v\u00e4nta medan installationen av till\u00e4gget {addon_name} slutf\u00f6rs. Detta kan ta flera minuter.",
20
- "install_zigbee_flasher_addon": "Silicon Labs Flasher-till\u00e4gget installeras, detta kan ta n\u00e5gra minuter.",
21
- "run_zigbee_flasher_addon": "V\u00e4nta medan Zigbee firmware installeras p\u00e5 din {model}, detta kommer att ta n\u00e5gra minuter. G\u00f6r inga \u00e4ndringar i din maskinvara eller programvara f\u00f6rr\u00e4n detta \u00e4r klart.",
20
+ "install_firmware": "V\u00e4nta medan {firmware_name}-firmwaren installeras p\u00e5 din {model}. Detta tar n\u00e5gra minuter. G\u00f6r inga \u00e4ndringar i din h\u00e5rdvara eller programvara f\u00f6rr\u00e4n detta \u00e4r klart.",
22
21
  "start_addon": "Var god v\u00e4nta medan {addon_name}-till\u00e4gget startar. Detta kan ta n\u00e5gra sekunder.",
23
- "start_otbr_addon": "Var god v\u00e4nta medan {addon_name}-till\u00e4gget startar. Detta kan ta n\u00e5gra sekunder.",
24
- "uninstall_zigbee_flasher_addon": "Silicon Labs Flasher-till\u00e4gget tas bort."
22
+ "start_otbr_addon": "Var god v\u00e4nta medan {addon_name}-till\u00e4gget startar. Detta kan ta n\u00e5gra sekunder."
25
23
  },
26
24
  "step": {
27
25
  "confirm_otbr": {
@@ -36,10 +34,6 @@
36
34
  "description": "Till\u00e4gget f\u00f6r OTBR (OpenThread-gr\u00e4nsrouter) h\u00e5ller p\u00e5 att installeras.",
37
35
  "title": "Installera till\u00e4gget OpenThread-gr\u00e4nsrouter"
38
36
  },
39
- "install_zigbee_flasher_addon": {
40
- "description": "Installerar till\u00e4gget Silicon Labs Flasher.",
41
- "title": "Installerar flashare"
42
- },
43
37
  "otbr_failed": {
44
38
  "description": "Installationen av till\u00e4gget OpenThread-gr\u00e4nsrouter misslyckades. Kontrollera att ingen annan programvara f\u00f6rs\u00f6ker kommunicera med {model}, att du har tillg\u00e5ng till internet och kan installera andra till\u00e4gg och f\u00f6rs\u00f6k igen. Kontrollera Supervisor-loggarna om problemet kvarst\u00e5r.",
45
39
  "title": "Det gick inte att konfigurera OpenThread Border Router"
@@ -52,21 +46,9 @@
52
46
  },
53
47
  "title": "V\u00e4lj din firmware"
54
48
  },
55
- "run_zigbee_flasher_addon": {
56
- "description": "Installerar Zigbee firmware. Detta tar ungef\u00e4r en minut.",
57
- "title": "Installerar Zigbee firmware"
58
- },
59
49
  "start_otbr_addon": {
60
50
  "description": "Till\u00e4gget OpenThread-gr\u00e4nsrouter (OTBR) startar nu.",
61
51
  "title": "Startar till\u00e4gget OpenThread-gr\u00e4nsrouter"
62
- },
63
- "uninstall_zigbee_flasher_addon": {
64
- "description": "Tar bort Silicon Labs Flasher-till\u00e4gget.",
65
- "title": "Tar bort flashare"
66
- },
67
- "zigbee_flasher_failed": {
68
- "description": "Installationsprocessen f\u00f6r Zigbee-firmwaren misslyckades. Se till att ingen annan programvara f\u00f6rs\u00f6ker kommunicera med {model} och f\u00f6rs\u00f6k igen.",
69
- "title": "Zigbee-installationen misslyckades"
70
52
  }
71
53
  }
72
54
  },
@@ -95,11 +77,9 @@
95
77
  },
96
78
  "progress": {
97
79
  "install_addon": "Var god v\u00e4nta medan installationen av till\u00e4gget {addon_name} slutf\u00f6rs. Detta kan ta flera minuter.",
98
- "install_zigbee_flasher_addon": "Silicon Labs Flasher-till\u00e4gget installeras, detta kan ta n\u00e5gra minuter.",
99
- "run_zigbee_flasher_addon": "V\u00e4nta medan Zigbee firmware installeras p\u00e5 din {model}, detta kommer att ta n\u00e5gra minuter. G\u00f6r inga \u00e4ndringar i din maskinvara eller programvara f\u00f6rr\u00e4n detta \u00e4r klart.",
80
+ "install_firmware": "V\u00e4nta medan {firmware_name}-firmwaren installeras p\u00e5 din {model}. Detta tar n\u00e5gra minuter. G\u00f6r inga \u00e4ndringar i din h\u00e5rdvara eller programvara f\u00f6rr\u00e4n detta \u00e4r klart.",
100
81
  "start_addon": "Var god v\u00e4nta medan {addon_name}-till\u00e4gget startar. Detta kan ta n\u00e5gra sekunder.",
101
- "start_otbr_addon": "Var god v\u00e4nta medan {addon_name}-till\u00e4gget startar. Detta kan ta n\u00e5gra sekunder.",
102
- "uninstall_zigbee_flasher_addon": "Silicon Labs Flasher-till\u00e4gget tas bort."
82
+ "start_otbr_addon": "Var god v\u00e4nta medan {addon_name}-till\u00e4gget startar. Detta kan ta n\u00e5gra sekunder."
103
83
  },
104
84
  "step": {
105
85
  "addon_installed_other_device": {
@@ -125,9 +105,6 @@
125
105
  "description": "Starta ett kanalbyte f\u00f6r dina Zigbee- och Thread-n\u00e4tverk.\n\nObs: detta \u00e4r en avancerad \u00e5tg\u00e4rd som kan leda till att dina Thread- och Zigbee-n\u00e4tverk inte fungerar om den nya kanalen \u00e4r \u00f6verbelastad. Beroende p\u00e5 befintliga n\u00e4tverksf\u00f6rh\u00e5llanden kanske m\u00e5nga av dina enheter inte migrerar till den nya kanalen och kommer att beh\u00f6va \u00e5teranslutas innan de b\u00f6rjar fungera igen. Anv\u00e4nd med f\u00f6rsiktighet.\n\nN\u00e4r du har valt **Bekr\u00e4fta** startar kanalbytet tyst i bakgrunden och avslutas efter n\u00e5gra minuter.",
126
106
  "title": "Omkonfigurera st\u00f6d f\u00f6r multiprotokoll p\u00e5 IEEE 802.15.4 radio"
127
107
  },
128
- "configure_flasher_addon": {
129
- "title": "Installationen av till\u00e4gget Silicon Labs Flasher har startat"
130
- },
131
108
  "confirm_otbr": {
132
109
  "description": "Din {model} \u00e4r nu en OpenThread-gr\u00e4nsrouter och kommer att synas i Thread-integrationen.",
133
110
  "title": "Installationen av OpenThread-gr\u00e4nsrouter \u00e4r klar"
@@ -139,17 +116,10 @@
139
116
  "install_addon": {
140
117
  "title": "Installationen av till\u00e4gget f\u00f6r Silicon Labs Multiprotokoll har startat"
141
118
  },
142
- "install_flasher_addon": {
143
- "title": "Installationen av till\u00e4gget Silicon Labs Flasher har startat"
144
- },
145
119
  "install_otbr_addon": {
146
120
  "description": "Till\u00e4gget f\u00f6r OTBR (OpenThread-gr\u00e4nsrouter) h\u00e5ller p\u00e5 att installeras.",
147
121
  "title": "Installera till\u00e4gget OpenThread-gr\u00e4nsrouter"
148
122
  },
149
- "install_zigbee_flasher_addon": {
150
- "description": "Installerar till\u00e4gget Silicon Labs Flasher.",
151
- "title": "Installerar flashare"
152
- },
153
123
  "notify_channel_change": {
154
124
  "description": "Kanalbyte f\u00f6r Zigbee och Thread \u00e4r p\u00e5b\u00f6rjat och kommer vara klart om {delay_minutes} minuter.",
155
125
  "title": "Kanalbyte p\u00e5b\u00f6rjat"
@@ -173,17 +143,9 @@
173
143
  "reconfigure_addon": {
174
144
  "title": "Omkonfigurera st\u00f6d f\u00f6r multiprotokoll p\u00e5 IEEE 802.15.4 radio"
175
145
  },
176
- "run_zigbee_flasher_addon": {
177
- "description": "Installerar Zigbee firmware. Detta tar ungef\u00e4r en minut.",
178
- "title": "Installerar Zigbee firmware"
179
- },
180
146
  "start_addon": {
181
147
  "title": "Silicon Labs Multiprotokoll till\u00e4gg startar"
182
148
  },
183
- "start_flasher_addon": {
184
- "description": "Firmware f\u00f6r Zigbee h\u00e5ller nu p\u00e5 att installeras. Detta tar n\u00e5gra minuter.",
185
- "title": "Installerar firmware"
186
- },
187
149
  "start_otbr_addon": {
188
150
  "description": "Till\u00e4gget OpenThread-gr\u00e4nsrouter (OTBR) startar nu.",
189
151
  "title": "Startar till\u00e4gget OpenThread-gr\u00e4nsrouter"
@@ -194,10 +156,6 @@
194
156
  },
195
157
  "description": "Inaktivering av multiprotokollst\u00f6d \u00e5terst\u00e4ller din {hardware_name}s radio till enbart Zigbee-firmware och inaktiverar Thread-st\u00f6det som tillhandah\u00e5lls av {hardware_name}. Dina Thread-enheter kommer endast att forts\u00e4tta fungera om du har en annan Thread-gr\u00e4nsrouter i n\u00e4rheten.\n\nDet tar n\u00e5gra minuter att installera Zigbee-firmware och \u00e5terst\u00e4lla en s\u00e4kerhetskopia.",
196
158
  "title": "Ta bort st\u00f6d f\u00f6r multiprotokoll p\u00e5 IEEE 802.15.4 radio."
197
- },
198
- "zigbee_flasher_failed": {
199
- "description": "Installationsprocessen f\u00f6r Zigbee-firmwaren misslyckades. Se till att ingen annan programvara f\u00f6rs\u00f6ker kommunicera med {model} och f\u00f6rs\u00f6k igen.",
200
- "title": "Zigbee-installationen misslyckades"
201
159
  }
202
160
  }
203
161
  }
@@ -17,11 +17,8 @@
17
17
  "flow_title": "{model}",
18
18
  "progress": {
19
19
  "install_addon": "{addon_name} eklentisinin kurulumu tamamlanana kadar l\u00fctfen bekleyin. Bu birka\u00e7 dakika s\u00fcrebilir.",
20
- "install_zigbee_flasher_addon": "Silicon Labs Flasher eklentisi kuruldu, bu i\u015flem birka\u00e7 dakika s\u00fcrebilir.",
21
- "run_zigbee_flasher_addon": "L\u00fctfen Zigbee ayg\u0131t yaz\u0131l\u0131m\u0131 {model} cihaz\u0131n\u0131za y\u00fcklenirken bekleyin, bu birka\u00e7 dakika s\u00fcrecektir. Bu tamamlanana kadar donan\u0131m\u0131n\u0131zda veya yaz\u0131l\u0131m\u0131n\u0131zda herhangi bir de\u011fi\u015fiklik yapmay\u0131n.",
22
20
  "start_addon": "{addon_name} eklentisinin ba\u015flat\u0131lmas\u0131 tamamlanana kadar l\u00fctfen bekleyin. Bu birka\u00e7 saniye s\u00fcrebilir.",
23
- "start_otbr_addon": "{addon_name} eklentisinin ba\u015flat\u0131lmas\u0131 tamamlanana kadar l\u00fctfen bekleyin. Bu birka\u00e7 saniye s\u00fcrebilir.",
24
- "uninstall_zigbee_flasher_addon": "Silicon Labs Flasher eklentisi kald\u0131r\u0131l\u0131yor."
21
+ "start_otbr_addon": "{addon_name} eklentisinin ba\u015flat\u0131lmas\u0131 tamamlanana kadar l\u00fctfen bekleyin. Bu birka\u00e7 saniye s\u00fcrebilir."
25
22
  },
26
23
  "step": {
27
24
  "confirm_otbr": {
@@ -36,10 +33,6 @@
36
33
  "description": "OpenThread Border Router (OTBR) eklentisi kuruluyor.",
37
34
  "title": "OpenThread Border Router eklentisini y\u00fckle"
38
35
  },
39
- "install_zigbee_flasher_addon": {
40
- "description": "Silicon Labs Flasher eklentisini y\u00fckl\u00fcyorum.",
41
- "title": "Flasher kurulumu"
42
- },
43
36
  "otbr_failed": {
44
37
  "description": "OpenThread Border Router eklentisi kurulumu ba\u015far\u0131s\u0131z oldu. Ba\u015fka hi\u00e7bir yaz\u0131l\u0131m\u0131n {model} ile ileti\u015fim kurmaya \u00e7al\u0131\u015fmad\u0131\u011f\u0131ndan, \u0130nternete eri\u015fiminiz oldu\u011fundan ve di\u011fer eklentileri kurabildi\u011finizden emin olun ve tekrar deneyin. Sorun devam ederse Supervisor g\u00fcnl\u00fcklerini kontrol edin.",
45
38
  "title": "OpenThread Border Router kurulumu ba\u015far\u0131s\u0131z oldu"
@@ -52,21 +45,9 @@
52
45
  },
53
46
  "title": "\u00dcr\u00fcn yaz\u0131l\u0131m\u0131n\u0131z\u0131 se\u00e7in"
54
47
  },
55
- "run_zigbee_flasher_addon": {
56
- "description": "Zigbee ayg\u0131t yaz\u0131l\u0131m\u0131n\u0131 y\u00fckleme. Bu yakla\u015f\u0131k bir dakika s\u00fcrecektir.",
57
- "title": "Zigbee ayg\u0131t yaz\u0131l\u0131m\u0131n\u0131 y\u00fckleme"
58
- },
59
48
  "start_otbr_addon": {
60
49
  "description": "OpenThread Border Router (OTBR) eklentisi art\u0131k ba\u015fl\u0131yor.",
61
50
  "title": "OpenThread Border Router eklentisini ba\u015flatma"
62
- },
63
- "uninstall_zigbee_flasher_addon": {
64
- "description": "Silicon Labs Flasher eklentisi kald\u0131r\u0131l\u0131yor.",
65
- "title": "Fla\u015f\u00f6r\u00fcn \u00e7\u0131kar\u0131lmas\u0131"
66
- },
67
- "zigbee_flasher_failed": {
68
- "description": "Zigbee ayg\u0131t yaz\u0131l\u0131m\u0131 y\u00fckleme i\u015flemi ba\u015far\u0131s\u0131z oldu. Ba\u015fka hi\u00e7bir yaz\u0131l\u0131m\u0131n {model} ile ileti\u015fim kurmaya \u00e7al\u0131\u015fmad\u0131\u011f\u0131ndan emin olun ve tekrar deneyin.",
69
- "title": "Zigbee kurulumu ba\u015far\u0131s\u0131z oldu"
70
51
  }
71
52
  }
72
53
  },
@@ -90,11 +71,8 @@
90
71
  },
91
72
  "progress": {
92
73
  "install_addon": "{addon_name} eklentisinin kurulumu tamamlanana kadar l\u00fctfen bekleyin. Bu birka\u00e7 dakika s\u00fcrebilir.",
93
- "install_zigbee_flasher_addon": "Silicon Labs Flasher eklentisi kuruldu, bu i\u015flem birka\u00e7 dakika s\u00fcrebilir.",
94
- "run_zigbee_flasher_addon": "L\u00fctfen Zigbee ayg\u0131t yaz\u0131l\u0131m\u0131 {model} cihaz\u0131n\u0131za y\u00fcklenirken bekleyin, bu birka\u00e7 dakika s\u00fcrecektir. Bu tamamlanana kadar donan\u0131m\u0131n\u0131zda veya yaz\u0131l\u0131m\u0131n\u0131zda herhangi bir de\u011fi\u015fiklik yapmay\u0131n.",
95
74
  "start_addon": "{addon_name} eklentisinin ba\u015flat\u0131lmas\u0131 tamamlanana kadar l\u00fctfen bekleyin. Bu birka\u00e7 saniye s\u00fcrebilir.",
96
- "start_otbr_addon": "{addon_name} eklentisinin ba\u015flat\u0131lmas\u0131 tamamlanana kadar l\u00fctfen bekleyin. Bu birka\u00e7 saniye s\u00fcrebilir.",
97
- "uninstall_zigbee_flasher_addon": "Silicon Labs Flasher eklentisi kald\u0131r\u0131l\u0131yor."
75
+ "start_otbr_addon": "{addon_name} eklentisinin ba\u015flat\u0131lmas\u0131 tamamlanana kadar l\u00fctfen bekleyin. Bu birka\u00e7 saniye s\u00fcrebilir."
98
76
  },
99
77
  "step": {
100
78
  "addon_installed_other_device": {
@@ -120,9 +98,6 @@
120
98
  "description": "Zigbee ve Thread a\u011flar\u0131n\u0131z i\u00e7in bir kanal de\u011fi\u015fikli\u011fi ba\u015flat\u0131n. \n\n Not: Bu geli\u015fmi\u015f bir i\u015flemdir ve yeni kanal t\u0131kan\u0131rsa Thread ve Zigbee a\u011flar\u0131n\u0131z\u0131 \u00e7al\u0131\u015fmaz hale getirebilir. Mevcut a\u011f ko\u015fullar\u0131na ba\u011fl\u0131 olarak, cihazlar\u0131n\u0131z\u0131n \u00e7o\u011fu yeni kanala ta\u015f\u0131nmayabilir ve tekrar \u00e7al\u0131\u015fmaya ba\u015flamadan \u00f6nce yeniden kat\u0131lmalar\u0131 gerekebilir. Dikkatle kullan\u0131n. \n\n **G\u00f6nder**'i se\u00e7ti\u011finizde, kanal de\u011fi\u015fikli\u011fi arka planda sessizce ba\u015flar ve birka\u00e7 dakika sonra tamamlan\u0131r.",
121
99
  "title": "IEEE 802.15.4 radyo \u00e7oklu protokol deste\u011fini yeniden yap\u0131land\u0131r\u0131n"
122
100
  },
123
- "configure_flasher_addon": {
124
- "title": "Silicon Labs Flasher eklenti kurulumu ba\u015flad\u0131"
125
- },
126
101
  "confirm_otbr": {
127
102
  "description": "{model} modeliniz art\u0131k bir OpenThread Border Router'd\u0131r ve \u00e7\u0131kt\u0131\u011f\u0131n\u0131zda Thread entegrasyonunda g\u00f6r\u00fcnecektir.",
128
103
  "title": "OpenThread Border Router kurulumu tamamland\u0131"
@@ -134,17 +109,10 @@
134
109
  "install_addon": {
135
110
  "title": "Silicon Labs Multiprotocol eklenti kurulumu ba\u015flad\u0131"
136
111
  },
137
- "install_flasher_addon": {
138
- "title": "Silicon Labs Flasher eklenti kurulumu ba\u015flad\u0131"
139
- },
140
112
  "install_otbr_addon": {
141
113
  "description": "OpenThread Border Router (OTBR) eklentisi kuruluyor.",
142
114
  "title": "OpenThread Border Router eklentisini y\u00fckle"
143
115
  },
144
- "install_zigbee_flasher_addon": {
145
- "description": "Silicon Labs Flasher eklentisini y\u00fckl\u00fcyorum.",
146
- "title": "Flasher kurulumu"
147
- },
148
116
  "notify_channel_change": {
149
117
  "description": "Bir Zigbee ve Konu kanal\u0131 de\u011fi\u015fikli\u011fi ba\u015flat\u0131ld\u0131 ve {delay_minutes} dakika i\u00e7inde tamamlanacak.",
150
118
  "title": "Kanal de\u011fi\u015fikli\u011fi ba\u015flat\u0131ld\u0131"
@@ -168,17 +136,9 @@
168
136
  "reconfigure_addon": {
169
137
  "title": "IEEE 802.15.4 radyo \u00e7oklu protokol deste\u011fini yeniden yap\u0131land\u0131r\u0131n"
170
138
  },
171
- "run_zigbee_flasher_addon": {
172
- "description": "Zigbee ayg\u0131t yaz\u0131l\u0131m\u0131n\u0131 y\u00fckleme. Bu yakla\u015f\u0131k bir dakika s\u00fcrecektir.",
173
- "title": "Zigbee ayg\u0131t yaz\u0131l\u0131m\u0131n\u0131 y\u00fckleme"
174
- },
175
139
  "start_addon": {
176
140
  "title": "Silicon Labs Multiprotocol eklentisi ba\u015fl\u0131yor."
177
141
  },
178
- "start_flasher_addon": {
179
- "description": "Zigbee \u00fcr\u00fcn yaz\u0131l\u0131m\u0131 \u015fu anda kuruluyor. Bu birka\u00e7 dakika s\u00fcrecek.",
180
- "title": "\u00dcr\u00fcn yaz\u0131l\u0131m\u0131n\u0131 y\u00fckleme"
181
- },
182
142
  "start_otbr_addon": {
183
143
  "description": "OpenThread Border Router (OTBR) eklentisi art\u0131k ba\u015fl\u0131yor.",
184
144
  "title": "OpenThread Border Router eklentisini ba\u015flatma"
@@ -189,10 +149,6 @@
189
149
  },
190
150
  "description": "\u00c7oklu protokol deste\u011finin devre d\u0131\u015f\u0131 b\u0131rak\u0131lmas\u0131, {hardware_name} cihaz\u0131n\u0131z\u0131n radyosunu yaln\u0131zca Zigbee bellenimine geri d\u00f6nd\u00fcrecek ve {hardware_name} taraf\u0131ndan sa\u011flanan Thread deste\u011fini devre d\u0131\u015f\u0131 b\u0131rakacakt\u0131r. Thread cihazlar\u0131n\u0131z yaln\u0131zca yak\u0131nlarda ba\u015fka bir Thread border y\u00f6nlendiriciniz varsa \u00e7al\u0131\u015fmaya devam edecektir. \n\n Zigbee \u00fcr\u00fcn yaz\u0131l\u0131m\u0131n\u0131 y\u00fcklemek ve bir yede\u011fi geri y\u00fcklemek birka\u00e7 dakika s\u00fcrecektir.",
191
151
  "title": "IEEE 802.15.4 radyo \u00e7oklu protokol deste\u011fini kald\u0131r\u0131n"
192
- },
193
- "zigbee_flasher_failed": {
194
- "description": "Zigbee ayg\u0131t yaz\u0131l\u0131m\u0131 y\u00fckleme i\u015flemi ba\u015far\u0131s\u0131z oldu. Ba\u015fka hi\u00e7bir yaz\u0131l\u0131m\u0131n {model} ile ileti\u015fim kurmaya \u00e7al\u0131\u015fmad\u0131\u011f\u0131ndan emin olun ve tekrar deneyin.",
195
- "title": "Zigbee kurulumu ba\u015far\u0131s\u0131z oldu"
196
152
  }
197
153
  }
198
154
  }
@@ -56,9 +56,6 @@
56
56
  "start_addon": {
57
57
  "title": "\u0417\u0430\u043f\u0443\u0441\u043a\u0430\u0454\u0442\u044c\u0441\u044f \u0434\u043e\u043f\u043e\u0432\u043d\u0435\u043d\u043d\u044f Silicon Labs Multiprotocol."
58
58
  },
59
- "start_flasher_addon": {
60
- "title": "\u0412\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044f \u043f\u0440\u043e\u0448\u0438\u0432\u043a\u0438"
61
- },
62
59
  "uninstall_addon": {
63
60
  "data": {
64
61
  "disable_multi_pan": "\u0412\u0438\u043c\u043a\u043d\u0443\u0442\u0438 \u0431\u0430\u0433\u0430\u0442\u043e\u043f\u0440\u043e\u0442\u043e\u043a\u043e\u043b\u044c\u043d\u0443 \u043f\u0456\u0434\u0442\u0440\u0438\u043c\u043a\u0443"
@@ -17,11 +17,9 @@
17
17
  "flow_title": "{model}",
18
18
  "progress": {
19
19
  "install_addon": "\u8bf7\u7b49\u5f85\u201c{addon_name}\u201d\u52a0\u8f7d\u9879\u5b89\u88c5\u5b8c\u6210\u3002\u8fd9\u53ef\u80fd\u9700\u8981\u51e0\u5206\u949f\u65f6\u95f4\u3002",
20
- "install_zigbee_flasher_addon": "Silicon Labs Flasher \u63d2\u4ef6\u5df2\u5b89\u88c5\uff0c\u8fd9\u53ef\u80fd\u9700\u8981\u51e0\u5206\u949f\u3002",
21
- "run_zigbee_flasher_addon": "\u8bf7\u7b49\u5f85 Zigbee \u56fa\u4ef6\u5b89\u88c5\u5230\u60a8\u7684\u201c{model}\u201d\uff0c\u8fd9\u5c06\u9700\u8981\u51e0\u5206\u949f\u3002\u5728\u6b64\u8fc7\u7a0b\u5b8c\u6210\u4e4b\u524d\uff0c\u8bf7\u52ff\u5bf9\u60a8\u7684\u786c\u4ef6\u6216\u8f6f\u4ef6\u8fdb\u884c\u4efb\u4f55\u66f4\u6539\u3002",
20
+ "install_firmware": "\u8bf7\u7b49\u5f85 {firmware_name} \u56fa\u4ef6\u5b89\u88c5\u5230\u60a8\u7684 {model} \u4e0a\uff0c\u8fd9\u5c06\u9700\u8981\u51e0\u5206\u949f\u65f6\u95f4\u3002\u5728\u6b64\u8fc7\u7a0b\u5b8c\u6210\u4e4b\u524d\uff0c\u8bf7\u52ff\u5bf9\u60a8\u7684\u786c\u4ef6\u6216\u8f6f\u4ef6\u8fdb\u884c\u4efb\u4f55\u66f4\u6539\u3002",
22
21
  "start_addon": "\u8bf7\u7b49\u5f85\u201c{addon_name}\u201d\u52a0\u8f7d\u9879\u542f\u52a8\u5b8c\u6210\u3002\u8fd9\u53ef\u80fd\u9700\u8981\u51e0\u79d2\u65f6\u95f4\u3002",
23
- "start_otbr_addon": "\u8bf7\u7b49\u5f85\u201c{addon_name}\u201d\u52a0\u8f7d\u9879\u542f\u52a8\u5b8c\u6210\u3002\u8fd9\u53ef\u80fd\u9700\u8981\u51e0\u79d2\u65f6\u95f4\u3002",
24
- "uninstall_zigbee_flasher_addon": "\u6b63\u5728\u79fb\u9664 Silicon Labs Flasher \u63d2\u4ef6\u3002"
22
+ "start_otbr_addon": "\u8bf7\u7b49\u5f85\u201c{addon_name}\u201d\u52a0\u8f7d\u9879\u542f\u52a8\u5b8c\u6210\u3002\u8fd9\u53ef\u80fd\u9700\u8981\u51e0\u79d2\u65f6\u95f4\u3002"
25
23
  },
26
24
  "step": {
27
25
  "confirm_otbr": {
@@ -36,10 +34,6 @@
36
34
  "description": "OpenThread \u8fb9\u754c\u8def\u7531\u5668 (OTBR) \u52a0\u8f7d\u9879\u6b63\u88ab\u5b89\u88c5\u3002",
37
35
  "title": "\u6b63\u5728\u5b89\u88c5 OpenThread \u8fb9\u754c\u8def\u7531\u5668\u52a0\u8f7d\u9879"
38
36
  },
39
- "install_zigbee_flasher_addon": {
40
- "description": "\u6b63\u5728\u5b89\u88c5 Silicon Labs \u5237\u65b0\u7a0b\u5e8f\u52a0\u8f7d\u9879\u3002",
41
- "title": "\u6b63\u5728\u5b89\u88c5\u5237\u65b0\u7a0b\u5e8f"
42
- },
43
37
  "otbr_failed": {
44
38
  "description": "OpenThread \u8fb9\u754c\u8def\u7531\u5668\u52a0\u8f7d\u9879\u5b89\u88c5\u5931\u8d25\u3002\u8bf7\u786e\u4fdd\u6ca1\u6709\u5176\u5b83\u8f6f\u4ef6\u6b63\u5728\u5c1d\u8bd5\u4e0e\u201c{model}\u201d\u901a\u4fe1\uff0c\u5e76\u786e\u4fdd\u60a8\u53ef\u4ee5\u8bbf\u95ee\u4e92\u8054\u7f51\u4e14\u53ef\u4ee5\u5b89\u88c5\u5176\u5b83\u52a0\u8f7d\u9879\uff0c\u7136\u540e\u518d\u6b21\u91cd\u8bd5\u3002\u5982\u679c\u95ee\u9898\u4ecd\u7136\u5b58\u5728\uff0c\u8bf7\u68c0\u67e5 Supervisor \u65e5\u5fd7\u3002",
45
39
  "title": "\u8bbe\u7f6e OpenThread \u8fb9\u754c\u8def\u7531\u5668\u5931\u8d25"
@@ -52,21 +46,9 @@
52
46
  },
53
47
  "title": "\u9009\u53d6\u60a8\u7684\u56fa\u4ef6"
54
48
  },
55
- "run_zigbee_flasher_addon": {
56
- "description": "\u6b63\u5728\u5b89\u88c5 Zigbee \u56fa\u4ef6\u3002\u8fd9\u5927\u7ea6\u9700\u8981\u4e00\u5206\u949f\u3002",
57
- "title": "\u6b63\u5728\u5b89\u88c5 Zigbee \u56fa\u4ef6"
58
- },
59
49
  "start_otbr_addon": {
60
50
  "description": "OpenThread \u8fb9\u754c\u8def\u7531\u5668 (OTBR) \u52a0\u8f7d\u9879\u6b63\u5728\u542f\u52a8\u4e2d\u3002",
61
51
  "title": "\u6b63\u5728\u542f\u52a8 OpenThread \u8fb9\u754c\u8def\u7531\u5668\u52a0\u8f7d\u9879"
62
- },
63
- "uninstall_zigbee_flasher_addon": {
64
- "description": "\u6b63\u5728\u79fb\u9664 Silicon Labs \u5237\u65b0\u7a0b\u5e8f\u52a0\u8f7d\u9879\u3002",
65
- "title": "\u6b63\u5728\u79fb\u9664\u5237\u65b0\u7a0b\u5e8f"
66
- },
67
- "zigbee_flasher_failed": {
68
- "description": "Zigbee \u56fa\u4ef6\u5b89\u88c5\u8fc7\u7a0b\u5931\u8d25\u3002\u8bf7\u786e\u4fdd\u6ca1\u6709\u5176\u5b83\u8f6f\u4ef6\u6b63\u5728\u5c1d\u8bd5\u4e0e\u201c{model}\u201d\u901a\u4fe1\uff0c\u7136\u540e\u518d\u6b21\u91cd\u8bd5\u3002",
69
- "title": "Zigbee \u5b89\u88c5\u5931\u8d25"
70
52
  }
71
53
  }
72
54
  },
@@ -95,11 +77,9 @@
95
77
  },
96
78
  "progress": {
97
79
  "install_addon": "\u8bf7\u7b49\u5f85\u201c{addon_name}\u201d\u52a0\u8f7d\u9879\u5b89\u88c5\u5b8c\u6210\u3002\u8fd9\u53ef\u80fd\u9700\u8981\u51e0\u5206\u949f\u65f6\u95f4\u3002",
98
- "install_zigbee_flasher_addon": "Silicon Labs Flasher \u63d2\u4ef6\u5df2\u5b89\u88c5\uff0c\u8fd9\u53ef\u80fd\u9700\u8981\u51e0\u5206\u949f\u3002",
99
- "run_zigbee_flasher_addon": "\u8bf7\u7b49\u5f85 Zigbee \u56fa\u4ef6\u5b89\u88c5\u5230\u60a8\u7684\u201c{model}\u201d\uff0c\u8fd9\u5c06\u9700\u8981\u51e0\u5206\u949f\u3002\u5728\u6b64\u8fc7\u7a0b\u5b8c\u6210\u4e4b\u524d\uff0c\u8bf7\u52ff\u5bf9\u60a8\u7684\u786c\u4ef6\u6216\u8f6f\u4ef6\u8fdb\u884c\u4efb\u4f55\u66f4\u6539\u3002",
80
+ "install_firmware": "\u8bf7\u7b49\u5f85 {firmware_name} \u56fa\u4ef6\u5b89\u88c5\u5230\u60a8\u7684 {model} \u4e0a\uff0c\u8fd9\u5c06\u9700\u8981\u51e0\u5206\u949f\u65f6\u95f4\u3002\u5728\u6b64\u8fc7\u7a0b\u5b8c\u6210\u4e4b\u524d\uff0c\u8bf7\u52ff\u5bf9\u60a8\u7684\u786c\u4ef6\u6216\u8f6f\u4ef6\u8fdb\u884c\u4efb\u4f55\u66f4\u6539\u3002",
100
81
  "start_addon": "\u8bf7\u7b49\u5f85\u201c{addon_name}\u201d\u52a0\u8f7d\u9879\u542f\u52a8\u5b8c\u6210\u3002\u8fd9\u53ef\u80fd\u9700\u8981\u51e0\u79d2\u65f6\u95f4\u3002",
101
- "start_otbr_addon": "\u8bf7\u7b49\u5f85\u201c{addon_name}\u201d\u52a0\u8f7d\u9879\u542f\u52a8\u5b8c\u6210\u3002\u8fd9\u53ef\u80fd\u9700\u8981\u51e0\u79d2\u65f6\u95f4\u3002",
102
- "uninstall_zigbee_flasher_addon": "\u6b63\u5728\u79fb\u9664 Silicon Labs Flasher \u63d2\u4ef6\u3002"
82
+ "start_otbr_addon": "\u8bf7\u7b49\u5f85\u201c{addon_name}\u201d\u52a0\u8f7d\u9879\u542f\u52a8\u5b8c\u6210\u3002\u8fd9\u53ef\u80fd\u9700\u8981\u51e0\u79d2\u65f6\u95f4\u3002"
103
83
  },
104
84
  "step": {
105
85
  "addon_installed_other_device": {
@@ -125,9 +105,6 @@
125
105
  "description": "\u5f00\u59cb\u66f4\u6539 Zigbee \u548c Thread \u7f51\u7edc\u7684\u4fe1\u9053\u3002 \n\n\u6ce8\u610f\uff1a\u8fd9\u662f\u4e00\u9879\u9ad8\u7ea7\u64cd\u4f5c\uff0c\u5982\u679c\u65b0\u4fe1\u9053\u62e5\u585e\uff0c\u53ef\u80fd\u4f1a\u5bfc\u81f4\u60a8\u7684 Thread \u548c Zigbee \u7f51\u7edc\u65e0\u6cd5\u8fd0\u884c\u3002\u6839\u636e\u73b0\u6709\u7f51\u7edc\u6761\u4ef6\uff0c\u60a8\u7684\u8bb8\u591a\u8bbe\u5907\u53ef\u80fd\u65e0\u6cd5\u8fc1\u79fb\u5230\u65b0\u4fe1\u9053\uff0c\u9700\u8981\u91cd\u65b0\u52a0\u5165\u624d\u80fd\u518d\u6b21\u5f00\u59cb\u5de5\u4f5c\u3002\u8c28\u614e\u4f7f\u7528\u3002 \n\n\u9009\u62e9\u201c\u63d0\u4ea4\u201d\u540e\uff0c\u4fe1\u9053\u66f4\u6539\u4f1a\u5728\u540e\u53f0\u5b89\u9759\u5730\u5f00\u59cb\uff0c\u5e76\u5728\u51e0\u5206\u949f\u540e\u5b8c\u6210\u3002",
126
106
  "title": "\u91cd\u65b0\u914d\u7f6e IEEE 802.15.4 \u65e0\u7ebf\u7535\u591a\u534f\u8bae\u652f\u6301"
127
107
  },
128
- "configure_flasher_addon": {
129
- "title": "\u5df2\u5f00\u59cb\u5b89\u88c5 Silicon Labs Flasher \u52a0\u8f7d\u9879"
130
- },
131
108
  "confirm_otbr": {
132
109
  "description": "\u60a8\u7684\u201c{model}\u201d\u73b0\u5728\u662f OpenThread \u8fb9\u754c\u8def\u7531\u5668\uff0c\u5b83\u5c06\u51fa\u73b0\u5728 Thread \u96c6\u6210\u4e2d\u3002",
133
110
  "title": "OpenThread \u8fb9\u754c\u8def\u7531\u5668\u8bbe\u7f6e\u5b8c\u6210"
@@ -139,17 +116,10 @@
139
116
  "install_addon": {
140
117
  "title": "Silicon Labs \u591a\u534f\u8bae\u52a0\u8f7d\u9879\u5b89\u88c5\u5df2\u5f00\u59cb"
141
118
  },
142
- "install_flasher_addon": {
143
- "title": "\u5df2\u5f00\u59cb\u5b89\u88c5 Silicon Labs Flasher \u52a0\u8f7d\u9879"
144
- },
145
119
  "install_otbr_addon": {
146
120
  "description": "OpenThread \u8fb9\u754c\u8def\u7531\u5668 (OTBR) \u52a0\u8f7d\u9879\u6b63\u88ab\u5b89\u88c5\u3002",
147
121
  "title": "\u6b63\u5728\u5b89\u88c5 OpenThread \u8fb9\u754c\u8def\u7531\u5668\u52a0\u8f7d\u9879"
148
122
  },
149
- "install_zigbee_flasher_addon": {
150
- "description": "\u6b63\u5728\u5b89\u88c5 Silicon Labs \u5237\u65b0\u7a0b\u5e8f\u52a0\u8f7d\u9879\u3002",
151
- "title": "\u6b63\u5728\u5b89\u88c5\u5237\u65b0\u7a0b\u5e8f"
152
- },
153
123
  "notify_channel_change": {
154
124
  "description": "Zigbee \u548c Thread \u4fe1\u9053\u53d8\u66f4\u5df2\u542f\u52a8\uff0c\u9884\u8ba1\u5728 {delay_minutes} \u5206\u949f\u540e\u5b8c\u6210\u3002",
155
125
  "title": "\u5df2\u542f\u52a8\u4fe1\u9053\u66f4\u6539"
@@ -173,17 +143,9 @@
173
143
  "reconfigure_addon": {
174
144
  "title": "\u91cd\u65b0\u914d\u7f6e IEEE 802.15.4 \u65e0\u7ebf\u7535\u591a\u534f\u8bae\u652f\u6301"
175
145
  },
176
- "run_zigbee_flasher_addon": {
177
- "description": "\u6b63\u5728\u5b89\u88c5 Zigbee \u56fa\u4ef6\u3002\u8fd9\u5927\u7ea6\u9700\u8981\u4e00\u5206\u949f\u3002",
178
- "title": "\u6b63\u5728\u5b89\u88c5 Zigbee \u56fa\u4ef6"
179
- },
180
146
  "start_addon": {
181
147
  "title": "\u6b63\u5728\u542f\u52a8 Silicon Labs Multiprotocol \u52a0\u8f7d\u9879\u3002"
182
148
  },
183
- "start_flasher_addon": {
184
- "description": "\u6b63\u5728\u5b89\u88c5 Zigbee \u56fa\u4ef6\u3002\u8fd9\u9700\u8981\u4e00\u4e9b\u65f6\u95f4\u3002",
185
- "title": "\u5b89\u88c5\u56fa\u4ef6"
186
- },
187
149
  "start_otbr_addon": {
188
150
  "description": "OpenThread \u8fb9\u754c\u8def\u7531\u5668 (OTBR) \u52a0\u8f7d\u9879\u6b63\u5728\u542f\u52a8\u4e2d\u3002",
189
151
  "title": "\u6b63\u5728\u542f\u52a8 OpenThread \u8fb9\u754c\u8def\u7531\u5668\u52a0\u8f7d\u9879"
@@ -194,10 +156,6 @@
194
156
  },
195
157
  "description": "\u7981\u7528\u591a\u534f\u8bae\u652f\u6301\u5c06\u4f7f\u60a8\u201c{hardware_name}\u201d\u7684\u65e0\u7ebf\u7535\u6062\u590d\u4e3a\u4ec5\u652f\u6301 Zigbee \u7684\u56fa\u4ef6\uff0c\u5e76\u7981\u7528\u201c{hardware_name}\u201d\u63d0\u4f9b\u7684 Thread \u652f\u6301\u3002\u4ec5\u5f53\u60a8\u9644\u8fd1\u6709\u53e6\u4e00\u4e2a Thread \u8fb9\u754c\u8def\u7531\u5668\u65f6\uff0c\u60a8\u7684 Thread \u8bbe\u5907\u624d\u4f1a\u7ee7\u7eed\u5de5\u4f5c\u3002\n\n\u5b89\u88c5 Zigbee \u56fa\u4ef6\u548c\u6062\u590d\u5907\u4efd\u9700\u8981\u51e0\u5206\u949f\u65f6\u95f4\u3002",
196
158
  "title": "\u79fb\u9664 IEEE 802.15.4 \u65e0\u7ebf\u7535\u591a\u534f\u8bae\u652f\u6301\u3002"
197
- },
198
- "zigbee_flasher_failed": {
199
- "description": "Zigbee \u56fa\u4ef6\u5b89\u88c5\u8fc7\u7a0b\u5931\u8d25\u3002\u8bf7\u786e\u4fdd\u6ca1\u6709\u5176\u5b83\u8f6f\u4ef6\u6b63\u5728\u5c1d\u8bd5\u4e0e\u201c{model}\u201d\u901a\u4fe1\uff0c\u7136\u540e\u518d\u6b21\u91cd\u8bd5\u3002",
200
- "title": "Zigbee \u5b89\u88c5\u5931\u8d25"
201
159
  }
202
160
  }
203
161
  }
@@ -17,11 +17,9 @@
17
17
  "flow_title": "{model}",
18
18
  "progress": {
19
19
  "install_addon": "\u8acb\u7b49\u5f85{addon_name}\u9644\u52a0\u5143\u4ef6\u5b89\u88dd\u5b8c\u6210\u3002\u9019\u53ef\u80fd\u9700\u8981\u5e7e\u5206\u9418\u7684\u6642\u9593\u3002",
20
- "install_zigbee_flasher_addon": "Silicon Labs \u5237\u5beb\u5668\u9644\u52a0\u5143\u4ef6\u5df2\u5b89\u88dd\u3001\u53ef\u80fd\u9700\u8981\u5e7e\u5206\u9418\u6642\u9593\u3002",
21
- "run_zigbee_flasher_addon": "\u8acb\u7a0d\u5f8c Zigbee \u97cc\u9ad4\u6b63\u5b89\u88dd\u81f3 {model}\u3001\u9019\u5c07\u9700\u8981\u5e7e\u5206\u9418\u6642\u9593\u3002\u5728\u6b64\u904e\u7a0b\u5b8c\u6210\u524d\uff0c\u8acb\u4e0d\u8981\u5c0d\u786c\u9ad4\u6216\u8edf\u9ad4\u9032\u884c\u4efb\u4f55\u8b8a\u66f4\u3002",
20
+ "install_firmware": "\u8acb\u7a0d\u5f8c {firmware_name} \u97cc\u9ad4\u6b63\u5b89\u88dd\u81f3 {model}\u3001\u9019\u5c07\u9700\u8981\u5e7e\u5206\u9418\u6642\u9593\u3002\u5728\u6b64\u904e\u7a0b\u5b8c\u6210\u524d\uff0c\u8acb\u4e0d\u8981\u5c0d\u786c\u9ad4\u6216\u8edf\u9ad4\u9032\u884c\u4efb\u4f55\u8b8a\u66f4\u3002",
22
21
  "start_addon": "{addon_name}\u9644\u52a0\u5143\u4ef6\u555f\u52d5\u5b8c\u6210\uff0c\u8acb\u7a0d\u5019\u3002\u9019\u53ef\u80fd\u9700\u8981\u5e7e\u79d2\u9418\u3002",
23
- "start_otbr_addon": "{addon_name}\u9644\u52a0\u5143\u4ef6\u555f\u52d5\u5b8c\u6210\uff0c\u8acb\u7a0d\u5019\u3002\u9019\u53ef\u80fd\u9700\u8981\u5e7e\u79d2\u9418\u3002",
24
- "uninstall_zigbee_flasher_addon": "Silicon Labs \u5237\u5beb\u9644\u52a0\u5143\u4ef6\u5df2\u79fb\u9664\u3002"
22
+ "start_otbr_addon": "{addon_name}\u9644\u52a0\u5143\u4ef6\u555f\u52d5\u5b8c\u6210\uff0c\u8acb\u7a0d\u5019\u3002\u9019\u53ef\u80fd\u9700\u8981\u5e7e\u79d2\u9418\u3002"
25
23
  },
26
24
  "step": {
27
25
  "confirm_otbr": {
@@ -36,10 +34,6 @@
36
34
  "description": "OpenThread \u908a\u754c\u8def\u7531\u5668\uff08OTBR\uff09\u9644\u52a0\u5143\u4ef6\u5df2\u5b89\u88dd\u3002",
37
35
  "title": "\u6b63\u5728\u5b89\u88dd OpenThread \u908a\u754c\u8def\u7531\u5668\u9644\u52a0\u5143\u4ef6"
38
36
  },
39
- "install_zigbee_flasher_addon": {
40
- "description": "\u6b63\u5728\u5b89\u88dd Silicon Labs \u5237\u5beb\u5668\u9644\u52a0\u5143\u4ef6\u3002",
41
- "title": "\u6b63\u5728\u5b89\u88dd\u5237\u5beb\u5668"
42
- },
43
37
  "otbr_failed": {
44
38
  "description": "OpenThread \u908a\u5883\u8def\u7531\u5668\u9644\u52a0\u5143\u4ef6\u5b89\u88dd\u904e\u7a0b\u5931\u6557\u3002\u8acb\u78ba\u5b9a\u6c92\u6709\u5176\u4ed6\u8edf\u9ad4\u6b63\u8a66\u5716\u8207 {model} \u9032\u884c\u901a\u8a0a\u3001\u5df2\u7d93\u5177\u5099\u7db2\u969b\u7db2\u8def\u9023\u7dda\u4e26\u80fd\u5b89\u88dd\u5176\u4ed6\u9644\u52a0\u5143\u4ef6\u4e26\u518d\u8a66\u4e00\u6b21\u3002\u5047\u5982\u9084\u662f\u6709\u5176\u4ed6\u554f\u984c\u7522\u751f\u3001\u8acb\u53c3\u95b1 Supervisor \u65e5\u8a8c\u3002",
45
39
  "title": "\u8a2d\u5b9a OpenThread \u908a\u754c\u8def\u7531\u5668\u5931\u6557"
@@ -52,21 +46,9 @@
52
46
  },
53
47
  "title": "\u9078\u64c7\u97cc\u9ad4"
54
48
  },
55
- "run_zigbee_flasher_addon": {
56
- "description": "\u6b63\u5728\u5b89\u88dd Zigbee \u97cc\u9ad4\u3001\u53ef\u80fd\u9700\u8981\u5e7e\u5206\u9418\u6642\u9593\u3002",
57
- "title": "\u6b63\u5728\u5b89\u88dd Zigbee \u97cc\u9ad4"
58
- },
59
49
  "start_otbr_addon": {
60
50
  "description": "OpenThread \u908a\u754c\u8def\u7531\u5668\uff08OTBR\uff09\u9644\u52a0\u5143\u4ef6\u555f\u52d5\u4e2d\u3002",
61
51
  "title": "\u6b63\u5728\u555f\u52d5 OpenThread \u908a\u754c\u8def\u7531\u5668\u9644\u52a0\u5143\u4ef6"
62
- },
63
- "uninstall_zigbee_flasher_addon": {
64
- "description": "\u6b63\u5728\u79fb\u9664 Silicon Labs \u5237\u5beb\u5668\u9644\u52a0\u5143\u4ef6\u3002",
65
- "title": "\u79fb\u9664\u5237\u5beb\u5668"
66
- },
67
- "zigbee_flasher_failed": {
68
- "description": "Zigbee \u97cc\u9ad4\u5b89\u88dd\u904e\u7a0b\u5931\u6557\u3002\u8acb\u78ba\u5b9a\u6c92\u6709\u5176\u4ed6\u8edf\u9ad4\u6b63\u8a66\u5716\u8207 {model} \u9032\u884c\u901a\u8a0a\u5f8c\u518d\u8a66\u4e00\u6b21\u3002",
69
- "title": "Zigbee \u5b89\u88dd\u5931\u6557"
70
52
  }
71
53
  }
72
54
  },
@@ -95,11 +77,9 @@
95
77
  },
96
78
  "progress": {
97
79
  "install_addon": "\u8acb\u7b49\u5f85{addon_name}\u9644\u52a0\u5143\u4ef6\u5b89\u88dd\u5b8c\u6210\u3002\u9019\u53ef\u80fd\u9700\u8981\u5e7e\u5206\u9418\u7684\u6642\u9593\u3002",
98
- "install_zigbee_flasher_addon": "Silicon Labs \u5237\u5beb\u5668\u9644\u52a0\u5143\u4ef6\u5df2\u5b89\u88dd\u3001\u53ef\u80fd\u9700\u8981\u5e7e\u5206\u9418\u6642\u9593\u3002",
99
- "run_zigbee_flasher_addon": "\u8acb\u7a0d\u5f8c Zigbee \u97cc\u9ad4\u6b63\u5b89\u88dd\u81f3 {model}\u3001\u9019\u5c07\u9700\u8981\u5e7e\u5206\u9418\u6642\u9593\u3002\u5728\u6b64\u904e\u7a0b\u5b8c\u6210\u524d\uff0c\u8acb\u4e0d\u8981\u5c0d\u786c\u9ad4\u6216\u8edf\u9ad4\u9032\u884c\u4efb\u4f55\u8b8a\u66f4\u3002",
80
+ "install_firmware": "\u8acb\u7a0d\u5f8c {firmware_name} \u97cc\u9ad4\u6b63\u5b89\u88dd\u81f3 {model}\u3001\u9019\u5c07\u9700\u8981\u5e7e\u5206\u9418\u6642\u9593\u3002\u5728\u6b64\u904e\u7a0b\u5b8c\u6210\u524d\uff0c\u8acb\u4e0d\u8981\u5c0d\u786c\u9ad4\u6216\u8edf\u9ad4\u9032\u884c\u4efb\u4f55\u8b8a\u66f4\u3002",
100
81
  "start_addon": "{addon_name}\u9644\u52a0\u5143\u4ef6\u555f\u52d5\u5b8c\u6210\uff0c\u8acb\u7a0d\u5019\u3002\u9019\u53ef\u80fd\u9700\u8981\u5e7e\u79d2\u9418\u3002",
101
- "start_otbr_addon": "{addon_name}\u9644\u52a0\u5143\u4ef6\u555f\u52d5\u5b8c\u6210\uff0c\u8acb\u7a0d\u5019\u3002\u9019\u53ef\u80fd\u9700\u8981\u5e7e\u79d2\u9418\u3002",
102
- "uninstall_zigbee_flasher_addon": "Silicon Labs \u5237\u5beb\u9644\u52a0\u5143\u4ef6\u5df2\u79fb\u9664\u3002"
82
+ "start_otbr_addon": "{addon_name}\u9644\u52a0\u5143\u4ef6\u555f\u52d5\u5b8c\u6210\uff0c\u8acb\u7a0d\u5019\u3002\u9019\u53ef\u80fd\u9700\u8981\u5e7e\u79d2\u9418\u3002"
103
83
  },
104
84
  "step": {
105
85
  "addon_installed_other_device": {
@@ -125,9 +105,6 @@
125
105
  "description": "\u958b\u59cb Zigbee Thread \u7db2\u8def\u983b\u9053\u8b8a\u66f4\u3002\n\n\u6ce8\u610f\uff1a\u6b64\u52d5\u4f5c\u70ba\u9032\u968e\u64cd\u4f5c\uff0c\u4e26\u5047\u5982\u65b0\u983b\u9053\u64c1\u64e0\u3001\u53ef\u80fd\u6703\u5c0e\u81f4 Thread \u8207 Zigbee \u7db2\u8def\u7121\u6cd5\u904b\u4f5c\u3002\u6839\u64da\u73fe\u6709\u7684\u7db2\u8def\u689d\u4ef6\u3001\u8a31\u591a\u88dd\u7f6e\u53ef\u80fd\u7121\u6cd5\u9077\u79fb\u81f3\u65b0\u983b\u9053\u3001\u4e26\u4e14\u5728\u91cd\u65b0\u958b\u59cb\u5de5\u4f5c\u524d\u3001\u9700\u8981\u91cd\u65b0\u52a0\u5165\u3002\u8acb\u5c0f\u5fc3\u4f7f\u7528\u3002\n\n\u4e00\u65e6\u9078\u64c7 **\u50b3\u9001**\u3001\u983b\u9053\u8b8a\u66f4\u5c07\u6703\u65bc\u80cc\u666f\u5b89\u975c\u57f7\u884c\u3001\u4e26\u65bc\u5e7e\u5206\u9418\u5f8c\u5b8c\u6210\u3002",
126
106
  "title": "\u91cd\u65b0\u8a2d\u5b9a IEEE 802.15.4 \u7121\u7dda\u96fb\u591a\u5354\u5b9a\u652f\u63f4"
127
107
  },
128
- "configure_flasher_addon": {
129
- "title": "Silicon Labs \u5237\u5beb\u9644\u52a0\u5143\u4ef6\u5df2\u555f\u52d5"
130
- },
131
108
  "confirm_otbr": {
132
109
  "description": "\u8a72 {model} \u76ee\u524d\u6b63\u4ee5 OpenThread \u908a\u754c\u8def\u7531\u5668\u57f7\u884c\u3002\u4e26\u986f\u793a\u65bc Thread \u6574\u5408\u5167\u3002",
133
110
  "title": "OpenThread \u908a\u754c\u8def\u7531\u5668\u8a2d\u5b9a\u5b8c\u6210"
@@ -139,17 +116,10 @@
139
116
  "install_addon": {
140
117
  "title": "Silicon Labs Multiprotocol \u9644\u52a0\u5143\u4ef6\u5df2\u555f\u7528\u3002"
141
118
  },
142
- "install_flasher_addon": {
143
- "title": "Silicon Labs \u5237\u5beb\u9644\u52a0\u5143\u4ef6\u5df2\u555f\u52d5"
144
- },
145
119
  "install_otbr_addon": {
146
120
  "description": "OpenThread \u908a\u754c\u8def\u7531\u5668\uff08OTBR\uff09\u9644\u52a0\u5143\u4ef6\u5df2\u5b89\u88dd\u3002",
147
121
  "title": "\u6b63\u5728\u5b89\u88dd OpenThread \u908a\u754c\u8def\u7531\u5668\u9644\u52a0\u5143\u4ef6"
148
122
  },
149
- "install_zigbee_flasher_addon": {
150
- "description": "\u6b63\u5728\u5b89\u88dd Silicon Labs \u5237\u5beb\u5668\u9644\u52a0\u5143\u4ef6\u3002",
151
- "title": "\u6b63\u5728\u5b89\u88dd\u5237\u5beb\u5668"
152
- },
153
123
  "notify_channel_change": {
154
124
  "description": "Zigbee \u8207 Thread \u983b\u9053\u8b8a\u66f4\u8d77\u59cb\u4e2d\uff0c\u6703\u65bc {delay_minutes} \u5206\u9418\u5f8c\u5b8c\u6210\u3002",
155
125
  "title": "\u983b\u9053\u8b8a\u66f4\u8d77\u59cb\u4e2d"
@@ -173,17 +143,9 @@
173
143
  "reconfigure_addon": {
174
144
  "title": "\u91cd\u65b0\u8a2d\u5b9a IEEE 802.15.4 \u7121\u7dda\u96fb\u591a\u5354\u5b9a\u652f\u63f4"
175
145
  },
176
- "run_zigbee_flasher_addon": {
177
- "description": "\u6b63\u5728\u5b89\u88dd Zigbee \u97cc\u9ad4\u3001\u53ef\u80fd\u9700\u8981\u5e7e\u5206\u9418\u6642\u9593\u3002",
178
- "title": "\u6b63\u5728\u5b89\u88dd Zigbee \u97cc\u9ad4"
179
- },
180
146
  "start_addon": {
181
147
  "title": "Silicon Labs Multiprotocol \u9644\u52a0\u5143\u4ef6\u555f\u7528\u4e2d\u3002"
182
148
  },
183
- "start_flasher_addon": {
184
- "description": "\u6b63\u5728\u5b89\u88dd Zigbee \u97cc\u9ad4\u3001\u53ef\u80fd\u9700\u8981\u5e7e\u5206\u9418\u6642\u9593\u3002",
185
- "title": "\u6b63\u5728\u5b89\u88dd\u97cc\u9ad4"
186
- },
187
149
  "start_otbr_addon": {
188
150
  "description": "OpenThread \u908a\u754c\u8def\u7531\u5668\uff08OTBR\uff09\u9644\u52a0\u5143\u4ef6\u555f\u52d5\u4e2d\u3002",
189
151
  "title": "\u6b63\u5728\u555f\u52d5 OpenThread \u908a\u754c\u8def\u7531\u5668\u9644\u52a0\u5143\u4ef6"
@@ -194,10 +156,6 @@
194
156
  },
195
157
  "description": "\u95dc\u9589 Multiprotocol \u652f\u63f4\u5c07\u5c0e\u81f4 {hardware_name} \u7684\u7121\u7dda\u96fb\u6062\u5fa9\u70ba\u50c5\u652f\u63f4 Zigbee \u7684\u97cc\u9ad4\u3001\u540c\u6642\u4e5f\u5c07\u95dc\u9589 {hardware_name} \u5167\u5efa\u7684 Thread \u652f\u63f4\u3002\u53ea\u6709\u5728\u9644\u8fd1\u6709\u5176\u4ed6 Thread \u908a\u754c\u8def\u7531\u5668\u7684\u60c5\u6cc1\u4e0b\u3001Thread \u6731\u6f32\u624d\u80fd\u7e7c\u7e8c\u5de5\u4f5c\u3002\n\n\u5b89\u88dd Zigbee \u97cc\u9ad4\u4e26\u56de\u5fa9\u5099\u4efd\u5c07\u6703\u9700\u8981\u5e7e\u5206\u9418\u6642\u9593\u3002",
196
158
  "title": "\u79fb\u9664 IEEE 802.15.4 \u7121\u7dda\u96fb\u591a\u5354\u5b9a\u652f\u63f4\u3002"
197
- },
198
- "zigbee_flasher_failed": {
199
- "description": "Zigbee \u97cc\u9ad4\u5b89\u88dd\u904e\u7a0b\u5931\u6557\u3002\u8acb\u78ba\u5b9a\u6c92\u6709\u5176\u4ed6\u8edf\u9ad4\u6b63\u8a66\u5716\u8207 {model} \u9032\u884c\u901a\u8a0a\u5f8c\u518d\u8a66\u4e00\u6b21\u3002",
200
- "title": "Zigbee \u5b89\u88dd\u5931\u6557"
201
159
  }
202
160
  }
203
161
  }