mirror of
https://github.com/Andre0512/hon.git
synced 2025-08-03 23:31:15 +00:00
Merge f66bd14ed1
into 70eb6c0111
This commit is contained in:
commit
da4cbc49c0
|
@ -285,6 +285,16 @@ BINARY_SENSORS: dict[str, tuple[HonBinarySensorEntityDescription, ...]] = {
|
||||||
translation_key="on",
|
translation_key="on",
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
"WH": (
|
||||||
|
HonBinarySensorEntityDescription(
|
||||||
|
key="onOffStatus",
|
||||||
|
name="Power State",
|
||||||
|
icon="mdi:power-standby",
|
||||||
|
device_class=BinarySensorDeviceClass.POWER,
|
||||||
|
on_value=1,
|
||||||
|
translation_key="power-state",
|
||||||
|
),
|
||||||
|
),
|
||||||
"FRE": (
|
"FRE": (
|
||||||
HonBinarySensorEntityDescription(
|
HonBinarySensorEntityDescription(
|
||||||
key="quickModeZ1",
|
key="quickModeZ1",
|
||||||
|
|
|
@ -294,3 +294,9 @@ AC_POSITION_VERTICAL = {
|
||||||
7: "position_5",
|
7: "position_5",
|
||||||
8: "swing",
|
8: "swing",
|
||||||
}
|
}
|
||||||
|
|
||||||
|
WH_MACH_MODE: dict[int, str] = {
|
||||||
|
1: "eco",
|
||||||
|
2: "max",
|
||||||
|
3: "bps",
|
||||||
|
}
|
||||||
|
|
|
@ -5,6 +5,7 @@ from dataclasses import dataclass
|
||||||
from homeassistant.components.number import (
|
from homeassistant.components.number import (
|
||||||
NumberEntity,
|
NumberEntity,
|
||||||
NumberEntityDescription,
|
NumberEntityDescription,
|
||||||
|
NumberDeviceClass,
|
||||||
)
|
)
|
||||||
from homeassistant.config_entries import ConfigEntry
|
from homeassistant.config_entries import ConfigEntry
|
||||||
from homeassistant.const import UnitOfTime, UnitOfTemperature
|
from homeassistant.const import UnitOfTime, UnitOfTemperature
|
||||||
|
@ -27,7 +28,7 @@ class HonConfigNumberEntityDescription(NumberEntityDescription):
|
||||||
|
|
||||||
@dataclass(frozen=True)
|
@dataclass(frozen=True)
|
||||||
class HonNumberEntityDescription(NumberEntityDescription):
|
class HonNumberEntityDescription(NumberEntityDescription):
|
||||||
pass
|
send_key_only: bool = False
|
||||||
|
|
||||||
|
|
||||||
NUMBERS: dict[str, tuple[NumberEntityDescription, ...]] = {
|
NUMBERS: dict[str, tuple[NumberEntityDescription, ...]] = {
|
||||||
|
@ -201,6 +202,17 @@ NUMBERS: dict[str, tuple[NumberEntityDescription, ...]] = {
|
||||||
translation_key="pollen_level",
|
translation_key="pollen_level",
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
"WH": (
|
||||||
|
HonNumberEntityDescription(
|
||||||
|
key="settings.tempSel",
|
||||||
|
name="Target Temperature",
|
||||||
|
icon="mdi:thermometer",
|
||||||
|
device_class=NumberDeviceClass.TEMPERATURE,
|
||||||
|
native_unit_of_measurement=UnitOfTemperature.CELSIUS,
|
||||||
|
translation_key="target_temperature",
|
||||||
|
send_key_only=True,
|
||||||
|
),
|
||||||
|
),
|
||||||
}
|
}
|
||||||
|
|
||||||
NUMBERS["WD"] = unique_entities(NUMBERS["WM"], NUMBERS["TD"])
|
NUMBERS["WD"] = unique_entities(NUMBERS["WM"], NUMBERS["TD"])
|
||||||
|
@ -253,8 +265,12 @@ class HonNumberEntity(HonEntity, NumberEntity):
|
||||||
setting = self._device.settings[self.entity_description.key]
|
setting = self._device.settings[self.entity_description.key]
|
||||||
if isinstance(setting, HonParameterRange):
|
if isinstance(setting, HonParameterRange):
|
||||||
setting.value = value
|
setting.value = value
|
||||||
command = self.entity_description.key.split(".")[0]
|
key_parts = self.entity_description.key.split(".")
|
||||||
await self._device.commands[command].send()
|
command = key_parts[0]
|
||||||
|
if self.entity_description.send_key_only:
|
||||||
|
await self._device.commands[command].send_specific([key_parts[1]])
|
||||||
|
else:
|
||||||
|
await self._device.commands[command].send()
|
||||||
if command != "settings":
|
if command != "settings":
|
||||||
self._device.sync_command(command, "settings")
|
self._device.sync_command(command, "settings")
|
||||||
self.coordinator.async_set_updated_data({})
|
self.coordinator.async_set_updated_data({})
|
||||||
|
|
|
@ -22,6 +22,7 @@ _LOGGER = logging.getLogger(__name__)
|
||||||
@dataclass(frozen=True)
|
@dataclass(frozen=True)
|
||||||
class HonSelectEntityDescription(SelectEntityDescription):
|
class HonSelectEntityDescription(SelectEntityDescription):
|
||||||
option_list: dict[int, str] | None = None
|
option_list: dict[int, str] | None = None
|
||||||
|
send_key_only: bool = False
|
||||||
|
|
||||||
|
|
||||||
@dataclass(frozen=True)
|
@dataclass(frozen=True)
|
||||||
|
@ -185,6 +186,24 @@ SELECTS: dict[str, tuple[SelectEntityDescription, ...]] = {
|
||||||
translation_key="mode",
|
translation_key="mode",
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
"WH": (
|
||||||
|
HonSelectEntityDescription(
|
||||||
|
key="settings.tempSel",
|
||||||
|
name="Target Temperature",
|
||||||
|
icon="mdi:thermometer",
|
||||||
|
unit_of_measurement=UnitOfTemperature.CELSIUS,
|
||||||
|
translation_key="target_temperature",
|
||||||
|
send_key_only=True,
|
||||||
|
),
|
||||||
|
HonSelectEntityDescription(
|
||||||
|
key="settings.machMode",
|
||||||
|
name="Mode",
|
||||||
|
send_key_only=True,
|
||||||
|
icon="mdi:information",
|
||||||
|
option_list=const.WH_MACH_MODE,
|
||||||
|
translation_key="mach_modes_wh",
|
||||||
|
),
|
||||||
|
),
|
||||||
"FRE": (
|
"FRE": (
|
||||||
HonConfigSelectEntityDescription(
|
HonConfigSelectEntityDescription(
|
||||||
key="startProgram.program",
|
key="startProgram.program",
|
||||||
|
@ -313,8 +332,12 @@ class HonSelectEntity(HonEntity, SelectEntity):
|
||||||
async def async_select_option(self, option: str) -> None:
|
async def async_select_option(self, option: str) -> None:
|
||||||
setting = self._device.settings[self.entity_description.key]
|
setting = self._device.settings[self.entity_description.key]
|
||||||
setting.value = self._option_to_number(option, setting.values)
|
setting.value = self._option_to_number(option, setting.values)
|
||||||
command = self.entity_description.key.split(".")[0]
|
key_parts = self.entity_description.key.split(".")
|
||||||
await self._device.commands[command].send()
|
command = key_parts[0]
|
||||||
|
if self.entity_description.send_key_only:
|
||||||
|
await self._device.commands[command].send_specific([key_parts[1]])
|
||||||
|
else:
|
||||||
|
await self._device.commands[command].send()
|
||||||
if command != "settings":
|
if command != "settings":
|
||||||
self._device.sync_command(command, "settings")
|
self._device.sync_command(command, "settings")
|
||||||
self.coordinator.async_set_updated_data({})
|
self.coordinator.async_set_updated_data({})
|
||||||
|
|
|
@ -780,6 +780,63 @@ SENSORS: dict[str, tuple[SensorEntityDescription, ...]] = {
|
||||||
translation_key="air_quality",
|
translation_key="air_quality",
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
"WH": (
|
||||||
|
HonSensorEntityDescription(
|
||||||
|
key="temp",
|
||||||
|
name="Temperature",
|
||||||
|
state_class=SensorStateClass.MEASUREMENT,
|
||||||
|
device_class=SensorDeviceClass.TEMPERATURE,
|
||||||
|
native_unit_of_measurement=UnitOfTemperature.CELSIUS,
|
||||||
|
translation_key="temperature",
|
||||||
|
),
|
||||||
|
HonSensorEntityDescription(
|
||||||
|
key="tempZ1",
|
||||||
|
name="Temp Z1",
|
||||||
|
state_class=SensorStateClass.MEASUREMENT,
|
||||||
|
device_class=SensorDeviceClass.TEMPERATURE,
|
||||||
|
native_unit_of_measurement=UnitOfTemperature.CELSIUS,
|
||||||
|
),
|
||||||
|
HonSensorEntityDescription(
|
||||||
|
key="tempZ2",
|
||||||
|
name="Temp Z2",
|
||||||
|
state_class=SensorStateClass.MEASUREMENT,
|
||||||
|
device_class=SensorDeviceClass.TEMPERATURE,
|
||||||
|
native_unit_of_measurement=UnitOfTemperature.CELSIUS,
|
||||||
|
),
|
||||||
|
HonSensorEntityDescription(
|
||||||
|
key="tempSel",
|
||||||
|
name="Target Temperature",
|
||||||
|
icon="mdi:thermometer",
|
||||||
|
state_class=SensorStateClass.MEASUREMENT,
|
||||||
|
device_class=SensorDeviceClass.TEMPERATURE,
|
||||||
|
native_unit_of_measurement=UnitOfTemperature.CELSIUS,
|
||||||
|
translation_key="target_temperature",
|
||||||
|
),
|
||||||
|
HonSensorEntityDescription(
|
||||||
|
key="machMode",
|
||||||
|
name="Mode",
|
||||||
|
icon="mdi:information",
|
||||||
|
device_class=SensorDeviceClass.ENUM,
|
||||||
|
option_list=const.WH_MACH_MODE,
|
||||||
|
translation_key="mach_modes_wh",
|
||||||
|
),
|
||||||
|
HonSensorEntityDescription(
|
||||||
|
key="smartTestStatus",
|
||||||
|
name="Smart Test Status",
|
||||||
|
),
|
||||||
|
HonSensorEntityDescription(
|
||||||
|
key="anodeMaintenanceStatus",
|
||||||
|
name="Anode Maintenance Status",
|
||||||
|
),
|
||||||
|
HonSensorEntityDescription(
|
||||||
|
key="tankMaintenanceStatus",
|
||||||
|
name="Tank Maintenance Status",
|
||||||
|
),
|
||||||
|
HonSensorEntityDescription(
|
||||||
|
key="heatingStatus",
|
||||||
|
name="Heating Status",
|
||||||
|
),
|
||||||
|
),
|
||||||
"FRE": (
|
"FRE": (
|
||||||
HonSensorEntityDescription(
|
HonSensorEntityDescription(
|
||||||
key="tempEnv",
|
key="tempEnv",
|
||||||
|
|
|
@ -23,6 +23,10 @@ _LOGGER = logging.getLogger(__name__)
|
||||||
class HonControlSwitchEntityDescription(SwitchEntityDescription):
|
class HonControlSwitchEntityDescription(SwitchEntityDescription):
|
||||||
turn_on_key: str = ""
|
turn_on_key: str = ""
|
||||||
turn_off_key: str = ""
|
turn_off_key: str = ""
|
||||||
|
only_mandatory_parameters: bool = False
|
||||||
|
on_value: bool | float = True
|
||||||
|
off_value: bool | float = False
|
||||||
|
to_sync: bool = False
|
||||||
|
|
||||||
|
|
||||||
@dataclass(frozen=True)
|
@dataclass(frozen=True)
|
||||||
|
@ -382,6 +386,20 @@ SWITCHES: dict[str, tuple[SwitchEntityDescription, ...]] = {
|
||||||
translation_key="touch_tone",
|
translation_key="touch_tone",
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
"WH": (
|
||||||
|
HonControlSwitchEntityDescription(
|
||||||
|
key="onOffStatus",
|
||||||
|
name="Power",
|
||||||
|
icon="mdi:power-standby",
|
||||||
|
turn_on_key="startProgram",
|
||||||
|
turn_off_key="stopProgram",
|
||||||
|
translation_key="power",
|
||||||
|
only_mandatory_parameters=True,
|
||||||
|
on_value=1,
|
||||||
|
off_value=0,
|
||||||
|
to_sync=True,
|
||||||
|
),
|
||||||
|
),
|
||||||
"FRE": (
|
"FRE": (
|
||||||
HonSwitchEntityDescription(
|
HonSwitchEntityDescription(
|
||||||
key="quickModeZ2",
|
key="quickModeZ2",
|
||||||
|
@ -485,20 +503,26 @@ class HonControlSwitchEntity(HonEntity, SwitchEntity):
|
||||||
@property
|
@property
|
||||||
def is_on(self) -> bool | None:
|
def is_on(self) -> bool | None:
|
||||||
"""Return True if entity is on."""
|
"""Return True if entity is on."""
|
||||||
return self._device.get(self.entity_description.key, False)
|
on_value = self.entity_description.on_value
|
||||||
|
off_value = self.entity_description.off_value
|
||||||
|
return self._device.get(self.entity_description.key, off_value) == on_value
|
||||||
|
|
||||||
async def async_turn_on(self, **kwargs: Any) -> None:
|
async def async_turn_on(self, **kwargs: Any) -> None:
|
||||||
self._device.sync_command(self.entity_description.turn_on_key, "settings")
|
desc = self.entity_description
|
||||||
|
self._device.sync_command(desc.turn_on_key, "settings", desc.to_sync)
|
||||||
self.coordinator.async_set_updated_data({})
|
self.coordinator.async_set_updated_data({})
|
||||||
await self._device.commands[self.entity_description.turn_on_key].send()
|
command = self._device.commands[desc.turn_on_key]
|
||||||
self._device.attributes[self.entity_description.key] = True
|
await command.send(desc.only_mandatory_parameters)
|
||||||
|
self._device.attributes[desc.key] = desc.on_value
|
||||||
self.async_write_ha_state()
|
self.async_write_ha_state()
|
||||||
|
|
||||||
async def async_turn_off(self, **kwargs: Any) -> None:
|
async def async_turn_off(self, **kwargs: Any) -> None:
|
||||||
self._device.sync_command(self.entity_description.turn_off_key, "settings")
|
desc = self.entity_description
|
||||||
|
self._device.sync_command(desc.turn_off_key, "settings", desc.to_sync)
|
||||||
self.coordinator.async_set_updated_data({})
|
self.coordinator.async_set_updated_data({})
|
||||||
await self._device.commands[self.entity_description.turn_off_key].send()
|
command = self._device.commands[desc.turn_off_key]
|
||||||
self._device.attributes[self.entity_description.key] = False
|
await command.send(desc.only_mandatory_parameters)
|
||||||
|
self._device.attributes[desc.key] = desc.off_value
|
||||||
self.async_write_ha_state()
|
self.async_write_ha_state()
|
||||||
|
|
||||||
@property
|
@property
|
||||||
|
|
|
@ -9,6 +9,79 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"entity": {
|
||||||
|
"sensor": {
|
||||||
|
"mode": {
|
||||||
|
"state": {
|
||||||
|
"0": "Изключен",
|
||||||
|
"1": "Готов",
|
||||||
|
"2": "Работи",
|
||||||
|
"3": "На пауза",
|
||||||
|
"5": "Scheduled",
|
||||||
|
"6": "Грешка",
|
||||||
|
"7": "Завършен"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"errors": {
|
||||||
|
"state": {
|
||||||
|
"00": "Няма грешки",
|
||||||
|
"100000000000": "E2: Провери дали вратата е затворена",
|
||||||
|
"8000000000000": "E4: Провери подаването на вода"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"programs": {
|
||||||
|
"state": {
|
||||||
|
"0": "Стандартна",
|
||||||
|
"62": "Памук",
|
||||||
|
"63": "Синтетика",
|
||||||
|
"64": "Смесен тип",
|
||||||
|
"66": "Чаршафи",
|
||||||
|
"71": "Пердета",
|
||||||
|
"72": "Спорт",
|
||||||
|
"74": "i-time",
|
||||||
|
"75": "Олекотени завивки",
|
||||||
|
"76": "Вълна",
|
||||||
|
"78": "i-Refresh",
|
||||||
|
"83": "Хавлиена кърпа",
|
||||||
|
"85": "Бързо Сушене",
|
||||||
|
"92": "Деликатно пране",
|
||||||
|
"103": "Отдалечен"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"program_phases_td": {
|
||||||
|
"state": {
|
||||||
|
"0": "Изчаване",
|
||||||
|
"2": "Сушене",
|
||||||
|
"3": "Охлажане",
|
||||||
|
"11": "11"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"tumbledryertemplevel": {
|
||||||
|
"state": {
|
||||||
|
"1": "Хладен въздух",
|
||||||
|
"2": "Ниска температура L-1",
|
||||||
|
"3": "Средна температура L-2",
|
||||||
|
"4": "Висока температура L-3"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"dry_levels": {
|
||||||
|
"state": {
|
||||||
|
"3": "Готови за съхранение",
|
||||||
|
"12": "Готови за гладене H-1",
|
||||||
|
"13": "Готови за съхранение H-2",
|
||||||
|
"14": "Екстра сухо H-3"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"mach_modes_wh": {
|
||||||
|
"state": {
|
||||||
|
"eco": "Eco",
|
||||||
|
"max": "Max",
|
||||||
|
"bps": "BPS"
|
||||||
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"entity": {
|
"entity": {
|
||||||
"sensor": {
|
"sensor": {
|
||||||
|
@ -2326,5 +2399,18 @@
|
||||||
"name": "Light"
|
"name": "Light"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"mach_modes_wh": {
|
||||||
|
"state": {
|
||||||
|
"eco": "Eco",
|
||||||
|
"max": "Max",
|
||||||
|
"bps": "BPS"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"binary_sensor": {
|
||||||
|
"power-state": {
|
||||||
|
"name": "Power State"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -931,6 +931,13 @@
|
||||||
"high": "Vysoká"
|
"high": "Vysoká"
|
||||||
},
|
},
|
||||||
"name": "Úroveň vlhkosti"
|
"name": "Úroveň vlhkosti"
|
||||||
|
},
|
||||||
|
"mach_modes_wh": {
|
||||||
|
"state": {
|
||||||
|
"eco": "Eco",
|
||||||
|
"max": "Max",
|
||||||
|
"bps": "BPS"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"select": {
|
"select": {
|
||||||
|
@ -1816,6 +1823,13 @@
|
||||||
"position_5": "Pevný - Poloha 5",
|
"position_5": "Pevný - Poloha 5",
|
||||||
"swing": "Pohyb lamel"
|
"swing": "Pohyb lamel"
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"mach_modes_wh": {
|
||||||
|
"state": {
|
||||||
|
"eco": "Eco",
|
||||||
|
"max": "Max",
|
||||||
|
"bps": "BPS"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"switch": {
|
"switch": {
|
||||||
|
@ -2015,6 +2029,9 @@
|
||||||
},
|
},
|
||||||
"filter_replacement": {
|
"filter_replacement": {
|
||||||
"name": "Výměna filtru"
|
"name": "Výměna filtru"
|
||||||
|
},
|
||||||
|
"power-state": {
|
||||||
|
"name": "Power State"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"button": {
|
"button": {
|
||||||
|
|
|
@ -931,6 +931,13 @@
|
||||||
"high": "Hoch"
|
"high": "Hoch"
|
||||||
},
|
},
|
||||||
"name": "Grad der Luftfeuchtigkeit"
|
"name": "Grad der Luftfeuchtigkeit"
|
||||||
|
},
|
||||||
|
"mach_modes_wh": {
|
||||||
|
"state": {
|
||||||
|
"eco": "Eco",
|
||||||
|
"max": "Max",
|
||||||
|
"bps": "BPS"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"select": {
|
"select": {
|
||||||
|
@ -1816,6 +1823,13 @@
|
||||||
"position_5": "Fest - Position 5",
|
"position_5": "Fest - Position 5",
|
||||||
"swing": "Schwenkbewegung"
|
"swing": "Schwenkbewegung"
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"mach_modes_wh": {
|
||||||
|
"state": {
|
||||||
|
"eco": "Eco",
|
||||||
|
"max": "Max",
|
||||||
|
"bps": "BPS"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"switch": {
|
"switch": {
|
||||||
|
@ -2015,6 +2029,9 @@
|
||||||
},
|
},
|
||||||
"filter_replacement": {
|
"filter_replacement": {
|
||||||
"name": "Filteraustausch"
|
"name": "Filteraustausch"
|
||||||
|
},
|
||||||
|
"power-state": {
|
||||||
|
"name": "Power State"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"button": {
|
"button": {
|
||||||
|
|
|
@ -931,6 +931,13 @@
|
||||||
"high": "Υψηλός"
|
"high": "Υψηλός"
|
||||||
},
|
},
|
||||||
"name": "Επίπεδο υγρασίας"
|
"name": "Επίπεδο υγρασίας"
|
||||||
|
},
|
||||||
|
"mach_modes_wh": {
|
||||||
|
"state": {
|
||||||
|
"eco": "Eco",
|
||||||
|
"max": "Max",
|
||||||
|
"bps": "BPS"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"select": {
|
"select": {
|
||||||
|
@ -1816,6 +1823,13 @@
|
||||||
"position_5": "Σταθερός - Θέση 5",
|
"position_5": "Σταθερός - Θέση 5",
|
||||||
"swing": "Ταλάντευση"
|
"swing": "Ταλάντευση"
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"mach_modes_wh": {
|
||||||
|
"state": {
|
||||||
|
"eco": "Eco",
|
||||||
|
"max": "Max",
|
||||||
|
"bps": "BPS"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"switch": {
|
"switch": {
|
||||||
|
@ -2015,6 +2029,9 @@
|
||||||
},
|
},
|
||||||
"filter_replacement": {
|
"filter_replacement": {
|
||||||
"name": "Αντικατάσταση φίλτρου"
|
"name": "Αντικατάσταση φίλτρου"
|
||||||
|
},
|
||||||
|
"power-state": {
|
||||||
|
"name": "Power State"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"button": {
|
"button": {
|
||||||
|
|
|
@ -964,6 +964,13 @@
|
||||||
"high": "High"
|
"high": "High"
|
||||||
},
|
},
|
||||||
"name": "Humidity level"
|
"name": "Humidity level"
|
||||||
|
},
|
||||||
|
"mach_modes_wh": {
|
||||||
|
"state": {
|
||||||
|
"eco": "Eco",
|
||||||
|
"max": "Max",
|
||||||
|
"bps": "BPS"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"select": {
|
"select": {
|
||||||
|
@ -1869,6 +1876,13 @@
|
||||||
"position_5": "Fixed - Position 5",
|
"position_5": "Fixed - Position 5",
|
||||||
"swing": "Swing"
|
"swing": "Swing"
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"mach_modes_wh": {
|
||||||
|
"state": {
|
||||||
|
"eco": "Eco",
|
||||||
|
"max": "Max",
|
||||||
|
"bps": "BPS"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"switch": {
|
"switch": {
|
||||||
|
@ -2068,6 +2082,9 @@
|
||||||
},
|
},
|
||||||
"filter_replacement": {
|
"filter_replacement": {
|
||||||
"name": "Filter replacement"
|
"name": "Filter replacement"
|
||||||
|
},
|
||||||
|
"power-state": {
|
||||||
|
"name": "Power State"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"button": {
|
"button": {
|
||||||
|
|
|
@ -931,6 +931,13 @@
|
||||||
"high": "Alto"
|
"high": "Alto"
|
||||||
},
|
},
|
||||||
"name": "Nivel de humedad"
|
"name": "Nivel de humedad"
|
||||||
|
},
|
||||||
|
"mach_modes_wh": {
|
||||||
|
"state": {
|
||||||
|
"eco": "Eco",
|
||||||
|
"max": "Max",
|
||||||
|
"bps": "BPS"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"select": {
|
"select": {
|
||||||
|
@ -1816,6 +1823,13 @@
|
||||||
"position_5": "Fijo - Posición 5",
|
"position_5": "Fijo - Posición 5",
|
||||||
"swing": "Oscilar"
|
"swing": "Oscilar"
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"mach_modes_wh": {
|
||||||
|
"state": {
|
||||||
|
"eco": "Eco",
|
||||||
|
"max": "Max",
|
||||||
|
"bps": "BPS"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"switch": {
|
"switch": {
|
||||||
|
@ -2015,6 +2029,9 @@
|
||||||
},
|
},
|
||||||
"filter_replacement": {
|
"filter_replacement": {
|
||||||
"name": "Sustitución del filtro"
|
"name": "Sustitución del filtro"
|
||||||
|
},
|
||||||
|
"power-state": {
|
||||||
|
"name": "Power State"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"button": {
|
"button": {
|
||||||
|
|
|
@ -931,6 +931,13 @@
|
||||||
"high": "Élevé"
|
"high": "Élevé"
|
||||||
},
|
},
|
||||||
"name": "Niveau d’humidité"
|
"name": "Niveau d’humidité"
|
||||||
|
},
|
||||||
|
"mach_modes_wh": {
|
||||||
|
"state": {
|
||||||
|
"eco": "Eco",
|
||||||
|
"max": "Max",
|
||||||
|
"bps": "BPS"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"select": {
|
"select": {
|
||||||
|
@ -1816,6 +1823,13 @@
|
||||||
"position_5": "Fixe - Position 5",
|
"position_5": "Fixe - Position 5",
|
||||||
"swing": "Oscillation"
|
"swing": "Oscillation"
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"mach_modes_wh": {
|
||||||
|
"state": {
|
||||||
|
"eco": "Eco",
|
||||||
|
"max": "Max",
|
||||||
|
"bps": "BPS"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"switch": {
|
"switch": {
|
||||||
|
@ -2015,6 +2029,9 @@
|
||||||
},
|
},
|
||||||
"filter_replacement": {
|
"filter_replacement": {
|
||||||
"name": "Remplacement du filtre"
|
"name": "Remplacement du filtre"
|
||||||
|
},
|
||||||
|
"power-state": {
|
||||||
|
"name": "Power State"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"button": {
|
"button": {
|
||||||
|
|
|
@ -448,6 +448,13 @@
|
||||||
"high": "גָבוֹהַ"
|
"high": "גָבוֹהַ"
|
||||||
},
|
},
|
||||||
"name": "Humidity level"
|
"name": "Humidity level"
|
||||||
|
},
|
||||||
|
"mach_modes_wh": {
|
||||||
|
"state": {
|
||||||
|
"eco": "Eco",
|
||||||
|
"max": "Max",
|
||||||
|
"bps": "BPS"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"select": {
|
"select": {
|
||||||
|
@ -859,6 +866,13 @@
|
||||||
"position_5": "Fixed - Position 5",
|
"position_5": "Fixed - Position 5",
|
||||||
"swing": "Swing"
|
"swing": "Swing"
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"mach_modes_wh": {
|
||||||
|
"state": {
|
||||||
|
"eco": "Eco",
|
||||||
|
"max": "Max",
|
||||||
|
"bps": "BPS"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"switch": {
|
"switch": {
|
||||||
|
@ -1058,6 +1072,9 @@
|
||||||
},
|
},
|
||||||
"filter_replacement": {
|
"filter_replacement": {
|
||||||
"name": "Filter replacement"
|
"name": "Filter replacement"
|
||||||
|
},
|
||||||
|
"power-state": {
|
||||||
|
"name": "Power State"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"button": {
|
"button": {
|
||||||
|
|
|
@ -931,6 +931,13 @@
|
||||||
"high": "Visoko"
|
"high": "Visoko"
|
||||||
},
|
},
|
||||||
"name": "Razina vlažnosti"
|
"name": "Razina vlažnosti"
|
||||||
|
},
|
||||||
|
"mach_modes_wh": {
|
||||||
|
"state": {
|
||||||
|
"eco": "Eco",
|
||||||
|
"max": "Max",
|
||||||
|
"bps": "BPS"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"select": {
|
"select": {
|
||||||
|
@ -1816,6 +1823,13 @@
|
||||||
"position_5": "Fiksno - Položaj 5",
|
"position_5": "Fiksno - Položaj 5",
|
||||||
"swing": "Njihanje"
|
"swing": "Njihanje"
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"mach_modes_wh": {
|
||||||
|
"state": {
|
||||||
|
"eco": "Eco",
|
||||||
|
"max": "Max",
|
||||||
|
"bps": "BPS"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"switch": {
|
"switch": {
|
||||||
|
@ -2015,6 +2029,9 @@
|
||||||
},
|
},
|
||||||
"filter_replacement": {
|
"filter_replacement": {
|
||||||
"name": "Zamjena filtra"
|
"name": "Zamjena filtra"
|
||||||
|
},
|
||||||
|
"power-state": {
|
||||||
|
"name": "Power State"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"button": {
|
"button": {
|
||||||
|
|
|
@ -940,6 +940,13 @@
|
||||||
"high": "Alto"
|
"high": "Alto"
|
||||||
},
|
},
|
||||||
"name": "Livello di umidità"
|
"name": "Livello di umidità"
|
||||||
|
},
|
||||||
|
"mach_modes_wh": {
|
||||||
|
"state": {
|
||||||
|
"eco": "Eco",
|
||||||
|
"max": "Max",
|
||||||
|
"bps": "BPS"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"select": {
|
"select": {
|
||||||
|
@ -1829,6 +1836,13 @@
|
||||||
"position_5": "Fissa - Posizione 5",
|
"position_5": "Fissa - Posizione 5",
|
||||||
"swing": "Swing"
|
"swing": "Swing"
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"mach_modes_wh": {
|
||||||
|
"state": {
|
||||||
|
"eco": "Eco",
|
||||||
|
"max": "Max",
|
||||||
|
"bps": "BPS"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"switch": {
|
"switch": {
|
||||||
|
@ -2028,6 +2042,9 @@
|
||||||
},
|
},
|
||||||
"filter_replacement": {
|
"filter_replacement": {
|
||||||
"name": "Sostituzione filtro"
|
"name": "Sostituzione filtro"
|
||||||
|
},
|
||||||
|
"power-state": {
|
||||||
|
"name": "Power State"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"button": {
|
"button": {
|
||||||
|
|
|
@ -931,6 +931,13 @@
|
||||||
"high": "Hoog"
|
"high": "Hoog"
|
||||||
},
|
},
|
||||||
"name": "Vochtigheidsniveau"
|
"name": "Vochtigheidsniveau"
|
||||||
|
},
|
||||||
|
"mach_modes_wh": {
|
||||||
|
"state": {
|
||||||
|
"eco": "Eco",
|
||||||
|
"max": "Max",
|
||||||
|
"bps": "BPS"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"select": {
|
"select": {
|
||||||
|
@ -1816,6 +1823,13 @@
|
||||||
"position_5": "Vast - Positie 5",
|
"position_5": "Vast - Positie 5",
|
||||||
"swing": "Draaiend"
|
"swing": "Draaiend"
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"mach_modes_wh": {
|
||||||
|
"state": {
|
||||||
|
"eco": "Eco",
|
||||||
|
"max": "Max",
|
||||||
|
"bps": "BPS"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"switch": {
|
"switch": {
|
||||||
|
@ -2015,6 +2029,9 @@
|
||||||
},
|
},
|
||||||
"filter_replacement": {
|
"filter_replacement": {
|
||||||
"name": "Filter vervangen"
|
"name": "Filter vervangen"
|
||||||
|
},
|
||||||
|
"power-state": {
|
||||||
|
"name": "Power State"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"button": {
|
"button": {
|
||||||
|
|
|
@ -931,6 +931,13 @@
|
||||||
"high": "Wysokie"
|
"high": "Wysokie"
|
||||||
},
|
},
|
||||||
"name": "Poziom wilgotności"
|
"name": "Poziom wilgotności"
|
||||||
|
},
|
||||||
|
"mach_modes_wh": {
|
||||||
|
"state": {
|
||||||
|
"eco": "Eco",
|
||||||
|
"max": "Max",
|
||||||
|
"bps": "BPS"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"select": {
|
"select": {
|
||||||
|
@ -1816,6 +1823,13 @@
|
||||||
"position_5": "Stały - Pozycja 5",
|
"position_5": "Stały - Pozycja 5",
|
||||||
"swing": "Swing"
|
"swing": "Swing"
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"mach_modes_wh": {
|
||||||
|
"state": {
|
||||||
|
"eco": "Eco",
|
||||||
|
"max": "Max",
|
||||||
|
"bps": "BPS"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"switch": {
|
"switch": {
|
||||||
|
@ -2015,6 +2029,9 @@
|
||||||
},
|
},
|
||||||
"filter_replacement": {
|
"filter_replacement": {
|
||||||
"name": "Wymiana filtra"
|
"name": "Wymiana filtra"
|
||||||
|
},
|
||||||
|
"power-state": {
|
||||||
|
"name": "Power State"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"button": {
|
"button": {
|
||||||
|
|
|
@ -931,6 +931,13 @@
|
||||||
"high": "Alta"
|
"high": "Alta"
|
||||||
},
|
},
|
||||||
"name": "Nível de humidade"
|
"name": "Nível de humidade"
|
||||||
|
},
|
||||||
|
"mach_modes_wh": {
|
||||||
|
"state": {
|
||||||
|
"eco": "Eco",
|
||||||
|
"max": "Max",
|
||||||
|
"bps": "BPS"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"select": {
|
"select": {
|
||||||
|
@ -1816,6 +1823,13 @@
|
||||||
"position_5": "Fixa - Posição 5",
|
"position_5": "Fixa - Posição 5",
|
||||||
"swing": "Oscilação"
|
"swing": "Oscilação"
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"mach_modes_wh": {
|
||||||
|
"state": {
|
||||||
|
"eco": "Eco",
|
||||||
|
"max": "Max",
|
||||||
|
"bps": "BPS"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"switch": {
|
"switch": {
|
||||||
|
@ -2015,6 +2029,9 @@
|
||||||
},
|
},
|
||||||
"filter_replacement": {
|
"filter_replacement": {
|
||||||
"name": "Substituição do filtro"
|
"name": "Substituição do filtro"
|
||||||
|
},
|
||||||
|
"power-state": {
|
||||||
|
"name": "Power State"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"button": {
|
"button": {
|
||||||
|
|
|
@ -931,6 +931,13 @@
|
||||||
"high": "Crescută"
|
"high": "Crescută"
|
||||||
},
|
},
|
||||||
"name": "Nivelul de umiditate"
|
"name": "Nivelul de umiditate"
|
||||||
|
},
|
||||||
|
"mach_modes_wh": {
|
||||||
|
"state": {
|
||||||
|
"eco": "Eco",
|
||||||
|
"max": "Max",
|
||||||
|
"bps": "BPS"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"select": {
|
"select": {
|
||||||
|
@ -1816,6 +1823,13 @@
|
||||||
"position_5": "Fix - Poziție 5",
|
"position_5": "Fix - Poziție 5",
|
||||||
"swing": "Baleiere"
|
"swing": "Baleiere"
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"mach_modes_wh": {
|
||||||
|
"state": {
|
||||||
|
"eco": "Eco",
|
||||||
|
"max": "Max",
|
||||||
|
"bps": "BPS"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"switch": {
|
"switch": {
|
||||||
|
@ -2015,6 +2029,9 @@
|
||||||
},
|
},
|
||||||
"filter_replacement": {
|
"filter_replacement": {
|
||||||
"name": "Înlocuirea filtrului"
|
"name": "Înlocuirea filtrului"
|
||||||
|
},
|
||||||
|
"power-state": {
|
||||||
|
"name": "Power State"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"button": {
|
"button": {
|
||||||
|
|
|
@ -931,6 +931,13 @@
|
||||||
"high": "Высок."
|
"high": "Высок."
|
||||||
},
|
},
|
||||||
"name": "Уровень влажности"
|
"name": "Уровень влажности"
|
||||||
|
},
|
||||||
|
"mach_modes_wh": {
|
||||||
|
"state": {
|
||||||
|
"eco": "Eco",
|
||||||
|
"max": "Max",
|
||||||
|
"bps": "BPS"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"select": {
|
"select": {
|
||||||
|
@ -1816,6 +1823,13 @@
|
||||||
"position_5": "Фиксированное - Позиция 5",
|
"position_5": "Фиксированное - Позиция 5",
|
||||||
"swing": "Качание"
|
"swing": "Качание"
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"mach_modes_wh": {
|
||||||
|
"state": {
|
||||||
|
"eco": "Eco",
|
||||||
|
"max": "Max",
|
||||||
|
"bps": "BPS"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"switch": {
|
"switch": {
|
||||||
|
@ -2015,6 +2029,9 @@
|
||||||
},
|
},
|
||||||
"filter_replacement": {
|
"filter_replacement": {
|
||||||
"name": "Замена фильтра"
|
"name": "Замена фильтра"
|
||||||
|
},
|
||||||
|
"power-state": {
|
||||||
|
"name": "Power State"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"button": {
|
"button": {
|
||||||
|
|
|
@ -931,6 +931,13 @@
|
||||||
"high": "Vysoké"
|
"high": "Vysoké"
|
||||||
},
|
},
|
||||||
"name": "Úroveň vlhkosti"
|
"name": "Úroveň vlhkosti"
|
||||||
|
},
|
||||||
|
"mach_modes_wh": {
|
||||||
|
"state": {
|
||||||
|
"eco": "Eco",
|
||||||
|
"max": "Max",
|
||||||
|
"bps": "BPS"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"select": {
|
"select": {
|
||||||
|
@ -1816,6 +1823,13 @@
|
||||||
"position_5": "Pevný - Poloha 5",
|
"position_5": "Pevný - Poloha 5",
|
||||||
"swing": "Otáčanie"
|
"swing": "Otáčanie"
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"mach_modes_wh": {
|
||||||
|
"state": {
|
||||||
|
"eco": "Eco",
|
||||||
|
"max": "Max",
|
||||||
|
"bps": "BPS"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"switch": {
|
"switch": {
|
||||||
|
@ -2015,6 +2029,9 @@
|
||||||
},
|
},
|
||||||
"filter_replacement": {
|
"filter_replacement": {
|
||||||
"name": "Výmena filtra"
|
"name": "Výmena filtra"
|
||||||
|
},
|
||||||
|
"power-state": {
|
||||||
|
"name": "Power State"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"button": {
|
"button": {
|
||||||
|
|
|
@ -931,6 +931,13 @@
|
||||||
"high": "High"
|
"high": "High"
|
||||||
},
|
},
|
||||||
"name": "Nivo vlažnosti"
|
"name": "Nivo vlažnosti"
|
||||||
|
},
|
||||||
|
"mach_modes_wh": {
|
||||||
|
"state": {
|
||||||
|
"eco": "Eco",
|
||||||
|
"max": "Max",
|
||||||
|
"bps": "BPS"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"select": {
|
"select": {
|
||||||
|
@ -1816,6 +1823,13 @@
|
||||||
"position_5": "Fiksno - Položaj 5",
|
"position_5": "Fiksno - Položaj 5",
|
||||||
"swing": "Nihanje"
|
"swing": "Nihanje"
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"mach_modes_wh": {
|
||||||
|
"state": {
|
||||||
|
"eco": "Eco",
|
||||||
|
"max": "Max",
|
||||||
|
"bps": "BPS"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"switch": {
|
"switch": {
|
||||||
|
@ -2015,6 +2029,9 @@
|
||||||
},
|
},
|
||||||
"filter_replacement": {
|
"filter_replacement": {
|
||||||
"name": "Menjava filtra"
|
"name": "Menjava filtra"
|
||||||
|
},
|
||||||
|
"power-state": {
|
||||||
|
"name": "Power State"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"button": {
|
"button": {
|
||||||
|
|
|
@ -931,6 +931,13 @@
|
||||||
"high": "Visoka"
|
"high": "Visoka"
|
||||||
},
|
},
|
||||||
"name": "Nivo vlage"
|
"name": "Nivo vlage"
|
||||||
|
},
|
||||||
|
"mach_modes_wh": {
|
||||||
|
"state": {
|
||||||
|
"eco": "Eco",
|
||||||
|
"max": "Max",
|
||||||
|
"bps": "BPS"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"select": {
|
"select": {
|
||||||
|
@ -1816,6 +1823,13 @@
|
||||||
"position_5": "Fiksiran - Položaj 5",
|
"position_5": "Fiksiran - Položaj 5",
|
||||||
"swing": "Njihanje"
|
"swing": "Njihanje"
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"mach_modes_wh": {
|
||||||
|
"state": {
|
||||||
|
"eco": "Eco",
|
||||||
|
"max": "Max",
|
||||||
|
"bps": "BPS"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"switch": {
|
"switch": {
|
||||||
|
@ -2015,6 +2029,9 @@
|
||||||
},
|
},
|
||||||
"filter_replacement": {
|
"filter_replacement": {
|
||||||
"name": "Zamena filtera"
|
"name": "Zamena filtera"
|
||||||
|
},
|
||||||
|
"power-state": {
|
||||||
|
"name": "Power State"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"button": {
|
"button": {
|
||||||
|
|
|
@ -931,6 +931,13 @@
|
||||||
"high": "Yüksek"
|
"high": "Yüksek"
|
||||||
},
|
},
|
||||||
"name": "Nem seviyesi"
|
"name": "Nem seviyesi"
|
||||||
|
},
|
||||||
|
"mach_modes_wh": {
|
||||||
|
"state": {
|
||||||
|
"eco": "Eco",
|
||||||
|
"max": "Max",
|
||||||
|
"bps": "BPS"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"select": {
|
"select": {
|
||||||
|
@ -1816,6 +1823,13 @@
|
||||||
"position_5": "Sabit - Pozisyon 5",
|
"position_5": "Sabit - Pozisyon 5",
|
||||||
"swing": "Salınım"
|
"swing": "Salınım"
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"mach_modes_wh": {
|
||||||
|
"state": {
|
||||||
|
"eco": "Eco",
|
||||||
|
"max": "Max",
|
||||||
|
"bps": "BPS"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"switch": {
|
"switch": {
|
||||||
|
@ -2015,6 +2029,9 @@
|
||||||
},
|
},
|
||||||
"filter_replacement": {
|
"filter_replacement": {
|
||||||
"name": "Filtre değişimi"
|
"name": "Filtre değişimi"
|
||||||
|
},
|
||||||
|
"power-state": {
|
||||||
|
"name": "Power State"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"button": {
|
"button": {
|
||||||
|
|
|
@ -924,6 +924,13 @@
|
||||||
"high": "高"
|
"high": "高"
|
||||||
},
|
},
|
||||||
"name": "湿度水平"
|
"name": "湿度水平"
|
||||||
|
},
|
||||||
|
"mach_modes_wh": {
|
||||||
|
"state": {
|
||||||
|
"eco": "Eco",
|
||||||
|
"max": "Max",
|
||||||
|
"bps": "BPS"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"select": {
|
"select": {
|
||||||
|
@ -1802,6 +1809,13 @@
|
||||||
"position_5": "固定 - 位置 5",
|
"position_5": "固定 - 位置 5",
|
||||||
"swing": "摆动"
|
"swing": "摆动"
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"mach_modes_wh": {
|
||||||
|
"state": {
|
||||||
|
"eco": "Eco",
|
||||||
|
"max": "Max",
|
||||||
|
"bps": "BPS"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"switch": {
|
"switch": {
|
||||||
|
@ -2001,6 +2015,9 @@
|
||||||
},
|
},
|
||||||
"filter_replacement": {
|
"filter_replacement": {
|
||||||
"name": "更换过滤器"
|
"name": "更换过滤器"
|
||||||
|
},
|
||||||
|
"power-state": {
|
||||||
|
"name": "Power State"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"button": {
|
"button": {
|
||||||
|
|
Loading…
Reference in a new issue