Compare commits

...

26 Commits

Author SHA1 Message Date
Andre Basche
8208c2f722
Update info.md 2024-01-15 10:32:05 +01:00
Andre Basche
14f133f3f4
Update README.md 2024-01-15 10:31:25 +01:00
Andre Basche
ed8b5e7d3c Bump version 2024-01-11 02:12:07 +01:00
Andre Basche
355e2187ad Update required version 2024-01-11 00:53:14 +01:00
Andre Basche
f007777689 Fix mypy checks 2024-01-11 00:41:49 +01:00
Andre Basche
3aadb840ab Update home assistant version 2024-01-11 00:24:09 +01:00
Andre Basche
e01017125e Replace deprecated TEMP_CLESIUS, fix #141 2024-01-11 00:23:08 +01:00
Andre Basche
f19c0cfcd2 Bump version 2023-11-21 02:32:53 +01:00
Andre Basche
fb15e4bce7 Move config sensors to diagnose #123 2023-11-21 01:32:01 +01:00
Andre Basche
00a8809340 Auto generate supported models list 2023-11-21 01:22:38 +01:00
Andre Basche
11133c148b Fix black issue 2023-11-20 17:44:28 +01:00
Andre Basche
58ae497933 Update translations 2023-11-20 17:37:49 +01:00
Andre Basche
e67b9ff5b1 Add fresh zone for ref #126 2023-11-20 17:35:58 +01:00
Andre Basche
a00b80be95 Fix mypy errors 2023-11-20 16:39:33 +01:00
Andre Basche
c8f45ae4bc Add more checks 2023-11-20 15:47:39 +01:00
Andre Basche
10bcc486e4 Bump dependencies 2023-11-20 15:26:33 +01:00
Andre Basche
16b9215e46 Update supported models 2023-11-20 00:30:36 +01:00
Andre Basche
ae7f713c9a Update supported models 2023-10-21 15:54:04 +02:00
Andre Basche
bb780c853d Update supported appliances 2023-10-13 23:14:21 +02:00
Andre Basche
358340e818 Add donation options 2023-10-06 18:22:53 +02:00
Andre Basche
7c8f7e62db Try to fix #117 2023-10-06 01:33:23 +02:00
Andre Basche
b995439227 Add more exapmle images 2023-10-03 18:46:14 +02:00
Andre Basche
735a83673c Bump version 2023-10-03 01:59:23 +02:00
Andre Basche
08fb9cb5b9 Add changing fan position for ac #97 #108 2023-10-03 01:49:24 +02:00
Andre Basche
0e3d917ed1 Add more supported devices 2023-10-03 01:02:59 +02:00
Andre Basche
16055acd17 Remove one supported ac model, fix #110 2023-10-02 04:37:24 +02:00
48 changed files with 2672 additions and 788 deletions

View File

@ -13,7 +13,9 @@ jobs:
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
python-version: ["3.11"] include:
- home-assistant: "2024.1.0"
python-version: "3.11"
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
@ -23,6 +25,7 @@ jobs:
python-version: ${{ matrix.python-version }} python-version: ${{ matrix.python-version }}
- name: Install dependencies - name: Install dependencies
run: | run: |
python -m pip install homeassistant~=${{ matrix.home-assistant }}
python -m pip install --upgrade pip python -m pip install --upgrade pip
python -m pip install -r requirements.txt python -m pip install -r requirements.txt
python -m pip install -r requirements_dev.txt python -m pip install -r requirements_dev.txt

1186
README.md

File diff suppressed because it is too large Load Diff

BIN
assets/example_ac.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 188 KiB

BIN
assets/example_ap.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 105 KiB

BIN
assets/example_dw.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 120 KiB

BIN
assets/example_ov.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 112 KiB

BIN
assets/example_ref.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 164 KiB

BIN
assets/example_td.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 125 KiB

BIN
assets/example_wc.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 114 KiB

BIN
assets/example_wd.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 221 KiB

BIN
assets/example_wm.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 194 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 202 KiB

View File

@ -1,7 +1,7 @@
import logging import logging
from pathlib import Path from pathlib import Path
import voluptuous as vol # type: ignore[import] import voluptuous as vol # type: ignore[import-untyped]
from homeassistant.config_entries import ConfigEntry from homeassistant.config_entries import ConfigEntry
from homeassistant.const import CONF_EMAIL, CONF_PASSWORD from homeassistant.const import CONF_EMAIL, CONF_PASSWORD
from homeassistant.helpers import config_validation as cv, aiohttp_client from homeassistant.helpers import config_validation as cv, aiohttp_client

View File

@ -17,7 +17,7 @@ from .hon import HonEntity, unique_entities
_LOGGER = logging.getLogger(__name__) _LOGGER = logging.getLogger(__name__)
@dataclass @dataclass(frozen=True)
class HonBinarySensorEntityDescription(BinarySensorEntityDescription): class HonBinarySensorEntityDescription(BinarySensorEntityDescription):
on_value: str | float = "" on_value: str | float = ""

View File

@ -17,7 +17,7 @@ from homeassistant.components.climate.const import (
from homeassistant.config_entries import ConfigEntry from homeassistant.config_entries import ConfigEntry
from homeassistant.const import ( from homeassistant.const import (
ATTR_TEMPERATURE, ATTR_TEMPERATURE,
TEMP_CELSIUS, UnitOfTemperature,
) )
from homeassistant.core import callback from homeassistant.core import callback
from homeassistant.helpers.entity_platform import AddEntitiesCallback from homeassistant.helpers.entity_platform import AddEntitiesCallback
@ -31,12 +31,12 @@ from .hon import HonEntity
_LOGGER = logging.getLogger(__name__) _LOGGER = logging.getLogger(__name__)
@dataclass @dataclass(frozen=True)
class HonACClimateEntityDescription(ClimateEntityDescription): class HonACClimateEntityDescription(ClimateEntityDescription):
pass pass
@dataclass @dataclass(frozen=True)
class HonClimateEntityDescription(ClimateEntityDescription): class HonClimateEntityDescription(ClimateEntityDescription):
mode: HVACMode = HVACMode.AUTO mode: HVACMode = HVACMode.AUTO
@ -67,6 +67,13 @@ CLIMATES: dict[
icon="mdi:snowflake-thermometer", icon="mdi:snowflake-thermometer",
translation_key="freezer", translation_key="freezer",
), ),
HonClimateEntityDescription(
key="settings.tempSelZ3",
mode=HVACMode.COOL,
name="MyZone",
icon="mdi:thermometer",
translation_key="my_zone",
),
), ),
"OV": ( "OV": (
HonClimateEntityDescription( HonClimateEntityDescription(
@ -130,7 +137,7 @@ class HonACClimateEntity(HonEntity, ClimateEntity):
) -> None: ) -> None:
super().__init__(hass, entry, device, description) super().__init__(hass, entry, device, description)
self._attr_temperature_unit = TEMP_CELSIUS self._attr_temperature_unit = UnitOfTemperature.CELSIUS
self._set_temperature_bound() self._set_temperature_bound()
self._attr_hvac_modes = [HVACMode.OFF] self._attr_hvac_modes = [HVACMode.OFF]
@ -288,13 +295,9 @@ class HonClimateEntity(HonEntity, ClimateEntity):
) -> None: ) -> None:
super().__init__(hass, entry, device, description) super().__init__(hass, entry, device, description)
self._attr_temperature_unit = TEMP_CELSIUS self._attr_temperature_unit = UnitOfTemperature.CELSIUS
self._set_temperature_bound() self._set_temperature_bound()
self._attr_supported_features = (
ClimateEntityFeature.TARGET_TEMPERATURE | ClimateEntityFeature.PRESET_MODE
)
self._attr_hvac_modes = [description.mode] self._attr_hvac_modes = [description.mode]
if "stopProgram" in device.commands: if "stopProgram" in device.commands:
self._attr_hvac_modes += [HVACMode.OFF] self._attr_hvac_modes += [HVACMode.OFF]
@ -312,7 +315,15 @@ class HonClimateEntity(HonEntity, ClimateEntity):
modes.append(mode) modes.append(mode)
else: else:
modes.append(mode) modes.append(mode)
self._attr_preset_modes = modes
if modes:
self._attr_supported_features = (
ClimateEntityFeature.TARGET_TEMPERATURE
| ClimateEntityFeature.PRESET_MODE
)
self._attr_preset_modes = modes
else:
self._attr_supported_features = ClimateEntityFeature.TARGET_TEMPERATURE
self._handle_coordinator_update(update=False) self._handle_coordinator_update(update=False)

View File

@ -1,7 +1,7 @@
import logging import logging
from typing import Any from typing import Any
import voluptuous as vol # type: ignore[import] import voluptuous as vol # type: ignore[import-untyped]
from homeassistant import config_entries from homeassistant import config_entries
from homeassistant.const import CONF_EMAIL, CONF_PASSWORD from homeassistant.const import CONF_EMAIL, CONF_PASSWORD
from homeassistant.data_entry_flow import FlowResult from homeassistant.data_entry_flow import FlowResult

View File

@ -264,3 +264,21 @@ STAIN_TYPES: dict[int, str] = {
25: "chili_sauce", 25: "chili_sauce",
26: "fruit", 26: "fruit",
} }
AC_POSITION_HORIZONTAL = {
0: "position_1",
3: "position_2",
4: "position_3",
5: "position_4",
6: "position_5",
7: "swing",
}
AC_POSITION_VERTICAL = {
2: "position_1",
4: "position_2",
5: "position_3",
6: "position_4",
7: "position_5",
8: "swing",
}

View File

@ -9,7 +9,7 @@
"iot_class": "cloud_polling", "iot_class": "cloud_polling",
"issue_tracker": "https://github.com/Andre0512/hon/issues", "issue_tracker": "https://github.com/Andre0512/hon/issues",
"requirements": [ "requirements": [
"pyhOn==0.15.8" "pyhOn==0.15.15"
], ],
"version": "0.10.0-beta.1" "version": "0.11.0-beta.1"
} }

View File

@ -19,12 +19,12 @@ from .const import DOMAIN
from .hon import HonEntity, unique_entities from .hon import HonEntity, unique_entities
@dataclass @dataclass(frozen=True)
class HonConfigNumberEntityDescription(NumberEntityDescription): class HonConfigNumberEntityDescription(NumberEntityDescription):
entity_category: EntityCategory = EntityCategory.CONFIG entity_category: EntityCategory = EntityCategory.CONFIG
@dataclass @dataclass(frozen=True)
class HonNumberEntityDescription(NumberEntityDescription): class HonNumberEntityDescription(NumberEntityDescription):
pass pass
@ -164,6 +164,13 @@ NUMBERS: dict[str, tuple[NumberEntityDescription, ...]] = {
native_unit_of_measurement=UnitOfTemperature.CELSIUS, native_unit_of_measurement=UnitOfTemperature.CELSIUS,
translation_key="freezer_temp_sel", translation_key="freezer_temp_sel",
), ),
HonNumberEntityDescription(
key="settings.tempSelZ3",
name="MyZone Temperature",
icon="mdi:thermometer",
native_unit_of_measurement=UnitOfTemperature.CELSIUS,
translation_key="my_zone_temp_sel",
),
), ),
"AP": ( "AP": (
HonNumberEntityDescription( HonNumberEntityDescription(

View File

@ -18,12 +18,12 @@ from .hon import HonEntity, unique_entities, get_readable
_LOGGER = logging.getLogger(__name__) _LOGGER = logging.getLogger(__name__)
@dataclass @dataclass(frozen=True)
class HonSelectEntityDescription(SelectEntityDescription): class HonSelectEntityDescription(SelectEntityDescription):
option_list: dict[int, str] | None = None option_list: dict[int, str] | None = None
@dataclass @dataclass(frozen=True)
class HonConfigSelectEntityDescription(SelectEntityDescription): class HonConfigSelectEntityDescription(SelectEntityDescription):
entity_category: EntityCategory = EntityCategory.CONFIG entity_category: EntityCategory = EntityCategory.CONFIG
option_list: dict[int, str] | None = None option_list: dict[int, str] | None = None
@ -140,6 +140,20 @@ SELECTS: dict[str, tuple[SelectEntityDescription, ...]] = {
translation_key="eco_pilot", translation_key="eco_pilot",
option_list=const.AC_HUMAN_SENSE, option_list=const.AC_HUMAN_SENSE,
), ),
HonSelectEntityDescription(
key="settings.windDirectionHorizontal",
name="Fan Direction Horizontal",
icon="mdi:fan",
translation_key="fan_horizontal",
option_list=const.AC_POSITION_HORIZONTAL,
),
HonSelectEntityDescription(
key="settings.windDirectionVertical",
name="Fan Direction Vertical",
icon="mdi:fan",
translation_key="fan_vertical",
option_list=const.AC_POSITION_VERTICAL,
),
), ),
"REF": ( "REF": (
HonConfigSelectEntityDescription( HonConfigSelectEntityDescription(

View File

@ -34,13 +34,13 @@ from .hon import HonEntity, unique_entities, get_readable
_LOGGER = logging.getLogger(__name__) _LOGGER = logging.getLogger(__name__)
@dataclass @dataclass(frozen=True)
class HonConfigSensorEntityDescription(SensorEntityDescription): class HonConfigSensorEntityDescription(SensorEntityDescription):
entity_category: EntityCategory = EntityCategory.CONFIG entity_category: EntityCategory = EntityCategory.DIAGNOSTIC
option_list: dict[int, str] | None = None option_list: dict[int, str] | None = None
@dataclass @dataclass(frozen=True)
class HonSensorEntityDescription(SensorEntityDescription): class HonSensorEntityDescription(SensorEntityDescription):
option_list: dict[int, str] | None = None option_list: dict[int, str] | None = None

View File

@ -18,17 +18,18 @@ from .hon import HonEntity, unique_entities
_LOGGER = logging.getLogger(__name__) _LOGGER = logging.getLogger(__name__)
@dataclass @dataclass(frozen=True)
class HonControlSwitchEntityDescription(SwitchEntityDescription): class HonControlSwitchEntityDescription(SwitchEntityDescription):
turn_on_key: str = "" turn_on_key: str = ""
turn_off_key: str = "" turn_off_key: str = ""
@dataclass(frozen=True)
class HonSwitchEntityDescription(SwitchEntityDescription): class HonSwitchEntityDescription(SwitchEntityDescription):
pass pass
@dataclass @dataclass(frozen=True)
class HonConfigSwitchEntityDescription(SwitchEntityDescription): class HonConfigSwitchEntityDescription(SwitchEntityDescription):
entity_category: EntityCategory = EntityCategory.CONFIG entity_category: EntityCategory = EntityCategory.CONFIG

View File

@ -524,6 +524,7 @@
"iot_active_wash_steam": "Aktivní praní 20' + pára", "iot_active_wash_steam": "Aktivní praní 20' + pára",
"iot_allergy_care_pro": "Antialergická péče Pro", "iot_allergy_care_pro": "Antialergická péče Pro",
"iot_all_in_one_59_steam": "Vše v jednom 59' + pára", "iot_all_in_one_59_steam": "Vše v jednom 59' + pára",
"iot_baby_60_steam": "Všechno dětské 60°C + pára",
"iot_checkup": "Kontrola", "iot_checkup": "Kontrola",
"iot_colour_59_steam": "Barevné 59'' + pára", "iot_colour_59_steam": "Barevné 59'' + pára",
"iot_cottons_steam": "Bavlna + Pára", "iot_cottons_steam": "Bavlna + Pára",
@ -561,6 +562,7 @@
"iot_hygiene_pro_steam": "Hygiene Pro + pára", "iot_hygiene_pro_steam": "Hygiene Pro + pára",
"iot_intensive_40_steam": "Intenzivní 40°C + pára", "iot_intensive_40_steam": "Intenzivní 40°C + pára",
"iot_jeans_60_steam": "Džíny + pára", "iot_jeans_60_steam": "Džíny + pára",
"iot_jeans_steam": "Džíny + pára",
"iot_mixed_steam": "Smíšené + Pára", "iot_mixed_steam": "Smíšené + Pára",
"iot_mix_and_colour_59_steam": "Smíšené a barevné 59' + pára", "iot_mix_and_colour_59_steam": "Smíšené a barevné 59' + pára",
"iot_perfect_cotton_59_steam": "Perfektni Bavlna 59'", "iot_perfect_cotton_59_steam": "Perfektni Bavlna 59'",
@ -683,6 +685,7 @@
"iot_wash_sport_anti_odor": "Sportovní oblečení s efektem proti zápachu", "iot_wash_sport_anti_odor": "Sportovní oblečení s efektem proti zápachu",
"iot_wash_sport_anti_odor_zelig": "Sportovní oblečení s efektem proti zápachu", "iot_wash_sport_anti_odor_zelig": "Sportovní oblečení s efektem proti zápachu",
"iot_wash_stains_remover": "Odstraňování skvrn", "iot_wash_stains_remover": "Odstraňování skvrn",
"iot_wash_super_saving": "Super úsporný 49'",
"iot_wash_swimsuits_and_bikinis": "Plavky", "iot_wash_swimsuits_and_bikinis": "Plavky",
"iot_wash_synthetic": "Syntetika", "iot_wash_synthetic": "Syntetika",
"iot_wash_synthetic_steam": "Syntetika + Pára", "iot_wash_synthetic_steam": "Syntetika + Pára",
@ -767,11 +770,11 @@
"cool_drink": "Cool Drink", "cool_drink": "Cool Drink",
"eco": "Eco", "eco": "Eco",
"eco_mode": "Režim Eco", "eco_mode": "Režim Eco",
"fruits": "Fruits", "fruits": "Fruit",
"fruits_and_veg": "Fruit&Veg", "fruits_and_veg": "Fruit&Veg",
"fruit_and_veg": "Fruit & Veg", "fruit_and_veg": "Fruit & Veg",
"holiday": "DOVOLENÁ", "holiday": "DOVOLENÁ",
"keep_fresh": "0° Fresh", "keep_fresh": "0°C Fresh",
"milk_and_eggs": "Milk & Eggs", "milk_and_eggs": "Milk & Eggs",
"no_mode_selected": "Není vybrán žádný režim", "no_mode_selected": "Není vybrán žádný režim",
"quick_cool": "QUICK COOL", "quick_cool": "QUICK COOL",
@ -780,9 +783,9 @@
"soft_frozen": "Soft freezing", "soft_frozen": "Soft freezing",
"super_cool": "SUPER CHLAZENÍ", "super_cool": "SUPER CHLAZENÍ",
"super_freeze": "SUPER MRAZENÍ", "super_freeze": "SUPER MRAZENÍ",
"tea": "Cold drinks or Beverages", "tea": "Cold Drinks",
"vegetables": "Vegetables", "vegetables": "Vegetable",
"zero_fresh": "0° Fresh" "zero_fresh": "0°C Fresh"
}, },
"name": "Program" "name": "Program"
}, },
@ -1410,6 +1413,7 @@
"iot_active_wash_steam": "Aktivní praní 20' + pára", "iot_active_wash_steam": "Aktivní praní 20' + pára",
"iot_allergy_care_pro": "Antialergická péče Pro", "iot_allergy_care_pro": "Antialergická péče Pro",
"iot_all_in_one_59_steam": "Vše v jednom 59' + pára", "iot_all_in_one_59_steam": "Vše v jednom 59' + pára",
"iot_baby_60_steam": "Všechno dětské 60°C + pára",
"iot_checkup": "Kontrola", "iot_checkup": "Kontrola",
"iot_colour_59_steam": "Barevné 59'' + pára", "iot_colour_59_steam": "Barevné 59'' + pára",
"iot_cottons_steam": "Bavlna + Pára", "iot_cottons_steam": "Bavlna + Pára",
@ -1447,6 +1451,7 @@
"iot_hygiene_pro_steam": "Hygiene Pro + pára", "iot_hygiene_pro_steam": "Hygiene Pro + pára",
"iot_intensive_40_steam": "Intenzivní 40°C + pára", "iot_intensive_40_steam": "Intenzivní 40°C + pára",
"iot_jeans_60_steam": "Džíny + pára", "iot_jeans_60_steam": "Džíny + pára",
"iot_jeans_steam": "Džíny + pára",
"iot_mixed_steam": "Smíšené + Pára", "iot_mixed_steam": "Smíšené + Pára",
"iot_mix_and_colour_59_steam": "Smíšené a barevné 59' + pára", "iot_mix_and_colour_59_steam": "Smíšené a barevné 59' + pára",
"iot_perfect_cotton_59_steam": "Perfektni Bavlna 59'", "iot_perfect_cotton_59_steam": "Perfektni Bavlna 59'",
@ -1569,6 +1574,7 @@
"iot_wash_sport_anti_odor": "Sportovní oblečení s efektem proti zápachu", "iot_wash_sport_anti_odor": "Sportovní oblečení s efektem proti zápachu",
"iot_wash_sport_anti_odor_zelig": "Sportovní oblečení s efektem proti zápachu", "iot_wash_sport_anti_odor_zelig": "Sportovní oblečení s efektem proti zápachu",
"iot_wash_stains_remover": "Odstraňování skvrn", "iot_wash_stains_remover": "Odstraňování skvrn",
"iot_wash_super_saving": "Super úsporný 49'",
"iot_wash_swimsuits_and_bikinis": "Plavky", "iot_wash_swimsuits_and_bikinis": "Plavky",
"iot_wash_synthetic": "Syntetika", "iot_wash_synthetic": "Syntetika",
"iot_wash_synthetic_steam": "Syntetika + Pára", "iot_wash_synthetic_steam": "Syntetika + Pára",
@ -1653,11 +1659,11 @@
"cool_drink": "Cool Drink", "cool_drink": "Cool Drink",
"eco": "Eco", "eco": "Eco",
"eco_mode": "Režim Eco", "eco_mode": "Režim Eco",
"fruits": "Fruits", "fruits": "Fruit",
"fruits_and_veg": "Fruit&Veg", "fruits_and_veg": "Fruit&Veg",
"fruit_and_veg": "Fruit & Veg", "fruit_and_veg": "Fruit & Veg",
"holiday": "DOVOLENÁ", "holiday": "DOVOLENÁ",
"keep_fresh": "0° Fresh", "keep_fresh": "0°C Fresh",
"milk_and_eggs": "Milk & Eggs", "milk_and_eggs": "Milk & Eggs",
"no_mode_selected": "Není vybrán žádný režim", "no_mode_selected": "Není vybrán žádný režim",
"quick_cool": "QUICK COOL", "quick_cool": "QUICK COOL",
@ -1666,9 +1672,9 @@
"soft_frozen": "Soft freezing", "soft_frozen": "Soft freezing",
"super_cool": "SUPER CHLAZENÍ", "super_cool": "SUPER CHLAZENÍ",
"super_freeze": "SUPER MRAZENÍ", "super_freeze": "SUPER MRAZENÍ",
"tea": "Cold drinks or Beverages", "tea": "Cold Drinks",
"vegetables": "Vegetables", "vegetables": "Vegetable",
"zero_fresh": "0° Fresh" "zero_fresh": "0°C Fresh"
}, },
"name": "Program" "name": "Program"
}, },
@ -1764,6 +1770,28 @@
"unknown": "unknown" "unknown": "unknown"
}, },
"name": "Úroveň znečištění" "name": "Úroveň znečištění"
},
"fan_horizontal": {
"name": "Směr proudu vzduchu Vodorovný",
"state": {
"position_1": "Pevný - Poloha 1",
"position_2": "Pevný - Poloha 2",
"position_3": "Pevný - Poloha 3",
"position_4": "Pevný - Poloha 4",
"position_5": "Pevný - Poloha 5",
"swing": "Pohyb lamel"
}
},
"fan_vertical": {
"name": "Směr proudu vzduchu Svislý",
"state": {
"position_1": "Pevný - Poloha 1",
"position_2": "Pevný - Poloha 2",
"position_3": "Pevný - Poloha 3",
"position_4": "Pevný - Poloha 4",
"position_5": "Pevný - Poloha 5",
"swing": "Pohyb lamel"
}
} }
}, },
"switch": { "switch": {
@ -2021,6 +2049,9 @@
}, },
"aroma_time_off": { "aroma_time_off": {
"name": "Difuzér (VYPNOUT)" "name": "Difuzér (VYPNOUT)"
},
"my_zone_temp_sel": {
"name": "Cílová teplota My Zone"
} }
}, },
"climate": { "climate": {
@ -2155,6 +2186,9 @@
} }
} }
} }
},
"my_zone": {
"name": "My Zone"
} }
}, },
"fan": { "fan": {

View File

@ -524,6 +524,7 @@
"iot_active_wash_steam": "Active Wash 20' + Dampf", "iot_active_wash_steam": "Active Wash 20' + Dampf",
"iot_allergy_care_pro": "Allergy Care Pro", "iot_allergy_care_pro": "Allergy Care Pro",
"iot_all_in_one_59_steam": "All in One 59' + Dampf", "iot_all_in_one_59_steam": "All in One 59' + Dampf",
"iot_baby_60_steam": "Alles Baby 60 °C + Dampf",
"iot_checkup": "Check-up", "iot_checkup": "Check-up",
"iot_colour_59_steam": "Buntes 59' + Dampf", "iot_colour_59_steam": "Buntes 59' + Dampf",
"iot_cottons_steam": "Baumwolle + Dampf", "iot_cottons_steam": "Baumwolle + Dampf",
@ -561,6 +562,7 @@
"iot_hygiene_pro_steam": "Hygiene Pro + Dampf", "iot_hygiene_pro_steam": "Hygiene Pro + Dampf",
"iot_intensive_40_steam": "Intensiv 40°C + Dampf", "iot_intensive_40_steam": "Intensiv 40°C + Dampf",
"iot_jeans_60_steam": "Jeans + Dampf", "iot_jeans_60_steam": "Jeans + Dampf",
"iot_jeans_steam": "Jeans + Dampf",
"iot_mixed_steam": "Gemischt + Dampf", "iot_mixed_steam": "Gemischt + Dampf",
"iot_mix_and_colour_59_steam": "Misch- und Buntwäsche 59' + Dampf", "iot_mix_and_colour_59_steam": "Misch- und Buntwäsche 59' + Dampf",
"iot_perfect_cotton_59_steam": "Baumwolle Perfekt 59'", "iot_perfect_cotton_59_steam": "Baumwolle Perfekt 59'",
@ -683,6 +685,7 @@
"iot_wash_sport_anti_odor": "Anti-Geruch Sportbekleidung", "iot_wash_sport_anti_odor": "Anti-Geruch Sportbekleidung",
"iot_wash_sport_anti_odor_zelig": "Anti-Geruch Sportbekleidung", "iot_wash_sport_anti_odor_zelig": "Anti-Geruch Sportbekleidung",
"iot_wash_stains_remover": "Fleckenentferner", "iot_wash_stains_remover": "Fleckenentferner",
"iot_wash_super_saving": "Super Sparprogramm 49'",
"iot_wash_swimsuits_and_bikinis": "Badeanzüge", "iot_wash_swimsuits_and_bikinis": "Badeanzüge",
"iot_wash_synthetic": "Synthetik", "iot_wash_synthetic": "Synthetik",
"iot_wash_synthetic_steam": "Synthetik + Dampf", "iot_wash_synthetic_steam": "Synthetik + Dampf",
@ -767,11 +770,11 @@
"cool_drink": "Cool Drink", "cool_drink": "Cool Drink",
"eco": "Eco", "eco": "Eco",
"eco_mode": "Eco-Modus", "eco_mode": "Eco-Modus",
"fruits": "Fruits", "fruits": "Fruit",
"fruits_and_veg": "Obst und Genüse", "fruits_and_veg": "Obst und Genüse",
"fruit_and_veg": "Fruit & Veg", "fruit_and_veg": "Fruit & Veg",
"holiday": "URLAUBSFUNKTION", "holiday": "URLAUBSFUNKTION",
"keep_fresh": "0° Fresh", "keep_fresh": "0°C Fresh",
"milk_and_eggs": "Milk & Eggs", "milk_and_eggs": "Milk & Eggs",
"no_mode_selected": "Kein Modus ausgewählt", "no_mode_selected": "Kein Modus ausgewählt",
"quick_cool": "SCHNELLKÜHLUNG", "quick_cool": "SCHNELLKÜHLUNG",
@ -780,9 +783,9 @@
"soft_frozen": "Soft freezing", "soft_frozen": "Soft freezing",
"super_cool": "SUPER COOL", "super_cool": "SUPER COOL",
"super_freeze": "SUPER FREEZE", "super_freeze": "SUPER FREEZE",
"tea": "Cold drinks or Beverages", "tea": "Cold Drinks",
"vegetables": "Vegetables", "vegetables": "Vegetable",
"zero_fresh": "0° Fresh" "zero_fresh": "0°C Fresh"
}, },
"name": "Programm" "name": "Programm"
}, },
@ -1410,6 +1413,7 @@
"iot_active_wash_steam": "Active Wash 20' + Dampf", "iot_active_wash_steam": "Active Wash 20' + Dampf",
"iot_allergy_care_pro": "Allergy Care Pro", "iot_allergy_care_pro": "Allergy Care Pro",
"iot_all_in_one_59_steam": "All in One 59' + Dampf", "iot_all_in_one_59_steam": "All in One 59' + Dampf",
"iot_baby_60_steam": "Alles Baby 60 °C + Dampf",
"iot_checkup": "Check-up", "iot_checkup": "Check-up",
"iot_colour_59_steam": "Buntes 59' + Dampf", "iot_colour_59_steam": "Buntes 59' + Dampf",
"iot_cottons_steam": "Baumwolle + Dampf", "iot_cottons_steam": "Baumwolle + Dampf",
@ -1447,6 +1451,7 @@
"iot_hygiene_pro_steam": "Hygiene Pro + Dampf", "iot_hygiene_pro_steam": "Hygiene Pro + Dampf",
"iot_intensive_40_steam": "Intensiv 40°C + Dampf", "iot_intensive_40_steam": "Intensiv 40°C + Dampf",
"iot_jeans_60_steam": "Jeans + Dampf", "iot_jeans_60_steam": "Jeans + Dampf",
"iot_jeans_steam": "Jeans + Dampf",
"iot_mixed_steam": "Gemischt + Dampf", "iot_mixed_steam": "Gemischt + Dampf",
"iot_mix_and_colour_59_steam": "Misch- und Buntwäsche 59' + Dampf", "iot_mix_and_colour_59_steam": "Misch- und Buntwäsche 59' + Dampf",
"iot_perfect_cotton_59_steam": "Baumwolle Perfekt 59'", "iot_perfect_cotton_59_steam": "Baumwolle Perfekt 59'",
@ -1569,6 +1574,7 @@
"iot_wash_sport_anti_odor": "Anti-Geruch Sportbekleidung", "iot_wash_sport_anti_odor": "Anti-Geruch Sportbekleidung",
"iot_wash_sport_anti_odor_zelig": "Anti-Geruch Sportbekleidung", "iot_wash_sport_anti_odor_zelig": "Anti-Geruch Sportbekleidung",
"iot_wash_stains_remover": "Fleckenentferner", "iot_wash_stains_remover": "Fleckenentferner",
"iot_wash_super_saving": "Super Sparprogramm 49'",
"iot_wash_swimsuits_and_bikinis": "Badeanzüge", "iot_wash_swimsuits_and_bikinis": "Badeanzüge",
"iot_wash_synthetic": "Synthetik", "iot_wash_synthetic": "Synthetik",
"iot_wash_synthetic_steam": "Synthetik + Dampf", "iot_wash_synthetic_steam": "Synthetik + Dampf",
@ -1653,11 +1659,11 @@
"cool_drink": "Cool Drink", "cool_drink": "Cool Drink",
"eco": "Eco", "eco": "Eco",
"eco_mode": "Eco-Modus", "eco_mode": "Eco-Modus",
"fruits": "Fruits", "fruits": "Fruit",
"fruits_and_veg": "Obst und Genüse", "fruits_and_veg": "Obst und Genüse",
"fruit_and_veg": "Fruit & Veg", "fruit_and_veg": "Fruit & Veg",
"holiday": "URLAUBSFUNKTION", "holiday": "URLAUBSFUNKTION",
"keep_fresh": "0° Fresh", "keep_fresh": "0°C Fresh",
"milk_and_eggs": "Milk & Eggs", "milk_and_eggs": "Milk & Eggs",
"no_mode_selected": "Kein Modus ausgewählt", "no_mode_selected": "Kein Modus ausgewählt",
"quick_cool": "SCHNELLKÜHLUNG", "quick_cool": "SCHNELLKÜHLUNG",
@ -1666,9 +1672,9 @@
"soft_frozen": "Soft freezing", "soft_frozen": "Soft freezing",
"super_cool": "SUPER COOL", "super_cool": "SUPER COOL",
"super_freeze": "SUPER FREEZE", "super_freeze": "SUPER FREEZE",
"tea": "Cold drinks or Beverages", "tea": "Cold Drinks",
"vegetables": "Vegetables", "vegetables": "Vegetable",
"zero_fresh": "0° Fresh" "zero_fresh": "0°C Fresh"
}, },
"name": "Programm" "name": "Programm"
}, },
@ -1764,6 +1770,28 @@
"unknown": "unknown" "unknown": "unknown"
}, },
"name": "Grad der Verschmutzung" "name": "Grad der Verschmutzung"
},
"fan_horizontal": {
"name": "Richtung des Gebläses Horizontal",
"state": {
"position_1": "Fest - Position 1",
"position_2": "Fest - Position 2",
"position_3": "Fest - Position 3",
"position_4": "Fest - Position 4",
"position_5": "Fest - Position 5",
"swing": "Schwenkbewegung"
}
},
"fan_vertical": {
"name": "Richtung des Gebläses Vertikal",
"state": {
"position_1": "Fest - Position 1",
"position_2": "Fest - Position 2",
"position_3": "Fest - Position 3",
"position_4": "Fest - Position 4",
"position_5": "Fest - Position 5",
"swing": "Schwenkbewegung"
}
} }
}, },
"switch": { "switch": {
@ -2021,6 +2049,9 @@
}, },
"aroma_time_off": { "aroma_time_off": {
"name": "Luftverteiler (AUS)" "name": "Luftverteiler (AUS)"
},
"my_zone_temp_sel": {
"name": "Zieltemperatur My Zone"
} }
}, },
"climate": { "climate": {
@ -2155,6 +2186,9 @@
} }
} }
} }
},
"my_zone": {
"name": "My Zone"
} }
}, },
"fan": { "fan": {

View File

@ -524,6 +524,7 @@
"iot_active_wash_steam": "Ενεργό πλύσιμο 20' + Ατμός", "iot_active_wash_steam": "Ενεργό πλύσιμο 20' + Ατμός",
"iot_allergy_care_pro": "Allergy Care Επαγγελματικό", "iot_allergy_care_pro": "Allergy Care Επαγγελματικό",
"iot_all_in_one_59_steam": "Όλα σε Ένα 59' + Ατμός", "iot_all_in_one_59_steam": "Όλα σε Ένα 59' + Ατμός",
"iot_baby_60_steam": "Μωρουδιακά 60°C + ατμός",
"iot_checkup": "Έλεγχος", "iot_checkup": "Έλεγχος",
"iot_colour_59_steam": "Χρωματιστά 59' + ατμός", "iot_colour_59_steam": "Χρωματιστά 59' + ατμός",
"iot_cottons_steam": "Βαμβακερό + Ατμός", "iot_cottons_steam": "Βαμβακερό + Ατμός",
@ -561,6 +562,7 @@
"iot_hygiene_pro_steam": "Hygiene Pro + Ατμός", "iot_hygiene_pro_steam": "Hygiene Pro + Ατμός",
"iot_intensive_40_steam": "Εντατικό 40°C + ατμός", "iot_intensive_40_steam": "Εντατικό 40°C + ατμός",
"iot_jeans_60_steam": "Τζιν παντελόνια + ατμός", "iot_jeans_60_steam": "Τζιν παντελόνια + ατμός",
"iot_jeans_steam": "Τζιν παντελόνια + ατμός",
"iot_mixed_steam": "Μικτά + Ατμός", "iot_mixed_steam": "Μικτά + Ατμός",
"iot_mix_and_colour_59_steam": "Μικτά και χρωματιστά 59' + Ατμός", "iot_mix_and_colour_59_steam": "Μικτά και χρωματιστά 59' + Ατμός",
"iot_perfect_cotton_59_steam": "ΤΕΛΕΙΑ ΒΑΜΒΑΚΕΡΑ 59'", "iot_perfect_cotton_59_steam": "ΤΕΛΕΙΑ ΒΑΜΒΑΚΕΡΑ 59'",
@ -683,6 +685,7 @@
"iot_wash_sport_anti_odor": "Κατά της οσμής των αθλητικών ρούχων", "iot_wash_sport_anti_odor": "Κατά της οσμής των αθλητικών ρούχων",
"iot_wash_sport_anti_odor_zelig": "Κατά της οσμής των αθλητικών ρούχων", "iot_wash_sport_anti_odor_zelig": "Κατά της οσμής των αθλητικών ρούχων",
"iot_wash_stains_remover": "Αφαίρεση λεκέδων", "iot_wash_stains_remover": "Αφαίρεση λεκέδων",
"iot_wash_super_saving": "Εξαιρετική εξοικονόμηση 49'",
"iot_wash_swimsuits_and_bikinis": "Μαγιό", "iot_wash_swimsuits_and_bikinis": "Μαγιό",
"iot_wash_synthetic": "Συνθετικά", "iot_wash_synthetic": "Συνθετικά",
"iot_wash_synthetic_steam": "Συνθετικά + Ατμός", "iot_wash_synthetic_steam": "Συνθετικά + Ατμός",
@ -767,11 +770,11 @@
"cool_drink": "Cool Drink", "cool_drink": "Cool Drink",
"eco": "Eco", "eco": "Eco",
"eco_mode": "Λειτουργία Eco", "eco_mode": "Λειτουργία Eco",
"fruits": "Fruits", "fruits": "Fruit",
"fruits_and_veg": "ΦΡΟΥΤΑ & ΛΑΧΑΝΙΚΑ", "fruits_and_veg": "ΦΡΟΥΤΑ & ΛΑΧΑΝΙΚΑ",
"fruit_and_veg": "Fruit & Veg", "fruit_and_veg": "Fruit & Veg",
"holiday": "Ρυθμίστε το ψυγείο στους 17°C και διατηρήστε την κατάψυξη σε λειτουργία για μεγάλο χρονικό διάστημα.", "holiday": "Ρυθμίστε το ψυγείο στους 17°C και διατηρήστε την κατάψυξη σε λειτουργία για μεγάλο χρονικό διάστημα.",
"keep_fresh": "0° Fresh", "keep_fresh": "0°C Fresh",
"milk_and_eggs": "Milk & Eggs", "milk_and_eggs": "Milk & Eggs",
"no_mode_selected": "Δεν επιλέχθηκε λειτουργία", "no_mode_selected": "Δεν επιλέχθηκε λειτουργία",
"quick_cool": "ΓΡΗΓΟΡΗ ΨΥΞΗ", "quick_cool": "ΓΡΗΓΟΡΗ ΨΥΞΗ",
@ -780,9 +783,9 @@
"soft_frozen": "Soft freezing", "soft_frozen": "Soft freezing",
"super_cool": "SUPER COOL", "super_cool": "SUPER COOL",
"super_freeze": "SUPER FREEZE", "super_freeze": "SUPER FREEZE",
"tea": "Cold drinks or Beverages", "tea": "Cold Drinks",
"vegetables": "Vegetables", "vegetables": "Vegetable",
"zero_fresh": "0° Fresh" "zero_fresh": "0°C Fresh"
}, },
"name": "Πρόγραμμα" "name": "Πρόγραμμα"
}, },
@ -1410,6 +1413,7 @@
"iot_active_wash_steam": "Ενεργό πλύσιμο 20' + Ατμός", "iot_active_wash_steam": "Ενεργό πλύσιμο 20' + Ατμός",
"iot_allergy_care_pro": "Allergy Care Επαγγελματικό", "iot_allergy_care_pro": "Allergy Care Επαγγελματικό",
"iot_all_in_one_59_steam": "Όλα σε Ένα 59' + Ατμός", "iot_all_in_one_59_steam": "Όλα σε Ένα 59' + Ατμός",
"iot_baby_60_steam": "Μωρουδιακά 60°C + ατμός",
"iot_checkup": "Έλεγχος", "iot_checkup": "Έλεγχος",
"iot_colour_59_steam": "Χρωματιστά 59' + ατμός", "iot_colour_59_steam": "Χρωματιστά 59' + ατμός",
"iot_cottons_steam": "Βαμβακερό + Ατμός", "iot_cottons_steam": "Βαμβακερό + Ατμός",
@ -1447,6 +1451,7 @@
"iot_hygiene_pro_steam": "Hygiene Pro + Ατμός", "iot_hygiene_pro_steam": "Hygiene Pro + Ατμός",
"iot_intensive_40_steam": "Εντατικό 40°C + ατμός", "iot_intensive_40_steam": "Εντατικό 40°C + ατμός",
"iot_jeans_60_steam": "Τζιν παντελόνια + ατμός", "iot_jeans_60_steam": "Τζιν παντελόνια + ατμός",
"iot_jeans_steam": "Τζιν παντελόνια + ατμός",
"iot_mixed_steam": "Μικτά + Ατμός", "iot_mixed_steam": "Μικτά + Ατμός",
"iot_mix_and_colour_59_steam": "Μικτά και χρωματιστά 59' + Ατμός", "iot_mix_and_colour_59_steam": "Μικτά και χρωματιστά 59' + Ατμός",
"iot_perfect_cotton_59_steam": "ΤΕΛΕΙΑ ΒΑΜΒΑΚΕΡΑ 59'", "iot_perfect_cotton_59_steam": "ΤΕΛΕΙΑ ΒΑΜΒΑΚΕΡΑ 59'",
@ -1569,6 +1574,7 @@
"iot_wash_sport_anti_odor": "Κατά της οσμής των αθλητικών ρούχων", "iot_wash_sport_anti_odor": "Κατά της οσμής των αθλητικών ρούχων",
"iot_wash_sport_anti_odor_zelig": "Κατά της οσμής των αθλητικών ρούχων", "iot_wash_sport_anti_odor_zelig": "Κατά της οσμής των αθλητικών ρούχων",
"iot_wash_stains_remover": "Αφαίρεση λεκέδων", "iot_wash_stains_remover": "Αφαίρεση λεκέδων",
"iot_wash_super_saving": "Εξαιρετική εξοικονόμηση 49'",
"iot_wash_swimsuits_and_bikinis": "Μαγιό", "iot_wash_swimsuits_and_bikinis": "Μαγιό",
"iot_wash_synthetic": "Συνθετικά", "iot_wash_synthetic": "Συνθετικά",
"iot_wash_synthetic_steam": "Συνθετικά + Ατμός", "iot_wash_synthetic_steam": "Συνθετικά + Ατμός",
@ -1653,11 +1659,11 @@
"cool_drink": "Cool Drink", "cool_drink": "Cool Drink",
"eco": "Eco", "eco": "Eco",
"eco_mode": "Λειτουργία Eco", "eco_mode": "Λειτουργία Eco",
"fruits": "Fruits", "fruits": "Fruit",
"fruits_and_veg": "ΦΡΟΥΤΑ & ΛΑΧΑΝΙΚΑ", "fruits_and_veg": "ΦΡΟΥΤΑ & ΛΑΧΑΝΙΚΑ",
"fruit_and_veg": "Fruit & Veg", "fruit_and_veg": "Fruit & Veg",
"holiday": "Ρυθμίστε το ψυγείο στους 17°C και διατηρήστε την κατάψυξη σε λειτουργία για μεγάλο χρονικό διάστημα.", "holiday": "Ρυθμίστε το ψυγείο στους 17°C και διατηρήστε την κατάψυξη σε λειτουργία για μεγάλο χρονικό διάστημα.",
"keep_fresh": "0° Fresh", "keep_fresh": "0°C Fresh",
"milk_and_eggs": "Milk & Eggs", "milk_and_eggs": "Milk & Eggs",
"no_mode_selected": "Δεν επιλέχθηκε λειτουργία", "no_mode_selected": "Δεν επιλέχθηκε λειτουργία",
"quick_cool": "ΓΡΗΓΟΡΗ ΨΥΞΗ", "quick_cool": "ΓΡΗΓΟΡΗ ΨΥΞΗ",
@ -1666,9 +1672,9 @@
"soft_frozen": "Soft freezing", "soft_frozen": "Soft freezing",
"super_cool": "SUPER COOL", "super_cool": "SUPER COOL",
"super_freeze": "SUPER FREEZE", "super_freeze": "SUPER FREEZE",
"tea": "Cold drinks or Beverages", "tea": "Cold Drinks",
"vegetables": "Vegetables", "vegetables": "Vegetable",
"zero_fresh": "0° Fresh" "zero_fresh": "0°C Fresh"
}, },
"name": "Πρόγραμμα" "name": "Πρόγραμμα"
}, },
@ -1764,6 +1770,28 @@
"unknown": "unknown" "unknown": "unknown"
}, },
"name": "Επίπεδο λεκέδων" "name": "Επίπεδο λεκέδων"
},
"fan_horizontal": {
"name": "Κατεύθυνση ανεμιστήρα Οριζόντιος",
"state": {
"position_1": "Σταθερός - Θέση 1",
"position_2": "Σταθερός - Θέση 2",
"position_3": "Σταθερός - Θέση 3",
"position_4": "Σταθερός - Θέση 4",
"position_5": "Σταθερός - Θέση 5",
"swing": "Ταλάντευση"
}
},
"fan_vertical": {
"name": "Κατεύθυνση ανεμιστήρα Κατακόρυφος",
"state": {
"position_1": "Σταθερός - Θέση 1",
"position_2": "Σταθερός - Θέση 2",
"position_3": "Σταθερός - Θέση 3",
"position_4": "Σταθερός - Θέση 4",
"position_5": "Σταθερός - Θέση 5",
"swing": "Ταλάντευση"
}
} }
}, },
"switch": { "switch": {
@ -2021,6 +2049,9 @@
}, },
"aroma_time_off": { "aroma_time_off": {
"name": "Μεταδότης διάχυσης (ΑΠΕΝΕΡΓΟΠΟΙΗΣΗ)" "name": "Μεταδότης διάχυσης (ΑΠΕΝΕΡΓΟΠΟΙΗΣΗ)"
},
"my_zone_temp_sel": {
"name": "Στοχευμένη θερμοκρασία My Zone"
} }
}, },
"climate": { "climate": {
@ -2155,6 +2186,9 @@
} }
} }
} }
},
"my_zone": {
"name": "My Zone"
} }
}, },
"fan": { "fan": {

View File

@ -425,7 +425,7 @@
"iot_dry_tablecloths": "Tablecloths", "iot_dry_tablecloths": "Tablecloths",
"iot_dry_technical_fabrics": "Technical Fabrics", "iot_dry_technical_fabrics": "Technical Fabrics",
"iot_dry_warm_embrace": "Warm Embrace", "iot_dry_warm_embrace": "Warm Embrace",
"iot_dry_wool": "Wool", "iot_dry_wool": "Wool Dry",
"jeans": "Jeans", "jeans": "Jeans",
"mix_and_dry": "Mix&Dry", "mix_and_dry": "Mix&Dry",
"pets": "Pets", "pets": "Pets",
@ -445,7 +445,7 @@
"super_easy_iron_xxl": "Super Easy Iron XXL", "super_easy_iron_xxl": "Super Easy Iron XXL",
"super_fast_cottons": "Super Fast Cottons", "super_fast_cottons": "Super Fast Cottons",
"super_fast_delicates": "Super Fast Delicates", "super_fast_delicates": "Super Fast Delicates",
"synthetics": "Syntethics", "synthetics": "Synthetics",
"total_care": "Total Care", "total_care": "Total Care",
"trainers": "Trainers", "trainers": "Trainers",
"ultra_care": "Ultra Care", "ultra_care": "Ultra Care",
@ -537,6 +537,7 @@
"iot_active_wash_steam": "Active Wash 20' + Steam", "iot_active_wash_steam": "Active Wash 20' + Steam",
"iot_allergy_care_pro": "Allergy Care Pro", "iot_allergy_care_pro": "Allergy Care Pro",
"iot_all_in_one_59_steam": "All in One 59' + Steam", "iot_all_in_one_59_steam": "All in One 59' + Steam",
"iot_baby_60_steam": "All Baby 60°C + Steam",
"iot_checkup": "Check-Up", "iot_checkup": "Check-Up",
"iot_colour_59_steam": "Colored 59' + Steam", "iot_colour_59_steam": "Colored 59' + Steam",
"iot_cottons_steam": "Cotton + Steam", "iot_cottons_steam": "Cotton + Steam",
@ -574,6 +575,7 @@
"iot_hygiene_pro_steam": "Hygiene Pro + Steam", "iot_hygiene_pro_steam": "Hygiene Pro + Steam",
"iot_intensive_40_steam": "Intensive 40°C + Steam", "iot_intensive_40_steam": "Intensive 40°C + Steam",
"iot_jeans_60_steam": "Jeans + Steam", "iot_jeans_60_steam": "Jeans + Steam",
"iot_jeans_steam": "Jeans + Steam",
"iot_mixed_steam": "Mixed + Steam", "iot_mixed_steam": "Mixed + Steam",
"iot_mix_and_colour_59_steam": "Mixed and Coloured 59' + Steam", "iot_mix_and_colour_59_steam": "Mixed and Coloured 59' + Steam",
"iot_perfect_cotton_59_steam": "Perfect Cotton 59' + Steam", "iot_perfect_cotton_59_steam": "Perfect Cotton 59' + Steam",
@ -586,6 +588,8 @@
"iot_special_39_full_load_steam": "Special 39' + Steam", "iot_special_39_full_load_steam": "Special 39' + Steam",
"iot_steam_hygiene_plus": "Hygiene Plus + Steam", "iot_steam_hygiene_plus": "Hygiene Plus + Steam",
"iot_synthetic_and_coloured_steam": "Synthetic and Coloured + Steam", "iot_synthetic_and_coloured_steam": "Synthetic and Coloured + Steam",
"iot_wash_100_custom_wash": "100% Custom Wash",
"iot_wash_100_custom_wash_steam": "100% Custom Wash + Steam",
"iot_wash_and_dry": "Wash and dry", "iot_wash_and_dry": "Wash and dry",
"iot_wash_anti_mites": "Anti-mites", "iot_wash_anti_mites": "Anti-mites",
"iot_wash_anti_odor": "Anti-odour", "iot_wash_anti_odor": "Anti-odour",
@ -781,11 +785,11 @@
"cool_drink": "Cool Drink", "cool_drink": "Cool Drink",
"eco": "Eco", "eco": "Eco",
"eco_mode": "Eco mode", "eco_mode": "Eco mode",
"fruits": "Fruits", "fruits": "Fruit",
"fruits_and_veg": "Fruit&Veg", "fruits_and_veg": "Fruit&Veg",
"fruit_and_veg": "Fruit&Veg", "fruit_and_veg": "Fruit&Veg",
"holiday": "HOLIDAY", "holiday": "HOLIDAY",
"keep_fresh": "0° Fresh", "keep_fresh": "0°C Fresh",
"milk_and_eggs": "Milk & Eggs", "milk_and_eggs": "Milk & Eggs",
"no_mode_selected": "No mode selected", "no_mode_selected": "No mode selected",
"quick_cool": "QUICK COOL", "quick_cool": "QUICK COOL",
@ -796,9 +800,9 @@
"soft_frozen\n": "Soft freezing", "soft_frozen\n": "Soft freezing",
"super_cool": "SUPER COOL", "super_cool": "SUPER COOL",
"super_freeze": "SUPER FREEZE", "super_freeze": "SUPER FREEZE",
"tea": "Cold drinks or Beverages", "tea": "Cold Drinks",
"vegetables": "Vegetables", "vegetables": "Vegetable",
"zero_fresh": "0° Fresh" "zero_fresh": "0°C Fresh"
}, },
"name": "Program" "name": "Program"
}, },
@ -1324,7 +1328,7 @@
"iot_dry_tablecloths": "Tablecloths", "iot_dry_tablecloths": "Tablecloths",
"iot_dry_technical_fabrics": "Technical Fabrics", "iot_dry_technical_fabrics": "Technical Fabrics",
"iot_dry_warm_embrace": "Warm Embrace", "iot_dry_warm_embrace": "Warm Embrace",
"iot_dry_wool": "Wool", "iot_dry_wool": "Wool Dry",
"jeans": "Jeans", "jeans": "Jeans",
"mix_and_dry": "Mix&Dry", "mix_and_dry": "Mix&Dry",
"pets": "Pets", "pets": "Pets",
@ -1344,7 +1348,7 @@
"super_easy_iron_xxl": "Super Easy Iron XXL", "super_easy_iron_xxl": "Super Easy Iron XXL",
"super_fast_cottons": "Super Fast Cottons", "super_fast_cottons": "Super Fast Cottons",
"super_fast_delicates": "Super Fast Delicates", "super_fast_delicates": "Super Fast Delicates",
"synthetics": "Syntethics", "synthetics": "Synthetics",
"total_care": "Total Care", "total_care": "Total Care",
"trainers": "Trainers", "trainers": "Trainers",
"ultra_care": "Ultra Care", "ultra_care": "Ultra Care",
@ -1436,6 +1440,7 @@
"iot_active_wash_steam": "Active Wash 20' + Steam", "iot_active_wash_steam": "Active Wash 20' + Steam",
"iot_allergy_care_pro": "Allergy Care Pro", "iot_allergy_care_pro": "Allergy Care Pro",
"iot_all_in_one_59_steam": "All in One 59' + Steam", "iot_all_in_one_59_steam": "All in One 59' + Steam",
"iot_baby_60_steam": "All Baby 60°C + Steam",
"iot_checkup": "Check-Up", "iot_checkup": "Check-Up",
"iot_colour_59_steam": "Colored 59' + Steam", "iot_colour_59_steam": "Colored 59' + Steam",
"iot_cottons_steam": "Cotton + Steam", "iot_cottons_steam": "Cotton + Steam",
@ -1473,6 +1478,7 @@
"iot_hygiene_pro_steam": "Hygiene Pro + Steam", "iot_hygiene_pro_steam": "Hygiene Pro + Steam",
"iot_intensive_40_steam": "Intensive 40°C + Steam", "iot_intensive_40_steam": "Intensive 40°C + Steam",
"iot_jeans_60_steam": "Jeans + Steam", "iot_jeans_60_steam": "Jeans + Steam",
"iot_jeans_steam": "Jeans + Steam",
"iot_mixed_steam": "Mixed + Steam", "iot_mixed_steam": "Mixed + Steam",
"iot_mix_and_colour_59_steam": "Mixed and Coloured 59' + Steam", "iot_mix_and_colour_59_steam": "Mixed and Coloured 59' + Steam",
"iot_perfect_cotton_59_steam": "Perfect Cotton 59' + Steam", "iot_perfect_cotton_59_steam": "Perfect Cotton 59' + Steam",
@ -1485,6 +1491,8 @@
"iot_special_39_full_load_steam": "Special 39' + Steam", "iot_special_39_full_load_steam": "Special 39' + Steam",
"iot_steam_hygiene_plus": "Hygiene Plus + Steam", "iot_steam_hygiene_plus": "Hygiene Plus + Steam",
"iot_synthetic_and_coloured_steam": "Synthetic and Coloured + Steam", "iot_synthetic_and_coloured_steam": "Synthetic and Coloured + Steam",
"iot_wash_100_custom_wash": "100% Custom Wash",
"iot_wash_100_custom_wash_steam": "100% Custom Wash + Steam",
"iot_wash_and_dry": "Wash and dry", "iot_wash_and_dry": "Wash and dry",
"iot_wash_anti_mites": "Anti-mites", "iot_wash_anti_mites": "Anti-mites",
"iot_wash_anti_odor": "Anti-odour", "iot_wash_anti_odor": "Anti-odour",
@ -1680,11 +1688,11 @@
"cool_drink": "Cool Drink", "cool_drink": "Cool Drink",
"eco": "Eco", "eco": "Eco",
"eco_mode": "Eco mode", "eco_mode": "Eco mode",
"fruits": "Fruits", "fruits": "Fruit",
"fruits_and_veg": "Fruit&Veg", "fruits_and_veg": "Fruit&Veg",
"fruit_and_veg": "Fruit&Veg", "fruit_and_veg": "Fruit&Veg",
"holiday": "HOLIDAY", "holiday": "HOLIDAY",
"keep_fresh": "0° Fresh", "keep_fresh": "0°C Fresh",
"milk_and_eggs": "Milk & Eggs", "milk_and_eggs": "Milk & Eggs",
"no_mode_selected": "No mode selected", "no_mode_selected": "No mode selected",
"quick_cool": "QUICK COOL", "quick_cool": "QUICK COOL",
@ -1695,9 +1703,9 @@
"soft_frozen\n": "Soft freezing", "soft_frozen\n": "Soft freezing",
"super_cool": "SUPER COOL", "super_cool": "SUPER COOL",
"super_freeze": "SUPER FREEZE", "super_freeze": "SUPER FREEZE",
"tea": "Cold drinks or Beverages", "tea": "Cold Drinks",
"vegetables": "Vegetables", "vegetables": "Vegetable",
"zero_fresh": "0° Fresh" "zero_fresh": "0°C Fresh"
}, },
"name": "Program" "name": "Program"
}, },
@ -1793,6 +1801,28 @@
"unknown": "unknown" "unknown": "unknown"
}, },
"name": "Stain level" "name": "Stain level"
},
"fan_horizontal": {
"name": "Fan direction Horizontal",
"state": {
"position_1": "Fixed - Position 1",
"position_2": "Fixed - Position 2",
"position_3": "Fixed - Position 3",
"position_4": "Fixed - Position 4",
"position_5": "Fixed - Position 5",
"swing": "Swing"
}
},
"fan_vertical": {
"name": "Fan direction Vertical",
"state": {
"position_1": "Fixed - Position 1",
"position_2": "Fixed - Position 2",
"position_3": "Fixed - Position 3",
"position_4": "Fixed - Position 4",
"position_5": "Fixed - Position 5",
"swing": "Swing"
}
} }
}, },
"switch": { "switch": {
@ -2050,6 +2080,9 @@
}, },
"aroma_time_off": { "aroma_time_off": {
"name": "Diffuser (OFF)" "name": "Diffuser (OFF)"
},
"my_zone_temp_sel": {
"name": "Target temperature My Zone"
} }
}, },
"climate": { "climate": {
@ -2186,6 +2219,9 @@
} }
} }
} }
},
"my_zone": {
"name": "My Zone"
} }
}, },
"fan": { "fan": {

View File

@ -524,6 +524,7 @@
"iot_active_wash_steam": "Lavado activo 20' + Vapor", "iot_active_wash_steam": "Lavado activo 20' + Vapor",
"iot_allergy_care_pro": "Allergy Care Pro", "iot_allergy_care_pro": "Allergy Care Pro",
"iot_all_in_one_59_steam": "Todo en uno 59 + Vapor", "iot_all_in_one_59_steam": "Todo en uno 59 + Vapor",
"iot_baby_60_steam": "All Baby 60°C + Vapor",
"iot_checkup": "Revisión", "iot_checkup": "Revisión",
"iot_colour_59_steam": "Colores 59' + vapor", "iot_colour_59_steam": "Colores 59' + vapor",
"iot_cottons_steam": "Algodón + Vapor", "iot_cottons_steam": "Algodón + Vapor",
@ -561,6 +562,7 @@
"iot_hygiene_pro_steam": "Higiene Pro + Vapor", "iot_hygiene_pro_steam": "Higiene Pro + Vapor",
"iot_intensive_40_steam": "Intensivo 40°C + vapor", "iot_intensive_40_steam": "Intensivo 40°C + vapor",
"iot_jeans_60_steam": "Vaqueros + Vapor", "iot_jeans_60_steam": "Vaqueros + Vapor",
"iot_jeans_steam": "Vaqueros + Vapor",
"iot_mixed_steam": "Ropa mixta + Vapor", "iot_mixed_steam": "Ropa mixta + Vapor",
"iot_mix_and_colour_59_steam": "Mixta y de color 59' + Vapor", "iot_mix_and_colour_59_steam": "Mixta y de color 59' + Vapor",
"iot_perfect_cotton_59_steam": "Algodon Perfecto 59'", "iot_perfect_cotton_59_steam": "Algodon Perfecto 59'",
@ -683,6 +685,7 @@
"iot_wash_sport_anti_odor": "Ropa deportiva antiolor", "iot_wash_sport_anti_odor": "Ropa deportiva antiolor",
"iot_wash_sport_anti_odor_zelig": "Ropa deportiva antiolor", "iot_wash_sport_anti_odor_zelig": "Ropa deportiva antiolor",
"iot_wash_stains_remover": "Quitamanchas", "iot_wash_stains_remover": "Quitamanchas",
"iot_wash_super_saving": "Súper Ahorro 49'",
"iot_wash_swimsuits_and_bikinis": "Trajes de baño", "iot_wash_swimsuits_and_bikinis": "Trajes de baño",
"iot_wash_synthetic": "Ropa sintética", "iot_wash_synthetic": "Ropa sintética",
"iot_wash_synthetic_steam": "Ropa sintética + Vapor", "iot_wash_synthetic_steam": "Ropa sintética + Vapor",
@ -767,11 +770,11 @@
"cool_drink": "Cool Drink", "cool_drink": "Cool Drink",
"eco": "Eco", "eco": "Eco",
"eco_mode": "Modo Eco", "eco_mode": "Modo Eco",
"fruits": "Fruits", "fruits": "Fruit",
"fruits_and_veg": "Frutas Y Verduras", "fruits_and_veg": "Frutas Y Verduras",
"fruit_and_veg": "Frutas Y Verduras", "fruit_and_veg": "Frutas Y Verduras",
"holiday": "VACACIONES", "holiday": "VACACIONES",
"keep_fresh": "0° Fresh", "keep_fresh": "0°C Fresh",
"milk_and_eggs": "Milk & Eggs", "milk_and_eggs": "Milk & Eggs",
"no_mode_selected": "No se ha seleccionado ningún modo", "no_mode_selected": "No se ha seleccionado ningún modo",
"quick_cool": "QUICK COOL", "quick_cool": "QUICK COOL",
@ -780,9 +783,9 @@
"soft_frozen": "Soft freezing", "soft_frozen": "Soft freezing",
"super_cool": "SUPER COOL", "super_cool": "SUPER COOL",
"super_freeze": "SUPER FREEZE", "super_freeze": "SUPER FREEZE",
"tea": "Cold drinks or Beverages", "tea": "Cold Drinks",
"vegetables": "Vegetables", "vegetables": "Vegetable",
"zero_fresh": "0° Fresh" "zero_fresh": "0°C Fresh"
}, },
"name": "Programa" "name": "Programa"
}, },
@ -1410,6 +1413,7 @@
"iot_active_wash_steam": "Lavado activo 20' + Vapor", "iot_active_wash_steam": "Lavado activo 20' + Vapor",
"iot_allergy_care_pro": "Allergy Care Pro", "iot_allergy_care_pro": "Allergy Care Pro",
"iot_all_in_one_59_steam": "Todo en uno 59 + Vapor", "iot_all_in_one_59_steam": "Todo en uno 59 + Vapor",
"iot_baby_60_steam": "All Baby 60°C + Vapor",
"iot_checkup": "Revisión", "iot_checkup": "Revisión",
"iot_colour_59_steam": "Colores 59' + vapor", "iot_colour_59_steam": "Colores 59' + vapor",
"iot_cottons_steam": "Algodón + Vapor", "iot_cottons_steam": "Algodón + Vapor",
@ -1447,6 +1451,7 @@
"iot_hygiene_pro_steam": "Higiene Pro + Vapor", "iot_hygiene_pro_steam": "Higiene Pro + Vapor",
"iot_intensive_40_steam": "Intensivo 40°C + vapor", "iot_intensive_40_steam": "Intensivo 40°C + vapor",
"iot_jeans_60_steam": "Vaqueros + Vapor", "iot_jeans_60_steam": "Vaqueros + Vapor",
"iot_jeans_steam": "Vaqueros + Vapor",
"iot_mixed_steam": "Ropa mixta + Vapor", "iot_mixed_steam": "Ropa mixta + Vapor",
"iot_mix_and_colour_59_steam": "Mixta y de color 59' + Vapor", "iot_mix_and_colour_59_steam": "Mixta y de color 59' + Vapor",
"iot_perfect_cotton_59_steam": "Algodon Perfecto 59'", "iot_perfect_cotton_59_steam": "Algodon Perfecto 59'",
@ -1569,6 +1574,7 @@
"iot_wash_sport_anti_odor": "Ropa deportiva antiolor", "iot_wash_sport_anti_odor": "Ropa deportiva antiolor",
"iot_wash_sport_anti_odor_zelig": "Ropa deportiva antiolor", "iot_wash_sport_anti_odor_zelig": "Ropa deportiva antiolor",
"iot_wash_stains_remover": "Quitamanchas", "iot_wash_stains_remover": "Quitamanchas",
"iot_wash_super_saving": "Súper Ahorro 49'",
"iot_wash_swimsuits_and_bikinis": "Trajes de baño", "iot_wash_swimsuits_and_bikinis": "Trajes de baño",
"iot_wash_synthetic": "Ropa sintética", "iot_wash_synthetic": "Ropa sintética",
"iot_wash_synthetic_steam": "Ropa sintética + Vapor", "iot_wash_synthetic_steam": "Ropa sintética + Vapor",
@ -1653,11 +1659,11 @@
"cool_drink": "Cool Drink", "cool_drink": "Cool Drink",
"eco": "Eco", "eco": "Eco",
"eco_mode": "Modo Eco", "eco_mode": "Modo Eco",
"fruits": "Fruits", "fruits": "Fruit",
"fruits_and_veg": "Frutas Y Verduras", "fruits_and_veg": "Frutas Y Verduras",
"fruit_and_veg": "Frutas Y Verduras", "fruit_and_veg": "Frutas Y Verduras",
"holiday": "VACACIONES", "holiday": "VACACIONES",
"keep_fresh": "0° Fresh", "keep_fresh": "0°C Fresh",
"milk_and_eggs": "Milk & Eggs", "milk_and_eggs": "Milk & Eggs",
"no_mode_selected": "No se ha seleccionado ningún modo", "no_mode_selected": "No se ha seleccionado ningún modo",
"quick_cool": "QUICK COOL", "quick_cool": "QUICK COOL",
@ -1666,9 +1672,9 @@
"soft_frozen": "Soft freezing", "soft_frozen": "Soft freezing",
"super_cool": "SUPER COOL", "super_cool": "SUPER COOL",
"super_freeze": "SUPER FREEZE", "super_freeze": "SUPER FREEZE",
"tea": "Cold drinks or Beverages", "tea": "Cold Drinks",
"vegetables": "Vegetables", "vegetables": "Vegetable",
"zero_fresh": "0° Fresh" "zero_fresh": "0°C Fresh"
}, },
"name": "Programa" "name": "Programa"
}, },
@ -1764,6 +1770,28 @@
"unknown": "unknown" "unknown": "unknown"
}, },
"name": "Nivel de manchas" "name": "Nivel de manchas"
},
"fan_horizontal": {
"name": "Dirección del ventilador Horizontal",
"state": {
"position_1": "Fijo - Posición 1",
"position_2": "Fijo - Posición 2",
"position_3": "Fijo - Posición 3",
"position_4": "Fijo - Posición 4",
"position_5": "Fijo - Posición 5",
"swing": "Oscilar"
}
},
"fan_vertical": {
"name": "Dirección del ventilador Vertical",
"state": {
"position_1": "Fijo - Posición 1",
"position_2": "Fijo - Posición 2",
"position_3": "Fijo - Posición 3",
"position_4": "Fijo - Posición 4",
"position_5": "Fijo - Posición 5",
"swing": "Oscilar"
}
} }
}, },
"switch": { "switch": {
@ -2021,6 +2049,9 @@
}, },
"aroma_time_off": { "aroma_time_off": {
"name": "Difusor (APAGADO)" "name": "Difusor (APAGADO)"
},
"my_zone_temp_sel": {
"name": "Temperatura deseada My Zone"
} }
}, },
"climate": { "climate": {
@ -2155,6 +2186,9 @@
} }
} }
} }
},
"my_zone": {
"name": "My Zone"
} }
}, },
"fan": { "fan": {

View File

@ -524,6 +524,7 @@
"iot_active_wash_steam": "Lavage actif 20' + vapeur", "iot_active_wash_steam": "Lavage actif 20' + vapeur",
"iot_allergy_care_pro": "Soin Allergie Pro", "iot_allergy_care_pro": "Soin Allergie Pro",
"iot_all_in_one_59_steam": "Tout-en-un 59' + vapeur", "iot_all_in_one_59_steam": "Tout-en-un 59' + vapeur",
"iot_baby_60_steam": "Bébé 60°C + vapeur",
"iot_checkup": "Vérification", "iot_checkup": "Vérification",
"iot_colour_59_steam": "Couleurs 59' + Vapeur", "iot_colour_59_steam": "Couleurs 59' + Vapeur",
"iot_cottons_steam": "Coton + Vapeur d'eau", "iot_cottons_steam": "Coton + Vapeur d'eau",
@ -561,6 +562,7 @@
"iot_hygiene_pro_steam": "Hygiene Pro + Vapeur", "iot_hygiene_pro_steam": "Hygiene Pro + Vapeur",
"iot_intensive_40_steam": "Intensif 40°C + Vapeur", "iot_intensive_40_steam": "Intensif 40°C + Vapeur",
"iot_jeans_60_steam": "Jeans + vapeur", "iot_jeans_60_steam": "Jeans + vapeur",
"iot_jeans_steam": "Jeans + vapeur",
"iot_mixed_steam": "Tissus mélangés + Vapeur d'eau", "iot_mixed_steam": "Tissus mélangés + Vapeur d'eau",
"iot_mix_and_colour_59_steam": "Mixtes et couleurs 59 + vapeur", "iot_mix_and_colour_59_steam": "Mixtes et couleurs 59 + vapeur",
"iot_perfect_cotton_59_steam": "Coton Parfait 59'", "iot_perfect_cotton_59_steam": "Coton Parfait 59'",
@ -683,6 +685,7 @@
"iot_wash_sport_anti_odor": "Anti-odeur pour les vêtements de sport", "iot_wash_sport_anti_odor": "Anti-odeur pour les vêtements de sport",
"iot_wash_sport_anti_odor_zelig": "Anti-odeur pour les vêtements de sport", "iot_wash_sport_anti_odor_zelig": "Anti-odeur pour les vêtements de sport",
"iot_wash_stains_remover": "Détachant", "iot_wash_stains_remover": "Détachant",
"iot_wash_super_saving": "Super économique 49'",
"iot_wash_swimsuits_and_bikinis": "Maillots de bain", "iot_wash_swimsuits_and_bikinis": "Maillots de bain",
"iot_wash_synthetic": "Synthétiques", "iot_wash_synthetic": "Synthétiques",
"iot_wash_synthetic_steam": "Synthétiques + Vapeur d'eau", "iot_wash_synthetic_steam": "Synthétiques + Vapeur d'eau",
@ -767,11 +770,11 @@
"cool_drink": "Cool Drink", "cool_drink": "Cool Drink",
"eco": "Eco", "eco": "Eco",
"eco_mode": "Mode Eco", "eco_mode": "Mode Eco",
"fruits": "Fruits", "fruits": "Fruit",
"fruits_and_veg": "Fruit&Veg", "fruits_and_veg": "Fruit&Veg",
"fruit_and_veg": "Fruit & Veg", "fruit_and_veg": "Fruit & Veg",
"holiday": "HOLIDAY", "holiday": "HOLIDAY",
"keep_fresh": "0° Fresh", "keep_fresh": "0°C Fresh",
"milk_and_eggs": "Milk & Eggs", "milk_and_eggs": "Milk & Eggs",
"no_mode_selected": "Aucun mode sélectionné", "no_mode_selected": "Aucun mode sélectionné",
"quick_cool": "QUICK COOL", "quick_cool": "QUICK COOL",
@ -780,9 +783,9 @@
"soft_frozen": "Soft freezing", "soft_frozen": "Soft freezing",
"super_cool": "SUPER COOL", "super_cool": "SUPER COOL",
"super_freeze": "SUPER FREEZE", "super_freeze": "SUPER FREEZE",
"tea": "Cold drinks or Beverages", "tea": "Cold Drinks",
"vegetables": "Vegetables", "vegetables": "Vegetable",
"zero_fresh": "0° Fresh" "zero_fresh": "0°C Fresh"
}, },
"name": "Programme" "name": "Programme"
}, },
@ -1410,6 +1413,7 @@
"iot_active_wash_steam": "Lavage actif 20' + vapeur", "iot_active_wash_steam": "Lavage actif 20' + vapeur",
"iot_allergy_care_pro": "Soin Allergie Pro", "iot_allergy_care_pro": "Soin Allergie Pro",
"iot_all_in_one_59_steam": "Tout-en-un 59' + vapeur", "iot_all_in_one_59_steam": "Tout-en-un 59' + vapeur",
"iot_baby_60_steam": "Bébé 60°C + vapeur",
"iot_checkup": "Vérification", "iot_checkup": "Vérification",
"iot_colour_59_steam": "Couleurs 59' + Vapeur", "iot_colour_59_steam": "Couleurs 59' + Vapeur",
"iot_cottons_steam": "Coton + Vapeur d'eau", "iot_cottons_steam": "Coton + Vapeur d'eau",
@ -1447,6 +1451,7 @@
"iot_hygiene_pro_steam": "Hygiene Pro + Vapeur", "iot_hygiene_pro_steam": "Hygiene Pro + Vapeur",
"iot_intensive_40_steam": "Intensif 40°C + Vapeur", "iot_intensive_40_steam": "Intensif 40°C + Vapeur",
"iot_jeans_60_steam": "Jeans + vapeur", "iot_jeans_60_steam": "Jeans + vapeur",
"iot_jeans_steam": "Jeans + vapeur",
"iot_mixed_steam": "Tissus mélangés + Vapeur d'eau", "iot_mixed_steam": "Tissus mélangés + Vapeur d'eau",
"iot_mix_and_colour_59_steam": "Mixtes et couleurs 59 + vapeur", "iot_mix_and_colour_59_steam": "Mixtes et couleurs 59 + vapeur",
"iot_perfect_cotton_59_steam": "Coton Parfait 59'", "iot_perfect_cotton_59_steam": "Coton Parfait 59'",
@ -1569,6 +1574,7 @@
"iot_wash_sport_anti_odor": "Anti-odeur pour les vêtements de sport", "iot_wash_sport_anti_odor": "Anti-odeur pour les vêtements de sport",
"iot_wash_sport_anti_odor_zelig": "Anti-odeur pour les vêtements de sport", "iot_wash_sport_anti_odor_zelig": "Anti-odeur pour les vêtements de sport",
"iot_wash_stains_remover": "Détachant", "iot_wash_stains_remover": "Détachant",
"iot_wash_super_saving": "Super économique 49'",
"iot_wash_swimsuits_and_bikinis": "Maillots de bain", "iot_wash_swimsuits_and_bikinis": "Maillots de bain",
"iot_wash_synthetic": "Synthétiques", "iot_wash_synthetic": "Synthétiques",
"iot_wash_synthetic_steam": "Synthétiques + Vapeur d'eau", "iot_wash_synthetic_steam": "Synthétiques + Vapeur d'eau",
@ -1653,11 +1659,11 @@
"cool_drink": "Cool Drink", "cool_drink": "Cool Drink",
"eco": "Eco", "eco": "Eco",
"eco_mode": "Mode Eco", "eco_mode": "Mode Eco",
"fruits": "Fruits", "fruits": "Fruit",
"fruits_and_veg": "Fruit&Veg", "fruits_and_veg": "Fruit&Veg",
"fruit_and_veg": "Fruit & Veg", "fruit_and_veg": "Fruit & Veg",
"holiday": "HOLIDAY", "holiday": "HOLIDAY",
"keep_fresh": "0° Fresh", "keep_fresh": "0°C Fresh",
"milk_and_eggs": "Milk & Eggs", "milk_and_eggs": "Milk & Eggs",
"no_mode_selected": "Aucun mode sélectionné", "no_mode_selected": "Aucun mode sélectionné",
"quick_cool": "QUICK COOL", "quick_cool": "QUICK COOL",
@ -1666,9 +1672,9 @@
"soft_frozen": "Soft freezing", "soft_frozen": "Soft freezing",
"super_cool": "SUPER COOL", "super_cool": "SUPER COOL",
"super_freeze": "SUPER FREEZE", "super_freeze": "SUPER FREEZE",
"tea": "Cold drinks or Beverages", "tea": "Cold Drinks",
"vegetables": "Vegetables", "vegetables": "Vegetable",
"zero_fresh": "0° Fresh" "zero_fresh": "0°C Fresh"
}, },
"name": "Programme" "name": "Programme"
}, },
@ -1764,6 +1770,28 @@
"unknown": "unknown" "unknown": "unknown"
}, },
"name": "Niveau de salissure" "name": "Niveau de salissure"
},
"fan_horizontal": {
"name": "Direction du ventilateur Horizontale",
"state": {
"position_1": "Fixe - Position 1",
"position_2": "Fixe - Position 2",
"position_3": "Fixe - Position 3",
"position_4": "Fixe - Position 4",
"position_5": "Fixe - Position 5",
"swing": "Oscillation"
}
},
"fan_vertical": {
"name": "Direction du ventilateur Verticale",
"state": {
"position_1": "Fixe - Position 1",
"position_2": "Fixe - Position 2",
"position_3": "Fixe - Position 3",
"position_4": "Fixe - Position 4",
"position_5": "Fixe - Position 5",
"swing": "Oscillation"
}
} }
}, },
"switch": { "switch": {
@ -2021,6 +2049,9 @@
}, },
"aroma_time_off": { "aroma_time_off": {
"name": "Diffuseur (OFF)" "name": "Diffuseur (OFF)"
},
"my_zone_temp_sel": {
"name": "Température cible My Zone"
} }
}, },
"climate": { "climate": {
@ -2155,6 +2186,9 @@
} }
} }
} }
},
"my_zone": {
"name": "My Zone"
} }
}, },
"fan": { "fan": {

View File

@ -155,6 +155,7 @@
"intensive_40": "40°C אינטנסיביים", "intensive_40": "40°C אינטנסיביים",
"iot_allergy_care_pro": "Allergy Care Pro", "iot_allergy_care_pro": "Allergy Care Pro",
"iot_all_in_one_59_steam": "All in One 59 '", "iot_all_in_one_59_steam": "All in One 59 '",
"iot_baby_60_steam": "All Baby 60°C + Steam",
"iot_checkup": "בְּדִיקָה", "iot_checkup": "בְּדִיקָה",
"iot_delicati_59_steam": "DELICATI_59", "iot_delicati_59_steam": "DELICATI_59",
"iot_dry_air_refresh": "רענון אוויר", "iot_dry_air_refresh": "רענון אוויר",
@ -311,15 +312,16 @@
"chiller": "Quick cool", "chiller": "Quick cool",
"cold_drinks": "Soft chill", "cold_drinks": "Soft chill",
"cool_drink": "Cool Drink", "cool_drink": "Cool Drink",
"fruits": "Fruits", "fruits": "Fruit",
"fruit_and_veg": "Fruit & Veg", "fruit_and_veg": "Fruit & Veg",
"keep_fresh": "0° Fresh", "keep_fresh": "0°C Fresh",
"milk_and_eggs": "Milk & Eggs", "milk_and_eggs": "Milk & Eggs",
"sea_food": "Ready to cook meal", "sea_food": "Ready to cook meal",
"smart_mode_title": "Smart Mode", "smart_mode_title": "Smart Mode",
"soft_frozen": "Soft freezing", "soft_frozen": "Soft freezing",
"tea": "Cold drinks or Beverages", "tea": "Cold Drinks",
"vegetables": "Vegetables" "vegetables": "Vegetable",
"zero_fresh": "0°C Fresh"
}, },
"name": "Program" "name": "Program"
}, },
@ -569,6 +571,7 @@
"intensive_40": "40°C אינטנסיביים", "intensive_40": "40°C אינטנסיביים",
"iot_allergy_care_pro": "Allergy Care Pro", "iot_allergy_care_pro": "Allergy Care Pro",
"iot_all_in_one_59_steam": "All in One 59 '", "iot_all_in_one_59_steam": "All in One 59 '",
"iot_baby_60_steam": "All Baby 60°C + Steam",
"iot_checkup": "בְּדִיקָה", "iot_checkup": "בְּדִיקָה",
"iot_delicati_59_steam": "DELICATI_59", "iot_delicati_59_steam": "DELICATI_59",
"iot_dry_air_refresh": "רענון אוויר", "iot_dry_air_refresh": "רענון אוויר",
@ -725,15 +728,16 @@
"chiller": "Quick cool", "chiller": "Quick cool",
"cold_drinks": "Soft chill", "cold_drinks": "Soft chill",
"cool_drink": "Cool Drink", "cool_drink": "Cool Drink",
"fruits": "Fruits", "fruits": "Fruit",
"fruit_and_veg": "Fruit & Veg", "fruit_and_veg": "Fruit & Veg",
"keep_fresh": "0° Fresh", "keep_fresh": "0°C Fresh",
"milk_and_eggs": "Milk & Eggs", "milk_and_eggs": "Milk & Eggs",
"sea_food": "Ready to cook meal", "sea_food": "Ready to cook meal",
"smart_mode_title": "Smart Mode", "smart_mode_title": "Smart Mode",
"soft_frozen": "Soft freezing", "soft_frozen": "Soft freezing",
"tea": "Cold drinks or Beverages", "tea": "Cold Drinks",
"vegetables": "Vegetables" "vegetables": "Vegetable",
"zero_fresh": "0°C Fresh"
}, },
"name": "Program" "name": "Program"
}, },
@ -829,6 +833,28 @@
"unknown": "unknown" "unknown": "unknown"
}, },
"name": "Stain level" "name": "Stain level"
},
"fan_horizontal": {
"name": "Fan direction Horizontal",
"state": {
"position_1": "Fixed - Position 1",
"position_2": "Fixed - Position 2",
"position_3": "Fixed - Position 3",
"position_4": "Fixed - Position 4",
"position_5": "Fixed - Position 5",
"swing": "Swing"
}
},
"fan_vertical": {
"name": "Fan direction Vertical",
"state": {
"position_1": "Fixed - Position 1",
"position_2": "Fixed - Position 2",
"position_3": "Fixed - Position 3",
"position_4": "Fixed - Position 4",
"position_5": "Fixed - Position 5",
"swing": "Swing"
}
} }
}, },
"switch": { "switch": {
@ -1086,6 +1112,9 @@
}, },
"aroma_time_off": { "aroma_time_off": {
"name": "Diffuser (OFF)" "name": "Diffuser (OFF)"
},
"my_zone_temp_sel": {
"name": "Target temperature My Zone"
} }
}, },
"climate": { "climate": {
@ -1147,6 +1176,9 @@
"state": {} "state": {}
} }
} }
},
"my_zone": {
"name": "My Zone"
} }
}, },
"fan": { "fan": {

View File

@ -524,6 +524,7 @@
"iot_active_wash_steam": "Aktivno pranje 20' + para", "iot_active_wash_steam": "Aktivno pranje 20' + para",
"iot_allergy_care_pro": "Alergijska njega Pro", "iot_allergy_care_pro": "Alergijska njega Pro",
"iot_all_in_one_59_steam": "Sve u jednom 59 + para", "iot_all_in_one_59_steam": "Sve u jednom 59 + para",
"iot_baby_60_steam": "All Baby 60°C + para",
"iot_checkup": "Kontrolni pregled", "iot_checkup": "Kontrolni pregled",
"iot_colour_59_steam": "Boje 59' + para", "iot_colour_59_steam": "Boje 59' + para",
"iot_cottons_steam": "Pamuk + Para", "iot_cottons_steam": "Pamuk + Para",
@ -561,6 +562,7 @@
"iot_hygiene_pro_steam": "Hygiene Pro + para", "iot_hygiene_pro_steam": "Hygiene Pro + para",
"iot_intensive_40_steam": "Intenzivno 40°C + para", "iot_intensive_40_steam": "Intenzivno 40°C + para",
"iot_jeans_60_steam": "Jeans + para", "iot_jeans_60_steam": "Jeans + para",
"iot_jeans_steam": "Jeans + para",
"iot_mixed_steam": "Miješane tkanine + Para", "iot_mixed_steam": "Miješane tkanine + Para",
"iot_mix_and_colour_59_steam": "Mješovite i obojene tkanine 59' + para", "iot_mix_and_colour_59_steam": "Mješovite i obojene tkanine 59' + para",
"iot_perfect_cotton_59_steam": "Pamuk Brzi 59'", "iot_perfect_cotton_59_steam": "Pamuk Brzi 59'",
@ -683,6 +685,7 @@
"iot_wash_sport_anti_odor": "Sportska odjeća protiv neugodnih mirisa", "iot_wash_sport_anti_odor": "Sportska odjeća protiv neugodnih mirisa",
"iot_wash_sport_anti_odor_zelig": "Sportska odjeća protiv neugodnih mirisa", "iot_wash_sport_anti_odor_zelig": "Sportska odjeća protiv neugodnih mirisa",
"iot_wash_stains_remover": "Uklanjanje mrlja", "iot_wash_stains_remover": "Uklanjanje mrlja",
"iot_wash_super_saving": "Super ušteda 49'",
"iot_wash_swimsuits_and_bikinis": "Kupaći kostimi", "iot_wash_swimsuits_and_bikinis": "Kupaći kostimi",
"iot_wash_synthetic": "Sintetika", "iot_wash_synthetic": "Sintetika",
"iot_wash_synthetic_steam": "Sintetika + Para", "iot_wash_synthetic_steam": "Sintetika + Para",
@ -767,11 +770,11 @@
"cool_drink": "Cool Drink", "cool_drink": "Cool Drink",
"eco": "Eco", "eco": "Eco",
"eco_mode": "Način rada Eco", "eco_mode": "Način rada Eco",
"fruits": "Fruits", "fruits": "Fruit",
"fruits_and_veg": "Voće i Povrće", "fruits_and_veg": "Voće i Povrće",
"fruit_and_veg": "Fruit & Veg", "fruit_and_veg": "Fruit & Veg",
"holiday": "ODMOR", "holiday": "ODMOR",
"keep_fresh": "0° Fresh", "keep_fresh": "0°C Fresh",
"milk_and_eggs": "Milk & Eggs", "milk_and_eggs": "Milk & Eggs",
"no_mode_selected": "Nije odabran način rada", "no_mode_selected": "Nije odabran način rada",
"quick_cool": "BRZO HLAĐENJE", "quick_cool": "BRZO HLAĐENJE",
@ -780,9 +783,9 @@
"soft_frozen": "Soft freezing", "soft_frozen": "Soft freezing",
"super_cool": "SUPER HLAĐENJE", "super_cool": "SUPER HLAĐENJE",
"super_freeze": "SUPER ZAMRZAVANJE", "super_freeze": "SUPER ZAMRZAVANJE",
"tea": "Hladna pića i napitci", "tea": "Cold Drinks",
"vegetables": "Vegetables", "vegetables": "Vegetable",
"zero_fresh": "0° Fresh" "zero_fresh": "0°C Fresh"
}, },
"name": "Program" "name": "Program"
}, },
@ -1410,6 +1413,7 @@
"iot_active_wash_steam": "Aktivno pranje 20' + para", "iot_active_wash_steam": "Aktivno pranje 20' + para",
"iot_allergy_care_pro": "Alergijska njega Pro", "iot_allergy_care_pro": "Alergijska njega Pro",
"iot_all_in_one_59_steam": "Sve u jednom 59 + para", "iot_all_in_one_59_steam": "Sve u jednom 59 + para",
"iot_baby_60_steam": "All Baby 60°C + para",
"iot_checkup": "Kontrolni pregled", "iot_checkup": "Kontrolni pregled",
"iot_colour_59_steam": "Boje 59' + para", "iot_colour_59_steam": "Boje 59' + para",
"iot_cottons_steam": "Pamuk + Para", "iot_cottons_steam": "Pamuk + Para",
@ -1447,6 +1451,7 @@
"iot_hygiene_pro_steam": "Hygiene Pro + para", "iot_hygiene_pro_steam": "Hygiene Pro + para",
"iot_intensive_40_steam": "Intenzivno 40°C + para", "iot_intensive_40_steam": "Intenzivno 40°C + para",
"iot_jeans_60_steam": "Jeans + para", "iot_jeans_60_steam": "Jeans + para",
"iot_jeans_steam": "Jeans + para",
"iot_mixed_steam": "Miješane tkanine + Para", "iot_mixed_steam": "Miješane tkanine + Para",
"iot_mix_and_colour_59_steam": "Mješovite i obojene tkanine 59' + para", "iot_mix_and_colour_59_steam": "Mješovite i obojene tkanine 59' + para",
"iot_perfect_cotton_59_steam": "Pamuk Brzi 59'", "iot_perfect_cotton_59_steam": "Pamuk Brzi 59'",
@ -1569,6 +1574,7 @@
"iot_wash_sport_anti_odor": "Sportska odjeća protiv neugodnih mirisa", "iot_wash_sport_anti_odor": "Sportska odjeća protiv neugodnih mirisa",
"iot_wash_sport_anti_odor_zelig": "Sportska odjeća protiv neugodnih mirisa", "iot_wash_sport_anti_odor_zelig": "Sportska odjeća protiv neugodnih mirisa",
"iot_wash_stains_remover": "Uklanjanje mrlja", "iot_wash_stains_remover": "Uklanjanje mrlja",
"iot_wash_super_saving": "Super ušteda 49'",
"iot_wash_swimsuits_and_bikinis": "Kupaći kostimi", "iot_wash_swimsuits_and_bikinis": "Kupaći kostimi",
"iot_wash_synthetic": "Sintetika", "iot_wash_synthetic": "Sintetika",
"iot_wash_synthetic_steam": "Sintetika + Para", "iot_wash_synthetic_steam": "Sintetika + Para",
@ -1653,11 +1659,11 @@
"cool_drink": "Cool Drink", "cool_drink": "Cool Drink",
"eco": "Eco", "eco": "Eco",
"eco_mode": "Način rada Eco", "eco_mode": "Način rada Eco",
"fruits": "Fruits", "fruits": "Fruit",
"fruits_and_veg": "Voće i Povrće", "fruits_and_veg": "Voće i Povrće",
"fruit_and_veg": "Fruit & Veg", "fruit_and_veg": "Fruit & Veg",
"holiday": "ODMOR", "holiday": "ODMOR",
"keep_fresh": "0° Fresh", "keep_fresh": "0°C Fresh",
"milk_and_eggs": "Milk & Eggs", "milk_and_eggs": "Milk & Eggs",
"no_mode_selected": "Nije odabran način rada", "no_mode_selected": "Nije odabran način rada",
"quick_cool": "BRZO HLAĐENJE", "quick_cool": "BRZO HLAĐENJE",
@ -1666,9 +1672,9 @@
"soft_frozen": "Soft freezing", "soft_frozen": "Soft freezing",
"super_cool": "SUPER HLAĐENJE", "super_cool": "SUPER HLAĐENJE",
"super_freeze": "SUPER ZAMRZAVANJE", "super_freeze": "SUPER ZAMRZAVANJE",
"tea": "Hladna pića i napitci", "tea": "Cold Drinks",
"vegetables": "Vegetables", "vegetables": "Vegetable",
"zero_fresh": "0° Fresh" "zero_fresh": "0°C Fresh"
}, },
"name": "Program" "name": "Program"
}, },
@ -1764,6 +1770,28 @@
"unknown": "unknown" "unknown": "unknown"
}, },
"name": "Razina mrlja" "name": "Razina mrlja"
},
"fan_horizontal": {
"name": "Smjer ventilatora Vodoravno",
"state": {
"position_1": "Fiksno - Položaj 1",
"position_2": "Fiksno - Položaj 2",
"position_3": "Fiksno - Položaj 3",
"position_4": "Fiksno - Položaj 4",
"position_5": "Fiksno - Položaj 5",
"swing": "Njihanje"
}
},
"fan_vertical": {
"name": "Smjer ventilatora Okomito",
"state": {
"position_1": "Fiksno - Položaj 1",
"position_2": "Fiksno - Položaj 2",
"position_3": "Fiksno - Položaj 3",
"position_4": "Fiksno - Položaj 4",
"position_5": "Fiksno - Položaj 5",
"swing": "Njihanje"
}
} }
}, },
"switch": { "switch": {
@ -2021,6 +2049,9 @@
}, },
"aroma_time_off": { "aroma_time_off": {
"name": "Raspršivač (UKLJUČEN)" "name": "Raspršivač (UKLJUČEN)"
},
"my_zone_temp_sel": {
"name": "Ciljana temperatura My Zone"
} }
}, },
"climate": { "climate": {
@ -2155,6 +2186,9 @@
} }
} }
} }
},
"my_zone": {
"name": "My Zone"
} }
}, },
"fan": { "fan": {

View File

@ -414,7 +414,7 @@
"iot_dry_tablecloths": "Tovaglie", "iot_dry_tablecloths": "Tovaglie",
"iot_dry_technical_fabrics": "Tessuti Tecnici", "iot_dry_technical_fabrics": "Tessuti Tecnici",
"iot_dry_warm_embrace": "Caldo abbraccio", "iot_dry_warm_embrace": "Caldo abbraccio",
"iot_dry_wool": "Lana", "iot_dry_wool": "Asciugatura Lana",
"jeans": "Jeans", "jeans": "Jeans",
"mix_and_dry": "Mix&Dry", "mix_and_dry": "Mix&Dry",
"pets": "Pets", "pets": "Pets",
@ -525,6 +525,7 @@
"iot_active_wash_steam": "Active Wash 20' + Vapore", "iot_active_wash_steam": "Active Wash 20' + Vapore",
"iot_allergy_care_pro": "Allergy Care Pro", "iot_allergy_care_pro": "Allergy Care Pro",
"iot_all_in_one_59_steam": "All in One 59' + Vapore", "iot_all_in_one_59_steam": "All in One 59' + Vapore",
"iot_baby_60_steam": "Tutto Bebè 60°C + Vapore",
"iot_checkup": "Check-Up", "iot_checkup": "Check-Up",
"iot_colour_59_steam": "Colorati 59' + Vapore", "iot_colour_59_steam": "Colorati 59' + Vapore",
"iot_cottons_steam": "Cotone + Vapore", "iot_cottons_steam": "Cotone + Vapore",
@ -562,8 +563,9 @@
"iot_hygiene_pro_steam": "Hygiene Pro + Vapore", "iot_hygiene_pro_steam": "Hygiene Pro + Vapore",
"iot_intensive_40_steam": "Intensivo 40°C + Vapore", "iot_intensive_40_steam": "Intensivo 40°C + Vapore",
"iot_jeans_60_steam": "Jeans + Vapore", "iot_jeans_60_steam": "Jeans + Vapore",
"iot_jeans_steam": "Jeans + Vapore",
"iot_mixed_steam": "Misti + Vapore", "iot_mixed_steam": "Misti + Vapore",
"iot_mix_and_colour_59_steam": "Misti e Colorati 59' + Vapore ", "iot_mix_and_colour_59_steam": "Misti e Colorati 59' + Vapore",
"iot_perfect_cotton_59_steam": "Cotone Perfetto 59' + Vapore", "iot_perfect_cotton_59_steam": "Cotone Perfetto 59' + Vapore",
"iot_rapid_a_class_60_steam": "Rapido 59' Classe A + Vapore", "iot_rapid_a_class_60_steam": "Rapido 59' Classe A + Vapore",
"iot_resistant_cotton_steam": "Cotone Resistente + Vapore", "iot_resistant_cotton_steam": "Cotone Resistente + Vapore",
@ -684,6 +686,7 @@
"iot_wash_sport_anti_odor": "Sport Antiodori", "iot_wash_sport_anti_odor": "Sport Antiodori",
"iot_wash_sport_anti_odor_zelig": "Sport Antiodori", "iot_wash_sport_anti_odor_zelig": "Sport Antiodori",
"iot_wash_stains_remover": "Smacchia tutto", "iot_wash_stains_remover": "Smacchia tutto",
"iot_wash_super_saving": "Super Risparmio 49'",
"iot_wash_swimsuits_and_bikinis": "Costumi e Bikini", "iot_wash_swimsuits_and_bikinis": "Costumi e Bikini",
"iot_wash_synthetic": "Sintetici", "iot_wash_synthetic": "Sintetici",
"iot_wash_synthetic_steam": "Sintetici + Vapore", "iot_wash_synthetic_steam": "Sintetici + Vapore",
@ -708,7 +711,7 @@
"mixed_and_colored_59": "Misti e Colorati 59'", "mixed_and_colored_59": "Misti e Colorati 59'",
"mixed_steam": "Misti + Vapore", "mixed_steam": "Misti + Vapore",
"mix_and_colour_59": "Misti e Colorati 59'", "mix_and_colour_59": "Misti e Colorati 59'",
"mix_and_colour_59_steam": "Misti e Colorati 59' + Vapore ", "mix_and_colour_59_steam": "Misti e Colorati 59' + Vapore",
"night_and_day": "Night and Day", "night_and_day": "Night and Day",
"night_wash": "Ciclo Notturno", "night_wash": "Ciclo Notturno",
"perfect_59": "Perfetto 59'", "perfect_59": "Perfetto 59'",
@ -768,11 +771,11 @@
"cool_drink": "Cool Drink", "cool_drink": "Cool Drink",
"eco": "Eco", "eco": "Eco",
"eco_mode": "Modalità Eco", "eco_mode": "Modalità Eco",
"fruits": "Fruits", "fruits": "Fruit",
"fruits_and_veg": "Fruit&Veg", "fruits_and_veg": "Fruit&Veg",
"fruit_and_veg": "Fruit & Veg", "fruit_and_veg": "Fruit & Veg",
"holiday": "HOLIDAY", "holiday": "HOLIDAY",
"keep_fresh": "0° Fresh", "keep_fresh": "0°C Fresh",
"milk_and_eggs": "Milk & Eggs", "milk_and_eggs": "Milk & Eggs",
"no_mode_selected": "Nessuna modalità selezionata", "no_mode_selected": "Nessuna modalità selezionata",
"quick_cool": "QUICK COOL", "quick_cool": "QUICK COOL",
@ -782,9 +785,9 @@
"soft_frozen": "Soft freezing", "soft_frozen": "Soft freezing",
"super_cool": "SUPER COOL", "super_cool": "SUPER COOL",
"super_freeze": "SUPER FREEZE", "super_freeze": "SUPER FREEZE",
"tea": "Cold drinks or Beverages", "tea": "Cold Drinks",
"vegetables": "Vegetables", "vegetables": "Vegetable",
"zero_fresh": "0° Fresh" "zero_fresh": "0°C Fresh"
}, },
"name": "Programma" "name": "Programma"
}, },
@ -1307,7 +1310,7 @@
"iot_dry_tablecloths": "Tovaglie", "iot_dry_tablecloths": "Tovaglie",
"iot_dry_technical_fabrics": "Tessuti Tecnici", "iot_dry_technical_fabrics": "Tessuti Tecnici",
"iot_dry_warm_embrace": "Caldo abbraccio", "iot_dry_warm_embrace": "Caldo abbraccio",
"iot_dry_wool": "Lana", "iot_dry_wool": "Asciugatura Lana",
"jeans": "Jeans", "jeans": "Jeans",
"mix_and_dry": "Mix&Dry", "mix_and_dry": "Mix&Dry",
"pets": "Pets", "pets": "Pets",
@ -1418,6 +1421,7 @@
"iot_active_wash_steam": "Active Wash 20' + Vapore", "iot_active_wash_steam": "Active Wash 20' + Vapore",
"iot_allergy_care_pro": "Allergy Care Pro", "iot_allergy_care_pro": "Allergy Care Pro",
"iot_all_in_one_59_steam": "All in One 59' + Vapore", "iot_all_in_one_59_steam": "All in One 59' + Vapore",
"iot_baby_60_steam": "Tutto Bebè 60°C + Vapore",
"iot_checkup": "Check-Up", "iot_checkup": "Check-Up",
"iot_colour_59_steam": "Colorati 59' + Vapore", "iot_colour_59_steam": "Colorati 59' + Vapore",
"iot_cottons_steam": "Cotone + Vapore", "iot_cottons_steam": "Cotone + Vapore",
@ -1455,8 +1459,9 @@
"iot_hygiene_pro_steam": "Hygiene Pro + Vapore", "iot_hygiene_pro_steam": "Hygiene Pro + Vapore",
"iot_intensive_40_steam": "Intensivo 40°C + Vapore", "iot_intensive_40_steam": "Intensivo 40°C + Vapore",
"iot_jeans_60_steam": "Jeans + Vapore", "iot_jeans_60_steam": "Jeans + Vapore",
"iot_jeans_steam": "Jeans + Vapore",
"iot_mixed_steam": "Misti + Vapore", "iot_mixed_steam": "Misti + Vapore",
"iot_mix_and_colour_59_steam": "Misti e Colorati 59' + Vapore ", "iot_mix_and_colour_59_steam": "Misti e Colorati 59' + Vapore",
"iot_perfect_cotton_59_steam": "Cotone Perfetto 59' + Vapore", "iot_perfect_cotton_59_steam": "Cotone Perfetto 59' + Vapore",
"iot_rapid_a_class_60_steam": "Rapido 59' Classe A + Vapore", "iot_rapid_a_class_60_steam": "Rapido 59' Classe A + Vapore",
"iot_resistant_cotton_steam": "Cotone Resistente + Vapore", "iot_resistant_cotton_steam": "Cotone Resistente + Vapore",
@ -1577,6 +1582,7 @@
"iot_wash_sport_anti_odor": "Sport Antiodori", "iot_wash_sport_anti_odor": "Sport Antiodori",
"iot_wash_sport_anti_odor_zelig": "Sport Antiodori", "iot_wash_sport_anti_odor_zelig": "Sport Antiodori",
"iot_wash_stains_remover": "Smacchia tutto", "iot_wash_stains_remover": "Smacchia tutto",
"iot_wash_super_saving": "Super Risparmio 49'",
"iot_wash_swimsuits_and_bikinis": "Costumi e Bikini", "iot_wash_swimsuits_and_bikinis": "Costumi e Bikini",
"iot_wash_synthetic": "Sintetici", "iot_wash_synthetic": "Sintetici",
"iot_wash_synthetic_steam": "Sintetici + Vapore", "iot_wash_synthetic_steam": "Sintetici + Vapore",
@ -1601,7 +1607,7 @@
"mixed_and_colored_59": "Misti e Colorati 59'", "mixed_and_colored_59": "Misti e Colorati 59'",
"mixed_steam": "Misti + Vapore", "mixed_steam": "Misti + Vapore",
"mix_and_colour_59": "Misti e Colorati 59'", "mix_and_colour_59": "Misti e Colorati 59'",
"mix_and_colour_59_steam": "Misti e Colorati 59' + Vapore ", "mix_and_colour_59_steam": "Misti e Colorati 59' + Vapore",
"night_and_day": "Night and Day", "night_and_day": "Night and Day",
"night_wash": "Ciclo Notturno", "night_wash": "Ciclo Notturno",
"perfect_59": "Perfetto 59'", "perfect_59": "Perfetto 59'",
@ -1661,11 +1667,11 @@
"cool_drink": "Cool Drink", "cool_drink": "Cool Drink",
"eco": "Eco", "eco": "Eco",
"eco_mode": "Modalità Eco", "eco_mode": "Modalità Eco",
"fruits": "Fruits", "fruits": "Fruit",
"fruits_and_veg": "Fruit&Veg", "fruits_and_veg": "Fruit&Veg",
"fruit_and_veg": "Fruit & Veg", "fruit_and_veg": "Fruit & Veg",
"holiday": "HOLIDAY", "holiday": "HOLIDAY",
"keep_fresh": "0° Fresh", "keep_fresh": "0°C Fresh",
"milk_and_eggs": "Milk & Eggs", "milk_and_eggs": "Milk & Eggs",
"no_mode_selected": "Nessuna modalità selezionata", "no_mode_selected": "Nessuna modalità selezionata",
"quick_cool": "QUICK COOL", "quick_cool": "QUICK COOL",
@ -1675,9 +1681,9 @@
"soft_frozen": "Soft freezing", "soft_frozen": "Soft freezing",
"super_cool": "SUPER COOL", "super_cool": "SUPER COOL",
"super_freeze": "SUPER FREEZE", "super_freeze": "SUPER FREEZE",
"tea": "Cold drinks or Beverages", "tea": "Cold Drinks",
"vegetables": "Vegetables", "vegetables": "Vegetable",
"zero_fresh": "0° Fresh" "zero_fresh": "0°C Fresh"
}, },
"name": "Programma" "name": "Programma"
}, },
@ -1773,6 +1779,28 @@
"unknown": "unknown" "unknown": "unknown"
}, },
"name": "Livello di sporco" "name": "Livello di sporco"
},
"fan_horizontal": {
"name": "Direzione ventola Orizzontale",
"state": {
"position_1": "Fissa - Posizione 1",
"position_2": "Fissa - Posizione 2",
"position_3": "Fissa - Posizione 3",
"position_4": "Fissa - Posizione 4",
"position_5": "Fissa - Posizione 5",
"swing": "Swing"
}
},
"fan_vertical": {
"name": "Direzione ventola Verticale",
"state": {
"position_1": "Fissa - Posizione 1",
"position_2": "Fissa - Posizione 2",
"position_3": "Fissa - Posizione 3",
"position_4": "Fissa - Posizione 4",
"position_5": "Fissa - Posizione 5",
"swing": "Swing"
}
} }
}, },
"switch": { "switch": {
@ -2030,6 +2058,9 @@
}, },
"aroma_time_off": { "aroma_time_off": {
"name": "Diffusore (OFF)" "name": "Diffusore (OFF)"
},
"my_zone_temp_sel": {
"name": "Temperatura target My Zone"
} }
}, },
"climate": { "climate": {
@ -2164,6 +2195,9 @@
} }
} }
} }
},
"my_zone": {
"name": "My Zone"
} }
}, },
"fan": { "fan": {

View File

@ -524,6 +524,7 @@
"iot_active_wash_steam": "Actieve was 20' + Stoom", "iot_active_wash_steam": "Actieve was 20' + Stoom",
"iot_allergy_care_pro": "Allergy Care Pro", "iot_allergy_care_pro": "Allergy Care Pro",
"iot_all_in_one_59_steam": "Alles-in-één 59' + Stoom", "iot_all_in_one_59_steam": "Alles-in-één 59' + Stoom",
"iot_baby_60_steam": "All baby 60 ° C + Steam",
"iot_checkup": "Controle", "iot_checkup": "Controle",
"iot_colour_59_steam": "Gekleurd 59' + Stoom", "iot_colour_59_steam": "Gekleurd 59' + Stoom",
"iot_cottons_steam": "Katoen + Stoom", "iot_cottons_steam": "Katoen + Stoom",
@ -561,6 +562,7 @@
"iot_hygiene_pro_steam": "Hygiene Pro + stoom", "iot_hygiene_pro_steam": "Hygiene Pro + stoom",
"iot_intensive_40_steam": "Intensief 40°C + Stoom", "iot_intensive_40_steam": "Intensief 40°C + Stoom",
"iot_jeans_60_steam": "Jeans + Steam", "iot_jeans_60_steam": "Jeans + Steam",
"iot_jeans_steam": "Jeans + Steam",
"iot_mixed_steam": "Gemengde vezels + Stoom", "iot_mixed_steam": "Gemengde vezels + Stoom",
"iot_mix_and_colour_59_steam": "Gemengd en Gekleurd 59' + Stoom", "iot_mix_and_colour_59_steam": "Gemengd en Gekleurd 59' + Stoom",
"iot_perfect_cotton_59_steam": "Perfecte Katoen 59'", "iot_perfect_cotton_59_steam": "Perfecte Katoen 59'",
@ -683,6 +685,7 @@
"iot_wash_sport_anti_odor": "Anti-Odour sportkleding", "iot_wash_sport_anti_odor": "Anti-Odour sportkleding",
"iot_wash_sport_anti_odor_zelig": "Anti-Odour sportkleding", "iot_wash_sport_anti_odor_zelig": "Anti-Odour sportkleding",
"iot_wash_stains_remover": "Vlekkenverwijderaar", "iot_wash_stains_remover": "Vlekkenverwijderaar",
"iot_wash_super_saving": "Super besparend 49'",
"iot_wash_swimsuits_and_bikinis": "Badkleding", "iot_wash_swimsuits_and_bikinis": "Badkleding",
"iot_wash_synthetic": "Synthetische stoffen", "iot_wash_synthetic": "Synthetische stoffen",
"iot_wash_synthetic_steam": "Synthetische stoffen + Stoom", "iot_wash_synthetic_steam": "Synthetische stoffen + Stoom",
@ -767,11 +770,11 @@
"cool_drink": "Cool Drink", "cool_drink": "Cool Drink",
"eco": "Eco", "eco": "Eco",
"eco_mode": "Eco-modus", "eco_mode": "Eco-modus",
"fruits": "Fruits", "fruits": "Fruit",
"fruits_and_veg": "Fruit&Veg", "fruits_and_veg": "Fruit&Veg",
"fruit_and_veg": "Fruit & Veg", "fruit_and_veg": "Fruit & Veg",
"holiday": "HOLIDAY", "holiday": "HOLIDAY",
"keep_fresh": "0° Fresh", "keep_fresh": "0°C Fresh",
"milk_and_eggs": "Milk & Eggs", "milk_and_eggs": "Milk & Eggs",
"no_mode_selected": "Geen modus geselecteerd", "no_mode_selected": "Geen modus geselecteerd",
"quick_cool": "QUICK KOEL", "quick_cool": "QUICK KOEL",
@ -780,9 +783,9 @@
"soft_frozen": "Soft freezing", "soft_frozen": "Soft freezing",
"super_cool": "SUPER COOL", "super_cool": "SUPER COOL",
"super_freeze": "SUPER FREEZE", "super_freeze": "SUPER FREEZE",
"tea": "Cold drinks or Beverages", "tea": "Cold Drinks",
"vegetables": "Vegetables", "vegetables": "Vegetable",
"zero_fresh": "0° Fresh" "zero_fresh": "0°C Fresh"
}, },
"name": "Programma" "name": "Programma"
}, },
@ -1410,6 +1413,7 @@
"iot_active_wash_steam": "Actieve was 20' + Stoom", "iot_active_wash_steam": "Actieve was 20' + Stoom",
"iot_allergy_care_pro": "Allergy Care Pro", "iot_allergy_care_pro": "Allergy Care Pro",
"iot_all_in_one_59_steam": "Alles-in-één 59' + Stoom", "iot_all_in_one_59_steam": "Alles-in-één 59' + Stoom",
"iot_baby_60_steam": "All baby 60 ° C + Steam",
"iot_checkup": "Controle", "iot_checkup": "Controle",
"iot_colour_59_steam": "Gekleurd 59' + Stoom", "iot_colour_59_steam": "Gekleurd 59' + Stoom",
"iot_cottons_steam": "Katoen + Stoom", "iot_cottons_steam": "Katoen + Stoom",
@ -1447,6 +1451,7 @@
"iot_hygiene_pro_steam": "Hygiene Pro + stoom", "iot_hygiene_pro_steam": "Hygiene Pro + stoom",
"iot_intensive_40_steam": "Intensief 40°C + Stoom", "iot_intensive_40_steam": "Intensief 40°C + Stoom",
"iot_jeans_60_steam": "Jeans + Steam", "iot_jeans_60_steam": "Jeans + Steam",
"iot_jeans_steam": "Jeans + Steam",
"iot_mixed_steam": "Gemengde vezels + Stoom", "iot_mixed_steam": "Gemengde vezels + Stoom",
"iot_mix_and_colour_59_steam": "Gemengd en Gekleurd 59' + Stoom", "iot_mix_and_colour_59_steam": "Gemengd en Gekleurd 59' + Stoom",
"iot_perfect_cotton_59_steam": "Perfecte Katoen 59'", "iot_perfect_cotton_59_steam": "Perfecte Katoen 59'",
@ -1569,6 +1574,7 @@
"iot_wash_sport_anti_odor": "Anti-Odour sportkleding", "iot_wash_sport_anti_odor": "Anti-Odour sportkleding",
"iot_wash_sport_anti_odor_zelig": "Anti-Odour sportkleding", "iot_wash_sport_anti_odor_zelig": "Anti-Odour sportkleding",
"iot_wash_stains_remover": "Vlekkenverwijderaar", "iot_wash_stains_remover": "Vlekkenverwijderaar",
"iot_wash_super_saving": "Super besparend 49'",
"iot_wash_swimsuits_and_bikinis": "Badkleding", "iot_wash_swimsuits_and_bikinis": "Badkleding",
"iot_wash_synthetic": "Synthetische stoffen", "iot_wash_synthetic": "Synthetische stoffen",
"iot_wash_synthetic_steam": "Synthetische stoffen + Stoom", "iot_wash_synthetic_steam": "Synthetische stoffen + Stoom",
@ -1653,11 +1659,11 @@
"cool_drink": "Cool Drink", "cool_drink": "Cool Drink",
"eco": "Eco", "eco": "Eco",
"eco_mode": "Eco-modus", "eco_mode": "Eco-modus",
"fruits": "Fruits", "fruits": "Fruit",
"fruits_and_veg": "Fruit&Veg", "fruits_and_veg": "Fruit&Veg",
"fruit_and_veg": "Fruit & Veg", "fruit_and_veg": "Fruit & Veg",
"holiday": "HOLIDAY", "holiday": "HOLIDAY",
"keep_fresh": "0° Fresh", "keep_fresh": "0°C Fresh",
"milk_and_eggs": "Milk & Eggs", "milk_and_eggs": "Milk & Eggs",
"no_mode_selected": "Geen modus geselecteerd", "no_mode_selected": "Geen modus geselecteerd",
"quick_cool": "QUICK KOEL", "quick_cool": "QUICK KOEL",
@ -1666,9 +1672,9 @@
"soft_frozen": "Soft freezing", "soft_frozen": "Soft freezing",
"super_cool": "SUPER COOL", "super_cool": "SUPER COOL",
"super_freeze": "SUPER FREEZE", "super_freeze": "SUPER FREEZE",
"tea": "Cold drinks or Beverages", "tea": "Cold Drinks",
"vegetables": "Vegetables", "vegetables": "Vegetable",
"zero_fresh": "0° Fresh" "zero_fresh": "0°C Fresh"
}, },
"name": "Programma" "name": "Programma"
}, },
@ -1764,6 +1770,28 @@
"unknown": "unknown" "unknown": "unknown"
}, },
"name": "Vlekniveau" "name": "Vlekniveau"
},
"fan_horizontal": {
"name": "Ventilatorrichting Horizontaal",
"state": {
"position_1": "Vast - Positie 1",
"position_2": "Vast - Positie 2",
"position_3": "Vast - Positie 3",
"position_4": "Vast - Positie 4",
"position_5": "Vast - Positie 5",
"swing": "Draaiend"
}
},
"fan_vertical": {
"name": "Ventilatorrichting Verticaal",
"state": {
"position_1": "Vast - Positie 1",
"position_2": "Vast - Positie 2",
"position_3": "Vast - Positie 3",
"position_4": "Vast - Positie 4",
"position_5": "Vast - Positie 5",
"swing": "Draaiend"
}
} }
}, },
"switch": { "switch": {
@ -2021,6 +2049,9 @@
}, },
"aroma_time_off": { "aroma_time_off": {
"name": "Diffuser (UIT)" "name": "Diffuser (UIT)"
},
"my_zone_temp_sel": {
"name": "Doeltemperatuur My Zone"
} }
}, },
"climate": { "climate": {
@ -2155,6 +2186,9 @@
} }
} }
} }
},
"my_zone": {
"name": "My Zone"
} }
}, },
"fan": { "fan": {

View File

@ -524,6 +524,7 @@
"iot_active_wash_steam": "Aktywne pranie 20' + Para", "iot_active_wash_steam": "Aktywne pranie 20' + Para",
"iot_allergy_care_pro": "Allergy Care Pro", "iot_allergy_care_pro": "Allergy Care Pro",
"iot_all_in_one_59_steam": "Wszystko w jednym cyklu 59 + Para", "iot_all_in_one_59_steam": "Wszystko w jednym cyklu 59 + Para",
"iot_baby_60_steam": "Wszystkie dziecinne 60°C + Para",
"iot_checkup": "Kontrola", "iot_checkup": "Kontrola",
"iot_colour_59_steam": "Kolorowe 59' + Para", "iot_colour_59_steam": "Kolorowe 59' + Para",
"iot_cottons_steam": "Bawełna + Para", "iot_cottons_steam": "Bawełna + Para",
@ -561,6 +562,7 @@
"iot_hygiene_pro_steam": "Hygiene Pro + Para", "iot_hygiene_pro_steam": "Hygiene Pro + Para",
"iot_intensive_40_steam": "Intensywny 40°C + Para", "iot_intensive_40_steam": "Intensywny 40°C + Para",
"iot_jeans_60_steam": "Dżinsy + Para", "iot_jeans_60_steam": "Dżinsy + Para",
"iot_jeans_steam": "Dżinsy + Para",
"iot_mixed_steam": "Mieszane + Para", "iot_mixed_steam": "Mieszane + Para",
"iot_mix_and_colour_59_steam": "Mieszane i kolorowe 59' + Para", "iot_mix_and_colour_59_steam": "Mieszane i kolorowe 59' + Para",
"iot_perfect_cotton_59_steam": "Idealna Bawelna 59'", "iot_perfect_cotton_59_steam": "Idealna Bawelna 59'",
@ -683,6 +685,7 @@
"iot_wash_sport_anti_odor": "Odzież sportowa zapobiegająca powstawaniu nieprzyjemnych zapachów", "iot_wash_sport_anti_odor": "Odzież sportowa zapobiegająca powstawaniu nieprzyjemnych zapachów",
"iot_wash_sport_anti_odor_zelig": "Odzież sportowa zapobiegająca powstawaniu nieprzyjemnych zapachów", "iot_wash_sport_anti_odor_zelig": "Odzież sportowa zapobiegająca powstawaniu nieprzyjemnych zapachów",
"iot_wash_stains_remover": "Wywabiacz", "iot_wash_stains_remover": "Wywabiacz",
"iot_wash_super_saving": "Super oszczędność 49'",
"iot_wash_swimsuits_and_bikinis": "Stroje kąpielowe", "iot_wash_swimsuits_and_bikinis": "Stroje kąpielowe",
"iot_wash_synthetic": "Syntetyki", "iot_wash_synthetic": "Syntetyki",
"iot_wash_synthetic_steam": "Syntetyki + Para", "iot_wash_synthetic_steam": "Syntetyki + Para",
@ -767,11 +770,11 @@
"cool_drink": "Cool Drink", "cool_drink": "Cool Drink",
"eco": "Eco", "eco": "Eco",
"eco_mode": "Tryb Eco", "eco_mode": "Tryb Eco",
"fruits": "Fruits", "fruits": "Fruit",
"fruits_and_veg": "Fruit&Veg", "fruits_and_veg": "Fruit&Veg",
"fruit_and_veg": "Fruit & Veg", "fruit_and_veg": "Fruit & Veg",
"holiday": "HOLIDAY", "holiday": "HOLIDAY",
"keep_fresh": "0° Fresh", "keep_fresh": "0°C Fresh",
"milk_and_eggs": "Milk & Eggs", "milk_and_eggs": "Milk & Eggs",
"no_mode_selected": "Nie wybrano żadnego trybu", "no_mode_selected": "Nie wybrano żadnego trybu",
"quick_cool": "QUICK COOL", "quick_cool": "QUICK COOL",
@ -780,9 +783,9 @@
"soft_frozen": "Soft freezing", "soft_frozen": "Soft freezing",
"super_cool": "SUPER COOL", "super_cool": "SUPER COOL",
"super_freeze": "SUPER FREEZE", "super_freeze": "SUPER FREEZE",
"tea": "Cold drinks or Beverages", "tea": "Cold Drinks",
"vegetables": "Vegetables", "vegetables": "Vegetable",
"zero_fresh": "0° Fresh" "zero_fresh": "0°C Fresh"
}, },
"name": "Program" "name": "Program"
}, },
@ -1410,6 +1413,7 @@
"iot_active_wash_steam": "Aktywne pranie 20' + Para", "iot_active_wash_steam": "Aktywne pranie 20' + Para",
"iot_allergy_care_pro": "Allergy Care Pro", "iot_allergy_care_pro": "Allergy Care Pro",
"iot_all_in_one_59_steam": "Wszystko w jednym cyklu 59 + Para", "iot_all_in_one_59_steam": "Wszystko w jednym cyklu 59 + Para",
"iot_baby_60_steam": "Wszystkie dziecinne 60°C + Para",
"iot_checkup": "Kontrola", "iot_checkup": "Kontrola",
"iot_colour_59_steam": "Kolorowe 59' + Para", "iot_colour_59_steam": "Kolorowe 59' + Para",
"iot_cottons_steam": "Bawełna + Para", "iot_cottons_steam": "Bawełna + Para",
@ -1447,6 +1451,7 @@
"iot_hygiene_pro_steam": "Hygiene Pro + Para", "iot_hygiene_pro_steam": "Hygiene Pro + Para",
"iot_intensive_40_steam": "Intensywny 40°C + Para", "iot_intensive_40_steam": "Intensywny 40°C + Para",
"iot_jeans_60_steam": "Dżinsy + Para", "iot_jeans_60_steam": "Dżinsy + Para",
"iot_jeans_steam": "Dżinsy + Para",
"iot_mixed_steam": "Mieszane + Para", "iot_mixed_steam": "Mieszane + Para",
"iot_mix_and_colour_59_steam": "Mieszane i kolorowe 59' + Para", "iot_mix_and_colour_59_steam": "Mieszane i kolorowe 59' + Para",
"iot_perfect_cotton_59_steam": "Idealna Bawelna 59'", "iot_perfect_cotton_59_steam": "Idealna Bawelna 59'",
@ -1569,6 +1574,7 @@
"iot_wash_sport_anti_odor": "Odzież sportowa zapobiegająca powstawaniu nieprzyjemnych zapachów", "iot_wash_sport_anti_odor": "Odzież sportowa zapobiegająca powstawaniu nieprzyjemnych zapachów",
"iot_wash_sport_anti_odor_zelig": "Odzież sportowa zapobiegająca powstawaniu nieprzyjemnych zapachów", "iot_wash_sport_anti_odor_zelig": "Odzież sportowa zapobiegająca powstawaniu nieprzyjemnych zapachów",
"iot_wash_stains_remover": "Wywabiacz", "iot_wash_stains_remover": "Wywabiacz",
"iot_wash_super_saving": "Super oszczędność 49'",
"iot_wash_swimsuits_and_bikinis": "Stroje kąpielowe", "iot_wash_swimsuits_and_bikinis": "Stroje kąpielowe",
"iot_wash_synthetic": "Syntetyki", "iot_wash_synthetic": "Syntetyki",
"iot_wash_synthetic_steam": "Syntetyki + Para", "iot_wash_synthetic_steam": "Syntetyki + Para",
@ -1653,11 +1659,11 @@
"cool_drink": "Cool Drink", "cool_drink": "Cool Drink",
"eco": "Eco", "eco": "Eco",
"eco_mode": "Tryb Eco", "eco_mode": "Tryb Eco",
"fruits": "Fruits", "fruits": "Fruit",
"fruits_and_veg": "Fruit&Veg", "fruits_and_veg": "Fruit&Veg",
"fruit_and_veg": "Fruit & Veg", "fruit_and_veg": "Fruit & Veg",
"holiday": "HOLIDAY", "holiday": "HOLIDAY",
"keep_fresh": "0° Fresh", "keep_fresh": "0°C Fresh",
"milk_and_eggs": "Milk & Eggs", "milk_and_eggs": "Milk & Eggs",
"no_mode_selected": "Nie wybrano żadnego trybu", "no_mode_selected": "Nie wybrano żadnego trybu",
"quick_cool": "QUICK COOL", "quick_cool": "QUICK COOL",
@ -1666,9 +1672,9 @@
"soft_frozen": "Soft freezing", "soft_frozen": "Soft freezing",
"super_cool": "SUPER COOL", "super_cool": "SUPER COOL",
"super_freeze": "SUPER FREEZE", "super_freeze": "SUPER FREEZE",
"tea": "Cold drinks or Beverages", "tea": "Cold Drinks",
"vegetables": "Vegetables", "vegetables": "Vegetable",
"zero_fresh": "0° Fresh" "zero_fresh": "0°C Fresh"
}, },
"name": "Program" "name": "Program"
}, },
@ -1764,6 +1770,28 @@
"unknown": "unknown" "unknown": "unknown"
}, },
"name": "Stopień zabrudzenia" "name": "Stopień zabrudzenia"
},
"fan_horizontal": {
"name": "Kierunek wentylatora Poziomy",
"state": {
"position_1": "Stały - Pozycja 1",
"position_2": "Stały - Pozycja 2",
"position_3": "Stały - Pozycja 3",
"position_4": "Stały - Pozycja 4",
"position_5": "Stały - Pozycja 5",
"swing": "Swing"
}
},
"fan_vertical": {
"name": "Kierunek wentylatora Pionowy",
"state": {
"position_1": "Stały - Pozycja 1",
"position_2": "Stały - Pozycja 2",
"position_3": "Stały - Pozycja 3",
"position_4": "Stały - Pozycja 4",
"position_5": "Stały - Pozycja 5",
"swing": "Swing"
}
} }
}, },
"switch": { "switch": {
@ -2021,6 +2049,9 @@
}, },
"aroma_time_off": { "aroma_time_off": {
"name": "Dyfuzor (WYŁ.)" "name": "Dyfuzor (WYŁ.)"
},
"my_zone_temp_sel": {
"name": "Temperatura docelowa My Zone"
} }
}, },
"climate": { "climate": {
@ -2155,6 +2186,9 @@
} }
} }
} }
},
"my_zone": {
"name": "My Zone"
} }
}, },
"fan": { "fan": {

View File

@ -524,6 +524,7 @@
"iot_active_wash_steam": "Lavagem Ativa 20' + Vapor", "iot_active_wash_steam": "Lavagem Ativa 20' + Vapor",
"iot_allergy_care_pro": "Cuidado Alergias Pro", "iot_allergy_care_pro": "Cuidado Alergias Pro",
"iot_all_in_one_59_steam": "Tudo em Um 59' + Vapor", "iot_all_in_one_59_steam": "Tudo em Um 59' + Vapor",
"iot_baby_60_steam": "All Baby 60°C + vapor",
"iot_checkup": "Check-Up", "iot_checkup": "Check-Up",
"iot_colour_59_steam": "Cores 59' + vapor", "iot_colour_59_steam": "Cores 59' + vapor",
"iot_cottons_steam": "Algodão + Vapor", "iot_cottons_steam": "Algodão + Vapor",
@ -561,6 +562,7 @@
"iot_hygiene_pro_steam": "Hygiene Pro + Vapor", "iot_hygiene_pro_steam": "Hygiene Pro + Vapor",
"iot_intensive_40_steam": "Intensivo 40°C + vapor", "iot_intensive_40_steam": "Intensivo 40°C + vapor",
"iot_jeans_60_steam": "Gangas + vapor", "iot_jeans_60_steam": "Gangas + vapor",
"iot_jeans_steam": "Gangas + vapor",
"iot_mixed_steam": "Mistos + Vapor", "iot_mixed_steam": "Mistos + Vapor",
"iot_mix_and_colour_59_steam": "Mistos E Cores 59' + Vapor", "iot_mix_and_colour_59_steam": "Mistos E Cores 59' + Vapor",
"iot_perfect_cotton_59_steam": "Algodao Perfeito 59'", "iot_perfect_cotton_59_steam": "Algodao Perfeito 59'",
@ -683,6 +685,7 @@
"iot_wash_sport_anti_odor": "Roupa de desporto anti odor", "iot_wash_sport_anti_odor": "Roupa de desporto anti odor",
"iot_wash_sport_anti_odor_zelig": "Roupa de desporto anti odor", "iot_wash_sport_anti_odor_zelig": "Roupa de desporto anti odor",
"iot_wash_stains_remover": "Removedor de nódoas", "iot_wash_stains_remover": "Removedor de nódoas",
"iot_wash_super_saving": "Super poupança 49'",
"iot_wash_swimsuits_and_bikinis": "Fatos de banho", "iot_wash_swimsuits_and_bikinis": "Fatos de banho",
"iot_wash_synthetic": "Sintéticos", "iot_wash_synthetic": "Sintéticos",
"iot_wash_synthetic_steam": "Sintéticos + Vapor", "iot_wash_synthetic_steam": "Sintéticos + Vapor",
@ -767,11 +770,11 @@
"cool_drink": "Cool Drink", "cool_drink": "Cool Drink",
"eco": "Eco", "eco": "Eco",
"eco_mode": "Modo Eco", "eco_mode": "Modo Eco",
"fruits": "Fruits", "fruits": "Fruit",
"fruits_and_veg": "Fruit&Veg", "fruits_and_veg": "Fruit&Veg",
"fruit_and_veg": "Fruit & Veg", "fruit_and_veg": "Fruit & Veg",
"holiday": "HOLIDAY", "holiday": "HOLIDAY",
"keep_fresh": "0° Fresh", "keep_fresh": "0°C Fresh",
"milk_and_eggs": "Milk & Eggs", "milk_and_eggs": "Milk & Eggs",
"no_mode_selected": "Nenhum modo selecionado", "no_mode_selected": "Nenhum modo selecionado",
"quick_cool": "QUICK COOL", "quick_cool": "QUICK COOL",
@ -780,9 +783,9 @@
"soft_frozen": "Soft freezing", "soft_frozen": "Soft freezing",
"super_cool": "SUPER COOL", "super_cool": "SUPER COOL",
"super_freeze": "SUPER FREEZE", "super_freeze": "SUPER FREEZE",
"tea": "Cold drinks or Beverages", "tea": "Cold Drinks",
"vegetables": "Vegetables", "vegetables": "Vegetable",
"zero_fresh": "0° Fresh" "zero_fresh": "0°C Fresh"
}, },
"name": "Programa" "name": "Programa"
}, },
@ -1410,6 +1413,7 @@
"iot_active_wash_steam": "Lavagem Ativa 20' + Vapor", "iot_active_wash_steam": "Lavagem Ativa 20' + Vapor",
"iot_allergy_care_pro": "Cuidado Alergias Pro", "iot_allergy_care_pro": "Cuidado Alergias Pro",
"iot_all_in_one_59_steam": "Tudo em Um 59' + Vapor", "iot_all_in_one_59_steam": "Tudo em Um 59' + Vapor",
"iot_baby_60_steam": "All Baby 60°C + vapor",
"iot_checkup": "Check-Up", "iot_checkup": "Check-Up",
"iot_colour_59_steam": "Cores 59' + vapor", "iot_colour_59_steam": "Cores 59' + vapor",
"iot_cottons_steam": "Algodão + Vapor", "iot_cottons_steam": "Algodão + Vapor",
@ -1447,6 +1451,7 @@
"iot_hygiene_pro_steam": "Hygiene Pro + Vapor", "iot_hygiene_pro_steam": "Hygiene Pro + Vapor",
"iot_intensive_40_steam": "Intensivo 40°C + vapor", "iot_intensive_40_steam": "Intensivo 40°C + vapor",
"iot_jeans_60_steam": "Gangas + vapor", "iot_jeans_60_steam": "Gangas + vapor",
"iot_jeans_steam": "Gangas + vapor",
"iot_mixed_steam": "Mistos + Vapor", "iot_mixed_steam": "Mistos + Vapor",
"iot_mix_and_colour_59_steam": "Mistos E Cores 59' + Vapor", "iot_mix_and_colour_59_steam": "Mistos E Cores 59' + Vapor",
"iot_perfect_cotton_59_steam": "Algodao Perfeito 59'", "iot_perfect_cotton_59_steam": "Algodao Perfeito 59'",
@ -1569,6 +1574,7 @@
"iot_wash_sport_anti_odor": "Roupa de desporto anti odor", "iot_wash_sport_anti_odor": "Roupa de desporto anti odor",
"iot_wash_sport_anti_odor_zelig": "Roupa de desporto anti odor", "iot_wash_sport_anti_odor_zelig": "Roupa de desporto anti odor",
"iot_wash_stains_remover": "Removedor de nódoas", "iot_wash_stains_remover": "Removedor de nódoas",
"iot_wash_super_saving": "Super poupança 49'",
"iot_wash_swimsuits_and_bikinis": "Fatos de banho", "iot_wash_swimsuits_and_bikinis": "Fatos de banho",
"iot_wash_synthetic": "Sintéticos", "iot_wash_synthetic": "Sintéticos",
"iot_wash_synthetic_steam": "Sintéticos + Vapor", "iot_wash_synthetic_steam": "Sintéticos + Vapor",
@ -1653,11 +1659,11 @@
"cool_drink": "Cool Drink", "cool_drink": "Cool Drink",
"eco": "Eco", "eco": "Eco",
"eco_mode": "Modo Eco", "eco_mode": "Modo Eco",
"fruits": "Fruits", "fruits": "Fruit",
"fruits_and_veg": "Fruit&Veg", "fruits_and_veg": "Fruit&Veg",
"fruit_and_veg": "Fruit & Veg", "fruit_and_veg": "Fruit & Veg",
"holiday": "HOLIDAY", "holiday": "HOLIDAY",
"keep_fresh": "0° Fresh", "keep_fresh": "0°C Fresh",
"milk_and_eggs": "Milk & Eggs", "milk_and_eggs": "Milk & Eggs",
"no_mode_selected": "Nenhum modo selecionado", "no_mode_selected": "Nenhum modo selecionado",
"quick_cool": "QUICK COOL", "quick_cool": "QUICK COOL",
@ -1666,9 +1672,9 @@
"soft_frozen": "Soft freezing", "soft_frozen": "Soft freezing",
"super_cool": "SUPER COOL", "super_cool": "SUPER COOL",
"super_freeze": "SUPER FREEZE", "super_freeze": "SUPER FREEZE",
"tea": "Cold drinks or Beverages", "tea": "Cold Drinks",
"vegetables": "Vegetables", "vegetables": "Vegetable",
"zero_fresh": "0° Fresh" "zero_fresh": "0°C Fresh"
}, },
"name": "Programa" "name": "Programa"
}, },
@ -1764,6 +1770,28 @@
"unknown": "unknown" "unknown": "unknown"
}, },
"name": "Nível da nódoa" "name": "Nível da nódoa"
},
"fan_horizontal": {
"name": "Direção do ventilador Horizontal",
"state": {
"position_1": "Fixa - Posição 1",
"position_2": "Fixa - Posição 2",
"position_3": "Fixa - Posição 3",
"position_4": "Fixa - Posição 4",
"position_5": "Fixa - Posição 5",
"swing": "Oscilação"
}
},
"fan_vertical": {
"name": "Direção do ventilador Vertical",
"state": {
"position_1": "Fixa - Posição 1",
"position_2": "Fixa - Posição 2",
"position_3": "Fixa - Posição 3",
"position_4": "Fixa - Posição 4",
"position_5": "Fixa - Posição 5",
"swing": "Oscilação"
}
} }
}, },
"switch": { "switch": {
@ -2021,6 +2049,9 @@
}, },
"aroma_time_off": { "aroma_time_off": {
"name": "Difusor (OFF)" "name": "Difusor (OFF)"
},
"my_zone_temp_sel": {
"name": "Temperatura alvo My Zone"
} }
}, },
"climate": { "climate": {
@ -2155,6 +2186,9 @@
} }
} }
} }
},
"my_zone": {
"name": "My Zone"
} }
}, },
"fan": { "fan": {

View File

@ -524,6 +524,7 @@
"iot_active_wash_steam": "Spălare activă 20' + abur", "iot_active_wash_steam": "Spălare activă 20' + abur",
"iot_allergy_care_pro": "Îngrijire alergie pro", "iot_allergy_care_pro": "Îngrijire alergie pro",
"iot_all_in_one_59_steam": "Toate în One 59' + abur", "iot_all_in_one_59_steam": "Toate în One 59' + abur",
"iot_baby_60_steam": "Haine bebeluși 60°C + abur",
"iot_checkup": "Verificare", "iot_checkup": "Verificare",
"iot_colour_59_steam": "Colorate 59' + Abur", "iot_colour_59_steam": "Colorate 59' + Abur",
"iot_cottons_steam": "Bumbac + Abur", "iot_cottons_steam": "Bumbac + Abur",
@ -561,6 +562,7 @@
"iot_hygiene_pro_steam": "Hygiene Pro + Abur", "iot_hygiene_pro_steam": "Hygiene Pro + Abur",
"iot_intensive_40_steam": "Intensiv 40°C + Abur", "iot_intensive_40_steam": "Intensiv 40°C + Abur",
"iot_jeans_60_steam": "Blugi + abur", "iot_jeans_60_steam": "Blugi + abur",
"iot_jeans_steam": "Blugi + abur",
"iot_mixed_steam": "Mixte + Abur", "iot_mixed_steam": "Mixte + Abur",
"iot_mix_and_colour_59_steam": "Mixte și colorate 59' + abur", "iot_mix_and_colour_59_steam": "Mixte și colorate 59' + abur",
"iot_perfect_cotton_59_steam": "Bumbac Perfect 59'", "iot_perfect_cotton_59_steam": "Bumbac Perfect 59'",
@ -683,6 +685,7 @@
"iot_wash_sport_anti_odor": "Îmbrăcăminte sportivă anti-miros", "iot_wash_sport_anti_odor": "Îmbrăcăminte sportivă anti-miros",
"iot_wash_sport_anti_odor_zelig": "Îmbrăcăminte sportivă anti-miros", "iot_wash_sport_anti_odor_zelig": "Îmbrăcăminte sportivă anti-miros",
"iot_wash_stains_remover": "Eliminare de pete", "iot_wash_stains_remover": "Eliminare de pete",
"iot_wash_super_saving": "Super Economii 49'",
"iot_wash_swimsuits_and_bikinis": "Costume de baie", "iot_wash_swimsuits_and_bikinis": "Costume de baie",
"iot_wash_synthetic": "Sintetice", "iot_wash_synthetic": "Sintetice",
"iot_wash_synthetic_steam": "Sintetice + Abur", "iot_wash_synthetic_steam": "Sintetice + Abur",
@ -767,11 +770,11 @@
"cool_drink": "Cool Drink", "cool_drink": "Cool Drink",
"eco": "Eco", "eco": "Eco",
"eco_mode": "Modul Eco", "eco_mode": "Modul Eco",
"fruits": "Fruits", "fruits": "Fruit",
"fruits_and_veg": "Fruit&Veg (Fructe și legume)", "fruits_and_veg": "Fruit&Veg (Fructe și legume)",
"fruit_and_veg": "Fruit & Veg", "fruit_and_veg": "Fruit & Veg",
"holiday": "HOLIDAY (Perioadă de neutilizare)", "holiday": "HOLIDAY (Perioadă de neutilizare)",
"keep_fresh": "0° Fresh", "keep_fresh": "0°C Fresh",
"milk_and_eggs": "Milk & Eggs", "milk_and_eggs": "Milk & Eggs",
"no_mode_selected": "Niciun mod selectat", "no_mode_selected": "Niciun mod selectat",
"quick_cool": "QUICK COOL", "quick_cool": "QUICK COOL",
@ -780,9 +783,9 @@
"soft_frozen": "Soft freezing", "soft_frozen": "Soft freezing",
"super_cool": "SUPER COOL (Răcire rapidă)", "super_cool": "SUPER COOL (Răcire rapidă)",
"super_freeze": "SUPER FREEZE (Congelare rapidă)", "super_freeze": "SUPER FREEZE (Congelare rapidă)",
"tea": "Cold drinks or Beverages", "tea": "Cold Drinks",
"vegetables": "Vegetables", "vegetables": "Vegetable",
"zero_fresh": "0° Fresh" "zero_fresh": "0°C Fresh"
}, },
"name": "Program" "name": "Program"
}, },
@ -1410,6 +1413,7 @@
"iot_active_wash_steam": "Spălare activă 20' + abur", "iot_active_wash_steam": "Spălare activă 20' + abur",
"iot_allergy_care_pro": "Îngrijire alergie pro", "iot_allergy_care_pro": "Îngrijire alergie pro",
"iot_all_in_one_59_steam": "Toate în One 59' + abur", "iot_all_in_one_59_steam": "Toate în One 59' + abur",
"iot_baby_60_steam": "Haine bebeluși 60°C + abur",
"iot_checkup": "Verificare", "iot_checkup": "Verificare",
"iot_colour_59_steam": "Colorate 59' + Abur", "iot_colour_59_steam": "Colorate 59' + Abur",
"iot_cottons_steam": "Bumbac + Abur", "iot_cottons_steam": "Bumbac + Abur",
@ -1447,6 +1451,7 @@
"iot_hygiene_pro_steam": "Hygiene Pro + Abur", "iot_hygiene_pro_steam": "Hygiene Pro + Abur",
"iot_intensive_40_steam": "Intensiv 40°C + Abur", "iot_intensive_40_steam": "Intensiv 40°C + Abur",
"iot_jeans_60_steam": "Blugi + abur", "iot_jeans_60_steam": "Blugi + abur",
"iot_jeans_steam": "Blugi + abur",
"iot_mixed_steam": "Mixte + Abur", "iot_mixed_steam": "Mixte + Abur",
"iot_mix_and_colour_59_steam": "Mixte și colorate 59' + abur", "iot_mix_and_colour_59_steam": "Mixte și colorate 59' + abur",
"iot_perfect_cotton_59_steam": "Bumbac Perfect 59'", "iot_perfect_cotton_59_steam": "Bumbac Perfect 59'",
@ -1569,6 +1574,7 @@
"iot_wash_sport_anti_odor": "Îmbrăcăminte sportivă anti-miros", "iot_wash_sport_anti_odor": "Îmbrăcăminte sportivă anti-miros",
"iot_wash_sport_anti_odor_zelig": "Îmbrăcăminte sportivă anti-miros", "iot_wash_sport_anti_odor_zelig": "Îmbrăcăminte sportivă anti-miros",
"iot_wash_stains_remover": "Eliminare de pete", "iot_wash_stains_remover": "Eliminare de pete",
"iot_wash_super_saving": "Super Economii 49'",
"iot_wash_swimsuits_and_bikinis": "Costume de baie", "iot_wash_swimsuits_and_bikinis": "Costume de baie",
"iot_wash_synthetic": "Sintetice", "iot_wash_synthetic": "Sintetice",
"iot_wash_synthetic_steam": "Sintetice + Abur", "iot_wash_synthetic_steam": "Sintetice + Abur",
@ -1653,11 +1659,11 @@
"cool_drink": "Cool Drink", "cool_drink": "Cool Drink",
"eco": "Eco", "eco": "Eco",
"eco_mode": "Modul Eco", "eco_mode": "Modul Eco",
"fruits": "Fruits", "fruits": "Fruit",
"fruits_and_veg": "Fruit&Veg (Fructe și legume)", "fruits_and_veg": "Fruit&Veg (Fructe și legume)",
"fruit_and_veg": "Fruit & Veg", "fruit_and_veg": "Fruit & Veg",
"holiday": "HOLIDAY (Perioadă de neutilizare)", "holiday": "HOLIDAY (Perioadă de neutilizare)",
"keep_fresh": "0° Fresh", "keep_fresh": "0°C Fresh",
"milk_and_eggs": "Milk & Eggs", "milk_and_eggs": "Milk & Eggs",
"no_mode_selected": "Niciun mod selectat", "no_mode_selected": "Niciun mod selectat",
"quick_cool": "QUICK COOL", "quick_cool": "QUICK COOL",
@ -1666,9 +1672,9 @@
"soft_frozen": "Soft freezing", "soft_frozen": "Soft freezing",
"super_cool": "SUPER COOL (Răcire rapidă)", "super_cool": "SUPER COOL (Răcire rapidă)",
"super_freeze": "SUPER FREEZE (Congelare rapidă)", "super_freeze": "SUPER FREEZE (Congelare rapidă)",
"tea": "Cold drinks or Beverages", "tea": "Cold Drinks",
"vegetables": "Vegetables", "vegetables": "Vegetable",
"zero_fresh": "0° Fresh" "zero_fresh": "0°C Fresh"
}, },
"name": "Program" "name": "Program"
}, },
@ -1764,6 +1770,28 @@
"unknown": "unknown" "unknown": "unknown"
}, },
"name": "Nivelul de pătare" "name": "Nivelul de pătare"
},
"fan_horizontal": {
"name": "Direcția ventilatorului Orizontal",
"state": {
"position_1": "Fix - Poziție 1",
"position_2": "Fix - Poziție 2",
"position_3": "Fix - Poziție 3",
"position_4": "Fix - Poziție 4",
"position_5": "Fix - Poziție 5",
"swing": "Baleiere"
}
},
"fan_vertical": {
"name": "Direcția ventilatorului Vertical",
"state": {
"position_1": "Fix - Poziție 1",
"position_2": "Fix - Poziție 2",
"position_3": "Fix - Poziție 3",
"position_4": "Fix - Poziție 4",
"position_5": "Fix - Poziție 5",
"swing": "Baleiere"
}
} }
}, },
"switch": { "switch": {
@ -2021,6 +2049,9 @@
}, },
"aroma_time_off": { "aroma_time_off": {
"name": "Difuzor (OPRIT)" "name": "Difuzor (OPRIT)"
},
"my_zone_temp_sel": {
"name": "Temperatură vizată My Zone"
} }
}, },
"climate": { "climate": {
@ -2155,6 +2186,9 @@
} }
} }
} }
},
"my_zone": {
"name": "My Zone"
} }
}, },
"fan": { "fan": {

View File

@ -524,6 +524,7 @@
"iot_active_wash_steam": "Активная стирка 20' + пар", "iot_active_wash_steam": "Активная стирка 20' + пар",
"iot_allergy_care_pro": "Уход для аллергиков про", "iot_allergy_care_pro": "Уход для аллергиков про",
"iot_all_in_one_59_steam": "Все в одном 59' + пар", "iot_all_in_one_59_steam": "Все в одном 59' + пар",
"iot_baby_60_steam": "Стирка детского белья при 60°С + пар",
"iot_checkup": "Проверка", "iot_checkup": "Проверка",
"iot_colour_59_steam": "Цветные ткани 59' + пар", "iot_colour_59_steam": "Цветные ткани 59' + пар",
"iot_cottons_steam": "Хлопок + Пар", "iot_cottons_steam": "Хлопок + Пар",
@ -561,6 +562,7 @@
"iot_hygiene_pro_steam": "Hygiene Pro + Пар", "iot_hygiene_pro_steam": "Hygiene Pro + Пар",
"iot_intensive_40_steam": "Интенсивный пар 40°C +", "iot_intensive_40_steam": "Интенсивный пар 40°C +",
"iot_jeans_60_steam": "Джинсы + пар", "iot_jeans_60_steam": "Джинсы + пар",
"iot_jeans_steam": "Джинсы + пар",
"iot_mixed_steam": "Смешанные ткани + Пар", "iot_mixed_steam": "Смешанные ткани + Пар",
"iot_mix_and_colour_59_steam": "Смешанные и цветные 59 мин + пар", "iot_mix_and_colour_59_steam": "Смешанные и цветные 59 мин + пар",
"iot_perfect_cotton_59_steam": "ХЛОПОК: ИДЕАЛЬНАЯ СТИРКА 59'", "iot_perfect_cotton_59_steam": "ХЛОПОК: ИДЕАЛЬНАЯ СТИРКА 59'",
@ -683,6 +685,7 @@
"iot_wash_sport_anti_odor": "Устранение запаха со спортивной одежды", "iot_wash_sport_anti_odor": "Устранение запаха со спортивной одежды",
"iot_wash_sport_anti_odor_zelig": "Устранение запаха со спортивной одежды", "iot_wash_sport_anti_odor_zelig": "Устранение запаха со спортивной одежды",
"iot_wash_stains_remover": "Выведение пятен", "iot_wash_stains_remover": "Выведение пятен",
"iot_wash_super_saving": "Супер экономичная 49 мин.",
"iot_wash_swimsuits_and_bikinis": "Купальники", "iot_wash_swimsuits_and_bikinis": "Купальники",
"iot_wash_synthetic": "Синтетика", "iot_wash_synthetic": "Синтетика",
"iot_wash_synthetic_steam": "Синтетика + Пар", "iot_wash_synthetic_steam": "Синтетика + Пар",
@ -767,11 +770,11 @@
"cool_drink": "Cool Drink", "cool_drink": "Cool Drink",
"eco": "Eco", "eco": "Eco",
"eco_mode": "Режим Eco", "eco_mode": "Режим Eco",
"fruits": "Fruits", "fruits": "Fruit",
"fruits_and_veg": "Фрукты и овощи", "fruits_and_veg": "Фрукты и овощи",
"fruit_and_veg": "Fruit & Veg", "fruit_and_veg": "Fruit & Veg",
"holiday": "HOLIDAY", "holiday": "HOLIDAY",
"keep_fresh": "0° Fresh", "keep_fresh": "0°C Fresh",
"milk_and_eggs": "Milk & Eggs", "milk_and_eggs": "Milk & Eggs",
"no_mode_selected": "Режим не выбран", "no_mode_selected": "Режим не выбран",
"quick_cool": "БЫСТРОЕ ОХЛАЖДЕНИЕ", "quick_cool": "БЫСТРОЕ ОХЛАЖДЕНИЕ",
@ -780,9 +783,9 @@
"soft_frozen": "Soft freezing", "soft_frozen": "Soft freezing",
"super_cool": "SUPER COOL", "super_cool": "SUPER COOL",
"super_freeze": "SUPER FREEZE", "super_freeze": "SUPER FREEZE",
"tea": "Cold drinks or Beverages", "tea": "Cold Drinks",
"vegetables": "Vegetables", "vegetables": "Vegetable",
"zero_fresh": "0° Fresh" "zero_fresh": "0°C Fresh"
}, },
"name": "Программа" "name": "Программа"
}, },
@ -1410,6 +1413,7 @@
"iot_active_wash_steam": "Активная стирка 20' + пар", "iot_active_wash_steam": "Активная стирка 20' + пар",
"iot_allergy_care_pro": "Уход для аллергиков про", "iot_allergy_care_pro": "Уход для аллергиков про",
"iot_all_in_one_59_steam": "Все в одном 59' + пар", "iot_all_in_one_59_steam": "Все в одном 59' + пар",
"iot_baby_60_steam": "Стирка детского белья при 60°С + пар",
"iot_checkup": "Проверка", "iot_checkup": "Проверка",
"iot_colour_59_steam": "Цветные ткани 59' + пар", "iot_colour_59_steam": "Цветные ткани 59' + пар",
"iot_cottons_steam": "Хлопок + Пар", "iot_cottons_steam": "Хлопок + Пар",
@ -1447,6 +1451,7 @@
"iot_hygiene_pro_steam": "Hygiene Pro + Пар", "iot_hygiene_pro_steam": "Hygiene Pro + Пар",
"iot_intensive_40_steam": "Интенсивный пар 40°C +", "iot_intensive_40_steam": "Интенсивный пар 40°C +",
"iot_jeans_60_steam": "Джинсы + пар", "iot_jeans_60_steam": "Джинсы + пар",
"iot_jeans_steam": "Джинсы + пар",
"iot_mixed_steam": "Смешанные ткани + Пар", "iot_mixed_steam": "Смешанные ткани + Пар",
"iot_mix_and_colour_59_steam": "Смешанные и цветные 59 мин + пар", "iot_mix_and_colour_59_steam": "Смешанные и цветные 59 мин + пар",
"iot_perfect_cotton_59_steam": "ХЛОПОК: ИДЕАЛЬНАЯ СТИРКА 59'", "iot_perfect_cotton_59_steam": "ХЛОПОК: ИДЕАЛЬНАЯ СТИРКА 59'",
@ -1569,6 +1574,7 @@
"iot_wash_sport_anti_odor": "Устранение запаха со спортивной одежды", "iot_wash_sport_anti_odor": "Устранение запаха со спортивной одежды",
"iot_wash_sport_anti_odor_zelig": "Устранение запаха со спортивной одежды", "iot_wash_sport_anti_odor_zelig": "Устранение запаха со спортивной одежды",
"iot_wash_stains_remover": "Выведение пятен", "iot_wash_stains_remover": "Выведение пятен",
"iot_wash_super_saving": "Супер экономичная 49 мин.",
"iot_wash_swimsuits_and_bikinis": "Купальники", "iot_wash_swimsuits_and_bikinis": "Купальники",
"iot_wash_synthetic": "Синтетика", "iot_wash_synthetic": "Синтетика",
"iot_wash_synthetic_steam": "Синтетика + Пар", "iot_wash_synthetic_steam": "Синтетика + Пар",
@ -1653,11 +1659,11 @@
"cool_drink": "Cool Drink", "cool_drink": "Cool Drink",
"eco": "Eco", "eco": "Eco",
"eco_mode": "Режим Eco", "eco_mode": "Режим Eco",
"fruits": "Fruits", "fruits": "Fruit",
"fruits_and_veg": "Фрукты и овощи", "fruits_and_veg": "Фрукты и овощи",
"fruit_and_veg": "Fruit & Veg", "fruit_and_veg": "Fruit & Veg",
"holiday": "HOLIDAY", "holiday": "HOLIDAY",
"keep_fresh": "0° Fresh", "keep_fresh": "0°C Fresh",
"milk_and_eggs": "Milk & Eggs", "milk_and_eggs": "Milk & Eggs",
"no_mode_selected": "Режим не выбран", "no_mode_selected": "Режим не выбран",
"quick_cool": "БЫСТРОЕ ОХЛАЖДЕНИЕ", "quick_cool": "БЫСТРОЕ ОХЛАЖДЕНИЕ",
@ -1666,9 +1672,9 @@
"soft_frozen": "Soft freezing", "soft_frozen": "Soft freezing",
"super_cool": "SUPER COOL", "super_cool": "SUPER COOL",
"super_freeze": "SUPER FREEZE", "super_freeze": "SUPER FREEZE",
"tea": "Cold drinks or Beverages", "tea": "Cold Drinks",
"vegetables": "Vegetables", "vegetables": "Vegetable",
"zero_fresh": "0° Fresh" "zero_fresh": "0°C Fresh"
}, },
"name": "Программа" "name": "Программа"
}, },
@ -1764,6 +1770,28 @@
"unknown": "unknown" "unknown": "unknown"
}, },
"name": "Уровень загрязнения" "name": "Уровень загрязнения"
},
"fan_horizontal": {
"name": "Направление вентилятора Горизонтальное",
"state": {
"position_1": "Фиксированное - Позиция 1",
"position_2": "Фиксированное - Позиция 2",
"position_3": "Фиксированное - Позиция 3",
"position_4": "Фиксированное - Позиция 4",
"position_5": "Фиксированное - Позиция 5",
"swing": "Качание"
}
},
"fan_vertical": {
"name": "Направление вентилятора Вертикальное",
"state": {
"position_1": "Фиксированное - Позиция 1",
"position_2": "Фиксированное - Позиция 2",
"position_3": "Фиксированное - Позиция 3",
"position_4": "Фиксированное - Позиция 4",
"position_5": "Фиксированное - Позиция 5",
"swing": "Качание"
}
} }
}, },
"switch": { "switch": {
@ -2021,6 +2049,9 @@
}, },
"aroma_time_off": { "aroma_time_off": {
"name": "Распылитель (Выкл.)" "name": "Распылитель (Выкл.)"
},
"my_zone_temp_sel": {
"name": "Заданная температура My Zone"
} }
}, },
"climate": { "climate": {
@ -2155,6 +2186,9 @@
} }
} }
} }
},
"my_zone": {
"name": "My Zone"
} }
}, },
"fan": { "fan": {

View File

@ -461,8 +461,8 @@
"autocare": "Automatická starostlivosť", "autocare": "Automatická starostlivosť",
"autoclean": "Čistenie bubna", "autoclean": "Čistenie bubna",
"baby_60": "Všetka detská 60°C", "baby_60": "Všetka detská 60°C",
"care_14": " Starostlivost 14'", "care_14": "Starostlivost 14'",
"care_30": " Starostlivost 30'", "care_30": "Starostlivost 30'",
"care_44": "Starostlivost 44'", "care_44": "Starostlivost 44'",
"checkup": "Kontrola", "checkup": "Kontrola",
"colour_59": "Farebná 59'", "colour_59": "Farebná 59'",
@ -524,6 +524,7 @@
"iot_active_wash_steam": "Aktívne pranie 20' + Para", "iot_active_wash_steam": "Aktívne pranie 20' + Para",
"iot_allergy_care_pro": "Antialergické ošetrenie Pro", "iot_allergy_care_pro": "Antialergické ošetrenie Pro",
"iot_all_in_one_59_steam": "Všetko v jednom 59' + para", "iot_all_in_one_59_steam": "Všetko v jednom 59' + para",
"iot_baby_60_steam": "Všetka detská 60°C + Steam",
"iot_checkup": "Kontrola", "iot_checkup": "Kontrola",
"iot_colour_59_steam": "Farebná bielizeň 59' + Para", "iot_colour_59_steam": "Farebná bielizeň 59' + Para",
"iot_cottons_steam": "Bavlna + Para", "iot_cottons_steam": "Bavlna + Para",
@ -561,6 +562,7 @@
"iot_hygiene_pro_steam": "Hygiene Pro + para", "iot_hygiene_pro_steam": "Hygiene Pro + para",
"iot_intensive_40_steam": "Intensive 40°C + Para", "iot_intensive_40_steam": "Intensive 40°C + Para",
"iot_jeans_60_steam": "Jeans + Steam", "iot_jeans_60_steam": "Jeans + Steam",
"iot_jeans_steam": "Jeans + Steam",
"iot_mixed_steam": "Zmiešané + Para", "iot_mixed_steam": "Zmiešané + Para",
"iot_mix_and_colour_59_steam": "Zmiešané a Farebné 59' + Para", "iot_mix_and_colour_59_steam": "Zmiešané a Farebné 59' + Para",
"iot_perfect_cotton_59_steam": "Cista Bavlna 59'", "iot_perfect_cotton_59_steam": "Cista Bavlna 59'",
@ -683,6 +685,7 @@
"iot_wash_sport_anti_odor": "Športové oblečenie", "iot_wash_sport_anti_odor": "Športové oblečenie",
"iot_wash_sport_anti_odor_zelig": "Športové oblečenie", "iot_wash_sport_anti_odor_zelig": "Športové oblečenie",
"iot_wash_stains_remover": "Odstraňovanie škvŕn", "iot_wash_stains_remover": "Odstraňovanie škvŕn",
"iot_wash_super_saving": "Super úspora 49'",
"iot_wash_swimsuits_and_bikinis": "Plavky", "iot_wash_swimsuits_and_bikinis": "Plavky",
"iot_wash_synthetic": "Syntetika", "iot_wash_synthetic": "Syntetika",
"iot_wash_synthetic_steam": "Syntetika + Para", "iot_wash_synthetic_steam": "Syntetika + Para",
@ -767,11 +770,11 @@
"cool_drink": "Cool Drink", "cool_drink": "Cool Drink",
"eco": "Eco", "eco": "Eco",
"eco_mode": "Režim Eco", "eco_mode": "Režim Eco",
"fruits": "Fruits", "fruits": "Fruit",
"fruits_and_veg": "Fruit&Veg", "fruits_and_veg": "Fruit&Veg",
"fruit_and_veg": "Fruit & Veg", "fruit_and_veg": "Fruit & Veg",
"holiday": "DOVOLENKA", "holiday": "DOVOLENKA",
"keep_fresh": "0° Fresh", "keep_fresh": "0°C Fresh",
"milk_and_eggs": "Milk & Eggs", "milk_and_eggs": "Milk & Eggs",
"no_mode_selected": "Nie je vybraný žiadny režim", "no_mode_selected": "Nie je vybraný žiadny režim",
"quick_cool": "QUICK COOL", "quick_cool": "QUICK COOL",
@ -780,9 +783,9 @@
"soft_frozen": "Soft freezing", "soft_frozen": "Soft freezing",
"super_cool": "SUPER CHLADENIE", "super_cool": "SUPER CHLADENIE",
"super_freeze": "SUPER MRAZENIE", "super_freeze": "SUPER MRAZENIE",
"tea": "Cold drinks or Beverages", "tea": "Cold Drinks",
"vegetables": "Vegetables", "vegetables": "Vegetable",
"zero_fresh": "0° Fresh" "zero_fresh": "0°C Fresh"
}, },
"name": "Program" "name": "Program"
}, },
@ -1347,8 +1350,8 @@
"autocare": "Automatická starostlivosť", "autocare": "Automatická starostlivosť",
"autoclean": "Čistenie bubna", "autoclean": "Čistenie bubna",
"baby_60": "Všetka detská 60°C", "baby_60": "Všetka detská 60°C",
"care_14": " Starostlivost 14'", "care_14": "Starostlivost 14'",
"care_30": " Starostlivost 30'", "care_30": "Starostlivost 30'",
"care_44": "Starostlivost 44'", "care_44": "Starostlivost 44'",
"checkup": "Kontrola", "checkup": "Kontrola",
"colour_59": "Farebná 59'", "colour_59": "Farebná 59'",
@ -1410,6 +1413,7 @@
"iot_active_wash_steam": "Aktívne pranie 20' + Para", "iot_active_wash_steam": "Aktívne pranie 20' + Para",
"iot_allergy_care_pro": "Antialergické ošetrenie Pro", "iot_allergy_care_pro": "Antialergické ošetrenie Pro",
"iot_all_in_one_59_steam": "Všetko v jednom 59' + para", "iot_all_in_one_59_steam": "Všetko v jednom 59' + para",
"iot_baby_60_steam": "Všetka detská 60°C + Steam",
"iot_checkup": "Kontrola", "iot_checkup": "Kontrola",
"iot_colour_59_steam": "Farebná bielizeň 59' + Para", "iot_colour_59_steam": "Farebná bielizeň 59' + Para",
"iot_cottons_steam": "Bavlna + Para", "iot_cottons_steam": "Bavlna + Para",
@ -1447,6 +1451,7 @@
"iot_hygiene_pro_steam": "Hygiene Pro + para", "iot_hygiene_pro_steam": "Hygiene Pro + para",
"iot_intensive_40_steam": "Intensive 40°C + Para", "iot_intensive_40_steam": "Intensive 40°C + Para",
"iot_jeans_60_steam": "Jeans + Steam", "iot_jeans_60_steam": "Jeans + Steam",
"iot_jeans_steam": "Jeans + Steam",
"iot_mixed_steam": "Zmiešané + Para", "iot_mixed_steam": "Zmiešané + Para",
"iot_mix_and_colour_59_steam": "Zmiešané a Farebné 59' + Para", "iot_mix_and_colour_59_steam": "Zmiešané a Farebné 59' + Para",
"iot_perfect_cotton_59_steam": "Cista Bavlna 59'", "iot_perfect_cotton_59_steam": "Cista Bavlna 59'",
@ -1569,6 +1574,7 @@
"iot_wash_sport_anti_odor": "Športové oblečenie", "iot_wash_sport_anti_odor": "Športové oblečenie",
"iot_wash_sport_anti_odor_zelig": "Športové oblečenie", "iot_wash_sport_anti_odor_zelig": "Športové oblečenie",
"iot_wash_stains_remover": "Odstraňovanie škvŕn", "iot_wash_stains_remover": "Odstraňovanie škvŕn",
"iot_wash_super_saving": "Super úspora 49'",
"iot_wash_swimsuits_and_bikinis": "Plavky", "iot_wash_swimsuits_and_bikinis": "Plavky",
"iot_wash_synthetic": "Syntetika", "iot_wash_synthetic": "Syntetika",
"iot_wash_synthetic_steam": "Syntetika + Para", "iot_wash_synthetic_steam": "Syntetika + Para",
@ -1653,11 +1659,11 @@
"cool_drink": "Cool Drink", "cool_drink": "Cool Drink",
"eco": "Eco", "eco": "Eco",
"eco_mode": "Režim Eco", "eco_mode": "Režim Eco",
"fruits": "Fruits", "fruits": "Fruit",
"fruits_and_veg": "Fruit&Veg", "fruits_and_veg": "Fruit&Veg",
"fruit_and_veg": "Fruit & Veg", "fruit_and_veg": "Fruit & Veg",
"holiday": "DOVOLENKA", "holiday": "DOVOLENKA",
"keep_fresh": "0° Fresh", "keep_fresh": "0°C Fresh",
"milk_and_eggs": "Milk & Eggs", "milk_and_eggs": "Milk & Eggs",
"no_mode_selected": "Nie je vybraný žiadny režim", "no_mode_selected": "Nie je vybraný žiadny režim",
"quick_cool": "QUICK COOL", "quick_cool": "QUICK COOL",
@ -1666,9 +1672,9 @@
"soft_frozen": "Soft freezing", "soft_frozen": "Soft freezing",
"super_cool": "SUPER CHLADENIE", "super_cool": "SUPER CHLADENIE",
"super_freeze": "SUPER MRAZENIE", "super_freeze": "SUPER MRAZENIE",
"tea": "Cold drinks or Beverages", "tea": "Cold Drinks",
"vegetables": "Vegetables", "vegetables": "Vegetable",
"zero_fresh": "0° Fresh" "zero_fresh": "0°C Fresh"
}, },
"name": "Program" "name": "Program"
}, },
@ -1764,6 +1770,28 @@
"unknown": "unknown" "unknown": "unknown"
}, },
"name": "Úroveň škvŕn" "name": "Úroveň škvŕn"
},
"fan_horizontal": {
"name": "Smer ventilátora Horizontálny",
"state": {
"position_1": "Pevný - Poloha 1",
"position_2": "Pevný - Poloha 2",
"position_3": "Pevný - Poloha 3",
"position_4": "Pevný - Poloha 4",
"position_5": "Pevný - Poloha 5",
"swing": "Otáčanie"
}
},
"fan_vertical": {
"name": "Smer ventilátora Vertikálny",
"state": {
"position_1": "Pevný - Poloha 1",
"position_2": "Pevný - Poloha 2",
"position_3": "Pevný - Poloha 3",
"position_4": "Pevný - Poloha 4",
"position_5": "Pevný - Poloha 5",
"swing": "Otáčanie"
}
} }
}, },
"switch": { "switch": {
@ -2021,6 +2049,9 @@
}, },
"aroma_time_off": { "aroma_time_off": {
"name": "Difuzér (VYP)" "name": "Difuzér (VYP)"
},
"my_zone_temp_sel": {
"name": "Cieľová teplota My Zone"
} }
}, },
"climate": { "climate": {
@ -2155,6 +2186,9 @@
} }
} }
} }
},
"my_zone": {
"name": "My Zone"
} }
}, },
"fan": { "fan": {

View File

@ -524,6 +524,7 @@
"iot_active_wash_steam": "Aktivno pranje 20' + para", "iot_active_wash_steam": "Aktivno pranje 20' + para",
"iot_allergy_care_pro": "Nega proti alergijam Pro", "iot_allergy_care_pro": "Nega proti alergijam Pro",
"iot_all_in_one_59_steam": "Vse v enem 59' + para", "iot_all_in_one_59_steam": "Vse v enem 59' + para",
"iot_baby_60_steam": "Vsa otroška oblačila 60 °C + para",
"iot_checkup": "Preveri", "iot_checkup": "Preveri",
"iot_colour_59_steam": "Barvno perilo 59' + para", "iot_colour_59_steam": "Barvno perilo 59' + para",
"iot_cottons_steam": "Bombaž + Para", "iot_cottons_steam": "Bombaž + Para",
@ -561,6 +562,7 @@
"iot_hygiene_pro_steam": "Hygiene Pro + Para", "iot_hygiene_pro_steam": "Hygiene Pro + Para",
"iot_intensive_40_steam": "Intenzivno 40°C + para", "iot_intensive_40_steam": "Intenzivno 40°C + para",
"iot_jeans_60_steam": "Kavbojke + para", "iot_jeans_60_steam": "Kavbojke + para",
"iot_jeans_steam": "Kavbojke + para",
"iot_mixed_steam": "Mešano + Para", "iot_mixed_steam": "Mešano + Para",
"iot_mix_and_colour_59_steam": "Mešana in pisana oblačila 59' + para", "iot_mix_and_colour_59_steam": "Mešana in pisana oblačila 59' + para",
"iot_perfect_cotton_59_steam": "Idealen za Bombaz 59'", "iot_perfect_cotton_59_steam": "Idealen za Bombaz 59'",
@ -683,6 +685,7 @@
"iot_wash_sport_anti_odor": "Športna oblačila, odporna proti neprijetnim vonjavam", "iot_wash_sport_anti_odor": "Športna oblačila, odporna proti neprijetnim vonjavam",
"iot_wash_sport_anti_odor_zelig": "Športna oblačila, odporna proti neprijetnim vonjavam", "iot_wash_sport_anti_odor_zelig": "Športna oblačila, odporna proti neprijetnim vonjavam",
"iot_wash_stains_remover": "Odstranjevalec madežev", "iot_wash_stains_remover": "Odstranjevalec madežev",
"iot_wash_super_saving": "Super prihranki 49'",
"iot_wash_swimsuits_and_bikinis": "Kopalke", "iot_wash_swimsuits_and_bikinis": "Kopalke",
"iot_wash_synthetic": "Sintetika", "iot_wash_synthetic": "Sintetika",
"iot_wash_synthetic_steam": "Sintetika + Para", "iot_wash_synthetic_steam": "Sintetika + Para",
@ -767,11 +770,11 @@
"cool_drink": "Cool Drink", "cool_drink": "Cool Drink",
"eco": "Eco", "eco": "Eco",
"eco_mode": "Način Eco", "eco_mode": "Način Eco",
"fruits": "Fruits", "fruits": "Fruit",
"fruits_and_veg": "Sadje In Zelenjava", "fruits_and_veg": "Sadje In Zelenjava",
"fruit_and_veg": "Sadje in zelenjava", "fruit_and_veg": "Sadje in zelenjava",
"holiday": "POČITNICE", "holiday": "POČITNICE",
"keep_fresh": "0° Fresh", "keep_fresh": "0°C Fresh",
"milk_and_eggs": "Milk & Eggs", "milk_and_eggs": "Milk & Eggs",
"no_mode_selected": "Izbran ni noben način", "no_mode_selected": "Izbran ni noben način",
"quick_cool": "HITRO HLAJENJE", "quick_cool": "HITRO HLAJENJE",
@ -780,9 +783,9 @@
"soft_frozen": "Soft freezing", "soft_frozen": "Soft freezing",
"super_cool": "SUPER HLAJENJE", "super_cool": "SUPER HLAJENJE",
"super_freeze": "SUPER ZAMRZOVANJE", "super_freeze": "SUPER ZAMRZOVANJE",
"tea": "Cold drinks or Beverages", "tea": "Cold Drinks",
"vegetables": "Vegetables", "vegetables": "Vegetable",
"zero_fresh": "0° Fresh" "zero_fresh": "0°C Fresh"
}, },
"name": "Program" "name": "Program"
}, },
@ -1410,6 +1413,7 @@
"iot_active_wash_steam": "Aktivno pranje 20' + para", "iot_active_wash_steam": "Aktivno pranje 20' + para",
"iot_allergy_care_pro": "Nega proti alergijam Pro", "iot_allergy_care_pro": "Nega proti alergijam Pro",
"iot_all_in_one_59_steam": "Vse v enem 59' + para", "iot_all_in_one_59_steam": "Vse v enem 59' + para",
"iot_baby_60_steam": "Vsa otroška oblačila 60 °C + para",
"iot_checkup": "Preveri", "iot_checkup": "Preveri",
"iot_colour_59_steam": "Barvno perilo 59' + para", "iot_colour_59_steam": "Barvno perilo 59' + para",
"iot_cottons_steam": "Bombaž + Para", "iot_cottons_steam": "Bombaž + Para",
@ -1447,6 +1451,7 @@
"iot_hygiene_pro_steam": "Hygiene Pro + Para", "iot_hygiene_pro_steam": "Hygiene Pro + Para",
"iot_intensive_40_steam": "Intenzivno 40°C + para", "iot_intensive_40_steam": "Intenzivno 40°C + para",
"iot_jeans_60_steam": "Kavbojke + para", "iot_jeans_60_steam": "Kavbojke + para",
"iot_jeans_steam": "Kavbojke + para",
"iot_mixed_steam": "Mešano + Para", "iot_mixed_steam": "Mešano + Para",
"iot_mix_and_colour_59_steam": "Mešana in pisana oblačila 59' + para", "iot_mix_and_colour_59_steam": "Mešana in pisana oblačila 59' + para",
"iot_perfect_cotton_59_steam": "Idealen za Bombaz 59'", "iot_perfect_cotton_59_steam": "Idealen za Bombaz 59'",
@ -1569,6 +1574,7 @@
"iot_wash_sport_anti_odor": "Športna oblačila, odporna proti neprijetnim vonjavam", "iot_wash_sport_anti_odor": "Športna oblačila, odporna proti neprijetnim vonjavam",
"iot_wash_sport_anti_odor_zelig": "Športna oblačila, odporna proti neprijetnim vonjavam", "iot_wash_sport_anti_odor_zelig": "Športna oblačila, odporna proti neprijetnim vonjavam",
"iot_wash_stains_remover": "Odstranjevalec madežev", "iot_wash_stains_remover": "Odstranjevalec madežev",
"iot_wash_super_saving": "Super prihranki 49'",
"iot_wash_swimsuits_and_bikinis": "Kopalke", "iot_wash_swimsuits_and_bikinis": "Kopalke",
"iot_wash_synthetic": "Sintetika", "iot_wash_synthetic": "Sintetika",
"iot_wash_synthetic_steam": "Sintetika + Para", "iot_wash_synthetic_steam": "Sintetika + Para",
@ -1653,11 +1659,11 @@
"cool_drink": "Cool Drink", "cool_drink": "Cool Drink",
"eco": "Eco", "eco": "Eco",
"eco_mode": "Način Eco", "eco_mode": "Način Eco",
"fruits": "Fruits", "fruits": "Fruit",
"fruits_and_veg": "Sadje In Zelenjava", "fruits_and_veg": "Sadje In Zelenjava",
"fruit_and_veg": "Sadje in zelenjava", "fruit_and_veg": "Sadje in zelenjava",
"holiday": "POČITNICE", "holiday": "POČITNICE",
"keep_fresh": "0° Fresh", "keep_fresh": "0°C Fresh",
"milk_and_eggs": "Milk & Eggs", "milk_and_eggs": "Milk & Eggs",
"no_mode_selected": "Izbran ni noben način", "no_mode_selected": "Izbran ni noben način",
"quick_cool": "HITRO HLAJENJE", "quick_cool": "HITRO HLAJENJE",
@ -1666,9 +1672,9 @@
"soft_frozen": "Soft freezing", "soft_frozen": "Soft freezing",
"super_cool": "SUPER HLAJENJE", "super_cool": "SUPER HLAJENJE",
"super_freeze": "SUPER ZAMRZOVANJE", "super_freeze": "SUPER ZAMRZOVANJE",
"tea": "Cold drinks or Beverages", "tea": "Cold Drinks",
"vegetables": "Vegetables", "vegetables": "Vegetable",
"zero_fresh": "0° Fresh" "zero_fresh": "0°C Fresh"
}, },
"name": "Program" "name": "Program"
}, },
@ -1764,6 +1770,28 @@
"unknown": "unknown" "unknown": "unknown"
}, },
"name": "Stopnja madežev" "name": "Stopnja madežev"
},
"fan_horizontal": {
"name": "Smer ventilatorja Vodoravno",
"state": {
"position_1": "Fiksno - Položaj 1",
"position_2": "Fiksno - Položaj 2",
"position_3": "Fiksno - Položaj 3",
"position_4": "Fiksno - Položaj 4",
"position_5": "Fiksno - Položaj 5",
"swing": "Nihanje"
}
},
"fan_vertical": {
"name": "Smer ventilatorja Navpično",
"state": {
"position_1": "Fiksno - Položaj 1",
"position_2": "Fiksno - Položaj 2",
"position_3": "Fiksno - Položaj 3",
"position_4": "Fiksno - Položaj 4",
"position_5": "Fiksno - Položaj 5",
"swing": "Nihanje"
}
} }
}, },
"switch": { "switch": {
@ -2021,6 +2049,9 @@
}, },
"aroma_time_off": { "aroma_time_off": {
"name": "Razpršilnik (IZKLOP)" "name": "Razpršilnik (IZKLOP)"
},
"my_zone_temp_sel": {
"name": "Ciljna temperatura My Zone"
} }
}, },
"climate": { "climate": {
@ -2155,6 +2186,9 @@
} }
} }
} }
},
"my_zone": {
"name": "My Zone"
} }
}, },
"fan": { "fan": {

View File

@ -524,6 +524,7 @@
"iot_active_wash_steam": "Aktivno pranje 20' + para", "iot_active_wash_steam": "Aktivno pranje 20' + para",
"iot_allergy_care_pro": "Tretman protiv alergija Pro", "iot_allergy_care_pro": "Tretman protiv alergija Pro",
"iot_all_in_one_59_steam": "Sve u jedan 59' + para", "iot_all_in_one_59_steam": "Sve u jedan 59' + para",
"iot_baby_60_steam": "All Baby 60°C + Steam",
"iot_checkup": "Provera", "iot_checkup": "Provera",
"iot_colour_59_steam": "Šarena odeća 59' + para", "iot_colour_59_steam": "Šarena odeća 59' + para",
"iot_cottons_steam": "Pamuk + Para", "iot_cottons_steam": "Pamuk + Para",
@ -561,6 +562,7 @@
"iot_hygiene_pro_steam": "Hygiene Pro + para", "iot_hygiene_pro_steam": "Hygiene Pro + para",
"iot_intensive_40_steam": "Intenzivno 40°C + para", "iot_intensive_40_steam": "Intenzivno 40°C + para",
"iot_jeans_60_steam": "„Jeans + Steam“", "iot_jeans_60_steam": "„Jeans + Steam“",
"iot_jeans_steam": "Jeans + Steam",
"iot_mixed_steam": "Mešani veš + Para", "iot_mixed_steam": "Mešani veš + Para",
"iot_mix_and_colour_59_steam": "Mešano i u boji 59' + para", "iot_mix_and_colour_59_steam": "Mešano i u boji 59' + para",
"iot_perfect_cotton_59_steam": "Perfect Pamuk 59'", "iot_perfect_cotton_59_steam": "Perfect Pamuk 59'",
@ -683,6 +685,7 @@
"iot_wash_sport_anti_odor": "Sportska odeća sa sprečavanjem neprijatnih mirisa", "iot_wash_sport_anti_odor": "Sportska odeća sa sprečavanjem neprijatnih mirisa",
"iot_wash_sport_anti_odor_zelig": "Sportska odeća sa sprečavanjem neprijatnih mirisa", "iot_wash_sport_anti_odor_zelig": "Sportska odeća sa sprečavanjem neprijatnih mirisa",
"iot_wash_stains_remover": "Uklanjanje fleka", "iot_wash_stains_remover": "Uklanjanje fleka",
"iot_wash_super_saving": "Super ušteda 49'",
"iot_wash_swimsuits_and_bikinis": "Odeća za kupanje", "iot_wash_swimsuits_and_bikinis": "Odeća za kupanje",
"iot_wash_synthetic": "Sintetika", "iot_wash_synthetic": "Sintetika",
"iot_wash_synthetic_steam": "Sintetika + Para", "iot_wash_synthetic_steam": "Sintetika + Para",
@ -767,11 +770,11 @@
"cool_drink": "Cool Drink", "cool_drink": "Cool Drink",
"eco": "Eco", "eco": "Eco",
"eco_mode": "Eco režim", "eco_mode": "Eco režim",
"fruits": "Fruits", "fruits": "Fruit",
"fruits_and_veg": "Voće i Povrće", "fruits_and_veg": "Voće i Povrće",
"fruit_and_veg": "Fruit & Veg", "fruit_and_veg": "Fruit & Veg",
"holiday": "ODMOR", "holiday": "ODMOR",
"keep_fresh": "0° Fresh", "keep_fresh": "0°C Fresh",
"milk_and_eggs": "Milk & Eggs", "milk_and_eggs": "Milk & Eggs",
"no_mode_selected": "Nije izabran nijedan režim", "no_mode_selected": "Nije izabran nijedan režim",
"quick_cool": "BRZO HLAĐENJE", "quick_cool": "BRZO HLAĐENJE",
@ -780,9 +783,9 @@
"soft_frozen": "Soft freezing", "soft_frozen": "Soft freezing",
"super_cool": "SUPER HLAĐENJE", "super_cool": "SUPER HLAĐENJE",
"super_freeze": "SUPER ZAMRZAVANJE", "super_freeze": "SUPER ZAMRZAVANJE",
"tea": "Cold drinks or Beverages", "tea": "Cold Drinks",
"vegetables": "Vegetables", "vegetables": "Vegetable",
"zero_fresh": "0° Fresh" "zero_fresh": "0°C Fresh"
}, },
"name": "Program" "name": "Program"
}, },
@ -1410,6 +1413,7 @@
"iot_active_wash_steam": "Aktivno pranje 20' + para", "iot_active_wash_steam": "Aktivno pranje 20' + para",
"iot_allergy_care_pro": "Tretman protiv alergija Pro", "iot_allergy_care_pro": "Tretman protiv alergija Pro",
"iot_all_in_one_59_steam": "Sve u jedan 59' + para", "iot_all_in_one_59_steam": "Sve u jedan 59' + para",
"iot_baby_60_steam": "All Baby 60°C + Steam",
"iot_checkup": "Provera", "iot_checkup": "Provera",
"iot_colour_59_steam": "Šarena odeća 59' + para", "iot_colour_59_steam": "Šarena odeća 59' + para",
"iot_cottons_steam": "Pamuk + Para", "iot_cottons_steam": "Pamuk + Para",
@ -1447,6 +1451,7 @@
"iot_hygiene_pro_steam": "Hygiene Pro + para", "iot_hygiene_pro_steam": "Hygiene Pro + para",
"iot_intensive_40_steam": "Intenzivno 40°C + para", "iot_intensive_40_steam": "Intenzivno 40°C + para",
"iot_jeans_60_steam": "„Jeans + Steam“", "iot_jeans_60_steam": "„Jeans + Steam“",
"iot_jeans_steam": "Jeans + Steam",
"iot_mixed_steam": "Mešani veš + Para", "iot_mixed_steam": "Mešani veš + Para",
"iot_mix_and_colour_59_steam": "Mešano i u boji 59' + para", "iot_mix_and_colour_59_steam": "Mešano i u boji 59' + para",
"iot_perfect_cotton_59_steam": "Perfect Pamuk 59'", "iot_perfect_cotton_59_steam": "Perfect Pamuk 59'",
@ -1569,6 +1574,7 @@
"iot_wash_sport_anti_odor": "Sportska odeća sa sprečavanjem neprijatnih mirisa", "iot_wash_sport_anti_odor": "Sportska odeća sa sprečavanjem neprijatnih mirisa",
"iot_wash_sport_anti_odor_zelig": "Sportska odeća sa sprečavanjem neprijatnih mirisa", "iot_wash_sport_anti_odor_zelig": "Sportska odeća sa sprečavanjem neprijatnih mirisa",
"iot_wash_stains_remover": "Uklanjanje fleka", "iot_wash_stains_remover": "Uklanjanje fleka",
"iot_wash_super_saving": "Super ušteda 49'",
"iot_wash_swimsuits_and_bikinis": "Odeća za kupanje", "iot_wash_swimsuits_and_bikinis": "Odeća za kupanje",
"iot_wash_synthetic": "Sintetika", "iot_wash_synthetic": "Sintetika",
"iot_wash_synthetic_steam": "Sintetika + Para", "iot_wash_synthetic_steam": "Sintetika + Para",
@ -1653,11 +1659,11 @@
"cool_drink": "Cool Drink", "cool_drink": "Cool Drink",
"eco": "Eco", "eco": "Eco",
"eco_mode": "Eco režim", "eco_mode": "Eco režim",
"fruits": "Fruits", "fruits": "Fruit",
"fruits_and_veg": "Voće i Povrće", "fruits_and_veg": "Voće i Povrće",
"fruit_and_veg": "Fruit & Veg", "fruit_and_veg": "Fruit & Veg",
"holiday": "ODMOR", "holiday": "ODMOR",
"keep_fresh": "0° Fresh", "keep_fresh": "0°C Fresh",
"milk_and_eggs": "Milk & Eggs", "milk_and_eggs": "Milk & Eggs",
"no_mode_selected": "Nije izabran nijedan režim", "no_mode_selected": "Nije izabran nijedan režim",
"quick_cool": "BRZO HLAĐENJE", "quick_cool": "BRZO HLAĐENJE",
@ -1666,9 +1672,9 @@
"soft_frozen": "Soft freezing", "soft_frozen": "Soft freezing",
"super_cool": "SUPER HLAĐENJE", "super_cool": "SUPER HLAĐENJE",
"super_freeze": "SUPER ZAMRZAVANJE", "super_freeze": "SUPER ZAMRZAVANJE",
"tea": "Cold drinks or Beverages", "tea": "Cold Drinks",
"vegetables": "Vegetables", "vegetables": "Vegetable",
"zero_fresh": "0° Fresh" "zero_fresh": "0°C Fresh"
}, },
"name": "Program" "name": "Program"
}, },
@ -1764,6 +1770,28 @@
"unknown": "unknown" "unknown": "unknown"
}, },
"name": "Nivo mrlje" "name": "Nivo mrlje"
},
"fan_horizontal": {
"name": "Pravac duvanja ventilatora Horizontalan",
"state": {
"position_1": "Fiksiran - Položaj 1",
"position_2": "Fiksiran - Položaj 2",
"position_3": "Fiksiran - Položaj 3",
"position_4": "Fiksiran - Položaj 4",
"position_5": "Fiksiran - Položaj 5",
"swing": "Njihanje"
}
},
"fan_vertical": {
"name": "Pravac duvanja ventilatora Vertikalan",
"state": {
"position_1": "Fiksiran - Položaj 1",
"position_2": "Fiksiran - Položaj 2",
"position_3": "Fiksiran - Položaj 3",
"position_4": "Fiksiran - Položaj 4",
"position_5": "Fiksiran - Položaj 5",
"swing": "Njihanje"
}
} }
}, },
"switch": { "switch": {
@ -2021,6 +2049,9 @@
}, },
"aroma_time_off": { "aroma_time_off": {
"name": "Difuzor (ISKLJUČENO)" "name": "Difuzor (ISKLJUČENO)"
},
"my_zone_temp_sel": {
"name": "Željena temperatura My Zone"
} }
}, },
"climate": { "climate": {
@ -2155,6 +2186,9 @@
} }
} }
} }
},
"my_zone": {
"name": "My Zone"
} }
}, },
"fan": { "fan": {

View File

@ -452,7 +452,7 @@
"20_degrees_new_energy_label": "20°C", "20_degrees_new_energy_label": "20°C",
"active_steam": "Buhar 29'", "active_steam": "Buhar 29'",
"active_wash": "Aktif Yıkama 20'", "active_wash": "Aktif Yıkama 20'",
"active_wash_steam": "Aktif Yıkama 20' + Buhar", "active_wash_steam": "Aktif Yıkama 20' + Buhar",
"allergy_care": "Alerji Bakımı", "allergy_care": "Alerji Bakımı",
"allergy_care_pro": "Anti-Alerji Pro", "allergy_care_pro": "Anti-Alerji Pro",
"all_in_one_49": "Hepsi bir Arada 49'.", "all_in_one_49": "Hepsi bir Arada 49'.",
@ -521,9 +521,10 @@
"intensive_40": "Yoğun 40°C", "intensive_40": "Yoğun 40°C",
"intensive_40_steam": "Yoğun 40°C + Buhar", "intensive_40_steam": "Yoğun 40°C + Buhar",
"iot_active_steam": "Buhar 29'", "iot_active_steam": "Buhar 29'",
"iot_active_wash_steam": "Aktif Yıkama 20' + Buhar", "iot_active_wash_steam": "Aktif Yıkama 20' + Buhar",
"iot_allergy_care_pro": "Anti-Alerji Pro", "iot_allergy_care_pro": "Anti-Alerji Pro",
"iot_all_in_one_59_steam": "Hepsi bir Arada 59' + Buhar", "iot_all_in_one_59_steam": "Hepsi bir Arada 59' + Buhar",
"iot_baby_60_steam": "Bebek Kıyafetleri 60°C + Buhar",
"iot_checkup": "Check-up", "iot_checkup": "Check-up",
"iot_colour_59_steam": "Renkliler 59' + Buhar", "iot_colour_59_steam": "Renkliler 59' + Buhar",
"iot_cottons_steam": "Pamuklular + Buhar", "iot_cottons_steam": "Pamuklular + Buhar",
@ -561,6 +562,7 @@
"iot_hygiene_pro_steam": "Hygiene Pro + Buhar", "iot_hygiene_pro_steam": "Hygiene Pro + Buhar",
"iot_intensive_40_steam": "Yoğun 40°C + Buhar", "iot_intensive_40_steam": "Yoğun 40°C + Buhar",
"iot_jeans_60_steam": "Kot Pantolon + Buhar", "iot_jeans_60_steam": "Kot Pantolon + Buhar",
"iot_jeans_steam": "Kot Pantolon + Buhar",
"iot_mixed_steam": "Karışık + Buhar", "iot_mixed_steam": "Karışık + Buhar",
"iot_mix_and_colour_59_steam": "Karışık ve Renkliler 59' + Buhar", "iot_mix_and_colour_59_steam": "Karışık ve Renkliler 59' + Buhar",
"iot_perfect_cotton_59_steam": "Kirli Pamuklular 59'", "iot_perfect_cotton_59_steam": "Kirli Pamuklular 59'",
@ -683,6 +685,7 @@
"iot_wash_sport_anti_odor": "Koku Önleyici Spor Giyim", "iot_wash_sport_anti_odor": "Koku Önleyici Spor Giyim",
"iot_wash_sport_anti_odor_zelig": "Koku Önleyici Spor Giyim", "iot_wash_sport_anti_odor_zelig": "Koku Önleyici Spor Giyim",
"iot_wash_stains_remover": "Leke çıkarıcı", "iot_wash_stains_remover": "Leke çıkarıcı",
"iot_wash_super_saving": "Süper Tasarruf 49'",
"iot_wash_swimsuits_and_bikinis": "Mayolar", "iot_wash_swimsuits_and_bikinis": "Mayolar",
"iot_wash_synthetic": "Sentetikler", "iot_wash_synthetic": "Sentetikler",
"iot_wash_synthetic_steam": "Sentetikler + Buhar", "iot_wash_synthetic_steam": "Sentetikler + Buhar",
@ -767,11 +770,11 @@
"cool_drink": "Cool Drink", "cool_drink": "Cool Drink",
"eco": "Eco", "eco": "Eco",
"eco_mode": "Eco modu", "eco_mode": "Eco modu",
"fruits": "Fruits", "fruits": "Fruit",
"fruits_and_veg": "Meyve Ve Sebze", "fruits_and_veg": "Meyve Ve Sebze",
"fruit_and_veg": "Fruit & Veg", "fruit_and_veg": "Fruit & Veg",
"holiday": "TATİL", "holiday": "TATİL",
"keep_fresh": "0° Fresh", "keep_fresh": "0°C Fresh",
"milk_and_eggs": "Milk & Eggs", "milk_and_eggs": "Milk & Eggs",
"no_mode_selected": "Hiç mod seçilmedi", "no_mode_selected": "Hiç mod seçilmedi",
"quick_cool": "HIZLI SOĞUTMA", "quick_cool": "HIZLI SOĞUTMA",
@ -780,9 +783,9 @@
"soft_frozen": "Soft freezing", "soft_frozen": "Soft freezing",
"super_cool": "SUPER COOL", "super_cool": "SUPER COOL",
"super_freeze": "SUPER FREEZE", "super_freeze": "SUPER FREEZE",
"tea": "Cold drinks or Beverages", "tea": "Cold Drinks",
"vegetables": "Vegetables", "vegetables": "Vegetable",
"zero_fresh": "0° Fresh" "zero_fresh": "0°C Fresh"
}, },
"name": "Program" "name": "Program"
}, },
@ -1338,7 +1341,7 @@
"20_degrees_new_energy_label": "20°C", "20_degrees_new_energy_label": "20°C",
"active_steam": "Buhar 29'", "active_steam": "Buhar 29'",
"active_wash": "Aktif Yıkama 20'", "active_wash": "Aktif Yıkama 20'",
"active_wash_steam": "Aktif Yıkama 20' + Buhar", "active_wash_steam": "Aktif Yıkama 20' + Buhar",
"allergy_care": "Alerji Bakımı", "allergy_care": "Alerji Bakımı",
"allergy_care_pro": "Anti-Alerji Pro", "allergy_care_pro": "Anti-Alerji Pro",
"all_in_one_49": "Hepsi bir Arada 49'.", "all_in_one_49": "Hepsi bir Arada 49'.",
@ -1407,9 +1410,10 @@
"intensive_40": "Yoğun 40°C", "intensive_40": "Yoğun 40°C",
"intensive_40_steam": "Yoğun 40°C + Buhar", "intensive_40_steam": "Yoğun 40°C + Buhar",
"iot_active_steam": "Buhar 29'", "iot_active_steam": "Buhar 29'",
"iot_active_wash_steam": "Aktif Yıkama 20' + Buhar", "iot_active_wash_steam": "Aktif Yıkama 20' + Buhar",
"iot_allergy_care_pro": "Anti-Alerji Pro", "iot_allergy_care_pro": "Anti-Alerji Pro",
"iot_all_in_one_59_steam": "Hepsi bir Arada 59' + Buhar", "iot_all_in_one_59_steam": "Hepsi bir Arada 59' + Buhar",
"iot_baby_60_steam": "Bebek Kıyafetleri 60°C + Buhar",
"iot_checkup": "Check-up", "iot_checkup": "Check-up",
"iot_colour_59_steam": "Renkliler 59' + Buhar", "iot_colour_59_steam": "Renkliler 59' + Buhar",
"iot_cottons_steam": "Pamuklular + Buhar", "iot_cottons_steam": "Pamuklular + Buhar",
@ -1447,6 +1451,7 @@
"iot_hygiene_pro_steam": "Hygiene Pro + Buhar", "iot_hygiene_pro_steam": "Hygiene Pro + Buhar",
"iot_intensive_40_steam": "Yoğun 40°C + Buhar", "iot_intensive_40_steam": "Yoğun 40°C + Buhar",
"iot_jeans_60_steam": "Kot Pantolon + Buhar", "iot_jeans_60_steam": "Kot Pantolon + Buhar",
"iot_jeans_steam": "Kot Pantolon + Buhar",
"iot_mixed_steam": "Karışık + Buhar", "iot_mixed_steam": "Karışık + Buhar",
"iot_mix_and_colour_59_steam": "Karışık ve Renkliler 59' + Buhar", "iot_mix_and_colour_59_steam": "Karışık ve Renkliler 59' + Buhar",
"iot_perfect_cotton_59_steam": "Kirli Pamuklular 59'", "iot_perfect_cotton_59_steam": "Kirli Pamuklular 59'",
@ -1569,6 +1574,7 @@
"iot_wash_sport_anti_odor": "Koku Önleyici Spor Giyim", "iot_wash_sport_anti_odor": "Koku Önleyici Spor Giyim",
"iot_wash_sport_anti_odor_zelig": "Koku Önleyici Spor Giyim", "iot_wash_sport_anti_odor_zelig": "Koku Önleyici Spor Giyim",
"iot_wash_stains_remover": "Leke çıkarıcı", "iot_wash_stains_remover": "Leke çıkarıcı",
"iot_wash_super_saving": "Süper Tasarruf 49'",
"iot_wash_swimsuits_and_bikinis": "Mayolar", "iot_wash_swimsuits_and_bikinis": "Mayolar",
"iot_wash_synthetic": "Sentetikler", "iot_wash_synthetic": "Sentetikler",
"iot_wash_synthetic_steam": "Sentetikler + Buhar", "iot_wash_synthetic_steam": "Sentetikler + Buhar",
@ -1653,11 +1659,11 @@
"cool_drink": "Cool Drink", "cool_drink": "Cool Drink",
"eco": "Eco", "eco": "Eco",
"eco_mode": "Eco modu", "eco_mode": "Eco modu",
"fruits": "Fruits", "fruits": "Fruit",
"fruits_and_veg": "Meyve Ve Sebze", "fruits_and_veg": "Meyve Ve Sebze",
"fruit_and_veg": "Fruit & Veg", "fruit_and_veg": "Fruit & Veg",
"holiday": "TATİL", "holiday": "TATİL",
"keep_fresh": "0° Fresh", "keep_fresh": "0°C Fresh",
"milk_and_eggs": "Milk & Eggs", "milk_and_eggs": "Milk & Eggs",
"no_mode_selected": "Hiç mod seçilmedi", "no_mode_selected": "Hiç mod seçilmedi",
"quick_cool": "HIZLI SOĞUTMA", "quick_cool": "HIZLI SOĞUTMA",
@ -1666,9 +1672,9 @@
"soft_frozen": "Soft freezing", "soft_frozen": "Soft freezing",
"super_cool": "SUPER COOL", "super_cool": "SUPER COOL",
"super_freeze": "SUPER FREEZE", "super_freeze": "SUPER FREEZE",
"tea": "Cold drinks or Beverages", "tea": "Cold Drinks",
"vegetables": "Vegetables", "vegetables": "Vegetable",
"zero_fresh": "0° Fresh" "zero_fresh": "0°C Fresh"
}, },
"name": "Program" "name": "Program"
}, },
@ -1764,6 +1770,28 @@
"unknown": "unknown" "unknown": "unknown"
}, },
"name": "Leke seviyesi" "name": "Leke seviyesi"
},
"fan_horizontal": {
"name": "Fan yönü Yatay",
"state": {
"position_1": "Sabit - Pozisyon 1",
"position_2": "Sabit - Pozisyon 2",
"position_3": "Sabit - Pozisyon 3",
"position_4": "Sabit - Pozisyon 4",
"position_5": "Sabit - Pozisyon 5",
"swing": "Salınım"
}
},
"fan_vertical": {
"name": "Fan yönü Dikey",
"state": {
"position_1": "Sabit - Pozisyon 1",
"position_2": "Sabit - Pozisyon 2",
"position_3": "Sabit - Pozisyon 3",
"position_4": "Sabit - Pozisyon 4",
"position_5": "Sabit - Pozisyon 5",
"swing": "Salınım"
}
} }
}, },
"switch": { "switch": {
@ -2021,6 +2049,9 @@
}, },
"aroma_time_off": { "aroma_time_off": {
"name": "Difüzör (KAPALI)" "name": "Difüzör (KAPALI)"
},
"my_zone_temp_sel": {
"name": "Hedef sıcaklık My Zone"
} }
}, },
"climate": { "climate": {
@ -2155,6 +2186,9 @@
} }
} }
} }
},
"my_zone": {
"name": "My Zone"
} }
}, },
"fan": { "fan": {

View File

@ -517,6 +517,7 @@
"iot_active_wash_steam": "活化洗涤 20' + 蒸汽", "iot_active_wash_steam": "活化洗涤 20' + 蒸汽",
"iot_allergy_care_pro": "Allergy Care Pro", "iot_allergy_care_pro": "Allergy Care Pro",
"iot_all_in_one_59_steam": "一体化 59' + 蒸汽", "iot_all_in_one_59_steam": "一体化 59' + 蒸汽",
"iot_baby_60_steam": "婴儿服60℃ + 蒸汽",
"iot_checkup": "检测", "iot_checkup": "检测",
"iot_colour_59_steam": "Coloureds 59' + 蒸汽", "iot_colour_59_steam": "Coloureds 59' + 蒸汽",
"iot_cottons_steam": "棉质 + 蒸汽", "iot_cottons_steam": "棉质 + 蒸汽",
@ -554,6 +555,7 @@
"iot_hygiene_pro_steam": "Hygiene Pro + 蒸汽", "iot_hygiene_pro_steam": "Hygiene Pro + 蒸汽",
"iot_intensive_40_steam": "Intensive 40°C + 蒸汽", "iot_intensive_40_steam": "Intensive 40°C + 蒸汽",
"iot_jeans_60_steam": "牛仔裤 + 蒸汽", "iot_jeans_60_steam": "牛仔裤 + 蒸汽",
"iot_jeans_steam": "牛仔裤 + 蒸汽",
"iot_mixed_steam": "混合 + 蒸汽", "iot_mixed_steam": "混合 + 蒸汽",
"iot_mix_and_colour_59_steam": "混合材质和彩色 59' + 蒸汽", "iot_mix_and_colour_59_steam": "混合材质和彩色 59' + 蒸汽",
"iot_perfect_cotton_59_steam": "完美棉质 59 分", "iot_perfect_cotton_59_steam": "完美棉质 59 分",
@ -676,6 +678,7 @@
"iot_wash_sport_anti_odor": "防体味运动服", "iot_wash_sport_anti_odor": "防体味运动服",
"iot_wash_sport_anti_odor_zelig": "防体味运动服", "iot_wash_sport_anti_odor_zelig": "防体味运动服",
"iot_wash_stains_remover": "去污", "iot_wash_stains_remover": "去污",
"iot_wash_super_saving": "超级节约 49'",
"iot_wash_swimsuits_and_bikinis": "泳衣", "iot_wash_swimsuits_and_bikinis": "泳衣",
"iot_wash_synthetic": "合成纤维", "iot_wash_synthetic": "合成纤维",
"iot_wash_synthetic_steam": "合成纤维 + 蒸汽", "iot_wash_synthetic_steam": "合成纤维 + 蒸汽",
@ -760,11 +763,11 @@
"cool_drink": "Cool Drink", "cool_drink": "Cool Drink",
"eco": "Eco", "eco": "Eco",
"eco_mode": "Eco 模式", "eco_mode": "Eco 模式",
"fruits": "Fruits", "fruits": "Fruit",
"fruits_and_veg": "Fruit&Veg水果和蔬菜", "fruits_and_veg": "Fruit&Veg水果和蔬菜",
"fruit_and_veg": "Fruit & Veg", "fruit_and_veg": "Fruit & Veg",
"holiday": "HOLIDAY假日模式", "holiday": "HOLIDAY假日模式",
"keep_fresh": "0° Fresh", "keep_fresh": "0°C Fresh",
"milk_and_eggs": "Milk & Eggs", "milk_and_eggs": "Milk & Eggs",
"no_mode_selected": "未选择模式", "no_mode_selected": "未选择模式",
"quick_cool": "QUICK COOL快速冷却", "quick_cool": "QUICK COOL快速冷却",
@ -773,9 +776,9 @@
"soft_frozen": "Soft freezing", "soft_frozen": "Soft freezing",
"super_cool": "SUPER COOL超级冷却", "super_cool": "SUPER COOL超级冷却",
"super_freeze": "SUPER FREEZE超级冷冻", "super_freeze": "SUPER FREEZE超级冷冻",
"tea": "Cold drinks or Beverages", "tea": "Cold Drinks",
"vegetables": "Vegetables", "vegetables": "Vegetable",
"zero_fresh": "0° Fresh" "zero_fresh": "0°C Fresh"
}, },
"name": "程序" "name": "程序"
}, },
@ -1396,6 +1399,7 @@
"iot_active_wash_steam": "活化洗涤 20' + 蒸汽", "iot_active_wash_steam": "活化洗涤 20' + 蒸汽",
"iot_allergy_care_pro": "Allergy Care Pro", "iot_allergy_care_pro": "Allergy Care Pro",
"iot_all_in_one_59_steam": "一体化 59' + 蒸汽", "iot_all_in_one_59_steam": "一体化 59' + 蒸汽",
"iot_baby_60_steam": "婴儿服60℃ + 蒸汽",
"iot_checkup": "检测", "iot_checkup": "检测",
"iot_colour_59_steam": "Coloureds 59' + 蒸汽", "iot_colour_59_steam": "Coloureds 59' + 蒸汽",
"iot_cottons_steam": "棉质 + 蒸汽", "iot_cottons_steam": "棉质 + 蒸汽",
@ -1433,6 +1437,7 @@
"iot_hygiene_pro_steam": "Hygiene Pro + 蒸汽", "iot_hygiene_pro_steam": "Hygiene Pro + 蒸汽",
"iot_intensive_40_steam": "Intensive 40°C + 蒸汽", "iot_intensive_40_steam": "Intensive 40°C + 蒸汽",
"iot_jeans_60_steam": "牛仔裤 + 蒸汽", "iot_jeans_60_steam": "牛仔裤 + 蒸汽",
"iot_jeans_steam": "牛仔裤 + 蒸汽",
"iot_mixed_steam": "混合 + 蒸汽", "iot_mixed_steam": "混合 + 蒸汽",
"iot_mix_and_colour_59_steam": "混合材质和彩色 59' + 蒸汽", "iot_mix_and_colour_59_steam": "混合材质和彩色 59' + 蒸汽",
"iot_perfect_cotton_59_steam": "完美棉质 59 分", "iot_perfect_cotton_59_steam": "完美棉质 59 分",
@ -1555,6 +1560,7 @@
"iot_wash_sport_anti_odor": "防体味运动服", "iot_wash_sport_anti_odor": "防体味运动服",
"iot_wash_sport_anti_odor_zelig": "防体味运动服", "iot_wash_sport_anti_odor_zelig": "防体味运动服",
"iot_wash_stains_remover": "去污", "iot_wash_stains_remover": "去污",
"iot_wash_super_saving": "超级节约 49'",
"iot_wash_swimsuits_and_bikinis": "泳衣", "iot_wash_swimsuits_and_bikinis": "泳衣",
"iot_wash_synthetic": "合成纤维", "iot_wash_synthetic": "合成纤维",
"iot_wash_synthetic_steam": "合成纤维 + 蒸汽", "iot_wash_synthetic_steam": "合成纤维 + 蒸汽",
@ -1639,11 +1645,11 @@
"cool_drink": "Cool Drink", "cool_drink": "Cool Drink",
"eco": "Eco", "eco": "Eco",
"eco_mode": "Eco 模式", "eco_mode": "Eco 模式",
"fruits": "Fruits", "fruits": "Fruit",
"fruits_and_veg": "Fruit&Veg水果和蔬菜", "fruits_and_veg": "Fruit&Veg水果和蔬菜",
"fruit_and_veg": "Fruit & Veg", "fruit_and_veg": "Fruit & Veg",
"holiday": "HOLIDAY假日模式", "holiday": "HOLIDAY假日模式",
"keep_fresh": "0° Fresh", "keep_fresh": "0°C Fresh",
"milk_and_eggs": "Milk & Eggs", "milk_and_eggs": "Milk & Eggs",
"no_mode_selected": "未选择模式", "no_mode_selected": "未选择模式",
"quick_cool": "QUICK COOL快速冷却", "quick_cool": "QUICK COOL快速冷却",
@ -1652,9 +1658,9 @@
"soft_frozen": "Soft freezing", "soft_frozen": "Soft freezing",
"super_cool": "SUPER COOL超级冷却", "super_cool": "SUPER COOL超级冷却",
"super_freeze": "SUPER FREEZE超级冷冻", "super_freeze": "SUPER FREEZE超级冷冻",
"tea": "Cold drinks or Beverages", "tea": "Cold Drinks",
"vegetables": "Vegetables", "vegetables": "Vegetable",
"zero_fresh": "0° Fresh" "zero_fresh": "0°C Fresh"
}, },
"name": "程序" "name": "程序"
}, },
@ -1750,6 +1756,28 @@
"unknown": "unknown" "unknown": "unknown"
}, },
"name": "污渍水平" "name": "污渍水平"
},
"fan_horizontal": {
"name": "风扇方向 水平",
"state": {
"position_1": "固定 - 位置 1",
"position_2": "固定 - 位置 2",
"position_3": "固定 - 位置 3",
"position_4": "固定 - 位置 4",
"position_5": "固定 - 位置 5",
"swing": "摆动"
}
},
"fan_vertical": {
"name": "风扇方向 垂直",
"state": {
"position_1": "固定 - 位置 1",
"position_2": "固定 - 位置 2",
"position_3": "固定 - 位置 3",
"position_4": "固定 - 位置 4",
"position_5": "固定 - 位置 5",
"swing": "摆动"
}
} }
}, },
"switch": { "switch": {
@ -2007,6 +2035,9 @@
}, },
"aroma_time_off": { "aroma_time_off": {
"name": "扩散器(关)" "name": "扩散器(关)"
},
"my_zone_temp_sel": {
"name": "目标温度 My Zone"
} }
}, },
"climate": { "climate": {
@ -2141,6 +2172,9 @@
} }
} }
} }
},
"my_zone": {
"name": "My Zone"
} }
}, },
"fan": { "fan": {

View File

@ -1,6 +1,6 @@
{ {
"name": "Haier hOn", "name": "Haier hOn",
"homeassistant": "2023.2.0", "homeassistant": "2024.1.0",
"zip_release": true, "zip_release": true,
"filename": "haier_hon.zip" "filename": "haier_hon.zip"
} }

764
info.md
View File

@ -1,31 +1,724 @@
# Announcement: I have to take the project down in the next few days
> Dear User,
>
> We are writing to inform you that we have discovered two Home Assistant integration plug-ins developed by you ( https://github.com/Andre0512/hon and https://github.com/Andre0512/pyhOn ) that are in violation of our terms of service. Specifically, the plug-ins are using our services in an unauthorized manner which is causing significant economic harm to our Company.
> We take the protection of our intellectual property very seriously and demand that you immediately cease and desist all illegal activities related to the development and distribution of these plug-ins. We also request that you remove the plug-ins from all stores and code hosting platforms where they are currently available.
> Please be advised that we will take all necessary legal action to protect our interests if you fail to comply with this notice. We reserve the right to pursue all available remedies, including but not limited to monetary damages, injunctive relief, and attorney's fees.
> We strongly urge you to take immediate action to rectify this situation and avoid any further legal action. If you have any questions or concerns, please do not hesitate to contact us.
>
> Haier Europe Security and Governance Department
# Haier hOn # Haier hOn
[![GitHub release (latest by date)](https://img.shields.io/github/v/release/Andre0512/hon?color=green)](https://github.com/Andre0512/hon/releases/latest) [![GitHub all releases](https://img.shields.io/github/downloads/Andre0512/hon/total?color=blue&label=total%20downloads)](https://tooomm.github.io/github-release-stats/?username=Andre0512&repository=hon)
[![GitHub](https://img.shields.io/github/license/Andre0512/hon?color=red)](https://github.com/Andre0512/hon/blob/main/LICENSE) [![GitHub](https://img.shields.io/github/license/Andre0512/hon?color=red)](https://github.com/Andre0512/hon/blob/main/LICENSE)
[![GitHub all releases](https://img.shields.io/github/downloads/Andre0512/hon/total?color=blue)](https://tooomm.github.io/github-release-stats/?username=Andre0512&repository=hon) [![Buy Me a Coffee](https://img.shields.io/badge/Buy%20Me%20a%20Coffee-donate-orange.svg)](https://www.buymeacoffee.com/andre0512)
--- ---
Home Assistant integration for [Haier's mobile app hOn](https://hon-smarthome.com/) based on [pyhOn](https://github.com/Andre0512/pyhon). Home Assistant integration for [Haier's mobile app hOn](https://hon-smarthome.com/) based on [pyhOn](https://github.com/Andre0512/pyhon).
--- ---
[![Supported Languages](https://img.shields.io/badge/Languages-19-royalblue)](https://github.com/Andre0512/hon#supported-languages) [![Supported Languages](https://img.shields.io/badge/Languages-19-royalblue)](https://github.com/Andre0512/hon#supported-languages)
[![Supported Appliances](https://img.shields.io/badge/Appliances-11-forestgreen)](https://github.com/Andre0512/hon#supported-appliances) [![Supported Appliances](https://img.shields.io/badge/Appliances-11-forestgreen)](https://github.com/Andre0512/hon#supported-appliances)
[![Supported Models](https://img.shields.io/badge/Models-72-yellowgreen)](https://github.com/Andre0512/hon#supported-models) [![Supported Models](https://img.shields.io/badge/Models-127-yellowgreen)](https://github.com/Andre0512/hon#supported-appliances)
[![Supported Entities](https://img.shields.io/badge/Entities-241-crimson)](https://github.com/Andre0512/hon#appliance-features) [![Supported Entities](https://img.shields.io/badge/Entities-317-crimson)](https://github.com/Andre0512/hon#supported-appliances)
## Supported Appliances ## Supported Appliances
- [Washing Machine](https://github.com/Andre0512/hon#washing-machine) _Click to expand..._
- [Tumble Dryer](https://github.com/Andre0512/hon#tumble-dryer)
- [Washer Dryer](https://github.com/Andre0512/hon#washer-dryer) <details>
- [Oven](https://github.com/Andre0512/hon#oven) <summary>Air Conditioner</summary>
- [Dish Washer](https://github.com/Andre0512/hon#dish-washer)
- [Air Conditioner](https://github.com/Andre0512/hon#air-conditioner) ### Air Conditioner Example
- [Fridge](https://github.com/Andre0512/hon#fridge) ![Air Conditioner](assets/example_ac.png)
- [Induction Hob](https://github.com/Andre0512/hon#induction-hob) [BETA]
- [Hood](https://github.com/Andre0512/hon#hood) [BETA] ### Supported Air Conditioner models
- [Wine Cellar](https://github.com/Andre0512/hon#wine-cellar) [BETA] Support has been confirmed for these **22 models**, but many more will work. Please add already supported devices [with this form to complete the list](https://forms.gle/bTSD8qFotdZFytbf8).
- [Air Purifier](https://github.com/Andre0512/hon#air-purifier) [BETA]
#### Haier
- AD105S2SM3FA
- AD71S2SM3FA(H)
- AS07TS4HRA-M
- AS07TS5HRA
- AS09TS4HRA-M
- AS25PBAHRA
- AS25S2SF1FA
- AS25TADHRA-2
- AS25TEDHRA(M1)
- AS25THMHRA-C
- AS25XCAHRA
- AS35PBAHRA
- AS35S2SF1FA
- AS35S2SF2FA-3
- AS35TADHRA-2
- AS35TAMHRA-C
- AS35TEDHRA(M1)
- AS35XCAHRA
- AS50S2SF1FA
- AS50S2SF2FA-1
- AS50XCAHR
#### Candy
- CY-12TAIN
### Air Conditioner Entities
#### Controls
| Name | Icon | Entity | Key |
| --- | --- | --- | --- |
| 10° Heating | `heat-wave` | `switch` | `10degreeHeatingStatus` |
| Air Conditioner | `air-conditioner` | `climate` | `settings` |
| Echo | `account-voice` | `switch` | `echoStatus` |
| Eco Mode | `sprout` | `switch` | `ecoMode` |
| Eco Pilot | `run` | `select` | `settings.humanSensingStatus` |
| Fan Direction Horizontal | `fan` | `select` | `settings.windDirectionHorizontal` |
| Fan Direction Vertical | `fan` | `select` | `settings.windDirectionVertical` |
| Health Mode | `medication-outline` | `switch` | `healthMode` |
| Night Mode | `bed` | `switch` | `silentSleepStatus` |
| Rapid Mode | `run-fast` | `switch` | `rapidMode` |
| Screen Display | `monitor-small` | `switch` | `screenDisplayStatus` |
| Self Cleaning | `air-filter` | `switch` | `selfCleaningStatus` |
| Self Cleaning 56 | `air-filter` | `switch` | `selfCleaning56Status` |
| Silent Mode | `volume-off` | `switch` | `muteStatus` |
| Target Temperature | `thermometer` | `number` | `settings.tempSel` |
#### Sensors
| Name | Icon | Entity | Key |
| --- | --- | --- | --- |
| Air Temperature Outdoor | `thermometer` | `sensor` | `tempAirOutdoor` |
| Ch2O Cleaning | | `binary_sensor` | `ch2oCleaningStatus` |
| Coiler Temperature Indoor | `thermometer` | `sensor` | `tempCoilerIndoor` |
| Coiler Temperature Outside | `thermometer` | `sensor` | `tempCoilerOutdoor` |
| Defrost Temperature Outdoor | `thermometer` | `sensor` | `tempDefrostOutdoor` |
| Filter Replacement | | `binary_sensor` | `filterChangeStatusLocal` |
| In Air Temperature Outdoor | `thermometer` | `sensor` | `tempInAirOutdoor` |
| Indoor Temperature | `thermometer` | `sensor` | `tempIndoor` |
| Machine Status | `information` | `sensor` | `machMode` |
| Outdoor Temperature | `thermometer` | `sensor` | `tempOutdoor` |
| Program | | `select` | `startProgram.program` |
| Program | `play` | `sensor` | `programName` |
| Selected Temperature | `thermometer` | `sensor` | `tempSel` |
</details>
<details>
<summary>Air Purifier</summary>
### Air Purifier Example
![Air Purifier](assets/example_ap.png)
### Supported Air Purifier models
Support has been confirmed for these **4 models**, but many more will work. Please add already supported devices [with this form to complete the list](https://forms.gle/bTSD8qFotdZFytbf8).
#### Hoover
- HHP30C011
- HHP50CA001
- HHP50CA011
- HHP70CAH011
### Air Purifier Entities
#### Controls
| Name | Icon | Entity | Key |
| --- | --- | --- | --- |
| Aroma Time Off | `scent-off` | `number` | `settings.aromaTimeOff` |
| Aroma Time On | `scent` | `number` | `settings.aromaTimeOn` |
| Diffuser Level | `air-purifier` | `select` | `settings.aromaStatus` |
| Light status | | `light` | `settings.lightStatus` |
| Lock Status | | `lock` | `lockStatus` |
| Mode | `play` | `select` | `settings.machMode` |
| Pollen Level | `flower-pollen` | `number` | `settings.pollenLevel` |
| Touch Tone | `account-voice` | `switch` | `touchToneStatus` |
#### Sensors
| Name | Icon | Entity | Key |
| --- | --- | --- | --- |
| Air Quality | `weather-dust` | `sensor` | `airQuality` |
| CO Level | | `sensor` | `coLevel` |
| Error | `math-log` | `sensor` | `errors` |
| Humidity | | `sensor` | `humidityIndoor` |
| Main Filter Status | `air-filter` | `sensor` | `mainFilterStatus` |
| On | `power-cycle` | `binary_sensor` | `attributes.parameters.onOffStatus` |
| PM 10 | | `sensor` | `pm10ValueIndoor` |
| PM 2.5 | | `sensor` | `pm2p5ValueIndoor` |
| Pre Filter Status | `air-filter` | `sensor` | `preFilterStatus` |
| Temperature | | `sensor` | `temp` |
| Total Work Time | | `sensor` | `totalWorkTime` |
| VOC | | `sensor` | `vocValueIndoor` |
| Wind Speed | `fan` | `sensor` | `windSpeed` |
</details>
<details>
<summary>Dish Washer</summary>
### Dish Washer Example
![Dish Washer](assets/example_dw.png)
### Supported Dish Washer models
Support has been confirmed for these **6 models**, but many more will work. Please add already supported devices [with this form to complete the list](https://forms.gle/bTSD8qFotdZFytbf8).
#### Haier
- XIB 3B2SFS-80
- XIB 6B2D3FB
#### Hoover
- HDPN 4S603PW/E
- HFB 5B2D3FW
- HFB 6B2S3FX
#### Candy
- CF 3C7L0X
### Dish Washer Entities
#### Controls
| Name | Icon | Entity | Key |
| --- | --- | --- | --- |
| Buzzer Disabled | `volume-off` | `switch` | `buzzerDisabled` |
| Dish Washer | `dishwasher` | `switch` | `startProgram` / `stopProgram` |
#### Configs
| Name | Icon | Entity | Key |
| --- | --- | --- | --- |
| Add Dish | `silverware-fork-knife` | `switch` | `startProgram.addDish` |
| Delay time | `timer-plus` | `number` | `startProgram.delayTime` |
| Eco Express | `sprout` | `switch` | `startProgram.ecoExpress` |
| Extra Dry | `hair-dryer` | `switch` | `startProgram.extraDry` |
| Half Load | `fraction-one-half` | `switch` | `startProgram.halfLoad` |
| Open Door | `door-open` | `switch` | `startProgram.openDoor` |
| Program | | `select` | `startProgram.program` |
| Remaining Time | `timer` | `select` | `startProgram.remainingTime` |
| Temperature | `thermometer` | `select` | `startProgram.temp` |
| Three in One | `numeric-3-box-outline` | `switch` | `startProgram.threeInOne` |
| Water hard | `water` | `number` | `startProgram.waterHard` |
#### Sensors
| Name | Icon | Entity | Key |
| --- | --- | --- | --- |
| Connection | | `binary_sensor` | `attributes.lastConnEvent.category` |
| Door | | `binary_sensor` | `doorStatus` |
| Error | `math-log` | `sensor` | `errors` |
| Machine Status | `information` | `sensor` | `machMode` |
| Program | `play` | `sensor` | `programName` |
| Program Phase | `washing-machine` | `sensor` | `prPhase` |
| Remaining Time | `timer` | `sensor` | `remainingTimeMM` |
| Rinse Aid | `spray-bottle` | `binary_sensor` | `rinseAidStatus` |
| Salt | `shaker-outline` | `binary_sensor` | `saltStatus` |
</details>
<details>
<summary>Hood</summary>
### Supported Hood models
Support has been confirmed for these **1 models**, but many more will work. Please add already supported devices [with this form to complete the list](https://forms.gle/bTSD8qFotdZFytbf8).
#### Haier
- HADG6DS46BWIFI
### Hood Entities
#### Controls
| Name | Icon | Entity | Key |
| --- | --- | --- | --- |
| Hood | `hvac` | `switch` | `startProgram` / `stopProgram` |
| Light status | | `light` | `settings.lightStatus` |
| Wind Speed | | `fan` | `settings.windSpeed` |
#### Sensors
| Name | Icon | Entity | Key |
| --- | --- | --- | --- |
| Delay time | `clock-start` | `sensor` | `delayTime` |
| Delay time status | `clock-start` | `sensor` | `delayTimeStatus` |
| Errors | `alert-circle` | `sensor` | `errors` |
| Filter Cleaning Alarm Status | | `sensor` | `filterCleaningAlarmStatus` |
| Filter Cleaning Status | | `sensor` | `filterCleaningStatus` |
| Last Work Time | `clock-start` | `sensor` | `lastWorkTime` |
| Light Status | `lightbulb` | `sensor` | `lightStatus` |
| Mach Mode | | `sensor` | `machMode` |
| On / Off Status | `lightbulb` | `sensor` | `onOffStatus` |
| Quick Delay Time Status | | `sensor` | `quickDelayTimeStatus` |
| RGB Light Color | `lightbulb` | `sensor` | `rgbLightColors` |
| RGB Light Status | `lightbulb` | `sensor` | `rgbLightStatus` |
</details>
<details>
<summary>Induction Hob</summary>
### Supported Induction Hob models
Support has been confirmed for these **3 models**, but many more will work. Please add already supported devices [with this form to complete the list](https://forms.gle/bTSD8qFotdZFytbf8).
#### Haier
- HA2MTSJ68MC
- HAIDSJ63MC
#### Candy
- CIS633SCTTWIFI
### Induction Hob Entities
#### Controls
| Name | Icon | Entity | Key |
| --- | --- | --- | --- |
| Start Program | `pot-steam` | `button` | `startProgram` |
#### Configs
| Name | Icon | Entity | Key |
| --- | --- | --- | --- |
| Power Management | `timelapse` | `number` | `startProgram.powerManagement` |
| Program | | `select` | `startProgram.program` |
| Temperature | `thermometer` | `number` | `startProgram.temp` |
#### Sensors
| Name | Icon | Entity | Key |
| --- | --- | --- | --- |
| Connection | `wifi` | `binary_sensor` | `attributes.lastConnEvent.category` |
| Error | `math-log` | `sensor` | `errors` |
| Hob Lock | | `binary_sensor` | `hobLockStatus` |
| Hot Status | | `binary_sensor` | `hotStatus` |
| On | `power-cycle` | `binary_sensor` | `attributes.parameters.onOffStatus` |
| Pan Status | `pot-mix` | `binary_sensor` | `panStatus` |
| Power | `lightning-bolt` | `sensor` | `power` |
| Program | `play` | `sensor` | `programName` |
| Remaining Time | `timer` | `sensor` | `remainingTimeMM` |
| Temperature | `thermometer` | `sensor` | `temp` |
</details>
<details>
<summary>Oven</summary>
### Oven Example
![Oven](assets/example_ov.png)
### Supported Oven models
Support has been confirmed for these **2 models**, but many more will work. Please add already supported devices [with this form to complete the list](https://forms.gle/bTSD8qFotdZFytbf8).
#### Haier
- HWO60SM2F3XH
#### Hoover
- HSOT3161WG
### Oven Entities
#### Controls
| Name | Icon | Entity | Key |
| --- | --- | --- | --- |
| Oven | `thermometer` | `climate` | `settings.tempSel` |
| Oven | `toaster-oven` | `switch` | `startProgram` / `stopProgram` |
#### Configs
| Name | Icon | Entity | Key |
| --- | --- | --- | --- |
| Delay time | `timer-plus` | `number` | `startProgram.delayTime` |
| Preheat | `thermometer-chevron-up` | `switch` | `startProgram.preheatStatus` |
| Program | | `select` | `startProgram.program` |
| Program Duration | `timelapse` | `number` | `startProgram.prTime` |
| Target Temperature | `thermometer` | `number` | `startProgram.tempSel` |
#### Sensors
| Name | Icon | Entity | Key |
| --- | --- | --- | --- |
| Connection | `wifi` | `binary_sensor` | `attributes.lastConnEvent.category` |
| On | `power-cycle` | `binary_sensor` | `attributes.parameters.onOffStatus` |
| Program | `play` | `sensor` | `programName` |
| Remaining Time | `timer` | `sensor` | `remainingTimeMM` |
| Start Time | `clock-start` | `sensor` | `delayTime` |
| Temperature | `thermometer` | `sensor` | `temp` |
| Temperature Selected | `thermometer` | `sensor` | `tempSel` |
</details>
<details>
<summary>Fridge</summary>
### Fridge Example
![Fridge](assets/example_ref.png)
### Supported Fridge models
Support has been confirmed for these **11 models**, but many more will work. Please add already supported devices [with this form to complete the list](https://forms.gle/bTSD8qFotdZFytbf8).
#### Haier
- HDPW5620ANPD
- HBW5519ECM
- HDW5620CNPK
- HFW7720ENMB
- HFW7819EWMP
- HSW59F18EIPT
- HTW5620DNMG
#### Hoover
- HOCE7620DX
#### Candy
- CE4T620EB
- CCE4T620EWU
- CCE4T618EW
### Fridge Entities
#### Controls
| Name | Icon | Entity | Key |
| --- | --- | --- | --- |
| Auto-Set Mode | `thermometer-auto` | `switch` | `intelligenceMode` |
| Freezer | `snowflake-thermometer` | `climate` | `settings.tempSelZ2` |
| Freezer Temperature | `thermometer` | `number` | `settings.tempSelZ2` |
| Fridge | `thermometer` | `climate` | `settings.tempSelZ1` |
| Fridge Temperature | `thermometer` | `number` | `settings.tempSelZ1` |
| MyZone | `thermometer` | `climate` | `settings.tempSelZ3` |
| MyZone Temperature | `thermometer` | `number` | `settings.tempSelZ3` |
| Program Start | `play` | `button` | `startProgram` |
| Program Stop | `stop` | `button` | `stopProgram` |
| Super Cool | `snowflake` | `switch` | `quickModeZ1` |
| Super Freeze | `snowflake-variant` | `switch` | `quickModeZ2` |
#### Configs
| Name | Icon | Entity | Key |
| --- | --- | --- | --- |
| Program | | `select` | `startProgram.program` |
| Zone | `radiobox-marked` | `select` | `startProgram.zone` |
#### Sensors
| Name | Icon | Entity | Key |
| --- | --- | --- | --- |
| Auto-Set Mode | `thermometer-auto` | `binary_sensor` | `intelligenceMode` |
| Door1 Status Freezer | `fridge-bottom` | `binary_sensor` | `doorStatusZ2` |
| Door1 Status Fridge | `fridge-top` | `binary_sensor` | `doorStatusZ1` |
| Door2 Status Freezer | `fridge-bottom` | `binary_sensor` | `door2StatusZ2` |
| Door2 Status Fridge | `fridge-top` | `binary_sensor` | `door2StatusZ1` |
| Error | `math-log` | `sensor` | `errors` |
| Holiday Mode | `palm-tree` | `binary_sensor` | `holidayMode` |
| Humidity Level | `water-outline` | `sensor` | `humidityLevel` |
| Room Humidity | `water-percent` | `sensor` | `humidityEnv` |
| Room Temperature | `home-thermometer-outline` | `sensor` | `tempEnv` |
| Super Cool | `snowflake` | `binary_sensor` | `quickModeZ1` |
| Super Freeze | `snowflake-variant` | `binary_sensor` | `quickModeZ2` |
| Temperature Freezer | `snowflake-thermometer` | `sensor` | `tempZ2` |
| Temperature Fridge | `thermometer` | `sensor` | `tempZ1` |
</details>
<details>
<summary>Tumble Dryer</summary>
### Tumble Dryer Example
![Tumble Dryer](assets/example_td.png)
### Supported Tumble Dryer models
Support has been confirmed for these **22 models**, but many more will work. Please add already supported devices [with this form to complete the list](https://forms.gle/bTSD8qFotdZFytbf8).
#### Haier
- HD80-A3959
- HD90-A3TEAM5
- HD90-A2959
- HD90-A2959S
- HD90-A3959
#### Hoover
- HLE H8A2TE-S
- HLE H9A2TCE-80
- HLE C10DCE-80
- NDE H10A2TCE-80
- NDE H10RA2TCE-80
- NDE H9A2TSBEXS-S
- NDP H9A3TCBEXS-S
- NDP4 H7A2TCBEX-S
- NDPEH9A3TCBEXS-S
#### Candy
- BCTDH7A1TE
- CSOE C10DE-80
- CSOE C10TREX-47
- CSOE H10A2DE-S
- CSOE H9A2DE-S
- ROE H9A2TCE-80
- ROE H9A3TCEX-S
- ROE H10A2TCE-07
### Tumble Dryer Entities
#### Controls
| Name | Icon | Entity | Key |
| --- | --- | --- | --- |
| Pause Tumble Dryer | `pause` | `switch` | `pauseProgram` / `resumeProgram` |
| Tumble Dryer | `tumble-dryer` | `switch` | `startProgram` / `stopProgram` |
#### Configs
| Name | Icon | Entity | Key |
| --- | --- | --- | --- |
| Anti-Crease | `iron` | `switch` | `startProgram.antiCreaseTime` |
| Anti-Crease | `iron` | `switch` | `startProgram.anticrease` |
| Delay time | `timer-plus` | `number` | `startProgram.delayTime` |
| Dry Time | | `number` | `startProgram.dryTime` |
| Dry Time | `timer` | `select` | `startProgram.dryTimeMM` |
| Dry level | `hair-dryer` | `select` | `startProgram.dryLevel` |
| Program | | `select` | `startProgram.program` |
| Sterilization | `lotion-plus` | `switch` | `startProgram.sterilizationStatus` |
| Temperature level | `thermometer` | `number` | `startProgram.tempLevel` |
| Tumbling | `refresh-circle` | `switch` | `startProgram.tumblingStatus` |
#### Sensors
| Name | Icon | Entity | Key |
| --- | --- | --- | --- |
| Anti-Crease | `iron` | `binary_sensor` | `anticrease` |
| Connection | | `binary_sensor` | `attributes.lastConnEvent.category` |
| Door | | `binary_sensor` | `doorStatus` |
| Dry level | `hair-dryer` | `sensor` | `dryLevel` |
| Error | `math-log` | `sensor` | `errors` |
| Machine Status | `information` | `sensor` | `machMode` |
| Program | `play` | `sensor` | `programName` |
| Program Phase | `washing-machine` | `sensor` | `prPhase` |
| Remaining Time | `timer` | `sensor` | `remainingTimeMM` |
| Start Time | `clock-start` | `sensor` | `delayTime` |
| Temperature level | `thermometer` | `sensor` | `tempLevel` |
</details>
<details>
<summary>Wine Cellar</summary>
### Wine Cellar Example
![Wine Cellar](assets/example_wc.png)
### Supported Wine Cellar models
Support has been confirmed for these **2 models**, but many more will work. Please add already supported devices [with this form to complete the list](https://forms.gle/bTSD8qFotdZFytbf8).
#### Haier
- HWS247FDU1
- HWS42GDAU1
### Wine Cellar Entities
#### Controls
| Name | Icon | Entity | Key |
| --- | --- | --- | --- |
| Light | | `light` | `settings.lightStatus` |
| Sabbath Mode | `palm-tree` | `switch` | `sabbathStatus` |
| Wine Cellar | `thermometer` | `climate` | `settings.tempSel` |
| Wine Cellar | `thermometer` | `climate` | `settings.tempSelZ2` |
#### Sensors
| Name | Icon | Entity | Key |
| --- | --- | --- | --- |
| Error | `math-log` | `sensor` | `errors` |
| Humidity | `water-percent` | `sensor` | `humidityZ1` |
| Humidity 2 | `water-percent` | `sensor` | `humidityZ2` |
| Program | `play` | `sensor` | `programName` |
| Room Temperature | `home-thermometer-outline` | `sensor` | `tempEnv` |
| Selected Temperature | `thermometer` | `sensor` | `tempSel` |
| Selected Temperature 2 | `thermometer` | `sensor` | `tempSelZ2` |
| Temperature | `thermometer` | `sensor` | `temp` |
| Temperature 2 | `thermometer` | `sensor` | `tempZ2` |
</details>
<details>
<summary>Washer Dryer</summary>
### Washer Dryer Example
![Washer Dryer](assets/example_wd.png)
### Supported Washer Dryer models
Support has been confirmed for these **15 models**, but many more will work. Please add already supported devices [with this form to complete the list](https://forms.gle/bTSD8qFotdZFytbf8).
#### Haier
- HWD100-B14978
- HWD100-B14979
- HWD100-B14959U1
- HWD80-B14979U1
#### Hoover
- H7D 4128MBC-S
- HD 4106AMC/1-80
- HD 485AMBB/1-S
- HD 495AMC/1-S
- HDB 5106AMC/1-80
- HDD4106AMBCR-80
- HDQ 496AMBS/1-S
- HDP 4149AMBC/1-S
- HWPS4954DAMR-11
#### Candy
- RPW41066BWMR/1-S
- RPW4966BWMR/1-S
### Washer Dryer Entities
#### Controls
| Name | Icon | Entity | Key |
| --- | --- | --- | --- |
| Auto Dose Detergent | `cup` | `switch` | `autoDetergentStatus` |
| Auto Dose Softener | `teddy-bear` | `switch` | `autoSoftenerStatus` |
| Pause Washer Dryer | `pause` | `switch` | `pauseProgram` / `resumeProgram` |
| Washer Dryer | `washing-machine` | `switch` | `startProgram` / `stopProgram` |
| Water hard | `water` | `number` | `settings.waterHard` |
#### Configs
| Name | Icon | Entity | Key |
| --- | --- | --- | --- |
| Acqua Plus | `water-plus` | `switch` | `startProgram.acquaplus` |
| Anti-Crease | `iron` | `switch` | `startProgram.anticrease` |
| Anti-Crease | `iron` | `switch` | `startProgram.antiCreaseTime` |
| Auto Dose Detergent | `cup` | `switch` | `startProgram.autoDetergentStatus` |
| Auto Dose Softener | `teddy-bear` | `switch` | `startProgram.autoSoftenerStatus` |
| Delay Status | `timer-check` | `switch` | `startProgram.delayStatus` |
| Delay Time | `timer-plus` | `number` | `startProgram.delayTime` |
| Dirty level | `liquid-spot` | `select` | `startProgram.dirtyLevel` |
| Dry Time | | `number` | `startProgram.dryTime` |
| Dry Time | `timer` | `select` | `startProgram.dryTimeMM` |
| Dry level | `hair-dryer` | `select` | `startProgram.dryLevel` |
| Extra Rinse 1 | `numeric-1-box-multiple-outline` | `switch` | `startProgram.extraRinse1` |
| Extra Rinse 2 | `numeric-2-box-multiple-outline` | `switch` | `startProgram.extraRinse2` |
| Extra Rinse 3 | `numeric-3-box-multiple-outline` | `switch` | `startProgram.extraRinse3` |
| Good Night | `weather-night` | `switch` | `startProgram.goodNight` |
| Hygiene | `lotion-plus` | `switch` | `startProgram.hygiene` |
| Keep Fresh | `refresh-circle` | `switch` | `startProgram.permanentPressStatus` |
| Main Wash Time | `clock-start` | `number` | `startProgram.mainWashTime` |
| Prewash | `tshirt-crew` | `switch` | `startProgram.prewash` |
| Program | | `select` | `startProgram.program` |
| Rinse Iterations | `rotate-right` | `number` | `startProgram.rinseIterations` |
| Soak Prewash Selection | `tshirt-crew` | `switch` | `startProgram.haier_SoakPrewashSelection` |
| Spin speed | `numeric` | `select` | `startProgram.spinSpeed` |
| Stain Type | `liquid-spot` | `select` | `startProgram.extendedStainType` |
| Steam level | `weather-dust` | `select` | `startProgram.steamLevel` |
| Sterilization | `lotion-plus` | `switch` | `startProgram.sterilizationStatus` |
| Temperature | `thermometer` | `select` | `startProgram.temp` |
| Temperature level | `thermometer` | `number` | `startProgram.tempLevel` |
| Tumbling | `refresh-circle` | `switch` | `startProgram.tumblingStatus` |
| Water hard | `water` | `number` | `startProgram.waterHard` |
| lang | | `number` | `startProgram.lang` |
#### Sensors
| Name | Icon | Entity | Key |
| --- | --- | --- | --- |
| Acqua Plus | `water-plus` | `binary_sensor` | `acquaplus` |
| Anti-Crease | `iron` | `binary_sensor` | `anticrease` |
| Current Electricity Used | `lightning-bolt` | `sensor` | `currentElectricityUsed` |
| Current Temperature | `thermometer` | `sensor` | `temp` |
| Current Water Used | `water` | `sensor` | `currentWaterUsed` |
| Dirty level | `liquid-spot` | `sensor` | `dirtyLevel` |
| Door | | `binary_sensor` | `doorStatus` |
| Door Lock | | `binary_sensor` | `doorLockStatus` |
| Dry level | `hair-dryer` | `sensor` | `dryLevel` |
| Error | `math-log` | `sensor` | `errors` |
| Extra Rinse 1 | `numeric-1-box-multiple-outline` | `binary_sensor` | `extraRinse1` |
| Extra Rinse 2 | `numeric-2-box-multiple-outline` | `binary_sensor` | `extraRinse2` |
| Extra Rinse 3 | `numeric-3-box-multiple-outline` | `binary_sensor` | `extraRinse3` |
| Good Night Mode | `weather-night` | `binary_sensor` | `goodNight` |
| Machine Status | `information` | `sensor` | `machMode` |
| Pre Wash | `tshirt-crew` | `binary_sensor` | `prewash` |
| Program | `play` | `sensor` | `programName` |
| Program Phase | `washing-machine` | `sensor` | `prPhase` |
| Remaining Time | `timer` | `sensor` | `remainingTimeMM` |
| Remote Control | `remote` | `binary_sensor` | `attributes.lastConnEvent.category` |
| Spin Speed | `speedometer` | `sensor` | `spinSpeed` |
| Stain Type | `liquid-spot` | `sensor` | `stainType` |
| Start Time | `clock-start` | `sensor` | `delayTime` |
| Steam level | `weather-dust` | `sensor` | `steamLevel` |
| Temperature level | `thermometer` | `sensor` | `tempLevel` |
| Total Power | | `sensor` | `totalElectricityUsed` |
| Total Wash Cycle | `counter` | `sensor` | `totalWashCycle` |
| Total Water | | `sensor` | `totalWaterUsed` |
</details>
<details>
<summary>Washing Machine</summary>
### Washing Machine Example
![Washing Machine](assets/example_wm.png)
### Supported Washing Machine models
Support has been confirmed for these **39 models**, but many more will work. Please add already supported devices [with this form to complete the list](https://forms.gle/bTSD8qFotdZFytbf8).
#### Haier
- HW80-B14959TU1
- HW80-B14959S8U1S
- HW80-B14979TU1
- HW90-B145XLINEDE
- HW90-B14959U1
- HW90-B14959S8U1
- HW90-B14TEAM5
- HW90G-BD14979UD
- HW100-B14959U1
- HW110-14979
#### Hoover
- H5WPB447AMBC/1-S
- H7W 412MBCR-80
- H7W 610AMBC-80
- H7W4 48MBC-S
- HLWPS495TAMBE-11
- HPS484DAMB7/1-11
- HW 28AMBS/1-S
- HW 410AMBCB/1-80
- HW 411AMBCB/1-80
- HW 48AMC/1-S
- HW 49AMC/1-80
- HW 68AMC/1-80
- HW4 37AMBS/1-S
- HW4 37XMBB/1-S
- HWB 410AMC/1-80
- HWB 414AMC/1-80
- HWE 49AMBS/1-S
- HWP 48AMBCR/1-S
- HWP 610AMBC/1-S
- HWPD 69AMBC/1-S
- HWPDQ49AMBC/1-S
- HWPD 610AMBC/1-S
#### Candy
- CO4 107T1/2-07
- CBWO49TWME-S
- RO14126DWMST-S
- RO441286DWMC4-07
- RO4H7A2TEX-S
- ROW42646DWMC-07
- RP 696BWMRR/1-S
### Washing Machine Entities
#### Controls
| Name | Icon | Entity | Key |
| --- | --- | --- | --- |
| Auto Dose Detergent | `cup` | `switch` | `autoDetergentStatus` |
| Auto Dose Softener | `teddy-bear` | `switch` | `autoSoftenerStatus` |
| Pause Washing Machine | `pause` | `switch` | `pauseProgram` / `resumeProgram` |
| Washing Machine | `washing-machine` | `switch` | `startProgram` / `stopProgram` |
| Water hard | `water` | `number` | `settings.waterHard` |
#### Configs
| Name | Icon | Entity | Key |
| --- | --- | --- | --- |
| Acqua Plus | `water-plus` | `switch` | `startProgram.acquaplus` |
| Anti-Crease | `iron` | `switch` | `startProgram.anticrease` |
| Auto Dose Detergent | `cup` | `switch` | `startProgram.autoDetergentStatus` |
| Auto Dose Softener | `teddy-bear` | `switch` | `startProgram.autoSoftenerStatus` |
| Delay Status | `timer-check` | `switch` | `startProgram.delayStatus` |
| Delay Time | `timer-plus` | `number` | `startProgram.delayTime` |
| Dirty level | `liquid-spot` | `select` | `startProgram.dirtyLevel` |
| Extra Rinse 1 | `numeric-1-box-multiple-outline` | `switch` | `startProgram.extraRinse1` |
| Extra Rinse 2 | `numeric-2-box-multiple-outline` | `switch` | `startProgram.extraRinse2` |
| Extra Rinse 3 | `numeric-3-box-multiple-outline` | `switch` | `startProgram.extraRinse3` |
| Good Night | `weather-night` | `switch` | `startProgram.goodNight` |
| Hygiene | `lotion-plus` | `switch` | `startProgram.hygiene` |
| Keep Fresh | `refresh-circle` | `switch` | `startProgram.permanentPressStatus` |
| Main Wash Time | `clock-start` | `number` | `startProgram.mainWashTime` |
| Prewash | `tshirt-crew` | `switch` | `startProgram.prewash` |
| Program | | `select` | `startProgram.program` |
| Rinse Iterations | `rotate-right` | `number` | `startProgram.rinseIterations` |
| Soak Prewash Selection | `tshirt-crew` | `switch` | `startProgram.haier_SoakPrewashSelection` |
| Spin speed | `numeric` | `select` | `startProgram.spinSpeed` |
| Stain Type | `liquid-spot` | `select` | `startProgram.extendedStainType` |
| Steam level | `weather-dust` | `select` | `startProgram.steamLevel` |
| Temperature | `thermometer` | `select` | `startProgram.temp` |
| Water hard | `water` | `number` | `startProgram.waterHard` |
| lang | | `number` | `startProgram.lang` |
#### Sensors
| Name | Icon | Entity | Key |
| --- | --- | --- | --- |
| Acqua Plus | `water-plus` | `binary_sensor` | `acquaplus` |
| Current Electricity Used | `lightning-bolt` | `sensor` | `currentElectricityUsed` |
| Current Temperature | `thermometer` | `sensor` | `temp` |
| Current Water Used | `water` | `sensor` | `currentWaterUsed` |
| Dirty level | `liquid-spot` | `sensor` | `dirtyLevel` |
| Door | | `binary_sensor` | `doorStatus` |
| Door Lock | | `binary_sensor` | `doorLockStatus` |
| Error | `math-log` | `sensor` | `errors` |
| Extra Rinse 1 | `numeric-1-box-multiple-outline` | `binary_sensor` | `extraRinse1` |
| Extra Rinse 2 | `numeric-2-box-multiple-outline` | `binary_sensor` | `extraRinse2` |
| Extra Rinse 3 | `numeric-3-box-multiple-outline` | `binary_sensor` | `extraRinse3` |
| Good Night Mode | `weather-night` | `binary_sensor` | `goodNight` |
| Machine Status | `information` | `sensor` | `machMode` |
| Pre Wash | `tshirt-crew` | `binary_sensor` | `prewash` |
| Program | `play` | `sensor` | `programName` |
| Program Phase | `washing-machine` | `sensor` | `prPhase` |
| Remaining Time | `timer` | `sensor` | `remainingTimeMM` |
| Remote Control | `remote` | `binary_sensor` | `attributes.lastConnEvent.category` |
| Spin Speed | `speedometer` | `sensor` | `spinSpeed` |
| Stain Type | `liquid-spot` | `sensor` | `stainType` |
| Steam level | `weather-dust` | `sensor` | `steamLevel` |
| Total Power | | `sensor` | `totalElectricityUsed` |
| Total Wash Cycle | `counter` | `sensor` | `totalWashCycle` |
| Total Water | | `sensor` | `totalWaterUsed` |
</details>
## Configuration ## Configuration
@ -34,26 +727,6 @@ Home Assistant integration for [Haier's mobile app hOn](https://hon-smarthome.co
**Method 2**: Settings > Devices & Services > Add Integration > **Haier hOn** **Method 2**: Settings > Devices & Services > Add Integration > **Haier hOn**
_If the integration is not in the list, you need to clear the browser cache._ _If the integration is not in the list, you need to clear the browser cache._
## Supported Models
Support has been confirmed for these **72 models**, but many more will work. Please add already supported devices [with this form to complete the list](https://forms.gle/bTSD8qFotdZFytbf8).
| | **Haier** | **Hoover** | **Candy** |
|---------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------|
| **Washing Machine** | HW80-B14959TU1DE <br/> HW80-B14959TU1IT <br/> HW80-B14979TU1 <br/> HW90-B14TEAM5 <br/> HW90G-BD14979UD <br/> HW100-B14959U1 <br/> HW110-14979 | H-WASH 500 <br/> H7W4 48MBC-S <br/> HLWPS495TAMBE-11 <br/> HW 410AMBCB/1-80 <br/> HWE 49AMBS/1-S | CO4 107T1/2-07 <br/> CBWO49TWME-S <br/> RO14126DWMST-S <br/> RO441286DWMC4-07 <br/> HW 68AMC/1-80 <br/> HWPD 69AMBC/1-S |
| **Tumble Dryer** | HD80-A3959 <br/> HD90-A3TEAM5 <br/> HD90-A2959 | H-DRY 500 <br/> H9A3TCBEXS-S <br/> HLE C10DCE-80 <br/> H5WPB447AMBC/1-S <br/> NDE H10A2TCE-80 <br/> NDE H9A2TSBEXS-S <br/> NDPHY10A2TCBEXSS | BCTDH7A1TE <br/> CSOE C10DE-80 <br/> ROE H9A3TCEX-S <br/> ROE H10A2TCE-07 |
| **Washer Dryer** | HWD80-B14979U1 <br/> HWD100-B14979 <br/> HWD100-B14978 | HD 485AMBB/1-S <br/> HD 495AMC/1-S <br/> HD 4106AMC/1-80 <br/> HDQ 496AMBS/1-S <br/> HWPS4954DAMR-11 | RPW41066BWMR/1-S |
| **Oven** | HWO60SM2F3XH | HSOT3161WG | |
| **Dish Washer** | XIB 3B2SFS-80 <br/> XIB 6B2D3FB | HFB 6B2S3FX | |
| **Air Conditioner** | AD105S2SM3FA <br/> AS09TS4HRA-M <br/> AS20HPL1HRA <br/> AS25PBAHRA <br/> AS25S2SF1FA-WH <br/> AS25TADHRA-2 <br/> AS25TEDHRA(M1) <br/> AS35PBAHRA <br/> AS35S2SF1FA-WH <br/> AS35S2SF2FA-3 <br/> AS35TADHRA-2 <br/> AS35TAMHRA-C <br/> AS35TEDHRA(M1) | | CY-12TAIN |
| **Fridge** | HFW7720ENMB <br/> HFW7819EWMP | | CCE4T620EWU <br/> CCE4T618EW |
| **Hob** | HA2MTSJ68MC | | CIS633SCTTWIFI |
| **Hood** | HADG6DS46BWIFI | | |
| **Wine Cellar** | HWS247FDU1 | | |
| **Air Purifier** | | HHP30C011 <br/> HHP50CA001 <br/> HHP50CA011 | |
| Please add your appliances data to our [hon-test-data collection](https://github.com/Andre0512/hon-test-data). <br/>This helps us to develop new features and not to break compatibility in newer versions. |
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
## Supported Languages ## Supported Languages
Translation of internal names like programs are available for all languages which are official supported by the hOn app: Translation of internal names like programs are available for all languages which are official supported by the hOn app:
* 🇨🇳 Chinese * 🇨🇳 Chinese
@ -88,20 +761,25 @@ The apps on this (incomplete) list have been requested so far:
| Haier Uhome | China | :x: | [banto6/haier](https://github.com/banto6/haier) | | Haier Uhome | China | :x: | [banto6/haier](https://github.com/banto6/haier) |
| Haier U+ | China | :x: | | | Haier U+ | China | :x: | |
| GE SmartHQ | North America | :x: | [simbaja/ha_gehome](https://github.com/simbaja/ha_gehome) | | GE SmartHQ | North America | :x: | [simbaja/ha_gehome](https://github.com/simbaja/ha_gehome) |
| Haier Evo | Russia | :x: | |
## Examples
### Washing Machine
![washing_machine.png](assets/washing_machine.png)
## Contribute ## Contribute
Want to help us to support more appliances? Or add more sensors? Or help with translating? Or beautify some icons or captions? Want to help us to support more appliances? Or add more sensors? Or help with translating? Or beautify some icons or captions?
Check out the [project on GitHub](https://github.com/Andre0512/hon), every contribution is welcome! Check out the [project on GitHub](https://github.com/Andre0512/hon), every contribution is welcome!
| Please add your appliances data to our [hon-test-data collection](https://github.com/Andre0512/hon-test-data). <br/>This helps us to develop new features and not to break compatibility in newer versions. |
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
## Useful Links ## Useful Links
* [GitHub repository](https://github.com/Andre0512/hon) (please add a star if you like this integration!) * [GitHub repository](https://github.com/Andre0512/hon)
* [pyhOn library](https://github.com/Andre0512/pyhOn) * [pyhOn library](https://github.com/Andre0512/pyhOn)
* [Release notes](https://github.com/Andre0512/hon/releases) * [Release notes](https://github.com/Andre0512/hon/releases)
* [Discussion and help](https://github.com/Andre0512/hon/discussions) * [Discussion and help](https://github.com/Andre0512/hon/discussions)
* [Issues](https://github.com/Andre0512/hon/issues) * [Issues](https://github.com/Andre0512/hon/issues)
## Support
If you find this project helpful and would like to support its development, you can buy me a coffee! ☕
[!["Buy Me A Coffee"](https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png)](https://www.buymeacoffee.com/andre0512)
Don't forget to star the repository if you found it useful! ⭐

View File

@ -1,2 +1 @@
pyhOn pyhOn==0.15.15
homeassistant

View File

@ -1,5 +1,4 @@
homeassistant~=2023.9.3 black>=22.12
black~=23.7.0 flake8>=6.0
flake8~=6.0.0 mypy>=0.991
mypy~=1.4.1 pylint>=2.15
pylint~=2.17.4

View File

@ -4,6 +4,7 @@ import re
import sys import sys
from pathlib import Path from pathlib import Path
from homeassistant.util import yaml
if __name__ == "__main__": if __name__ == "__main__":
sys.path.insert(0, str(Path(__file__).parent.parent)) sys.path.insert(0, str(Path(__file__).parent.parent))
@ -26,7 +27,7 @@ from custom_components.hon.switch import (
ENTITY_CATEGORY_SORT = ["control", "config", "sensor"] ENTITY_CATEGORY_SORT = ["control", "config", "sensor"]
entities = { ENTITIES = {
"binary_sensor": BINARY_SENSORS, "binary_sensor": BINARY_SENSORS,
"button": BUTTONS, "button": BUTTONS,
"climate": CLIMATES, "climate": CLIMATES,
@ -39,47 +40,84 @@ entities = {
"switch": SWITCHES, "switch": SWITCHES,
} }
result = {}
for entity_type, appliances in entities.items():
for appliance, data in appliances.items():
for entity in data:
if isinstance(entity, HonControlSwitchEntityDescription):
key = f"{entity.turn_on_key}` / `{entity.turn_off_key}"
else:
key = entity.key
attributes = (key, entity.name, entity.icon, entity_type)
category = (
"control"
if entity.key.startswith("settings")
or isinstance(entity, HonSwitchEntityDescription)
or isinstance(entity, HonControlSwitchEntityDescription)
or entity_type in ["button", "climate", "lock", "light", "fan"]
else "sensor"
)
result.setdefault(appliance, {}).setdefault(
entity.entity_category or category, []
).append(attributes)
text = ""
for appliance, categories in sorted(result.items()):
text += f"\n### {APPLIANCES[appliance]}\n"
categories = {k: categories[k] for k in ENTITY_CATEGORY_SORT if k in categories}
for category, data in categories.items():
text += f"#### {str(category).capitalize()}s\n"
text += "| Name | Icon | Entity | Key |\n"
text += "| --- | --- | --- | --- |\n"
for key, name, icon, entity_type in sorted(data, key=lambda d: d[1]):
icon = f"`{icon.replace('mdi:', '')}`" if icon else ""
text += f"| {name} | {icon} | `{entity_type}` | `{key}` |\n"
with open(Path(__file__).parent.parent / "README.md", "r") as file: def get_models():
readme = file.read() return yaml.load_yaml(str(Path(__file__).parent.parent / "supported_models.yml"))
readme = re.sub(
"(## Appliance Features\n)(?:.|\\s)+?([^#]## |\\Z)",
f"\\1{text}\\2", def get_entites():
readme, result = {}
re.DOTALL, for entity_type, appliances in ENTITIES.items():
) for appliance, data in appliances.items():
entities = sum(len(x) for cat in result.values() for x in cat.values()) for entity in data:
readme = re.sub("badge/Entities-\\d+", f"badge/Entities-{entities}", readme) if isinstance(entity, HonControlSwitchEntityDescription):
with open(Path(__file__).parent.parent / "README.md", "w") as file: key = f"{entity.turn_on_key}` / `{entity.turn_off_key}"
file.write(readme) else:
key = entity.key
attributes = (key, entity.name, entity.icon, entity_type)
category = (
"control"
if entity.key.startswith("settings")
or isinstance(entity, HonSwitchEntityDescription)
or isinstance(entity, HonControlSwitchEntityDescription)
or entity_type in ["button", "climate", "lock", "light", "fan"]
else "sensor"
)
result.setdefault(appliance, {}).setdefault(
entity.entity_category or category, []
).append(attributes)
return result
def generate_text(entites, models):
text = "_Click to expand..._\n\n"
for appliance, categories in sorted(entites.items()):
text += f"<details>\n<summary>{APPLIANCES[appliance]}</summary>\n\n"
example = f"example_{appliance.lower()}.png"
if (Path(__file__).parent.parent / "assets" / example).exists():
text += f"### {APPLIANCES[appliance]} Example\n![{APPLIANCES[appliance]}](assets/{example})\n\n"
support_number = sum([len(e) for e in models[appliance.lower()].values()])
text += (
f"### Supported {APPLIANCES[appliance]} models\nSupport has been confirmed for these "
f"**{support_number} models**, but many more will work. Please add already supported devices "
f"[with this form to complete the list](https://forms.gle/bTSD8qFotdZFytbf8).\n"
)
for brand, items in models[appliance.lower()].items():
text += f"\n#### {brand[0].upper()}{brand[1:]}\n- "
text += "\n- ".join(items) + "\n"
categories = {k: categories[k] for k in ENTITY_CATEGORY_SORT if k in categories}
text += f"\n### {APPLIANCES[appliance]} Entities\n"
for category, data in categories.items():
text += f"#### {str(category).capitalize()}s\n"
text += "| Name | Icon | Entity | Key |\n"
text += "| --- | --- | --- | --- |\n"
for key, name, icon, entity_type in sorted(data, key=lambda d: d[1]):
icon = f"`{icon.replace('mdi:', '')}`" if icon else ""
text += f"| {name} | {icon} | `{entity_type}` | `{key}` |\n"
text += "\n</details>\n\n"
return text
def update_readme(text, entities, models, file_name="README.md"):
with open(Path(__file__).parent.parent / file_name, "r") as file:
readme = file.read()
readme = re.sub(
"(## Supported Appliances\n)(?:.|\\s)+?([^#]## |\\Z)",
f"\\1{text}\\2",
readme,
re.DOTALL,
)
entities = sum(len(x) for cat in entities.values() for x in cat.values())
readme = re.sub("badge/Entities-\\d+", f"badge/Entities-{entities}", readme)
models = sum(len(x) for cat in models.values() for x in cat.values())
readme = re.sub("badge/Models-\\d+", f"badge/Models-{models}", readme)
with open(Path(__file__).parent.parent / file_name, "w") as file:
file.write(readme)
if __name__ == "__main__":
entities = get_entites()
models = get_models()
text = generate_text(entities, models)
update_readme(text, entities, models)
update_readme(text, entities, models, "info.md")

View File

@ -85,6 +85,40 @@ AC_HUMAN_SENSE = {
"unknown": "unknown", "unknown": "unknown",
} }
AC_POSITIONS = {
"position_1": [
"AC.PROGRAM_DETAIL.FAN_MODE_FIXED",
"-",
"AC.PROGRAM_DETAIL.POSITION",
"1",
],
"position_2": [
"AC.PROGRAM_DETAIL.FAN_MODE_FIXED",
"-",
"AC.PROGRAM_DETAIL.POSITION",
"2",
],
"position_3": [
"AC.PROGRAM_DETAIL.FAN_MODE_FIXED",
"-",
"AC.PROGRAM_DETAIL.POSITION",
"3",
],
"position_4": [
"AC.PROGRAM_DETAIL.FAN_MODE_FIXED",
"-",
"AC.PROGRAM_DETAIL.POSITION",
"4",
],
"position_5": [
"AC.PROGRAM_DETAIL.FAN_MODE_FIXED",
"-",
"AC.PROGRAM_DETAIL.POSITION",
"5",
],
"swing": "AC.PROGRAM_DETAIL.FAN_MODE_SWING",
}
AP_MACH_MODE = { AP_MACH_MODE = {
"standby": "AP.RUNNING_MODE.STANDBY", "standby": "AP.RUNNING_MODE.STANDBY",
"sleep": "AP.RUNNING_MODE.SLEEP", "sleep": "AP.RUNNING_MODE.SLEEP",
@ -178,6 +212,8 @@ SELECT = {
"diffuser": AP_DIFFUSER_LEVEL, "diffuser": AP_DIFFUSER_LEVEL,
"dirt_level": DIRTY_LEVEL, "dirt_level": DIRTY_LEVEL,
"stain_type": STAINS, "stain_type": STAINS,
"fan_horizontal": AC_POSITIONS,
"fan_vertical": AC_POSITIONS,
} }
PROGRAMS = { PROGRAMS = {
@ -344,6 +380,14 @@ NAMES = {
"steam_level": "WASHING_CMD&CTRL.PROGRAM_CYCLE_DETAIL_MAIN_OPTIONS.STEAM_LEVEL", "steam_level": "WASHING_CMD&CTRL.PROGRAM_CYCLE_DETAIL_MAIN_OPTIONS.STEAM_LEVEL",
"dirt_level": "WASHING_CMD&CTRL.PROGRAM_CYCLE_DETAIL_MAIN_OPTIONS.DIRTY_LEVEL", "dirt_level": "WASHING_CMD&CTRL.PROGRAM_CYCLE_DETAIL_MAIN_OPTIONS.DIRTY_LEVEL",
"stain_type": "STAIN_TYPE_LIST.STAINS.STAIN_LEVEL", "stain_type": "STAIN_TYPE_LIST.STAINS.STAIN_LEVEL",
"fan_horizontal": [
"AC.PROGRAM_DETAIL.FAN_DIRECTION",
"AC.PROGRAM_DETAIL.FAN_DIRECTION_HORIZONTAL",
],
"fan_vertical": [
"AC.PROGRAM_DETAIL.FAN_DIRECTION",
"AC.PROGRAM_DETAIL.FAN_DIRECTION_VERTICAL",
],
}, },
"sensor": { "sensor": {
"dry_levels": "WASHING_CMD&CTRL.DRAWER_CYCLE_DRYING.TAB_LEVEL", "dry_levels": "WASHING_CMD&CTRL.DRAWER_CYCLE_DRYING.TAB_LEVEL",
@ -418,6 +462,7 @@ NAMES = {
"dry_time": "WASHING_CMD&CTRL.DRAWER_CYCLE_DRYING.TAB_TIME", "dry_time": "WASHING_CMD&CTRL.DRAWER_CYCLE_DRYING.TAB_TIME",
"freezer_temp_sel": ["OV.COMMON.GOAL_TEMPERATURE", "REF.ZONES.FREEZER"], "freezer_temp_sel": ["OV.COMMON.GOAL_TEMPERATURE", "REF.ZONES.FREEZER"],
"fridge_temp_sel": ["OV.COMMON.GOAL_TEMPERATURE", "REF.ZONES.FRIDGE"], "fridge_temp_sel": ["OV.COMMON.GOAL_TEMPERATURE", "REF.ZONES.FRIDGE"],
"my_zone_temp_sel": ["OV.COMMON.GOAL_TEMPERATURE", "REF.ZONES.MY_ZONE_1"],
"pollen_level": "AP.AIR_QUALITY.POLLEN_LEVEL", "pollen_level": "AP.AIR_QUALITY.POLLEN_LEVEL",
"aroma_time_on": "AP.TITLES.AROMA_ON", "aroma_time_on": "AP.TITLES.AROMA_ON",
"aroma_time_off": "AP.TITLES.AROMA_OFF", "aroma_time_off": "AP.TITLES.AROMA_OFF",
@ -427,6 +472,7 @@ NAMES = {
"fridge": "REF.ZONES.FRIDGE", "fridge": "REF.ZONES.FRIDGE",
"freezer": "REF.ZONES.FREEZER", "freezer": "REF.ZONES.FREEZER",
"oven": "GLOBALS.APPLIANCES_NAME.OV", "oven": "GLOBALS.APPLIANCES_NAME.OV",
"my_zone": "REF.ZONES.MY_ZONE_1",
}, },
"fan": {"air_extraction": "HO.DASHBOARD.AIR_EXTRACTION_TITLE"}, "fan": {"air_extraction": "HO.DASHBOARD.AIR_EXTRACTION_TITLE"},
"light": {"light": "WC.DASHBOARD_MENU_MORE.LIGHT"}, "light": {"light": "WC.DASHBOARD_MENU_MORE.LIGHT"},

162
supported_models.yml Normal file
View File

@ -0,0 +1,162 @@
wm:
haier:
- "HW80-B14959TU1"
- "HW80-B14959S8U1S"
- "HW80-B14979TU1"
- "HW90-B145XLINEDE"
- "HW90-B14959U1"
- "HW90-B14959S8U1"
- "HW90-B14TEAM5"
- "HW90G-BD14979UD"
- "HW100-B14959U1"
- "HW110-14979"
hoover:
- "H5WPB447AMBC/1-S"
- "H7W 412MBCR-80"
- "H7W 610AMBC-80"
- "H7W4 48MBC-S"
- "HLWPS495TAMBE-11"
- "HPS484DAMB7/1-11"
- "HW 28AMBS/1-S"
- "HW 410AMBCB/1-80"
- "HW 411AMBCB/1-80"
- "HW 48AMC/1-S"
- "HW 49AMC/1-80"
- "HW 68AMC/1-80"
- "HW4 37AMBS/1-S"
- "HW4 37XMBB/1-S"
- "HWB 410AMC/1-80"
- "HWB 414AMC/1-80"
- "HWE 49AMBS/1-S"
- "HWP 48AMBCR/1-S"
- "HWP 610AMBC/1-S"
- "HWPD 69AMBC/1-S"
- "HWPDQ49AMBC/1-S"
- "HWPD 610AMBC/1-S"
candy:
- "CO4 107T1/2-07"
- "CBWO49TWME-S"
- "RO14126DWMST-S"
- "RO441286DWMC4-07"
- "RO4H7A2TEX-S"
- "ROW42646DWMC-07"
- "RP 696BWMRR/1-S"
td:
haier:
- "HD80-A3959"
- "HD90-A3TEAM5"
- "HD90-A2959"
- "HD90-A2959S"
- "HD90-A3959"
hoover:
- "HLE H8A2TE-S"
- "HLE H9A2TCE-80"
- "HLE C10DCE-80"
- "NDE H10A2TCE-80"
- "NDE H10RA2TCE-80"
- "NDE H9A2TSBEXS-S"
- "NDP H9A3TCBEXS-S"
- "NDP4 H7A2TCBEX-S"
- "NDPEH9A3TCBEXS-S"
candy:
- "BCTDH7A1TE"
- "CSOE C10DE-80"
- "CSOE C10TREX-47"
- "CSOE H10A2DE-S"
- "CSOE H9A2DE-S"
- "ROE H9A2TCE-80"
- "ROE H9A3TCEX-S"
- "ROE H10A2TCE-07"
wd:
haier:
- "HWD100-B14978"
- "HWD100-B14979"
- "HWD100-B14959U1"
- "HWD80-B14979U1"
hoover:
- "H7D 4128MBC-S"
- "HD 4106AMC/1-80"
- "HD 485AMBB/1-S"
- "HD 495AMC/1-S"
- "HDB 5106AMC/1-80"
- "HDD4106AMBCR-80"
- "HDQ 496AMBS/1-S"
- "HDP 4149AMBC/1-S"
- "HWPS4954DAMR-11"
candy:
- "RPW41066BWMR/1-S"
- "RPW4966BWMR/1-S"
ov:
haier:
- "HWO60SM2F3XH"
hoover:
- "HSOT3161WG"
dw:
haier:
- "XIB 3B2SFS-80"
- "XIB 6B2D3FB"
hoover:
- "HDPN 4S603PW/E"
- "HFB 5B2D3FW"
- "HFB 6B2S3FX"
candy:
- "CF 3C7L0X"
ac:
haier:
- "AD105S2SM3FA"
- "AD71S2SM3FA(H)"
- "AS07TS4HRA-M"
- "AS07TS5HRA"
- "AS09TS4HRA-M"
- "AS25PBAHRA"
- "AS25S2SF1FA"
- "AS25TADHRA-2"
- "AS25TEDHRA(M1)"
- "AS25THMHRA-C"
- "AS25XCAHRA"
- "AS35PBAHRA"
- "AS35S2SF1FA"
- "AS35S2SF2FA-3"
- "AS35TADHRA-2"
- "AS35TAMHRA-C"
- "AS35TEDHRA(M1)"
- "AS35XCAHRA"
- "AS50S2SF1FA"
- "AS50S2SF2FA-1"
- "AS50XCAHR"
candy:
- "CY-12TAIN"
ref:
haier:
- "HDPW5620ANPD"
- "HBW5519ECM"
- "HDW5620CNPK"
- "HFW7720ENMB"
- "HFW7819EWMP"
- "HSW59F18EIPT"
- "HTW5620DNMG"
hoover:
- "HOCE7620DX"
candy:
- "CE4T620EB"
- "CCE4T620EWU"
- "CCE4T618EW"
ih:
haier:
- "HA2MTSJ68MC"
- "HAIDSJ63MC"
candy:
- "CIS633SCTTWIFI"
ho:
haier:
- "HADG6DS46BWIFI"
wc:
haier:
- "HWS247FDU1"
- "HWS42GDAU1"
ap:
hoover:
- "HHP30C011"
- "HHP50CA001"
- "HHP50CA011"
- "HHP70CAH011"