├── .github └── workflows │ └── validate.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── TWC Icon Codes & Icon Images v2.0.ods ├── TWC_Icon_Map.ods ├── custom_components └── weatherdotcom │ ├── __init__.py │ ├── config_flow.py │ ├── const.py │ ├── coordinator.py │ ├── manifest.json │ ├── sensor.py │ ├── store.py │ ├── strings.json │ ├── translations │ ├── ar.json │ ├── de.json │ ├── en.json │ ├── es.json │ ├── fr.json │ ├── it.json │ ├── ja.json │ ├── pt.json │ ├── ru.json │ ├── sk.json │ └── zh.json │ ├── weather.py │ ├── weather_current_conditions_sensors.py │ └── weather_translations │ ├── ar.json │ ├── az.json │ ├── bg.json │ ├── bn.json │ ├── bs.json │ ├── ca.json │ ├── cs.json │ ├── da.json │ ├── de.json │ ├── el.json │ ├── en.json │ ├── es.json │ ├── et.json │ ├── fa.json │ ├── fi.json │ ├── fr.json │ ├── gu.json │ ├── he.json │ ├── hi.json │ ├── hr.json │ ├── hu.json │ ├── in.json │ ├── is.json │ ├── it.json │ ├── iw.json │ ├── ja.json │ ├── jv.json │ ├── ka.json │ ├── kk.json │ ├── kn.json │ ├── ko.json │ ├── lt.json │ ├── lv.json │ ├── mk.json │ ├── mn.json │ ├── ms.json │ ├── nl.json │ ├── no.json │ ├── pl.json │ ├── pt.json │ ├── ro.json │ ├── ru.json │ ├── si.json │ ├── sk.json │ ├── sl.json │ ├── sq.json │ ├── sr.json │ ├── sv.json │ ├── sw.json │ ├── ta.json │ ├── te.json │ ├── tg.json │ ├── th.json │ ├── tk.json │ ├── tl.json │ ├── tr.json │ ├── uk.json │ ├── ur.json │ ├── uz.json │ ├── vi.json │ └── zh.json └── hacs.json /.github/workflows/validate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/.github/workflows/validate.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/README.md -------------------------------------------------------------------------------- /TWC Icon Codes & Icon Images v2.0.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/TWC Icon Codes & Icon Images v2.0.ods -------------------------------------------------------------------------------- /TWC_Icon_Map.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/TWC_Icon_Map.ods -------------------------------------------------------------------------------- /custom_components/weatherdotcom/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/custom_components/weatherdotcom/__init__.py -------------------------------------------------------------------------------- /custom_components/weatherdotcom/config_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/custom_components/weatherdotcom/config_flow.py -------------------------------------------------------------------------------- /custom_components/weatherdotcom/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/custom_components/weatherdotcom/const.py -------------------------------------------------------------------------------- /custom_components/weatherdotcom/coordinator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/custom_components/weatherdotcom/coordinator.py -------------------------------------------------------------------------------- /custom_components/weatherdotcom/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/custom_components/weatherdotcom/manifest.json -------------------------------------------------------------------------------- /custom_components/weatherdotcom/sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/custom_components/weatherdotcom/sensor.py -------------------------------------------------------------------------------- /custom_components/weatherdotcom/store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/custom_components/weatherdotcom/store.py -------------------------------------------------------------------------------- /custom_components/weatherdotcom/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/custom_components/weatherdotcom/strings.json -------------------------------------------------------------------------------- /custom_components/weatherdotcom/translations/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/custom_components/weatherdotcom/translations/ar.json -------------------------------------------------------------------------------- /custom_components/weatherdotcom/translations/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/custom_components/weatherdotcom/translations/de.json -------------------------------------------------------------------------------- /custom_components/weatherdotcom/translations/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/custom_components/weatherdotcom/translations/en.json -------------------------------------------------------------------------------- /custom_components/weatherdotcom/translations/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/custom_components/weatherdotcom/translations/es.json -------------------------------------------------------------------------------- /custom_components/weatherdotcom/translations/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/custom_components/weatherdotcom/translations/fr.json -------------------------------------------------------------------------------- /custom_components/weatherdotcom/translations/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/custom_components/weatherdotcom/translations/it.json -------------------------------------------------------------------------------- /custom_components/weatherdotcom/translations/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/custom_components/weatherdotcom/translations/ja.json -------------------------------------------------------------------------------- /custom_components/weatherdotcom/translations/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/custom_components/weatherdotcom/translations/pt.json -------------------------------------------------------------------------------- /custom_components/weatherdotcom/translations/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/custom_components/weatherdotcom/translations/ru.json -------------------------------------------------------------------------------- /custom_components/weatherdotcom/translations/sk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/custom_components/weatherdotcom/translations/sk.json -------------------------------------------------------------------------------- /custom_components/weatherdotcom/translations/zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/custom_components/weatherdotcom/translations/zh.json -------------------------------------------------------------------------------- /custom_components/weatherdotcom/weather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/custom_components/weatherdotcom/weather.py -------------------------------------------------------------------------------- /custom_components/weatherdotcom/weather_current_conditions_sensors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/custom_components/weatherdotcom/weather_current_conditions_sensors.py -------------------------------------------------------------------------------- /custom_components/weatherdotcom/weather_translations/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/custom_components/weatherdotcom/weather_translations/ar.json -------------------------------------------------------------------------------- /custom_components/weatherdotcom/weather_translations/az.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/custom_components/weatherdotcom/weather_translations/az.json -------------------------------------------------------------------------------- /custom_components/weatherdotcom/weather_translations/bg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/custom_components/weatherdotcom/weather_translations/bg.json -------------------------------------------------------------------------------- /custom_components/weatherdotcom/weather_translations/bn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/custom_components/weatherdotcom/weather_translations/bn.json -------------------------------------------------------------------------------- /custom_components/weatherdotcom/weather_translations/bs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/custom_components/weatherdotcom/weather_translations/bs.json -------------------------------------------------------------------------------- /custom_components/weatherdotcom/weather_translations/ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/custom_components/weatherdotcom/weather_translations/ca.json -------------------------------------------------------------------------------- /custom_components/weatherdotcom/weather_translations/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/custom_components/weatherdotcom/weather_translations/cs.json -------------------------------------------------------------------------------- /custom_components/weatherdotcom/weather_translations/da.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/custom_components/weatherdotcom/weather_translations/da.json -------------------------------------------------------------------------------- /custom_components/weatherdotcom/weather_translations/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/custom_components/weatherdotcom/weather_translations/de.json -------------------------------------------------------------------------------- /custom_components/weatherdotcom/weather_translations/el.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/custom_components/weatherdotcom/weather_translations/el.json -------------------------------------------------------------------------------- /custom_components/weatherdotcom/weather_translations/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/custom_components/weatherdotcom/weather_translations/en.json -------------------------------------------------------------------------------- /custom_components/weatherdotcom/weather_translations/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/custom_components/weatherdotcom/weather_translations/es.json -------------------------------------------------------------------------------- /custom_components/weatherdotcom/weather_translations/et.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/custom_components/weatherdotcom/weather_translations/et.json -------------------------------------------------------------------------------- /custom_components/weatherdotcom/weather_translations/fa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/custom_components/weatherdotcom/weather_translations/fa.json -------------------------------------------------------------------------------- /custom_components/weatherdotcom/weather_translations/fi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/custom_components/weatherdotcom/weather_translations/fi.json -------------------------------------------------------------------------------- /custom_components/weatherdotcom/weather_translations/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/custom_components/weatherdotcom/weather_translations/fr.json -------------------------------------------------------------------------------- /custom_components/weatherdotcom/weather_translations/gu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/custom_components/weatherdotcom/weather_translations/gu.json -------------------------------------------------------------------------------- /custom_components/weatherdotcom/weather_translations/he.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/custom_components/weatherdotcom/weather_translations/he.json -------------------------------------------------------------------------------- /custom_components/weatherdotcom/weather_translations/hi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/custom_components/weatherdotcom/weather_translations/hi.json -------------------------------------------------------------------------------- /custom_components/weatherdotcom/weather_translations/hr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/custom_components/weatherdotcom/weather_translations/hr.json -------------------------------------------------------------------------------- /custom_components/weatherdotcom/weather_translations/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/custom_components/weatherdotcom/weather_translations/hu.json -------------------------------------------------------------------------------- /custom_components/weatherdotcom/weather_translations/in.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/custom_components/weatherdotcom/weather_translations/in.json -------------------------------------------------------------------------------- /custom_components/weatherdotcom/weather_translations/is.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/custom_components/weatherdotcom/weather_translations/is.json -------------------------------------------------------------------------------- /custom_components/weatherdotcom/weather_translations/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/custom_components/weatherdotcom/weather_translations/it.json -------------------------------------------------------------------------------- /custom_components/weatherdotcom/weather_translations/iw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/custom_components/weatherdotcom/weather_translations/iw.json -------------------------------------------------------------------------------- /custom_components/weatherdotcom/weather_translations/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/custom_components/weatherdotcom/weather_translations/ja.json -------------------------------------------------------------------------------- /custom_components/weatherdotcom/weather_translations/jv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/custom_components/weatherdotcom/weather_translations/jv.json -------------------------------------------------------------------------------- /custom_components/weatherdotcom/weather_translations/ka.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/custom_components/weatherdotcom/weather_translations/ka.json -------------------------------------------------------------------------------- /custom_components/weatherdotcom/weather_translations/kk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/custom_components/weatherdotcom/weather_translations/kk.json -------------------------------------------------------------------------------- /custom_components/weatherdotcom/weather_translations/kn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/custom_components/weatherdotcom/weather_translations/kn.json -------------------------------------------------------------------------------- /custom_components/weatherdotcom/weather_translations/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/custom_components/weatherdotcom/weather_translations/ko.json -------------------------------------------------------------------------------- /custom_components/weatherdotcom/weather_translations/lt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/custom_components/weatherdotcom/weather_translations/lt.json -------------------------------------------------------------------------------- /custom_components/weatherdotcom/weather_translations/lv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/custom_components/weatherdotcom/weather_translations/lv.json -------------------------------------------------------------------------------- /custom_components/weatherdotcom/weather_translations/mk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/custom_components/weatherdotcom/weather_translations/mk.json -------------------------------------------------------------------------------- /custom_components/weatherdotcom/weather_translations/mn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/custom_components/weatherdotcom/weather_translations/mn.json -------------------------------------------------------------------------------- /custom_components/weatherdotcom/weather_translations/ms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/custom_components/weatherdotcom/weather_translations/ms.json -------------------------------------------------------------------------------- /custom_components/weatherdotcom/weather_translations/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/custom_components/weatherdotcom/weather_translations/nl.json -------------------------------------------------------------------------------- /custom_components/weatherdotcom/weather_translations/no.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/custom_components/weatherdotcom/weather_translations/no.json -------------------------------------------------------------------------------- /custom_components/weatherdotcom/weather_translations/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/custom_components/weatherdotcom/weather_translations/pl.json -------------------------------------------------------------------------------- /custom_components/weatherdotcom/weather_translations/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/custom_components/weatherdotcom/weather_translations/pt.json -------------------------------------------------------------------------------- /custom_components/weatherdotcom/weather_translations/ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/custom_components/weatherdotcom/weather_translations/ro.json -------------------------------------------------------------------------------- /custom_components/weatherdotcom/weather_translations/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/custom_components/weatherdotcom/weather_translations/ru.json -------------------------------------------------------------------------------- /custom_components/weatherdotcom/weather_translations/si.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/custom_components/weatherdotcom/weather_translations/si.json -------------------------------------------------------------------------------- /custom_components/weatherdotcom/weather_translations/sk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/custom_components/weatherdotcom/weather_translations/sk.json -------------------------------------------------------------------------------- /custom_components/weatherdotcom/weather_translations/sl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/custom_components/weatherdotcom/weather_translations/sl.json -------------------------------------------------------------------------------- /custom_components/weatherdotcom/weather_translations/sq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/custom_components/weatherdotcom/weather_translations/sq.json -------------------------------------------------------------------------------- /custom_components/weatherdotcom/weather_translations/sr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/custom_components/weatherdotcom/weather_translations/sr.json -------------------------------------------------------------------------------- /custom_components/weatherdotcom/weather_translations/sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/custom_components/weatherdotcom/weather_translations/sv.json -------------------------------------------------------------------------------- /custom_components/weatherdotcom/weather_translations/sw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/custom_components/weatherdotcom/weather_translations/sw.json -------------------------------------------------------------------------------- /custom_components/weatherdotcom/weather_translations/ta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/custom_components/weatherdotcom/weather_translations/ta.json -------------------------------------------------------------------------------- /custom_components/weatherdotcom/weather_translations/te.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/custom_components/weatherdotcom/weather_translations/te.json -------------------------------------------------------------------------------- /custom_components/weatherdotcom/weather_translations/tg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/custom_components/weatherdotcom/weather_translations/tg.json -------------------------------------------------------------------------------- /custom_components/weatherdotcom/weather_translations/th.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/custom_components/weatherdotcom/weather_translations/th.json -------------------------------------------------------------------------------- /custom_components/weatherdotcom/weather_translations/tk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/custom_components/weatherdotcom/weather_translations/tk.json -------------------------------------------------------------------------------- /custom_components/weatherdotcom/weather_translations/tl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/custom_components/weatherdotcom/weather_translations/tl.json -------------------------------------------------------------------------------- /custom_components/weatherdotcom/weather_translations/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/custom_components/weatherdotcom/weather_translations/tr.json -------------------------------------------------------------------------------- /custom_components/weatherdotcom/weather_translations/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/custom_components/weatherdotcom/weather_translations/uk.json -------------------------------------------------------------------------------- /custom_components/weatherdotcom/weather_translations/ur.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/custom_components/weatherdotcom/weather_translations/ur.json -------------------------------------------------------------------------------- /custom_components/weatherdotcom/weather_translations/uz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/custom_components/weatherdotcom/weather_translations/uz.json -------------------------------------------------------------------------------- /custom_components/weatherdotcom/weather_translations/vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/custom_components/weatherdotcom/weather_translations/vi.json -------------------------------------------------------------------------------- /custom_components/weatherdotcom/weather_translations/zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/custom_components/weatherdotcom/weather_translations/zh.json -------------------------------------------------------------------------------- /hacs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydeethree/Home-Assistant-weatherdotcom/HEAD/hacs.json --------------------------------------------------------------------------------