Compare commits

...

39 Commits
v0.9 ... main

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
Andre Basche
5e17081feb Add Stain Type #105 2023-10-02 03:33:45 +02:00
Andre Basche
020ab4b452 Update supported devices 2023-09-29 22:45:41 +02:00
Andre Basche
4e1fd22aa5 Fix build 2023-09-29 19:42:36 +02:00
Andre Basche
646fa2fcd6 List supported number 2023-09-29 18:55:02 +02:00
Andre Basche
6516f87127 Add some sensors 2023-09-29 17:24:21 +02:00
Andre Basche
f02ec780a2 Update translations 2023-09-29 17:21:07 +02:00
Andre Basche
d560e9a664 Update supported devices 2023-09-29 15:51:05 +02:00
Andre Basche
3924c6ed77 Fix issues from refactoring 2023-07-24 21:37:48 +02:00
Andre Basche
2acc6225c4 Fix failed build 2023-07-24 01:56:15 +02:00
Andre Basche
9d6b8297b2 Add mypy check, add missing types and fix type issues 2023-07-23 21:53:00 +02:00
Andre Basche
f0fb5742a4 Add compatibility for more fridge models #93 2023-07-19 23:57:33 +02:00
Andre Basche
8d6a6a509b Bump version 2023-07-19 19:59:40 +02:00
Andre Basche
49ab7f605b Add compatibility documentation 2023-07-14 00:21:21 +02:00
56 changed files with 6200 additions and 2086 deletions

View File

@ -13,7 +13,9 @@ jobs:
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
python-version: ["3.10", "3.11"] include:
- home-assistant: "2024.1.0"
python-version: "3.11"
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
@ -23,13 +25,19 @@ 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 flake8 pylint black python -m pip install -r requirements.txt
python -m pip install -r requirements_dev.txt
- name: Lint with flake8 - name: Lint with flake8
run: | run: |
# stop the build if there are Python syntax errors or undefined names # stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=88 --statistics flake8 . --count --exit-zero --max-complexity=10 --max-line-length=88 --statistics
- name: Type check with mypy
run: |
touch "$(python -c 'import inspect, homeassistant, os; print(os.path.dirname(inspect.getfile(homeassistant)))')"/py.typed
mypy -p custom_components.hon
# - name: Analysing the code with pylint # - name: Analysing the code with pylint
# run: | # run: |
# pylint --max-line-length 88 $(git ls-files '*.py') # pylint --max-line-length 88 $(git ls-files '*.py')

1187
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 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
@ -25,13 +25,15 @@ CONFIG_SCHEMA = vol.Schema(
) )
async def async_setup_entry(hass: HomeAssistantType, entry: ConfigEntry): async def async_setup_entry(hass: HomeAssistantType, entry: ConfigEntry) -> bool:
session = aiohttp_client.async_get_clientsession(hass) session = aiohttp_client.async_get_clientsession(hass)
if (config_dir := hass.config.config_dir) is None:
raise ValueError("Missing Config Dir")
hon = await Hon( hon = await Hon(
entry.data["email"], entry.data["email"],
entry.data["password"], entry.data["password"],
session=session, session=session,
test_data_path=Path(hass.config.config_dir), test_data_path=Path(config_dir),
).create() ).create()
hass.data.setdefault(DOMAIN, {}) hass.data.setdefault(DOMAIN, {})
hass.data[DOMAIN][entry.unique_id] = hon hass.data[DOMAIN][entry.unique_id] = hon
@ -44,7 +46,7 @@ async def async_setup_entry(hass: HomeAssistantType, entry: ConfigEntry):
return True return True
async def async_unload_entry(hass, entry: ConfigEntry) -> bool: async def async_unload_entry(hass: HomeAssistantType, entry: ConfigEntry) -> bool:
unload = await hass.config_entries.async_unload_platforms(entry, PLATFORMS) unload = await hass.config_entries.async_unload_platforms(entry, PLATFORMS)
if unload: if unload:
if not hass.data[DOMAIN]: if not hass.data[DOMAIN]:

View File

@ -8,6 +8,8 @@ from homeassistant.components.binary_sensor import (
) )
from homeassistant.config_entries import ConfigEntry from homeassistant.config_entries import ConfigEntry
from homeassistant.core import callback from homeassistant.core import callback
from homeassistant.helpers.entity_platform import AddEntitiesCallback
from homeassistant.helpers.typing import HomeAssistantType
from .const import DOMAIN from .const import DOMAIN
from .hon import HonEntity, unique_entities from .hon import HonEntity, unique_entities
@ -15,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 = ""
@ -208,7 +210,7 @@ BINARY_SENSORS: dict[str, tuple[HonBinarySensorEntityDescription, ...]] = {
), ),
"REF": ( "REF": (
HonBinarySensorEntityDescription( HonBinarySensorEntityDescription(
key="quickModeZ2", key="quickModeZ1",
name="Super Cool", name="Super Cool",
icon="mdi:snowflake", icon="mdi:snowflake",
device_class=BinarySensorDeviceClass.RUNNING, device_class=BinarySensorDeviceClass.RUNNING,
@ -216,7 +218,7 @@ BINARY_SENSORS: dict[str, tuple[HonBinarySensorEntityDescription, ...]] = {
translation_key="super_cool", translation_key="super_cool",
), ),
HonBinarySensorEntityDescription( HonBinarySensorEntityDescription(
key="quickModeZ1", key="quickModeZ2",
name="Super Freeze", name="Super Freeze",
icon="mdi:snowflake-variant", icon="mdi:snowflake-variant",
device_class=BinarySensorDeviceClass.RUNNING, device_class=BinarySensorDeviceClass.RUNNING,
@ -225,19 +227,35 @@ BINARY_SENSORS: dict[str, tuple[HonBinarySensorEntityDescription, ...]] = {
), ),
HonBinarySensorEntityDescription( HonBinarySensorEntityDescription(
key="doorStatusZ1", key="doorStatusZ1",
name="Door Status Freezer", name="Door1 Status Fridge",
device_class=BinarySensorDeviceClass.DOOR, device_class=BinarySensorDeviceClass.DOOR,
icon="mdi:fridge-top", icon="mdi:fridge-top",
on_value=1, on_value=1,
translation_key="fridge_door",
),
HonBinarySensorEntityDescription(
key="door2StatusZ1",
name="Door2 Status Fridge",
icon="mdi:fridge-top",
device_class=BinarySensorDeviceClass.DOOR,
on_value=1,
translation_key="fridge_door",
),
HonBinarySensorEntityDescription(
key="doorStatusZ2",
name="Door1 Status Freezer",
icon="mdi:fridge-bottom",
device_class=BinarySensorDeviceClass.DOOR,
on_value=1,
translation_key="freezer_door", translation_key="freezer_door",
), ),
HonBinarySensorEntityDescription( HonBinarySensorEntityDescription(
key="door2StatusZ1", key="door2StatusZ2",
name="Door Status Fridge", name="Door2 Status Freezer",
icon="mdi:fridge-bottom", icon="mdi:fridge-bottom",
device_class=BinarySensorDeviceClass.DOOR, device_class=BinarySensorDeviceClass.DOOR,
on_value=1, on_value=1,
translation_key="fridge_door", translation_key="freezer_door",
), ),
HonBinarySensorEntityDescription( HonBinarySensorEntityDescription(
key="intelligenceMode", key="intelligenceMode",
@ -271,7 +289,9 @@ BINARY_SENSORS: dict[str, tuple[HonBinarySensorEntityDescription, ...]] = {
BINARY_SENSORS["WD"] = unique_entities(BINARY_SENSORS["WM"], BINARY_SENSORS["TD"]) BINARY_SENSORS["WD"] = unique_entities(BINARY_SENSORS["WM"], BINARY_SENSORS["TD"])
async def async_setup_entry(hass, entry: ConfigEntry, async_add_entities) -> None: async def async_setup_entry(
hass: HomeAssistantType, entry: ConfigEntry, async_add_entities: AddEntitiesCallback
) -> None:
entities = [] entities = []
for device in hass.data[DOMAIN][entry.unique_id].appliances: for device in hass.data[DOMAIN][entry.unique_id].appliances:
for description in BINARY_SENSORS.get(device.appliance_type, []): for description in BINARY_SENSORS.get(device.appliance_type, []):
@ -288,13 +308,13 @@ class HonBinarySensorEntity(HonEntity, BinarySensorEntity):
@property @property
def is_on(self) -> bool: def is_on(self) -> bool:
return ( return bool(
self._device.get(self.entity_description.key, "") self._device.get(self.entity_description.key, "")
== self.entity_description.on_value == self.entity_description.on_value
) )
@callback @callback
def _handle_coordinator_update(self, update=True) -> None: def _handle_coordinator_update(self, update: bool = True) -> None:
self._attr_native_value = ( self._attr_native_value = (
self._device.get(self.entity_description.key, "") self._device.get(self.entity_description.key, "")
== self.entity_description.on_value == self.entity_description.on_value

View File

@ -5,10 +5,13 @@ from homeassistant.components import persistent_notification
from homeassistant.components.button import ButtonEntityDescription, ButtonEntity from homeassistant.components.button import ButtonEntityDescription, ButtonEntity
from homeassistant.config_entries import ConfigEntry from homeassistant.config_entries import ConfigEntry
from homeassistant.helpers.entity import EntityCategory from homeassistant.helpers.entity import EntityCategory
from homeassistant.helpers.entity_platform import AddEntitiesCallback
from homeassistant.helpers.typing import HomeAssistantType
from pyhon.appliance import HonAppliance from pyhon.appliance import HonAppliance
from .const import DOMAIN from .const import DOMAIN
from .hon import HonEntity from .hon import HonEntity
from .typedefs import HonButtonType
_LOGGER = logging.getLogger(__name__) _LOGGER = logging.getLogger(__name__)
@ -38,8 +41,10 @@ BUTTONS: dict[str, tuple[ButtonEntityDescription, ...]] = {
} }
async def async_setup_entry(hass, entry: ConfigEntry, async_add_entities) -> None: async def async_setup_entry(
entities = [] hass: HomeAssistantType, entry: ConfigEntry, async_add_entities: AddEntitiesCallback
) -> None:
entities: list[HonButtonType] = []
for device in hass.data[DOMAIN][entry.unique_id].appliances: for device in hass.data[DOMAIN][entry.unique_id].appliances:
for description in BUTTONS.get(device.appliance_type, []): for description in BUTTONS.get(device.appliance_type, []):
if not device.commands.get(description.key): if not device.commands.get(description.key):
@ -70,7 +75,9 @@ class HonButtonEntity(HonEntity, ButtonEntity):
class HonDeviceInfo(HonEntity, ButtonEntity): class HonDeviceInfo(HonEntity, ButtonEntity):
def __init__(self, hass, entry, device: HonAppliance) -> None: def __init__(
self, hass: HomeAssistantType, entry: ConfigEntry, device: HonAppliance
) -> None:
super().__init__(hass, entry, device) super().__init__(hass, entry, device)
self._attr_unique_id = f"{super().unique_id}_show_device_info" self._attr_unique_id = f"{super().unique_id}_show_device_info"
@ -93,7 +100,9 @@ class HonDeviceInfo(HonEntity, ButtonEntity):
class HonDataArchive(HonEntity, ButtonEntity): class HonDataArchive(HonEntity, ButtonEntity):
def __init__(self, hass, entry, device: HonAppliance) -> None: def __init__(
self, hass: HomeAssistantType, entry: ConfigEntry, device: HonAppliance
) -> None:
super().__init__(hass, entry, device) super().__init__(hass, entry, device)
self._attr_unique_id = f"{super().unique_id}_create_data_archive" self._attr_unique_id = f"{super().unique_id}_create_data_archive"
@ -104,7 +113,9 @@ class HonDataArchive(HonEntity, ButtonEntity):
self._attr_entity_registry_enabled_default = False self._attr_entity_registry_enabled_default = False
async def async_press(self) -> None: async def async_press(self) -> None:
path = Path(self._hass.config.config_dir) / "www" if (config_dir := self._hass.config.config_dir) is None:
raise ValueError("Missing Config Dir")
path = Path(config_dir) / "www"
data = await self._device.data_archive(path) data = await self._device.data_archive(path)
title = f"{self._device.nick_name} Data Archive" title = f"{self._device.nick_name} Data Archive"
text = ( text = (

View File

@ -1,5 +1,6 @@
import logging import logging
from dataclasses import dataclass from dataclasses import dataclass
from typing import Any
from homeassistant.components.climate import ( from homeassistant.components.climate import (
ClimateEntity, ClimateEntity,
@ -16,10 +17,13 @@ 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.typing import HomeAssistantType
from pyhon.appliance import HonAppliance from pyhon.appliance import HonAppliance
from pyhon.parameter.range import HonParameterRange
from .const import HON_HVAC_MODE, HON_FAN, DOMAIN, HON_HVAC_PROGRAM from .const import HON_HVAC_MODE, HON_FAN, DOMAIN, HON_HVAC_PROGRAM
from .hon import HonEntity from .hon import HonEntity
@ -27,17 +31,19 @@ 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 = "auto" mode: HVACMode = HVACMode.AUTO
CLIMATES = { CLIMATES: dict[
str, tuple[HonACClimateEntityDescription | HonClimateEntityDescription, ...]
] = {
"AC": ( "AC": (
HonACClimateEntityDescription( HonACClimateEntityDescription(
key="settings", key="settings",
@ -61,6 +67,13 @@ CLIMATES = {
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(
@ -90,8 +103,11 @@ CLIMATES = {
} }
async def async_setup_entry(hass, entry: ConfigEntry, async_add_entities) -> None: async def async_setup_entry(
hass: HomeAssistantType, entry: ConfigEntry, async_add_entities: AddEntitiesCallback
) -> None:
entities = [] entities = []
entity: HonClimateEntity | HonACClimateEntity
for device in hass.data[DOMAIN][entry.unique_id].appliances: for device in hass.data[DOMAIN][entry.unique_id].appliances:
for description in CLIMATES.get(device.appliance_type, []): for description in CLIMATES.get(device.appliance_type, []):
if isinstance(description, HonACClimateEntityDescription): if isinstance(description, HonACClimateEntityDescription):
@ -103,17 +119,25 @@ async def async_setup_entry(hass, entry: ConfigEntry, async_add_entities) -> Non
continue continue
entity = HonClimateEntity(hass, entry, device, description) entity = HonClimateEntity(hass, entry, device, description)
else: else:
continue continue # type: ignore[unreachable]
await entity.coordinator.async_config_entry_first_refresh() await entity.coordinator.async_config_entry_first_refresh()
entities.append(entity) entities.append(entity)
async_add_entities(entities) async_add_entities(entities)
class HonACClimateEntity(HonEntity, ClimateEntity): class HonACClimateEntity(HonEntity, ClimateEntity):
def __init__(self, hass, entry, device: HonAppliance, description) -> None: entity_description: HonACClimateEntityDescription
def __init__(
self,
hass: HomeAssistantType,
entry: ConfigEntry,
device: HonAppliance,
description: HonACClimateEntityDescription,
) -> 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]
@ -138,37 +162,38 @@ class HonACClimateEntity(HonEntity, ClimateEntity):
self._handle_coordinator_update(update=False) self._handle_coordinator_update(update=False)
def _set_temperature_bound(self) -> None: def _set_temperature_bound(self) -> None:
self._attr_target_temperature_step = self._device.settings[ temperature = self._device.settings["settings.tempSel"]
"settings.tempSel" if not isinstance(temperature, HonParameterRange):
].step raise ValueError
self._attr_max_temp = self._device.settings["settings.tempSel"].max self._attr_max_temp = temperature.max
self._attr_min_temp = self._device.settings["settings.tempSel"].min self._attr_target_temperature_step = temperature.step
self._attr_min_temp = temperature.min
@property @property
def target_temperature(self) -> int | None: def target_temperature(self) -> float | None:
"""Return the temperature we try to reach.""" """Return the temperature we try to reach."""
return self._device.get("tempSel") return self._device.get("tempSel", 0.0)
@property @property
def current_temperature(self) -> float | None: def current_temperature(self) -> float | None:
"""Return the current temperature.""" """Return the current temperature."""
return self._device.get("tempIndoor") return self._device.get("tempIndoor", 0.0)
async def async_set_temperature(self, **kwargs): async def async_set_temperature(self, **kwargs: Any) -> None:
if (temperature := kwargs.get(ATTR_TEMPERATURE)) is None: if (temperature := kwargs.get(ATTR_TEMPERATURE)) is None:
return False return
self._device.settings["settings.tempSel"].value = str(int(temperature)) self._device.settings["settings.tempSel"].value = str(int(temperature))
await self._device.commands["settings"].send() await self._device.commands["settings"].send()
self.async_write_ha_state() self.async_write_ha_state()
@property @property
def hvac_mode(self) -> HVACMode | str | None: def hvac_mode(self) -> HVACMode:
if self._device.get("onOffStatus") == 0: if self._device.get("onOffStatus") == 0:
return HVACMode.OFF return HVACMode.OFF
else: else:
return HON_HVAC_MODE[self._device.get("machMode")] return HON_HVAC_MODE[self._device.get("machMode")]
async def async_set_hvac_mode(self, hvac_mode): async def async_set_hvac_mode(self, hvac_mode: HVACMode) -> None:
self._attr_hvac_mode = hvac_mode self._attr_hvac_mode = hvac_mode
if hvac_mode == HVACMode.OFF: if hvac_mode == HVACMode.OFF:
await self._device.commands["stopProgram"].send() await self._device.commands["stopProgram"].send()
@ -215,7 +240,7 @@ class HonACClimateEntity(HonEntity, ClimateEntity):
"""Return the fan setting.""" """Return the fan setting."""
return HON_FAN[self._device.get("windSpeed")] return HON_FAN[self._device.get("windSpeed")]
async def async_set_fan_mode(self, fan_mode): async def async_set_fan_mode(self, fan_mode: str) -> None:
fan_modes = {} fan_modes = {}
for mode in reversed(self._device.settings["settings.windSpeed"].values): for mode in reversed(self._device.settings["settings.windSpeed"].values):
fan_modes[HON_FAN[int(mode)]] = mode fan_modes[HON_FAN[int(mode)]] = mode
@ -231,14 +256,13 @@ class HonACClimateEntity(HonEntity, ClimateEntity):
vertical = self._device.get("windDirectionVertical") vertical = self._device.get("windDirectionVertical")
if horizontal == 7 and vertical == 8: if horizontal == 7 and vertical == 8:
return SWING_BOTH return SWING_BOTH
elif horizontal == 7: if horizontal == 7:
return SWING_HORIZONTAL return SWING_HORIZONTAL
elif vertical == 8: if vertical == 8:
return SWING_VERTICAL return SWING_VERTICAL
else:
return SWING_OFF return SWING_OFF
async def async_set_swing_mode(self, swing_mode): async def async_set_swing_mode(self, swing_mode: str) -> None:
horizontal = self._device.settings["settings.windDirectionHorizontal"] horizontal = self._device.settings["settings.windDirectionHorizontal"]
vertical = self._device.settings["settings.windDirectionVertical"] vertical = self._device.settings["settings.windDirectionVertical"]
if swing_mode in [SWING_BOTH, SWING_HORIZONTAL]: if swing_mode in [SWING_BOTH, SWING_HORIZONTAL]:
@ -254,13 +278,7 @@ class HonACClimateEntity(HonEntity, ClimateEntity):
self.async_write_ha_state() self.async_write_ha_state()
@callback @callback
def _handle_coordinator_update(self, update=True) -> None: def _handle_coordinator_update(self, update: bool = True) -> None:
self._attr_target_temperature = self.target_temperature
self._attr_current_temperature = self.current_temperature
self._attr_hvac_mode = self.hvac_mode
self._attr_fan_modes = self.fan_modes
self._attr_fan_mode = self.fan_mode
self._attr_swing_mode = self.swing_mode
if update: if update:
self.async_write_ha_state() self.async_write_ha_state()
@ -268,16 +286,18 @@ class HonACClimateEntity(HonEntity, ClimateEntity):
class HonClimateEntity(HonEntity, ClimateEntity): class HonClimateEntity(HonEntity, ClimateEntity):
entity_description: HonClimateEntityDescription entity_description: HonClimateEntityDescription
def __init__(self, hass, entry, device: HonAppliance, description) -> None: def __init__(
self,
hass: HomeAssistantType,
entry: ConfigEntry,
device: HonAppliance,
description: HonClimateEntityDescription,
) -> 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]
@ -288,41 +308,51 @@ class HonClimateEntity(HonEntity, ClimateEntity):
for mode, data in device.commands["startProgram"].categories.items(): for mode, data in device.commands["startProgram"].categories.items():
if mode not in data.parameters["program"].values: if mode not in data.parameters["program"].values:
continue continue
if zone := data.parameters.get("zone"): if (zone := data.parameters.get("zone")) and isinstance(
self.entity_description.name, str
):
if self.entity_description.name.lower() in zone.values: if self.entity_description.name.lower() in zone.values:
modes.append(mode) modes.append(mode)
else: else:
modes.append(mode) modes.append(mode)
if modes:
self._attr_supported_features = (
ClimateEntityFeature.TARGET_TEMPERATURE
| ClimateEntityFeature.PRESET_MODE
)
self._attr_preset_modes = modes 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)
@property @property
def target_temperature(self) -> float | None: def target_temperature(self) -> float | None:
"""Return the temperature we try to reach.""" """Return the temperature we try to reach."""
return self._device.get(self.entity_description.key) return self._device.get(self.entity_description.key, 0.0)
@property @property
def current_temperature(self) -> float | None: def current_temperature(self) -> float | None:
"""Return the current temperature.""" """Return the current temperature."""
temp_key = self.entity_description.key.split(".")[-1].replace("Sel", "") temp_key = self.entity_description.key.split(".")[-1].replace("Sel", "")
return self._device.get(temp_key) return self._device.get(temp_key, 0.0)
async def async_set_temperature(self, **kwargs): async def async_set_temperature(self, **kwargs: Any) -> None:
if (temperature := kwargs.get(ATTR_TEMPERATURE)) is None: if (temperature := kwargs.get(ATTR_TEMPERATURE)) is None:
return False return
self._device.settings[self.entity_description.key].value = str(int(temperature)) self._device.settings[self.entity_description.key].value = str(int(temperature))
await self._device.commands["settings"].send() await self._device.commands["settings"].send()
self.async_write_ha_state() self.async_write_ha_state()
@property @property
def hvac_mode(self) -> HVACMode | str | None: def hvac_mode(self) -> HVACMode:
if self._device.get("onOffStatus") == 0: if self._device.get("onOffStatus") == 0:
return HVACMode.OFF return HVACMode.OFF
else: else:
return self.entity_description.mode return self.entity_description.mode
async def async_set_hvac_mode(self, hvac_mode): async def async_set_hvac_mode(self, hvac_mode: HVACMode) -> None:
if len(self.hvac_modes) <= 1: if len(self.hvac_modes) <= 1:
return return
if hvac_mode == HVACMode.OFF: if hvac_mode == HVACMode.OFF:
@ -344,30 +374,34 @@ class HonClimateEntity(HonEntity, ClimateEntity):
async def async_set_preset_mode(self, preset_mode: str) -> None: async def async_set_preset_mode(self, preset_mode: str) -> None:
"""Set the new preset mode.""" """Set the new preset mode."""
command = "stopProgram" if preset_mode == "no_mode" else "startProgram" if preset_mode == "no_mode" and HVACMode.OFF in self.hvac_modes:
command = "stopProgram"
elif preset_mode == "no_mode":
command = "settings"
self._device.commands["settings"].reset()
else:
command = "startProgram"
if program := self._device.settings.get(f"{command}.program"): if program := self._device.settings.get(f"{command}.program"):
program.value = preset_mode program.value = preset_mode
if zone := self._device.settings.get(f"{command}.zone"): zone = self._device.settings.get(f"{command}.zone")
if zone and isinstance(self.entity_description.name, str):
zone.value = self.entity_description.name.lower() zone.value = self.entity_description.name.lower()
self._device.sync_command(command, "settings") self._device.sync_command(command, "settings")
self._set_temperature_bound() self._set_temperature_bound()
self._attr_preset_mode = preset_mode
await self.coordinator.async_refresh() await self.coordinator.async_refresh()
await self._device.commands[command].send() await self._device.commands[command].send()
self._attr_preset_mode = preset_mode
self.async_write_ha_state() self.async_write_ha_state()
def _set_temperature_bound(self): def _set_temperature_bound(self) -> None:
self._attr_target_temperature_step = self._device.settings[ temperature = self._device.settings[self.entity_description.key]
self.entity_description.key if not isinstance(temperature, HonParameterRange):
].step raise ValueError
self._attr_max_temp = self._device.settings[self.entity_description.key].max self._attr_max_temp = temperature.max
self._attr_min_temp = self._device.settings[self.entity_description.key].min self._attr_target_temperature_step = temperature.step
self._attr_min_temp = temperature.min
@callback @callback
def _handle_coordinator_update(self, update=True) -> None: def _handle_coordinator_update(self, update: bool = True) -> None:
self._attr_target_temperature = self.target_temperature
self._attr_current_temperature = self.current_temperature
self._attr_hvac_mode = self.hvac_mode
self._attr_preset_mode = self.preset_mode
if update: if update:
self.async_write_ha_state() self.async_write_ha_state()

View File

@ -1,8 +1,10 @@
import logging import logging
from typing import Any
import voluptuous as vol 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 .const import DOMAIN from .const import DOMAIN
@ -13,11 +15,13 @@ class HonFlowHandler(config_entries.ConfigFlow, domain=DOMAIN):
VERSION = 1 VERSION = 1
CONNECTION_CLASS = config_entries.CONN_CLASS_LOCAL_POLL CONNECTION_CLASS = config_entries.CONN_CLASS_LOCAL_POLL
def __init__(self): def __init__(self) -> None:
self._email = None self._email: str | None = None
self._password = None self._password: str | None = None
async def async_step_user(self, user_input=None): async def async_step_user(
self, user_input: dict[str, Any] | None = None
) -> FlowResult:
if user_input is None: if user_input is None:
return self.async_show_form( return self.async_show_form(
step_id="user", step_id="user",
@ -29,6 +33,14 @@ class HonFlowHandler(config_entries.ConfigFlow, domain=DOMAIN):
self._email = user_input[CONF_EMAIL] self._email = user_input[CONF_EMAIL]
self._password = user_input[CONF_PASSWORD] self._password = user_input[CONF_PASSWORD]
if self._email is None or self._password is None:
return self.async_show_form(
step_id="user",
data_schema=vol.Schema(
{vol.Required(CONF_EMAIL): str, vol.Required(CONF_PASSWORD): str}
),
)
# Check if already configured # Check if already configured
await self.async_set_unique_id(self._email) await self.async_set_unique_id(self._email)
self._abort_if_unique_id_configured() self._abort_if_unique_id_configured()
@ -41,5 +53,5 @@ class HonFlowHandler(config_entries.ConfigFlow, domain=DOMAIN):
}, },
) )
async def async_step_import(self, user_input=None): async def async_step_import(self, user_input: dict[str, str]) -> FlowResult:
return await self.async_step_user(user_input) return await self.async_step_user(user_input)

View File

@ -6,10 +6,10 @@ from homeassistant.components.climate import (
FAN_AUTO, FAN_AUTO,
) )
DOMAIN = "hon" DOMAIN: str = "hon"
UPDATE_INTERVAL = 10 UPDATE_INTERVAL: int = 10
PLATFORMS = [ PLATFORMS: list[str] = [
"sensor", "sensor",
"select", "select",
"number", "number",
@ -22,7 +22,7 @@ PLATFORMS = [
"lock", "lock",
] ]
APPLIANCES = { APPLIANCES: dict[str, str] = {
"AC": "Air Conditioner", "AC": "Air Conditioner",
"AP": "Air Purifier", "AP": "Air Purifier",
"AS": "Air Scanner", "AS": "Air Scanner",
@ -40,7 +40,7 @@ APPLIANCES = {
"WM": "Washing Machine", "WM": "Washing Machine",
} }
HON_HVAC_MODE = { HON_HVAC_MODE: dict[int, HVACMode] = {
0: HVACMode.AUTO, 0: HVACMode.AUTO,
1: HVACMode.COOL, 1: HVACMode.COOL,
2: HVACMode.DRY, 2: HVACMode.DRY,
@ -50,7 +50,7 @@ HON_HVAC_MODE = {
6: HVACMode.FAN_ONLY, 6: HVACMode.FAN_ONLY,
} }
HON_HVAC_PROGRAM = { HON_HVAC_PROGRAM: dict[str, str] = {
HVACMode.AUTO: "iot_auto", HVACMode.AUTO: "iot_auto",
HVACMode.COOL: "iot_cool", HVACMode.COOL: "iot_cool",
HVACMode.DRY: "iot_dry", HVACMode.DRY: "iot_dry",
@ -58,7 +58,7 @@ HON_HVAC_PROGRAM = {
HVACMode.FAN_ONLY: "iot_fan", HVACMode.FAN_ONLY: "iot_fan",
} }
HON_FAN = { HON_FAN: dict[int, str] = {
1: FAN_HIGH, 1: FAN_HIGH,
2: FAN_MEDIUM, 2: FAN_MEDIUM,
3: FAN_LOW, 3: FAN_LOW,
@ -67,7 +67,7 @@ HON_FAN = {
} }
# These languages are official supported by hOn # These languages are official supported by hOn
LANGUAGES = [ LANGUAGES: list[str] = [
"cs", # Czech "cs", # Czech
"de", # German "de", # German
"el", # Greek "el", # Greek
@ -89,7 +89,7 @@ LANGUAGES = [
"zh", # Chinese "zh", # Chinese
] ]
WASHING_PR_PHASE = { WASHING_PR_PHASE: dict[int, str] = {
0: "ready", 0: "ready",
1: "washing", 1: "washing",
2: "washing", 2: "washing",
@ -116,7 +116,7 @@ WASHING_PR_PHASE = {
27: "washing", 27: "washing",
} }
MACH_MODE = { MACH_MODE: dict[int, str] = {
0: "ready", # NO_STATE 0: "ready", # NO_STATE
1: "ready", # SELECTION_MODE 1: "ready", # SELECTION_MODE
2: "running", # EXECUTION_MODE 2: "running", # EXECUTION_MODE
@ -129,7 +129,7 @@ MACH_MODE = {
9: "ending", # STOP_MODE 9: "ending", # STOP_MODE
} }
TUMBLE_DRYER_PR_PHASE = { TUMBLE_DRYER_PR_PHASE: dict[int, str] = {
0: "ready", 0: "ready",
1: "heat_stroke", 1: "heat_stroke",
2: "drying", 2: "drying",
@ -147,21 +147,21 @@ TUMBLE_DRYER_PR_PHASE = {
20: "drying", 20: "drying",
} }
DIRTY_LEVEL = { DIRTY_LEVEL: dict[int, str] = {
0: "unknown", 0: "unknown",
1: "little", 1: "little",
2: "normal", 2: "normal",
3: "very", 3: "very",
} }
STEAM_LEVEL = { STEAM_LEVEL: dict[int, str] = {
0: "no_steam", 0: "no_steam",
1: "cotton", 1: "cotton",
2: "delicate", 2: "delicate",
3: "synthetic", 3: "synthetic",
} }
DISHWASHER_PR_PHASE = { DISHWASHER_PR_PHASE: dict[int, str] = {
0: "ready", 0: "ready",
1: "prewash", 1: "prewash",
2: "washing", 2: "washing",
@ -171,7 +171,7 @@ DISHWASHER_PR_PHASE = {
6: "hot_rinse", 6: "hot_rinse",
} }
TUMBLE_DRYER_DRY_LEVEL = { TUMBLE_DRYER_DRY_LEVEL: dict[int, str] = {
0: "no_dry", 0: "no_dry",
1: "iron_dry", 1: "iron_dry",
2: "no_dry_iron", 2: "no_dry_iron",
@ -184,7 +184,7 @@ TUMBLE_DRYER_DRY_LEVEL = {
15: "extra_dry", 15: "extra_dry",
} }
AC_MACH_MODE = { AC_MACH_MODE: dict[int, str] = {
0: "auto", 0: "auto",
1: "cool", 1: "cool",
2: "cool", 2: "cool",
@ -194,7 +194,7 @@ AC_MACH_MODE = {
6: "fan", 6: "fan",
} }
AC_FAN_MODE = { AC_FAN_MODE: dict[int, str] = {
1: "high", 1: "high",
2: "mid", 2: "mid",
3: "low", 3: "low",
@ -202,14 +202,14 @@ AC_FAN_MODE = {
5: "auto", 5: "auto",
} }
AC_HUMAN_SENSE = { AC_HUMAN_SENSE: dict[int, str] = {
0: "touch_off", 0: "touch_off",
1: "avoid_touch", 1: "avoid_touch",
2: "follow_touch", 2: "follow_touch",
3: "unknown", 3: "unknown",
} }
AP_MACH_MODE = { AP_MACH_MODE: dict[int, str] = {
0: "standby", 0: "standby",
1: "sleep", 1: "sleep",
2: "auto", 2: "auto",
@ -217,10 +217,68 @@ AP_MACH_MODE = {
4: "max", 4: "max",
} }
AP_DIFFUSER_LEVEL = { AP_DIFFUSER_LEVEL: dict[int, str] = {
0: "off", 0: "off",
1: "soft", 1: "soft",
2: "mid", 2: "mid",
3: "h_biotics", 3: "h_biotics",
4: "custom", 4: "custom",
} }
REF_HUMIDITY_LEVELS: dict[int, str] = {1: "low", 2: "mid", 3: "high"}
STAIN_TYPES: dict[int, str] = {
0: "unknown",
1: "wine",
2: "grass",
3: "soil",
4: "blood",
5: "milk",
# 6: "butter",
6: "cooking_oil",
7: "tea",
8: "coffee",
# 9: "chocolate",
9: "ice_cream",
10: "lip_gloss",
11: "curry",
12: "milk_tea",
# 13: "chili_oil",
13: "rust",
14: "blue_ink",
# 14: "mech_grease",
# 15: "color_pencil",
# 15: "deodorant",
15: "perfume",
# 16: "glue",
16: "shoe_cream",
17: "oil_pastel",
18: "blueberry",
19: "sweat",
20: "egg",
# 20: "mayonnaise",
21: "ketchup",
22: "baby_food",
23: "soy_sauce",
24: "bean_paste",
25: "chili_sauce",
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

@ -1,6 +1,5 @@
import logging import logging
import math import math
from dataclasses import dataclass
from typing import Any from typing import Any
from homeassistant.components.fan import ( from homeassistant.components.fan import (
@ -10,6 +9,8 @@ from homeassistant.components.fan import (
) )
from homeassistant.config_entries import ConfigEntry from homeassistant.config_entries import ConfigEntry
from homeassistant.core import callback from homeassistant.core import callback
from homeassistant.helpers.entity_platform import AddEntitiesCallback
from homeassistant.helpers.typing import HomeAssistantType
from homeassistant.util.percentage import ( from homeassistant.util.percentage import (
percentage_to_ranged_value, percentage_to_ranged_value,
ranged_value_to_percentage, ranged_value_to_percentage,
@ -23,14 +24,9 @@ from .hon import HonEntity
_LOGGER = logging.getLogger(__name__) _LOGGER = logging.getLogger(__name__)
@dataclass FANS: dict[str, tuple[FanEntityDescription, ...]] = {
class HonFanEntityDescription(FanEntityDescription):
pass
FANS = {
"HO": ( "HO": (
HonFanEntityDescription( FanEntityDescription(
key="settings.windSpeed", key="settings.windSpeed",
name="Wind Speed", name="Wind Speed",
translation_key="air_extraction", translation_key="air_extraction",
@ -39,30 +35,36 @@ FANS = {
} }
async def async_setup_entry(hass, entry: ConfigEntry, async_add_entities) -> None: async def async_setup_entry(
hass: HomeAssistantType, entry: ConfigEntry, async_add_entities: AddEntitiesCallback
) -> None:
entities = [] entities = []
for device in hass.data[DOMAIN][entry.unique_id].appliances: for device in hass.data[DOMAIN][entry.unique_id].appliances:
for description in FANS.get(device.appliance_type, []): for description in FANS.get(device.appliance_type, []):
if isinstance(description, HonFanEntityDescription):
if ( if (
description.key not in device.available_settings description.key not in device.available_settings
or device.get(description.key.split(".")[-1]) is None or device.get(description.key.split(".")[-1]) is None
): ):
continue continue
entity = HonFanEntity(hass, entry, device, description) entity = HonFanEntity(hass, entry, device, description)
else:
continue
await entity.coordinator.async_config_entry_first_refresh() await entity.coordinator.async_config_entry_first_refresh()
entities.append(entity) entities.append(entity)
async_add_entities(entities) async_add_entities(entities)
class HonFanEntity(HonEntity, FanEntity): class HonFanEntity(HonEntity, FanEntity):
entity_description: HonFanEntityDescription entity_description: FanEntityDescription
def __init__(self, hass, entry, device: HonAppliance, description) -> None: def __init__(
self,
hass: HomeAssistantType,
entry: ConfigEntry,
device: HonAppliance,
description: FanEntityDescription,
) -> None:
self._attr_supported_features = FanEntityFeature.SET_SPEED self._attr_supported_features = FanEntityFeature.SET_SPEED
self._wind_speed: HonParameterRange = device.settings.get(description.key) self._wind_speed: HonParameterRange
self._speed_range: tuple[int, int]
self._command, self._parameter = description.key.split(".") self._command, self._parameter = description.key.split(".")
super().__init__(hass, entry, device, description) super().__init__(hass, entry, device, description)
@ -89,8 +91,10 @@ class HonFanEntity(HonEntity, FanEntity):
@property @property
def is_on(self) -> bool | None: def is_on(self) -> bool | None:
"""Return true if device is on.""" """Return true if device is on."""
if self.percentage is None:
return False
mode = math.ceil(percentage_to_ranged_value(self._speed_range, self.percentage)) mode = math.ceil(percentage_to_ranged_value(self._speed_range, self.percentage))
return mode > self._wind_speed.min return bool(mode > self._wind_speed.min)
async def async_turn_on( async def async_turn_on(
self, self,
@ -112,9 +116,10 @@ class HonFanEntity(HonEntity, FanEntity):
self.async_write_ha_state() self.async_write_ha_state()
@callback @callback
def _handle_coordinator_update(self, update=True) -> None: def _handle_coordinator_update(self, update: bool = True) -> None:
self._wind_speed = self._device.settings.get(self.entity_description.key) wind_speed = self._device.settings.get(self.entity_description.key)
if len(self._wind_speed.values) > 1: if isinstance(wind_speed, HonParameterRange) and len(wind_speed.values) > 1:
self._wind_speed = wind_speed
self._speed_range = ( self._speed_range = (
int(self._wind_speed.values[1]), int(self._wind_speed.values[1]),
int(self._wind_speed.values[-1]), int(self._wind_speed.values[-1]),

View File

@ -3,23 +3,79 @@ import logging
from contextlib import suppress from contextlib import suppress
from datetime import timedelta from datetime import timedelta
from pathlib import Path from pathlib import Path
from typing import Optional, Any
import pkg_resources import pkg_resources # type: ignore[import, unused-ignore]
from homeassistant.config_entries import ConfigEntry
from homeassistant.core import callback from homeassistant.core import callback
from homeassistant.helpers.entity import DeviceInfo from homeassistant.helpers.entity import DeviceInfo
from homeassistant.helpers.typing import HomeAssistantType
from homeassistant.helpers.update_coordinator import CoordinatorEntity from homeassistant.helpers.update_coordinator import CoordinatorEntity
from homeassistant.helpers.update_coordinator import DataUpdateCoordinator from homeassistant.helpers.update_coordinator import DataUpdateCoordinator
from pyhon.appliance import HonAppliance from pyhon.appliance import HonAppliance
from .const import DOMAIN, UPDATE_INTERVAL from .const import DOMAIN, UPDATE_INTERVAL
from .typedefs import HonEntityDescription, HonOptionEntityDescription, T
_LOGGER = logging.getLogger(__name__) _LOGGER = logging.getLogger(__name__)
class HonEntity(CoordinatorEntity): class HonInfo:
def __init__(self) -> None:
self._manifest: dict[str, Any] = self._get_manifest()
self._hon_version: str = self._manifest.get("version", "")
self._pyhon_version: str = pkg_resources.get_distribution("pyhon").version
@staticmethod
def _get_manifest() -> dict[str, Any]:
manifest = Path(__file__).parent / "manifest.json"
with open(manifest, "r", encoding="utf-8") as file:
result: dict[str, Any] = json.loads(file.read())
return result
@property
def manifest(self) -> dict[str, Any]:
return self._manifest
@property
def hon_version(self) -> str:
return self._hon_version
@property
def pyhon_version(self) -> str:
return self._pyhon_version
class HonCoordinator(DataUpdateCoordinator[None]):
def __init__(self, hass: HomeAssistantType, device: HonAppliance):
"""Initialize my coordinator."""
super().__init__(
hass,
_LOGGER,
name=device.unique_id,
update_interval=timedelta(seconds=UPDATE_INTERVAL),
)
self._device = device
self._info = HonInfo()
async def _async_update_data(self) -> None:
return await self._device.update()
@property
def info(self) -> HonInfo:
return self._info
class HonEntity(CoordinatorEntity[HonCoordinator]):
_attr_has_entity_name = True _attr_has_entity_name = True
def __init__(self, hass, entry, device: HonAppliance, description=None) -> None: def __init__(
self,
hass: HomeAssistantType,
entry: ConfigEntry,
device: HonAppliance,
description: Optional[HonEntityDescription] = None,
) -> None:
coordinator = get_coordinator(hass, device) coordinator = get_coordinator(hass, device)
super().__init__(coordinator) super().__init__(coordinator)
@ -36,7 +92,7 @@ class HonEntity(CoordinatorEntity):
self._handle_coordinator_update(update=False) self._handle_coordinator_update(update=False)
@property @property
def device_info(self): def device_info(self) -> DeviceInfo:
return DeviceInfo( return DeviceInfo(
identifiers={(DOMAIN, self._device.unique_id)}, identifiers={(DOMAIN, self._device.unique_id)},
manufacturer=self._device.get("brand", ""), manufacturer=self._device.get("brand", ""),
@ -51,71 +107,34 @@ class HonEntity(CoordinatorEntity):
self.async_write_ha_state() self.async_write_ha_state()
class HonInfo: def unique_entities(
def __init__(self): base_entities: tuple[T, ...],
self._manifest = self._get_manifest() new_entities: tuple[T, ...],
self._hon_version = self._manifest.get("version", "") ) -> tuple[T, ...]:
self._pyhon_version = pkg_resources.get_distribution("pyhon").version
@staticmethod
def _get_manifest():
manifest = Path(__file__).parent / "manifest.json"
with open(manifest, "r", encoding="utf-8") as file:
return json.loads(file.read())
@property
def manifest(self):
return self._manifest
@property
def hon_version(self):
return self._hon_version
@property
def pyhon_version(self):
return self._pyhon_version
class HonCoordinator(DataUpdateCoordinator):
def __init__(self, hass, device: HonAppliance):
"""Initialize my coordinator."""
super().__init__(
hass,
_LOGGER,
name=device.unique_id,
update_interval=timedelta(seconds=UPDATE_INTERVAL),
)
self._device = device
self._info = HonInfo()
async def _async_update_data(self):
await self._device.update()
@property
def info(self) -> HonInfo:
return self._info
def unique_entities(base_entities, new_entities):
result = list(base_entities) result = list(base_entities)
existing_entities = [entity.key for entity in base_entities] existing_entities = [entity.key for entity in base_entities]
entity: HonEntityDescription
for entity in new_entities: for entity in new_entities:
if entity.key not in existing_entities: if entity.key not in existing_entities:
result.append(entity) result.append(entity)
return tuple(result) return tuple(result)
def get_coordinator(hass, appliance): def get_coordinator(hass: HomeAssistantType, appliance: HonAppliance) -> HonCoordinator:
coordinators = hass.data[DOMAIN]["coordinators"] coordinators = hass.data[DOMAIN]["coordinators"]
if appliance.unique_id in coordinators: if appliance.unique_id in coordinators:
coordinator = hass.data[DOMAIN]["coordinators"][appliance.unique_id] coordinator: HonCoordinator = hass.data[DOMAIN]["coordinators"][
appliance.unique_id
]
else: else:
coordinator = HonCoordinator(hass, appliance) coordinator = HonCoordinator(hass, appliance)
hass.data[DOMAIN]["coordinators"][appliance.unique_id] = coordinator hass.data[DOMAIN]["coordinators"][appliance.unique_id] = coordinator
return coordinator return coordinator
def get_readable(description, value): def get_readable(
description: HonOptionEntityDescription, value: float | str
) -> float | str:
if description.option_list is not None: if description.option_list is not None:
with suppress(ValueError): with suppress(ValueError):
return description.option_list.get(int(value), value) return description.option_list.get(int(value), value)

View File

@ -9,6 +9,8 @@ from homeassistant.components.light import (
) )
from homeassistant.config_entries import ConfigEntry from homeassistant.config_entries import ConfigEntry
from homeassistant.core import callback from homeassistant.core import callback
from homeassistant.helpers.entity_platform import AddEntitiesCallback
from homeassistant.helpers.typing import HomeAssistantType
from pyhon.appliance import HonAppliance from pyhon.appliance import HonAppliance
from pyhon.parameter.range import HonParameterRange from pyhon.parameter.range import HonParameterRange
@ -18,7 +20,7 @@ from .hon import HonEntity
_LOGGER = logging.getLogger(__name__) _LOGGER = logging.getLogger(__name__)
LIGHTS = { LIGHTS: dict[str, tuple[LightEntityDescription, ...]] = {
"WC": ( "WC": (
LightEntityDescription( LightEntityDescription(
key="settings.lightStatus", key="settings.lightStatus",
@ -43,7 +45,9 @@ LIGHTS = {
} }
async def async_setup_entry(hass, entry: ConfigEntry, async_add_entities) -> None: async def async_setup_entry(
hass: HomeAssistantType, entry: ConfigEntry, async_add_entities: AddEntitiesCallback
) -> None:
entities = [] entities = []
for device in hass.data[DOMAIN][entry.unique_id].appliances: for device in hass.data[DOMAIN][entry.unique_id].appliances:
for description in LIGHTS.get(device.appliance_type, []): for description in LIGHTS.get(device.appliance_type, []):
@ -61,8 +65,16 @@ async def async_setup_entry(hass, entry: ConfigEntry, async_add_entities) -> Non
class HonLightEntity(HonEntity, LightEntity): class HonLightEntity(HonEntity, LightEntity):
entity_description: LightEntityDescription entity_description: LightEntityDescription
def __init__(self, hass, entry, device: HonAppliance, description) -> None: def __init__(
light: HonParameterRange = device.settings.get(description.key) self,
hass: HomeAssistantType,
entry: ConfigEntry,
device: HonAppliance,
description: LightEntityDescription,
) -> None:
light = device.settings.get(description.key)
if not isinstance(light, HonParameterRange):
raise ValueError()
self._light_range = (light.min, light.max) self._light_range = (light.min, light.max)
self._attr_supported_color_modes: set[ColorMode] = set() self._attr_supported_color_modes: set[ColorMode] = set()
if len(light.values) == 2: if len(light.values) == 2:
@ -76,13 +88,13 @@ class HonLightEntity(HonEntity, LightEntity):
@property @property
def is_on(self) -> bool: def is_on(self) -> bool:
"""Return true if light is on.""" """Return true if light is on."""
return self._device.get(self.entity_description.key.split(".")[-1]) > 0 return bool(self._device.get(self.entity_description.key.split(".")[-1]) > 0)
async def async_turn_on(self, **kwargs: Any) -> None: async def async_turn_on(self, **kwargs: Any) -> None:
"""Turn on or control the light.""" """Turn on or control the light."""
light: HonParameterRange = self._device.settings.get( light = self._device.settings.get(self.entity_description.key)
self.entity_description.key if not isinstance(light, HonParameterRange):
) raise ValueError()
if ColorMode.BRIGHTNESS in self._attr_supported_color_modes: if ColorMode.BRIGHTNESS in self._attr_supported_color_modes:
percent = int(100 / 255 * kwargs.get(ATTR_BRIGHTNESS, 128)) percent = int(100 / 255 * kwargs.get(ATTR_BRIGHTNESS, 128))
light.value = round(light.max / 100 * percent) light.value = round(light.max / 100 * percent)
@ -96,9 +108,9 @@ class HonLightEntity(HonEntity, LightEntity):
async def async_turn_off(self, **kwargs: Any) -> None: async def async_turn_off(self, **kwargs: Any) -> None:
"""Instruct the light to turn off.""" """Instruct the light to turn off."""
light: HonParameterRange = self._device.settings.get( light = self._device.settings.get(self.entity_description.key)
self.entity_description.key if not isinstance(light, HonParameterRange):
) raise ValueError()
light.value = light.min light.value = light.min
await self._device.commands[self._command].send() await self._device.commands[self._command].send()
self.async_write_ha_state() self.async_write_ha_state()
@ -106,15 +118,15 @@ class HonLightEntity(HonEntity, LightEntity):
@property @property
def brightness(self) -> int | None: def brightness(self) -> int | None:
"""Return the brightness of the light.""" """Return the brightness of the light."""
light: HonParameterRange = self._device.settings.get( light = self._device.settings.get(self.entity_description.key)
self.entity_description.key if not isinstance(light, HonParameterRange):
) raise ValueError()
if light.value == light.min: if light.value == light.min:
return None return None
return int(255 / light.max * light.value) return int(255 / light.max * float(light.value))
@callback @callback
def _handle_coordinator_update(self, update=True) -> None: def _handle_coordinator_update(self, update: bool = True) -> None:
self._attr_is_on = self.is_on self._attr_is_on = self.is_on
self._attr_brightness = self.brightness self._attr_brightness = self.brightness
if update: if update:
@ -122,7 +134,6 @@ class HonLightEntity(HonEntity, LightEntity):
@property @property
def available(self) -> bool: def available(self) -> bool:
return ( if (entity := self._device.settings.get(self.entity_description.key)) is None:
super().available return False
and len(self._device.settings.get(self.entity_description.key).values) > 1 return super().available and len(entity.values) > 1
)

View File

@ -4,6 +4,8 @@ from typing import Any
from homeassistant.components.lock import LockEntity, LockEntityDescription from homeassistant.components.lock import LockEntity, LockEntityDescription
from homeassistant.config_entries import ConfigEntry from homeassistant.config_entries import ConfigEntry
from homeassistant.core import callback from homeassistant.core import callback
from homeassistant.helpers.entity_platform import AddEntitiesCallback
from homeassistant.helpers.typing import HomeAssistantType
from pyhon.parameter.base import HonParameter from pyhon.parameter.base import HonParameter
from pyhon.parameter.range import HonParameterRange from pyhon.parameter.range import HonParameterRange
@ -23,7 +25,9 @@ LOCKS: dict[str, tuple[LockEntityDescription, ...]] = {
} }
async def async_setup_entry(hass, entry: ConfigEntry, async_add_entities) -> None: async def async_setup_entry(
hass: HomeAssistantType, entry: ConfigEntry, async_add_entities: AddEntitiesCallback
) -> None:
entities = [] entities = []
for device in hass.data[DOMAIN][entry.unique_id].appliances: for device in hass.data[DOMAIN][entry.unique_id].appliances:
for description in LOCKS.get(device.appliance_type, []): for description in LOCKS.get(device.appliance_type, []):
@ -45,13 +49,12 @@ class HonLockEntity(HonEntity, LockEntity):
@property @property
def is_locked(self) -> bool | None: def is_locked(self) -> bool | None:
"""Return a boolean for the state of the lock.""" """Return a boolean for the state of the lock."""
"""Return True if entity is on.""" return bool(self._device.get(self.entity_description.key, 0) == 1)
return self._device.get(self.entity_description.key, 0) == 1
async def async_lock(self, **kwargs: Any) -> None: async def async_lock(self, **kwargs: Any) -> None:
"""Lock method.""" """Lock method."""
setting = self._device.settings[f"settings.{self.entity_description.key}"] setting = self._device.settings.get(f"settings.{self.entity_description.key}")
if type(setting) == HonParameter: if type(setting) == HonParameter or setting is None:
return return
setting.value = setting.max if isinstance(setting, HonParameterRange) else 1 setting.value = setting.max if isinstance(setting, HonParameterRange) else 1
self.async_write_ha_state() self.async_write_ha_state()
@ -78,8 +81,7 @@ class HonLockEntity(HonEntity, LockEntity):
) )
@callback @callback
def _handle_coordinator_update(self, update=True) -> None: def _handle_coordinator_update(self, update: bool = True) -> None:
value = self._device.get(self.entity_description.key, 0)
self._attr_is_locked = self.is_locked self._attr_is_locked = self.is_locked
if update: if update:
self.async_write_ha_state() self.async_write_ha_state()

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.14.9" "pyhOn==0.15.15"
], ],
"version": "0.9.0" "version": "0.11.0-beta.1"
} }

View File

@ -10,18 +10,21 @@ from homeassistant.config_entries import ConfigEntry
from homeassistant.const import UnitOfTime, UnitOfTemperature from homeassistant.const import UnitOfTime, UnitOfTemperature
from homeassistant.core import callback from homeassistant.core import callback
from homeassistant.helpers.entity import EntityCategory from homeassistant.helpers.entity import EntityCategory
from homeassistant.helpers.entity_platform import AddEntitiesCallback
from homeassistant.helpers.typing import HomeAssistantType
from pyhon.appliance import HonAppliance
from pyhon.parameter.range import HonParameterRange from pyhon.parameter.range import HonParameterRange
from .const import DOMAIN 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
@ -54,6 +57,12 @@ NUMBERS: dict[str, tuple[NumberEntityDescription, ...]] = {
icon="mdi:water", icon="mdi:water",
translation_key="water_hard", translation_key="water_hard",
), ),
HonNumberEntityDescription(
key="settings.waterHard",
name="Water hard",
icon="mdi:water",
translation_key="water_hard",
),
HonConfigNumberEntityDescription( HonConfigNumberEntityDescription(
key="startProgram.lang", key="startProgram.lang",
name="lang", name="lang",
@ -155,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(
@ -183,8 +199,11 @@ NUMBERS: dict[str, tuple[NumberEntityDescription, ...]] = {
NUMBERS["WD"] = unique_entities(NUMBERS["WM"], NUMBERS["TD"]) NUMBERS["WD"] = unique_entities(NUMBERS["WM"], NUMBERS["TD"])
async def async_setup_entry(hass, entry: ConfigEntry, async_add_entities) -> None: async def async_setup_entry(
hass: HomeAssistantType, entry: ConfigEntry, async_add_entities: AddEntitiesCallback
) -> None:
entities = [] entities = []
entity: HonNumberEntity | HonConfigNumberEntity
for device in hass.data[DOMAIN][entry.unique_id].appliances: for device in hass.data[DOMAIN][entry.unique_id].appliances:
for description in NUMBERS.get(device.appliance_type, []): for description in NUMBERS.get(device.appliance_type, []):
if description.key not in device.available_settings: if description.key not in device.available_settings:
@ -203,7 +222,13 @@ async def async_setup_entry(hass, entry: ConfigEntry, async_add_entities) -> Non
class HonNumberEntity(HonEntity, NumberEntity): class HonNumberEntity(HonEntity, NumberEntity):
entity_description: HonNumberEntityDescription entity_description: HonNumberEntityDescription
def __init__(self, hass, entry, device, description) -> None: def __init__(
self,
hass: HomeAssistantType,
entry: ConfigEntry,
device: HonAppliance,
description: HonNumberEntityDescription,
) -> None:
super().__init__(hass, entry, device, description) super().__init__(hass, entry, device, description)
self._data = device.settings[description.key] self._data = device.settings[description.key]
@ -214,7 +239,9 @@ class HonNumberEntity(HonEntity, NumberEntity):
@property @property
def native_value(self) -> float | None: def native_value(self) -> float | None:
return self._device.get(self.entity_description.key.split(".")[-1]) if value := self._device.get(self.entity_description.key.split(".")[-1]):
return float(value)
return None
async def async_set_native_value(self, value: float) -> None: async def async_set_native_value(self, value: float) -> None:
setting = self._device.settings[self.entity_description.key] setting = self._device.settings[self.entity_description.key]
@ -227,7 +254,7 @@ class HonNumberEntity(HonEntity, NumberEntity):
await self.coordinator.async_refresh() await self.coordinator.async_refresh()
@callback @callback
def _handle_coordinator_update(self, update=True) -> None: def _handle_coordinator_update(self, update: bool = True) -> None:
setting = self._device.settings[self.entity_description.key] setting = self._device.settings[self.entity_description.key]
if isinstance(setting, HonParameterRange): if isinstance(setting, HonParameterRange):
self._attr_native_max_value = setting.max self._attr_native_max_value = setting.max
@ -247,14 +274,31 @@ class HonNumberEntity(HonEntity, NumberEntity):
) )
class HonConfigNumberEntity(HonNumberEntity): class HonConfigNumberEntity(HonEntity, NumberEntity):
entity_description: HonConfigNumberEntityDescription entity_description: HonConfigNumberEntityDescription
def __init__(
self,
hass: HomeAssistantType,
entry: ConfigEntry,
device: HonAppliance,
description: HonConfigNumberEntityDescription,
) -> None:
super().__init__(hass, entry, device, description)
self._data = device.settings[description.key]
if isinstance(self._data, HonParameterRange):
self._attr_native_max_value = self._data.max
self._attr_native_min_value = self._data.min
self._attr_native_step = self._data.step
@property @property
def native_value(self) -> float | None: def native_value(self) -> float | None:
return self._device.settings[self.entity_description.key].value if value := self._device.settings[self.entity_description.key].value:
return float(value)
return None
async def async_set_native_value(self, value: str) -> None: async def async_set_native_value(self, value: float) -> None:
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
@ -264,3 +308,14 @@ class HonConfigNumberEntity(HonNumberEntity):
def available(self) -> bool: def available(self) -> bool:
"""Return True if entity is available.""" """Return True if entity is available."""
return super(NumberEntity, self).available return super(NumberEntity, self).available
@callback
def _handle_coordinator_update(self, update: bool = True) -> None:
setting = self._device.settings[self.entity_description.key]
if isinstance(setting, HonParameterRange):
self._attr_native_max_value = setting.max
self._attr_native_min_value = setting.min
self._attr_native_step = setting.step
self._attr_native_value = self.native_value
if update:
self.async_write_ha_state()

View File

@ -2,13 +2,14 @@ from __future__ import annotations
import logging import logging
from dataclasses import dataclass from dataclasses import dataclass
from typing import Dict, List
from homeassistant.components.select import SelectEntity, SelectEntityDescription from homeassistant.components.select import SelectEntity, SelectEntityDescription
from homeassistant.config_entries import ConfigEntry from homeassistant.config_entries import ConfigEntry
from homeassistant.const import UnitOfTemperature, UnitOfTime, REVOLUTIONS_PER_MINUTE from homeassistant.const import UnitOfTemperature, UnitOfTime, REVOLUTIONS_PER_MINUTE
from homeassistant.core import callback from homeassistant.core import callback
from homeassistant.helpers.entity import EntityCategory from homeassistant.helpers.entity import EntityCategory
from homeassistant.helpers.entity_platform import AddEntitiesCallback
from homeassistant.helpers.typing import HomeAssistantType
from . import const from . import const
from .const import DOMAIN from .const import DOMAIN
@ -17,18 +18,18 @@ 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 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 option_list: dict[int, str] | None = None
SELECTS = { SELECTS: dict[str, tuple[SelectEntityDescription, ...]] = {
"WM": ( "WM": (
HonConfigSelectEntityDescription( HonConfigSelectEntityDescription(
key="startProgram.spinSpeed", key="startProgram.spinSpeed",
@ -63,6 +64,12 @@ SELECTS = {
translation_key="dirt_level", translation_key="dirt_level",
option_list=const.DIRTY_LEVEL, option_list=const.DIRTY_LEVEL,
), ),
HonConfigSelectEntityDescription(
key="startProgram.extendedStainType",
name="Stain Type",
icon="mdi:liquid-spot",
translation_key="stain_type",
),
), ),
"TD": ( "TD": (
HonConfigSelectEntityDescription( HonConfigSelectEntityDescription(
@ -133,6 +140,20 @@ SELECTS = {
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(
@ -168,8 +189,11 @@ SELECTS = {
SELECTS["WD"] = unique_entities(SELECTS["WM"], SELECTS["TD"]) SELECTS["WD"] = unique_entities(SELECTS["WM"], SELECTS["TD"])
async def async_setup_entry(hass, entry: ConfigEntry, async_add_entities) -> None: async def async_setup_entry(
hass: HomeAssistantType, entry: ConfigEntry, async_add_entities: AddEntitiesCallback
) -> None:
entities = [] entities = []
entity: HonSelectEntity | HonConfigSelectEntity
for device in hass.data[DOMAIN][entry.unique_id].appliances: for device in hass.data[DOMAIN][entry.unique_id].appliances:
for description in SELECTS.get(device.appliance_type, []): for description in SELECTS.get(device.appliance_type, []):
if description.key not in device.available_settings: if description.key not in device.available_settings:
@ -195,16 +219,18 @@ class HonConfigSelectEntity(HonEntity, SelectEntity):
value = get_readable(self.entity_description, setting.value) value = get_readable(self.entity_description, setting.value)
if value not in self._attr_options: if value not in self._attr_options:
return None return None
return value return str(value)
@property @property
def options(self) -> list[str]: def options(self) -> list[str]:
setting = self._device.settings.get(self.entity_description.key) setting = self._device.settings.get(self.entity_description.key)
if setting is None: if setting is None:
return [] return []
return [get_readable(self.entity_description, key) for key in setting.values] return [
str(get_readable(self.entity_description, key)) for key in setting.values
]
def _option_to_number(self, option: str, values: List[str]): def _option_to_number(self, option: str, values: list[str]) -> str:
if (options := self.entity_description.option_list) is not None: if (options := self.entity_description.option_list) is not None:
return str( return str(
next( next(
@ -220,7 +246,7 @@ class HonConfigSelectEntity(HonEntity, SelectEntity):
await self.coordinator.async_refresh() await self.coordinator.async_refresh()
@callback @callback
def _handle_coordinator_update(self, update=True) -> None: def _handle_coordinator_update(self, update: bool = True) -> None:
self._attr_available = self.available self._attr_available = self.available
self._attr_options = self.options self._attr_options = self.options
self._attr_current_option = self.current_option self._attr_current_option = self.current_option
@ -233,9 +259,37 @@ class HonConfigSelectEntity(HonEntity, SelectEntity):
return self._device.settings.get(self.entity_description.key) is not None return self._device.settings.get(self.entity_description.key) is not None
class HonSelectEntity(HonConfigSelectEntity): class HonSelectEntity(HonEntity, SelectEntity):
entity_description: HonSelectEntityDescription entity_description: HonSelectEntityDescription
@property
def current_option(self) -> str | None:
if not (setting := self._device.settings.get(self.entity_description.key)):
return None
value = get_readable(self.entity_description, setting.value)
if value not in self._attr_options:
return None
return str(value)
@property
def options(self) -> list[str]:
setting = self._device.settings.get(self.entity_description.key)
if setting is None:
return []
return [
str(get_readable(self.entity_description, key)) for key in setting.values
]
def _option_to_number(self, option: str, values: list[str]) -> str:
if (options := self.entity_description.option_list) is not None:
return str(
next(
(k for k, v in options.items() if str(k) in values and v == option),
option,
)
)
return option
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)
@ -253,3 +307,11 @@ class HonSelectEntity(HonConfigSelectEntity):
and int(self._device.get("remoteCtrValid", 1)) == 1 and int(self._device.get("remoteCtrValid", 1)) == 1
and self._device.get("attributes.lastConnEvent.category") != "DISCONNECTED" and self._device.get("attributes.lastConnEvent.category") != "DISCONNECTED"
) )
@callback
def _handle_coordinator_update(self, update: bool = True) -> None:
self._attr_available = self.available
self._attr_options = self.options
self._attr_current_option = self.current_option
if update:
self.async_write_ha_state()

View File

@ -1,6 +1,5 @@
import logging import logging
from dataclasses import dataclass from dataclasses import dataclass
from typing import Dict
from homeassistant.components.sensor import ( from homeassistant.components.sensor import (
SensorEntity, SensorEntity,
@ -25,6 +24,8 @@ from homeassistant.const import (
) )
from homeassistant.core import callback from homeassistant.core import callback
from homeassistant.helpers.entity import EntityCategory from homeassistant.helpers.entity import EntityCategory
from homeassistant.helpers.entity_platform import AddEntitiesCallback
from homeassistant.helpers.typing import HomeAssistantType
from . import const from . import const
from .const import DOMAIN from .const import DOMAIN
@ -33,15 +34,15 @@ 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 option_list: dict[int, str] | None = None
@dataclass @dataclass(frozen=True)
class HonSensorEntityDescription(SensorEntityDescription): class HonSensorEntityDescription(SensorEntityDescription):
option_list: Dict[int, str] = None option_list: dict[int, str] | None = None
SENSORS: dict[str, tuple[SensorEntityDescription, ...]] = { SENSORS: dict[str, tuple[SensorEntityDescription, ...]] = {
@ -194,6 +195,14 @@ SENSORS: dict[str, tuple[SensorEntityDescription, ...]] = {
translation_key="steam_level", translation_key="steam_level",
option_list=const.STEAM_LEVEL, option_list=const.STEAM_LEVEL,
), ),
HonSensorEntityDescription(
key="stainType",
name="Stain Type",
icon="mdi:liquid-spot",
device_class=SensorDeviceClass.ENUM,
translation_key="stain_type",
option_list=const.STAIN_TYPES,
),
), ),
"TD": ( "TD": (
HonSensorEntityDescription( HonSensorEntityDescription(
@ -545,6 +554,14 @@ SENSORS: dict[str, tuple[SensorEntityDescription, ...]] = {
HonSensorEntityDescription( HonSensorEntityDescription(
key="errors", name="Error", icon="mdi:math-log", translation_key="errors" key="errors", name="Error", icon="mdi:math-log", translation_key="errors"
), ),
HonSensorEntityDescription(
key="humidityLevel",
name="Humidity Level",
icon="mdi:water-outline",
device_class=SensorDeviceClass.ENUM,
translation_key="humidity_level",
option_list=const.REF_HUMIDITY_LEVELS,
),
), ),
"HO": ( "HO": (
HonSensorEntityDescription( HonSensorEntityDescription(
@ -767,8 +784,11 @@ SENSORS: dict[str, tuple[SensorEntityDescription, ...]] = {
SENSORS["WD"] = unique_entities(SENSORS["WM"], SENSORS["TD"]) SENSORS["WD"] = unique_entities(SENSORS["WM"], SENSORS["TD"])
async def async_setup_entry(hass, entry: ConfigEntry, async_add_entities) -> None: async def async_setup_entry(
hass: HomeAssistantType, entry: ConfigEntry, async_add_entities: AddEntitiesCallback
) -> None:
entities = [] entities = []
entity: HonSensorEntity | HonConfigSensorEntity
for device in hass.data[DOMAIN][entry.unique_id].appliances: for device in hass.data[DOMAIN][entry.unique_id].appliances:
for description in SENSORS.get(device.appliance_type, []): for description in SENSORS.get(device.appliance_type, []):
if isinstance(description, HonSensorEntityDescription): if isinstance(description, HonSensorEntityDescription):
@ -791,15 +811,15 @@ class HonSensorEntity(HonEntity, SensorEntity):
entity_description: HonSensorEntityDescription entity_description: HonSensorEntityDescription
@callback @callback
def _handle_coordinator_update(self, update=True) -> None: def _handle_coordinator_update(self, update: bool = True) -> None:
value = self._device.get(self.entity_description.key, "") value = self._device.get(self.entity_description.key, "")
if self.entity_description.key == "programName": if self.entity_description.key == "programName":
self._attr_options = self._device.settings.get( if not (options := self._device.settings.get("startProgram.program")):
"startProgram.program" raise ValueError
).values + ["No Program"] self._attr_options = options.values + ["No Program"]
elif self.entity_description.option_list is not None: elif self.entity_description.option_list is not None:
self._attr_options = list(self.entity_description.option_list.values()) self._attr_options = list(self.entity_description.option_list.values())
value = get_readable(self.entity_description, value) value = str(get_readable(self.entity_description, value))
if not value and self.entity_description.state_class is not None: if not value and self.entity_description.state_class is not None:
self._attr_native_value = 0 self._attr_native_value = 0
self._attr_native_value = value self._attr_native_value = value
@ -811,17 +831,22 @@ class HonConfigSensorEntity(HonEntity, SensorEntity):
entity_description: HonConfigSensorEntityDescription entity_description: HonConfigSensorEntityDescription
@callback @callback
def _handle_coordinator_update(self, update=True) -> None: def _handle_coordinator_update(self, update: bool = True) -> None:
value = self._device.settings.get(self.entity_description.key, None) sensor = self._device.settings.get(self.entity_description.key, None)
value: float | str
if self.entity_description.state_class is not None: if self.entity_description.state_class is not None:
if value and value.value: if sensor and sensor.value:
value = ( value = (
float(value.value) if "." in str(value.value) else int(value.value) float(sensor.value)
if "." in str(sensor.value)
else int(sensor.value)
) )
else: else:
value = 0 value = 0
elif sensor is not None:
value = sensor.value
else: else:
value = value.value value = 0
if self.entity_description.option_list is not None and not value == 0: if self.entity_description.option_list is not None and not value == 0:
self._attr_options = list(self.entity_description.option_list.values()) self._attr_options = list(self.entity_description.option_list.values())
value = get_readable(self.entity_description, value) value = get_readable(self.entity_description, value)

View File

@ -7,6 +7,8 @@ from homeassistant.components.switch import SwitchEntityDescription, SwitchEntit
from homeassistant.config_entries import ConfigEntry from homeassistant.config_entries import ConfigEntry
from homeassistant.core import callback from homeassistant.core import callback
from homeassistant.helpers.entity import EntityCategory from homeassistant.helpers.entity import EntityCategory
from homeassistant.helpers.entity_platform import AddEntitiesCallback
from homeassistant.helpers.typing import HomeAssistantType
from pyhon.parameter.base import HonParameter from pyhon.parameter.base import HonParameter
from pyhon.parameter.range import HonParameterRange from pyhon.parameter.range import HonParameterRange
@ -16,29 +18,23 @@ from .hon import HonEntity, unique_entities
_LOGGER = logging.getLogger(__name__) _LOGGER = logging.getLogger(__name__)
@dataclass @dataclass(frozen=True)
class HonSwitchEntityDescriptionMixin: class HonControlSwitchEntityDescription(SwitchEntityDescription):
turn_on_key: str = "" turn_on_key: str = ""
turn_off_key: str = "" turn_off_key: str = ""
@dataclass @dataclass(frozen=True)
class HonControlSwitchEntityDescription(
HonSwitchEntityDescriptionMixin, SwitchEntityDescription
):
pass
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
SWITCHES: dict[str, tuple[HonSwitchEntityDescription, ...]] = { SWITCHES: dict[str, tuple[SwitchEntityDescription, ...]] = {
"WM": ( "WM": (
HonControlSwitchEntityDescription( HonControlSwitchEntityDescription(
key="active", key="active",
@ -68,6 +64,12 @@ SWITCHES: dict[str, tuple[HonSwitchEntityDescription, ...]] = {
icon="mdi:tshirt-crew", icon="mdi:tshirt-crew",
translation_key="prewash", translation_key="prewash",
), ),
HonConfigSwitchEntityDescription(
key="startProgram.prewash",
name="Prewash",
icon="mdi:tshirt-crew",
translation_key="prewash",
),
HonConfigSwitchEntityDescription( HonConfigSwitchEntityDescription(
key="startProgram.permanentPressStatus", key="startProgram.permanentPressStatus",
name="Keep Fresh", name="Keep Fresh",
@ -86,6 +88,18 @@ SWITCHES: dict[str, tuple[HonSwitchEntityDescription, ...]] = {
icon="mdi:cup", icon="mdi:cup",
translation_key="auto_dose_detergent", translation_key="auto_dose_detergent",
), ),
HonSwitchEntityDescription(
key="autoSoftenerStatus",
name="Auto Dose Softener",
icon="mdi:teddy-bear",
translation_key="auto_dose_softener",
),
HonSwitchEntityDescription(
key="autoDetergentStatus",
name="Auto Dose Detergent",
icon="mdi:cup",
translation_key="auto_dose_detergent",
),
HonConfigSwitchEntityDescription( HonConfigSwitchEntityDescription(
key="startProgram.acquaplus", key="startProgram.acquaplus",
name="Acqua Plus", name="Acqua Plus",
@ -122,6 +136,12 @@ SWITCHES: dict[str, tuple[HonSwitchEntityDescription, ...]] = {
icon="mdi:lotion-plus", icon="mdi:lotion-plus",
translation_key="hygiene", translation_key="hygiene",
), ),
HonConfigSwitchEntityDescription(
key="startProgram.anticrease",
name="Anti-Crease",
icon="mdi:iron",
translation_key="anti_crease",
),
), ),
"TD": ( "TD": (
HonControlSwitchEntityDescription( HonControlSwitchEntityDescription(
@ -143,7 +163,13 @@ SWITCHES: dict[str, tuple[HonSwitchEntityDescription, ...]] = {
HonConfigSwitchEntityDescription( HonConfigSwitchEntityDescription(
key="startProgram.sterilizationStatus", key="startProgram.sterilizationStatus",
name="Sterilization", name="Sterilization",
icon="mdi:clock-start", icon="mdi:lotion-plus",
),
HonConfigSwitchEntityDescription(
key="startProgram.tumblingStatus",
name="Tumbling",
icon="mdi:refresh-circle",
translation_key="keep_fresh",
), ),
HonConfigSwitchEntityDescription( HonConfigSwitchEntityDescription(
key="startProgram.antiCreaseTime", key="startProgram.antiCreaseTime",
@ -311,23 +337,17 @@ SWITCHES: dict[str, tuple[HonSwitchEntityDescription, ...]] = {
translation_key="auto_set", translation_key="auto_set",
), ),
HonSwitchEntityDescription( HonSwitchEntityDescription(
key="quickModeZ1", key="quickModeZ2",
name="Super Freeze", name="Super Freeze",
icon="mdi:snowflake-variant", icon="mdi:snowflake-variant",
translation_key="super_freeze", translation_key="super_freeze",
), ),
HonSwitchEntityDescription( HonSwitchEntityDescription(
key="quickModeZ2", key="quickModeZ1",
name="Super Cool", name="Super Cool",
icon="mdi:snowflake", icon="mdi:snowflake",
translation_key="super_cool", translation_key="super_cool",
), ),
HonSwitchEntityDescription(
key="holidayMode",
name="Holiday Mode",
icon="mdi:palm-tree",
translation_key="holiday_mode",
),
), ),
"WC": ( "WC": (
HonSwitchEntityDescription( HonSwitchEntityDescription(
@ -361,8 +381,11 @@ SWITCHES["WD"] = unique_entities(SWITCHES["WD"], SWITCHES["WM"])
SWITCHES["WD"] = unique_entities(SWITCHES["WD"], SWITCHES["TD"]) SWITCHES["WD"] = unique_entities(SWITCHES["WD"], SWITCHES["TD"])
async def async_setup_entry(hass, entry: ConfigEntry, async_add_entities) -> None: async def async_setup_entry(
hass: HomeAssistantType, entry: ConfigEntry, async_add_entities: AddEntitiesCallback
) -> None:
entities = [] entities = []
entity: HonConfigSwitchEntity | HonControlSwitchEntity | HonSwitchEntity
for device in hass.data[DOMAIN][entry.unique_id].appliances: for device in hass.data[DOMAIN][entry.unique_id].appliances:
for description in SWITCHES.get(device.appliance_type, []): for description in SWITCHES.get(device.appliance_type, []):
if isinstance(description, HonConfigSwitchEntityDescription): if isinstance(description, HonConfigSwitchEntityDescription):
@ -378,10 +401,7 @@ async def async_setup_entry(hass, entry: ConfigEntry, async_add_entities) -> Non
continue continue
entity = HonControlSwitchEntity(hass, entry, device, description) entity = HonControlSwitchEntity(hass, entry, device, description)
elif isinstance(description, HonSwitchEntityDescription): elif isinstance(description, HonSwitchEntityDescription):
if ( if f"settings.{description.key}" not in device.available_settings:
f"settings.{description.key}" not in device.available_settings
or device.get(description.key) is None
):
continue continue
entity = HonSwitchEntity(hass, entry, device, description) entity = HonSwitchEntity(hass, entry, device, description)
else: else:
@ -433,7 +453,7 @@ class HonSwitchEntity(HonEntity, SwitchEntity):
return True return True
@callback @callback
def _handle_coordinator_update(self, update=True) -> None: def _handle_coordinator_update(self, update: bool = True) -> None:
self._attr_is_on = self.is_on self._attr_is_on = self.is_on
if update: if update:
self.async_write_ha_state() self.async_write_ha_state()
@ -513,7 +533,7 @@ class HonConfigSwitchEntity(HonEntity, SwitchEntity):
await self.coordinator.async_refresh() await self.coordinator.async_refresh()
@callback @callback
def _handle_coordinator_update(self, update=True) -> None: def _handle_coordinator_update(self, update: bool = True) -> None:
self._attr_is_on = self.is_on self._attr_is_on = self.is_on
if update: if update:
self.async_write_ha_state() self.async_write_ha_state()

View File

@ -99,22 +99,25 @@
"auto_care_soil": "Auto Care", "auto_care_soil": "Auto Care",
"auto_hygiene": "Aut. Hygienický", "auto_hygiene": "Aut. Hygienický",
"auto_plus": "AutoPlus", "auto_plus": "AutoPlus",
"auto_plus_soil": "Znečištění Auto Plus",
"auto_rapid": "Aut. Rychlý", "auto_rapid": "Aut. Rychlý",
"auto_rapid_soil": "Znečištění Auto Rapid",
"auto_sensor": "Auto Sensor", "auto_sensor": "Auto Sensor",
"auto_sensor_soil": "Auto Sensor", "auto_sensor_soil": "Auto Sensor",
"auto_universal": "Auto univerzální 50 -60°C", "auto_universal": "Auto univerzální 50 -60°C",
"auto_universal_plus": "Auto univerzální plus 65 - 75°C", "auto_universal_plus": "Auto univerzální plus 65-75°C",
"auto_universal_plus_soil": "Auto univerzální plus 65 - 75°C", "auto_universal_plus_soil": "Auto univerzální plus 65-75°C",
"auto_universal_soil": "Auto univerzální 50 -60°C", "auto_universal_soil": "Auto univerzální 50 -60°C",
"auto_wash": "Automatické praní", "auto_wash": "Automatické praní",
"auto_wash_soil": "Automatické praní", "auto_wash_soil": "Automatické praní",
"classe_a_59": "A třída 1 h 65°C", "classe_a_59": "A třída 1 h 65°C",
"delicate": "Jemný 45°C", "delicate": "Jemný 45°C",
"dishwasher_care": "Cyklus odstraňování vodního kamene", "dishwasher_care": "Cyklus odstraňování vodního kamene",
"eco": "Eco", "eco": "Eko 45 °C",
"eco_asynch": "Eko 45 °C", "eco_asynch": "Eko 45 °C",
"eco_bldc": "Eko 45 °C", "eco_bldc": "Eko 45 °C",
"eco_synch": "Eko 45 °C", "eco_synch": "Eko 45 °C",
"eco_voice": "Eco",
"gentle_wash": "Gentle wash", "gentle_wash": "Gentle wash",
"glass": "Sklo", "glass": "Sklo",
"glassware": "Sklo 45 °C", "glassware": "Sklo 45 °C",
@ -123,6 +126,7 @@
"hygiene_plus": "Hygienický+ 75 °C", "hygiene_plus": "Hygienický+ 75 °C",
"intensive": "Intenzivní", "intensive": "Intenzivní",
"intensive_rapid": "intenzivní rychlý", "intensive_rapid": "intenzivní rychlý",
"intensive_voice": "Intenzivní",
"iot_auto_sensor": "Auto Sensor", "iot_auto_sensor": "Auto Sensor",
"iot_auto_universal_soil": "Auto univerzální 50 -60°C", "iot_auto_universal_soil": "Auto univerzální 50 -60°C",
"iot_auto_wash_soil": "Automatické praní", "iot_auto_wash_soil": "Automatické praní",
@ -164,6 +168,13 @@
"iot_super_wash": "Super mytí", "iot_super_wash": "Super mytí",
"iot_turbopower": "TurboPower", "iot_turbopower": "TurboPower",
"iot_universal": "Univerzální 60 °C", "iot_universal": "Univerzální 60 °C",
"iot_voice_automatic": "Automatic",
"iot_voice_delicate": "Jemný 45°C",
"iot_voice_eco": "Eko 45 °C",
"iot_voice_intensive": "Intenzivní 75°C",
"iot_voice_prewash": "Předpírka",
"iot_voice_rapid_59": "Rychlý 59'",
"iot_voice_universal": "Univerzální 60 °C",
"iot_wok_grids_maxi_pans": "Speciální pánve (Woky mřížky a veliké pánve)", "iot_wok_grids_maxi_pans": "Speciální pánve (Woky mřížky a veliké pánve)",
"iot_wok_grids_maxi_pans_soil": "Speciální pánve (Woky mřížky a veliké pánve)", "iot_wok_grids_maxi_pans_soil": "Speciální pánve (Woky mřížky a veliké pánve)",
"iot_yes_quick_cycle": "Yes Quick", "iot_yes_quick_cycle": "Yes Quick",
@ -195,6 +206,7 @@
"ultra_silent": "Ultra tichý 55°C", "ultra_silent": "Ultra tichý 55°C",
"universal": "Univerzální 60 °C", "universal": "Univerzální 60 °C",
"universal_plus": "Univerzální Plus 70 °C", "universal_plus": "Univerzální Plus 70 °C",
"zone_wash": "Flex Zone Wash",
"zoom_39": "Zoom 39 min" "zoom_39": "Zoom 39 min"
}, },
"name": "Program" "name": "Program"
@ -328,14 +340,14 @@
"hqd_bulky": "Objemné kusy", "hqd_bulky": "Objemné kusy",
"hqd_casual": "Casual", "hqd_casual": "Casual",
"hqd_cold_wind_30": "Chladný vánek 30 minut", "hqd_cold_wind_30": "Chladný vánek 30 minut",
"hqd_cold_wind_timing": "Chladný vánek", "hqd_cold_wind_timing": "Chladný vzduch",
"hqd_cotton": "Bavlna", "hqd_cotton": "Bavlna",
"hqd_curtain": "Záclony", "hqd_curtain": "Záclony",
"hqd_delicate": "Jemné", "hqd_delicate": "Jemné",
"hqd_diaper": "Pleny", "hqd_diaper": "Pleny",
"hqd_duvet": "Přikrývky", "hqd_duvet": "Prošívaná bunda ze syntetických vláken",
"hqd_feather": "Prošívané bundy", "hqd_feather": "Prošívaná bunda z přírodních vláken",
"hqd_hot_wind_timing": "Horký vzduch", "hqd_hot_wind_timing": "Dětská zavinovačka",
"hqd_hygienic": "Dezinfekce", "hqd_hygienic": "Dezinfekce",
"hqd_i_refresh": "I-Refresh", "hqd_i_refresh": "I-Refresh",
"hqd_i_refresh_pro": "I-Refresh Pro", "hqd_i_refresh_pro": "I-Refresh Pro",
@ -345,10 +357,10 @@
"hqd_mix": "Směsné", "hqd_mix": "Směsné",
"hqd_night_dry": "Sušení přes noc", "hqd_night_dry": "Sušení přes noc",
"hqd_outdoor": "Outdoor", "hqd_outdoor": "Outdoor",
"hqd_precious_cure": "Precious cure", "hqd_precious_cure": "Precious Cure",
"hqd_quick_20": "Rychlý 20", "hqd_quick_20": "Rychlý 20",
"hqd_quick_30": "Rychlý 30", "hqd_quick_30": "Rychlý 30",
"hqd_quick_dry": "Rychlé sušení 30'", "hqd_quick_dry": "30' automatické rychlé sušení",
"hqd_quilt": "Deky", "hqd_quilt": "Deky",
"hqd_refresh": "Osvěžení", "hqd_refresh": "Osvěžení",
"hqd_school_uniform": "Školní uniformy", "hqd_school_uniform": "Školní uniformy",
@ -385,6 +397,8 @@
"iot_dry_gym_fit": "Sportovní oblečení", "iot_dry_gym_fit": "Sportovní oblečení",
"iot_dry_lingerie": "Spodní prádlo", "iot_dry_lingerie": "Spodní prádlo",
"iot_dry_mixed": "Smíšené", "iot_dry_mixed": "Smíšené",
"iot_dry_pet_accessories": "Příslušenství pro domácí zvířata",
"iot_dry_pet_hair_removal": "Odstranění zvířecích chlupů (předeprání)",
"iot_dry_playsuits": "Tepláky", "iot_dry_playsuits": "Tepláky",
"iot_dry_rapid_30": "Rapid 30", "iot_dry_rapid_30": "Rapid 30",
"iot_dry_rapid_59": "Rychlý 59'.", "iot_dry_rapid_59": "Rychlý 59'.",
@ -436,9 +450,9 @@
"state": { "state": {
"20_degrees_coloured_cottons": "20° barevné a bavlněné látky", "20_degrees_coloured_cottons": "20° barevné a bavlněné látky",
"20_degrees_new_energy_label": "20 °C", "20_degrees_new_energy_label": "20 °C",
"active_steam": "Pára", "active_steam": "Pára 29'",
"active_wash": "Aktivní praní", "active_wash": "Aktivní praní 20'",
"active_wash_steam": "Aktivní praní", "active_wash_steam": "Aktivní praní 20' + pára",
"allergy_care": "Antialergická péče", "allergy_care": "Antialergická péče",
"allergy_care_pro": "Antialergická péče Pro", "allergy_care_pro": "Antialergická péče Pro",
"all_in_one_49": "Vše v jednom 49'.", "all_in_one_49": "Vše v jednom 49'.",
@ -458,19 +472,19 @@
"cottons_steam": "Bavlna + Pára", "cottons_steam": "Bavlna + Pára",
"cotton_care_59": "Cotton Care 59'", "cotton_care_59": "Cotton Care 59'",
"delicate_59": "Jemné 59'", "delicate_59": "Jemné 59'",
"delicate_silk": "Jemné hedvábí", "delicate_silk": "Jemné hedvábí 59'",
"delicate_silk_steam": "Jemné hedvábí + pára", "delicate_silk_steam": "Jemné hedvábí + pára",
"delicati_59": "Jemné 59'", "delicati_59": "Jemné 59'",
"delicati_59_steam": "Jemné 59'", "delicati_59_steam": "Jemné 59'",
"drain_spin": "Odčerpání + odstředění", "drain_spin": "Odčerpání + odstředění",
"easy_iron": "Snadné žehlení", "easy_iron": "Snadné žehlení 39'",
"eco_40_60_new_energy_label": "Eco 40-60", "eco_40_60_new_energy_label": "Eco 40-60",
"extra_care": "Extra Péče", "extra_care": "Extra Péče",
"fitness": "Cvičení Péče", "fitness": "Cvičení Péče",
"fitness_care": "Cvičení Péče", "fitness_care": "Cvičení Péče",
"fresh_care": "Svěží péče", "fresh_care": "Svěží péče 59'",
"fresh_care_steam": "Svěží péče + pára", "fresh_care_steam": "Svěží péče + pára",
"handwash_wool": "Ruční praní a vlna", "handwash_wool": "Ruční praní a vlna 48'",
"high_dry": "Bavlna - suché", "high_dry": "Bavlna - suché",
"hqd_20_degrees": "Bavlna 20 ℃", "hqd_20_degrees": "Bavlna 20 ℃",
"hqd_allergy": "Antialergická péče", "hqd_allergy": "Antialergická péče",
@ -478,13 +492,13 @@
"hqd_babycare": "Péče o děti", "hqd_babycare": "Péče o děti",
"hqd_checkup": "Kontrola", "hqd_checkup": "Kontrola",
"hqd_cottons": "Bavlna", "hqd_cottons": "Bavlna",
"hqd_delicate": "Jemné", "hqd_delicate": "Jemné 50'",
"hqd_delicate_cradle": "Jemné", "hqd_delicate_cradle": "Jemné",
"hqd_dry": "Bavlna - suché", "hqd_dry": "Bavlna - suché",
"hqd_dry_synthetics": "Směsné - suché", "hqd_dry_synthetics": "Směsné - suché",
"hqd_duvet": "Přikrývky", "hqd_duvet": "Přikrývky",
"hqd_eco_40_60_degrees": "Eco 40-60", "hqd_eco_40_60_degrees": "Eco 40-60",
"hqd_handwash_wool": "Vlna", "hqd_handwash_wool": "Vlna 40'",
"hqd_i_refresh": "i-Refresh", "hqd_i_refresh": "i-Refresh",
"hqd_mix": "Smíšené", "hqd_mix": "Smíšené",
"hqd_quick_15": "Rychlý 15'", "hqd_quick_15": "Rychlý 15'",
@ -495,7 +509,7 @@
"hqd_shirts": "Košile", "hqd_shirts": "Košile",
"hqd_smart": "Smart A.I.", "hqd_smart": "Smart A.I.",
"hqd_spin": "Odstřeďování", "hqd_spin": "Odstřeďování",
"hqd_sport": "Sportovní", "hqd_sport": "Sportovní 25'",
"hqd_super_fast": "Rychlý 39", "hqd_super_fast": "Rychlý 39",
"hqd_synthetic_and_coloured": "Syntetika", "hqd_synthetic_and_coloured": "Syntetika",
"hygiene_59": "Hygienicky Plus 59'", "hygiene_59": "Hygienicky Plus 59'",
@ -506,10 +520,11 @@
"hygiene_pro_steam": "Hygiene Pro + pára", "hygiene_pro_steam": "Hygiene Pro + pára",
"intensive_40": "Intenzivní 40°C", "intensive_40": "Intenzivní 40°C",
"intensive_40_steam": "Intenzivní 40°C + pára", "intensive_40_steam": "Intenzivní 40°C + pára",
"iot_active_steam": "Pára", "iot_active_steam": "Pára 29'",
"iot_active_wash_steam": "Aktivní praní", "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",
@ -542,17 +557,19 @@
"iot_dry_technical_fabrics": "Technické tkaniny", "iot_dry_technical_fabrics": "Technické tkaniny",
"iot_dry_warm_embrace": "Hřejivé prádlo", "iot_dry_warm_embrace": "Hřejivé prádlo",
"iot_dry_wool_dry": "Vlna - suché", "iot_dry_wool_dry": "Vlna - suché",
"iot_easy_iron": "Snadné žehlení", "iot_easy_iron": "Snadné žehlení 39'",
"iot_fresh_care_steam": "Svěží péče + pára", "iot_fresh_care_steam": "Svěží péče + pára",
"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_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'",
"iot_rapid_a_class_60_steam": "Rychlá třída A 60 + pára", "iot_rapid_a_class_60_steam": "Rychlá třída A 60 + pára",
"iot_resistant_cotton_steam": "Bavlna + Pára", "iot_resistant_cotton_steam": "Bavlna + Pára",
"iot_shirts_steam": "Košile + pára", "iot_shirts_steam": "Košile + pára",
"iot_single_item_steam": "Jedna položka + pára", "iot_single_item_steam": "Jedna položka 20' + pára",
"iot_smart_wash": "Chytré praní", "iot_smart_wash": "Chytré praní",
"iot_soft_care_steam": "Soft Care + Steam", "iot_soft_care_steam": "Soft Care + Steam",
"iot_special_39_full_load_steam": "Speciální 39' + pára", "iot_special_39_full_load_steam": "Speciální 39' + pára",
@ -586,7 +603,7 @@
"iot_wash_coloured_bed_linen": "Barevné ložní prádlo", "iot_wash_coloured_bed_linen": "Barevné ložní prádlo",
"iot_wash_coloured_bed_linen_steam": "Barevné ložní prádlo + pára", "iot_wash_coloured_bed_linen_steam": "Barevné ložní prádlo + pára",
"iot_wash_coloured_curtains": "Barevné záclony", "iot_wash_coloured_curtains": "Barevné záclony",
"iot_wash_coloured_shirts": "Barevné košile", "iot_wash_coloured_shirts": "Barevné košile 59'",
"iot_wash_coloured_shirts_steam": "Barevné košile + pára", "iot_wash_coloured_shirts_steam": "Barevné košile + pára",
"iot_wash_coloured_steam": "Barevné + Pára", "iot_wash_coloured_steam": "Barevné + Pára",
"iot_wash_coloured_tableclothes": "Barevné ubrusy", "iot_wash_coloured_tableclothes": "Barevné ubrusy",
@ -623,7 +640,7 @@
"iot_wash_down_jackets_zelig": "Prošívané bundy", "iot_wash_down_jackets_zelig": "Prošívané bundy",
"iot_wash_duvet": "Přikrývky", "iot_wash_duvet": "Přikrývky",
"iot_wash_fruit_stains": "Skvrny od ovoce", "iot_wash_fruit_stains": "Skvrny od ovoce",
"iot_wash_gym_fit": "Oděvy na cvičení", "iot_wash_gym_fit": "Oděvy na cvičení 59'",
"iot_wash_handwash": "Ruční praní", "iot_wash_handwash": "Ruční praní",
"iot_wash_handwash_colored": "Ruční praní - barevné", "iot_wash_handwash_colored": "Ruční praní - barevné",
"iot_wash_handwash_dark": "Ruční praní - tmavé", "iot_wash_handwash_dark": "Ruční praní - tmavé",
@ -668,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",
@ -686,6 +704,7 @@
"iot_wash_wool": "Vlna", "iot_wash_wool": "Vlna",
"jeans": "Džíny", "jeans": "Džíny",
"jeans_60": "Džíny", "jeans_60": "Džíny",
"jeans_60_steam": "Džíny + pára",
"low_dry": "Směsné - suché", "low_dry": "Směsné - suché",
"mixed": "Smíšené", "mixed": "Smíšené",
"mixed_and_colored_59": "Směsné a barevné 59'", "mixed_and_colored_59": "Směsné a barevné 59'",
@ -709,7 +728,7 @@
"rinse": "Máchání", "rinse": "Máchání",
"shirts_steam": "Košile + pára", "shirts_steam": "Košile + pára",
"silent_night": "Noční cyklus", "silent_night": "Noční cyklus",
"single_item": "Jedna položka", "single_item": "Jedna položka 20'",
"single_item_steam": "Jedna položka + pára", "single_item_steam": "Jedna položka + pára",
"smart_wash": "Chytré praní", "smart_wash": "Chytré praní",
"soft_care": "Měkká péče", "soft_care": "Měkká péče",
@ -725,8 +744,8 @@
"steam_39": "Pára 39'", "steam_39": "Pára 39'",
"steam_care_pro": "Steam Care Pro", "steam_care_pro": "Steam Care Pro",
"steam_care_pro_cotton": "Steam Care Pro bavlna", "steam_care_pro_cotton": "Steam Care Pro bavlna",
"steam_care_pro_delicates": "Steam Care Pro jemné", "steam_care_pro_delicates": "Steam Care Pro jemné 16'",
"steam_care_pro_synthetic": "Steam Care Pro syntetika", "steam_care_pro_synthetic": "Steam Care Pro syntetika 20'",
"steam_hygiene_plus": "Hygiena plus pára", "steam_hygiene_plus": "Hygiena plus pára",
"synthetics": "Syntetika", "synthetics": "Syntetika",
"synthetic_and_coloured": "Syntetika a barevné", "synthetic_and_coloured": "Syntetika a barevné",
@ -738,7 +757,7 @@
"wool": "Vlna", "wool": "Vlna",
"wool_and_delicates_49": "Vlna/Jemné 49'", "wool_and_delicates_49": "Vlna/Jemné 49'",
"wool_dry": "Vlna - suché", "wool_dry": "Vlna - suché",
"wool_soft_care": "Vlna & Mĕkká Péče" "wool_soft_care": "Vlna & Mĕkká Péče 48'"
}, },
"name": "Program" "name": "Program"
}, },
@ -748,20 +767,25 @@
"cheese": "Sýr", "cheese": "Sýr",
"chiller": "Quick cool", "chiller": "Quick cool",
"cold_drinks": "Soft chill", "cold_drinks": "Soft chill",
"cool_drink": "Cool Drink",
"eco": "Eco", "eco": "Eco",
"eco_mode": "Režim Eco", "eco_mode": "Režim Eco",
"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",
"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",
"sea_food": "Ready to cook meal", "sea_food": "Ready to cook meal",
"smart_mode_title": "Smart Mode",
"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",
"zero_fresh": "0° Fresh" "vegetables": "Vegetable",
"zero_fresh": "0°C Fresh"
}, },
"name": "Program" "name": "Program"
}, },
@ -887,6 +911,14 @@
}, },
"fan_speed": { "fan_speed": {
"name": "Rychlost ventilátoru" "name": "Rychlost ventilátoru"
},
"humidity_level": {
"state": {
"low": "Nízká",
"mid": "Střední",
"high": "Vysoká"
},
"name": "Úroveň vlhkosti"
} }
}, },
"select": { "select": {
@ -956,22 +988,25 @@
"auto_care_soil": "Auto Care", "auto_care_soil": "Auto Care",
"auto_hygiene": "Aut. Hygienický", "auto_hygiene": "Aut. Hygienický",
"auto_plus": "AutoPlus", "auto_plus": "AutoPlus",
"auto_plus_soil": "Znečištění Auto Plus",
"auto_rapid": "Aut. Rychlý", "auto_rapid": "Aut. Rychlý",
"auto_rapid_soil": "Znečištění Auto Rapid",
"auto_sensor": "Auto Sensor", "auto_sensor": "Auto Sensor",
"auto_sensor_soil": "Auto Sensor", "auto_sensor_soil": "Auto Sensor",
"auto_universal": "Auto univerzální 50 -60°C", "auto_universal": "Auto univerzální 50 -60°C",
"auto_universal_plus": "Auto univerzální plus 65 - 75°C", "auto_universal_plus": "Auto univerzální plus 65-75°C",
"auto_universal_plus_soil": "Auto univerzální plus 65 - 75°C", "auto_universal_plus_soil": "Auto univerzální plus 65-75°C",
"auto_universal_soil": "Auto univerzální 50 -60°C", "auto_universal_soil": "Auto univerzální 50 -60°C",
"auto_wash": "Automatické praní", "auto_wash": "Automatické praní",
"auto_wash_soil": "Automatické praní", "auto_wash_soil": "Automatické praní",
"classe_a_59": "A třída 1 h 65°C", "classe_a_59": "A třída 1 h 65°C",
"delicate": "Jemný 45°C", "delicate": "Jemný 45°C",
"dishwasher_care": "Cyklus odstraňování vodního kamene", "dishwasher_care": "Cyklus odstraňování vodního kamene",
"eco": "Eco", "eco": "Eko 45 °C",
"eco_asynch": "Eko 45 °C", "eco_asynch": "Eko 45 °C",
"eco_bldc": "Eko 45 °C", "eco_bldc": "Eko 45 °C",
"eco_synch": "Eko 45 °C", "eco_synch": "Eko 45 °C",
"eco_voice": "Eco",
"gentle_wash": "Gentle wash", "gentle_wash": "Gentle wash",
"glass": "Sklo", "glass": "Sklo",
"glassware": "Sklo 45 °C", "glassware": "Sklo 45 °C",
@ -980,6 +1015,7 @@
"hygiene_plus": "Hygienický+ 75 °C", "hygiene_plus": "Hygienický+ 75 °C",
"intensive": "Intenzivní", "intensive": "Intenzivní",
"intensive_rapid": "intenzivní rychlý", "intensive_rapid": "intenzivní rychlý",
"intensive_voice": "Intenzivní",
"iot_auto_sensor": "Auto Sensor", "iot_auto_sensor": "Auto Sensor",
"iot_auto_universal_soil": "Auto univerzální 50 -60°C", "iot_auto_universal_soil": "Auto univerzální 50 -60°C",
"iot_auto_wash_soil": "Automatické praní", "iot_auto_wash_soil": "Automatické praní",
@ -1021,6 +1057,13 @@
"iot_super_wash": "Super mytí", "iot_super_wash": "Super mytí",
"iot_turbopower": "TurboPower", "iot_turbopower": "TurboPower",
"iot_universal": "Univerzální 60 °C", "iot_universal": "Univerzální 60 °C",
"iot_voice_automatic": "Automatic",
"iot_voice_delicate": "Jemný 45°C",
"iot_voice_eco": "Eko 45 °C",
"iot_voice_intensive": "Intenzivní 75°C",
"iot_voice_prewash": "Předpírka",
"iot_voice_rapid_59": "Rychlý 59'",
"iot_voice_universal": "Univerzální 60 °C",
"iot_wok_grids_maxi_pans": "Speciální pánve (Woky mřížky a veliké pánve)", "iot_wok_grids_maxi_pans": "Speciální pánve (Woky mřížky a veliké pánve)",
"iot_wok_grids_maxi_pans_soil": "Speciální pánve (Woky mřížky a veliké pánve)", "iot_wok_grids_maxi_pans_soil": "Speciální pánve (Woky mřížky a veliké pánve)",
"iot_yes_quick_cycle": "Yes Quick", "iot_yes_quick_cycle": "Yes Quick",
@ -1052,6 +1095,7 @@
"ultra_silent": "Ultra tichý 55°C", "ultra_silent": "Ultra tichý 55°C",
"universal": "Univerzální 60 °C", "universal": "Univerzální 60 °C",
"universal_plus": "Univerzální Plus 70 °C", "universal_plus": "Univerzální Plus 70 °C",
"zone_wash": "Flex Zone Wash",
"zoom_39": "Zoom 39 min" "zoom_39": "Zoom 39 min"
}, },
"name": "Program" "name": "Program"
@ -1185,14 +1229,14 @@
"hqd_bulky": "Objemné kusy", "hqd_bulky": "Objemné kusy",
"hqd_casual": "Casual", "hqd_casual": "Casual",
"hqd_cold_wind_30": "Chladný vánek 30 minut", "hqd_cold_wind_30": "Chladný vánek 30 minut",
"hqd_cold_wind_timing": "Chladný vánek", "hqd_cold_wind_timing": "Chladný vzduch",
"hqd_cotton": "Bavlna", "hqd_cotton": "Bavlna",
"hqd_curtain": "Záclony", "hqd_curtain": "Záclony",
"hqd_delicate": "Jemné", "hqd_delicate": "Jemné",
"hqd_diaper": "Pleny", "hqd_diaper": "Pleny",
"hqd_duvet": "Přikrývky", "hqd_duvet": "Prošívaná bunda ze syntetických vláken",
"hqd_feather": "Prošívané bundy", "hqd_feather": "Prošívaná bunda z přírodních vláken",
"hqd_hot_wind_timing": "Horký vzduch", "hqd_hot_wind_timing": "Dětská zavinovačka",
"hqd_hygienic": "Dezinfekce", "hqd_hygienic": "Dezinfekce",
"hqd_i_refresh": "I-Refresh", "hqd_i_refresh": "I-Refresh",
"hqd_i_refresh_pro": "I-Refresh Pro", "hqd_i_refresh_pro": "I-Refresh Pro",
@ -1202,10 +1246,10 @@
"hqd_mix": "Směsné", "hqd_mix": "Směsné",
"hqd_night_dry": "Sušení přes noc", "hqd_night_dry": "Sušení přes noc",
"hqd_outdoor": "Outdoor", "hqd_outdoor": "Outdoor",
"hqd_precious_cure": "Precious cure", "hqd_precious_cure": "Precious Cure",
"hqd_quick_20": "Rychlý 20", "hqd_quick_20": "Rychlý 20",
"hqd_quick_30": "Rychlý 30", "hqd_quick_30": "Rychlý 30",
"hqd_quick_dry": "Rychlé sušení 30'", "hqd_quick_dry": "30' automatické rychlé sušení",
"hqd_quilt": "Deky", "hqd_quilt": "Deky",
"hqd_refresh": "Osvěžení", "hqd_refresh": "Osvěžení",
"hqd_school_uniform": "Školní uniformy", "hqd_school_uniform": "Školní uniformy",
@ -1242,6 +1286,8 @@
"iot_dry_gym_fit": "Sportovní oblečení", "iot_dry_gym_fit": "Sportovní oblečení",
"iot_dry_lingerie": "Spodní prádlo", "iot_dry_lingerie": "Spodní prádlo",
"iot_dry_mixed": "Smíšené", "iot_dry_mixed": "Smíšené",
"iot_dry_pet_accessories": "Příslušenství pro domácí zvířata",
"iot_dry_pet_hair_removal": "Odstranění zvířecích chlupů (předeprání)",
"iot_dry_playsuits": "Tepláky", "iot_dry_playsuits": "Tepláky",
"iot_dry_rapid_30": "Rapid 30", "iot_dry_rapid_30": "Rapid 30",
"iot_dry_rapid_59": "Rychlý 59'.", "iot_dry_rapid_59": "Rychlý 59'.",
@ -1293,9 +1339,9 @@
"state": { "state": {
"20_degrees_coloured_cottons": "20° barevné a bavlněné látky", "20_degrees_coloured_cottons": "20° barevné a bavlněné látky",
"20_degrees_new_energy_label": "20 °C", "20_degrees_new_energy_label": "20 °C",
"active_steam": "Pára", "active_steam": "Pára 29'",
"active_wash": "Aktivní praní", "active_wash": "Aktivní praní 20'",
"active_wash_steam": "Aktivní praní", "active_wash_steam": "Aktivní praní 20' + pára",
"allergy_care": "Antialergická péče", "allergy_care": "Antialergická péče",
"allergy_care_pro": "Antialergická péče Pro", "allergy_care_pro": "Antialergická péče Pro",
"all_in_one_49": "Vše v jednom 49'.", "all_in_one_49": "Vše v jednom 49'.",
@ -1315,19 +1361,19 @@
"cottons_steam": "Bavlna + Pára", "cottons_steam": "Bavlna + Pára",
"cotton_care_59": "Cotton Care 59'", "cotton_care_59": "Cotton Care 59'",
"delicate_59": "Jemné 59'", "delicate_59": "Jemné 59'",
"delicate_silk": "Jemné hedvábí", "delicate_silk": "Jemné hedvábí 59'",
"delicate_silk_steam": "Jemné hedvábí + pára", "delicate_silk_steam": "Jemné hedvábí + pára",
"delicati_59": "Jemné 59'", "delicati_59": "Jemné 59'",
"delicati_59_steam": "Jemné 59'", "delicati_59_steam": "Jemné 59'",
"drain_spin": "Odčerpání + odstředění", "drain_spin": "Odčerpání + odstředění",
"easy_iron": "Snadné žehlení", "easy_iron": "Snadné žehlení 39'",
"eco_40_60_new_energy_label": "Eco 40-60", "eco_40_60_new_energy_label": "Eco 40-60",
"extra_care": "Extra Péče", "extra_care": "Extra Péče",
"fitness": "Cvičení Péče", "fitness": "Cvičení Péče",
"fitness_care": "Cvičení Péče", "fitness_care": "Cvičení Péče",
"fresh_care": "Svěží péče", "fresh_care": "Svěží péče 59'",
"fresh_care_steam": "Svěží péče + pára", "fresh_care_steam": "Svěží péče + pára",
"handwash_wool": "Ruční praní a vlna", "handwash_wool": "Ruční praní a vlna 48'",
"high_dry": "Bavlna - suché", "high_dry": "Bavlna - suché",
"hqd_20_degrees": "Bavlna 20 ℃", "hqd_20_degrees": "Bavlna 20 ℃",
"hqd_allergy": "Antialergická péče", "hqd_allergy": "Antialergická péče",
@ -1335,13 +1381,13 @@
"hqd_babycare": "Péče o děti", "hqd_babycare": "Péče o děti",
"hqd_checkup": "Kontrola", "hqd_checkup": "Kontrola",
"hqd_cottons": "Bavlna", "hqd_cottons": "Bavlna",
"hqd_delicate": "Jemné", "hqd_delicate": "Jemné 50'",
"hqd_delicate_cradle": "Jemné", "hqd_delicate_cradle": "Jemné",
"hqd_dry": "Bavlna - suché", "hqd_dry": "Bavlna - suché",
"hqd_dry_synthetics": "Směsné - suché", "hqd_dry_synthetics": "Směsné - suché",
"hqd_duvet": "Přikrývky", "hqd_duvet": "Přikrývky",
"hqd_eco_40_60_degrees": "Eco 40-60", "hqd_eco_40_60_degrees": "Eco 40-60",
"hqd_handwash_wool": "Vlna", "hqd_handwash_wool": "Vlna 40'",
"hqd_i_refresh": "i-Refresh", "hqd_i_refresh": "i-Refresh",
"hqd_mix": "Smíšené", "hqd_mix": "Smíšené",
"hqd_quick_15": "Rychlý 15'", "hqd_quick_15": "Rychlý 15'",
@ -1352,7 +1398,7 @@
"hqd_shirts": "Košile", "hqd_shirts": "Košile",
"hqd_smart": "Smart A.I.", "hqd_smart": "Smart A.I.",
"hqd_spin": "Odstřeďování", "hqd_spin": "Odstřeďování",
"hqd_sport": "Sportovní", "hqd_sport": "Sportovní 25'",
"hqd_super_fast": "Rychlý 39", "hqd_super_fast": "Rychlý 39",
"hqd_synthetic_and_coloured": "Syntetika", "hqd_synthetic_and_coloured": "Syntetika",
"hygiene_59": "Hygienicky Plus 59'", "hygiene_59": "Hygienicky Plus 59'",
@ -1363,10 +1409,11 @@
"hygiene_pro_steam": "Hygiene Pro + pára", "hygiene_pro_steam": "Hygiene Pro + pára",
"intensive_40": "Intenzivní 40°C", "intensive_40": "Intenzivní 40°C",
"intensive_40_steam": "Intenzivní 40°C + pára", "intensive_40_steam": "Intenzivní 40°C + pára",
"iot_active_steam": "Pára", "iot_active_steam": "Pára 29'",
"iot_active_wash_steam": "Aktivní praní", "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",
@ -1399,17 +1446,19 @@
"iot_dry_technical_fabrics": "Technické tkaniny", "iot_dry_technical_fabrics": "Technické tkaniny",
"iot_dry_warm_embrace": "Hřejivé prádlo", "iot_dry_warm_embrace": "Hřejivé prádlo",
"iot_dry_wool_dry": "Vlna - suché", "iot_dry_wool_dry": "Vlna - suché",
"iot_easy_iron": "Snadné žehlení", "iot_easy_iron": "Snadné žehlení 39'",
"iot_fresh_care_steam": "Svěží péče + pára", "iot_fresh_care_steam": "Svěží péče + pára",
"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_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'",
"iot_rapid_a_class_60_steam": "Rychlá třída A 60 + pára", "iot_rapid_a_class_60_steam": "Rychlá třída A 60 + pára",
"iot_resistant_cotton_steam": "Bavlna + Pára", "iot_resistant_cotton_steam": "Bavlna + Pára",
"iot_shirts_steam": "Košile + pára", "iot_shirts_steam": "Košile + pára",
"iot_single_item_steam": "Jedna položka + pára", "iot_single_item_steam": "Jedna položka 20' + pára",
"iot_smart_wash": "Chytré praní", "iot_smart_wash": "Chytré praní",
"iot_soft_care_steam": "Soft Care + Steam", "iot_soft_care_steam": "Soft Care + Steam",
"iot_special_39_full_load_steam": "Speciální 39' + pára", "iot_special_39_full_load_steam": "Speciální 39' + pára",
@ -1443,7 +1492,7 @@
"iot_wash_coloured_bed_linen": "Barevné ložní prádlo", "iot_wash_coloured_bed_linen": "Barevné ložní prádlo",
"iot_wash_coloured_bed_linen_steam": "Barevné ložní prádlo + pára", "iot_wash_coloured_bed_linen_steam": "Barevné ložní prádlo + pára",
"iot_wash_coloured_curtains": "Barevné záclony", "iot_wash_coloured_curtains": "Barevné záclony",
"iot_wash_coloured_shirts": "Barevné košile", "iot_wash_coloured_shirts": "Barevné košile 59'",
"iot_wash_coloured_shirts_steam": "Barevné košile + pára", "iot_wash_coloured_shirts_steam": "Barevné košile + pára",
"iot_wash_coloured_steam": "Barevné + Pára", "iot_wash_coloured_steam": "Barevné + Pára",
"iot_wash_coloured_tableclothes": "Barevné ubrusy", "iot_wash_coloured_tableclothes": "Barevné ubrusy",
@ -1480,7 +1529,7 @@
"iot_wash_down_jackets_zelig": "Prošívané bundy", "iot_wash_down_jackets_zelig": "Prošívané bundy",
"iot_wash_duvet": "Přikrývky", "iot_wash_duvet": "Přikrývky",
"iot_wash_fruit_stains": "Skvrny od ovoce", "iot_wash_fruit_stains": "Skvrny od ovoce",
"iot_wash_gym_fit": "Oděvy na cvičení", "iot_wash_gym_fit": "Oděvy na cvičení 59'",
"iot_wash_handwash": "Ruční praní", "iot_wash_handwash": "Ruční praní",
"iot_wash_handwash_colored": "Ruční praní - barevné", "iot_wash_handwash_colored": "Ruční praní - barevné",
"iot_wash_handwash_dark": "Ruční praní - tmavé", "iot_wash_handwash_dark": "Ruční praní - tmavé",
@ -1525,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",
@ -1543,6 +1593,7 @@
"iot_wash_wool": "Vlna", "iot_wash_wool": "Vlna",
"jeans": "Džíny", "jeans": "Džíny",
"jeans_60": "Džíny", "jeans_60": "Džíny",
"jeans_60_steam": "Džíny + pára",
"low_dry": "Směsné - suché", "low_dry": "Směsné - suché",
"mixed": "Smíšené", "mixed": "Smíšené",
"mixed_and_colored_59": "Směsné a barevné 59'", "mixed_and_colored_59": "Směsné a barevné 59'",
@ -1566,7 +1617,7 @@
"rinse": "Máchání", "rinse": "Máchání",
"shirts_steam": "Košile + pára", "shirts_steam": "Košile + pára",
"silent_night": "Noční cyklus", "silent_night": "Noční cyklus",
"single_item": "Jedna položka", "single_item": "Jedna položka 20'",
"single_item_steam": "Jedna položka + pára", "single_item_steam": "Jedna položka + pára",
"smart_wash": "Chytré praní", "smart_wash": "Chytré praní",
"soft_care": "Měkká péče", "soft_care": "Měkká péče",
@ -1582,8 +1633,8 @@
"steam_39": "Pára 39'", "steam_39": "Pára 39'",
"steam_care_pro": "Steam Care Pro", "steam_care_pro": "Steam Care Pro",
"steam_care_pro_cotton": "Steam Care Pro bavlna", "steam_care_pro_cotton": "Steam Care Pro bavlna",
"steam_care_pro_delicates": "Steam Care Pro jemné", "steam_care_pro_delicates": "Steam Care Pro jemné 16'",
"steam_care_pro_synthetic": "Steam Care Pro syntetika", "steam_care_pro_synthetic": "Steam Care Pro syntetika 20'",
"steam_hygiene_plus": "Hygiena plus pára", "steam_hygiene_plus": "Hygiena plus pára",
"synthetics": "Syntetika", "synthetics": "Syntetika",
"synthetic_and_coloured": "Syntetika a barevné", "synthetic_and_coloured": "Syntetika a barevné",
@ -1595,7 +1646,7 @@
"wool": "Vlna", "wool": "Vlna",
"wool_and_delicates_49": "Vlna/Jemné 49'", "wool_and_delicates_49": "Vlna/Jemné 49'",
"wool_dry": "Vlna - suché", "wool_dry": "Vlna - suché",
"wool_soft_care": "Vlna & Mĕkká Péče" "wool_soft_care": "Vlna & Mĕkká Péče 48'"
}, },
"name": "Program" "name": "Program"
}, },
@ -1605,20 +1656,25 @@
"cheese": "Sýr", "cheese": "Sýr",
"chiller": "Quick cool", "chiller": "Quick cool",
"cold_drinks": "Soft chill", "cold_drinks": "Soft chill",
"cool_drink": "Cool Drink",
"eco": "Eco", "eco": "Eco",
"eco_mode": "Režim Eco", "eco_mode": "Režim Eco",
"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",
"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",
"sea_food": "Ready to cook meal", "sea_food": "Ready to cook meal",
"smart_mode_title": "Smart Mode",
"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",
"zero_fresh": "0° Fresh" "vegetables": "Vegetable",
"zero_fresh": "0°C Fresh"
}, },
"name": "Program" "name": "Program"
}, },
@ -1671,6 +1727,71 @@
"unknown": "unknown" "unknown": "unknown"
}, },
"name": "Míra znečištění" "name": "Míra znečištění"
},
"stain_type": {
"state": {
"baby_food": "Dětská výživa",
"bean_paste": "Fazolová polévka",
"blood": "Krev",
"blueberry": "Borůvka",
"blue_ink": "Modrý inkoust",
"butter": "Máslo",
"chili_oil": "Chilli olej",
"chili_sauce": "Chilli omáčka",
"chocolate": "Čokoláda",
"coffe": "Káva",
"coffee": "Káva",
"color_pencil": "Tužka",
"cooking_oil": "Kuchyňský olej",
"curry": "Kari",
"deodorant": "Deodorant",
"egg": "Vejce",
"fruit": "Ovoce",
"glue": "Lepidlo",
"grass": "Tráva",
"ice_cream": "Zmrzlina",
"ketchup": "Kečup",
"lip_gloss": "Lesk na rty",
"mayonnaise": "Majonéza",
"mech_grease": "Strojní mazivo",
"milk": "Mléko",
"milk_tea": "Čaj s mlékem",
"oil": "Olej",
"oil_pastel": "Olejový pastel",
"perfume": "Parfém",
"rust": "Rez",
"shoe_cream": "Krém na obuv",
"soil": "Hlína",
"soy_sauce": "Sójová Omáčka",
"stain_level": "Úroveň znečištění",
"sweat": "Skvrny od potu",
"tea": "Čaj",
"wine": "Víno",
"unknown": "unknown"
},
"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": {
@ -1928,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": {
@ -2062,6 +2186,9 @@
} }
} }
} }
},
"my_zone": {
"name": "My Zone"
} }
}, },
"fan": { "fan": {

View File

@ -33,7 +33,7 @@
"tumbling": "Auffrischen", "tumbling": "Auffrischen",
"refresh": "Auffrischen", "refresh": "Auffrischen",
"heating": "Heizung", "heating": "Heizung",
"washing": "Waschen" "washing": "Spülen"
}, },
"name": "Phase" "name": "Phase"
}, },
@ -52,7 +52,7 @@
"state": { "state": {
"ready": "Bereit", "ready": "Bereit",
"prewash": "Vorwaschen", "prewash": "Vorwaschen",
"washing": "Waschen", "washing": "Spülen",
"rinse": "Spülen", "rinse": "Spülen",
"drying": "Trocknen", "drying": "Trocknen",
"hot_rinse": "Hot rinse" "hot_rinse": "Hot rinse"
@ -99,7 +99,9 @@
"auto_care_soil": "Auto Care", "auto_care_soil": "Auto Care",
"auto_hygiene": "Auto Hygiene", "auto_hygiene": "Auto Hygiene",
"auto_plus": "AutoPlus", "auto_plus": "AutoPlus",
"auto_plus_soil": "Auto Plus Verschmutzung",
"auto_rapid": "Auto Rapid", "auto_rapid": "Auto Rapid",
"auto_rapid_soil": "Auto Rapid Verschmutzung",
"auto_sensor": "Auto Sensor", "auto_sensor": "Auto Sensor",
"auto_sensor_soil": "Auto Sensor", "auto_sensor_soil": "Auto Sensor",
"auto_universal": "AutoUniversal 50-60°C", "auto_universal": "AutoUniversal 50-60°C",
@ -111,10 +113,11 @@
"classe_a_59": "A Class 59' 65°C", "classe_a_59": "A Class 59' 65°C",
"delicate": "Delicate 45°C", "delicate": "Delicate 45°C",
"dishwasher_care": "Entkalkungsprogramm", "dishwasher_care": "Entkalkungsprogramm",
"eco": "Eco", "eco": "Eco 45°C",
"eco_asynch": "Eco 45°C", "eco_asynch": "Eco 45°C",
"eco_bldc": "Eco 45°C", "eco_bldc": "Eco 45°C",
"eco_synch": "Eco 45°C", "eco_synch": "Eco 45°C",
"eco_voice": "Eco",
"gentle_wash": "Gentle wash", "gentle_wash": "Gentle wash",
"glass": "Glas", "glass": "Glas",
"glassware": "Gläser 45 °C", "glassware": "Gläser 45 °C",
@ -123,6 +126,7 @@
"hygiene_plus": "Hygiene 75 °C", "hygiene_plus": "Hygiene 75 °C",
"intensive": "Intensiv", "intensive": "Intensiv",
"intensive_rapid": "Intensiv-Schnellspülgang", "intensive_rapid": "Intensiv-Schnellspülgang",
"intensive_voice": "Intensiv",
"iot_auto_sensor": "Auto Sensor", "iot_auto_sensor": "Auto Sensor",
"iot_auto_universal_soil": "AutoUniversal 50-60°C", "iot_auto_universal_soil": "AutoUniversal 50-60°C",
"iot_auto_wash_soil": "Auto Wash", "iot_auto_wash_soil": "Auto Wash",
@ -164,6 +168,13 @@
"iot_super_wash": "Super Wash", "iot_super_wash": "Super Wash",
"iot_turbopower": "TurboPower", "iot_turbopower": "TurboPower",
"iot_universal": "Universal 60°C", "iot_universal": "Universal 60°C",
"iot_voice_automatic": "Automatic",
"iot_voice_delicate": "Delicate 45°C",
"iot_voice_eco": "Eco 45°C",
"iot_voice_intensive": "Intensiv 75°C",
"iot_voice_prewash": "Vorspülen",
"iot_voice_rapid_59": "Rapid 59'",
"iot_voice_universal": "Universal 60°C",
"iot_wok_grids_maxi_pans": "Pfannen Spezial (Wok - Grillpfannen & Maxi-Pfannen)", "iot_wok_grids_maxi_pans": "Pfannen Spezial (Wok - Grillpfannen & Maxi-Pfannen)",
"iot_wok_grids_maxi_pans_soil": "Pfannen Spezial (Wok - Grillpfannen & Maxi-Pfannen)", "iot_wok_grids_maxi_pans_soil": "Pfannen Spezial (Wok - Grillpfannen & Maxi-Pfannen)",
"iot_yes_quick_cycle": "Yes Quick", "iot_yes_quick_cycle": "Yes Quick",
@ -195,6 +206,7 @@
"ultra_silent": "Nacht 55°C", "ultra_silent": "Nacht 55°C",
"universal": "Universal 60°C", "universal": "Universal 60°C",
"universal_plus": "Universal Plus 70 °C", "universal_plus": "Universal Plus 70 °C",
"zone_wash": "Flex Zone Wash",
"zoom_39": "Zoom 39 min" "zoom_39": "Zoom 39 min"
}, },
"name": "Programm" "name": "Programm"
@ -328,14 +340,14 @@
"hqd_bulky": "Schwere Textilien", "hqd_bulky": "Schwere Textilien",
"hqd_casual": "Casual", "hqd_casual": "Casual",
"hqd_cold_wind_30": "Kühle Brise 30 Minuten", "hqd_cold_wind_30": "Kühle Brise 30 Minuten",
"hqd_cold_wind_timing": "Kühle Brise", "hqd_cold_wind_timing": "Kalte Luft",
"hqd_cotton": "Baumwolle", "hqd_cotton": "Baumwolle",
"hqd_curtain": "Vorhänge", "hqd_curtain": "Vorhänge",
"hqd_delicate": "Feinwäsche", "hqd_delicate": "Feinwäsche",
"hqd_diaper": "Windeln", "hqd_diaper": "Windeln",
"hqd_duvet": "Bettdecke", "hqd_duvet": "Steppjacke aus synthetischer Faser",
"hqd_feather": "Daunenjacken", "hqd_feather": "Steppjacke aus Naturfaser",
"hqd_hot_wind_timing": "Heiße Luft", "hqd_hot_wind_timing": "Superschon",
"hqd_hygienic": "Desinfektion", "hqd_hygienic": "Desinfektion",
"hqd_i_refresh": "I-Refresh", "hqd_i_refresh": "I-Refresh",
"hqd_i_refresh_pro": "I-Refresh Pro", "hqd_i_refresh_pro": "I-Refresh Pro",
@ -348,7 +360,7 @@
"hqd_precious_cure": "Precious Cure", "hqd_precious_cure": "Precious Cure",
"hqd_quick_20": "Schnell 20", "hqd_quick_20": "Schnell 20",
"hqd_quick_30": "Schnell 30", "hqd_quick_30": "Schnell 30",
"hqd_quick_dry": "Schnell trocken 30'", "hqd_quick_dry": "30 Min. automatische schnelle Trocknung",
"hqd_quilt": "Steppdecken", "hqd_quilt": "Steppdecken",
"hqd_refresh": "Auffrischen", "hqd_refresh": "Auffrischen",
"hqd_school_uniform": "Schuluniform", "hqd_school_uniform": "Schuluniform",
@ -385,6 +397,8 @@
"iot_dry_gym_fit": "Gymnastik & Fitness Sportkleidung", "iot_dry_gym_fit": "Gymnastik & Fitness Sportkleidung",
"iot_dry_lingerie": "Unterwäsche", "iot_dry_lingerie": "Unterwäsche",
"iot_dry_mixed": "Gemischt", "iot_dry_mixed": "Gemischt",
"iot_dry_pet_accessories": "Zubehör für Haustiere",
"iot_dry_pet_hair_removal": "Entfernung von Tierhaaren (Vorwaschen)",
"iot_dry_playsuits": "Jumpsuits", "iot_dry_playsuits": "Jumpsuits",
"iot_dry_rapid_30": "Rapid 30", "iot_dry_rapid_30": "Rapid 30",
"iot_dry_rapid_59": "Rapid 59'.", "iot_dry_rapid_59": "Rapid 59'.",
@ -436,9 +450,9 @@
"state": { "state": {
"20_degrees_coloured_cottons": "20° Buntes und Baumwolle", "20_degrees_coloured_cottons": "20° Buntes und Baumwolle",
"20_degrees_new_energy_label": "20°C", "20_degrees_new_energy_label": "20°C",
"active_steam": "Dampf", "active_steam": "Dampf 29'",
"active_wash": "Active Wash", "active_wash": "Active Wash 20'",
"active_wash_steam": "Active Wash", "active_wash_steam": "Active Wash 20' + Dampf",
"allergy_care": "Allergy Care", "allergy_care": "Allergy Care",
"allergy_care_pro": "Allergy Care Pro", "allergy_care_pro": "Allergy Care Pro",
"all_in_one_49": "All in One 49'", "all_in_one_49": "All in One 49'",
@ -458,19 +472,19 @@
"cottons_steam": "Baumwolle + Dampf", "cottons_steam": "Baumwolle + Dampf",
"cotton_care_59": "Cotton Care 59 Min", "cotton_care_59": "Cotton Care 59 Min",
"delicate_59": "Feines 59'", "delicate_59": "Feines 59'",
"delicate_silk": "Empfindliche Seide", "delicate_silk": "Empfindliche Seide 59'",
"delicate_silk_steam": "Empfindliche Seide + Dampf", "delicate_silk_steam": "Empfindliche Seide + Dampf",
"delicati_59": "Feines 59'", "delicati_59": "Feines 59'",
"delicati_59_steam": "Feines 59'", "delicati_59_steam": "Feines 59'",
"drain_spin": "Abpumpen und Schleudern", "drain_spin": "Abpumpen und Schleudern",
"easy_iron": "Bügeltrocken", "easy_iron": "Bügeltrocken 39'",
"eco_40_60_new_energy_label": "ECO 40-60", "eco_40_60_new_energy_label": "ECO 40-60",
"extra_care": "Extra Care", "extra_care": "Extra Care",
"fitness": "Fitness Care", "fitness": "Fitness Care",
"fitness_care": "Fitness Care", "fitness_care": "Fitness Care",
"fresh_care": "Fresh Care", "fresh_care": "Fresh Care 59'",
"fresh_care_steam": "Fresh Care + Dampf", "fresh_care_steam": "Fresh Care + Dampf",
"handwash_wool": "Handwäsche und Wolle", "handwash_wool": "Handwäsche und Wolle 48'",
"high_dry": "Baumwolle trocken", "high_dry": "Baumwolle trocken",
"hqd_20_degrees": "Baumwolle 20℃", "hqd_20_degrees": "Baumwolle 20℃",
"hqd_allergy": "Allergy Care", "hqd_allergy": "Allergy Care",
@ -478,13 +492,13 @@
"hqd_babycare": "Baby Care", "hqd_babycare": "Baby Care",
"hqd_checkup": "Check-up", "hqd_checkup": "Check-up",
"hqd_cottons": "Baumwolle", "hqd_cottons": "Baumwolle",
"hqd_delicate": "Feinwäsche", "hqd_delicate": "Feinwäsche 50'",
"hqd_delicate_cradle": "Feinwäsche", "hqd_delicate_cradle": "Feinwäsche",
"hqd_dry": "Baumwolle trocken", "hqd_dry": "Baumwolle trocken",
"hqd_dry_synthetics": "Trocknen gemischt", "hqd_dry_synthetics": "Trocknen gemischt",
"hqd_duvet": "Oberbetten", "hqd_duvet": "Oberbetten",
"hqd_eco_40_60_degrees": "ECO 40-60", "hqd_eco_40_60_degrees": "ECO 40-60",
"hqd_handwash_wool": "Wolle", "hqd_handwash_wool": "Wolle 40'",
"hqd_i_refresh": "i-Refresh", "hqd_i_refresh": "i-Refresh",
"hqd_mix": "Gemischt", "hqd_mix": "Gemischt",
"hqd_quick_15": "Rapid 15'", "hqd_quick_15": "Rapid 15'",
@ -495,7 +509,7 @@
"hqd_shirts": "Hemden", "hqd_shirts": "Hemden",
"hqd_smart": "Smart A.I.", "hqd_smart": "Smart A.I.",
"hqd_spin": "Schleudern", "hqd_spin": "Schleudern",
"hqd_sport": "Sport", "hqd_sport": "Sport 25'",
"hqd_super_fast": "Rapid 39", "hqd_super_fast": "Rapid 39",
"hqd_synthetic_and_coloured": "Synthetik", "hqd_synthetic_and_coloured": "Synthetik",
"hygiene_59": "Hygiene Plus 59'", "hygiene_59": "Hygiene Plus 59'",
@ -506,10 +520,11 @@
"hygiene_pro_steam": "Hygiene Pro + Dampf", "hygiene_pro_steam": "Hygiene Pro + Dampf",
"intensive_40": "Intensiv 40°C", "intensive_40": "Intensiv 40°C",
"intensive_40_steam": "Intensiv 40°C + Dampf", "intensive_40_steam": "Intensiv 40°C + Dampf",
"iot_active_steam": "Dampf", "iot_active_steam": "Dampf 29'",
"iot_active_wash_steam": "Active Wash", "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",
@ -542,17 +557,19 @@
"iot_dry_technical_fabrics": "Technische Textilien", "iot_dry_technical_fabrics": "Technische Textilien",
"iot_dry_warm_embrace": "Warm trocknen", "iot_dry_warm_embrace": "Warm trocknen",
"iot_dry_wool_dry": "Wolle trocknen", "iot_dry_wool_dry": "Wolle trocknen",
"iot_easy_iron": "Bügeltrocken", "iot_easy_iron": "Bügeltrocken 39'",
"iot_fresh_care_steam": "Fresh Care + Dampf", "iot_fresh_care_steam": "Fresh Care + Dampf",
"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_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'",
"iot_rapid_a_class_60_steam": "Rapid Klasse A 60 + Dampf", "iot_rapid_a_class_60_steam": "Rapid Klasse A 60 + Dampf",
"iot_resistant_cotton_steam": "Baumwolle + Dampf", "iot_resistant_cotton_steam": "Baumwolle + Dampf",
"iot_shirts_steam": "Hemden + Dampf", "iot_shirts_steam": "Hemden + Dampf",
"iot_single_item_steam": "Einzelner Gegenstand + Dampf", "iot_single_item_steam": "Einzelner Gegenstand 20' + Dampf",
"iot_smart_wash": "Smart Wash", "iot_smart_wash": "Smart Wash",
"iot_soft_care_steam": "Soft Care + Steam", "iot_soft_care_steam": "Soft Care + Steam",
"iot_special_39_full_load_steam": "Special 39' + Dampf", "iot_special_39_full_load_steam": "Special 39' + Dampf",
@ -586,7 +603,7 @@
"iot_wash_coloured_bed_linen": "Bunte Bettwäsche", "iot_wash_coloured_bed_linen": "Bunte Bettwäsche",
"iot_wash_coloured_bed_linen_steam": "Bunte Bettwäsche + Dampf", "iot_wash_coloured_bed_linen_steam": "Bunte Bettwäsche + Dampf",
"iot_wash_coloured_curtains": "Bunte Vorhänge", "iot_wash_coloured_curtains": "Bunte Vorhänge",
"iot_wash_coloured_shirts": "Farbige Hemden", "iot_wash_coloured_shirts": "Farbige Hemden 59'",
"iot_wash_coloured_shirts_steam": "Farbige Hemden + Dampf", "iot_wash_coloured_shirts_steam": "Farbige Hemden + Dampf",
"iot_wash_coloured_steam": "Buntes + Dampf", "iot_wash_coloured_steam": "Buntes + Dampf",
"iot_wash_coloured_tableclothes": "Farbige Tischtücher", "iot_wash_coloured_tableclothes": "Farbige Tischtücher",
@ -623,7 +640,7 @@
"iot_wash_down_jackets_zelig": "Daunenjacken", "iot_wash_down_jackets_zelig": "Daunenjacken",
"iot_wash_duvet": "Oberbetten", "iot_wash_duvet": "Oberbetten",
"iot_wash_fruit_stains": "Obstflecken", "iot_wash_fruit_stains": "Obstflecken",
"iot_wash_gym_fit": "Fitness-Studio - Fitness-Kleidung", "iot_wash_gym_fit": "Fitness-Studio - Fitness-Kleidung 59'",
"iot_wash_handwash": "Handwäsche", "iot_wash_handwash": "Handwäsche",
"iot_wash_handwash_colored": "Bunte Handwäsche", "iot_wash_handwash_colored": "Bunte Handwäsche",
"iot_wash_handwash_dark": "Dunkle Handwäsche", "iot_wash_handwash_dark": "Dunkle Handwäsche",
@ -668,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",
@ -686,6 +704,7 @@
"iot_wash_wool": "Wolle", "iot_wash_wool": "Wolle",
"jeans": "Jeans", "jeans": "Jeans",
"jeans_60": "Jeans", "jeans_60": "Jeans",
"jeans_60_steam": "Jeans + Dampf",
"low_dry": "Trocknen gemischt", "low_dry": "Trocknen gemischt",
"mixed": "Gemischt", "mixed": "Gemischt",
"mixed_and_colored_59": "Gemischt und Farben 59'", "mixed_and_colored_59": "Gemischt und Farben 59'",
@ -709,7 +728,7 @@
"rinse": "Spülen", "rinse": "Spülen",
"shirts_steam": "Hemden + Dampf", "shirts_steam": "Hemden + Dampf",
"silent_night": "Zyklus über Nacht", "silent_night": "Zyklus über Nacht",
"single_item": "Einzelner Gegenstand", "single_item": "Einzelner Gegenstand 20'",
"single_item_steam": "Einzelner Gegenstand + Dampf", "single_item_steam": "Einzelner Gegenstand + Dampf",
"smart_wash": "Smart Wash", "smart_wash": "Smart Wash",
"soft_care": "Sanfte Pflege", "soft_care": "Sanfte Pflege",
@ -725,8 +744,8 @@
"steam_39": "Dampf 39'", "steam_39": "Dampf 39'",
"steam_care_pro": "Steam Care Pro", "steam_care_pro": "Steam Care Pro",
"steam_care_pro_cotton": "Steam Care Pro - Baumwolle", "steam_care_pro_cotton": "Steam Care Pro - Baumwolle",
"steam_care_pro_delicates": "Steam Care Pro - Feinwäsche", "steam_care_pro_delicates": "Steam Care Pro - Feinwäsche 16'",
"steam_care_pro_synthetic": "Steam Care Pro - Synthetik", "steam_care_pro_synthetic": "Steam Care Pro - Synthetik 20'",
"steam_hygiene_plus": "Hygiene Plus Dampf", "steam_hygiene_plus": "Hygiene Plus Dampf",
"synthetics": "Synthetik", "synthetics": "Synthetik",
"synthetic_and_coloured": "Synthetik und Farben", "synthetic_and_coloured": "Synthetik und Farben",
@ -738,7 +757,7 @@
"wool": "Wolle", "wool": "Wolle",
"wool_and_delicates_49": "Wolle/Feinwäsche 49'", "wool_and_delicates_49": "Wolle/Feinwäsche 49'",
"wool_dry": "Wolle trocknen", "wool_dry": "Wolle trocknen",
"wool_soft_care": "Wolle & Soft Care" "wool_soft_care": "Wolle & Soft Care 48'"
}, },
"name": "Programm" "name": "Programm"
}, },
@ -748,20 +767,25 @@
"cheese": "Käse", "cheese": "Käse",
"chiller": "Quick cool", "chiller": "Quick cool",
"cold_drinks": "Soft chill", "cold_drinks": "Soft chill",
"cool_drink": "Cool Drink",
"eco": "Eco", "eco": "Eco",
"eco_mode": "Eco-Modus", "eco_mode": "Eco-Modus",
"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",
"no_mode_selected": "Kein Modus ausgewählt", "no_mode_selected": "Kein Modus ausgewählt",
"quick_cool": "SCHNELLKÜHLUNG", "quick_cool": "SCHNELLKÜHLUNG",
"sea_food": "Ready to cook meal", "sea_food": "Ready to cook meal",
"smart_mode_title": "Smart Mode",
"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",
"zero_fresh": "0° Fresh" "vegetables": "Vegetable",
"zero_fresh": "0°C Fresh"
}, },
"name": "Programm" "name": "Programm"
}, },
@ -887,6 +911,14 @@
}, },
"fan_speed": { "fan_speed": {
"name": "Gebläsegeschwindigkeit" "name": "Gebläsegeschwindigkeit"
},
"humidity_level": {
"state": {
"low": "Niedrig",
"mid": "Mittel",
"high": "Hoch"
},
"name": "Grad der Luftfeuchtigkeit"
} }
}, },
"select": { "select": {
@ -956,7 +988,9 @@
"auto_care_soil": "Auto Care", "auto_care_soil": "Auto Care",
"auto_hygiene": "Auto Hygiene", "auto_hygiene": "Auto Hygiene",
"auto_plus": "AutoPlus", "auto_plus": "AutoPlus",
"auto_plus_soil": "Auto Plus Verschmutzung",
"auto_rapid": "Auto Rapid", "auto_rapid": "Auto Rapid",
"auto_rapid_soil": "Auto Rapid Verschmutzung",
"auto_sensor": "Auto Sensor", "auto_sensor": "Auto Sensor",
"auto_sensor_soil": "Auto Sensor", "auto_sensor_soil": "Auto Sensor",
"auto_universal": "AutoUniversal 50-60°C", "auto_universal": "AutoUniversal 50-60°C",
@ -968,10 +1002,11 @@
"classe_a_59": "A Class 59' 65°C", "classe_a_59": "A Class 59' 65°C",
"delicate": "Delicate 45°C", "delicate": "Delicate 45°C",
"dishwasher_care": "Entkalkungsprogramm", "dishwasher_care": "Entkalkungsprogramm",
"eco": "Eco", "eco": "Eco 45°C",
"eco_asynch": "Eco 45°C", "eco_asynch": "Eco 45°C",
"eco_bldc": "Eco 45°C", "eco_bldc": "Eco 45°C",
"eco_synch": "Eco 45°C", "eco_synch": "Eco 45°C",
"eco_voice": "Eco",
"gentle_wash": "Gentle wash", "gentle_wash": "Gentle wash",
"glass": "Glas", "glass": "Glas",
"glassware": "Gläser 45 °C", "glassware": "Gläser 45 °C",
@ -980,6 +1015,7 @@
"hygiene_plus": "Hygiene 75 °C", "hygiene_plus": "Hygiene 75 °C",
"intensive": "Intensiv", "intensive": "Intensiv",
"intensive_rapid": "Intensiv-Schnellspülgang", "intensive_rapid": "Intensiv-Schnellspülgang",
"intensive_voice": "Intensiv",
"iot_auto_sensor": "Auto Sensor", "iot_auto_sensor": "Auto Sensor",
"iot_auto_universal_soil": "AutoUniversal 50-60°C", "iot_auto_universal_soil": "AutoUniversal 50-60°C",
"iot_auto_wash_soil": "Auto Wash", "iot_auto_wash_soil": "Auto Wash",
@ -1021,6 +1057,13 @@
"iot_super_wash": "Super Wash", "iot_super_wash": "Super Wash",
"iot_turbopower": "TurboPower", "iot_turbopower": "TurboPower",
"iot_universal": "Universal 60°C", "iot_universal": "Universal 60°C",
"iot_voice_automatic": "Automatic",
"iot_voice_delicate": "Delicate 45°C",
"iot_voice_eco": "Eco 45°C",
"iot_voice_intensive": "Intensiv 75°C",
"iot_voice_prewash": "Vorspülen",
"iot_voice_rapid_59": "Rapid 59'",
"iot_voice_universal": "Universal 60°C",
"iot_wok_grids_maxi_pans": "Pfannen Spezial (Wok - Grillpfannen & Maxi-Pfannen)", "iot_wok_grids_maxi_pans": "Pfannen Spezial (Wok - Grillpfannen & Maxi-Pfannen)",
"iot_wok_grids_maxi_pans_soil": "Pfannen Spezial (Wok - Grillpfannen & Maxi-Pfannen)", "iot_wok_grids_maxi_pans_soil": "Pfannen Spezial (Wok - Grillpfannen & Maxi-Pfannen)",
"iot_yes_quick_cycle": "Yes Quick", "iot_yes_quick_cycle": "Yes Quick",
@ -1052,6 +1095,7 @@
"ultra_silent": "Nacht 55°C", "ultra_silent": "Nacht 55°C",
"universal": "Universal 60°C", "universal": "Universal 60°C",
"universal_plus": "Universal Plus 70 °C", "universal_plus": "Universal Plus 70 °C",
"zone_wash": "Flex Zone Wash",
"zoom_39": "Zoom 39 min" "zoom_39": "Zoom 39 min"
}, },
"name": "Programm" "name": "Programm"
@ -1185,14 +1229,14 @@
"hqd_bulky": "Schwere Textilien", "hqd_bulky": "Schwere Textilien",
"hqd_casual": "Casual", "hqd_casual": "Casual",
"hqd_cold_wind_30": "Kühle Brise 30 Minuten", "hqd_cold_wind_30": "Kühle Brise 30 Minuten",
"hqd_cold_wind_timing": "Kühle Brise", "hqd_cold_wind_timing": "Kalte Luft",
"hqd_cotton": "Baumwolle", "hqd_cotton": "Baumwolle",
"hqd_curtain": "Vorhänge", "hqd_curtain": "Vorhänge",
"hqd_delicate": "Feinwäsche", "hqd_delicate": "Feinwäsche",
"hqd_diaper": "Windeln", "hqd_diaper": "Windeln",
"hqd_duvet": "Bettdecke", "hqd_duvet": "Steppjacke aus synthetischer Faser",
"hqd_feather": "Daunenjacken", "hqd_feather": "Steppjacke aus Naturfaser",
"hqd_hot_wind_timing": "Heiße Luft", "hqd_hot_wind_timing": "Superschon",
"hqd_hygienic": "Desinfektion", "hqd_hygienic": "Desinfektion",
"hqd_i_refresh": "I-Refresh", "hqd_i_refresh": "I-Refresh",
"hqd_i_refresh_pro": "I-Refresh Pro", "hqd_i_refresh_pro": "I-Refresh Pro",
@ -1205,7 +1249,7 @@
"hqd_precious_cure": "Precious Cure", "hqd_precious_cure": "Precious Cure",
"hqd_quick_20": "Schnell 20", "hqd_quick_20": "Schnell 20",
"hqd_quick_30": "Schnell 30", "hqd_quick_30": "Schnell 30",
"hqd_quick_dry": "Schnell trocken 30'", "hqd_quick_dry": "30 Min. automatische schnelle Trocknung",
"hqd_quilt": "Steppdecken", "hqd_quilt": "Steppdecken",
"hqd_refresh": "Auffrischen", "hqd_refresh": "Auffrischen",
"hqd_school_uniform": "Schuluniform", "hqd_school_uniform": "Schuluniform",
@ -1242,6 +1286,8 @@
"iot_dry_gym_fit": "Gymnastik & Fitness Sportkleidung", "iot_dry_gym_fit": "Gymnastik & Fitness Sportkleidung",
"iot_dry_lingerie": "Unterwäsche", "iot_dry_lingerie": "Unterwäsche",
"iot_dry_mixed": "Gemischt", "iot_dry_mixed": "Gemischt",
"iot_dry_pet_accessories": "Zubehör für Haustiere",
"iot_dry_pet_hair_removal": "Entfernung von Tierhaaren (Vorwaschen)",
"iot_dry_playsuits": "Jumpsuits", "iot_dry_playsuits": "Jumpsuits",
"iot_dry_rapid_30": "Rapid 30", "iot_dry_rapid_30": "Rapid 30",
"iot_dry_rapid_59": "Rapid 59'.", "iot_dry_rapid_59": "Rapid 59'.",
@ -1293,9 +1339,9 @@
"state": { "state": {
"20_degrees_coloured_cottons": "20° Buntes und Baumwolle", "20_degrees_coloured_cottons": "20° Buntes und Baumwolle",
"20_degrees_new_energy_label": "20°C", "20_degrees_new_energy_label": "20°C",
"active_steam": "Dampf", "active_steam": "Dampf 29'",
"active_wash": "Active Wash", "active_wash": "Active Wash 20'",
"active_wash_steam": "Active Wash", "active_wash_steam": "Active Wash 20' + Dampf",
"allergy_care": "Allergy Care", "allergy_care": "Allergy Care",
"allergy_care_pro": "Allergy Care Pro", "allergy_care_pro": "Allergy Care Pro",
"all_in_one_49": "All in One 49'", "all_in_one_49": "All in One 49'",
@ -1315,19 +1361,19 @@
"cottons_steam": "Baumwolle + Dampf", "cottons_steam": "Baumwolle + Dampf",
"cotton_care_59": "Cotton Care 59 Min", "cotton_care_59": "Cotton Care 59 Min",
"delicate_59": "Feines 59'", "delicate_59": "Feines 59'",
"delicate_silk": "Empfindliche Seide", "delicate_silk": "Empfindliche Seide 59'",
"delicate_silk_steam": "Empfindliche Seide + Dampf", "delicate_silk_steam": "Empfindliche Seide + Dampf",
"delicati_59": "Feines 59'", "delicati_59": "Feines 59'",
"delicati_59_steam": "Feines 59'", "delicati_59_steam": "Feines 59'",
"drain_spin": "Abpumpen und Schleudern", "drain_spin": "Abpumpen und Schleudern",
"easy_iron": "Bügeltrocken", "easy_iron": "Bügeltrocken 39'",
"eco_40_60_new_energy_label": "ECO 40-60", "eco_40_60_new_energy_label": "ECO 40-60",
"extra_care": "Extra Care", "extra_care": "Extra Care",
"fitness": "Fitness Care", "fitness": "Fitness Care",
"fitness_care": "Fitness Care", "fitness_care": "Fitness Care",
"fresh_care": "Fresh Care", "fresh_care": "Fresh Care 59'",
"fresh_care_steam": "Fresh Care + Dampf", "fresh_care_steam": "Fresh Care + Dampf",
"handwash_wool": "Handwäsche und Wolle", "handwash_wool": "Handwäsche und Wolle 48'",
"high_dry": "Baumwolle trocken", "high_dry": "Baumwolle trocken",
"hqd_20_degrees": "Baumwolle 20℃", "hqd_20_degrees": "Baumwolle 20℃",
"hqd_allergy": "Allergy Care", "hqd_allergy": "Allergy Care",
@ -1335,13 +1381,13 @@
"hqd_babycare": "Baby Care", "hqd_babycare": "Baby Care",
"hqd_checkup": "Check-up", "hqd_checkup": "Check-up",
"hqd_cottons": "Baumwolle", "hqd_cottons": "Baumwolle",
"hqd_delicate": "Feinwäsche", "hqd_delicate": "Feinwäsche 50'",
"hqd_delicate_cradle": "Feinwäsche", "hqd_delicate_cradle": "Feinwäsche",
"hqd_dry": "Baumwolle trocken", "hqd_dry": "Baumwolle trocken",
"hqd_dry_synthetics": "Trocknen gemischt", "hqd_dry_synthetics": "Trocknen gemischt",
"hqd_duvet": "Oberbetten", "hqd_duvet": "Oberbetten",
"hqd_eco_40_60_degrees": "ECO 40-60", "hqd_eco_40_60_degrees": "ECO 40-60",
"hqd_handwash_wool": "Wolle", "hqd_handwash_wool": "Wolle 40'",
"hqd_i_refresh": "i-Refresh", "hqd_i_refresh": "i-Refresh",
"hqd_mix": "Gemischt", "hqd_mix": "Gemischt",
"hqd_quick_15": "Rapid 15'", "hqd_quick_15": "Rapid 15'",
@ -1352,7 +1398,7 @@
"hqd_shirts": "Hemden", "hqd_shirts": "Hemden",
"hqd_smart": "Smart A.I.", "hqd_smart": "Smart A.I.",
"hqd_spin": "Schleudern", "hqd_spin": "Schleudern",
"hqd_sport": "Sport", "hqd_sport": "Sport 25'",
"hqd_super_fast": "Rapid 39", "hqd_super_fast": "Rapid 39",
"hqd_synthetic_and_coloured": "Synthetik", "hqd_synthetic_and_coloured": "Synthetik",
"hygiene_59": "Hygiene Plus 59'", "hygiene_59": "Hygiene Plus 59'",
@ -1363,10 +1409,11 @@
"hygiene_pro_steam": "Hygiene Pro + Dampf", "hygiene_pro_steam": "Hygiene Pro + Dampf",
"intensive_40": "Intensiv 40°C", "intensive_40": "Intensiv 40°C",
"intensive_40_steam": "Intensiv 40°C + Dampf", "intensive_40_steam": "Intensiv 40°C + Dampf",
"iot_active_steam": "Dampf", "iot_active_steam": "Dampf 29'",
"iot_active_wash_steam": "Active Wash", "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",
@ -1399,17 +1446,19 @@
"iot_dry_technical_fabrics": "Technische Textilien", "iot_dry_technical_fabrics": "Technische Textilien",
"iot_dry_warm_embrace": "Warm trocknen", "iot_dry_warm_embrace": "Warm trocknen",
"iot_dry_wool_dry": "Wolle trocknen", "iot_dry_wool_dry": "Wolle trocknen",
"iot_easy_iron": "Bügeltrocken", "iot_easy_iron": "Bügeltrocken 39'",
"iot_fresh_care_steam": "Fresh Care + Dampf", "iot_fresh_care_steam": "Fresh Care + Dampf",
"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_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'",
"iot_rapid_a_class_60_steam": "Rapid Klasse A 60 + Dampf", "iot_rapid_a_class_60_steam": "Rapid Klasse A 60 + Dampf",
"iot_resistant_cotton_steam": "Baumwolle + Dampf", "iot_resistant_cotton_steam": "Baumwolle + Dampf",
"iot_shirts_steam": "Hemden + Dampf", "iot_shirts_steam": "Hemden + Dampf",
"iot_single_item_steam": "Einzelner Gegenstand + Dampf", "iot_single_item_steam": "Einzelner Gegenstand 20' + Dampf",
"iot_smart_wash": "Smart Wash", "iot_smart_wash": "Smart Wash",
"iot_soft_care_steam": "Soft Care + Steam", "iot_soft_care_steam": "Soft Care + Steam",
"iot_special_39_full_load_steam": "Special 39' + Dampf", "iot_special_39_full_load_steam": "Special 39' + Dampf",
@ -1443,7 +1492,7 @@
"iot_wash_coloured_bed_linen": "Bunte Bettwäsche", "iot_wash_coloured_bed_linen": "Bunte Bettwäsche",
"iot_wash_coloured_bed_linen_steam": "Bunte Bettwäsche + Dampf", "iot_wash_coloured_bed_linen_steam": "Bunte Bettwäsche + Dampf",
"iot_wash_coloured_curtains": "Bunte Vorhänge", "iot_wash_coloured_curtains": "Bunte Vorhänge",
"iot_wash_coloured_shirts": "Farbige Hemden", "iot_wash_coloured_shirts": "Farbige Hemden 59'",
"iot_wash_coloured_shirts_steam": "Farbige Hemden + Dampf", "iot_wash_coloured_shirts_steam": "Farbige Hemden + Dampf",
"iot_wash_coloured_steam": "Buntes + Dampf", "iot_wash_coloured_steam": "Buntes + Dampf",
"iot_wash_coloured_tableclothes": "Farbige Tischtücher", "iot_wash_coloured_tableclothes": "Farbige Tischtücher",
@ -1480,7 +1529,7 @@
"iot_wash_down_jackets_zelig": "Daunenjacken", "iot_wash_down_jackets_zelig": "Daunenjacken",
"iot_wash_duvet": "Oberbetten", "iot_wash_duvet": "Oberbetten",
"iot_wash_fruit_stains": "Obstflecken", "iot_wash_fruit_stains": "Obstflecken",
"iot_wash_gym_fit": "Fitness-Studio - Fitness-Kleidung", "iot_wash_gym_fit": "Fitness-Studio - Fitness-Kleidung 59'",
"iot_wash_handwash": "Handwäsche", "iot_wash_handwash": "Handwäsche",
"iot_wash_handwash_colored": "Bunte Handwäsche", "iot_wash_handwash_colored": "Bunte Handwäsche",
"iot_wash_handwash_dark": "Dunkle Handwäsche", "iot_wash_handwash_dark": "Dunkle Handwäsche",
@ -1525,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",
@ -1543,6 +1593,7 @@
"iot_wash_wool": "Wolle", "iot_wash_wool": "Wolle",
"jeans": "Jeans", "jeans": "Jeans",
"jeans_60": "Jeans", "jeans_60": "Jeans",
"jeans_60_steam": "Jeans + Dampf",
"low_dry": "Trocknen gemischt", "low_dry": "Trocknen gemischt",
"mixed": "Gemischt", "mixed": "Gemischt",
"mixed_and_colored_59": "Gemischt und Farben 59'", "mixed_and_colored_59": "Gemischt und Farben 59'",
@ -1566,7 +1617,7 @@
"rinse": "Spülen", "rinse": "Spülen",
"shirts_steam": "Hemden + Dampf", "shirts_steam": "Hemden + Dampf",
"silent_night": "Zyklus über Nacht", "silent_night": "Zyklus über Nacht",
"single_item": "Einzelner Gegenstand", "single_item": "Einzelner Gegenstand 20'",
"single_item_steam": "Einzelner Gegenstand + Dampf", "single_item_steam": "Einzelner Gegenstand + Dampf",
"smart_wash": "Smart Wash", "smart_wash": "Smart Wash",
"soft_care": "Sanfte Pflege", "soft_care": "Sanfte Pflege",
@ -1582,8 +1633,8 @@
"steam_39": "Dampf 39'", "steam_39": "Dampf 39'",
"steam_care_pro": "Steam Care Pro", "steam_care_pro": "Steam Care Pro",
"steam_care_pro_cotton": "Steam Care Pro - Baumwolle", "steam_care_pro_cotton": "Steam Care Pro - Baumwolle",
"steam_care_pro_delicates": "Steam Care Pro - Feinwäsche", "steam_care_pro_delicates": "Steam Care Pro - Feinwäsche 16'",
"steam_care_pro_synthetic": "Steam Care Pro - Synthetik", "steam_care_pro_synthetic": "Steam Care Pro - Synthetik 20'",
"steam_hygiene_plus": "Hygiene Plus Dampf", "steam_hygiene_plus": "Hygiene Plus Dampf",
"synthetics": "Synthetik", "synthetics": "Synthetik",
"synthetic_and_coloured": "Synthetik und Farben", "synthetic_and_coloured": "Synthetik und Farben",
@ -1595,7 +1646,7 @@
"wool": "Wolle", "wool": "Wolle",
"wool_and_delicates_49": "Wolle/Feinwäsche 49'", "wool_and_delicates_49": "Wolle/Feinwäsche 49'",
"wool_dry": "Wolle trocknen", "wool_dry": "Wolle trocknen",
"wool_soft_care": "Wolle & Soft Care" "wool_soft_care": "Wolle & Soft Care 48'"
}, },
"name": "Programm" "name": "Programm"
}, },
@ -1605,20 +1656,25 @@
"cheese": "Käse", "cheese": "Käse",
"chiller": "Quick cool", "chiller": "Quick cool",
"cold_drinks": "Soft chill", "cold_drinks": "Soft chill",
"cool_drink": "Cool Drink",
"eco": "Eco", "eco": "Eco",
"eco_mode": "Eco-Modus", "eco_mode": "Eco-Modus",
"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",
"no_mode_selected": "Kein Modus ausgewählt", "no_mode_selected": "Kein Modus ausgewählt",
"quick_cool": "SCHNELLKÜHLUNG", "quick_cool": "SCHNELLKÜHLUNG",
"sea_food": "Ready to cook meal", "sea_food": "Ready to cook meal",
"smart_mode_title": "Smart Mode",
"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",
"zero_fresh": "0° Fresh" "vegetables": "Vegetable",
"zero_fresh": "0°C Fresh"
}, },
"name": "Programm" "name": "Programm"
}, },
@ -1671,6 +1727,71 @@
"unknown": "unknown" "unknown": "unknown"
}, },
"name": "Verschmutzungsgrad" "name": "Verschmutzungsgrad"
},
"stain_type": {
"state": {
"baby_food": "Babynahrung",
"bean_paste": "Bohnensuppe",
"blood": "Blut",
"blueberry": "Blaubeere",
"blue_ink": "Blaue Tinte",
"butter": "Butter",
"chili_oil": "Chili-Öl",
"chili_sauce": "Chili-Sauce",
"chocolate": "Schokolade",
"coffe": "Kaffee",
"coffee": "Kaffee",
"color_pencil": "Bleistift",
"cooking_oil": "Speiseöl",
"curry": "Curry",
"deodorant": "Deodorant",
"egg": "Ei",
"fruit": "Obst",
"glue": "Klebstoff",
"grass": "Gras",
"ice_cream": "Eiscreme",
"ketchup": "Ketchup",
"lip_gloss": "Lipgloss",
"mayonnaise": "Mayonaise",
"mech_grease": "Mechanisches Fett",
"milk": "Milch",
"milk_tea": "Milchtee",
"oil": "Öl",
"oil_pastel": "Ölpastell",
"perfume": "Parfüm",
"rust": "Rostflecken",
"shoe_cream": "Schuhcreme",
"soil": "Boden",
"soy_sauce": "Sojasosse",
"stain_level": "Grad der Verschmutzung",
"sweat": "Schweiß",
"tea": "Tee",
"wine": "Wein",
"unknown": "unknown"
},
"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": {
@ -1928,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": {
@ -2062,6 +2186,9 @@
} }
} }
} }
},
"my_zone": {
"name": "My Zone"
} }
}, },
"fan": { "fan": {

View File

@ -99,22 +99,25 @@
"auto_care_soil": "Auto Care", "auto_care_soil": "Auto Care",
"auto_hygiene": "Αυτοματη Υγιεινη", "auto_hygiene": "Αυτοματη Υγιεινη",
"auto_plus": "AutoPlus", "auto_plus": "AutoPlus",
"auto_plus_soil": "Λερωμένα Auto Plus",
"auto_rapid": "Αυτοματο Γρηγορο", "auto_rapid": "Αυτοματο Γρηγορο",
"auto_rapid_soil": "Λερωμένα Auto Rapid",
"auto_sensor": "Auto Sensor", "auto_sensor": "Auto Sensor",
"auto_sensor_soil": "Auto Sensor", "auto_sensor_soil": "Auto Sensor",
"auto_universal": "αυτοματο Universal 50 - 60°C", "auto_universal": "αυτοματο Universal 50-60°C",
"auto_universal_plus": "αυτόματο Universal Plus 65 - 75°C", "auto_universal_plus": "αυτόματο Universal Plus 65-75°C",
"auto_universal_plus_soil": "αυτόματο Universal Plus 65 - 75°C", "auto_universal_plus_soil": "αυτόματο Universal Plus 65-75°C",
"auto_universal_soil": "αυτοματο Universal 50 - 60°C", "auto_universal_soil": "αυτοματο Universal 50-60°C",
"auto_wash": "Αυτόματη πλύση", "auto_wash": "Αυτόματη πλύση",
"auto_wash_soil": "Αυτόματη πλύση", "auto_wash_soil": "Αυτόματη πλύση",
"classe_a_59": "Α Class 59' 65°C", "classe_a_59": "Α Class 59' 65°C",
"delicate": "ευαισθητα 45°C", "delicate": "ευαισθητα 45°C",
"dishwasher_care": "Κύκλος καθαρισμού κλίμακας στρώματος αλάτων", "dishwasher_care": "Κύκλος καθαρισμού κλίμακας στρώματος αλάτων",
"eco": "Οικολογικό", "eco": "ECO 45°C",
"eco_asynch": "ECO 45°C", "eco_asynch": "ECO 45°C",
"eco_bldc": "ECO 45°C", "eco_bldc": "ECO 45°C",
"eco_synch": "ECO 45°C", "eco_synch": "ECO 45°C",
"eco_voice": "Eco",
"gentle_wash": "Gentle wash", "gentle_wash": "Gentle wash",
"glass": "Ποτήρι", "glass": "Ποτήρι",
"glassware": "γυαλικα 45°C", "glassware": "γυαλικα 45°C",
@ -123,8 +126,9 @@
"hygiene_plus": "Hygiene+ 75°C", "hygiene_plus": "Hygiene+ 75°C",
"intensive": "Εντατικό", "intensive": "Εντατικό",
"intensive_rapid": "δυνατο γρηγορο", "intensive_rapid": "δυνατο γρηγορο",
"intensive_voice": "Εντατικό",
"iot_auto_sensor": "Auto Sensor", "iot_auto_sensor": "Auto Sensor",
"iot_auto_universal_soil": "αυτοματο Universal 50 - 60°C", "iot_auto_universal_soil": "αυτοματο Universal 50-60°C",
"iot_auto_wash_soil": "Αυτόματη πλύση", "iot_auto_wash_soil": "Αυτόματη πλύση",
"iot_baby_care": "Φροντίδα Μωρού", "iot_baby_care": "Φροντίδα Μωρού",
"iot_breakfast": "Πρωινό", "iot_breakfast": "Πρωινό",
@ -164,6 +168,13 @@
"iot_super_wash": "Εξαιρετική Πλύση", "iot_super_wash": "Εξαιρετική Πλύση",
"iot_turbopower": "Μεγάλη Ισχύς", "iot_turbopower": "Μεγάλη Ισχύς",
"iot_universal": "γενικο 60°C", "iot_universal": "γενικο 60°C",
"iot_voice_automatic": "Automatic",
"iot_voice_delicate": "ευαισθητα 45°C",
"iot_voice_eco": "ECO 45°C",
"iot_voice_intensive": "Εντατικό 75°C",
"iot_voice_prewash": "προπλυση",
"iot_voice_rapid_59": "Γρηγορο 59'",
"iot_voice_universal": "γενικο 60°C",
"iot_wok_grids_maxi_pans": "Ειδικά Τηγάνια (Γουόκ - Σχάρες και Μεγάλα Τηγάνια)", "iot_wok_grids_maxi_pans": "Ειδικά Τηγάνια (Γουόκ - Σχάρες και Μεγάλα Τηγάνια)",
"iot_wok_grids_maxi_pans_soil": "Ειδικά Τηγάνια (Γουόκ - Σχάρες και Μεγάλα Τηγάνια)", "iot_wok_grids_maxi_pans_soil": "Ειδικά Τηγάνια (Γουόκ - Σχάρες και Μεγάλα Τηγάνια)",
"iot_yes_quick_cycle": "Yes Quick", "iot_yes_quick_cycle": "Yes Quick",
@ -189,12 +200,13 @@
"special": "σπεσιαλ", "special": "σπεσιαλ",
"special_pw_prz": "σπεσιαλ", "special_pw_prz": "σπεσιαλ",
"steam": "ατμος 75°C", "steam": "ατμος 75°C",
"steam_plus": "Επιπλέον ατμός 75° C", "steam_plus": "Επιπλέον ατμός 75°C",
"total_care": "Total Care 50°C", "total_care": "Total Care 50°C",
"ultra_silence": "Ultra Silent 55°C", "ultra_silence": "Ultra Silent 55°C",
"ultra_silent": "Ultra Silent 55°C", "ultra_silent": "Ultra Silent 55°C",
"universal": "γενικο 60°C", "universal": "γενικο 60°C",
"universal_plus": "γενικο Plus 70°C", "universal_plus": "γενικο Plus 70°C",
"zone_wash": "Flex Zone Wash",
"zoom_39": "Zoom 39 min" "zoom_39": "Zoom 39 min"
}, },
"name": "Πρόγραμμα" "name": "Πρόγραμμα"
@ -328,14 +340,14 @@
"hqd_bulky": "Ογκώδη αντικείμενα", "hqd_bulky": "Ογκώδη αντικείμενα",
"hqd_casual": "Καθημερινά ρούχα", "hqd_casual": "Καθημερινά ρούχα",
"hqd_cold_wind_30": "Δροσερό αεράκι 30 λεπτά", "hqd_cold_wind_30": "Δροσερό αεράκι 30 λεπτά",
"hqd_cold_wind_timing": "Δροσερό αεράκι", "hqd_cold_wind_timing": "Ψυχρός Αέρας",
"hqd_cotton": "Βαμβακερό", "hqd_cotton": "Βαμβακερό",
"hqd_curtain": "Κουρτίνες", "hqd_curtain": "Κουρτίνες",
"hqd_delicate": "Ευαίσθητα", "hqd_delicate": "Ευαίσθητα",
"hqd_diaper": "Πάνες", "hqd_diaper": "Πάνες",
"hqd_duvet": "Πάπλωμα", "hqd_duvet": "Καπιτονέ τζάκετ (μπουφάν) από συνθετικές ίνες",
"hqd_feather": "Φουσκωτά μπουφάν", "hqd_feather": "Καπιτονέ τζάκετ (μπουφάν) από φυσικές ίνες",
"hqd_hot_wind_timing": "Ζεστός αέρας", "hqd_hot_wind_timing": "Ζεστή Αγκαλιά",
"hqd_hygienic": "Υγιεινή", "hqd_hygienic": "Υγιεινή",
"hqd_i_refresh": "I-Refresh", "hqd_i_refresh": "I-Refresh",
"hqd_i_refresh_pro": "I-Refresh Pro", "hqd_i_refresh_pro": "I-Refresh Pro",
@ -345,10 +357,10 @@
"hqd_mix": "Μικτά", "hqd_mix": "Μικτά",
"hqd_night_dry": "Ολονύκτιο στέγνωμα", "hqd_night_dry": "Ολονύκτιο στέγνωμα",
"hqd_outdoor": "Outdoor", "hqd_outdoor": "Outdoor",
"hqd_precious_cure": "Precious cure", "hqd_precious_cure": "Precious Cure",
"hqd_quick_20": "Γρήγορα 20", "hqd_quick_20": "Γρήγορα 20",
"hqd_quick_30": "Γρήγορα 30", "hqd_quick_30": "Γρήγορα 30",
"hqd_quick_dry": "Γρήγορο στέγνωμα 30'", "hqd_quick_dry": "30' αυτόματο γρήγορο στέγνωμα",
"hqd_quilt": "Παπλώματα", "hqd_quilt": "Παπλώματα",
"hqd_refresh": "Φρεσκάρισμα", "hqd_refresh": "Φρεσκάρισμα",
"hqd_school_uniform": "Σχολική στολή", "hqd_school_uniform": "Σχολική στολή",
@ -385,6 +397,8 @@
"iot_dry_gym_fit": "Γυμναστήριο", "iot_dry_gym_fit": "Γυμναστήριο",
"iot_dry_lingerie": "Εσώρουχα", "iot_dry_lingerie": "Εσώρουχα",
"iot_dry_mixed": "Μικτά", "iot_dry_mixed": "Μικτά",
"iot_dry_pet_accessories": "Αξεσουάρ κατοικίδιων",
"iot_dry_pet_hair_removal": "Αφαίρεση τριχών κατοικίδιων ζώων (πριν από το πλύσιμο)",
"iot_dry_playsuits": "Στολές", "iot_dry_playsuits": "Στολές",
"iot_dry_rapid_30": "Rapid 30", "iot_dry_rapid_30": "Rapid 30",
"iot_dry_rapid_59": "Γρήγορο 59'.", "iot_dry_rapid_59": "Γρήγορο 59'.",
@ -436,9 +450,9 @@
"state": { "state": {
"20_degrees_coloured_cottons": "20° Χρωματιστά και Βαμβακερά", "20_degrees_coloured_cottons": "20° Χρωματιστά και Βαμβακερά",
"20_degrees_new_energy_label": "20°C", "20_degrees_new_energy_label": "20°C",
"active_steam": "Ατμός", "active_steam": "Ατμός 29'",
"active_wash": "Ενεργό πλύσιμο", "active_wash": "Ενεργό πλύσιμο 20'",
"active_wash_steam": "Ενεργό πλύσιμο", "active_wash_steam": "Ενεργό πλύσιμο 20' + Ατμός",
"allergy_care": "Φροντίδα αλλεργίας", "allergy_care": "Φροντίδα αλλεργίας",
"allergy_care_pro": "Allergy Care Επαγγελματικό", "allergy_care_pro": "Allergy Care Επαγγελματικό",
"all_in_one_49": "Όλα σε Ένα 49'.", "all_in_one_49": "Όλα σε Ένα 49'.",
@ -458,19 +472,19 @@
"cottons_steam": "Βαμβακερό + Ατμός", "cottons_steam": "Βαμβακερό + Ατμός",
"cotton_care_59": "βαμβακερα 59 λεπτα", "cotton_care_59": "βαμβακερα 59 λεπτα",
"delicate_59": "Ευαίσθητα 59'", "delicate_59": "Ευαίσθητα 59'",
"delicate_silk": "Ευαίσθητα μεταξωτά", "delicate_silk": "Ευαίσθητα μεταξωτά 59'",
"delicate_silk_steam": "Ευαίσθητα μεταξωτά + ατμός", "delicate_silk_steam": "Ευαίσθητα μεταξωτά + ατμός",
"delicati_59": "Ευαίσθητα 59'", "delicati_59": "Ευαίσθητα 59'",
"delicati_59_steam": "Ευαίσθητα 59'", "delicati_59_steam": "Ευαίσθητα 59'",
"drain_spin": "Στραγγίστε + και περιστρέψτε", "drain_spin": "Στραγγίστε + και περιστρέψτε",
"easy_iron": "ευκολο σιδερωμα", "easy_iron": "ευκολο σιδερωμα 39'",
"eco_40_60_new_energy_label": "Eco (οικολογικό) 40-60", "eco_40_60_new_energy_label": "Eco (οικολογικό) 40-60",
"extra_care": "EXTRA CARE", "extra_care": "EXTRA CARE",
"fitness": "FITNESS CARE", "fitness": "FITNESS CARE",
"fitness_care": "FITNESS CARE", "fitness_care": "FITNESS CARE",
"fresh_care": "Φρέσκια φροντίδα", "fresh_care": "Φρέσκια φροντίδα 59'",
"fresh_care_steam": "Φροντίδα φρεσκάδας + Ατμός", "fresh_care_steam": "Φροντίδα φρεσκάδας + Ατμός",
"handwash_wool": "Πλύσιμο στο χέρι και μαλλί", "handwash_wool": "Πλύσιμο στο χέρι και μαλλί 48'",
"high_dry": "Στέγνωμα βαμβακερών", "high_dry": "Στέγνωμα βαμβακερών",
"hqd_20_degrees": "Βαμβακερό 20℃", "hqd_20_degrees": "Βαμβακερό 20℃",
"hqd_allergy": "Φροντίδα αλλεργίας", "hqd_allergy": "Φροντίδα αλλεργίας",
@ -478,13 +492,13 @@
"hqd_babycare": "Φροντίδα Μωρού", "hqd_babycare": "Φροντίδα Μωρού",
"hqd_checkup": "Έλεγχος", "hqd_checkup": "Έλεγχος",
"hqd_cottons": "Βαμβακερό", "hqd_cottons": "Βαμβακερό",
"hqd_delicate": "Ευαίσθητα", "hqd_delicate": "Ευαίσθητα 50'",
"hqd_delicate_cradle": "Ευαίσθητα", "hqd_delicate_cradle": "Ευαίσθητα",
"hqd_dry": "Στέγνωμα βαμβακερών", "hqd_dry": "Στέγνωμα βαμβακερών",
"hqd_dry_synthetics": "Μικτά στέγνωμα", "hqd_dry_synthetics": "Μικτά στέγνωμα",
"hqd_duvet": "Παπλώματα", "hqd_duvet": "Παπλώματα",
"hqd_eco_40_60_degrees": "Eco (οικολογικό) 40-60", "hqd_eco_40_60_degrees": "Eco (οικολογικό) 40-60",
"hqd_handwash_wool": "Μάλλινα", "hqd_handwash_wool": "Μάλλινα 40'",
"hqd_i_refresh": "i-Refresh", "hqd_i_refresh": "i-Refresh",
"hqd_mix": "Μείγμα", "hqd_mix": "Μείγμα",
"hqd_quick_15": "Γρήγορο 15'", "hqd_quick_15": "Γρήγορο 15'",
@ -495,7 +509,7 @@
"hqd_shirts": "Πουκάμισα", "hqd_shirts": "Πουκάμισα",
"hqd_smart": "Smart A.I.", "hqd_smart": "Smart A.I.",
"hqd_spin": "Στύψιμο", "hqd_spin": "Στύψιμο",
"hqd_sport": "Αθλητικά", "hqd_sport": "Αθλητικά 25'",
"hqd_super_fast": "Γρήγορο 39", "hqd_super_fast": "Γρήγορο 39",
"hqd_synthetic_and_coloured": "Συνθετικά", "hqd_synthetic_and_coloured": "Συνθετικά",
"hygiene_59": "HYGIENE PLUS 59'", "hygiene_59": "HYGIENE PLUS 59'",
@ -506,10 +520,11 @@
"hygiene_pro_steam": "Hygiene Pro + Ατμός", "hygiene_pro_steam": "Hygiene Pro + Ατμός",
"intensive_40": "Εντατικό 40°C", "intensive_40": "Εντατικό 40°C",
"intensive_40_steam": "Εντατικό 40°C + ατμός", "intensive_40_steam": "Εντατικό 40°C + ατμός",
"iot_active_steam": "Ατμός", "iot_active_steam": "Ατμός 29'",
"iot_active_wash_steam": "Ενεργό πλύσιμο", "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": "Βαμβακερό + Ατμός",
@ -542,17 +557,19 @@
"iot_dry_technical_fabrics": "Τεχνικά υφάσματα", "iot_dry_technical_fabrics": "Τεχνικά υφάσματα",
"iot_dry_warm_embrace": "Ευαίσθητα στέγνωμα", "iot_dry_warm_embrace": "Ευαίσθητα στέγνωμα",
"iot_dry_wool_dry": "Μάλλινα στέγνωμα", "iot_dry_wool_dry": "Μάλλινα στέγνωμα",
"iot_easy_iron": "ευκολο σιδερωμα", "iot_easy_iron": "ευκολο σιδερωμα 39'",
"iot_fresh_care_steam": "Φροντίδα φρεσκάδας + Ατμός", "iot_fresh_care_steam": "Φροντίδα φρεσκάδας + Ατμός",
"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_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'",
"iot_rapid_a_class_60_steam": "Γρήγορο κατηγορίας A 60 + ατμός", "iot_rapid_a_class_60_steam": "Γρήγορο κατηγορίας A 60 + ατμός",
"iot_resistant_cotton_steam": "Βαμβακερό + Ατμός", "iot_resistant_cotton_steam": "Βαμβακερό + Ατμός",
"iot_shirts_steam": "Πουκάμισα + Ατμός", "iot_shirts_steam": "Πουκάμισα + Ατμός",
"iot_single_item_steam": "Ένα τεμάχιο + Ατμός", "iot_single_item_steam": "Ένα τεμάχιο 20' + Ατμός",
"iot_smart_wash": "Έξυπνη πλύση", "iot_smart_wash": "Έξυπνη πλύση",
"iot_soft_care_steam": "Soft Care + Steam", "iot_soft_care_steam": "Soft Care + Steam",
"iot_special_39_full_load_steam": "Ειδικό 39' + Ατμός", "iot_special_39_full_load_steam": "Ειδικό 39' + Ατμός",
@ -586,7 +603,7 @@
"iot_wash_coloured_bed_linen": "Χρωματιστά κλινοσκεπάσματα", "iot_wash_coloured_bed_linen": "Χρωματιστά κλινοσκεπάσματα",
"iot_wash_coloured_bed_linen_steam": "Χρωματιστά κλινοσκεπάσματα + ατμός", "iot_wash_coloured_bed_linen_steam": "Χρωματιστά κλινοσκεπάσματα + ατμός",
"iot_wash_coloured_curtains": "Χρωματιστές κουρτίνες", "iot_wash_coloured_curtains": "Χρωματιστές κουρτίνες",
"iot_wash_coloured_shirts": "Χρωματιστά πουκάμισα", "iot_wash_coloured_shirts": "Χρωματιστά πουκάμισα 59'",
"iot_wash_coloured_shirts_steam": "Χρωματιστά πουκάμισα + ατμός", "iot_wash_coloured_shirts_steam": "Χρωματιστά πουκάμισα + ατμός",
"iot_wash_coloured_steam": "Χρωματιστά + Ατμός", "iot_wash_coloured_steam": "Χρωματιστά + Ατμός",
"iot_wash_coloured_tableclothes": "Χρωματιστά τραπεζομάντηλα", "iot_wash_coloured_tableclothes": "Χρωματιστά τραπεζομάντηλα",
@ -623,7 +640,7 @@
"iot_wash_down_jackets_zelig": "Φουσκωτά μπουφάν", "iot_wash_down_jackets_zelig": "Φουσκωτά μπουφάν",
"iot_wash_duvet": "Παπλώματα", "iot_wash_duvet": "Παπλώματα",
"iot_wash_fruit_stains": "Λεκέδες φρούτων", "iot_wash_fruit_stains": "Λεκέδες φρούτων",
"iot_wash_gym_fit": "Φόρμες - ρούχα γυμναστικής", "iot_wash_gym_fit": "Φόρμες - ρούχα γυμναστικής 59'",
"iot_wash_handwash": "Πλύσιμο στο χέρι", "iot_wash_handwash": "Πλύσιμο στο χέρι",
"iot_wash_handwash_colored": "Πλύσιμο στο χέρι χρωματιστά", "iot_wash_handwash_colored": "Πλύσιμο στο χέρι χρωματιστά",
"iot_wash_handwash_dark": "Πλύσιμο στο χέρι σκούρα", "iot_wash_handwash_dark": "Πλύσιμο στο χέρι σκούρα",
@ -668,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": "Συνθετικά + Ατμός",
@ -686,6 +704,7 @@
"iot_wash_wool": "Μάλλινα", "iot_wash_wool": "Μάλλινα",
"jeans": "Τζιν παντελονια", "jeans": "Τζιν παντελονια",
"jeans_60": "τζιν", "jeans_60": "τζιν",
"jeans_60_steam": "Τζιν παντελόνια + ατμός",
"low_dry": "Μικτά στέγνωμα", "low_dry": "Μικτά στέγνωμα",
"mixed": "Μικτά", "mixed": "Μικτά",
"mixed_and_colored_59": "Μικτά και χρωματιστά 59'", "mixed_and_colored_59": "Μικτά και χρωματιστά 59'",
@ -709,7 +728,7 @@
"rinse": "Ξέπλυμα", "rinse": "Ξέπλυμα",
"shirts_steam": "Πουκάμισα + Ατμός", "shirts_steam": "Πουκάμισα + Ατμός",
"silent_night": "Ολονύκτιος κύκλος", "silent_night": "Ολονύκτιος κύκλος",
"single_item": "Ενιαίο στοιχείο", "single_item": "Ενιαίο στοιχείο 20'",
"single_item_steam": "Ένα τεμάχιο + Ατμός", "single_item_steam": "Ένα τεμάχιο + Ατμός",
"smart_wash": "Έξυπνη πλύση", "smart_wash": "Έξυπνη πλύση",
"soft_care": "Απαλή φροντίδα", "soft_care": "Απαλή φροντίδα",
@ -725,8 +744,8 @@
"steam_39": "Ατμός 39'", "steam_39": "Ατμός 39'",
"steam_care_pro": "Steam Care Pro", "steam_care_pro": "Steam Care Pro",
"steam_care_pro_cotton": "Steam Care Pro - Βαμβακερά", "steam_care_pro_cotton": "Steam Care Pro - Βαμβακερά",
"steam_care_pro_delicates": "Steam Care Pro - Ευαίσθητα", "steam_care_pro_delicates": "Steam Care Pro - Ευαίσθητα 16'",
"steam_care_pro_synthetic": "Steam Care Pro - Συνθετικά", "steam_care_pro_synthetic": "Steam Care Pro - Συνθετικά 20'",
"steam_hygiene_plus": "Ατμός για περισσότερο υγιεινό φαγητό", "steam_hygiene_plus": "Ατμός για περισσότερο υγιεινό φαγητό",
"synthetics": "Συνθετικά", "synthetics": "Συνθετικά",
"synthetic_and_coloured": "Συνθετικά και χρωματιστά", "synthetic_and_coloured": "Συνθετικά και χρωματιστά",
@ -738,7 +757,7 @@
"wool": "Μάλλινα", "wool": "Μάλλινα",
"wool_and_delicates_49": "μαλλινα/ευαισθητα 49'", "wool_and_delicates_49": "μαλλινα/ευαισθητα 49'",
"wool_dry": "Μάλλινα στέγνωμα", "wool_dry": "Μάλλινα στέγνωμα",
"wool_soft_care": "μαλλινα & Soft Care" "wool_soft_care": "μαλλινα & Soft Care 48'"
}, },
"name": "Πρόγραμμα" "name": "Πρόγραμμα"
}, },
@ -748,20 +767,25 @@
"cheese": "Τυρί", "cheese": "Τυρί",
"chiller": "Quick cool", "chiller": "Quick cool",
"cold_drinks": "Soft chill", "cold_drinks": "Soft chill",
"cool_drink": "Cool Drink",
"eco": "Eco", "eco": "Eco",
"eco_mode": "Λειτουργία Eco", "eco_mode": "Λειτουργία Eco",
"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",
"no_mode_selected": "Δεν επιλέχθηκε λειτουργία", "no_mode_selected": "Δεν επιλέχθηκε λειτουργία",
"quick_cool": "ΓΡΗΓΟΡΗ ΨΥΞΗ", "quick_cool": "ΓΡΗΓΟΡΗ ΨΥΞΗ",
"sea_food": "Ready to cook meal", "sea_food": "Ready to cook meal",
"smart_mode_title": "Smart Mode",
"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",
"zero_fresh": "0° Fresh" "vegetables": "Vegetable",
"zero_fresh": "0°C Fresh"
}, },
"name": "Πρόγραμμα" "name": "Πρόγραμμα"
}, },
@ -887,6 +911,14 @@
}, },
"fan_speed": { "fan_speed": {
"name": "Ταχύτητα ανεμιστήρα" "name": "Ταχύτητα ανεμιστήρα"
},
"humidity_level": {
"state": {
"low": "Χαμηλό",
"mid": "Μέτριο",
"high": "Υψηλός"
},
"name": "Επίπεδο υγρασίας"
} }
}, },
"select": { "select": {
@ -956,22 +988,25 @@
"auto_care_soil": "Auto Care", "auto_care_soil": "Auto Care",
"auto_hygiene": "Αυτοματη Υγιεινη", "auto_hygiene": "Αυτοματη Υγιεινη",
"auto_plus": "AutoPlus", "auto_plus": "AutoPlus",
"auto_plus_soil": "Λερωμένα Auto Plus",
"auto_rapid": "Αυτοματο Γρηγορο", "auto_rapid": "Αυτοματο Γρηγορο",
"auto_rapid_soil": "Λερωμένα Auto Rapid",
"auto_sensor": "Auto Sensor", "auto_sensor": "Auto Sensor",
"auto_sensor_soil": "Auto Sensor", "auto_sensor_soil": "Auto Sensor",
"auto_universal": "αυτοματο Universal 50 - 60°C", "auto_universal": "αυτοματο Universal 50-60°C",
"auto_universal_plus": "αυτόματο Universal Plus 65 - 75°C", "auto_universal_plus": "αυτόματο Universal Plus 65-75°C",
"auto_universal_plus_soil": "αυτόματο Universal Plus 65 - 75°C", "auto_universal_plus_soil": "αυτόματο Universal Plus 65-75°C",
"auto_universal_soil": "αυτοματο Universal 50 - 60°C", "auto_universal_soil": "αυτοματο Universal 50-60°C",
"auto_wash": "Αυτόματη πλύση", "auto_wash": "Αυτόματη πλύση",
"auto_wash_soil": "Αυτόματη πλύση", "auto_wash_soil": "Αυτόματη πλύση",
"classe_a_59": "Α Class 59' 65°C", "classe_a_59": "Α Class 59' 65°C",
"delicate": "ευαισθητα 45°C", "delicate": "ευαισθητα 45°C",
"dishwasher_care": "Κύκλος καθαρισμού κλίμακας στρώματος αλάτων", "dishwasher_care": "Κύκλος καθαρισμού κλίμακας στρώματος αλάτων",
"eco": "Οικολογικό", "eco": "ECO 45°C",
"eco_asynch": "ECO 45°C", "eco_asynch": "ECO 45°C",
"eco_bldc": "ECO 45°C", "eco_bldc": "ECO 45°C",
"eco_synch": "ECO 45°C", "eco_synch": "ECO 45°C",
"eco_voice": "Eco",
"gentle_wash": "Gentle wash", "gentle_wash": "Gentle wash",
"glass": "Ποτήρι", "glass": "Ποτήρι",
"glassware": "γυαλικα 45°C", "glassware": "γυαλικα 45°C",
@ -980,8 +1015,9 @@
"hygiene_plus": "Hygiene+ 75°C", "hygiene_plus": "Hygiene+ 75°C",
"intensive": "Εντατικό", "intensive": "Εντατικό",
"intensive_rapid": "δυνατο γρηγορο", "intensive_rapid": "δυνατο γρηγορο",
"intensive_voice": "Εντατικό",
"iot_auto_sensor": "Auto Sensor", "iot_auto_sensor": "Auto Sensor",
"iot_auto_universal_soil": "αυτοματο Universal 50 - 60°C", "iot_auto_universal_soil": "αυτοματο Universal 50-60°C",
"iot_auto_wash_soil": "Αυτόματη πλύση", "iot_auto_wash_soil": "Αυτόματη πλύση",
"iot_baby_care": "Φροντίδα Μωρού", "iot_baby_care": "Φροντίδα Μωρού",
"iot_breakfast": "Πρωινό", "iot_breakfast": "Πρωινό",
@ -1021,6 +1057,13 @@
"iot_super_wash": "Εξαιρετική Πλύση", "iot_super_wash": "Εξαιρετική Πλύση",
"iot_turbopower": "Μεγάλη Ισχύς", "iot_turbopower": "Μεγάλη Ισχύς",
"iot_universal": "γενικο 60°C", "iot_universal": "γενικο 60°C",
"iot_voice_automatic": "Automatic",
"iot_voice_delicate": "ευαισθητα 45°C",
"iot_voice_eco": "ECO 45°C",
"iot_voice_intensive": "Εντατικό 75°C",
"iot_voice_prewash": "προπλυση",
"iot_voice_rapid_59": "Γρηγορο 59'",
"iot_voice_universal": "γενικο 60°C",
"iot_wok_grids_maxi_pans": "Ειδικά Τηγάνια (Γουόκ - Σχάρες και Μεγάλα Τηγάνια)", "iot_wok_grids_maxi_pans": "Ειδικά Τηγάνια (Γουόκ - Σχάρες και Μεγάλα Τηγάνια)",
"iot_wok_grids_maxi_pans_soil": "Ειδικά Τηγάνια (Γουόκ - Σχάρες και Μεγάλα Τηγάνια)", "iot_wok_grids_maxi_pans_soil": "Ειδικά Τηγάνια (Γουόκ - Σχάρες και Μεγάλα Τηγάνια)",
"iot_yes_quick_cycle": "Yes Quick", "iot_yes_quick_cycle": "Yes Quick",
@ -1046,12 +1089,13 @@
"special": "σπεσιαλ", "special": "σπεσιαλ",
"special_pw_prz": "σπεσιαλ", "special_pw_prz": "σπεσιαλ",
"steam": "ατμος 75°C", "steam": "ατμος 75°C",
"steam_plus": "Επιπλέον ατμός 75° C", "steam_plus": "Επιπλέον ατμός 75°C",
"total_care": "Total Care 50°C", "total_care": "Total Care 50°C",
"ultra_silence": "Ultra Silent 55°C", "ultra_silence": "Ultra Silent 55°C",
"ultra_silent": "Ultra Silent 55°C", "ultra_silent": "Ultra Silent 55°C",
"universal": "γενικο 60°C", "universal": "γενικο 60°C",
"universal_plus": "γενικο Plus 70°C", "universal_plus": "γενικο Plus 70°C",
"zone_wash": "Flex Zone Wash",
"zoom_39": "Zoom 39 min" "zoom_39": "Zoom 39 min"
}, },
"name": "Πρόγραμμα" "name": "Πρόγραμμα"
@ -1185,14 +1229,14 @@
"hqd_bulky": "Ογκώδη αντικείμενα", "hqd_bulky": "Ογκώδη αντικείμενα",
"hqd_casual": "Καθημερινά ρούχα", "hqd_casual": "Καθημερινά ρούχα",
"hqd_cold_wind_30": "Δροσερό αεράκι 30 λεπτά", "hqd_cold_wind_30": "Δροσερό αεράκι 30 λεπτά",
"hqd_cold_wind_timing": "Δροσερό αεράκι", "hqd_cold_wind_timing": "Ψυχρός Αέρας",
"hqd_cotton": "Βαμβακερό", "hqd_cotton": "Βαμβακερό",
"hqd_curtain": "Κουρτίνες", "hqd_curtain": "Κουρτίνες",
"hqd_delicate": "Ευαίσθητα", "hqd_delicate": "Ευαίσθητα",
"hqd_diaper": "Πάνες", "hqd_diaper": "Πάνες",
"hqd_duvet": "Πάπλωμα", "hqd_duvet": "Καπιτονέ τζάκετ (μπουφάν) από συνθετικές ίνες",
"hqd_feather": "Φουσκωτά μπουφάν", "hqd_feather": "Καπιτονέ τζάκετ (μπουφάν) από φυσικές ίνες",
"hqd_hot_wind_timing": "Ζεστός αέρας", "hqd_hot_wind_timing": "Ζεστή Αγκαλιά",
"hqd_hygienic": "Υγιεινή", "hqd_hygienic": "Υγιεινή",
"hqd_i_refresh": "I-Refresh", "hqd_i_refresh": "I-Refresh",
"hqd_i_refresh_pro": "I-Refresh Pro", "hqd_i_refresh_pro": "I-Refresh Pro",
@ -1202,10 +1246,10 @@
"hqd_mix": "Μικτά", "hqd_mix": "Μικτά",
"hqd_night_dry": "Ολονύκτιο στέγνωμα", "hqd_night_dry": "Ολονύκτιο στέγνωμα",
"hqd_outdoor": "Outdoor", "hqd_outdoor": "Outdoor",
"hqd_precious_cure": "Precious cure", "hqd_precious_cure": "Precious Cure",
"hqd_quick_20": "Γρήγορα 20", "hqd_quick_20": "Γρήγορα 20",
"hqd_quick_30": "Γρήγορα 30", "hqd_quick_30": "Γρήγορα 30",
"hqd_quick_dry": "Γρήγορο στέγνωμα 30'", "hqd_quick_dry": "30' αυτόματο γρήγορο στέγνωμα",
"hqd_quilt": "Παπλώματα", "hqd_quilt": "Παπλώματα",
"hqd_refresh": "Φρεσκάρισμα", "hqd_refresh": "Φρεσκάρισμα",
"hqd_school_uniform": "Σχολική στολή", "hqd_school_uniform": "Σχολική στολή",
@ -1242,6 +1286,8 @@
"iot_dry_gym_fit": "Γυμναστήριο", "iot_dry_gym_fit": "Γυμναστήριο",
"iot_dry_lingerie": "Εσώρουχα", "iot_dry_lingerie": "Εσώρουχα",
"iot_dry_mixed": "Μικτά", "iot_dry_mixed": "Μικτά",
"iot_dry_pet_accessories": "Αξεσουάρ κατοικίδιων",
"iot_dry_pet_hair_removal": "Αφαίρεση τριχών κατοικίδιων ζώων (πριν από το πλύσιμο)",
"iot_dry_playsuits": "Στολές", "iot_dry_playsuits": "Στολές",
"iot_dry_rapid_30": "Rapid 30", "iot_dry_rapid_30": "Rapid 30",
"iot_dry_rapid_59": "Γρήγορο 59'.", "iot_dry_rapid_59": "Γρήγορο 59'.",
@ -1293,9 +1339,9 @@
"state": { "state": {
"20_degrees_coloured_cottons": "20° Χρωματιστά και Βαμβακερά", "20_degrees_coloured_cottons": "20° Χρωματιστά και Βαμβακερά",
"20_degrees_new_energy_label": "20°C", "20_degrees_new_energy_label": "20°C",
"active_steam": "Ατμός", "active_steam": "Ατμός 29'",
"active_wash": "Ενεργό πλύσιμο", "active_wash": "Ενεργό πλύσιμο 20'",
"active_wash_steam": "Ενεργό πλύσιμο", "active_wash_steam": "Ενεργό πλύσιμο 20' + Ατμός",
"allergy_care": "Φροντίδα αλλεργίας", "allergy_care": "Φροντίδα αλλεργίας",
"allergy_care_pro": "Allergy Care Επαγγελματικό", "allergy_care_pro": "Allergy Care Επαγγελματικό",
"all_in_one_49": "Όλα σε Ένα 49'.", "all_in_one_49": "Όλα σε Ένα 49'.",
@ -1315,19 +1361,19 @@
"cottons_steam": "Βαμβακερό + Ατμός", "cottons_steam": "Βαμβακερό + Ατμός",
"cotton_care_59": "βαμβακερα 59 λεπτα", "cotton_care_59": "βαμβακερα 59 λεπτα",
"delicate_59": "Ευαίσθητα 59'", "delicate_59": "Ευαίσθητα 59'",
"delicate_silk": "Ευαίσθητα μεταξωτά", "delicate_silk": "Ευαίσθητα μεταξωτά 59'",
"delicate_silk_steam": "Ευαίσθητα μεταξωτά + ατμός", "delicate_silk_steam": "Ευαίσθητα μεταξωτά + ατμός",
"delicati_59": "Ευαίσθητα 59'", "delicati_59": "Ευαίσθητα 59'",
"delicati_59_steam": "Ευαίσθητα 59'", "delicati_59_steam": "Ευαίσθητα 59'",
"drain_spin": "Στραγγίστε + και περιστρέψτε", "drain_spin": "Στραγγίστε + και περιστρέψτε",
"easy_iron": "ευκολο σιδερωμα", "easy_iron": "ευκολο σιδερωμα 39'",
"eco_40_60_new_energy_label": "Eco (οικολογικό) 40-60", "eco_40_60_new_energy_label": "Eco (οικολογικό) 40-60",
"extra_care": "EXTRA CARE", "extra_care": "EXTRA CARE",
"fitness": "FITNESS CARE", "fitness": "FITNESS CARE",
"fitness_care": "FITNESS CARE", "fitness_care": "FITNESS CARE",
"fresh_care": "Φρέσκια φροντίδα", "fresh_care": "Φρέσκια φροντίδα 59'",
"fresh_care_steam": "Φροντίδα φρεσκάδας + Ατμός", "fresh_care_steam": "Φροντίδα φρεσκάδας + Ατμός",
"handwash_wool": "Πλύσιμο στο χέρι και μαλλί", "handwash_wool": "Πλύσιμο στο χέρι και μαλλί 48'",
"high_dry": "Στέγνωμα βαμβακερών", "high_dry": "Στέγνωμα βαμβακερών",
"hqd_20_degrees": "Βαμβακερό 20℃", "hqd_20_degrees": "Βαμβακερό 20℃",
"hqd_allergy": "Φροντίδα αλλεργίας", "hqd_allergy": "Φροντίδα αλλεργίας",
@ -1335,13 +1381,13 @@
"hqd_babycare": "Φροντίδα Μωρού", "hqd_babycare": "Φροντίδα Μωρού",
"hqd_checkup": "Έλεγχος", "hqd_checkup": "Έλεγχος",
"hqd_cottons": "Βαμβακερό", "hqd_cottons": "Βαμβακερό",
"hqd_delicate": "Ευαίσθητα", "hqd_delicate": "Ευαίσθητα 50'",
"hqd_delicate_cradle": "Ευαίσθητα", "hqd_delicate_cradle": "Ευαίσθητα",
"hqd_dry": "Στέγνωμα βαμβακερών", "hqd_dry": "Στέγνωμα βαμβακερών",
"hqd_dry_synthetics": "Μικτά στέγνωμα", "hqd_dry_synthetics": "Μικτά στέγνωμα",
"hqd_duvet": "Παπλώματα", "hqd_duvet": "Παπλώματα",
"hqd_eco_40_60_degrees": "Eco (οικολογικό) 40-60", "hqd_eco_40_60_degrees": "Eco (οικολογικό) 40-60",
"hqd_handwash_wool": "Μάλλινα", "hqd_handwash_wool": "Μάλλινα 40'",
"hqd_i_refresh": "i-Refresh", "hqd_i_refresh": "i-Refresh",
"hqd_mix": "Μείγμα", "hqd_mix": "Μείγμα",
"hqd_quick_15": "Γρήγορο 15'", "hqd_quick_15": "Γρήγορο 15'",
@ -1352,7 +1398,7 @@
"hqd_shirts": "Πουκάμισα", "hqd_shirts": "Πουκάμισα",
"hqd_smart": "Smart A.I.", "hqd_smart": "Smart A.I.",
"hqd_spin": "Στύψιμο", "hqd_spin": "Στύψιμο",
"hqd_sport": "Αθλητικά", "hqd_sport": "Αθλητικά 25'",
"hqd_super_fast": "Γρήγορο 39", "hqd_super_fast": "Γρήγορο 39",
"hqd_synthetic_and_coloured": "Συνθετικά", "hqd_synthetic_and_coloured": "Συνθετικά",
"hygiene_59": "HYGIENE PLUS 59'", "hygiene_59": "HYGIENE PLUS 59'",
@ -1363,10 +1409,11 @@
"hygiene_pro_steam": "Hygiene Pro + Ατμός", "hygiene_pro_steam": "Hygiene Pro + Ατμός",
"intensive_40": "Εντατικό 40°C", "intensive_40": "Εντατικό 40°C",
"intensive_40_steam": "Εντατικό 40°C + ατμός", "intensive_40_steam": "Εντατικό 40°C + ατμός",
"iot_active_steam": "Ατμός", "iot_active_steam": "Ατμός 29'",
"iot_active_wash_steam": "Ενεργό πλύσιμο", "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": "Βαμβακερό + Ατμός",
@ -1399,17 +1446,19 @@
"iot_dry_technical_fabrics": "Τεχνικά υφάσματα", "iot_dry_technical_fabrics": "Τεχνικά υφάσματα",
"iot_dry_warm_embrace": "Ευαίσθητα στέγνωμα", "iot_dry_warm_embrace": "Ευαίσθητα στέγνωμα",
"iot_dry_wool_dry": "Μάλλινα στέγνωμα", "iot_dry_wool_dry": "Μάλλινα στέγνωμα",
"iot_easy_iron": "ευκολο σιδερωμα", "iot_easy_iron": "ευκολο σιδερωμα 39'",
"iot_fresh_care_steam": "Φροντίδα φρεσκάδας + Ατμός", "iot_fresh_care_steam": "Φροντίδα φρεσκάδας + Ατμός",
"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_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'",
"iot_rapid_a_class_60_steam": "Γρήγορο κατηγορίας A 60 + ατμός", "iot_rapid_a_class_60_steam": "Γρήγορο κατηγορίας A 60 + ατμός",
"iot_resistant_cotton_steam": "Βαμβακερό + Ατμός", "iot_resistant_cotton_steam": "Βαμβακερό + Ατμός",
"iot_shirts_steam": "Πουκάμισα + Ατμός", "iot_shirts_steam": "Πουκάμισα + Ατμός",
"iot_single_item_steam": "Ένα τεμάχιο + Ατμός", "iot_single_item_steam": "Ένα τεμάχιο 20' + Ατμός",
"iot_smart_wash": "Έξυπνη πλύση", "iot_smart_wash": "Έξυπνη πλύση",
"iot_soft_care_steam": "Soft Care + Steam", "iot_soft_care_steam": "Soft Care + Steam",
"iot_special_39_full_load_steam": "Ειδικό 39' + Ατμός", "iot_special_39_full_load_steam": "Ειδικό 39' + Ατμός",
@ -1443,7 +1492,7 @@
"iot_wash_coloured_bed_linen": "Χρωματιστά κλινοσκεπάσματα", "iot_wash_coloured_bed_linen": "Χρωματιστά κλινοσκεπάσματα",
"iot_wash_coloured_bed_linen_steam": "Χρωματιστά κλινοσκεπάσματα + ατμός", "iot_wash_coloured_bed_linen_steam": "Χρωματιστά κλινοσκεπάσματα + ατμός",
"iot_wash_coloured_curtains": "Χρωματιστές κουρτίνες", "iot_wash_coloured_curtains": "Χρωματιστές κουρτίνες",
"iot_wash_coloured_shirts": "Χρωματιστά πουκάμισα", "iot_wash_coloured_shirts": "Χρωματιστά πουκάμισα 59'",
"iot_wash_coloured_shirts_steam": "Χρωματιστά πουκάμισα + ατμός", "iot_wash_coloured_shirts_steam": "Χρωματιστά πουκάμισα + ατμός",
"iot_wash_coloured_steam": "Χρωματιστά + Ατμός", "iot_wash_coloured_steam": "Χρωματιστά + Ατμός",
"iot_wash_coloured_tableclothes": "Χρωματιστά τραπεζομάντηλα", "iot_wash_coloured_tableclothes": "Χρωματιστά τραπεζομάντηλα",
@ -1480,7 +1529,7 @@
"iot_wash_down_jackets_zelig": "Φουσκωτά μπουφάν", "iot_wash_down_jackets_zelig": "Φουσκωτά μπουφάν",
"iot_wash_duvet": "Παπλώματα", "iot_wash_duvet": "Παπλώματα",
"iot_wash_fruit_stains": "Λεκέδες φρούτων", "iot_wash_fruit_stains": "Λεκέδες φρούτων",
"iot_wash_gym_fit": "Φόρμες - ρούχα γυμναστικής", "iot_wash_gym_fit": "Φόρμες - ρούχα γυμναστικής 59'",
"iot_wash_handwash": "Πλύσιμο στο χέρι", "iot_wash_handwash": "Πλύσιμο στο χέρι",
"iot_wash_handwash_colored": "Πλύσιμο στο χέρι χρωματιστά", "iot_wash_handwash_colored": "Πλύσιμο στο χέρι χρωματιστά",
"iot_wash_handwash_dark": "Πλύσιμο στο χέρι σκούρα", "iot_wash_handwash_dark": "Πλύσιμο στο χέρι σκούρα",
@ -1525,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": "Συνθετικά + Ατμός",
@ -1543,6 +1593,7 @@
"iot_wash_wool": "Μάλλινα", "iot_wash_wool": "Μάλλινα",
"jeans": "Τζιν παντελονια", "jeans": "Τζιν παντελονια",
"jeans_60": "τζιν", "jeans_60": "τζιν",
"jeans_60_steam": "Τζιν παντελόνια + ατμός",
"low_dry": "Μικτά στέγνωμα", "low_dry": "Μικτά στέγνωμα",
"mixed": "Μικτά", "mixed": "Μικτά",
"mixed_and_colored_59": "Μικτά και χρωματιστά 59'", "mixed_and_colored_59": "Μικτά και χρωματιστά 59'",
@ -1566,7 +1617,7 @@
"rinse": "Ξέπλυμα", "rinse": "Ξέπλυμα",
"shirts_steam": "Πουκάμισα + Ατμός", "shirts_steam": "Πουκάμισα + Ατμός",
"silent_night": "Ολονύκτιος κύκλος", "silent_night": "Ολονύκτιος κύκλος",
"single_item": "Ενιαίο στοιχείο", "single_item": "Ενιαίο στοιχείο 20'",
"single_item_steam": "Ένα τεμάχιο + Ατμός", "single_item_steam": "Ένα τεμάχιο + Ατμός",
"smart_wash": "Έξυπνη πλύση", "smart_wash": "Έξυπνη πλύση",
"soft_care": "Απαλή φροντίδα", "soft_care": "Απαλή φροντίδα",
@ -1582,8 +1633,8 @@
"steam_39": "Ατμός 39'", "steam_39": "Ατμός 39'",
"steam_care_pro": "Steam Care Pro", "steam_care_pro": "Steam Care Pro",
"steam_care_pro_cotton": "Steam Care Pro - Βαμβακερά", "steam_care_pro_cotton": "Steam Care Pro - Βαμβακερά",
"steam_care_pro_delicates": "Steam Care Pro - Ευαίσθητα", "steam_care_pro_delicates": "Steam Care Pro - Ευαίσθητα 16'",
"steam_care_pro_synthetic": "Steam Care Pro - Συνθετικά", "steam_care_pro_synthetic": "Steam Care Pro - Συνθετικά 20'",
"steam_hygiene_plus": "Ατμός για περισσότερο υγιεινό φαγητό", "steam_hygiene_plus": "Ατμός για περισσότερο υγιεινό φαγητό",
"synthetics": "Συνθετικά", "synthetics": "Συνθετικά",
"synthetic_and_coloured": "Συνθετικά και χρωματιστά", "synthetic_and_coloured": "Συνθετικά και χρωματιστά",
@ -1595,7 +1646,7 @@
"wool": "Μάλλινα", "wool": "Μάλλινα",
"wool_and_delicates_49": "μαλλινα/ευαισθητα 49'", "wool_and_delicates_49": "μαλλινα/ευαισθητα 49'",
"wool_dry": "Μάλλινα στέγνωμα", "wool_dry": "Μάλλινα στέγνωμα",
"wool_soft_care": "μαλλινα & Soft Care" "wool_soft_care": "μαλλινα & Soft Care 48'"
}, },
"name": "Πρόγραμμα" "name": "Πρόγραμμα"
}, },
@ -1605,20 +1656,25 @@
"cheese": "Τυρί", "cheese": "Τυρί",
"chiller": "Quick cool", "chiller": "Quick cool",
"cold_drinks": "Soft chill", "cold_drinks": "Soft chill",
"cool_drink": "Cool Drink",
"eco": "Eco", "eco": "Eco",
"eco_mode": "Λειτουργία Eco", "eco_mode": "Λειτουργία Eco",
"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",
"no_mode_selected": "Δεν επιλέχθηκε λειτουργία", "no_mode_selected": "Δεν επιλέχθηκε λειτουργία",
"quick_cool": "ΓΡΗΓΟΡΗ ΨΥΞΗ", "quick_cool": "ΓΡΗΓΟΡΗ ΨΥΞΗ",
"sea_food": "Ready to cook meal", "sea_food": "Ready to cook meal",
"smart_mode_title": "Smart Mode",
"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",
"zero_fresh": "0° Fresh" "vegetables": "Vegetable",
"zero_fresh": "0°C Fresh"
}, },
"name": "Πρόγραμμα" "name": "Πρόγραμμα"
}, },
@ -1671,6 +1727,71 @@
"unknown": "unknown" "unknown": "unknown"
}, },
"name": "Επίπεδο βρωμιάς" "name": "Επίπεδο βρωμιάς"
},
"stain_type": {
"state": {
"baby_food": "Βρεφικές τροφές",
"bean_paste": "Σούπα φασολιών",
"blood": "Αίμα",
"blueberry": "Μπλε μύρτιλο (μπλούμπερι)",
"blue_ink": "Μπλε μελάνι",
"butter": "Βούτυρο",
"chili_oil": "Λάδι τσίλι",
"chili_sauce": "Σάλτσα τσίλι",
"chocolate": "Σοκολάτα",
"coffe": "Καφές",
"coffee": "Καφές",
"color_pencil": "Μολύβι",
"cooking_oil": "Μαγειρικό λάδι",
"curry": "Κάρι",
"deodorant": "Αποσμητικό",
"egg": "Αυγό",
"fruit": "Φρουτα",
"glue": "Κόλλα",
"grass": "Γρασίδι",
"ice_cream": "Παγωτό",
"ketchup": "Κέτσαπ",
"lip_gloss": "Lip gloss",
"mayonnaise": "Μαγιονέζα",
"mech_grease": "Λάδι μηχανής",
"milk": "Γάλα",
"milk_tea": "Τσάι με γάλα",
"oil": "Λάδι",
"oil_pastel": "Χρώμα λαδιού",
"perfume": "Άρωμα",
"rust": "Σκουριά",
"shoe_cream": "Βερνίκι παπουτσιών",
"soil": "Χώμα",
"soy_sauce": "Σαλτσα Σογιας",
"stain_level": "Επίπεδο λεκέδων",
"sweat": "Ιδρώτας",
"tea": "Τσάι",
"wine": "Κρασί",
"unknown": "unknown"
},
"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": {
@ -1928,6 +2049,9 @@
}, },
"aroma_time_off": { "aroma_time_off": {
"name": "Μεταδότης διάχυσης (ΑΠΕΝΕΡΓΟΠΟΙΗΣΗ)" "name": "Μεταδότης διάχυσης (ΑΠΕΝΕΡΓΟΠΟΙΗΣΗ)"
},
"my_zone_temp_sel": {
"name": "Στοχευμένη θερμοκρασία My Zone"
} }
}, },
"climate": { "climate": {
@ -2062,6 +2186,9 @@
} }
} }
} }
},
"my_zone": {
"name": "My Zone"
} }
}, },
"fan": { "fan": {

View File

@ -107,39 +107,41 @@
"auto_care_soil": "Auto Care", "auto_care_soil": "Auto Care",
"auto_hygiene": "Auto Hygiene", "auto_hygiene": "Auto Hygiene",
"auto_plus": "AutoPlus", "auto_plus": "AutoPlus",
"auto_plus_soil": "Auto Plus Soil", "auto_plus_soil": "Auto Plus",
"auto_rapid": "Auto Rapid", "auto_rapid": "Auto Rapid",
"auto_rapid_soil": "Auto rapid Soil", "auto_rapid_soil": "Auto Rapid",
"auto_sensor": "Auto Sensor", "auto_sensor": "Auto Sensor",
"auto_sensor_soil": "Auto Sensor", "auto_sensor_soil": "Auto Sensor",
"auto_universal": "Auto Universal 50 - 60°C", "auto_universal": "Auto Universal 50-60°C",
"auto_universal_plus": "Auto Universal+ 65 - 75°C", "auto_universal_plus": "Auto Universal Plus 65-75°C",
"auto_universal_plus_soil": "Auto Universal+ 65 - 75°C", "auto_universal_plus_soil": "Auto Universal Plus 65-75°C",
"auto_universal_soil": "Auto Universal 50 - 60°C", "auto_universal_soil": "Auto Universal 50-60°C",
"auto_wash": "Auto Wash", "auto_wash": "Auto Wash",
"auto_wash_soil": "Auto Wash", "auto_wash_soil": "Auto Wash",
"classe_a_59": "A Wash 59' 65°C", "classe_a_59": "A Wash 59' 65°C",
"delicate": "Delicate 45°C", "delicate": "Delicate 45°C",
"dishwasher_care": "Limescale cleaning", "dishwasher_care": "Limescale cleaning",
"eco": "Eco", "eco": "Eco 45°C",
"eco_asynch": "Eco 45°C", "eco_asynch": "Eco 45°C",
"eco_bldc": "Eco 45°C", "eco_bldc": "Eco 45°C",
"eco_synch": "Eco 45°C", "eco_synch": "Eco 45°C",
"eco_voice": "Eco",
"gentle_wash": "Gentle wash", "gentle_wash": "Gentle wash",
"glass": "Glass", "glass": "Glass",
"glassware": "Glassware 45°C", "glassware": "Glassware 45°C",
"glass_care": "Glass Care", "glass_care": "Glass Care",
"hygiene": "Hygiene", "hygiene": "Hygiene",
"hygiene_plus": "Hygiene+ 75°C", "hygiene_plus": "Hygiene Plus 75°C",
"intensive": "Intensive", "intensive": "Intensive",
"intensive_rapid": "Intensive Rapid", "intensive_rapid": "Intensive Rapid",
"intensive_voice": "Intensive",
"iot_auto_sensor": "Auto Sensor", "iot_auto_sensor": "Auto Sensor",
"iot_auto_universal_soil": "Auto Universal 50 - 60°C", "iot_auto_universal_soil": "Auto Universal 50-60°C",
"iot_auto_wash_soil": "Auto Wash", "iot_auto_wash_soil": "Auto Wash",
"iot_baby_care": "Baby Care", "iot_baby_care": "Baby Care",
"iot_breakfast": "Breakfast", "iot_breakfast": "Breakfast",
"iot_checkup": "Check-Up", "iot_checkup": "Check-Up",
"iot_china_crystals": "China Crystals", "iot_china_crystals": "Crystals",
"iot_classe_a_59": "Rapid 59'", "iot_classe_a_59": "Rapid 59'",
"iot_cocktail_glasses": "Coktail Glasses", "iot_cocktail_glasses": "Coktail Glasses",
"iot_cocktail_glasses_soil": "Coktail Glasses", "iot_cocktail_glasses_soil": "Coktail Glasses",
@ -158,6 +160,7 @@
"iot_jar_quick_cycle": "Jar Quick", "iot_jar_quick_cycle": "Jar Quick",
"iot_party": "Party", "iot_party": "Party",
"iot_party_soil": "Party", "iot_party_soil": "Party",
"iot_pet_bowls_toys": "Pet Bowls and Toys",
"iot_pizza_menu": "Pizza Menu", "iot_pizza_menu": "Pizza Menu",
"iot_pizza_menu_soil": "Pizza Menu", "iot_pizza_menu_soil": "Pizza Menu",
"iot_plastic_tupperware": "Plastic & Tupperware", "iot_plastic_tupperware": "Plastic & Tupperware",
@ -174,6 +177,14 @@
"iot_super_wash": "Super Wash", "iot_super_wash": "Super Wash",
"iot_turbopower": "TurboPower", "iot_turbopower": "TurboPower",
"iot_universal": "Universal 60°C", "iot_universal": "Universal 60°C",
"iot_voice_automatic": "Automatic",
"iot_voice_delicate": "Delicate 45°C",
"iot_voice_eco": "Eco 45°C",
"iot_voice_eco_bldc": "Eco 45°C",
"iot_voice_intensive": "Intensive 75°C",
"iot_voice_prewash": "Pre-wash",
"iot_voice_rapid_59": "Rapid 59'",
"iot_voice_universal": "Universal 60°C",
"iot_wok_grids_maxi_pans": "Special Pans (Wok, Grids & Maxi Pans)", "iot_wok_grids_maxi_pans": "Special Pans (Wok, Grids & Maxi Pans)",
"iot_wok_grids_maxi_pans_soil": "Special Pans (Wok, Grids & Maxi Pans)", "iot_wok_grids_maxi_pans_soil": "Special Pans (Wok, Grids & Maxi Pans)",
"iot_yes_quick_cycle": "Yes Quick", "iot_yes_quick_cycle": "Yes Quick",
@ -341,14 +352,14 @@
"hqd_bulky": "Bulky Items", "hqd_bulky": "Bulky Items",
"hqd_casual": "Casual", "hqd_casual": "Casual",
"hqd_cold_wind_30": "Cool Breeze 30m", "hqd_cold_wind_30": "Cool Breeze 30m",
"hqd_cold_wind_timing": "Cool Breeze", "hqd_cold_wind_timing": "Cold Air",
"hqd_cotton": "Cotton", "hqd_cotton": "Cotton",
"hqd_curtain": "Curtains", "hqd_curtain": "Curtains",
"hqd_delicate": "Delicates", "hqd_delicate": "Delicates",
"hqd_diaper": "Diapers", "hqd_diaper": "Diapers",
"hqd_duvet": "Duvet", "hqd_duvet": "Synthetic fibre quilted jacket",
"hqd_feather": "Down Jackets", "hqd_feather": "Natural fibre quilted jacket",
"hqd_hot_wind_timing": "Hot Air", "hqd_hot_wind_timing": "Warm Embrace",
"hqd_hygienic": "Hygienising", "hqd_hygienic": "Hygienising",
"hqd_i_refresh": "I-Refresh", "hqd_i_refresh": "I-Refresh",
"hqd_i_refresh_pro": "I-Refresh Pro", "hqd_i_refresh_pro": "I-Refresh Pro",
@ -361,7 +372,7 @@
"hqd_precious_cure": "Precious Cure", "hqd_precious_cure": "Precious Cure",
"hqd_quick_20": "Quick 20m", "hqd_quick_20": "Quick 20m",
"hqd_quick_30": "Quick 30'", "hqd_quick_30": "Quick 30'",
"hqd_quick_dry": "Quick dry 30'", "hqd_quick_dry": "30' automatic quick drying",
"hqd_quilt": "Quilts", "hqd_quilt": "Quilts",
"hqd_refresh": "Refresh", "hqd_refresh": "Refresh",
"hqd_school_uniform": "School Uniform", "hqd_school_uniform": "School Uniform",
@ -398,6 +409,8 @@
"iot_dry_gym_fit": "Gym fit - Fitness", "iot_dry_gym_fit": "Gym fit - Fitness",
"iot_dry_lingerie": "Lingerie", "iot_dry_lingerie": "Lingerie",
"iot_dry_mixed": "Mixed", "iot_dry_mixed": "Mixed",
"iot_dry_pet_accessories": "Pet Accessories",
"iot_dry_pet_hair_removal": "Pet hair removal (pre-washing)",
"iot_dry_playsuits": "Playsuits", "iot_dry_playsuits": "Playsuits",
"iot_dry_rapid_30": "Rapid 30'", "iot_dry_rapid_30": "Rapid 30'",
"iot_dry_rapid_59": "Rapid 59'", "iot_dry_rapid_59": "Rapid 59'",
@ -412,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",
@ -432,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",
@ -449,14 +462,14 @@
"state": { "state": {
"20_degrees_coloured_cottons": "20° Colored and Cottons", "20_degrees_coloured_cottons": "20° Colored and Cottons",
"20_degrees_new_energy_label": "20°C", "20_degrees_new_energy_label": "20°C",
"active_steam": "Steam", "active_steam": "Steam 29'",
"active_wash": "Active Wash", "active_wash": "Active Wash 20'",
"active_wash_steam": "Active Wash + Steam", "active_wash_steam": "Active Wash 20' + Steam",
"allergy_care": "Allergy Care", "allergy_care": "Allergy Care",
"allergy_care_pro": "Allergy Care Pro", "allergy_care_pro": "Allergy Care Pro",
"all_in_one_49": "All in One 49'", "all_in_one_49": "All in One 49'",
"all_in_one_59": "All in One 59'", "all_in_one_59": "All in One 59'",
"all_in_one_59_steam": "All in One 59' + Vapore", "all_in_one_59_steam": "All in One 59' + Steam",
"autocare": "Autocare", "autocare": "Autocare",
"autoclean": "Drum cleaning and descaling", "autoclean": "Drum cleaning and descaling",
"baby_60": "All Baby 60°C", "baby_60": "All Baby 60°C",
@ -470,20 +483,21 @@
"cottons_prewash": "Cottons + Prewash", "cottons_prewash": "Cottons + Prewash",
"cottons_steam": "Cotton + Steam", "cottons_steam": "Cotton + Steam",
"cotton_care_59": "Cotton Care 59'", "cotton_care_59": "Cotton Care 59'",
"crystals": "Crystals 45°C",
"delicate_59": "Delicate 59'", "delicate_59": "Delicate 59'",
"delicate_silk": "Delicate and Silk", "delicate_silk": "Delicate and Silk 59'",
"delicate_silk_steam": "Delicate and Silk + Steam", "delicate_silk_steam": "Delicate and Silk + Steam",
"delicati_59": "Delicate 59'", "delicati_59": "Delicate 59'",
"delicati_59_steam": "Delicate 59' + Steam", "delicati_59_steam": "Delicate 59' + Steam",
"drain_spin": "Drain + Spin", "drain_spin": "Drain + Spin",
"easy_iron": "Easy Iron", "easy_iron": "Easy Iron 39'",
"eco_40_60_new_energy_label": "Eco 40-60", "eco_40_60_new_energy_label": "Eco 40-60",
"extra_care": "Extra Care", "extra_care": "Extra Care",
"fitness": "Fitness Care", "fitness": "Fitness Care",
"fitness_care": "Fitness Care", "fitness_care": "Fitness Care",
"fresh_care": "Fresh Care", "fresh_care": "Fresh Care 59'",
"fresh_care_steam": "Fresh Care + Steam", "fresh_care_steam": "Fresh Care + Steam",
"handwash_wool": "Hand Wash + Wool", "handwash_wool": "Hand Wash + Wool 48'",
"high_dry": "High Heat Dry", "high_dry": "High Heat Dry",
"hqd_20_degrees": "Cotton 20℃", "hqd_20_degrees": "Cotton 20℃",
"hqd_allergy": "Allergy Care", "hqd_allergy": "Allergy Care",
@ -491,13 +505,13 @@
"hqd_babycare": "Baby Care", "hqd_babycare": "Baby Care",
"hqd_checkup": "Check-Up", "hqd_checkup": "Check-Up",
"hqd_cottons": "Cotton", "hqd_cottons": "Cotton",
"hqd_delicate": "Delicate", "hqd_delicate": "Delicate 50'",
"hqd_delicate_cradle": "Delicate", "hqd_delicate_cradle": "Delicate",
"hqd_dry": "Cotton Dry", "hqd_dry": "Cotton Dry",
"hqd_dry_synthetics": "Low Heat Dry", "hqd_dry_synthetics": "Low Heat Dry",
"hqd_duvet": "Duvet", "hqd_duvet": "Duvet",
"hqd_eco_40_60_degrees": "Eco 40-60", "hqd_eco_40_60_degrees": "Eco 40-60",
"hqd_handwash_wool": "Wool", "hqd_handwash_wool": "Wool 40'",
"hqd_i_refresh": "i-Refresh", "hqd_i_refresh": "i-Refresh",
"hqd_mix": "Mix", "hqd_mix": "Mix",
"hqd_quick_15": "Quick 15'", "hqd_quick_15": "Quick 15'",
@ -508,7 +522,7 @@
"hqd_shirts": "Shirts", "hqd_shirts": "Shirts",
"hqd_smart": "Smart A.I.", "hqd_smart": "Smart A.I.",
"hqd_spin": "Spin", "hqd_spin": "Spin",
"hqd_sport": "Sport", "hqd_sport": "Sport 25'",
"hqd_super_fast": "Super Fast 39'", "hqd_super_fast": "Super Fast 39'",
"hqd_synthetic_and_coloured": "Synthetics", "hqd_synthetic_and_coloured": "Synthetics",
"hygiene_59": "Hygiene Plus 59'", "hygiene_59": "Hygiene Plus 59'",
@ -519,10 +533,11 @@
"hygiene_pro_steam": "Hygiene Pro + Steam", "hygiene_pro_steam": "Hygiene Pro + Steam",
"intensive_40": "Intensive 40°C", "intensive_40": "Intensive 40°C",
"intensive_40_steam": "Intensive 40°C + Steam", "intensive_40_steam": "Intensive 40°C + Steam",
"iot_active_steam": "Steam", "iot_active_steam": "Steam 29'",
"iot_active_wash_steam": "Active Wash + 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' + Vapore", "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",
@ -555,22 +570,26 @@
"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_dry": "Wool Dry", "iot_dry_wool_dry": "Wool Dry",
"iot_easy_iron": "Easy Iron", "iot_easy_iron": "Easy Iron 39'",
"iot_fresh_care_steam": "Fresh Care + Steam", "iot_fresh_care_steam": "Fresh Care + Steam",
"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_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",
"iot_rapid_a_class_60_steam": "Rapid 59' A Class + Steam", "iot_rapid_a_class_60_steam": "Rapid 59' A Class + Steam",
"iot_resistant_cotton_steam": "Resistant Cotton + Steam", "iot_resistant_cotton_steam": "Resistant Cotton + Steam",
"iot_shirts_steam": "Shirts + Steam", "iot_shirts_steam": "Shirts + Steam",
"iot_single_item_steam": "Single Item + Steam", "iot_single_item_steam": "Single Item 20' + Steam",
"iot_smart_wash": "Smart Wash", "iot_smart_wash": "Smart Wash",
"iot_soft_care_steam": "Soft Care + Steam", "iot_soft_care_steam": "Soft Care + Steam",
"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",
@ -599,7 +618,7 @@
"iot_wash_coloured_bed_linen": "Colored Bed Linen", "iot_wash_coloured_bed_linen": "Colored Bed Linen",
"iot_wash_coloured_bed_linen_steam": "Coloured Bed Linen + Steam", "iot_wash_coloured_bed_linen_steam": "Coloured Bed Linen + Steam",
"iot_wash_coloured_curtains": "Colored Curtains", "iot_wash_coloured_curtains": "Colored Curtains",
"iot_wash_coloured_shirts": "Colored Shirts", "iot_wash_coloured_shirts": "Colored Shirts 59'",
"iot_wash_coloured_shirts_steam": "Colored Shirts + Steam", "iot_wash_coloured_shirts_steam": "Colored Shirts + Steam",
"iot_wash_coloured_steam": "Colored + Steam", "iot_wash_coloured_steam": "Colored + Steam",
"iot_wash_coloured_tableclothes": "Colored Tableclothes", "iot_wash_coloured_tableclothes": "Colored Tableclothes",
@ -636,7 +655,7 @@
"iot_wash_down_jackets_zelig": "Down Jackets", "iot_wash_down_jackets_zelig": "Down Jackets",
"iot_wash_duvet": "Duvet", "iot_wash_duvet": "Duvet",
"iot_wash_fruit_stains": "Fruit stains", "iot_wash_fruit_stains": "Fruit stains",
"iot_wash_gym_fit": "Gym Fit - Fitness", "iot_wash_gym_fit": "Gym Fit - Fitness 59'",
"iot_wash_handwash": "Handwash", "iot_wash_handwash": "Handwash",
"iot_wash_handwash_colored": "Handwash Colored", "iot_wash_handwash_colored": "Handwash Colored",
"iot_wash_handwash_dark": "Handwash Darks", "iot_wash_handwash_dark": "Handwash Darks",
@ -681,6 +700,7 @@
"iot_wash_sport_anti_odor": "Anti-odour Sportswear", "iot_wash_sport_anti_odor": "Anti-odour Sportswear",
"iot_wash_sport_anti_odor_zelig": "Anti-odour Sportswear", "iot_wash_sport_anti_odor_zelig": "Anti-odour Sportswear",
"iot_wash_stains_remover": "Stain Remover", "iot_wash_stains_remover": "Stain Remover",
"iot_wash_super_saving": "Super Saving 49'",
"iot_wash_swimsuits_and_bikinis": "Swimsuits and Bikinis", "iot_wash_swimsuits_and_bikinis": "Swimsuits and Bikinis",
"iot_wash_synthetic": "Synthetics", "iot_wash_synthetic": "Synthetics",
"iot_wash_synthetic_steam": "Synthetics + Steam", "iot_wash_synthetic_steam": "Synthetics + Steam",
@ -723,7 +743,7 @@
"rinse": "Rinse", "rinse": "Rinse",
"shirts_steam": "Shirts + Steam", "shirts_steam": "Shirts + Steam",
"silent_night": "Silent Night", "silent_night": "Silent Night",
"single_item": "Single Item", "single_item": "Single Item 20'",
"single_item_steam": "Single Item + Steam", "single_item_steam": "Single Item + Steam",
"smart_wash": "Smart Wash", "smart_wash": "Smart Wash",
"soft_care": "Soft Care", "soft_care": "Soft Care",
@ -739,8 +759,8 @@
"steam_39": "Steam 39'", "steam_39": "Steam 39'",
"steam_care_pro": "Steam Care Pro", "steam_care_pro": "Steam Care Pro",
"steam_care_pro_cotton": "Steam Care Pro - Cottons", "steam_care_pro_cotton": "Steam Care Pro - Cottons",
"steam_care_pro_delicates": "Steam Care Pro - Delicates", "steam_care_pro_delicates": "Steam Care Pro - Delicates 16'",
"steam_care_pro_synthetic": "Steam Care Pro - Synthetics", "steam_care_pro_synthetic": "Steam Care Pro - Synthetics 20'",
"steam_hygiene_plus": "Hygiene Plus + Steam", "steam_hygiene_plus": "Hygiene Plus + Steam",
"synthetics": "Synthetics", "synthetics": "Synthetics",
"synthetic_and_coloured": "Synthetic and Colored", "synthetic_and_coloured": "Synthetic and Colored",
@ -752,7 +772,7 @@
"wool": "Wool", "wool": "Wool",
"wool_and_delicates_49": "Wool and Delicates 49'", "wool_and_delicates_49": "Wool and Delicates 49'",
"wool_dry": "Wool Dry", "wool_dry": "Wool Dry",
"wool_soft_care": "Wool and Soft Care" "wool_soft_care": "Wool and Soft Care 48'"
}, },
"name": "Program" "name": "Program"
}, },
@ -762,21 +782,27 @@
"cheese": "Cheese", "cheese": "Cheese",
"chiller": "Quick cool", "chiller": "Quick cool",
"cold_drinks": "Soft chill", "cold_drinks": "Soft chill",
"cool_drink": "Cool Drink",
"eco": "Eco", "eco": "Eco",
"eco_mode": "Eco mode", "eco_mode": "Eco mode",
"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",
"no_mode_selected": "No mode selected", "no_mode_selected": "No mode selected",
"quick_cool": "QUICK COOL", "quick_cool": "QUICK COOL",
"sea_food": "Ready to cook meal", "sea_food": "Ready to cook meal",
"smart_mode": "SMART MODE",
"smart_mode_title": "Smart Mode",
"soft_frozen": "Soft freezing", "soft_frozen": "Soft freezing",
"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",
"zero_fresh": "0° Fresh" "vegetables": "Vegetable",
"zero_fresh": "0°C Fresh"
}, },
"name": "Program" "name": "Program"
}, },
@ -907,6 +933,14 @@
}, },
"fan_speed": { "fan_speed": {
"name": "Fan speed" "name": "Fan speed"
},
"humidity_level": {
"state": {
"low": "Low",
"mid": "Medium",
"high": "High"
},
"name": "Humidity level"
} }
}, },
"select": { "select": {
@ -976,39 +1010,41 @@
"auto_care_soil": "Auto Care", "auto_care_soil": "Auto Care",
"auto_hygiene": "Auto Hygiene", "auto_hygiene": "Auto Hygiene",
"auto_plus": "AutoPlus", "auto_plus": "AutoPlus",
"auto_plus_soil": "Auto Plus Soil", "auto_plus_soil": "Auto Plus",
"auto_rapid": "Auto Rapid", "auto_rapid": "Auto Rapid",
"auto_rapid_soil": "Auto rapid Soil", "auto_rapid_soil": "Auto Rapid",
"auto_sensor": "Auto Sensor", "auto_sensor": "Auto Sensor",
"auto_sensor_soil": "Auto Sensor", "auto_sensor_soil": "Auto Sensor",
"auto_universal": "Auto Universal 50 - 60°C", "auto_universal": "Auto Universal 50-60°C",
"auto_universal_plus": "Auto Universal+ 65 - 75°C", "auto_universal_plus": "Auto Universal Plus 65-75°C",
"auto_universal_plus_soil": "Auto Universal+ 65 - 75°C", "auto_universal_plus_soil": "Auto Universal Plus 65-75°C",
"auto_universal_soil": "Auto Universal 50 - 60°C", "auto_universal_soil": "Auto Universal 50-60°C",
"auto_wash": "Auto Wash", "auto_wash": "Auto Wash",
"auto_wash_soil": "Auto Wash", "auto_wash_soil": "Auto Wash",
"classe_a_59": "A Wash 59' 65°C", "classe_a_59": "A Wash 59' 65°C",
"delicate": "Delicate 45°C", "delicate": "Delicate 45°C",
"dishwasher_care": "Limescale cleaning", "dishwasher_care": "Limescale cleaning",
"eco": "Eco", "eco": "Eco 45°C",
"eco_asynch": "Eco 45°C", "eco_asynch": "Eco 45°C",
"eco_bldc": "Eco 45°C", "eco_bldc": "Eco 45°C",
"eco_synch": "Eco 45°C", "eco_synch": "Eco 45°C",
"eco_voice": "Eco",
"gentle_wash": "Gentle wash", "gentle_wash": "Gentle wash",
"glass": "Glass", "glass": "Glass",
"glassware": "Glassware 45°C", "glassware": "Glassware 45°C",
"glass_care": "Glass Care", "glass_care": "Glass Care",
"hygiene": "Hygiene", "hygiene": "Hygiene",
"hygiene_plus": "Hygiene+ 75°C", "hygiene_plus": "Hygiene Plus 75°C",
"intensive": "Intensive", "intensive": "Intensive",
"intensive_rapid": "Intensive Rapid", "intensive_rapid": "Intensive Rapid",
"intensive_voice": "Intensive",
"iot_auto_sensor": "Auto Sensor", "iot_auto_sensor": "Auto Sensor",
"iot_auto_universal_soil": "Auto Universal 50 - 60°C", "iot_auto_universal_soil": "Auto Universal 50-60°C",
"iot_auto_wash_soil": "Auto Wash", "iot_auto_wash_soil": "Auto Wash",
"iot_baby_care": "Baby Care", "iot_baby_care": "Baby Care",
"iot_breakfast": "Breakfast", "iot_breakfast": "Breakfast",
"iot_checkup": "Check-Up", "iot_checkup": "Check-Up",
"iot_china_crystals": "China Crystals", "iot_china_crystals": "Crystals",
"iot_classe_a_59": "Rapid 59'", "iot_classe_a_59": "Rapid 59'",
"iot_cocktail_glasses": "Coktail Glasses", "iot_cocktail_glasses": "Coktail Glasses",
"iot_cocktail_glasses_soil": "Coktail Glasses", "iot_cocktail_glasses_soil": "Coktail Glasses",
@ -1027,6 +1063,7 @@
"iot_jar_quick_cycle": "Jar Quick", "iot_jar_quick_cycle": "Jar Quick",
"iot_party": "Party", "iot_party": "Party",
"iot_party_soil": "Party", "iot_party_soil": "Party",
"iot_pet_bowls_toys": "Pet Bowls and Toys",
"iot_pizza_menu": "Pizza Menu", "iot_pizza_menu": "Pizza Menu",
"iot_pizza_menu_soil": "Pizza Menu", "iot_pizza_menu_soil": "Pizza Menu",
"iot_plastic_tupperware": "Plastic & Tupperware", "iot_plastic_tupperware": "Plastic & Tupperware",
@ -1043,6 +1080,14 @@
"iot_super_wash": "Super Wash", "iot_super_wash": "Super Wash",
"iot_turbopower": "TurboPower", "iot_turbopower": "TurboPower",
"iot_universal": "Universal 60°C", "iot_universal": "Universal 60°C",
"iot_voice_automatic": "Automatic",
"iot_voice_delicate": "Delicate 45°C",
"iot_voice_eco": "Eco 45°C",
"iot_voice_eco_bldc": "Eco 45°C",
"iot_voice_intensive": "Intensive 75°C",
"iot_voice_prewash": "Pre-wash",
"iot_voice_rapid_59": "Rapid 59'",
"iot_voice_universal": "Universal 60°C",
"iot_wok_grids_maxi_pans": "Special Pans (Wok, Grids & Maxi Pans)", "iot_wok_grids_maxi_pans": "Special Pans (Wok, Grids & Maxi Pans)",
"iot_wok_grids_maxi_pans_soil": "Special Pans (Wok, Grids & Maxi Pans)", "iot_wok_grids_maxi_pans_soil": "Special Pans (Wok, Grids & Maxi Pans)",
"iot_yes_quick_cycle": "Yes Quick", "iot_yes_quick_cycle": "Yes Quick",
@ -1210,14 +1255,14 @@
"hqd_bulky": "Bulky Items", "hqd_bulky": "Bulky Items",
"hqd_casual": "Casual", "hqd_casual": "Casual",
"hqd_cold_wind_30": "Cool Breeze 30m", "hqd_cold_wind_30": "Cool Breeze 30m",
"hqd_cold_wind_timing": "Cool Breeze", "hqd_cold_wind_timing": "Cold Air",
"hqd_cotton": "Cotton", "hqd_cotton": "Cotton",
"hqd_curtain": "Curtains", "hqd_curtain": "Curtains",
"hqd_delicate": "Delicates", "hqd_delicate": "Delicates",
"hqd_diaper": "Diapers", "hqd_diaper": "Diapers",
"hqd_duvet": "Duvet", "hqd_duvet": "Synthetic fibre quilted jacket",
"hqd_feather": "Down Jackets", "hqd_feather": "Natural fibre quilted jacket",
"hqd_hot_wind_timing": "Hot Air", "hqd_hot_wind_timing": "Warm Embrace",
"hqd_hygienic": "Hygienising", "hqd_hygienic": "Hygienising",
"hqd_i_refresh": "I-Refresh", "hqd_i_refresh": "I-Refresh",
"hqd_i_refresh_pro": "I-Refresh Pro", "hqd_i_refresh_pro": "I-Refresh Pro",
@ -1230,7 +1275,7 @@
"hqd_precious_cure": "Precious Cure", "hqd_precious_cure": "Precious Cure",
"hqd_quick_20": "Quick 20m", "hqd_quick_20": "Quick 20m",
"hqd_quick_30": "Quick 30'", "hqd_quick_30": "Quick 30'",
"hqd_quick_dry": "Quick dry 30'", "hqd_quick_dry": "30' automatic quick drying",
"hqd_quilt": "Quilts", "hqd_quilt": "Quilts",
"hqd_refresh": "Refresh", "hqd_refresh": "Refresh",
"hqd_school_uniform": "School Uniform", "hqd_school_uniform": "School Uniform",
@ -1267,6 +1312,8 @@
"iot_dry_gym_fit": "Gym fit - Fitness", "iot_dry_gym_fit": "Gym fit - Fitness",
"iot_dry_lingerie": "Lingerie", "iot_dry_lingerie": "Lingerie",
"iot_dry_mixed": "Mixed", "iot_dry_mixed": "Mixed",
"iot_dry_pet_accessories": "Pet Accessories",
"iot_dry_pet_hair_removal": "Pet hair removal (pre-washing)",
"iot_dry_playsuits": "Playsuits", "iot_dry_playsuits": "Playsuits",
"iot_dry_rapid_30": "Rapid 30'", "iot_dry_rapid_30": "Rapid 30'",
"iot_dry_rapid_59": "Rapid 59'", "iot_dry_rapid_59": "Rapid 59'",
@ -1281,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",
@ -1301,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",
@ -1318,14 +1365,14 @@
"state": { "state": {
"20_degrees_coloured_cottons": "20° Colored and Cottons", "20_degrees_coloured_cottons": "20° Colored and Cottons",
"20_degrees_new_energy_label": "20°C", "20_degrees_new_energy_label": "20°C",
"active_steam": "Steam", "active_steam": "Steam 29'",
"active_wash": "Active Wash", "active_wash": "Active Wash 20'",
"active_wash_steam": "Active Wash + Steam", "active_wash_steam": "Active Wash 20' + Steam",
"allergy_care": "Allergy Care", "allergy_care": "Allergy Care",
"allergy_care_pro": "Allergy Care Pro", "allergy_care_pro": "Allergy Care Pro",
"all_in_one_49": "All in One 49'", "all_in_one_49": "All in One 49'",
"all_in_one_59": "All in One 59'", "all_in_one_59": "All in One 59'",
"all_in_one_59_steam": "All in One 59' + Vapore", "all_in_one_59_steam": "All in One 59' + Steam",
"autocare": "Autocare", "autocare": "Autocare",
"autoclean": "Drum cleaning and descaling", "autoclean": "Drum cleaning and descaling",
"baby_60": "All Baby 60°C", "baby_60": "All Baby 60°C",
@ -1339,20 +1386,21 @@
"cottons_prewash": "Cottons + Prewash", "cottons_prewash": "Cottons + Prewash",
"cottons_steam": "Cotton + Steam", "cottons_steam": "Cotton + Steam",
"cotton_care_59": "Cotton Care 59'", "cotton_care_59": "Cotton Care 59'",
"crystals": "Crystals 45°C",
"delicate_59": "Delicate 59'", "delicate_59": "Delicate 59'",
"delicate_silk": "Delicate and Silk", "delicate_silk": "Delicate and Silk 59'",
"delicate_silk_steam": "Delicate and Silk + Steam", "delicate_silk_steam": "Delicate and Silk + Steam",
"delicati_59": "Delicate 59'", "delicati_59": "Delicate 59'",
"delicati_59_steam": "Delicate 59' + Steam", "delicati_59_steam": "Delicate 59' + Steam",
"drain_spin": "Drain + Spin", "drain_spin": "Drain + Spin",
"easy_iron": "Easy Iron", "easy_iron": "Easy Iron 39'",
"eco_40_60_new_energy_label": "Eco 40-60", "eco_40_60_new_energy_label": "Eco 40-60",
"extra_care": "Extra Care", "extra_care": "Extra Care",
"fitness": "Fitness Care", "fitness": "Fitness Care",
"fitness_care": "Fitness Care", "fitness_care": "Fitness Care",
"fresh_care": "Fresh Care", "fresh_care": "Fresh Care 59'",
"fresh_care_steam": "Fresh Care + Steam", "fresh_care_steam": "Fresh Care + Steam",
"handwash_wool": "Hand Wash + Wool", "handwash_wool": "Hand Wash + Wool 48'",
"high_dry": "High Heat Dry", "high_dry": "High Heat Dry",
"hqd_20_degrees": "Cotton 20℃", "hqd_20_degrees": "Cotton 20℃",
"hqd_allergy": "Allergy Care", "hqd_allergy": "Allergy Care",
@ -1360,13 +1408,13 @@
"hqd_babycare": "Baby Care", "hqd_babycare": "Baby Care",
"hqd_checkup": "Check-Up", "hqd_checkup": "Check-Up",
"hqd_cottons": "Cotton", "hqd_cottons": "Cotton",
"hqd_delicate": "Delicate", "hqd_delicate": "Delicate 50'",
"hqd_delicate_cradle": "Delicate", "hqd_delicate_cradle": "Delicate",
"hqd_dry": "Cotton Dry", "hqd_dry": "Cotton Dry",
"hqd_dry_synthetics": "Low Heat Dry", "hqd_dry_synthetics": "Low Heat Dry",
"hqd_duvet": "Duvet", "hqd_duvet": "Duvet",
"hqd_eco_40_60_degrees": "Eco 40-60", "hqd_eco_40_60_degrees": "Eco 40-60",
"hqd_handwash_wool": "Wool", "hqd_handwash_wool": "Wool 40'",
"hqd_i_refresh": "i-Refresh", "hqd_i_refresh": "i-Refresh",
"hqd_mix": "Mix", "hqd_mix": "Mix",
"hqd_quick_15": "Quick 15'", "hqd_quick_15": "Quick 15'",
@ -1377,7 +1425,7 @@
"hqd_shirts": "Shirts", "hqd_shirts": "Shirts",
"hqd_smart": "Smart A.I.", "hqd_smart": "Smart A.I.",
"hqd_spin": "Spin", "hqd_spin": "Spin",
"hqd_sport": "Sport", "hqd_sport": "Sport 25'",
"hqd_super_fast": "Super Fast 39'", "hqd_super_fast": "Super Fast 39'",
"hqd_synthetic_and_coloured": "Synthetics", "hqd_synthetic_and_coloured": "Synthetics",
"hygiene_59": "Hygiene Plus 59'", "hygiene_59": "Hygiene Plus 59'",
@ -1388,10 +1436,11 @@
"hygiene_pro_steam": "Hygiene Pro + Steam", "hygiene_pro_steam": "Hygiene Pro + Steam",
"intensive_40": "Intensive 40°C", "intensive_40": "Intensive 40°C",
"intensive_40_steam": "Intensive 40°C + Steam", "intensive_40_steam": "Intensive 40°C + Steam",
"iot_active_steam": "Steam", "iot_active_steam": "Steam 29'",
"iot_active_wash_steam": "Active Wash + 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' + Vapore", "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",
@ -1424,22 +1473,26 @@
"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_dry": "Wool Dry", "iot_dry_wool_dry": "Wool Dry",
"iot_easy_iron": "Easy Iron", "iot_easy_iron": "Easy Iron 39'",
"iot_fresh_care_steam": "Fresh Care + Steam", "iot_fresh_care_steam": "Fresh Care + Steam",
"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_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",
"iot_rapid_a_class_60_steam": "Rapid 59' A Class + Steam", "iot_rapid_a_class_60_steam": "Rapid 59' A Class + Steam",
"iot_resistant_cotton_steam": "Resistant Cotton + Steam", "iot_resistant_cotton_steam": "Resistant Cotton + Steam",
"iot_shirts_steam": "Shirts + Steam", "iot_shirts_steam": "Shirts + Steam",
"iot_single_item_steam": "Single Item + Steam", "iot_single_item_steam": "Single Item 20' + Steam",
"iot_smart_wash": "Smart Wash", "iot_smart_wash": "Smart Wash",
"iot_soft_care_steam": "Soft Care + Steam", "iot_soft_care_steam": "Soft Care + Steam",
"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",
@ -1468,7 +1521,7 @@
"iot_wash_coloured_bed_linen": "Colored Bed Linen", "iot_wash_coloured_bed_linen": "Colored Bed Linen",
"iot_wash_coloured_bed_linen_steam": "Coloured Bed Linen + Steam", "iot_wash_coloured_bed_linen_steam": "Coloured Bed Linen + Steam",
"iot_wash_coloured_curtains": "Colored Curtains", "iot_wash_coloured_curtains": "Colored Curtains",
"iot_wash_coloured_shirts": "Colored Shirts", "iot_wash_coloured_shirts": "Colored Shirts 59'",
"iot_wash_coloured_shirts_steam": "Colored Shirts + Steam", "iot_wash_coloured_shirts_steam": "Colored Shirts + Steam",
"iot_wash_coloured_steam": "Colored + Steam", "iot_wash_coloured_steam": "Colored + Steam",
"iot_wash_coloured_tableclothes": "Colored Tableclothes", "iot_wash_coloured_tableclothes": "Colored Tableclothes",
@ -1505,7 +1558,7 @@
"iot_wash_down_jackets_zelig": "Down Jackets", "iot_wash_down_jackets_zelig": "Down Jackets",
"iot_wash_duvet": "Duvet", "iot_wash_duvet": "Duvet",
"iot_wash_fruit_stains": "Fruit stains", "iot_wash_fruit_stains": "Fruit stains",
"iot_wash_gym_fit": "Gym Fit - Fitness", "iot_wash_gym_fit": "Gym Fit - Fitness 59'",
"iot_wash_handwash": "Handwash", "iot_wash_handwash": "Handwash",
"iot_wash_handwash_colored": "Handwash Colored", "iot_wash_handwash_colored": "Handwash Colored",
"iot_wash_handwash_dark": "Handwash Darks", "iot_wash_handwash_dark": "Handwash Darks",
@ -1550,6 +1603,7 @@
"iot_wash_sport_anti_odor": "Anti-odour Sportswear", "iot_wash_sport_anti_odor": "Anti-odour Sportswear",
"iot_wash_sport_anti_odor_zelig": "Anti-odour Sportswear", "iot_wash_sport_anti_odor_zelig": "Anti-odour Sportswear",
"iot_wash_stains_remover": "Stain Remover", "iot_wash_stains_remover": "Stain Remover",
"iot_wash_super_saving": "Super Saving 49'",
"iot_wash_swimsuits_and_bikinis": "Swimsuits and Bikinis", "iot_wash_swimsuits_and_bikinis": "Swimsuits and Bikinis",
"iot_wash_synthetic": "Synthetics", "iot_wash_synthetic": "Synthetics",
"iot_wash_synthetic_steam": "Synthetics + Steam", "iot_wash_synthetic_steam": "Synthetics + Steam",
@ -1592,7 +1646,7 @@
"rinse": "Rinse", "rinse": "Rinse",
"shirts_steam": "Shirts + Steam", "shirts_steam": "Shirts + Steam",
"silent_night": "Silent Night", "silent_night": "Silent Night",
"single_item": "Single Item", "single_item": "Single Item 20'",
"single_item_steam": "Single Item + Steam", "single_item_steam": "Single Item + Steam",
"smart_wash": "Smart Wash", "smart_wash": "Smart Wash",
"soft_care": "Soft Care", "soft_care": "Soft Care",
@ -1608,8 +1662,8 @@
"steam_39": "Steam 39'", "steam_39": "Steam 39'",
"steam_care_pro": "Steam Care Pro", "steam_care_pro": "Steam Care Pro",
"steam_care_pro_cotton": "Steam Care Pro - Cottons", "steam_care_pro_cotton": "Steam Care Pro - Cottons",
"steam_care_pro_delicates": "Steam Care Pro - Delicates", "steam_care_pro_delicates": "Steam Care Pro - Delicates 16'",
"steam_care_pro_synthetic": "Steam Care Pro - Synthetics", "steam_care_pro_synthetic": "Steam Care Pro - Synthetics 20'",
"steam_hygiene_plus": "Hygiene Plus + Steam", "steam_hygiene_plus": "Hygiene Plus + Steam",
"synthetics": "Synthetics", "synthetics": "Synthetics",
"synthetic_and_coloured": "Synthetic and Colored", "synthetic_and_coloured": "Synthetic and Colored",
@ -1621,7 +1675,7 @@
"wool": "Wool", "wool": "Wool",
"wool_and_delicates_49": "Wool and Delicates 49'", "wool_and_delicates_49": "Wool and Delicates 49'",
"wool_dry": "Wool Dry", "wool_dry": "Wool Dry",
"wool_soft_care": "Wool and Soft Care" "wool_soft_care": "Wool and Soft Care 48'"
}, },
"name": "Program" "name": "Program"
}, },
@ -1631,21 +1685,27 @@
"cheese": "Cheese", "cheese": "Cheese",
"chiller": "Quick cool", "chiller": "Quick cool",
"cold_drinks": "Soft chill", "cold_drinks": "Soft chill",
"cool_drink": "Cool Drink",
"eco": "Eco", "eco": "Eco",
"eco_mode": "Eco mode", "eco_mode": "Eco mode",
"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",
"no_mode_selected": "No mode selected", "no_mode_selected": "No mode selected",
"quick_cool": "QUICK COOL", "quick_cool": "QUICK COOL",
"sea_food": "Ready to cook meal", "sea_food": "Ready to cook meal",
"smart_mode": "SMART MODE",
"smart_mode_title": "Smart Mode",
"soft_frozen": "Soft freezing", "soft_frozen": "Soft freezing",
"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",
"zero_fresh": "0° Fresh" "vegetables": "Vegetable",
"zero_fresh": "0°C Fresh"
}, },
"name": "Program" "name": "Program"
}, },
@ -1698,6 +1758,71 @@
"unknown": "unknown" "unknown": "unknown"
}, },
"name": "Dirt level" "name": "Dirt level"
},
"stain_type": {
"state": {
"baby_food": "Baby food",
"bean_paste": "Bean soup",
"blood": "Blood",
"blueberry": "Blueberry",
"blue_ink": "Blue ink",
"butter": "Butter",
"chili_oil": "Chili oil",
"chili_sauce": "Chili sauce",
"chocolate": "Chocolate",
"coffe": "Coffee",
"coffee": "Coffee",
"color_pencil": "Pencil",
"cooking_oil": "Cooking oil",
"curry": "Curry",
"deodorant": "Deodorant",
"egg": "Egg",
"fruit": "Fruit",
"glue": "Glue",
"grass": "Grass",
"ice_cream": "Ice cream",
"ketchup": "Ketchup",
"lip_gloss": "Lip gloss",
"mayonnaise": "Mayonnaise",
"mech_grease": "Mech grease",
"milk": "Milk",
"milk_tea": "Milk tea",
"oil": "Oil",
"oil_pastel": "Oil pastel",
"perfume": "Perfume",
"rust": "Rust",
"shoe_cream": "Shoe cream",
"soil": "Soil",
"soy_sauce": "Soy sauce",
"stain_level": "Stain level",
"sweat": "Sweat",
"tea": "Tea",
"wine": "Wine",
"unknown": "unknown"
},
"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": {
@ -1955,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": {
@ -2091,6 +2219,9 @@
} }
} }
} }
},
"my_zone": {
"name": "My Zone"
} }
}, },
"fan": { "fan": {

View File

@ -99,22 +99,25 @@
"auto_care_soil": "Auto Care", "auto_care_soil": "Auto Care",
"auto_hygiene": "Auto Hygiene", "auto_hygiene": "Auto Hygiene",
"auto_plus": "AutoPlus", "auto_plus": "AutoPlus",
"auto_plus_soil": "Auto Plus",
"auto_rapid": "Auto Rapid", "auto_rapid": "Auto Rapid",
"auto_rapid_soil": "Auto Rapid",
"auto_sensor": "Auto Sensor", "auto_sensor": "Auto Sensor",
"auto_sensor_soil": "Auto Sensor", "auto_sensor_soil": "Auto Sensor",
"auto_universal": "Auto Universal 50 - 60°C", "auto_universal": "Auto Universal 50-60°C",
"auto_universal_plus": "Auto Universal Plus 65 - 75°C", "auto_universal_plus": "Auto Universal Plus 65-75°C",
"auto_universal_plus_soil": "Auto Universal Plus 65 - 75°C", "auto_universal_plus_soil": "Auto Universal Plus 65-75°C",
"auto_universal_soil": "Auto Universal 50 - 60°C", "auto_universal_soil": "Auto Universal 50-60°C",
"auto_wash": "Lavado automático", "auto_wash": "Lavado automático",
"auto_wash_soil": "Lavado automático", "auto_wash_soil": "Lavado automático",
"classe_a_59": "Clase A 59' 65°C", "classe_a_59": "Clase A 59' 65°C",
"delicate": "Delicado 45°C", "delicate": "Delicado 45°C",
"dishwasher_care": "Ciclo de limpieza antical", "dishwasher_care": "Ciclo de limpieza antical",
"eco": "Eco", "eco": "Eco 45°C",
"eco_asynch": "Eco 45°C", "eco_asynch": "Eco 45°C",
"eco_bldc": "Eco 45°C", "eco_bldc": "Eco 45°C",
"eco_synch": "Eco 45°C", "eco_synch": "Eco 45°C",
"eco_voice": "Eco",
"gentle_wash": "Gentle wash", "gentle_wash": "Gentle wash",
"glass": "Cristal", "glass": "Cristal",
"glassware": "Cristal 45 °C", "glassware": "Cristal 45 °C",
@ -123,8 +126,9 @@
"hygiene_plus": "Higiene+ 75 °C", "hygiene_plus": "Higiene+ 75 °C",
"intensive": "Intensivo", "intensive": "Intensivo",
"intensive_rapid": "Fuerte rápido", "intensive_rapid": "Fuerte rápido",
"intensive_voice": "Intensivo",
"iot_auto_sensor": "Auto Sensor", "iot_auto_sensor": "Auto Sensor",
"iot_auto_universal_soil": "Auto Universal 50 - 60°C", "iot_auto_universal_soil": "Auto Universal 50-60°C",
"iot_auto_wash_soil": "Lavado automático", "iot_auto_wash_soil": "Lavado automático",
"iot_baby_care": "Baby Care", "iot_baby_care": "Baby Care",
"iot_breakfast": "Desayuno", "iot_breakfast": "Desayuno",
@ -164,6 +168,13 @@
"iot_super_wash": "Lavado Super", "iot_super_wash": "Lavado Super",
"iot_turbopower": "TurboPower", "iot_turbopower": "TurboPower",
"iot_universal": "Universal 60 °C", "iot_universal": "Universal 60 °C",
"iot_voice_automatic": "Automatic",
"iot_voice_delicate": "Delicado 45°C",
"iot_voice_eco": "Eco 45°C",
"iot_voice_intensive": "Intensivo 75°C",
"iot_voice_prewash": "Pre-lavado",
"iot_voice_rapid_59": "Rápido 59'",
"iot_voice_universal": "Universal 60 °C",
"iot_wok_grids_maxi_pans": "Especial Ollas (Wok - Parrilas y Ollas)", "iot_wok_grids_maxi_pans": "Especial Ollas (Wok - Parrilas y Ollas)",
"iot_wok_grids_maxi_pans_soil": "Especial Ollas (Wok - Parrilas y Ollas)", "iot_wok_grids_maxi_pans_soil": "Especial Ollas (Wok - Parrilas y Ollas)",
"iot_yes_quick_cycle": "Yes Quick", "iot_yes_quick_cycle": "Yes Quick",
@ -195,6 +206,7 @@
"ultra_silent": "Ultra Silencioso 55°C", "ultra_silent": "Ultra Silencioso 55°C",
"universal": "Universal 60 °C", "universal": "Universal 60 °C",
"universal_plus": "Universal Plus 70 °C", "universal_plus": "Universal Plus 70 °C",
"zone_wash": "Flex Zone Wash",
"zoom_39": "Zoom 39 min" "zoom_39": "Zoom 39 min"
}, },
"name": "Programa" "name": "Programa"
@ -328,14 +340,14 @@
"hqd_bulky": "Objetos voluminosos", "hqd_bulky": "Objetos voluminosos",
"hqd_casual": "Casual", "hqd_casual": "Casual",
"hqd_cold_wind_30": "Brisa fresca 30 minutos", "hqd_cold_wind_30": "Brisa fresca 30 minutos",
"hqd_cold_wind_timing": "Brisa fresca", "hqd_cold_wind_timing": "Aire frío",
"hqd_cotton": "Algodón", "hqd_cotton": "Algodón",
"hqd_curtain": "Cortinas", "hqd_curtain": "Cortinas",
"hqd_delicate": "Ropa delicada", "hqd_delicate": "Ropa delicada",
"hqd_diaper": "Pañales", "hqd_diaper": "Pañales",
"hqd_duvet": "Edredones", "hqd_duvet": "Chaqueta acolchada de fibras sintéticas",
"hqd_feather": "Plumíferos", "hqd_feather": "Chaqueta acolchada de fibras naturales",
"hqd_hot_wind_timing": "Aire caliente", "hqd_hot_wind_timing": "Abrazo cálido",
"hqd_hygienic": "Higienizar", "hqd_hygienic": "Higienizar",
"hqd_i_refresh": "I-Refresh", "hqd_i_refresh": "I-Refresh",
"hqd_i_refresh_pro": "I-Refresh Pro", "hqd_i_refresh_pro": "I-Refresh Pro",
@ -345,10 +357,10 @@
"hqd_mix": "Ropa mixta", "hqd_mix": "Ropa mixta",
"hqd_night_dry": "Secado nocturno", "hqd_night_dry": "Secado nocturno",
"hqd_outdoor": "Outdoor", "hqd_outdoor": "Outdoor",
"hqd_precious_cure": "Precious cure", "hqd_precious_cure": "Precious Cure",
"hqd_quick_20": "Rápido 20", "hqd_quick_20": "Rápido 20",
"hqd_quick_30": "Rápido 30", "hqd_quick_30": "Rápido 30",
"hqd_quick_dry": "Secado rápido 30'", "hqd_quick_dry": "Secado rápido automático de 30'",
"hqd_quilt": "Colchas", "hqd_quilt": "Colchas",
"hqd_refresh": "Refrescar", "hqd_refresh": "Refrescar",
"hqd_school_uniform": "Uniformes escolares", "hqd_school_uniform": "Uniformes escolares",
@ -385,6 +397,8 @@
"iot_dry_gym_fit": "Ropa de Deporte - Fitness", "iot_dry_gym_fit": "Ropa de Deporte - Fitness",
"iot_dry_lingerie": "Lencería", "iot_dry_lingerie": "Lencería",
"iot_dry_mixed": "Ropa mixta", "iot_dry_mixed": "Ropa mixta",
"iot_dry_pet_accessories": "Accesorios para mascotas",
"iot_dry_pet_hair_removal": "Eliminación del pelo de mascotas (prelavado)",
"iot_dry_playsuits": "Prendas de una pieza - Mono", "iot_dry_playsuits": "Prendas de una pieza - Mono",
"iot_dry_rapid_30": "Rápido 30", "iot_dry_rapid_30": "Rápido 30",
"iot_dry_rapid_59": "Rápido 59", "iot_dry_rapid_59": "Rápido 59",
@ -436,9 +450,9 @@
"state": { "state": {
"20_degrees_coloured_cottons": "Color y algodón 20 °C", "20_degrees_coloured_cottons": "Color y algodón 20 °C",
"20_degrees_new_energy_label": "20°C", "20_degrees_new_energy_label": "20°C",
"active_steam": "Vapor", "active_steam": "Vapor 29'",
"active_wash": "Lavado activo", "active_wash": "Lavado activo 20'",
"active_wash_steam": "Lavado activo", "active_wash_steam": "Lavado activo 20' + Vapor",
"allergy_care": "Antialergias", "allergy_care": "Antialergias",
"allergy_care_pro": "Allergy Care Pro", "allergy_care_pro": "Allergy Care Pro",
"all_in_one_49": "Todo en uno 49", "all_in_one_49": "Todo en uno 49",
@ -458,19 +472,19 @@
"cottons_steam": "Algodón + Vapor", "cottons_steam": "Algodón + Vapor",
"cotton_care_59": "Cotton Care 59 Min", "cotton_care_59": "Cotton Care 59 Min",
"delicate_59": "Delicado 59'", "delicate_59": "Delicado 59'",
"delicate_silk": "Seda delicada", "delicate_silk": "Seda delicada 59'",
"delicate_silk_steam": "Seda delicada + vapor", "delicate_silk_steam": "Seda delicada + vapor",
"delicati_59": "Delicado 59'", "delicati_59": "Delicado 59'",
"delicati_59_steam": "Delicado 59'", "delicati_59_steam": "Delicado 59'",
"drain_spin": "Desagüe + centrifugado", "drain_spin": "Desagüe + centrifugado",
"easy_iron": "Planchado fácil", "easy_iron": "Planchado fácil 39'",
"eco_40_60_new_energy_label": "Eco 40-60", "eco_40_60_new_energy_label": "Eco 40-60",
"extra_care": "Cuidado extra", "extra_care": "Cuidado extra",
"fitness": "Deporte", "fitness": "Deporte",
"fitness_care": "Deporte", "fitness_care": "Deporte",
"fresh_care": "Cuidado y frescor", "fresh_care": "Cuidado y frescor 59'",
"fresh_care_steam": "Cuidado y frescor + Vapor", "fresh_care_steam": "Cuidado y frescor + Vapor",
"handwash_wool": "Lana y lavado a mano", "handwash_wool": "Lana y lavado a mano 48'",
"high_dry": "Secado algodón", "high_dry": "Secado algodón",
"hqd_20_degrees": "Algodón 20℃", "hqd_20_degrees": "Algodón 20℃",
"hqd_allergy": "Antialergias", "hqd_allergy": "Antialergias",
@ -478,13 +492,13 @@
"hqd_babycare": "Baby Care", "hqd_babycare": "Baby Care",
"hqd_checkup": "Revisión", "hqd_checkup": "Revisión",
"hqd_cottons": "Algodón", "hqd_cottons": "Algodón",
"hqd_delicate": "Ropa delicada", "hqd_delicate": "Ropa delicada 50'",
"hqd_delicate_cradle": "Ropa delicada", "hqd_delicate_cradle": "Ropa delicada",
"hqd_dry": "Secado algodón", "hqd_dry": "Secado algodón",
"hqd_dry_synthetics": "Secado de ropa mixta", "hqd_dry_synthetics": "Secado de ropa mixta",
"hqd_duvet": "Edredón", "hqd_duvet": "Edredón",
"hqd_eco_40_60_degrees": "Eco 40-60", "hqd_eco_40_60_degrees": "Eco 40-60",
"hqd_handwash_wool": "Lana", "hqd_handwash_wool": "Lana 40'",
"hqd_i_refresh": "i-Refresh", "hqd_i_refresh": "i-Refresh",
"hqd_mix": "Mixta", "hqd_mix": "Mixta",
"hqd_quick_15": "Rápido 15'", "hqd_quick_15": "Rápido 15'",
@ -495,7 +509,7 @@
"hqd_shirts": "Camisas", "hqd_shirts": "Camisas",
"hqd_smart": "Smart A.I.", "hqd_smart": "Smart A.I.",
"hqd_spin": "Centrifugado", "hqd_spin": "Centrifugado",
"hqd_sport": "Deporte", "hqd_sport": "Deporte 25'",
"hqd_super_fast": "Rápido 39", "hqd_super_fast": "Rápido 39",
"hqd_synthetic_and_coloured": "Ropa sintética", "hqd_synthetic_and_coloured": "Ropa sintética",
"hygiene_59": "Higiene Plus 59'", "hygiene_59": "Higiene Plus 59'",
@ -506,10 +520,11 @@
"hygiene_pro_steam": "Higiene Pro + Vapor", "hygiene_pro_steam": "Higiene Pro + Vapor",
"intensive_40": "Intensivo 40°C", "intensive_40": "Intensivo 40°C",
"intensive_40_steam": "Intensivo 40°C + vapor", "intensive_40_steam": "Intensivo 40°C + vapor",
"iot_active_steam": "Vapor", "iot_active_steam": "Vapor 29'",
"iot_active_wash_steam": "Lavado activo", "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",
@ -542,17 +557,19 @@
"iot_dry_technical_fabrics": "Tejidos técnicos", "iot_dry_technical_fabrics": "Tejidos técnicos",
"iot_dry_warm_embrace": "Cálido abrazo", "iot_dry_warm_embrace": "Cálido abrazo",
"iot_dry_wool_dry": "Secado lana", "iot_dry_wool_dry": "Secado lana",
"iot_easy_iron": "Planchado fácil", "iot_easy_iron": "Planchado fácil 39'",
"iot_fresh_care_steam": "Cuidado y frescor + Vapor", "iot_fresh_care_steam": "Cuidado y frescor + Vapor",
"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_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'",
"iot_rapid_a_class_60_steam": "Clase rápida A 60 + vapor", "iot_rapid_a_class_60_steam": "Clase rápida A 60 + vapor",
"iot_resistant_cotton_steam": "Algodón + Vapor", "iot_resistant_cotton_steam": "Algodón + Vapor",
"iot_shirts_steam": "Camisas + Vapor", "iot_shirts_steam": "Camisas + Vapor",
"iot_single_item_steam": "Elemento único + Vapor", "iot_single_item_steam": "Elemento único 20' + Vapor",
"iot_smart_wash": "Smart Wash", "iot_smart_wash": "Smart Wash",
"iot_soft_care_steam": "Soft Care + Steam", "iot_soft_care_steam": "Soft Care + Steam",
"iot_special_39_full_load_steam": "Especial 39' + Vapor", "iot_special_39_full_load_steam": "Especial 39' + Vapor",
@ -586,7 +603,7 @@
"iot_wash_coloured_bed_linen": "Ropa de cama de color", "iot_wash_coloured_bed_linen": "Ropa de cama de color",
"iot_wash_coloured_bed_linen_steam": "Ropa de cama de color + vapor", "iot_wash_coloured_bed_linen_steam": "Ropa de cama de color + vapor",
"iot_wash_coloured_curtains": "Cortinas de color", "iot_wash_coloured_curtains": "Cortinas de color",
"iot_wash_coloured_shirts": "Camisas de color", "iot_wash_coloured_shirts": "Camisas de color 59'",
"iot_wash_coloured_shirts_steam": "Camisas de color + vapor", "iot_wash_coloured_shirts_steam": "Camisas de color + vapor",
"iot_wash_coloured_steam": "Ropa de color + Vapor", "iot_wash_coloured_steam": "Ropa de color + Vapor",
"iot_wash_coloured_tableclothes": "Manteles de color", "iot_wash_coloured_tableclothes": "Manteles de color",
@ -623,7 +640,7 @@
"iot_wash_down_jackets_zelig": "Plumíferos", "iot_wash_down_jackets_zelig": "Plumíferos",
"iot_wash_duvet": "Edredón", "iot_wash_duvet": "Edredón",
"iot_wash_fruit_stains": "Manchas de fruta", "iot_wash_fruit_stains": "Manchas de fruta",
"iot_wash_gym_fit": "Gimnasio - Ropa de deporte", "iot_wash_gym_fit": "Gimnasio - Ropa de deporte 59'",
"iot_wash_handwash": "Lavado a mano", "iot_wash_handwash": "Lavado a mano",
"iot_wash_handwash_colored": "Lavado a mano de ropa de color", "iot_wash_handwash_colored": "Lavado a mano de ropa de color",
"iot_wash_handwash_dark": "Lavado a mano de ropa oscura", "iot_wash_handwash_dark": "Lavado a mano de ropa oscura",
@ -668,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",
@ -686,6 +704,7 @@
"iot_wash_wool": "Lana", "iot_wash_wool": "Lana",
"jeans": "Vaqueros", "jeans": "Vaqueros",
"jeans_60": "Jeans", "jeans_60": "Jeans",
"jeans_60_steam": "Vaqueros + Vapor",
"low_dry": "Secado de ropa mixta", "low_dry": "Secado de ropa mixta",
"mixed": "Ropa mixta", "mixed": "Ropa mixta",
"mixed_and_colored_59": "Mixta y de color 59'", "mixed_and_colored_59": "Mixta y de color 59'",
@ -709,7 +728,7 @@
"rinse": "Aclarado", "rinse": "Aclarado",
"shirts_steam": "Camisas + Vapor", "shirts_steam": "Camisas + Vapor",
"silent_night": "Ciclo nocturno", "silent_night": "Ciclo nocturno",
"single_item": "Elemento único", "single_item": "Elemento único 20'",
"single_item_steam": "Elemento único + Vapor", "single_item_steam": "Elemento único + Vapor",
"smart_wash": "Smart Wash", "smart_wash": "Smart Wash",
"soft_care": "Cuidado suave", "soft_care": "Cuidado suave",
@ -725,8 +744,8 @@
"steam_39": "Vapor 39'", "steam_39": "Vapor 39'",
"steam_care_pro": "Steam Care Pro", "steam_care_pro": "Steam Care Pro",
"steam_care_pro_cotton": "Steam Care Pro - Algodón", "steam_care_pro_cotton": "Steam Care Pro - Algodón",
"steam_care_pro_delicates": "Steam Care Pro - Delicados", "steam_care_pro_delicates": "Steam Care Pro - Delicados 16'",
"steam_care_pro_synthetic": "Steam Care Pro - Sintéticos", "steam_care_pro_synthetic": "Steam Care Pro - Sintéticos 20'",
"steam_hygiene_plus": "Vapor higiene extra", "steam_hygiene_plus": "Vapor higiene extra",
"synthetics": "Ropa sintética", "synthetics": "Ropa sintética",
"synthetic_and_coloured": "Ropa sintética y de color", "synthetic_and_coloured": "Ropa sintética y de color",
@ -738,7 +757,7 @@
"wool": "Lana", "wool": "Lana",
"wool_and_delicates_49": "Lana/Delicados 49'", "wool_and_delicates_49": "Lana/Delicados 49'",
"wool_dry": "Secado lana", "wool_dry": "Secado lana",
"wool_soft_care": "Lana & Soft Care" "wool_soft_care": "Lana & Soft Care 48'"
}, },
"name": "Programa" "name": "Programa"
}, },
@ -748,20 +767,25 @@
"cheese": "Queso", "cheese": "Queso",
"chiller": "Quick cool", "chiller": "Quick cool",
"cold_drinks": "Soft chill", "cold_drinks": "Soft chill",
"cool_drink": "Cool Drink",
"eco": "Eco", "eco": "Eco",
"eco_mode": "Modo Eco", "eco_mode": "Modo Eco",
"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",
"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",
"sea_food": "Ready to cook meal", "sea_food": "Ready to cook meal",
"smart_mode_title": "Smart Mode",
"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",
"zero_fresh": "0° Fresh" "vegetables": "Vegetable",
"zero_fresh": "0°C Fresh"
}, },
"name": "Programa" "name": "Programa"
}, },
@ -887,6 +911,14 @@
}, },
"fan_speed": { "fan_speed": {
"name": "Velocidad del ventilador" "name": "Velocidad del ventilador"
},
"humidity_level": {
"state": {
"low": "Bajo",
"mid": "Medio",
"high": "Alto"
},
"name": "Nivel de humedad"
} }
}, },
"select": { "select": {
@ -956,22 +988,25 @@
"auto_care_soil": "Auto Care", "auto_care_soil": "Auto Care",
"auto_hygiene": "Auto Hygiene", "auto_hygiene": "Auto Hygiene",
"auto_plus": "AutoPlus", "auto_plus": "AutoPlus",
"auto_plus_soil": "Auto Plus",
"auto_rapid": "Auto Rapid", "auto_rapid": "Auto Rapid",
"auto_rapid_soil": "Auto Rapid",
"auto_sensor": "Auto Sensor", "auto_sensor": "Auto Sensor",
"auto_sensor_soil": "Auto Sensor", "auto_sensor_soil": "Auto Sensor",
"auto_universal": "Auto Universal 50 - 60°C", "auto_universal": "Auto Universal 50-60°C",
"auto_universal_plus": "Auto Universal Plus 65 - 75°C", "auto_universal_plus": "Auto Universal Plus 65-75°C",
"auto_universal_plus_soil": "Auto Universal Plus 65 - 75°C", "auto_universal_plus_soil": "Auto Universal Plus 65-75°C",
"auto_universal_soil": "Auto Universal 50 - 60°C", "auto_universal_soil": "Auto Universal 50-60°C",
"auto_wash": "Lavado automático", "auto_wash": "Lavado automático",
"auto_wash_soil": "Lavado automático", "auto_wash_soil": "Lavado automático",
"classe_a_59": "Clase A 59' 65°C", "classe_a_59": "Clase A 59' 65°C",
"delicate": "Delicado 45°C", "delicate": "Delicado 45°C",
"dishwasher_care": "Ciclo de limpieza antical", "dishwasher_care": "Ciclo de limpieza antical",
"eco": "Eco", "eco": "Eco 45°C",
"eco_asynch": "Eco 45°C", "eco_asynch": "Eco 45°C",
"eco_bldc": "Eco 45°C", "eco_bldc": "Eco 45°C",
"eco_synch": "Eco 45°C", "eco_synch": "Eco 45°C",
"eco_voice": "Eco",
"gentle_wash": "Gentle wash", "gentle_wash": "Gentle wash",
"glass": "Cristal", "glass": "Cristal",
"glassware": "Cristal 45 °C", "glassware": "Cristal 45 °C",
@ -980,8 +1015,9 @@
"hygiene_plus": "Higiene+ 75 °C", "hygiene_plus": "Higiene+ 75 °C",
"intensive": "Intensivo", "intensive": "Intensivo",
"intensive_rapid": "Fuerte rápido", "intensive_rapid": "Fuerte rápido",
"intensive_voice": "Intensivo",
"iot_auto_sensor": "Auto Sensor", "iot_auto_sensor": "Auto Sensor",
"iot_auto_universal_soil": "Auto Universal 50 - 60°C", "iot_auto_universal_soil": "Auto Universal 50-60°C",
"iot_auto_wash_soil": "Lavado automático", "iot_auto_wash_soil": "Lavado automático",
"iot_baby_care": "Baby Care", "iot_baby_care": "Baby Care",
"iot_breakfast": "Desayuno", "iot_breakfast": "Desayuno",
@ -1021,6 +1057,13 @@
"iot_super_wash": "Lavado Super", "iot_super_wash": "Lavado Super",
"iot_turbopower": "TurboPower", "iot_turbopower": "TurboPower",
"iot_universal": "Universal 60 °C", "iot_universal": "Universal 60 °C",
"iot_voice_automatic": "Automatic",
"iot_voice_delicate": "Delicado 45°C",
"iot_voice_eco": "Eco 45°C",
"iot_voice_intensive": "Intensivo 75°C",
"iot_voice_prewash": "Pre-lavado",
"iot_voice_rapid_59": "Rápido 59'",
"iot_voice_universal": "Universal 60 °C",
"iot_wok_grids_maxi_pans": "Especial Ollas (Wok - Parrilas y Ollas)", "iot_wok_grids_maxi_pans": "Especial Ollas (Wok - Parrilas y Ollas)",
"iot_wok_grids_maxi_pans_soil": "Especial Ollas (Wok - Parrilas y Ollas)", "iot_wok_grids_maxi_pans_soil": "Especial Ollas (Wok - Parrilas y Ollas)",
"iot_yes_quick_cycle": "Yes Quick", "iot_yes_quick_cycle": "Yes Quick",
@ -1052,6 +1095,7 @@
"ultra_silent": "Ultra Silencioso 55°C", "ultra_silent": "Ultra Silencioso 55°C",
"universal": "Universal 60 °C", "universal": "Universal 60 °C",
"universal_plus": "Universal Plus 70 °C", "universal_plus": "Universal Plus 70 °C",
"zone_wash": "Flex Zone Wash",
"zoom_39": "Zoom 39 min" "zoom_39": "Zoom 39 min"
}, },
"name": "Programa" "name": "Programa"
@ -1185,14 +1229,14 @@
"hqd_bulky": "Objetos voluminosos", "hqd_bulky": "Objetos voluminosos",
"hqd_casual": "Casual", "hqd_casual": "Casual",
"hqd_cold_wind_30": "Brisa fresca 30 minutos", "hqd_cold_wind_30": "Brisa fresca 30 minutos",
"hqd_cold_wind_timing": "Brisa fresca", "hqd_cold_wind_timing": "Aire frío",
"hqd_cotton": "Algodón", "hqd_cotton": "Algodón",
"hqd_curtain": "Cortinas", "hqd_curtain": "Cortinas",
"hqd_delicate": "Ropa delicada", "hqd_delicate": "Ropa delicada",
"hqd_diaper": "Pañales", "hqd_diaper": "Pañales",
"hqd_duvet": "Edredones", "hqd_duvet": "Chaqueta acolchada de fibras sintéticas",
"hqd_feather": "Plumíferos", "hqd_feather": "Chaqueta acolchada de fibras naturales",
"hqd_hot_wind_timing": "Aire caliente", "hqd_hot_wind_timing": "Abrazo cálido",
"hqd_hygienic": "Higienizar", "hqd_hygienic": "Higienizar",
"hqd_i_refresh": "I-Refresh", "hqd_i_refresh": "I-Refresh",
"hqd_i_refresh_pro": "I-Refresh Pro", "hqd_i_refresh_pro": "I-Refresh Pro",
@ -1202,10 +1246,10 @@
"hqd_mix": "Ropa mixta", "hqd_mix": "Ropa mixta",
"hqd_night_dry": "Secado nocturno", "hqd_night_dry": "Secado nocturno",
"hqd_outdoor": "Outdoor", "hqd_outdoor": "Outdoor",
"hqd_precious_cure": "Precious cure", "hqd_precious_cure": "Precious Cure",
"hqd_quick_20": "Rápido 20", "hqd_quick_20": "Rápido 20",
"hqd_quick_30": "Rápido 30", "hqd_quick_30": "Rápido 30",
"hqd_quick_dry": "Secado rápido 30'", "hqd_quick_dry": "Secado rápido automático de 30'",
"hqd_quilt": "Colchas", "hqd_quilt": "Colchas",
"hqd_refresh": "Refrescar", "hqd_refresh": "Refrescar",
"hqd_school_uniform": "Uniformes escolares", "hqd_school_uniform": "Uniformes escolares",
@ -1242,6 +1286,8 @@
"iot_dry_gym_fit": "Ropa de Deporte - Fitness", "iot_dry_gym_fit": "Ropa de Deporte - Fitness",
"iot_dry_lingerie": "Lencería", "iot_dry_lingerie": "Lencería",
"iot_dry_mixed": "Ropa mixta", "iot_dry_mixed": "Ropa mixta",
"iot_dry_pet_accessories": "Accesorios para mascotas",
"iot_dry_pet_hair_removal": "Eliminación del pelo de mascotas (prelavado)",
"iot_dry_playsuits": "Prendas de una pieza - Mono", "iot_dry_playsuits": "Prendas de una pieza - Mono",
"iot_dry_rapid_30": "Rápido 30", "iot_dry_rapid_30": "Rápido 30",
"iot_dry_rapid_59": "Rápido 59", "iot_dry_rapid_59": "Rápido 59",
@ -1293,9 +1339,9 @@
"state": { "state": {
"20_degrees_coloured_cottons": "Color y algodón 20 °C", "20_degrees_coloured_cottons": "Color y algodón 20 °C",
"20_degrees_new_energy_label": "20°C", "20_degrees_new_energy_label": "20°C",
"active_steam": "Vapor", "active_steam": "Vapor 29'",
"active_wash": "Lavado activo", "active_wash": "Lavado activo 20'",
"active_wash_steam": "Lavado activo", "active_wash_steam": "Lavado activo 20' + Vapor",
"allergy_care": "Antialergias", "allergy_care": "Antialergias",
"allergy_care_pro": "Allergy Care Pro", "allergy_care_pro": "Allergy Care Pro",
"all_in_one_49": "Todo en uno 49", "all_in_one_49": "Todo en uno 49",
@ -1315,19 +1361,19 @@
"cottons_steam": "Algodón + Vapor", "cottons_steam": "Algodón + Vapor",
"cotton_care_59": "Cotton Care 59 Min", "cotton_care_59": "Cotton Care 59 Min",
"delicate_59": "Delicado 59'", "delicate_59": "Delicado 59'",
"delicate_silk": "Seda delicada", "delicate_silk": "Seda delicada 59'",
"delicate_silk_steam": "Seda delicada + vapor", "delicate_silk_steam": "Seda delicada + vapor",
"delicati_59": "Delicado 59'", "delicati_59": "Delicado 59'",
"delicati_59_steam": "Delicado 59'", "delicati_59_steam": "Delicado 59'",
"drain_spin": "Desagüe + centrifugado", "drain_spin": "Desagüe + centrifugado",
"easy_iron": "Planchado fácil", "easy_iron": "Planchado fácil 39'",
"eco_40_60_new_energy_label": "Eco 40-60", "eco_40_60_new_energy_label": "Eco 40-60",
"extra_care": "Cuidado extra", "extra_care": "Cuidado extra",
"fitness": "Deporte", "fitness": "Deporte",
"fitness_care": "Deporte", "fitness_care": "Deporte",
"fresh_care": "Cuidado y frescor", "fresh_care": "Cuidado y frescor 59'",
"fresh_care_steam": "Cuidado y frescor + Vapor", "fresh_care_steam": "Cuidado y frescor + Vapor",
"handwash_wool": "Lana y lavado a mano", "handwash_wool": "Lana y lavado a mano 48'",
"high_dry": "Secado algodón", "high_dry": "Secado algodón",
"hqd_20_degrees": "Algodón 20℃", "hqd_20_degrees": "Algodón 20℃",
"hqd_allergy": "Antialergias", "hqd_allergy": "Antialergias",
@ -1335,13 +1381,13 @@
"hqd_babycare": "Baby Care", "hqd_babycare": "Baby Care",
"hqd_checkup": "Revisión", "hqd_checkup": "Revisión",
"hqd_cottons": "Algodón", "hqd_cottons": "Algodón",
"hqd_delicate": "Ropa delicada", "hqd_delicate": "Ropa delicada 50'",
"hqd_delicate_cradle": "Ropa delicada", "hqd_delicate_cradle": "Ropa delicada",
"hqd_dry": "Secado algodón", "hqd_dry": "Secado algodón",
"hqd_dry_synthetics": "Secado de ropa mixta", "hqd_dry_synthetics": "Secado de ropa mixta",
"hqd_duvet": "Edredón", "hqd_duvet": "Edredón",
"hqd_eco_40_60_degrees": "Eco 40-60", "hqd_eco_40_60_degrees": "Eco 40-60",
"hqd_handwash_wool": "Lana", "hqd_handwash_wool": "Lana 40'",
"hqd_i_refresh": "i-Refresh", "hqd_i_refresh": "i-Refresh",
"hqd_mix": "Mixta", "hqd_mix": "Mixta",
"hqd_quick_15": "Rápido 15'", "hqd_quick_15": "Rápido 15'",
@ -1352,7 +1398,7 @@
"hqd_shirts": "Camisas", "hqd_shirts": "Camisas",
"hqd_smart": "Smart A.I.", "hqd_smart": "Smart A.I.",
"hqd_spin": "Centrifugado", "hqd_spin": "Centrifugado",
"hqd_sport": "Deporte", "hqd_sport": "Deporte 25'",
"hqd_super_fast": "Rápido 39", "hqd_super_fast": "Rápido 39",
"hqd_synthetic_and_coloured": "Ropa sintética", "hqd_synthetic_and_coloured": "Ropa sintética",
"hygiene_59": "Higiene Plus 59'", "hygiene_59": "Higiene Plus 59'",
@ -1363,10 +1409,11 @@
"hygiene_pro_steam": "Higiene Pro + Vapor", "hygiene_pro_steam": "Higiene Pro + Vapor",
"intensive_40": "Intensivo 40°C", "intensive_40": "Intensivo 40°C",
"intensive_40_steam": "Intensivo 40°C + vapor", "intensive_40_steam": "Intensivo 40°C + vapor",
"iot_active_steam": "Vapor", "iot_active_steam": "Vapor 29'",
"iot_active_wash_steam": "Lavado activo", "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",
@ -1399,17 +1446,19 @@
"iot_dry_technical_fabrics": "Tejidos técnicos", "iot_dry_technical_fabrics": "Tejidos técnicos",
"iot_dry_warm_embrace": "Cálido abrazo", "iot_dry_warm_embrace": "Cálido abrazo",
"iot_dry_wool_dry": "Secado lana", "iot_dry_wool_dry": "Secado lana",
"iot_easy_iron": "Planchado fácil", "iot_easy_iron": "Planchado fácil 39'",
"iot_fresh_care_steam": "Cuidado y frescor + Vapor", "iot_fresh_care_steam": "Cuidado y frescor + Vapor",
"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_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'",
"iot_rapid_a_class_60_steam": "Clase rápida A 60 + vapor", "iot_rapid_a_class_60_steam": "Clase rápida A 60 + vapor",
"iot_resistant_cotton_steam": "Algodón + Vapor", "iot_resistant_cotton_steam": "Algodón + Vapor",
"iot_shirts_steam": "Camisas + Vapor", "iot_shirts_steam": "Camisas + Vapor",
"iot_single_item_steam": "Elemento único + Vapor", "iot_single_item_steam": "Elemento único 20' + Vapor",
"iot_smart_wash": "Smart Wash", "iot_smart_wash": "Smart Wash",
"iot_soft_care_steam": "Soft Care + Steam", "iot_soft_care_steam": "Soft Care + Steam",
"iot_special_39_full_load_steam": "Especial 39' + Vapor", "iot_special_39_full_load_steam": "Especial 39' + Vapor",
@ -1443,7 +1492,7 @@
"iot_wash_coloured_bed_linen": "Ropa de cama de color", "iot_wash_coloured_bed_linen": "Ropa de cama de color",
"iot_wash_coloured_bed_linen_steam": "Ropa de cama de color + vapor", "iot_wash_coloured_bed_linen_steam": "Ropa de cama de color + vapor",
"iot_wash_coloured_curtains": "Cortinas de color", "iot_wash_coloured_curtains": "Cortinas de color",
"iot_wash_coloured_shirts": "Camisas de color", "iot_wash_coloured_shirts": "Camisas de color 59'",
"iot_wash_coloured_shirts_steam": "Camisas de color + vapor", "iot_wash_coloured_shirts_steam": "Camisas de color + vapor",
"iot_wash_coloured_steam": "Ropa de color + Vapor", "iot_wash_coloured_steam": "Ropa de color + Vapor",
"iot_wash_coloured_tableclothes": "Manteles de color", "iot_wash_coloured_tableclothes": "Manteles de color",
@ -1480,7 +1529,7 @@
"iot_wash_down_jackets_zelig": "Plumíferos", "iot_wash_down_jackets_zelig": "Plumíferos",
"iot_wash_duvet": "Edredón", "iot_wash_duvet": "Edredón",
"iot_wash_fruit_stains": "Manchas de fruta", "iot_wash_fruit_stains": "Manchas de fruta",
"iot_wash_gym_fit": "Gimnasio - Ropa de deporte", "iot_wash_gym_fit": "Gimnasio - Ropa de deporte 59'",
"iot_wash_handwash": "Lavado a mano", "iot_wash_handwash": "Lavado a mano",
"iot_wash_handwash_colored": "Lavado a mano de ropa de color", "iot_wash_handwash_colored": "Lavado a mano de ropa de color",
"iot_wash_handwash_dark": "Lavado a mano de ropa oscura", "iot_wash_handwash_dark": "Lavado a mano de ropa oscura",
@ -1525,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",
@ -1543,6 +1593,7 @@
"iot_wash_wool": "Lana", "iot_wash_wool": "Lana",
"jeans": "Vaqueros", "jeans": "Vaqueros",
"jeans_60": "Jeans", "jeans_60": "Jeans",
"jeans_60_steam": "Vaqueros + Vapor",
"low_dry": "Secado de ropa mixta", "low_dry": "Secado de ropa mixta",
"mixed": "Ropa mixta", "mixed": "Ropa mixta",
"mixed_and_colored_59": "Mixta y de color 59'", "mixed_and_colored_59": "Mixta y de color 59'",
@ -1566,7 +1617,7 @@
"rinse": "Aclarado", "rinse": "Aclarado",
"shirts_steam": "Camisas + Vapor", "shirts_steam": "Camisas + Vapor",
"silent_night": "Ciclo nocturno", "silent_night": "Ciclo nocturno",
"single_item": "Elemento único", "single_item": "Elemento único 20'",
"single_item_steam": "Elemento único + Vapor", "single_item_steam": "Elemento único + Vapor",
"smart_wash": "Smart Wash", "smart_wash": "Smart Wash",
"soft_care": "Cuidado suave", "soft_care": "Cuidado suave",
@ -1582,8 +1633,8 @@
"steam_39": "Vapor 39'", "steam_39": "Vapor 39'",
"steam_care_pro": "Steam Care Pro", "steam_care_pro": "Steam Care Pro",
"steam_care_pro_cotton": "Steam Care Pro - Algodón", "steam_care_pro_cotton": "Steam Care Pro - Algodón",
"steam_care_pro_delicates": "Steam Care Pro - Delicados", "steam_care_pro_delicates": "Steam Care Pro - Delicados 16'",
"steam_care_pro_synthetic": "Steam Care Pro - Sintéticos", "steam_care_pro_synthetic": "Steam Care Pro - Sintéticos 20'",
"steam_hygiene_plus": "Vapor higiene extra", "steam_hygiene_plus": "Vapor higiene extra",
"synthetics": "Ropa sintética", "synthetics": "Ropa sintética",
"synthetic_and_coloured": "Ropa sintética y de color", "synthetic_and_coloured": "Ropa sintética y de color",
@ -1595,7 +1646,7 @@
"wool": "Lana", "wool": "Lana",
"wool_and_delicates_49": "Lana/Delicados 49'", "wool_and_delicates_49": "Lana/Delicados 49'",
"wool_dry": "Secado lana", "wool_dry": "Secado lana",
"wool_soft_care": "Lana & Soft Care" "wool_soft_care": "Lana & Soft Care 48'"
}, },
"name": "Programa" "name": "Programa"
}, },
@ -1605,20 +1656,25 @@
"cheese": "Queso", "cheese": "Queso",
"chiller": "Quick cool", "chiller": "Quick cool",
"cold_drinks": "Soft chill", "cold_drinks": "Soft chill",
"cool_drink": "Cool Drink",
"eco": "Eco", "eco": "Eco",
"eco_mode": "Modo Eco", "eco_mode": "Modo Eco",
"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",
"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",
"sea_food": "Ready to cook meal", "sea_food": "Ready to cook meal",
"smart_mode_title": "Smart Mode",
"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",
"zero_fresh": "0° Fresh" "vegetables": "Vegetable",
"zero_fresh": "0°C Fresh"
}, },
"name": "Programa" "name": "Programa"
}, },
@ -1671,6 +1727,71 @@
"unknown": "unknown" "unknown": "unknown"
}, },
"name": "Nivel de suciedad" "name": "Nivel de suciedad"
},
"stain_type": {
"state": {
"baby_food": "Comida de bebé",
"bean_paste": "Sopa de alubias",
"blood": "Sangre",
"blueberry": "Arándano",
"blue_ink": "Tinta azul",
"butter": "Mantequilla",
"chili_oil": "Aceite de chile",
"chili_sauce": "Salsa de chile",
"chocolate": "Chocolate",
"coffe": "Café",
"coffee": "Café",
"color_pencil": "Lápiz",
"cooking_oil": "Aceite de cocina",
"curry": "Curry",
"deodorant": "Desodorante",
"egg": "Huevo",
"fruit": "Fruta",
"glue": "Pegamento",
"grass": "Césped",
"ice_cream": "Helado",
"ketchup": "Kétchup",
"lip_gloss": "Brillo de labios",
"mayonnaise": "Mayonesa",
"mech_grease": "Grasa mecánica",
"milk": "Leche",
"milk_tea": "Té con leche",
"oil": "Aceite",
"oil_pastel": "Pastel al óleo",
"perfume": "Perfume",
"rust": "Óxido",
"shoe_cream": "Betún",
"soil": "Tierra",
"soy_sauce": "Salsa De Soja",
"stain_level": "Nivel de manchas",
"sweat": "Sudor",
"tea": "Té",
"wine": "Vino",
"unknown": "unknown"
},
"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": {
@ -1928,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": {
@ -2062,6 +2186,9 @@
} }
} }
} }
},
"my_zone": {
"name": "My Zone"
} }
}, },
"fan": { "fan": {

View File

@ -99,22 +99,25 @@
"auto_care_soil": "Auto Care", "auto_care_soil": "Auto Care",
"auto_hygiene": "Auto Hygiène", "auto_hygiene": "Auto Hygiène",
"auto_plus": "AutoPlus", "auto_plus": "AutoPlus",
"auto_plus_soil": "Auto Plus Salissures",
"auto_rapid": "Auto Rapide", "auto_rapid": "Auto Rapide",
"auto_rapid_soil": "Auto Rapide Salissures",
"auto_sensor": "Auto Sensor", "auto_sensor": "Auto Sensor",
"auto_sensor_soil": "Auto Sensor", "auto_sensor_soil": "Auto Sensor",
"auto_universal": "Auto universel 50 - 60°C", "auto_universal": "Auto universel 50-60°C",
"auto_universal_plus": "Auto universel Plus 65 - 75°C", "auto_universal_plus": "Auto universel Plus 65-75°C",
"auto_universal_plus_soil": "Auto universel Plus 65 - 75°C", "auto_universal_plus_soil": "Auto universel Plus 65-75°C",
"auto_universal_soil": "Auto universel 50 - 60°C", "auto_universal_soil": "Auto universel 50-60°C",
"auto_wash": "Lavage automatique", "auto_wash": "Lavage automatique",
"auto_wash_soil": "Lavage automatique", "auto_wash_soil": "Lavage automatique",
"classe_a_59": "Classe A 59' 65°C", "classe_a_59": "Classe A 59' 65°C",
"delicate": "Délicat 45°C", "delicate": "Délicat 45°C",
"dishwasher_care": "Cycle de nettoyage du calcaire", "dishwasher_care": "Cycle de nettoyage du calcaire",
"eco": "Éco", "eco": "Eco 45°C",
"eco_asynch": "Eco 45°C", "eco_asynch": "Eco 45°C",
"eco_bldc": "Eco 45°C", "eco_bldc": "Eco 45°C",
"eco_synch": "Eco 45°C", "eco_synch": "Eco 45°C",
"eco_voice": "Eco",
"gentle_wash": "Gentle wash", "gentle_wash": "Gentle wash",
"glass": "En verre", "glass": "En verre",
"glassware": "Verres 45 °C", "glassware": "Verres 45 °C",
@ -123,8 +126,9 @@
"hygiene_plus": "Hygiène 75 °C", "hygiene_plus": "Hygiène 75 °C",
"intensive": "Intensif", "intensive": "Intensif",
"intensive_rapid": "Intensif rapide", "intensive_rapid": "Intensif rapide",
"intensive_voice": "Intensif",
"iot_auto_sensor": "Auto Sensor", "iot_auto_sensor": "Auto Sensor",
"iot_auto_universal_soil": "Auto universel 50 - 60°C", "iot_auto_universal_soil": "Auto universel 50-60°C",
"iot_auto_wash_soil": "Lavage automatique", "iot_auto_wash_soil": "Lavage automatique",
"iot_baby_care": "Soin Bébé", "iot_baby_care": "Soin Bébé",
"iot_breakfast": "Déjeuner", "iot_breakfast": "Déjeuner",
@ -164,6 +168,13 @@
"iot_super_wash": "Lavage Super Intensif", "iot_super_wash": "Lavage Super Intensif",
"iot_turbopower": "TurboPower", "iot_turbopower": "TurboPower",
"iot_universal": "Universel 60 °C", "iot_universal": "Universel 60 °C",
"iot_voice_automatic": "Automatic",
"iot_voice_delicate": "Délicat 45°C",
"iot_voice_eco": "Eco 45°C",
"iot_voice_intensive": "Intensif 75°C",
"iot_voice_prewash": "Prélavage",
"iot_voice_rapid_59": "Rapide 59'",
"iot_voice_universal": "Universel 60 °C",
"iot_wok_grids_maxi_pans": "Spécial casserole (Wok - Grill & Casserole)", "iot_wok_grids_maxi_pans": "Spécial casserole (Wok - Grill & Casserole)",
"iot_wok_grids_maxi_pans_soil": "Spécial casserole (Wok - Grill & Casserole)", "iot_wok_grids_maxi_pans_soil": "Spécial casserole (Wok - Grill & Casserole)",
"iot_yes_quick_cycle": "Yes Quick", "iot_yes_quick_cycle": "Yes Quick",
@ -195,6 +206,7 @@
"ultra_silent": "Ultra silence 55°C", "ultra_silent": "Ultra silence 55°C",
"universal": "Universel 60 °C", "universal": "Universel 60 °C",
"universal_plus": "Universel Plus 70 °C", "universal_plus": "Universel Plus 70 °C",
"zone_wash": "Flex Zone Wash",
"zoom_39": "Zoom 39 min" "zoom_39": "Zoom 39 min"
}, },
"name": "Programme" "name": "Programme"
@ -328,14 +340,14 @@
"hqd_bulky": "Articles volumineux", "hqd_bulky": "Articles volumineux",
"hqd_casual": "Journalier", "hqd_casual": "Journalier",
"hqd_cold_wind_30": "Brise rafraîchissante 30 minutes", "hqd_cold_wind_30": "Brise rafraîchissante 30 minutes",
"hqd_cold_wind_timing": "Brise rafraîchissante", "hqd_cold_wind_timing": "Air froid",
"hqd_cotton": "Coton", "hqd_cotton": "Coton",
"hqd_curtain": "Rideaux", "hqd_curtain": "Rideaux",
"hqd_delicate": "Délicats", "hqd_delicate": "Délicats",
"hqd_diaper": "Couches", "hqd_diaper": "Couches",
"hqd_duvet": "Couette", "hqd_duvet": "Veste matelassée en fibre synthétique",
"hqd_feather": "Vestes en duvet", "hqd_feather": "Veste matelassée en fibre naturelle",
"hqd_hot_wind_timing": "Air chaud", "hqd_hot_wind_timing": "Chauffage délicat",
"hqd_hygienic": "Hygiénisation", "hqd_hygienic": "Hygiénisation",
"hqd_i_refresh": "I-Refresh", "hqd_i_refresh": "I-Refresh",
"hqd_i_refresh_pro": "I-Refresh Pro", "hqd_i_refresh_pro": "I-Refresh Pro",
@ -345,10 +357,10 @@
"hqd_mix": "Tissus mélangés", "hqd_mix": "Tissus mélangés",
"hqd_night_dry": "Séchage toute la nuit", "hqd_night_dry": "Séchage toute la nuit",
"hqd_outdoor": "Outdoor", "hqd_outdoor": "Outdoor",
"hqd_precious_cure": "Precious cure", "hqd_precious_cure": "Precious Cure",
"hqd_quick_20": "Rapide 20", "hqd_quick_20": "Rapide 20",
"hqd_quick_30": "Rapide 30", "hqd_quick_30": "Rapide 30",
"hqd_quick_dry": "Séchage rapide 30'", "hqd_quick_dry": "Séchage rapide automatique 30'",
"hqd_quilt": "Couvertures", "hqd_quilt": "Couvertures",
"hqd_refresh": "Rafraîchissement", "hqd_refresh": "Rafraîchissement",
"hqd_school_uniform": "Uniforme scolaire", "hqd_school_uniform": "Uniforme scolaire",
@ -385,6 +397,8 @@
"iot_dry_gym_fit": "Sport", "iot_dry_gym_fit": "Sport",
"iot_dry_lingerie": "Lingerie", "iot_dry_lingerie": "Lingerie",
"iot_dry_mixed": "Tissus mélangés", "iot_dry_mixed": "Tissus mélangés",
"iot_dry_pet_accessories": "Accessoires pour animaux",
"iot_dry_pet_hair_removal": "Élimination des poils danimaux (prélavage)",
"iot_dry_playsuits": "Combinaisons", "iot_dry_playsuits": "Combinaisons",
"iot_dry_rapid_30": "Rapid 30", "iot_dry_rapid_30": "Rapid 30",
"iot_dry_rapid_59": "Rapide 59'.", "iot_dry_rapid_59": "Rapide 59'.",
@ -436,9 +450,9 @@
"state": { "state": {
"20_degrees_coloured_cottons": "Couleurs 20 °C et cotons", "20_degrees_coloured_cottons": "Couleurs 20 °C et cotons",
"20_degrees_new_energy_label": "20°C", "20_degrees_new_energy_label": "20°C",
"active_steam": "Vapeur d'eau", "active_steam": "Vapeur d'eau 29'",
"active_wash": "Lavage actif", "active_wash": "Lavage actif 20'",
"active_wash_steam": "Lavage actif", "active_wash_steam": "Lavage actif 20' + vapeur",
"allergy_care": "Soin Allergie", "allergy_care": "Soin Allergie",
"allergy_care_pro": "Soin Allergie Pro", "allergy_care_pro": "Soin Allergie Pro",
"all_in_one_49": "Tout-en-un 49'.", "all_in_one_49": "Tout-en-un 49'.",
@ -458,19 +472,19 @@
"cottons_steam": "Coton + Vapeur d'eau", "cottons_steam": "Coton + Vapeur d'eau",
"cotton_care_59": "Cotton Care 59 Min", "cotton_care_59": "Cotton Care 59 Min",
"delicate_59": "Délicat 59'", "delicate_59": "Délicat 59'",
"delicate_silk": "Délicat", "delicate_silk": "Délicat 59'",
"delicate_silk_steam": "Délicat + vapeur", "delicate_silk_steam": "Délicat + vapeur",
"delicati_59": "Délicat 59'", "delicati_59": "Délicat 59'",
"delicati_59_steam": "Délicat 59'", "delicati_59_steam": "Délicat 59'",
"drain_spin": "Vidange et essorage", "drain_spin": "Vidange et essorage",
"easy_iron": "Repassage facile", "easy_iron": "Repassage facile 39'",
"eco_40_60_new_energy_label": "Éco 40-60", "eco_40_60_new_energy_label": "Éco 40-60",
"extra_care": "Soin Extra", "extra_care": "Soin Extra",
"fitness": "Fitness Care", "fitness": "Fitness Care",
"fitness_care": "Fitness Care", "fitness_care": "Fitness Care",
"fresh_care": "Soin frais", "fresh_care": "Soin frais 59'",
"fresh_care_steam": "Fresh Care + vapeur", "fresh_care_steam": "Fresh Care + vapeur",
"handwash_wool": "Lavage à la main et laine", "handwash_wool": "Lavage à la main et laine 48'",
"high_dry": "Séchage du coton", "high_dry": "Séchage du coton",
"hqd_20_degrees": "Coton 20 ℃", "hqd_20_degrees": "Coton 20 ℃",
"hqd_allergy": "Soin Allergie", "hqd_allergy": "Soin Allergie",
@ -478,13 +492,13 @@
"hqd_babycare": "Soin Bébé", "hqd_babycare": "Soin Bébé",
"hqd_checkup": "Vérification", "hqd_checkup": "Vérification",
"hqd_cottons": "Coton", "hqd_cottons": "Coton",
"hqd_delicate": "Délicats", "hqd_delicate": "Délicats 50'",
"hqd_delicate_cradle": "Délicats", "hqd_delicate_cradle": "Délicats",
"hqd_dry": "Séchage du coton", "hqd_dry": "Séchage du coton",
"hqd_dry_synthetics": "Séchage des tissus mélangés", "hqd_dry_synthetics": "Séchage des tissus mélangés",
"hqd_duvet": "Couette", "hqd_duvet": "Couette",
"hqd_eco_40_60_degrees": "Éco 40-60", "hqd_eco_40_60_degrees": "Éco 40-60",
"hqd_handwash_wool": "Laine", "hqd_handwash_wool": "Laine 40'",
"hqd_i_refresh": "i-Refresh", "hqd_i_refresh": "i-Refresh",
"hqd_mix": "Tissus mélangés", "hqd_mix": "Tissus mélangés",
"hqd_quick_15": "Rapide 15'", "hqd_quick_15": "Rapide 15'",
@ -495,7 +509,7 @@
"hqd_shirts": "Chemises", "hqd_shirts": "Chemises",
"hqd_smart": "Smart A.I.", "hqd_smart": "Smart A.I.",
"hqd_spin": "Essorage", "hqd_spin": "Essorage",
"hqd_sport": "Sport", "hqd_sport": "Sport 25'",
"hqd_super_fast": "Rapide 39", "hqd_super_fast": "Rapide 39",
"hqd_synthetic_and_coloured": "Synthétiques", "hqd_synthetic_and_coloured": "Synthétiques",
"hygiene_59": "Hygiene Plus 59'", "hygiene_59": "Hygiene Plus 59'",
@ -506,10 +520,11 @@
"hygiene_pro_steam": "Hygiene Pro + Vapeur", "hygiene_pro_steam": "Hygiene Pro + Vapeur",
"intensive_40": "Intensif 40°C", "intensive_40": "Intensif 40°C",
"intensive_40_steam": "Intensif 40°C + Vapeur", "intensive_40_steam": "Intensif 40°C + Vapeur",
"iot_active_steam": "Vapeur d'eau", "iot_active_steam": "Vapeur d'eau 29'",
"iot_active_wash_steam": "Lavage actif", "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",
@ -542,17 +557,19 @@
"iot_dry_technical_fabrics": "Tissus techniques", "iot_dry_technical_fabrics": "Tissus techniques",
"iot_dry_warm_embrace": "Étreinte chaude", "iot_dry_warm_embrace": "Étreinte chaude",
"iot_dry_wool_dry": "Séchage de la laine", "iot_dry_wool_dry": "Séchage de la laine",
"iot_easy_iron": "Repassage facile", "iot_easy_iron": "Repassage facile 39'",
"iot_fresh_care_steam": "Fresh Care + vapeur", "iot_fresh_care_steam": "Fresh Care + vapeur",
"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_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'",
"iot_rapid_a_class_60_steam": "Classe A rapide 60 + Vapeur", "iot_rapid_a_class_60_steam": "Classe A rapide 60 + Vapeur",
"iot_resistant_cotton_steam": "Coton + Vapeur d'eau", "iot_resistant_cotton_steam": "Coton + Vapeur d'eau",
"iot_shirts_steam": "Chemises + Vapeur", "iot_shirts_steam": "Chemises + Vapeur",
"iot_single_item_steam": "Article unique + vapeur", "iot_single_item_steam": "Article unique 20' + vapeur",
"iot_smart_wash": "Lavage intelligent", "iot_smart_wash": "Lavage intelligent",
"iot_soft_care_steam": "Soft Care + Steam", "iot_soft_care_steam": "Soft Care + Steam",
"iot_special_39_full_load_steam": "Spécial 39 + vapeur", "iot_special_39_full_load_steam": "Spécial 39 + vapeur",
@ -586,7 +603,7 @@
"iot_wash_coloured_bed_linen": "Draps de couleur", "iot_wash_coloured_bed_linen": "Draps de couleur",
"iot_wash_coloured_bed_linen_steam": "Draps de couleur + Vapeur", "iot_wash_coloured_bed_linen_steam": "Draps de couleur + Vapeur",
"iot_wash_coloured_curtains": "Rideaux de couleur", "iot_wash_coloured_curtains": "Rideaux de couleur",
"iot_wash_coloured_shirts": "T-shirts de couleur", "iot_wash_coloured_shirts": "T-shirts de couleur 59'",
"iot_wash_coloured_shirts_steam": "Chemises colorées + Vapeur", "iot_wash_coloured_shirts_steam": "Chemises colorées + Vapeur",
"iot_wash_coloured_steam": "Couleurs + Vapeur d'eau", "iot_wash_coloured_steam": "Couleurs + Vapeur d'eau",
"iot_wash_coloured_tableclothes": "Nappes de couleur", "iot_wash_coloured_tableclothes": "Nappes de couleur",
@ -623,7 +640,7 @@
"iot_wash_down_jackets_zelig": "Vestes en duvet", "iot_wash_down_jackets_zelig": "Vestes en duvet",
"iot_wash_duvet": "Couette", "iot_wash_duvet": "Couette",
"iot_wash_fruit_stains": "Taches de fruits", "iot_wash_fruit_stains": "Taches de fruits",
"iot_wash_gym_fit": "Gym - vêtements de fitness", "iot_wash_gym_fit": "Gym - vêtements de fitness 59'",
"iot_wash_handwash": "Lavage à la main", "iot_wash_handwash": "Lavage à la main",
"iot_wash_handwash_colored": "Lavage à la main des colorés", "iot_wash_handwash_colored": "Lavage à la main des colorés",
"iot_wash_handwash_dark": "Lavage à la main des foncés", "iot_wash_handwash_dark": "Lavage à la main des foncés",
@ -668,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",
@ -686,6 +704,7 @@
"iot_wash_wool": "Laine", "iot_wash_wool": "Laine",
"jeans": "Jeans", "jeans": "Jeans",
"jeans_60": "Jeans", "jeans_60": "Jeans",
"jeans_60_steam": "Jeans + vapeur",
"low_dry": "Séchage des tissus mélangés", "low_dry": "Séchage des tissus mélangés",
"mixed": "Tissus mélangés", "mixed": "Tissus mélangés",
"mixed_and_colored_59": "Tissus mélangés et couleurs 59'", "mixed_and_colored_59": "Tissus mélangés et couleurs 59'",
@ -709,7 +728,7 @@
"rinse": "Rinçage", "rinse": "Rinçage",
"shirts_steam": "Chemises + Vapeur", "shirts_steam": "Chemises + Vapeur",
"silent_night": "Cycle de nuit", "silent_night": "Cycle de nuit",
"single_item": "Élément unique", "single_item": "Élément unique 20'",
"single_item_steam": "Article unique + vapeur", "single_item_steam": "Article unique + vapeur",
"smart_wash": "Lavage intelligent", "smart_wash": "Lavage intelligent",
"soft_care": "Soin Doux", "soft_care": "Soin Doux",
@ -725,8 +744,8 @@
"steam_39": "Vapeur 39'", "steam_39": "Vapeur 39'",
"steam_care_pro": "Steam Care Pro", "steam_care_pro": "Steam Care Pro",
"steam_care_pro_cotton": "Steam Care Pro - Coton", "steam_care_pro_cotton": "Steam Care Pro - Coton",
"steam_care_pro_delicates": "Steam Care Pro - Délicats", "steam_care_pro_delicates": "Steam Care Pro - Délicats 16'",
"steam_care_pro_synthetic": "Steam Care Pro - Synthétiques", "steam_care_pro_synthetic": "Steam Care Pro - Synthétiques 20'",
"steam_hygiene_plus": "Vapeur Hygiène Plus", "steam_hygiene_plus": "Vapeur Hygiène Plus",
"synthetics": "Synthétiques", "synthetics": "Synthétiques",
"synthetic_and_coloured": "Synthétiques et couleurs", "synthetic_and_coloured": "Synthétiques et couleurs",
@ -738,7 +757,7 @@
"wool": "Laine", "wool": "Laine",
"wool_and_delicates_49": "Laine/Délicat 49'", "wool_and_delicates_49": "Laine/Délicat 49'",
"wool_dry": "Séchage de la laine", "wool_dry": "Séchage de la laine",
"wool_soft_care": "Laine & Soin Doux" "wool_soft_care": "Laine & Soin Doux 48'"
}, },
"name": "Programme" "name": "Programme"
}, },
@ -748,20 +767,25 @@
"cheese": "Fromage", "cheese": "Fromage",
"chiller": "Quick cool", "chiller": "Quick cool",
"cold_drinks": "Soft chill", "cold_drinks": "Soft chill",
"cool_drink": "Cool Drink",
"eco": "Eco", "eco": "Eco",
"eco_mode": "Mode Eco", "eco_mode": "Mode Eco",
"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",
"no_mode_selected": "Aucun mode sélectionné", "no_mode_selected": "Aucun mode sélectionné",
"quick_cool": "QUICK COOL", "quick_cool": "QUICK COOL",
"sea_food": "Ready to cook meal", "sea_food": "Ready to cook meal",
"smart_mode_title": "Smart Mode",
"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",
"zero_fresh": "0° Fresh" "vegetables": "Vegetable",
"zero_fresh": "0°C Fresh"
}, },
"name": "Programme" "name": "Programme"
}, },
@ -887,6 +911,14 @@
}, },
"fan_speed": { "fan_speed": {
"name": "Vitesse du ventilateur" "name": "Vitesse du ventilateur"
},
"humidity_level": {
"state": {
"low": "Faible",
"mid": "Moyen",
"high": "Élevé"
},
"name": "Niveau dhumidité"
} }
}, },
"select": { "select": {
@ -956,22 +988,25 @@
"auto_care_soil": "Auto Care", "auto_care_soil": "Auto Care",
"auto_hygiene": "Auto Hygiène", "auto_hygiene": "Auto Hygiène",
"auto_plus": "AutoPlus", "auto_plus": "AutoPlus",
"auto_plus_soil": "Auto Plus Salissures",
"auto_rapid": "Auto Rapide", "auto_rapid": "Auto Rapide",
"auto_rapid_soil": "Auto Rapide Salissures",
"auto_sensor": "Auto Sensor", "auto_sensor": "Auto Sensor",
"auto_sensor_soil": "Auto Sensor", "auto_sensor_soil": "Auto Sensor",
"auto_universal": "Auto universel 50 - 60°C", "auto_universal": "Auto universel 50-60°C",
"auto_universal_plus": "Auto universel Plus 65 - 75°C", "auto_universal_plus": "Auto universel Plus 65-75°C",
"auto_universal_plus_soil": "Auto universel Plus 65 - 75°C", "auto_universal_plus_soil": "Auto universel Plus 65-75°C",
"auto_universal_soil": "Auto universel 50 - 60°C", "auto_universal_soil": "Auto universel 50-60°C",
"auto_wash": "Lavage automatique", "auto_wash": "Lavage automatique",
"auto_wash_soil": "Lavage automatique", "auto_wash_soil": "Lavage automatique",
"classe_a_59": "Classe A 59' 65°C", "classe_a_59": "Classe A 59' 65°C",
"delicate": "Délicat 45°C", "delicate": "Délicat 45°C",
"dishwasher_care": "Cycle de nettoyage du calcaire", "dishwasher_care": "Cycle de nettoyage du calcaire",
"eco": "Éco", "eco": "Eco 45°C",
"eco_asynch": "Eco 45°C", "eco_asynch": "Eco 45°C",
"eco_bldc": "Eco 45°C", "eco_bldc": "Eco 45°C",
"eco_synch": "Eco 45°C", "eco_synch": "Eco 45°C",
"eco_voice": "Eco",
"gentle_wash": "Gentle wash", "gentle_wash": "Gentle wash",
"glass": "En verre", "glass": "En verre",
"glassware": "Verres 45 °C", "glassware": "Verres 45 °C",
@ -980,8 +1015,9 @@
"hygiene_plus": "Hygiène 75 °C", "hygiene_plus": "Hygiène 75 °C",
"intensive": "Intensif", "intensive": "Intensif",
"intensive_rapid": "Intensif rapide", "intensive_rapid": "Intensif rapide",
"intensive_voice": "Intensif",
"iot_auto_sensor": "Auto Sensor", "iot_auto_sensor": "Auto Sensor",
"iot_auto_universal_soil": "Auto universel 50 - 60°C", "iot_auto_universal_soil": "Auto universel 50-60°C",
"iot_auto_wash_soil": "Lavage automatique", "iot_auto_wash_soil": "Lavage automatique",
"iot_baby_care": "Soin Bébé", "iot_baby_care": "Soin Bébé",
"iot_breakfast": "Déjeuner", "iot_breakfast": "Déjeuner",
@ -1021,6 +1057,13 @@
"iot_super_wash": "Lavage Super Intensif", "iot_super_wash": "Lavage Super Intensif",
"iot_turbopower": "TurboPower", "iot_turbopower": "TurboPower",
"iot_universal": "Universel 60 °C", "iot_universal": "Universel 60 °C",
"iot_voice_automatic": "Automatic",
"iot_voice_delicate": "Délicat 45°C",
"iot_voice_eco": "Eco 45°C",
"iot_voice_intensive": "Intensif 75°C",
"iot_voice_prewash": "Prélavage",
"iot_voice_rapid_59": "Rapide 59'",
"iot_voice_universal": "Universel 60 °C",
"iot_wok_grids_maxi_pans": "Spécial casserole (Wok - Grill & Casserole)", "iot_wok_grids_maxi_pans": "Spécial casserole (Wok - Grill & Casserole)",
"iot_wok_grids_maxi_pans_soil": "Spécial casserole (Wok - Grill & Casserole)", "iot_wok_grids_maxi_pans_soil": "Spécial casserole (Wok - Grill & Casserole)",
"iot_yes_quick_cycle": "Yes Quick", "iot_yes_quick_cycle": "Yes Quick",
@ -1052,6 +1095,7 @@
"ultra_silent": "Ultra silence 55°C", "ultra_silent": "Ultra silence 55°C",
"universal": "Universel 60 °C", "universal": "Universel 60 °C",
"universal_plus": "Universel Plus 70 °C", "universal_plus": "Universel Plus 70 °C",
"zone_wash": "Flex Zone Wash",
"zoom_39": "Zoom 39 min" "zoom_39": "Zoom 39 min"
}, },
"name": "Programme" "name": "Programme"
@ -1185,14 +1229,14 @@
"hqd_bulky": "Articles volumineux", "hqd_bulky": "Articles volumineux",
"hqd_casual": "Journalier", "hqd_casual": "Journalier",
"hqd_cold_wind_30": "Brise rafraîchissante 30 minutes", "hqd_cold_wind_30": "Brise rafraîchissante 30 minutes",
"hqd_cold_wind_timing": "Brise rafraîchissante", "hqd_cold_wind_timing": "Air froid",
"hqd_cotton": "Coton", "hqd_cotton": "Coton",
"hqd_curtain": "Rideaux", "hqd_curtain": "Rideaux",
"hqd_delicate": "Délicats", "hqd_delicate": "Délicats",
"hqd_diaper": "Couches", "hqd_diaper": "Couches",
"hqd_duvet": "Couette", "hqd_duvet": "Veste matelassée en fibre synthétique",
"hqd_feather": "Vestes en duvet", "hqd_feather": "Veste matelassée en fibre naturelle",
"hqd_hot_wind_timing": "Air chaud", "hqd_hot_wind_timing": "Chauffage délicat",
"hqd_hygienic": "Hygiénisation", "hqd_hygienic": "Hygiénisation",
"hqd_i_refresh": "I-Refresh", "hqd_i_refresh": "I-Refresh",
"hqd_i_refresh_pro": "I-Refresh Pro", "hqd_i_refresh_pro": "I-Refresh Pro",
@ -1202,10 +1246,10 @@
"hqd_mix": "Tissus mélangés", "hqd_mix": "Tissus mélangés",
"hqd_night_dry": "Séchage toute la nuit", "hqd_night_dry": "Séchage toute la nuit",
"hqd_outdoor": "Outdoor", "hqd_outdoor": "Outdoor",
"hqd_precious_cure": "Precious cure", "hqd_precious_cure": "Precious Cure",
"hqd_quick_20": "Rapide 20", "hqd_quick_20": "Rapide 20",
"hqd_quick_30": "Rapide 30", "hqd_quick_30": "Rapide 30",
"hqd_quick_dry": "Séchage rapide 30'", "hqd_quick_dry": "Séchage rapide automatique 30'",
"hqd_quilt": "Couvertures", "hqd_quilt": "Couvertures",
"hqd_refresh": "Rafraîchissement", "hqd_refresh": "Rafraîchissement",
"hqd_school_uniform": "Uniforme scolaire", "hqd_school_uniform": "Uniforme scolaire",
@ -1242,6 +1286,8 @@
"iot_dry_gym_fit": "Sport", "iot_dry_gym_fit": "Sport",
"iot_dry_lingerie": "Lingerie", "iot_dry_lingerie": "Lingerie",
"iot_dry_mixed": "Tissus mélangés", "iot_dry_mixed": "Tissus mélangés",
"iot_dry_pet_accessories": "Accessoires pour animaux",
"iot_dry_pet_hair_removal": "Élimination des poils danimaux (prélavage)",
"iot_dry_playsuits": "Combinaisons", "iot_dry_playsuits": "Combinaisons",
"iot_dry_rapid_30": "Rapid 30", "iot_dry_rapid_30": "Rapid 30",
"iot_dry_rapid_59": "Rapide 59'.", "iot_dry_rapid_59": "Rapide 59'.",
@ -1293,9 +1339,9 @@
"state": { "state": {
"20_degrees_coloured_cottons": "Couleurs 20 °C et cotons", "20_degrees_coloured_cottons": "Couleurs 20 °C et cotons",
"20_degrees_new_energy_label": "20°C", "20_degrees_new_energy_label": "20°C",
"active_steam": "Vapeur d'eau", "active_steam": "Vapeur d'eau 29'",
"active_wash": "Lavage actif", "active_wash": "Lavage actif 20'",
"active_wash_steam": "Lavage actif", "active_wash_steam": "Lavage actif 20' + vapeur",
"allergy_care": "Soin Allergie", "allergy_care": "Soin Allergie",
"allergy_care_pro": "Soin Allergie Pro", "allergy_care_pro": "Soin Allergie Pro",
"all_in_one_49": "Tout-en-un 49'.", "all_in_one_49": "Tout-en-un 49'.",
@ -1315,19 +1361,19 @@
"cottons_steam": "Coton + Vapeur d'eau", "cottons_steam": "Coton + Vapeur d'eau",
"cotton_care_59": "Cotton Care 59 Min", "cotton_care_59": "Cotton Care 59 Min",
"delicate_59": "Délicat 59'", "delicate_59": "Délicat 59'",
"delicate_silk": "Délicat", "delicate_silk": "Délicat 59'",
"delicate_silk_steam": "Délicat + vapeur", "delicate_silk_steam": "Délicat + vapeur",
"delicati_59": "Délicat 59'", "delicati_59": "Délicat 59'",
"delicati_59_steam": "Délicat 59'", "delicati_59_steam": "Délicat 59'",
"drain_spin": "Vidange et essorage", "drain_spin": "Vidange et essorage",
"easy_iron": "Repassage facile", "easy_iron": "Repassage facile 39'",
"eco_40_60_new_energy_label": "Éco 40-60", "eco_40_60_new_energy_label": "Éco 40-60",
"extra_care": "Soin Extra", "extra_care": "Soin Extra",
"fitness": "Fitness Care", "fitness": "Fitness Care",
"fitness_care": "Fitness Care", "fitness_care": "Fitness Care",
"fresh_care": "Soin frais", "fresh_care": "Soin frais 59'",
"fresh_care_steam": "Fresh Care + vapeur", "fresh_care_steam": "Fresh Care + vapeur",
"handwash_wool": "Lavage à la main et laine", "handwash_wool": "Lavage à la main et laine 48'",
"high_dry": "Séchage du coton", "high_dry": "Séchage du coton",
"hqd_20_degrees": "Coton 20 ℃", "hqd_20_degrees": "Coton 20 ℃",
"hqd_allergy": "Soin Allergie", "hqd_allergy": "Soin Allergie",
@ -1335,13 +1381,13 @@
"hqd_babycare": "Soin Bébé", "hqd_babycare": "Soin Bébé",
"hqd_checkup": "Vérification", "hqd_checkup": "Vérification",
"hqd_cottons": "Coton", "hqd_cottons": "Coton",
"hqd_delicate": "Délicats", "hqd_delicate": "Délicats 50'",
"hqd_delicate_cradle": "Délicats", "hqd_delicate_cradle": "Délicats",
"hqd_dry": "Séchage du coton", "hqd_dry": "Séchage du coton",
"hqd_dry_synthetics": "Séchage des tissus mélangés", "hqd_dry_synthetics": "Séchage des tissus mélangés",
"hqd_duvet": "Couette", "hqd_duvet": "Couette",
"hqd_eco_40_60_degrees": "Éco 40-60", "hqd_eco_40_60_degrees": "Éco 40-60",
"hqd_handwash_wool": "Laine", "hqd_handwash_wool": "Laine 40'",
"hqd_i_refresh": "i-Refresh", "hqd_i_refresh": "i-Refresh",
"hqd_mix": "Tissus mélangés", "hqd_mix": "Tissus mélangés",
"hqd_quick_15": "Rapide 15'", "hqd_quick_15": "Rapide 15'",
@ -1352,7 +1398,7 @@
"hqd_shirts": "Chemises", "hqd_shirts": "Chemises",
"hqd_smart": "Smart A.I.", "hqd_smart": "Smart A.I.",
"hqd_spin": "Essorage", "hqd_spin": "Essorage",
"hqd_sport": "Sport", "hqd_sport": "Sport 25'",
"hqd_super_fast": "Rapide 39", "hqd_super_fast": "Rapide 39",
"hqd_synthetic_and_coloured": "Synthétiques", "hqd_synthetic_and_coloured": "Synthétiques",
"hygiene_59": "Hygiene Plus 59'", "hygiene_59": "Hygiene Plus 59'",
@ -1363,10 +1409,11 @@
"hygiene_pro_steam": "Hygiene Pro + Vapeur", "hygiene_pro_steam": "Hygiene Pro + Vapeur",
"intensive_40": "Intensif 40°C", "intensive_40": "Intensif 40°C",
"intensive_40_steam": "Intensif 40°C + Vapeur", "intensive_40_steam": "Intensif 40°C + Vapeur",
"iot_active_steam": "Vapeur d'eau", "iot_active_steam": "Vapeur d'eau 29'",
"iot_active_wash_steam": "Lavage actif", "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",
@ -1399,17 +1446,19 @@
"iot_dry_technical_fabrics": "Tissus techniques", "iot_dry_technical_fabrics": "Tissus techniques",
"iot_dry_warm_embrace": "Étreinte chaude", "iot_dry_warm_embrace": "Étreinte chaude",
"iot_dry_wool_dry": "Séchage de la laine", "iot_dry_wool_dry": "Séchage de la laine",
"iot_easy_iron": "Repassage facile", "iot_easy_iron": "Repassage facile 39'",
"iot_fresh_care_steam": "Fresh Care + vapeur", "iot_fresh_care_steam": "Fresh Care + vapeur",
"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_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'",
"iot_rapid_a_class_60_steam": "Classe A rapide 60 + Vapeur", "iot_rapid_a_class_60_steam": "Classe A rapide 60 + Vapeur",
"iot_resistant_cotton_steam": "Coton + Vapeur d'eau", "iot_resistant_cotton_steam": "Coton + Vapeur d'eau",
"iot_shirts_steam": "Chemises + Vapeur", "iot_shirts_steam": "Chemises + Vapeur",
"iot_single_item_steam": "Article unique + vapeur", "iot_single_item_steam": "Article unique 20' + vapeur",
"iot_smart_wash": "Lavage intelligent", "iot_smart_wash": "Lavage intelligent",
"iot_soft_care_steam": "Soft Care + Steam", "iot_soft_care_steam": "Soft Care + Steam",
"iot_special_39_full_load_steam": "Spécial 39 + vapeur", "iot_special_39_full_load_steam": "Spécial 39 + vapeur",
@ -1443,7 +1492,7 @@
"iot_wash_coloured_bed_linen": "Draps de couleur", "iot_wash_coloured_bed_linen": "Draps de couleur",
"iot_wash_coloured_bed_linen_steam": "Draps de couleur + Vapeur", "iot_wash_coloured_bed_linen_steam": "Draps de couleur + Vapeur",
"iot_wash_coloured_curtains": "Rideaux de couleur", "iot_wash_coloured_curtains": "Rideaux de couleur",
"iot_wash_coloured_shirts": "T-shirts de couleur", "iot_wash_coloured_shirts": "T-shirts de couleur 59'",
"iot_wash_coloured_shirts_steam": "Chemises colorées + Vapeur", "iot_wash_coloured_shirts_steam": "Chemises colorées + Vapeur",
"iot_wash_coloured_steam": "Couleurs + Vapeur d'eau", "iot_wash_coloured_steam": "Couleurs + Vapeur d'eau",
"iot_wash_coloured_tableclothes": "Nappes de couleur", "iot_wash_coloured_tableclothes": "Nappes de couleur",
@ -1480,7 +1529,7 @@
"iot_wash_down_jackets_zelig": "Vestes en duvet", "iot_wash_down_jackets_zelig": "Vestes en duvet",
"iot_wash_duvet": "Couette", "iot_wash_duvet": "Couette",
"iot_wash_fruit_stains": "Taches de fruits", "iot_wash_fruit_stains": "Taches de fruits",
"iot_wash_gym_fit": "Gym - vêtements de fitness", "iot_wash_gym_fit": "Gym - vêtements de fitness 59'",
"iot_wash_handwash": "Lavage à la main", "iot_wash_handwash": "Lavage à la main",
"iot_wash_handwash_colored": "Lavage à la main des colorés", "iot_wash_handwash_colored": "Lavage à la main des colorés",
"iot_wash_handwash_dark": "Lavage à la main des foncés", "iot_wash_handwash_dark": "Lavage à la main des foncés",
@ -1525,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",
@ -1543,6 +1593,7 @@
"iot_wash_wool": "Laine", "iot_wash_wool": "Laine",
"jeans": "Jeans", "jeans": "Jeans",
"jeans_60": "Jeans", "jeans_60": "Jeans",
"jeans_60_steam": "Jeans + vapeur",
"low_dry": "Séchage des tissus mélangés", "low_dry": "Séchage des tissus mélangés",
"mixed": "Tissus mélangés", "mixed": "Tissus mélangés",
"mixed_and_colored_59": "Tissus mélangés et couleurs 59'", "mixed_and_colored_59": "Tissus mélangés et couleurs 59'",
@ -1566,7 +1617,7 @@
"rinse": "Rinçage", "rinse": "Rinçage",
"shirts_steam": "Chemises + Vapeur", "shirts_steam": "Chemises + Vapeur",
"silent_night": "Cycle de nuit", "silent_night": "Cycle de nuit",
"single_item": "Élément unique", "single_item": "Élément unique 20'",
"single_item_steam": "Article unique + vapeur", "single_item_steam": "Article unique + vapeur",
"smart_wash": "Lavage intelligent", "smart_wash": "Lavage intelligent",
"soft_care": "Soin Doux", "soft_care": "Soin Doux",
@ -1582,8 +1633,8 @@
"steam_39": "Vapeur 39'", "steam_39": "Vapeur 39'",
"steam_care_pro": "Steam Care Pro", "steam_care_pro": "Steam Care Pro",
"steam_care_pro_cotton": "Steam Care Pro - Coton", "steam_care_pro_cotton": "Steam Care Pro - Coton",
"steam_care_pro_delicates": "Steam Care Pro - Délicats", "steam_care_pro_delicates": "Steam Care Pro - Délicats 16'",
"steam_care_pro_synthetic": "Steam Care Pro - Synthétiques", "steam_care_pro_synthetic": "Steam Care Pro - Synthétiques 20'",
"steam_hygiene_plus": "Vapeur Hygiène Plus", "steam_hygiene_plus": "Vapeur Hygiène Plus",
"synthetics": "Synthétiques", "synthetics": "Synthétiques",
"synthetic_and_coloured": "Synthétiques et couleurs", "synthetic_and_coloured": "Synthétiques et couleurs",
@ -1595,7 +1646,7 @@
"wool": "Laine", "wool": "Laine",
"wool_and_delicates_49": "Laine/Délicat 49'", "wool_and_delicates_49": "Laine/Délicat 49'",
"wool_dry": "Séchage de la laine", "wool_dry": "Séchage de la laine",
"wool_soft_care": "Laine & Soin Doux" "wool_soft_care": "Laine & Soin Doux 48'"
}, },
"name": "Programme" "name": "Programme"
}, },
@ -1605,20 +1656,25 @@
"cheese": "Fromage", "cheese": "Fromage",
"chiller": "Quick cool", "chiller": "Quick cool",
"cold_drinks": "Soft chill", "cold_drinks": "Soft chill",
"cool_drink": "Cool Drink",
"eco": "Eco", "eco": "Eco",
"eco_mode": "Mode Eco", "eco_mode": "Mode Eco",
"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",
"no_mode_selected": "Aucun mode sélectionné", "no_mode_selected": "Aucun mode sélectionné",
"quick_cool": "QUICK COOL", "quick_cool": "QUICK COOL",
"sea_food": "Ready to cook meal", "sea_food": "Ready to cook meal",
"smart_mode_title": "Smart Mode",
"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",
"zero_fresh": "0° Fresh" "vegetables": "Vegetable",
"zero_fresh": "0°C Fresh"
}, },
"name": "Programme" "name": "Programme"
}, },
@ -1671,6 +1727,71 @@
"unknown": "unknown" "unknown": "unknown"
}, },
"name": "Niveau de saleté" "name": "Niveau de saleté"
},
"stain_type": {
"state": {
"baby_food": "Aliments pour bébés",
"bean_paste": "Soupe de haricots",
"blood": "Sang",
"blueberry": "Myrtilles",
"blue_ink": "Encre bleue",
"butter": "Beurre",
"chili_oil": "Huile piquante",
"chili_sauce": "Sauce chili",
"chocolate": "Chocolat",
"coffe": "Café",
"coffee": "Café",
"color_pencil": "Crayon",
"cooking_oil": "Huile de cuisson",
"curry": "Curry",
"deodorant": "Déodorant",
"egg": "Œuf",
"fruit": "Fruits",
"glue": "Colle",
"grass": "Herbe",
"ice_cream": "Glace",
"ketchup": "Ketchup",
"lip_gloss": "Brillant à lèvres",
"mayonnaise": "Mayonnaise",
"mech_grease": "Graisse mécanique",
"milk": "Lait",
"milk_tea": "Thé au lait",
"oil": "Huile",
"oil_pastel": "Pastel à l'huile",
"perfume": "Parfum",
"rust": "Rouille",
"shoe_cream": "Cirage pour chaussures",
"soil": "Sol",
"soy_sauce": "Sauce Soja",
"stain_level": "Niveau de salissure",
"sweat": "Sueur",
"tea": "Thé",
"wine": "Vin",
"unknown": "unknown"
},
"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": {
@ -1928,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": {
@ -2062,6 +2186,9 @@
} }
} }
} }
},
"my_zone": {
"name": "My Zone"
} }
}, },
"fan": { "fan": {

View File

@ -78,6 +78,7 @@
}, },
"programs_dw": { "programs_dw": {
"state": { "state": {
"eco_voice": "Eco",
"gentle_wash": "Gentle wash", "gentle_wash": "Gentle wash",
"iot_checkup": "בְּדִיקָה", "iot_checkup": "בְּדִיקָה",
"iot_dreft_quick_cycle": "Dreft Quick", "iot_dreft_quick_cycle": "Dreft Quick",
@ -85,7 +86,8 @@
"iot_jar_quick_cycle": "Jar Quick", "iot_jar_quick_cycle": "Jar Quick",
"iot_yes_quick_cycle": "Yes Quick", "iot_yes_quick_cycle": "Yes Quick",
"smart_ai": "Smart AI", "smart_ai": "Smart AI",
"smart_ai_soil": "Smart AI" "smart_ai_soil": "Smart AI",
"zone_wash": "Flex Zone Wash"
}, },
"name": "Program" "name": "Program"
}, },
@ -110,7 +112,6 @@
"hqd_bulky": "Bulky", "hqd_bulky": "Bulky",
"hqd_cold_wind_30": "Cold wind 30 minutes", "hqd_cold_wind_30": "Cold wind 30 minutes",
"hqd_cold_wind_timing": "Cold wind", "hqd_cold_wind_timing": "Cold wind",
"hqd_hot_wind_timing": "Hot wind",
"hqd_luxury": "Luxury", "hqd_luxury": "Luxury",
"hqd_night_dry": "Night dry", "hqd_night_dry": "Night dry",
"hqd_refresh": "Refresh", "hqd_refresh": "Refresh",
@ -124,9 +125,6 @@
"programs_wm": { "programs_wm": {
"state": { "state": {
"20_degrees_new_energy_label": "20 מעלות צלזיוס", "20_degrees_new_energy_label": "20 מעלות צלזיוס",
"active_steam": "קִיטוֹר",
"active_wash": "שטיפה פעילה",
"active_wash_steam": "שטיפה פעילה",
"allergy_care": "טיפול באלרגיה", "allergy_care": "טיפול באלרגיה",
"allergy_care_pro": "Allergy Care Pro", "allergy_care_pro": "Allergy Care Pro",
"all_in_one_49": "All in One 49 '", "all_in_one_49": "All in One 49 '",
@ -146,22 +144,18 @@
"delicati_59": "DELICATI_59", "delicati_59": "DELICATI_59",
"delicati_59_steam": "DELICATI_59", "delicati_59_steam": "DELICATI_59",
"drain_spin": "ניקוז + סיבוב", "drain_spin": "ניקוז + סיבוב",
"easy_iron": "גיהוץ קל",
"eco_40_60_new_energy_label": "אקו 40-60", "eco_40_60_new_energy_label": "אקו 40-60",
"extra_care": "אכפתיות מוגברת", "extra_care": "אכפתיות מוגברת",
"fitness": "טיפול בכושר", "fitness": "טיפול בכושר",
"fitness_care": "טיפול בכושר", "fitness_care": "טיפול בכושר",
"fresh_care": "טיפול טרי",
"fresh_care_steam": "טיפול טרי", "fresh_care_steam": "טיפול טרי",
"handwash_wool": "שטיפת ידיים + צמר",
"high_dry": "יבש בחום גבוה", "high_dry": "יבש בחום גבוה",
"hqd_dry_synthetics": "יבש בחום נמוך", "hqd_dry_synthetics": "יבש בחום נמוך",
"hygiene_60": "היגיינה 60 מעלות צלזיוס", "hygiene_60": "היגיינה 60 מעלות צלזיוס",
"intensive_40": "40°C אינטנסיביים", "intensive_40": "40°C אינטנסיביים",
"iot_active_steam": "קִיטוֹר",
"iot_active_wash_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 '", "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": "רענון אוויר",
@ -191,7 +185,6 @@
"iot_dry_technical_fabrics": "בדים טכניים", "iot_dry_technical_fabrics": "בדים טכניים",
"iot_dry_warm_embrace": "חיבוק חם", "iot_dry_warm_embrace": "חיבוק חם",
"iot_dry_wool_dry": "צמר יבש", "iot_dry_wool_dry": "צמר יבש",
"iot_easy_iron": "גיהוץ קל",
"iot_fresh_care_steam": "טיפול טרי", "iot_fresh_care_steam": "טיפול טרי",
"iot_synthetic_and_coloured_steam": "סינטטי וצבעוני", "iot_synthetic_and_coloured_steam": "סינטטי וצבעוני",
"iot_wash_anti_mites": "נגד קרדית", "iot_wash_anti_mites": "נגד קרדית",
@ -237,7 +230,6 @@
"iot_wash_down_jackets": "מעילי פוך", "iot_wash_down_jackets": "מעילי פוך",
"iot_wash_down_jackets_zelig": "מעילי פוך", "iot_wash_down_jackets_zelig": "מעילי פוך",
"iot_wash_fruit_stains": "כתמי פרי", "iot_wash_fruit_stains": "כתמי פרי",
"iot_wash_gym_fit": "כושר כושר - כושר",
"iot_wash_handwash": "שטיפת ידיים", "iot_wash_handwash": "שטיפת ידיים",
"iot_wash_handwash_colored": "שטיפת ידיים בצבע", "iot_wash_handwash_colored": "שטיפת ידיים בצבע",
"iot_wash_handwash_dark": "שטיפת ידיים כהה", "iot_wash_handwash_dark": "שטיפת ידיים כהה",
@ -303,8 +295,6 @@
"steam_39": "קיטור 39 '", "steam_39": "קיטור 39 '",
"steam_care_pro": "Steam Care Pro", "steam_care_pro": "Steam Care Pro",
"steam_care_pro_cotton": "Steam Care Pro", "steam_care_pro_cotton": "Steam Care Pro",
"steam_care_pro_delicates": "Steam Care Pro",
"steam_care_pro_synthetic": "Steam Care Pro",
"synthetics": "סינתטיים", "synthetics": "סינתטיים",
"synthetic_and_coloured": "סינטטי וצבעוני", "synthetic_and_coloured": "סינטטי וצבעוני",
"synthetic_and_coloured_steam": "סינטטי וצבעוני", "synthetic_and_coloured_steam": "סינטטי וצבעוני",
@ -313,8 +303,7 @@
"total_care": "טיפול טוטאלי", "total_care": "טיפול טוטאלי",
"tumbling": "נופלים", "tumbling": "נופלים",
"wool_and_delicates_49": "Wool/Delicates 49'", "wool_and_delicates_49": "Wool/Delicates 49'",
"wool_dry": "צמר יבש", "wool_dry": "צמר יבש"
"wool_soft_care": "Wool & Soft Care"
}, },
"name": "Program" "name": "Program"
}, },
@ -322,11 +311,17 @@
"state": { "state": {
"chiller": "Quick cool", "chiller": "Quick cool",
"cold_drinks": "Soft chill", "cold_drinks": "Soft chill",
"cool_drink": "Cool Drink",
"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",
"sea_food": "Ready to cook meal", "sea_food": "Ready to cook meal",
"smart_mode_title": "Smart Mode",
"soft_frozen": "Soft freezing", "soft_frozen": "Soft freezing",
"tea": "Cold drinks or Beverages" "tea": "Cold Drinks",
"vegetables": "Vegetable",
"zero_fresh": "0°C Fresh"
}, },
"name": "Program" "name": "Program"
}, },
@ -443,6 +438,14 @@
}, },
"fan_speed": { "fan_speed": {
"name": "Fan speed" "name": "Fan speed"
},
"humidity_level": {
"state": {
"low": "נָמוּך",
"mid": "בינוני",
"high": "גָבוֹהַ"
},
"name": "Humidity level"
} }
}, },
"select": { "select": {
@ -491,6 +494,7 @@
}, },
"programs_dw": { "programs_dw": {
"state": { "state": {
"eco_voice": "Eco",
"gentle_wash": "Gentle wash", "gentle_wash": "Gentle wash",
"iot_checkup": "בְּדִיקָה", "iot_checkup": "בְּדִיקָה",
"iot_dreft_quick_cycle": "Dreft Quick", "iot_dreft_quick_cycle": "Dreft Quick",
@ -498,7 +502,8 @@
"iot_jar_quick_cycle": "Jar Quick", "iot_jar_quick_cycle": "Jar Quick",
"iot_yes_quick_cycle": "Yes Quick", "iot_yes_quick_cycle": "Yes Quick",
"smart_ai": "Smart AI", "smart_ai": "Smart AI",
"smart_ai_soil": "Smart AI" "smart_ai_soil": "Smart AI",
"zone_wash": "Flex Zone Wash"
}, },
"name": "Program" "name": "Program"
}, },
@ -523,7 +528,6 @@
"hqd_bulky": "Bulky", "hqd_bulky": "Bulky",
"hqd_cold_wind_30": "Cold wind 30 minutes", "hqd_cold_wind_30": "Cold wind 30 minutes",
"hqd_cold_wind_timing": "Cold wind", "hqd_cold_wind_timing": "Cold wind",
"hqd_hot_wind_timing": "Hot wind",
"hqd_luxury": "Luxury", "hqd_luxury": "Luxury",
"hqd_night_dry": "Night dry", "hqd_night_dry": "Night dry",
"hqd_refresh": "Refresh", "hqd_refresh": "Refresh",
@ -537,9 +541,6 @@
"programs_wm": { "programs_wm": {
"state": { "state": {
"20_degrees_new_energy_label": "20 מעלות צלזיוס", "20_degrees_new_energy_label": "20 מעלות צלזיוס",
"active_steam": "קִיטוֹר",
"active_wash": "שטיפה פעילה",
"active_wash_steam": "שטיפה פעילה",
"allergy_care": "טיפול באלרגיה", "allergy_care": "טיפול באלרגיה",
"allergy_care_pro": "Allergy Care Pro", "allergy_care_pro": "Allergy Care Pro",
"all_in_one_49": "All in One 49 '", "all_in_one_49": "All in One 49 '",
@ -559,22 +560,18 @@
"delicati_59": "DELICATI_59", "delicati_59": "DELICATI_59",
"delicati_59_steam": "DELICATI_59", "delicati_59_steam": "DELICATI_59",
"drain_spin": "ניקוז + סיבוב", "drain_spin": "ניקוז + סיבוב",
"easy_iron": "גיהוץ קל",
"eco_40_60_new_energy_label": "אקו 40-60", "eco_40_60_new_energy_label": "אקו 40-60",
"extra_care": "אכפתיות מוגברת", "extra_care": "אכפתיות מוגברת",
"fitness": "טיפול בכושר", "fitness": "טיפול בכושר",
"fitness_care": "טיפול בכושר", "fitness_care": "טיפול בכושר",
"fresh_care": "טיפול טרי",
"fresh_care_steam": "טיפול טרי", "fresh_care_steam": "טיפול טרי",
"handwash_wool": "שטיפת ידיים + צמר",
"high_dry": "יבש בחום גבוה", "high_dry": "יבש בחום גבוה",
"hqd_dry_synthetics": "יבש בחום נמוך", "hqd_dry_synthetics": "יבש בחום נמוך",
"hygiene_60": "היגיינה 60 מעלות צלזיוס", "hygiene_60": "היגיינה 60 מעלות צלזיוס",
"intensive_40": "40°C אינטנסיביים", "intensive_40": "40°C אינטנסיביים",
"iot_active_steam": "קִיטוֹר",
"iot_active_wash_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 '", "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": "רענון אוויר",
@ -604,7 +601,6 @@
"iot_dry_technical_fabrics": "בדים טכניים", "iot_dry_technical_fabrics": "בדים טכניים",
"iot_dry_warm_embrace": "חיבוק חם", "iot_dry_warm_embrace": "חיבוק חם",
"iot_dry_wool_dry": "צמר יבש", "iot_dry_wool_dry": "צמר יבש",
"iot_easy_iron": "גיהוץ קל",
"iot_fresh_care_steam": "טיפול טרי", "iot_fresh_care_steam": "טיפול טרי",
"iot_synthetic_and_coloured_steam": "סינטטי וצבעוני", "iot_synthetic_and_coloured_steam": "סינטטי וצבעוני",
"iot_wash_anti_mites": "נגד קרדית", "iot_wash_anti_mites": "נגד קרדית",
@ -650,7 +646,6 @@
"iot_wash_down_jackets": "מעילי פוך", "iot_wash_down_jackets": "מעילי פוך",
"iot_wash_down_jackets_zelig": "מעילי פוך", "iot_wash_down_jackets_zelig": "מעילי פוך",
"iot_wash_fruit_stains": "כתמי פרי", "iot_wash_fruit_stains": "כתמי פרי",
"iot_wash_gym_fit": "כושר כושר - כושר",
"iot_wash_handwash": "שטיפת ידיים", "iot_wash_handwash": "שטיפת ידיים",
"iot_wash_handwash_colored": "שטיפת ידיים בצבע", "iot_wash_handwash_colored": "שטיפת ידיים בצבע",
"iot_wash_handwash_dark": "שטיפת ידיים כהה", "iot_wash_handwash_dark": "שטיפת ידיים כהה",
@ -716,8 +711,6 @@
"steam_39": "קיטור 39 '", "steam_39": "קיטור 39 '",
"steam_care_pro": "Steam Care Pro", "steam_care_pro": "Steam Care Pro",
"steam_care_pro_cotton": "Steam Care Pro", "steam_care_pro_cotton": "Steam Care Pro",
"steam_care_pro_delicates": "Steam Care Pro",
"steam_care_pro_synthetic": "Steam Care Pro",
"synthetics": "סינתטיים", "synthetics": "סינתטיים",
"synthetic_and_coloured": "סינטטי וצבעוני", "synthetic_and_coloured": "סינטטי וצבעוני",
"synthetic_and_coloured_steam": "סינטטי וצבעוני", "synthetic_and_coloured_steam": "סינטטי וצבעוני",
@ -726,8 +719,7 @@
"total_care": "טיפול טוטאלי", "total_care": "טיפול טוטאלי",
"tumbling": "נופלים", "tumbling": "נופלים",
"wool_and_delicates_49": "Wool/Delicates 49'", "wool_and_delicates_49": "Wool/Delicates 49'",
"wool_dry": "צמר יבש", "wool_dry": "צמר יבש"
"wool_soft_care": "Wool & Soft Care"
}, },
"name": "Program" "name": "Program"
}, },
@ -735,11 +727,17 @@
"state": { "state": {
"chiller": "Quick cool", "chiller": "Quick cool",
"cold_drinks": "Soft chill", "cold_drinks": "Soft chill",
"cool_drink": "Cool Drink",
"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",
"sea_food": "Ready to cook meal", "sea_food": "Ready to cook meal",
"smart_mode_title": "Smart Mode",
"soft_frozen": "Soft freezing", "soft_frozen": "Soft freezing",
"tea": "Cold drinks or Beverages" "tea": "Cold Drinks",
"vegetables": "Vegetable",
"zero_fresh": "0°C Fresh"
}, },
"name": "Program" "name": "Program"
}, },
@ -792,6 +790,71 @@
"unknown": "unknown" "unknown": "unknown"
}, },
"name": "רמת עפר" "name": "רמת עפר"
},
"stain_type": {
"state": {
"baby_food": "Baby food",
"bean_paste": "Bean soup",
"blood": "Blood",
"blueberry": "Blueberry",
"blue_ink": "Blue ink",
"butter": "Butter",
"chili_oil": "Chili oil",
"chili_sauce": "Chili sauce",
"chocolate": "שוקולד",
"coffe": "Coffee",
"coffee": "Coffee",
"color_pencil": "Pencil",
"cooking_oil": "Cooking oil",
"curry": "Curry",
"deodorant": "Deodorant",
"egg": "Egg",
"fruit": "פרי",
"glue": "Glue",
"grass": "Grass",
"ice_cream": "Ice cream",
"ketchup": "Ketchup",
"lip_gloss": "Lip gloss",
"mayonnaise": "Mayonnaise",
"mech_grease": "Mech grease",
"milk": "Milk",
"milk_tea": "Milk tea",
"oil": "Oil",
"oil_pastel": "Oil pastel",
"perfume": "Perfume",
"rust": "Rust",
"shoe_cream": "Shoe cream",
"soil": "Soil",
"soy_sauce": "רוטב סויה",
"stain_level": "Stain level",
"sweat": "Sweat",
"tea": "תה",
"wine": "Wine",
"unknown": "unknown"
},
"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": {
@ -1049,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": {
@ -1110,6 +1176,9 @@
"state": {} "state": {}
} }
} }
},
"my_zone": {
"name": "My Zone"
} }
}, },
"fan": { "fan": {

View File

@ -99,22 +99,25 @@
"auto_care_soil": "Auto Care", "auto_care_soil": "Auto Care",
"auto_hygiene": "Automatska Higijena", "auto_hygiene": "Automatska Higijena",
"auto_plus": "AutoPlus", "auto_plus": "AutoPlus",
"auto_plus_soil": "Automatski plus prljavo",
"auto_rapid": "Automatski Brzi", "auto_rapid": "Automatski Brzi",
"auto_rapid_soil": "Brzo automatski i prljavo",
"auto_sensor": "Auto Sensor", "auto_sensor": "Auto Sensor",
"auto_sensor_soil": "Auto Sensor", "auto_sensor_soil": "Auto Sensor",
"auto_universal": "Automatski univerzalni 50 - 60°C", "auto_universal": "Automatski univerzalni 50-60°C",
"auto_universal_plus": "Automatski univerzalni+ 65 - 75°C", "auto_universal_plus": "Automatski univerzalni+ 65-75°C",
"auto_universal_plus_soil": "Automatski univerzalni+ 65 - 75°C", "auto_universal_plus_soil": "Automatski univerzalni+ 65-75°C",
"auto_universal_soil": "Automatski univerzalni 50 - 60°C", "auto_universal_soil": "Automatski univerzalni 50-60°C",
"auto_wash": "Automatsko pranje", "auto_wash": "Automatsko pranje",
"auto_wash_soil": "Automatsko pranje", "auto_wash_soil": "Automatsko pranje",
"classe_a_59": "A klasa 59' 65°C", "classe_a_59": "A klasa 59' 65°C",
"delicate": "Osjetljivo 45°C", "delicate": "Osjetljivo 45°C",
"dishwasher_care": "Ciklus čišćenja kamenca", "dishwasher_care": "Ciklus čišćenja kamenca",
"eco": "Ekološki", "eco": "Eco 45°C",
"eco_asynch": "Eco 45°C", "eco_asynch": "Eco 45°C",
"eco_bldc": "Eco 45°C", "eco_bldc": "Eco 45°C",
"eco_synch": "Eco 45°C", "eco_synch": "Eco 45°C",
"eco_voice": "Eco",
"gentle_wash": "Gentle wash", "gentle_wash": "Gentle wash",
"glass": "Staklo", "glass": "Staklo",
"glassware": "Glassware (Stakleno posuđe) 45 °C", "glassware": "Glassware (Stakleno posuđe) 45 °C",
@ -123,8 +126,9 @@
"hygiene_plus": "Hygiene+ (Higijena+) 75 °C", "hygiene_plus": "Hygiene+ (Higijena+) 75 °C",
"intensive": "Intenzivno", "intensive": "Intenzivno",
"intensive_rapid": "Snažan i brz", "intensive_rapid": "Snažan i brz",
"intensive_voice": "Intenzivno",
"iot_auto_sensor": "Auto Sensor", "iot_auto_sensor": "Auto Sensor",
"iot_auto_universal_soil": "Automatski univerzalni 50 - 60°C", "iot_auto_universal_soil": "Automatski univerzalni 50-60°C",
"iot_auto_wash_soil": "Automatsko pranje", "iot_auto_wash_soil": "Automatsko pranje",
"iot_baby_care": "Baby Care", "iot_baby_care": "Baby Care",
"iot_breakfast": "Doručak", "iot_breakfast": "Doručak",
@ -164,6 +168,13 @@
"iot_super_wash": "Super Wash", "iot_super_wash": "Super Wash",
"iot_turbopower": "TurboPower", "iot_turbopower": "TurboPower",
"iot_universal": "Universal (Univerzalni) 60 °C", "iot_universal": "Universal (Univerzalni) 60 °C",
"iot_voice_automatic": "Automatic",
"iot_voice_delicate": "Osjetljivo 45°C",
"iot_voice_eco": "Eco 45°C",
"iot_voice_intensive": "Intenzivno 75°C",
"iot_voice_prewash": "Pretpranje",
"iot_voice_rapid_59": "Brzi 59'",
"iot_voice_universal": "Universal (Univerzalni) 60 °C",
"iot_wok_grids_maxi_pans": "Posebne tave (Wok - rešetke & Maxi tave)", "iot_wok_grids_maxi_pans": "Posebne tave (Wok - rešetke & Maxi tave)",
"iot_wok_grids_maxi_pans_soil": "Posebne tave (Wok - rešetke & Maxi tave)", "iot_wok_grids_maxi_pans_soil": "Posebne tave (Wok - rešetke & Maxi tave)",
"iot_yes_quick_cycle": "Yes Quick", "iot_yes_quick_cycle": "Yes Quick",
@ -195,6 +206,7 @@
"ultra_silent": "Ultra tihi 55°C", "ultra_silent": "Ultra tihi 55°C",
"universal": "Universal (Univerzalni) 60 °C", "universal": "Universal (Univerzalni) 60 °C",
"universal_plus": "Universal Plus (Univerzalni plus) 70 °C", "universal_plus": "Universal Plus (Univerzalni plus) 70 °C",
"zone_wash": "Flex Zone Wash",
"zoom_39": "Zoom 39 min" "zoom_39": "Zoom 39 min"
}, },
"name": "Program" "name": "Program"
@ -328,14 +340,14 @@
"hqd_bulky": "Glomazni komadi", "hqd_bulky": "Glomazni komadi",
"hqd_casual": "Opušteno", "hqd_casual": "Opušteno",
"hqd_cold_wind_30": "Hladni zrak, 30 minuta", "hqd_cold_wind_30": "Hladni zrak, 30 minuta",
"hqd_cold_wind_timing": "Hladni zrak", "hqd_cold_wind_timing": "Hladan zrak",
"hqd_cotton": "Pamuk", "hqd_cotton": "Pamuk",
"hqd_curtain": "Zavjese", "hqd_curtain": "Zavjese",
"hqd_delicate": "Osjetljivo rublje", "hqd_delicate": "Osjetljivo rublje",
"hqd_diaper": "Pelene", "hqd_diaper": "Pelene",
"hqd_duvet": "Poplun", "hqd_duvet": "Prošivena jakna od sintetičkih vlakana",
"hqd_feather": "Jakne punjene paperjem", "hqd_feather": "Prošivena jakna od prirodnih vlakana",
"hqd_hot_wind_timing": "Vrući zrak", "hqd_hot_wind_timing": "Zagrijavanje",
"hqd_hygienic": "Higijenizacija", "hqd_hygienic": "Higijenizacija",
"hqd_i_refresh": "I-Refresh", "hqd_i_refresh": "I-Refresh",
"hqd_i_refresh_pro": "I-Refresh Pro", "hqd_i_refresh_pro": "I-Refresh Pro",
@ -348,7 +360,7 @@
"hqd_precious_cure": "Precious Cure", "hqd_precious_cure": "Precious Cure",
"hqd_quick_20": "Brzo 20", "hqd_quick_20": "Brzo 20",
"hqd_quick_30": "Brzo 30", "hqd_quick_30": "Brzo 30",
"hqd_quick_dry": "Brzo sušenje 30'", "hqd_quick_dry": "Brzo automatsko sušenje 30'",
"hqd_quilt": "Popluni", "hqd_quilt": "Popluni",
"hqd_refresh": "Protiv neugodnih mirisa", "hqd_refresh": "Protiv neugodnih mirisa",
"hqd_school_uniform": "Školska uniforma", "hqd_school_uniform": "Školska uniforma",
@ -385,6 +397,8 @@
"iot_dry_gym_fit": "Fitness odjeća", "iot_dry_gym_fit": "Fitness odjeća",
"iot_dry_lingerie": "Donje rublje", "iot_dry_lingerie": "Donje rublje",
"iot_dry_mixed": "Miješane tkanine", "iot_dry_mixed": "Miješane tkanine",
"iot_dry_pet_accessories": "Pribor za ljubimce",
"iot_dry_pet_hair_removal": "Uklanjanje dlaka kućnih ljubimaca (pretpranje)",
"iot_dry_playsuits": "Kombinezoni", "iot_dry_playsuits": "Kombinezoni",
"iot_dry_rapid_30": "Rapid 30", "iot_dry_rapid_30": "Rapid 30",
"iot_dry_rapid_59": "Brzi program 59.", "iot_dry_rapid_59": "Brzi program 59.",
@ -436,9 +450,9 @@
"state": { "state": {
"20_degrees_coloured_cottons": "20° šareno i pamučno rublje", "20_degrees_coloured_cottons": "20° šareno i pamučno rublje",
"20_degrees_new_energy_label": "20°C", "20_degrees_new_energy_label": "20°C",
"active_steam": "Para", "active_steam": "Para 29'",
"active_wash": "Aktivno pranje", "active_wash": "Aktivno pranje 20'",
"active_wash_steam": "Aktivno pranje", "active_wash_steam": "Aktivno pranje 20' + para",
"allergy_care": "Alergijska njega", "allergy_care": "Alergijska njega",
"allergy_care_pro": "Alergijska njega Pro", "allergy_care_pro": "Alergijska njega Pro",
"all_in_one_49": "Sve u jednom 49.", "all_in_one_49": "Sve u jednom 49.",
@ -458,19 +472,19 @@
"cottons_steam": "Pamuk + Para", "cottons_steam": "Pamuk + Para",
"cotton_care_59": "Pamuk 59 Min", "cotton_care_59": "Pamuk 59 Min",
"delicate_59": "Osjetljivo rublje 59", "delicate_59": "Osjetljivo rublje 59",
"delicate_silk": "Osjetljiva svila", "delicate_silk": "Osjetljiva svila 59'",
"delicate_silk_steam": "Osjetljiva svila + para", "delicate_silk_steam": "Osjetljiva svila + para",
"delicati_59": "Osjetljivo rublje 59", "delicati_59": "Osjetljivo rublje 59",
"delicati_59_steam": "Osjetljivo rublje 59", "delicati_59_steam": "Osjetljivo rublje 59",
"drain_spin": "Ispiranje i centrifuga", "drain_spin": "Ispiranje i centrifuga",
"easy_iron": "Easy Iron - lakše glačanje", "easy_iron": "Easy Iron - lakše glačanje 39'",
"eco_40_60_new_energy_label": "Eco 40-60", "eco_40_60_new_energy_label": "Eco 40-60",
"extra_care": "Dodatna Njega", "extra_care": "Dodatna Njega",
"fitness": "Fitness Care", "fitness": "Fitness Care",
"fitness_care": "Fitness Care", "fitness_care": "Fitness Care",
"fresh_care": "Fresh Care", "fresh_care": "Fresh Care 59'",
"fresh_care_steam": "Svježa njega + para", "fresh_care_steam": "Svježa njega + para",
"handwash_wool": "Ručno pranje i vuna", "handwash_wool": "Ručno pranje i vuna 48'",
"high_dry": "Suhi pamuk", "high_dry": "Suhi pamuk",
"hqd_20_degrees": "Pamuk 20 ℃", "hqd_20_degrees": "Pamuk 20 ℃",
"hqd_allergy": "Alergijska njega", "hqd_allergy": "Alergijska njega",
@ -478,13 +492,13 @@
"hqd_babycare": "Baby Care", "hqd_babycare": "Baby Care",
"hqd_checkup": "Kontrolni pregled", "hqd_checkup": "Kontrolni pregled",
"hqd_cottons": "Pamuk", "hqd_cottons": "Pamuk",
"hqd_delicate": "Osjetljivo rublje", "hqd_delicate": "Osjetljivo rublje 50'",
"hqd_delicate_cradle": "Osjetljivo rublje", "hqd_delicate_cradle": "Osjetljivo rublje",
"hqd_dry": "Suhi pamuk", "hqd_dry": "Suhi pamuk",
"hqd_dry_synthetics": "Suha miješana odjeća", "hqd_dry_synthetics": "Suha miješana odjeća",
"hqd_duvet": "Popluni", "hqd_duvet": "Popluni",
"hqd_eco_40_60_degrees": "Eco 40-60", "hqd_eco_40_60_degrees": "Eco 40-60",
"hqd_handwash_wool": "Vuna", "hqd_handwash_wool": "Vuna 40'",
"hqd_i_refresh": "i-Refresh", "hqd_i_refresh": "i-Refresh",
"hqd_mix": "Miješano rublje", "hqd_mix": "Miješano rublje",
"hqd_quick_15": "Brzi program 15'", "hqd_quick_15": "Brzi program 15'",
@ -495,7 +509,7 @@
"hqd_shirts": "Košulje", "hqd_shirts": "Košulje",
"hqd_smart": "Smart A.I.", "hqd_smart": "Smart A.I.",
"hqd_spin": "Okretaj", "hqd_spin": "Okretaj",
"hqd_sport": "Sportska odjeća", "hqd_sport": "Sportska odjeća 25'",
"hqd_super_fast": "Brzi program 39", "hqd_super_fast": "Brzi program 39",
"hqd_synthetic_and_coloured": "Sintetika", "hqd_synthetic_and_coloured": "Sintetika",
"hygiene_59": "Hygijenski Plus 59'", "hygiene_59": "Hygijenski Plus 59'",
@ -506,10 +520,11 @@
"hygiene_pro_steam": "Hygiene Pro + para", "hygiene_pro_steam": "Hygiene Pro + para",
"intensive_40": "Intenzivno 40°C", "intensive_40": "Intenzivno 40°C",
"intensive_40_steam": "Intenzivno 40°C + para", "intensive_40_steam": "Intenzivno 40°C + para",
"iot_active_steam": "Para", "iot_active_steam": "Para 29'",
"iot_active_wash_steam": "Aktivno pranje", "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",
@ -542,17 +557,19 @@
"iot_dry_technical_fabrics": "Tehničke tkanine", "iot_dry_technical_fabrics": "Tehničke tkanine",
"iot_dry_warm_embrace": "Toplo sušenje", "iot_dry_warm_embrace": "Toplo sušenje",
"iot_dry_wool_dry": "Vuna, suho", "iot_dry_wool_dry": "Vuna, suho",
"iot_easy_iron": "Easy Iron - lakše glačanje", "iot_easy_iron": "Easy Iron - lakše glačanje 39'",
"iot_fresh_care_steam": "Svježa njega + para", "iot_fresh_care_steam": "Svježa njega + para",
"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_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'",
"iot_rapid_a_class_60_steam": "Brza klasa A 60 + para", "iot_rapid_a_class_60_steam": "Brza klasa A 60 + para",
"iot_resistant_cotton_steam": "Pamuk + Para", "iot_resistant_cotton_steam": "Pamuk + Para",
"iot_shirts_steam": "Košulje + para", "iot_shirts_steam": "Košulje + para",
"iot_single_item_steam": "Pojedinačna stavka + para", "iot_single_item_steam": "Pojedinačna stavka 20' + para",
"iot_smart_wash": "Pametno pranje", "iot_smart_wash": "Pametno pranje",
"iot_soft_care_steam": "Soft Care + Steam", "iot_soft_care_steam": "Soft Care + Steam",
"iot_special_39_full_load_steam": "Posebna 39' + para", "iot_special_39_full_load_steam": "Posebna 39' + para",
@ -586,7 +603,7 @@
"iot_wash_coloured_bed_linen": "Posteljina u boji", "iot_wash_coloured_bed_linen": "Posteljina u boji",
"iot_wash_coloured_bed_linen_steam": "Posteljina u boji + para", "iot_wash_coloured_bed_linen_steam": "Posteljina u boji + para",
"iot_wash_coloured_curtains": "Šarene zavjese", "iot_wash_coloured_curtains": "Šarene zavjese",
"iot_wash_coloured_shirts": "Šarene košulje", "iot_wash_coloured_shirts": "Šarene košulje 59'",
"iot_wash_coloured_shirts_steam": "Košulje u boji + para", "iot_wash_coloured_shirts_steam": "Košulje u boji + para",
"iot_wash_coloured_steam": "Boje + Para", "iot_wash_coloured_steam": "Boje + Para",
"iot_wash_coloured_tableclothes": "Šareni stolnjaci", "iot_wash_coloured_tableclothes": "Šareni stolnjaci",
@ -623,7 +640,7 @@
"iot_wash_down_jackets_zelig": "Jakne punjene paperjem", "iot_wash_down_jackets_zelig": "Jakne punjene paperjem",
"iot_wash_duvet": "Popluni", "iot_wash_duvet": "Popluni",
"iot_wash_fruit_stains": "Mrlje od voća", "iot_wash_fruit_stains": "Mrlje od voća",
"iot_wash_gym_fit": "Odjeća za teretanu fitness", "iot_wash_gym_fit": "Odjeća za teretanu fitness 59'",
"iot_wash_handwash": "Ručno pranje", "iot_wash_handwash": "Ručno pranje",
"iot_wash_handwash_colored": "Ručno pranje obojenog rublja", "iot_wash_handwash_colored": "Ručno pranje obojenog rublja",
"iot_wash_handwash_dark": "Ručno pranje tamnog rublja", "iot_wash_handwash_dark": "Ručno pranje tamnog rublja",
@ -668,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",
@ -686,6 +704,7 @@
"iot_wash_wool": "Vuna", "iot_wash_wool": "Vuna",
"jeans": "Traperice", "jeans": "Traperice",
"jeans_60": "Traper", "jeans_60": "Traper",
"jeans_60_steam": "Jeans + para",
"low_dry": "Suha miješana odjeća", "low_dry": "Suha miješana odjeća",
"mixed": "Miješane tkanine", "mixed": "Miješane tkanine",
"mixed_and_colored_59": "Miješana i šarena odjeća 59", "mixed_and_colored_59": "Miješana i šarena odjeća 59",
@ -709,7 +728,7 @@
"rinse": "Ispiranje", "rinse": "Ispiranje",
"shirts_steam": "Košulje + para", "shirts_steam": "Košulje + para",
"silent_night": "Ciklus preko noći", "silent_night": "Ciklus preko noći",
"single_item": "Pojedinačna stavka", "single_item": "Pojedinačna stavka 20'",
"single_item_steam": "Pojedinačna stavka + para", "single_item_steam": "Pojedinačna stavka + para",
"smart_wash": "Pametno pranje", "smart_wash": "Pametno pranje",
"soft_care": "Mekana njega", "soft_care": "Mekana njega",
@ -725,8 +744,8 @@
"steam_39": "Para 39", "steam_39": "Para 39",
"steam_care_pro": "Steam Care Pro", "steam_care_pro": "Steam Care Pro",
"steam_care_pro_cotton": "Steam Care Pro - pamuk", "steam_care_pro_cotton": "Steam Care Pro - pamuk",
"steam_care_pro_delicates": "Steam Care Pro - osjetljivo", "steam_care_pro_delicates": "Steam Care Pro - osjetljivo 16'",
"steam_care_pro_synthetic": "Steam Care Pro - sintetika", "steam_care_pro_synthetic": "Steam Care Pro - sintetika 20'",
"steam_hygiene_plus": "Hygiene Plus Steam", "steam_hygiene_plus": "Hygiene Plus Steam",
"synthetics": "Sintetika", "synthetics": "Sintetika",
"synthetic_and_coloured": "Sintetika i šareno rublje", "synthetic_and_coloured": "Sintetika i šareno rublje",
@ -738,7 +757,7 @@
"wool": "Vuna", "wool": "Vuna",
"wool_and_delicates_49": "Vuna/Osjetljivo 49'", "wool_and_delicates_49": "Vuna/Osjetljivo 49'",
"wool_dry": "Suha vuna", "wool_dry": "Suha vuna",
"wool_soft_care": "Vuna & Mekana Njega" "wool_soft_care": "Vuna & Mekana Njega 48'"
}, },
"name": "Program" "name": "Program"
}, },
@ -748,20 +767,25 @@
"cheese": "Sir", "cheese": "Sir",
"chiller": "Quick cool", "chiller": "Quick cool",
"cold_drinks": "Soft chill", "cold_drinks": "Soft chill",
"cool_drink": "Cool Drink",
"eco": "Eco", "eco": "Eco",
"eco_mode": "Način rada Eco", "eco_mode": "Način rada Eco",
"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",
"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",
"sea_food": "Ready to cook meal", "sea_food": "Ready to cook meal",
"smart_mode_title": "Smart Mode",
"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",
"zero_fresh": "0° Fresh" "vegetables": "Vegetable",
"zero_fresh": "0°C Fresh"
}, },
"name": "Program" "name": "Program"
}, },
@ -887,6 +911,14 @@
}, },
"fan_speed": { "fan_speed": {
"name": "Brzina ventilatora" "name": "Brzina ventilatora"
},
"humidity_level": {
"state": {
"low": "Nisko",
"mid": "Srednje",
"high": "Visoko"
},
"name": "Razina vlažnosti"
} }
}, },
"select": { "select": {
@ -956,22 +988,25 @@
"auto_care_soil": "Auto Care", "auto_care_soil": "Auto Care",
"auto_hygiene": "Automatska Higijena", "auto_hygiene": "Automatska Higijena",
"auto_plus": "AutoPlus", "auto_plus": "AutoPlus",
"auto_plus_soil": "Automatski plus prljavo",
"auto_rapid": "Automatski Brzi", "auto_rapid": "Automatski Brzi",
"auto_rapid_soil": "Brzo automatski i prljavo",
"auto_sensor": "Auto Sensor", "auto_sensor": "Auto Sensor",
"auto_sensor_soil": "Auto Sensor", "auto_sensor_soil": "Auto Sensor",
"auto_universal": "Automatski univerzalni 50 - 60°C", "auto_universal": "Automatski univerzalni 50-60°C",
"auto_universal_plus": "Automatski univerzalni+ 65 - 75°C", "auto_universal_plus": "Automatski univerzalni+ 65-75°C",
"auto_universal_plus_soil": "Automatski univerzalni+ 65 - 75°C", "auto_universal_plus_soil": "Automatski univerzalni+ 65-75°C",
"auto_universal_soil": "Automatski univerzalni 50 - 60°C", "auto_universal_soil": "Automatski univerzalni 50-60°C",
"auto_wash": "Automatsko pranje", "auto_wash": "Automatsko pranje",
"auto_wash_soil": "Automatsko pranje", "auto_wash_soil": "Automatsko pranje",
"classe_a_59": "A klasa 59' 65°C", "classe_a_59": "A klasa 59' 65°C",
"delicate": "Osjetljivo 45°C", "delicate": "Osjetljivo 45°C",
"dishwasher_care": "Ciklus čišćenja kamenca", "dishwasher_care": "Ciklus čišćenja kamenca",
"eco": "Ekološki", "eco": "Eco 45°C",
"eco_asynch": "Eco 45°C", "eco_asynch": "Eco 45°C",
"eco_bldc": "Eco 45°C", "eco_bldc": "Eco 45°C",
"eco_synch": "Eco 45°C", "eco_synch": "Eco 45°C",
"eco_voice": "Eco",
"gentle_wash": "Gentle wash", "gentle_wash": "Gentle wash",
"glass": "Staklo", "glass": "Staklo",
"glassware": "Glassware (Stakleno posuđe) 45 °C", "glassware": "Glassware (Stakleno posuđe) 45 °C",
@ -980,8 +1015,9 @@
"hygiene_plus": "Hygiene+ (Higijena+) 75 °C", "hygiene_plus": "Hygiene+ (Higijena+) 75 °C",
"intensive": "Intenzivno", "intensive": "Intenzivno",
"intensive_rapid": "Snažan i brz", "intensive_rapid": "Snažan i brz",
"intensive_voice": "Intenzivno",
"iot_auto_sensor": "Auto Sensor", "iot_auto_sensor": "Auto Sensor",
"iot_auto_universal_soil": "Automatski univerzalni 50 - 60°C", "iot_auto_universal_soil": "Automatski univerzalni 50-60°C",
"iot_auto_wash_soil": "Automatsko pranje", "iot_auto_wash_soil": "Automatsko pranje",
"iot_baby_care": "Baby Care", "iot_baby_care": "Baby Care",
"iot_breakfast": "Doručak", "iot_breakfast": "Doručak",
@ -1021,6 +1057,13 @@
"iot_super_wash": "Super Wash", "iot_super_wash": "Super Wash",
"iot_turbopower": "TurboPower", "iot_turbopower": "TurboPower",
"iot_universal": "Universal (Univerzalni) 60 °C", "iot_universal": "Universal (Univerzalni) 60 °C",
"iot_voice_automatic": "Automatic",
"iot_voice_delicate": "Osjetljivo 45°C",
"iot_voice_eco": "Eco 45°C",
"iot_voice_intensive": "Intenzivno 75°C",
"iot_voice_prewash": "Pretpranje",
"iot_voice_rapid_59": "Brzi 59'",
"iot_voice_universal": "Universal (Univerzalni) 60 °C",
"iot_wok_grids_maxi_pans": "Posebne tave (Wok - rešetke & Maxi tave)", "iot_wok_grids_maxi_pans": "Posebne tave (Wok - rešetke & Maxi tave)",
"iot_wok_grids_maxi_pans_soil": "Posebne tave (Wok - rešetke & Maxi tave)", "iot_wok_grids_maxi_pans_soil": "Posebne tave (Wok - rešetke & Maxi tave)",
"iot_yes_quick_cycle": "Yes Quick", "iot_yes_quick_cycle": "Yes Quick",
@ -1052,6 +1095,7 @@
"ultra_silent": "Ultra tihi 55°C", "ultra_silent": "Ultra tihi 55°C",
"universal": "Universal (Univerzalni) 60 °C", "universal": "Universal (Univerzalni) 60 °C",
"universal_plus": "Universal Plus (Univerzalni plus) 70 °C", "universal_plus": "Universal Plus (Univerzalni plus) 70 °C",
"zone_wash": "Flex Zone Wash",
"zoom_39": "Zoom 39 min" "zoom_39": "Zoom 39 min"
}, },
"name": "Program" "name": "Program"
@ -1185,14 +1229,14 @@
"hqd_bulky": "Glomazni komadi", "hqd_bulky": "Glomazni komadi",
"hqd_casual": "Opušteno", "hqd_casual": "Opušteno",
"hqd_cold_wind_30": "Hladni zrak, 30 minuta", "hqd_cold_wind_30": "Hladni zrak, 30 minuta",
"hqd_cold_wind_timing": "Hladni zrak", "hqd_cold_wind_timing": "Hladan zrak",
"hqd_cotton": "Pamuk", "hqd_cotton": "Pamuk",
"hqd_curtain": "Zavjese", "hqd_curtain": "Zavjese",
"hqd_delicate": "Osjetljivo rublje", "hqd_delicate": "Osjetljivo rublje",
"hqd_diaper": "Pelene", "hqd_diaper": "Pelene",
"hqd_duvet": "Poplun", "hqd_duvet": "Prošivena jakna od sintetičkih vlakana",
"hqd_feather": "Jakne punjene paperjem", "hqd_feather": "Prošivena jakna od prirodnih vlakana",
"hqd_hot_wind_timing": "Vrući zrak", "hqd_hot_wind_timing": "Zagrijavanje",
"hqd_hygienic": "Higijenizacija", "hqd_hygienic": "Higijenizacija",
"hqd_i_refresh": "I-Refresh", "hqd_i_refresh": "I-Refresh",
"hqd_i_refresh_pro": "I-Refresh Pro", "hqd_i_refresh_pro": "I-Refresh Pro",
@ -1205,7 +1249,7 @@
"hqd_precious_cure": "Precious Cure", "hqd_precious_cure": "Precious Cure",
"hqd_quick_20": "Brzo 20", "hqd_quick_20": "Brzo 20",
"hqd_quick_30": "Brzo 30", "hqd_quick_30": "Brzo 30",
"hqd_quick_dry": "Brzo sušenje 30'", "hqd_quick_dry": "Brzo automatsko sušenje 30'",
"hqd_quilt": "Popluni", "hqd_quilt": "Popluni",
"hqd_refresh": "Protiv neugodnih mirisa", "hqd_refresh": "Protiv neugodnih mirisa",
"hqd_school_uniform": "Školska uniforma", "hqd_school_uniform": "Školska uniforma",
@ -1242,6 +1286,8 @@
"iot_dry_gym_fit": "Fitness odjeća", "iot_dry_gym_fit": "Fitness odjeća",
"iot_dry_lingerie": "Donje rublje", "iot_dry_lingerie": "Donje rublje",
"iot_dry_mixed": "Miješane tkanine", "iot_dry_mixed": "Miješane tkanine",
"iot_dry_pet_accessories": "Pribor za ljubimce",
"iot_dry_pet_hair_removal": "Uklanjanje dlaka kućnih ljubimaca (pretpranje)",
"iot_dry_playsuits": "Kombinezoni", "iot_dry_playsuits": "Kombinezoni",
"iot_dry_rapid_30": "Rapid 30", "iot_dry_rapid_30": "Rapid 30",
"iot_dry_rapid_59": "Brzi program 59.", "iot_dry_rapid_59": "Brzi program 59.",
@ -1293,9 +1339,9 @@
"state": { "state": {
"20_degrees_coloured_cottons": "20° šareno i pamučno rublje", "20_degrees_coloured_cottons": "20° šareno i pamučno rublje",
"20_degrees_new_energy_label": "20°C", "20_degrees_new_energy_label": "20°C",
"active_steam": "Para", "active_steam": "Para 29'",
"active_wash": "Aktivno pranje", "active_wash": "Aktivno pranje 20'",
"active_wash_steam": "Aktivno pranje", "active_wash_steam": "Aktivno pranje 20' + para",
"allergy_care": "Alergijska njega", "allergy_care": "Alergijska njega",
"allergy_care_pro": "Alergijska njega Pro", "allergy_care_pro": "Alergijska njega Pro",
"all_in_one_49": "Sve u jednom 49.", "all_in_one_49": "Sve u jednom 49.",
@ -1315,19 +1361,19 @@
"cottons_steam": "Pamuk + Para", "cottons_steam": "Pamuk + Para",
"cotton_care_59": "Pamuk 59 Min", "cotton_care_59": "Pamuk 59 Min",
"delicate_59": "Osjetljivo rublje 59", "delicate_59": "Osjetljivo rublje 59",
"delicate_silk": "Osjetljiva svila", "delicate_silk": "Osjetljiva svila 59'",
"delicate_silk_steam": "Osjetljiva svila + para", "delicate_silk_steam": "Osjetljiva svila + para",
"delicati_59": "Osjetljivo rublje 59", "delicati_59": "Osjetljivo rublje 59",
"delicati_59_steam": "Osjetljivo rublje 59", "delicati_59_steam": "Osjetljivo rublje 59",
"drain_spin": "Ispiranje i centrifuga", "drain_spin": "Ispiranje i centrifuga",
"easy_iron": "Easy Iron - lakše glačanje", "easy_iron": "Easy Iron - lakše glačanje 39'",
"eco_40_60_new_energy_label": "Eco 40-60", "eco_40_60_new_energy_label": "Eco 40-60",
"extra_care": "Dodatna Njega", "extra_care": "Dodatna Njega",
"fitness": "Fitness Care", "fitness": "Fitness Care",
"fitness_care": "Fitness Care", "fitness_care": "Fitness Care",
"fresh_care": "Fresh Care", "fresh_care": "Fresh Care 59'",
"fresh_care_steam": "Svježa njega + para", "fresh_care_steam": "Svježa njega + para",
"handwash_wool": "Ručno pranje i vuna", "handwash_wool": "Ručno pranje i vuna 48'",
"high_dry": "Suhi pamuk", "high_dry": "Suhi pamuk",
"hqd_20_degrees": "Pamuk 20 ℃", "hqd_20_degrees": "Pamuk 20 ℃",
"hqd_allergy": "Alergijska njega", "hqd_allergy": "Alergijska njega",
@ -1335,13 +1381,13 @@
"hqd_babycare": "Baby Care", "hqd_babycare": "Baby Care",
"hqd_checkup": "Kontrolni pregled", "hqd_checkup": "Kontrolni pregled",
"hqd_cottons": "Pamuk", "hqd_cottons": "Pamuk",
"hqd_delicate": "Osjetljivo rublje", "hqd_delicate": "Osjetljivo rublje 50'",
"hqd_delicate_cradle": "Osjetljivo rublje", "hqd_delicate_cradle": "Osjetljivo rublje",
"hqd_dry": "Suhi pamuk", "hqd_dry": "Suhi pamuk",
"hqd_dry_synthetics": "Suha miješana odjeća", "hqd_dry_synthetics": "Suha miješana odjeća",
"hqd_duvet": "Popluni", "hqd_duvet": "Popluni",
"hqd_eco_40_60_degrees": "Eco 40-60", "hqd_eco_40_60_degrees": "Eco 40-60",
"hqd_handwash_wool": "Vuna", "hqd_handwash_wool": "Vuna 40'",
"hqd_i_refresh": "i-Refresh", "hqd_i_refresh": "i-Refresh",
"hqd_mix": "Miješano rublje", "hqd_mix": "Miješano rublje",
"hqd_quick_15": "Brzi program 15'", "hqd_quick_15": "Brzi program 15'",
@ -1352,7 +1398,7 @@
"hqd_shirts": "Košulje", "hqd_shirts": "Košulje",
"hqd_smart": "Smart A.I.", "hqd_smart": "Smart A.I.",
"hqd_spin": "Okretaj", "hqd_spin": "Okretaj",
"hqd_sport": "Sportska odjeća", "hqd_sport": "Sportska odjeća 25'",
"hqd_super_fast": "Brzi program 39", "hqd_super_fast": "Brzi program 39",
"hqd_synthetic_and_coloured": "Sintetika", "hqd_synthetic_and_coloured": "Sintetika",
"hygiene_59": "Hygijenski Plus 59'", "hygiene_59": "Hygijenski Plus 59'",
@ -1363,10 +1409,11 @@
"hygiene_pro_steam": "Hygiene Pro + para", "hygiene_pro_steam": "Hygiene Pro + para",
"intensive_40": "Intenzivno 40°C", "intensive_40": "Intenzivno 40°C",
"intensive_40_steam": "Intenzivno 40°C + para", "intensive_40_steam": "Intenzivno 40°C + para",
"iot_active_steam": "Para", "iot_active_steam": "Para 29'",
"iot_active_wash_steam": "Aktivno pranje", "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",
@ -1399,17 +1446,19 @@
"iot_dry_technical_fabrics": "Tehničke tkanine", "iot_dry_technical_fabrics": "Tehničke tkanine",
"iot_dry_warm_embrace": "Toplo sušenje", "iot_dry_warm_embrace": "Toplo sušenje",
"iot_dry_wool_dry": "Vuna, suho", "iot_dry_wool_dry": "Vuna, suho",
"iot_easy_iron": "Easy Iron - lakše glačanje", "iot_easy_iron": "Easy Iron - lakše glačanje 39'",
"iot_fresh_care_steam": "Svježa njega + para", "iot_fresh_care_steam": "Svježa njega + para",
"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_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'",
"iot_rapid_a_class_60_steam": "Brza klasa A 60 + para", "iot_rapid_a_class_60_steam": "Brza klasa A 60 + para",
"iot_resistant_cotton_steam": "Pamuk + Para", "iot_resistant_cotton_steam": "Pamuk + Para",
"iot_shirts_steam": "Košulje + para", "iot_shirts_steam": "Košulje + para",
"iot_single_item_steam": "Pojedinačna stavka + para", "iot_single_item_steam": "Pojedinačna stavka 20' + para",
"iot_smart_wash": "Pametno pranje", "iot_smart_wash": "Pametno pranje",
"iot_soft_care_steam": "Soft Care + Steam", "iot_soft_care_steam": "Soft Care + Steam",
"iot_special_39_full_load_steam": "Posebna 39' + para", "iot_special_39_full_load_steam": "Posebna 39' + para",
@ -1443,7 +1492,7 @@
"iot_wash_coloured_bed_linen": "Posteljina u boji", "iot_wash_coloured_bed_linen": "Posteljina u boji",
"iot_wash_coloured_bed_linen_steam": "Posteljina u boji + para", "iot_wash_coloured_bed_linen_steam": "Posteljina u boji + para",
"iot_wash_coloured_curtains": "Šarene zavjese", "iot_wash_coloured_curtains": "Šarene zavjese",
"iot_wash_coloured_shirts": "Šarene košulje", "iot_wash_coloured_shirts": "Šarene košulje 59'",
"iot_wash_coloured_shirts_steam": "Košulje u boji + para", "iot_wash_coloured_shirts_steam": "Košulje u boji + para",
"iot_wash_coloured_steam": "Boje + Para", "iot_wash_coloured_steam": "Boje + Para",
"iot_wash_coloured_tableclothes": "Šareni stolnjaci", "iot_wash_coloured_tableclothes": "Šareni stolnjaci",
@ -1480,7 +1529,7 @@
"iot_wash_down_jackets_zelig": "Jakne punjene paperjem", "iot_wash_down_jackets_zelig": "Jakne punjene paperjem",
"iot_wash_duvet": "Popluni", "iot_wash_duvet": "Popluni",
"iot_wash_fruit_stains": "Mrlje od voća", "iot_wash_fruit_stains": "Mrlje od voća",
"iot_wash_gym_fit": "Odjeća za teretanu fitness", "iot_wash_gym_fit": "Odjeća za teretanu fitness 59'",
"iot_wash_handwash": "Ručno pranje", "iot_wash_handwash": "Ručno pranje",
"iot_wash_handwash_colored": "Ručno pranje obojenog rublja", "iot_wash_handwash_colored": "Ručno pranje obojenog rublja",
"iot_wash_handwash_dark": "Ručno pranje tamnog rublja", "iot_wash_handwash_dark": "Ručno pranje tamnog rublja",
@ -1525,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",
@ -1543,6 +1593,7 @@
"iot_wash_wool": "Vuna", "iot_wash_wool": "Vuna",
"jeans": "Traperice", "jeans": "Traperice",
"jeans_60": "Traper", "jeans_60": "Traper",
"jeans_60_steam": "Jeans + para",
"low_dry": "Suha miješana odjeća", "low_dry": "Suha miješana odjeća",
"mixed": "Miješane tkanine", "mixed": "Miješane tkanine",
"mixed_and_colored_59": "Miješana i šarena odjeća 59", "mixed_and_colored_59": "Miješana i šarena odjeća 59",
@ -1566,7 +1617,7 @@
"rinse": "Ispiranje", "rinse": "Ispiranje",
"shirts_steam": "Košulje + para", "shirts_steam": "Košulje + para",
"silent_night": "Ciklus preko noći", "silent_night": "Ciklus preko noći",
"single_item": "Pojedinačna stavka", "single_item": "Pojedinačna stavka 20'",
"single_item_steam": "Pojedinačna stavka + para", "single_item_steam": "Pojedinačna stavka + para",
"smart_wash": "Pametno pranje", "smart_wash": "Pametno pranje",
"soft_care": "Mekana njega", "soft_care": "Mekana njega",
@ -1582,8 +1633,8 @@
"steam_39": "Para 39", "steam_39": "Para 39",
"steam_care_pro": "Steam Care Pro", "steam_care_pro": "Steam Care Pro",
"steam_care_pro_cotton": "Steam Care Pro - pamuk", "steam_care_pro_cotton": "Steam Care Pro - pamuk",
"steam_care_pro_delicates": "Steam Care Pro - osjetljivo", "steam_care_pro_delicates": "Steam Care Pro - osjetljivo 16'",
"steam_care_pro_synthetic": "Steam Care Pro - sintetika", "steam_care_pro_synthetic": "Steam Care Pro - sintetika 20'",
"steam_hygiene_plus": "Hygiene Plus Steam", "steam_hygiene_plus": "Hygiene Plus Steam",
"synthetics": "Sintetika", "synthetics": "Sintetika",
"synthetic_and_coloured": "Sintetika i šareno rublje", "synthetic_and_coloured": "Sintetika i šareno rublje",
@ -1595,7 +1646,7 @@
"wool": "Vuna", "wool": "Vuna",
"wool_and_delicates_49": "Vuna/Osjetljivo 49'", "wool_and_delicates_49": "Vuna/Osjetljivo 49'",
"wool_dry": "Suha vuna", "wool_dry": "Suha vuna",
"wool_soft_care": "Vuna & Mekana Njega" "wool_soft_care": "Vuna & Mekana Njega 48'"
}, },
"name": "Program" "name": "Program"
}, },
@ -1605,20 +1656,25 @@
"cheese": "Sir", "cheese": "Sir",
"chiller": "Quick cool", "chiller": "Quick cool",
"cold_drinks": "Soft chill", "cold_drinks": "Soft chill",
"cool_drink": "Cool Drink",
"eco": "Eco", "eco": "Eco",
"eco_mode": "Način rada Eco", "eco_mode": "Način rada Eco",
"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",
"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",
"sea_food": "Ready to cook meal", "sea_food": "Ready to cook meal",
"smart_mode_title": "Smart Mode",
"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",
"zero_fresh": "0° Fresh" "vegetables": "Vegetable",
"zero_fresh": "0°C Fresh"
}, },
"name": "Program" "name": "Program"
}, },
@ -1671,6 +1727,71 @@
"unknown": "unknown" "unknown": "unknown"
}, },
"name": "Stupanj zaprljanosti" "name": "Stupanj zaprljanosti"
},
"stain_type": {
"state": {
"baby_food": "Hrana za bebe",
"bean_paste": "Juha od graha",
"blood": "Krv",
"blueberry": "Borovnica",
"blue_ink": "Plava tinta",
"butter": "Maslac",
"chili_oil": "Ulje čilija",
"chili_sauce": "Umak od čilija",
"chocolate": "Čokolada",
"coffe": "Kava",
"coffee": "Kava",
"color_pencil": "Olovka",
"cooking_oil": "Ulje za kuhanje",
"curry": "Curry",
"deodorant": "Dezodorans",
"egg": "Jaje",
"fruit": "Voće",
"glue": "Ljepilo",
"grass": "Trava",
"ice_cream": "Sladoled",
"ketchup": "Kečap",
"lip_gloss": "Sjajilo za usne",
"mayonnaise": "Majoneza",
"mech_grease": "Mech mast",
"milk": "Mlijeko",
"milk_tea": "Čaj s mlijekom",
"oil": "Ulje",
"oil_pastel": "Uljne pastele",
"perfume": "Parfem",
"rust": "Hrđa",
"shoe_cream": "Krema za cipele",
"soil": "Tlo",
"soy_sauce": "Umak Od Soje",
"stain_level": "Razina mrlja",
"sweat": "Znoj",
"tea": "Čaj",
"wine": "Vino",
"unknown": "unknown"
},
"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": {
@ -1928,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": {
@ -2062,6 +2186,9 @@
} }
} }
} }
},
"my_zone": {
"name": "My Zone"
} }
}, },
"fan": { "fan": {

View File

@ -99,32 +99,36 @@
"auto_care_soil": "Auto Care", "auto_care_soil": "Auto Care",
"auto_hygiene": "Auto Igiene", "auto_hygiene": "Auto Igiene",
"auto_plus": "AutoPlus", "auto_plus": "AutoPlus",
"auto_plus_soil": "Auto Plus Sporco",
"auto_rapid": "Auto Rapido", "auto_rapid": "Auto Rapido",
"auto_rapid_soil": "Auto Rapido Sporco",
"auto_sensor": "Auto Sensor", "auto_sensor": "Auto Sensor",
"auto_sensor_soil": "Auto Sensor", "auto_sensor_soil": "Auto Sensor",
"auto_universal": "Auto Universale 50 - 60°C", "auto_universal": "Auto Universale 50-60°C",
"auto_universal_plus": "Auto Universale Plus 65 - 75°C", "auto_universal_plus": "Auto Universale Plus 65-75°C",
"auto_universal_plus_soil": "Auto Universale Plus 65 - 75°C", "auto_universal_plus_soil": "Auto Universale Plus 65-75°C",
"auto_universal_soil": "Auto Universale 50 - 60°C", "auto_universal_soil": "Auto Universale 50-60°C",
"auto_wash": "Auto Wash", "auto_wash": "Auto Wash",
"auto_wash_soil": "Auto Wash", "auto_wash_soil": "Auto Wash",
"classe_a_59": "Classe A 59' 65°C", "classe_a_59": "Classe A 59' 65°C",
"delicate": "Delicato 45°C", "delicate": "Delicato 45°C",
"dishwasher_care": "Ciclo anticalcare", "dishwasher_care": "Ciclo anticalcare",
"eco": "Eco", "eco": "Eco 45°C",
"eco_asynch": "Eco 45°C", "eco_asynch": "Eco 45°C",
"eco_bldc": "Eco 45°C", "eco_bldc": "Eco 45°C",
"eco_synch": "Eco 45°C", "eco_synch": "Eco 45°C",
"eco_voice": "Eco",
"gentle_wash": "Gentle wash", "gentle_wash": "Gentle wash",
"glass": "Calici", "glass": "Calici",
"glassware": "Cristalli 45°C", "glassware": "Cristalli 45°C",
"glass_care": "Glass Care", "glass_care": "Glass Care",
"hygiene": "Igiene", "hygiene": "Igiene",
"hygiene_plus": "Igiene 75°C", "hygiene_plus": "Igiene Plus 75°C",
"intensive": "Intensivo", "intensive": "Intensivo",
"intensive_rapid": "Forte Veloce", "intensive_rapid": "Forte Veloce",
"intensive_voice": "Intensivo",
"iot_auto_sensor": "Auto Sensor", "iot_auto_sensor": "Auto Sensor",
"iot_auto_universal_soil": "Auto Universale 50 - 60°C", "iot_auto_universal_soil": "Auto Universale 50-60°C",
"iot_auto_wash_soil": "Auto Wash", "iot_auto_wash_soil": "Auto Wash",
"iot_baby_care": "Baby Care", "iot_baby_care": "Baby Care",
"iot_breakfast": "Colazione", "iot_breakfast": "Colazione",
@ -133,8 +137,8 @@
"iot_classe_a_59": "Rapido 59'", "iot_classe_a_59": "Rapido 59'",
"iot_cocktail_glasses": "Cocktail Glasses", "iot_cocktail_glasses": "Cocktail Glasses",
"iot_cocktail_glasses_soil": "Cocktail Glasses", "iot_cocktail_glasses_soil": "Cocktail Glasses",
"iot_daily_care": "Quotidiano", "iot_daily_care": "Daily Care",
"iot_daily_care_soil": "Quotidiano", "iot_daily_care_soil": "Daily Care",
"iot_delicate": "Delicato 45°C", "iot_delicate": "Delicato 45°C",
"iot_dinner_for_two": "Cena di coppia", "iot_dinner_for_two": "Cena di coppia",
"iot_dinner_for_two_soil": "Cena di coppia", "iot_dinner_for_two_soil": "Cena di coppia",
@ -142,12 +146,13 @@
"iot_eco_asynch": "Eco 45°C", "iot_eco_asynch": "Eco 45°C",
"iot_eco_bldc": "Eco 45°C", "iot_eco_bldc": "Eco 45°C",
"iot_eco_synch": "Eco 45°C", "iot_eco_synch": "Eco 45°C",
"iot_extra_hygiene": "Ciclo Vapore", "iot_extra_hygiene": "Extra Hygiene",
"iot_fairy_quick_cycle": "Fairy Rapido", "iot_fairy_quick_cycle": "Fairy Rapido",
"iot_happy_hour": "Happy Hour", "iot_happy_hour": "Happy Hour",
"iot_jar_quick_cycle": "Jar Rapido", "iot_jar_quick_cycle": "Jar Rapido",
"iot_party": "Party", "iot_party": "Party",
"iot_party_soil": "Party", "iot_party_soil": "Party",
"iot_pet_bowls_toys": "Ciotole e Giochi Animali",
"iot_pizza_menu": "Pizza Menu", "iot_pizza_menu": "Pizza Menu",
"iot_pizza_menu_soil": "Pizza Menu", "iot_pizza_menu_soil": "Pizza Menu",
"iot_plastic_tupperware": "Plastiche & Tupperware", "iot_plastic_tupperware": "Plastiche & Tupperware",
@ -164,6 +169,13 @@
"iot_super_wash": "Super Wash", "iot_super_wash": "Super Wash",
"iot_turbopower": "Turbo Power", "iot_turbopower": "Turbo Power",
"iot_universal": "Universale 60°C", "iot_universal": "Universale 60°C",
"iot_voice_automatic": "Automatico",
"iot_voice_delicate": "Delicato 45°C",
"iot_voice_eco": "Eco 45°C",
"iot_voice_intensive": "Intensivo 75°C",
"iot_voice_prewash": "Prelavaggio",
"iot_voice_rapid_59": "Rapido 59'",
"iot_voice_universal": "Universale 60°C",
"iot_wok_grids_maxi_pans": "Maxi Stoviglie e Griglie", "iot_wok_grids_maxi_pans": "Maxi Stoviglie e Griglie",
"iot_wok_grids_maxi_pans_soil": "Maxi Stoviglie e Griglie", "iot_wok_grids_maxi_pans_soil": "Maxi Stoviglie e Griglie",
"iot_yes_quick_cycle": "Yes Rapido", "iot_yes_quick_cycle": "Yes Rapido",
@ -195,6 +207,7 @@
"ultra_silent": "Ultra Silenzioso 55°C", "ultra_silent": "Ultra Silenzioso 55°C",
"universal": "Universale 60°C", "universal": "Universale 60°C",
"universal_plus": "Universale Plus 70°C", "universal_plus": "Universale Plus 70°C",
"zone_wash": "Flex Zone Wash",
"zoom_39": "Zoom 39 min" "zoom_39": "Zoom 39 min"
}, },
"name": "Programma" "name": "Programma"
@ -328,14 +341,14 @@
"hqd_bulky": "Vestiti voluminosi", "hqd_bulky": "Vestiti voluminosi",
"hqd_casual": "Casual", "hqd_casual": "Casual",
"hqd_cold_wind_30": "Brezza rinfrescante 30m", "hqd_cold_wind_30": "Brezza rinfrescante 30m",
"hqd_cold_wind_timing": "Brezza rinfrescante", "hqd_cold_wind_timing": "Aria Fredda",
"hqd_cotton": "Cotone", "hqd_cotton": "Cotone",
"hqd_curtain": "Tende", "hqd_curtain": "Tende",
"hqd_delicate": "Delicati", "hqd_delicate": "Delicati",
"hqd_diaper": "Pannolini", "hqd_diaper": "Pannolini",
"hqd_duvet": "Piumone", "hqd_duvet": "Piumini sintetici",
"hqd_feather": "Piumini", "hqd_feather": "Piumini fibra naturale",
"hqd_hot_wind_timing": "Aria calda", "hqd_hot_wind_timing": "Caldo abbraccio",
"hqd_hygienic": "Igienizzante", "hqd_hygienic": "Igienizzante",
"hqd_i_refresh": "I-Refresh", "hqd_i_refresh": "I-Refresh",
"hqd_i_refresh_pro": "I-Refresh Pro", "hqd_i_refresh_pro": "I-Refresh Pro",
@ -345,10 +358,10 @@
"hqd_mix": "Misti", "hqd_mix": "Misti",
"hqd_night_dry": "Asciugatura notturna", "hqd_night_dry": "Asciugatura notturna",
"hqd_outdoor": "Outdoor", "hqd_outdoor": "Outdoor",
"hqd_precious_cure": "Precious cure", "hqd_precious_cure": "Precious Cure",
"hqd_quick_20": "Rapido 20m", "hqd_quick_20": "Rapido 20m",
"hqd_quick_30": "Rapido 30'", "hqd_quick_30": "Rapido 30'",
"hqd_quick_dry": "Asciugatura veloce 30'", "hqd_quick_dry": "Asciugatura automatica rapida 30'",
"hqd_quilt": "Trapunte", "hqd_quilt": "Trapunte",
"hqd_refresh": "Refresh", "hqd_refresh": "Refresh",
"hqd_school_uniform": "Uniforme scolastica", "hqd_school_uniform": "Uniforme scolastica",
@ -378,13 +391,15 @@
"iot_dry_delicates": "Delicati", "iot_dry_delicates": "Delicati",
"iot_dry_delicate_tablecloths": "Tovaglie delicate", "iot_dry_delicate_tablecloths": "Tovaglie delicate",
"iot_dry_denim_jeans": "Denim - jeans", "iot_dry_denim_jeans": "Denim - jeans",
"iot_dry_down_jacket": "Giacche", "iot_dry_down_jacket": "Asciugatura Giacche",
"iot_dry_duvet": "Piumone", "iot_dry_duvet": "Piumone",
"iot_dry_easy_iron_cotton": "Stira facile", "iot_dry_easy_iron_cotton": "Stira facile",
"iot_dry_easy_iron_synthetics": "Stira facile Sintetici", "iot_dry_easy_iron_synthetics": "Stira facile Sintetici",
"iot_dry_gym_fit": "Gym fit - Fitness", "iot_dry_gym_fit": "Gym fit - Fitness",
"iot_dry_lingerie": "Lingerie", "iot_dry_lingerie": "Lingerie",
"iot_dry_mixed": "Misti", "iot_dry_mixed": "Misti",
"iot_dry_pet_accessories": "Accessori Animali",
"iot_dry_pet_hair_removal": "Rimozione Peli Animali (Pre-lavaggio)",
"iot_dry_playsuits": "Tutine", "iot_dry_playsuits": "Tutine",
"iot_dry_rapid_30": "Rapido 30'", "iot_dry_rapid_30": "Rapido 30'",
"iot_dry_rapid_59": "Rapido 59'.", "iot_dry_rapid_59": "Rapido 59'.",
@ -399,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",
@ -436,16 +451,16 @@
"state": { "state": {
"20_degrees_coloured_cottons": "Cotone e Colorati 20°", "20_degrees_coloured_cottons": "Cotone e Colorati 20°",
"20_degrees_new_energy_label": "20°C", "20_degrees_new_energy_label": "20°C",
"active_steam": "Vapore", "active_steam": "Vapore 29'",
"active_wash": "Active Wash", "active_wash": "Active Wash 20'",
"active_wash_steam": "Active Wash + Vapore", "active_wash_steam": "Active Wash 20' + Vapore",
"allergy_care": "Allergy Care", "allergy_care": "Allergy Care",
"allergy_care_pro": "Allergy Care Pro", "allergy_care_pro": "Allergy Care Pro",
"all_in_one_49": "All in One 49'", "all_in_one_49": "All in One 49'",
"all_in_one_59": "All in One 59'", "all_in_one_59": "All in One 59'",
"all_in_one_59_steam": "All in One 59' + Vapore", "all_in_one_59_steam": "All in One 59' + Vapore",
"autocare": "Autocare", "autocare": "Autocare",
"autoclean": "Pulizia cesto e decalcifiazione", "autoclean": "Pulizia cesto e decalcificazione",
"baby_60": "Tutto Bebè 60°C", "baby_60": "Tutto Bebè 60°C",
"care_14": "Rapid Care 14'", "care_14": "Rapid Care 14'",
"care_30": "Rapid Care 30'", "care_30": "Rapid Care 30'",
@ -458,19 +473,19 @@
"cottons_steam": "Cotone + Vapore", "cottons_steam": "Cotone + Vapore",
"cotton_care_59": "Cotton Care 59'", "cotton_care_59": "Cotton Care 59'",
"delicate_59": "Delicati 59'", "delicate_59": "Delicati 59'",
"delicate_silk": "Delicati e Seta", "delicate_silk": "Delicati e Seta 59'",
"delicate_silk_steam": "Delicati e Seta + Vapore", "delicate_silk_steam": "Delicati e Seta + Vapore",
"delicati_59": "Delicati 59'", "delicati_59": "Delicati 59'",
"delicati_59_steam": "Delicati 59' + Vapore", "delicati_59_steam": "Delicati 59' + Vapore",
"drain_spin": "Scarico e Centrifuga", "drain_spin": "Scarico e Centrifuga",
"easy_iron": "Stiro Facile", "easy_iron": "Stiro Facile 39'",
"eco_40_60_new_energy_label": "Eco 40-60", "eco_40_60_new_energy_label": "Eco 40-60",
"extra_care": "Extra Care", "extra_care": "Extra Care",
"fitness": "Fitness Care", "fitness": "Fitness Care",
"fitness_care": "Fitness Care", "fitness_care": "Fitness Care",
"fresh_care": "Fresh Care", "fresh_care": "Fresh Care 59'",
"fresh_care_steam": "Fresh Care + Vapore", "fresh_care_steam": "Fresh Care + Vapore",
"handwash_wool": "Mano e Lana", "handwash_wool": "Mano e Lana 48'",
"high_dry": "Asciugatura Cotone", "high_dry": "Asciugatura Cotone",
"hqd_20_degrees": "Cotone 20°C", "hqd_20_degrees": "Cotone 20°C",
"hqd_allergy": "Allergy Care", "hqd_allergy": "Allergy Care",
@ -478,13 +493,13 @@
"hqd_babycare": "Baby Care", "hqd_babycare": "Baby Care",
"hqd_checkup": "Check-Up", "hqd_checkup": "Check-Up",
"hqd_cottons": "Cotone", "hqd_cottons": "Cotone",
"hqd_delicate": "Delicati", "hqd_delicate": "Delicati 50'",
"hqd_delicate_cradle": "Delicati", "hqd_delicate_cradle": "Delicati",
"hqd_dry": "Asciugatura Cotone", "hqd_dry": "Asciugatura Cotone",
"hqd_dry_synthetics": "Asciugatura Misti", "hqd_dry_synthetics": "Asciugatura Misti",
"hqd_duvet": "Piumone", "hqd_duvet": "Piumone",
"hqd_eco_40_60_degrees": "Eco 40-60", "hqd_eco_40_60_degrees": "Eco 40-60",
"hqd_handwash_wool": "Lana", "hqd_handwash_wool": "Lana 40'",
"hqd_i_refresh": "i-Refresh", "hqd_i_refresh": "i-Refresh",
"hqd_mix": "Misti", "hqd_mix": "Misti",
"hqd_quick_15": "Express 15'", "hqd_quick_15": "Express 15'",
@ -495,7 +510,7 @@
"hqd_shirts": "Camicie", "hqd_shirts": "Camicie",
"hqd_smart": "Smart A.I.", "hqd_smart": "Smart A.I.",
"hqd_spin": "Centrifuga", "hqd_spin": "Centrifuga",
"hqd_sport": "Sport", "hqd_sport": "Sport 25'",
"hqd_super_fast": "Rapido 39'", "hqd_super_fast": "Rapido 39'",
"hqd_synthetic_and_coloured": "Sintetici", "hqd_synthetic_and_coloured": "Sintetici",
"hygiene_59": "Igiene Plus 59'", "hygiene_59": "Igiene Plus 59'",
@ -506,10 +521,11 @@
"hygiene_pro_steam": "Hygiene Pro + Vapore", "hygiene_pro_steam": "Hygiene Pro + Vapore",
"intensive_40": "Intensivo 40°C", "intensive_40": "Intensivo 40°C",
"intensive_40_steam": "Intensivo 40°C + Vapore", "intensive_40_steam": "Intensivo 40°C + Vapore",
"iot_active_steam": "Vapore", "iot_active_steam": "Vapore 29'",
"iot_active_wash_steam": "Active Wash + 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",
@ -542,17 +558,19 @@
"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_dry": "Asciugatura lana", "iot_dry_wool_dry": "Asciugatura lana",
"iot_easy_iron": "Stiro Facile", "iot_easy_iron": "Stiro Facile 39'",
"iot_fresh_care_steam": "Fresh Care + Vapore", "iot_fresh_care_steam": "Fresh Care + Vapore",
"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_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",
"iot_shirts_steam": "Camicie + Vapore", "iot_shirts_steam": "Camicie + Vapore",
"iot_single_item_steam": "Capo Singolo + Vapore", "iot_single_item_steam": "Capo Singolo 20' + Vapore",
"iot_smart_wash": "Smart Wash", "iot_smart_wash": "Smart Wash",
"iot_soft_care_steam": "Soft Care + Steam", "iot_soft_care_steam": "Soft Care + Steam",
"iot_special_39_full_load_steam": "Special 39' + Vapore", "iot_special_39_full_load_steam": "Special 39' + Vapore",
@ -586,7 +604,7 @@
"iot_wash_coloured_bed_linen": "Lenzuola Colorate", "iot_wash_coloured_bed_linen": "Lenzuola Colorate",
"iot_wash_coloured_bed_linen_steam": "Lenzuola Colorate + Vapore", "iot_wash_coloured_bed_linen_steam": "Lenzuola Colorate + Vapore",
"iot_wash_coloured_curtains": "Tende Colorate", "iot_wash_coloured_curtains": "Tende Colorate",
"iot_wash_coloured_shirts": "Camicie Colorate", "iot_wash_coloured_shirts": "Camicie Colorate 59'",
"iot_wash_coloured_shirts_steam": "Camicie Colorate + Vapore", "iot_wash_coloured_shirts_steam": "Camicie Colorate + Vapore",
"iot_wash_coloured_steam": "Colorati + Vapore", "iot_wash_coloured_steam": "Colorati + Vapore",
"iot_wash_coloured_tableclothes": "Tovaglie Colorate", "iot_wash_coloured_tableclothes": "Tovaglie Colorate",
@ -623,7 +641,7 @@
"iot_wash_down_jackets_zelig": "Piumini", "iot_wash_down_jackets_zelig": "Piumini",
"iot_wash_duvet": "Piumone", "iot_wash_duvet": "Piumone",
"iot_wash_fruit_stains": "Macchie di frutta", "iot_wash_fruit_stains": "Macchie di frutta",
"iot_wash_gym_fit": "Gym fit - Fitness", "iot_wash_gym_fit": "Gym fit - Fitness 59'",
"iot_wash_handwash": "Lavaggio a mano", "iot_wash_handwash": "Lavaggio a mano",
"iot_wash_handwash_colored": "Lavaggio a mano Colorati", "iot_wash_handwash_colored": "Lavaggio a mano Colorati",
"iot_wash_handwash_dark": "Lavaggio a mano Scuri", "iot_wash_handwash_dark": "Lavaggio a mano Scuri",
@ -668,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",
@ -686,12 +705,13 @@
"iot_wash_wool": "Lana", "iot_wash_wool": "Lana",
"jeans": "Jeans", "jeans": "Jeans",
"jeans_60": "Jeans", "jeans_60": "Jeans",
"jeans_60_steam": "Jeans + Vapore",
"low_dry": "Asciugatura Misti", "low_dry": "Asciugatura Misti",
"mixed": "Misti", "mixed": "Misti",
"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'",
@ -709,7 +729,7 @@
"rinse": "Risciacqui", "rinse": "Risciacqui",
"shirts_steam": "Camicie + Vapore", "shirts_steam": "Camicie + Vapore",
"silent_night": "Ciclo Notturno", "silent_night": "Ciclo Notturno",
"single_item": "Capo Singolo", "single_item": "Capo Singolo 20'",
"single_item_steam": "Capo Singolo + Vapore", "single_item_steam": "Capo Singolo + Vapore",
"smart_wash": "Smart Wash", "smart_wash": "Smart Wash",
"soft_care": "Soft Care", "soft_care": "Soft Care",
@ -725,8 +745,8 @@
"steam_39": "Vapore 39'", "steam_39": "Vapore 39'",
"steam_care_pro": "Steam Care Pro", "steam_care_pro": "Steam Care Pro",
"steam_care_pro_cotton": "Steam Care Pro - Cotone", "steam_care_pro_cotton": "Steam Care Pro - Cotone",
"steam_care_pro_delicates": "Steam Care Pro - Delicati", "steam_care_pro_delicates": "Steam Care Pro - Delicati 16'",
"steam_care_pro_synthetic": "Steam Care Pro - Sintetici", "steam_care_pro_synthetic": "Steam Care Pro - Sintetici 20'",
"steam_hygiene_plus": "Hygiene Plus + Vapore", "steam_hygiene_plus": "Hygiene Plus + Vapore",
"synthetics": "Sintetici", "synthetics": "Sintetici",
"synthetic_and_coloured": "Sintetici e Colorati", "synthetic_and_coloured": "Sintetici e Colorati",
@ -738,7 +758,7 @@
"wool": "Lana", "wool": "Lana",
"wool_and_delicates_49": "Lana e Delicati 49'", "wool_and_delicates_49": "Lana e Delicati 49'",
"wool_dry": "Asciugatura Lana", "wool_dry": "Asciugatura Lana",
"wool_soft_care": "Lana e Soft Care" "wool_soft_care": "Lana e Soft Care 48'"
}, },
"name": "Programma" "name": "Programma"
}, },
@ -748,20 +768,26 @@
"cheese": "Formaggio", "cheese": "Formaggio",
"chiller": "Quick cool", "chiller": "Quick cool",
"cold_drinks": "Soft chill", "cold_drinks": "Soft chill",
"cool_drink": "Cool Drink",
"eco": "Eco", "eco": "Eco",
"eco_mode": "Modalità Eco", "eco_mode": "Modalità Eco",
"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",
"no_mode_selected": "Nessuna modalità selezionata", "no_mode_selected": "Nessuna modalità selezionata",
"quick_cool": "QUICK COOL", "quick_cool": "QUICK COOL",
"sea_food": "Ready to cook meal", "sea_food": "Ready to cook meal",
"smart_mode": "SMART MODE",
"smart_mode_title": "Smart Mode",
"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",
"zero_fresh": "0° Fresh" "vegetables": "Vegetable",
"zero_fresh": "0°C Fresh"
}, },
"name": "Programma" "name": "Programma"
}, },
@ -892,6 +918,14 @@
}, },
"fan_speed": { "fan_speed": {
"name": "Velocità ventole" "name": "Velocità ventole"
},
"humidity_level": {
"state": {
"low": "Basso",
"mid": "Medio",
"high": "Alto"
},
"name": "Livello di umidità"
} }
}, },
"select": { "select": {
@ -961,32 +995,36 @@
"auto_care_soil": "Auto Care", "auto_care_soil": "Auto Care",
"auto_hygiene": "Auto Igiene", "auto_hygiene": "Auto Igiene",
"auto_plus": "AutoPlus", "auto_plus": "AutoPlus",
"auto_plus_soil": "Auto Plus Sporco",
"auto_rapid": "Auto Rapido", "auto_rapid": "Auto Rapido",
"auto_rapid_soil": "Auto Rapido Sporco",
"auto_sensor": "Auto Sensor", "auto_sensor": "Auto Sensor",
"auto_sensor_soil": "Auto Sensor", "auto_sensor_soil": "Auto Sensor",
"auto_universal": "Auto Universale 50 - 60°C", "auto_universal": "Auto Universale 50-60°C",
"auto_universal_plus": "Auto Universale Plus 65 - 75°C", "auto_universal_plus": "Auto Universale Plus 65-75°C",
"auto_universal_plus_soil": "Auto Universale Plus 65 - 75°C", "auto_universal_plus_soil": "Auto Universale Plus 65-75°C",
"auto_universal_soil": "Auto Universale 50 - 60°C", "auto_universal_soil": "Auto Universale 50-60°C",
"auto_wash": "Auto Wash", "auto_wash": "Auto Wash",
"auto_wash_soil": "Auto Wash", "auto_wash_soil": "Auto Wash",
"classe_a_59": "Classe A 59' 65°C", "classe_a_59": "Classe A 59' 65°C",
"delicate": "Delicato 45°C", "delicate": "Delicato 45°C",
"dishwasher_care": "Ciclo anticalcare", "dishwasher_care": "Ciclo anticalcare",
"eco": "Eco", "eco": "Eco 45°C",
"eco_asynch": "Eco 45°C", "eco_asynch": "Eco 45°C",
"eco_bldc": "Eco 45°C", "eco_bldc": "Eco 45°C",
"eco_synch": "Eco 45°C", "eco_synch": "Eco 45°C",
"eco_voice": "Eco",
"gentle_wash": "Gentle wash", "gentle_wash": "Gentle wash",
"glass": "Calici", "glass": "Calici",
"glassware": "Cristalli 45°C", "glassware": "Cristalli 45°C",
"glass_care": "Glass Care", "glass_care": "Glass Care",
"hygiene": "Igiene", "hygiene": "Igiene",
"hygiene_plus": "Igiene 75°C", "hygiene_plus": "Igiene Plus 75°C",
"intensive": "Intensivo", "intensive": "Intensivo",
"intensive_rapid": "Forte Veloce", "intensive_rapid": "Forte Veloce",
"intensive_voice": "Intensivo",
"iot_auto_sensor": "Auto Sensor", "iot_auto_sensor": "Auto Sensor",
"iot_auto_universal_soil": "Auto Universale 50 - 60°C", "iot_auto_universal_soil": "Auto Universale 50-60°C",
"iot_auto_wash_soil": "Auto Wash", "iot_auto_wash_soil": "Auto Wash",
"iot_baby_care": "Baby Care", "iot_baby_care": "Baby Care",
"iot_breakfast": "Colazione", "iot_breakfast": "Colazione",
@ -995,8 +1033,8 @@
"iot_classe_a_59": "Rapido 59'", "iot_classe_a_59": "Rapido 59'",
"iot_cocktail_glasses": "Cocktail Glasses", "iot_cocktail_glasses": "Cocktail Glasses",
"iot_cocktail_glasses_soil": "Cocktail Glasses", "iot_cocktail_glasses_soil": "Cocktail Glasses",
"iot_daily_care": "Quotidiano", "iot_daily_care": "Daily Care",
"iot_daily_care_soil": "Quotidiano", "iot_daily_care_soil": "Daily Care",
"iot_delicate": "Delicato 45°C", "iot_delicate": "Delicato 45°C",
"iot_dinner_for_two": "Cena di coppia", "iot_dinner_for_two": "Cena di coppia",
"iot_dinner_for_two_soil": "Cena di coppia", "iot_dinner_for_two_soil": "Cena di coppia",
@ -1004,12 +1042,13 @@
"iot_eco_asynch": "Eco 45°C", "iot_eco_asynch": "Eco 45°C",
"iot_eco_bldc": "Eco 45°C", "iot_eco_bldc": "Eco 45°C",
"iot_eco_synch": "Eco 45°C", "iot_eco_synch": "Eco 45°C",
"iot_extra_hygiene": "Ciclo Vapore", "iot_extra_hygiene": "Extra Hygiene",
"iot_fairy_quick_cycle": "Fairy Rapido", "iot_fairy_quick_cycle": "Fairy Rapido",
"iot_happy_hour": "Happy Hour", "iot_happy_hour": "Happy Hour",
"iot_jar_quick_cycle": "Jar Rapido", "iot_jar_quick_cycle": "Jar Rapido",
"iot_party": "Party", "iot_party": "Party",
"iot_party_soil": "Party", "iot_party_soil": "Party",
"iot_pet_bowls_toys": "Ciotole e Giochi Animali",
"iot_pizza_menu": "Pizza Menu", "iot_pizza_menu": "Pizza Menu",
"iot_pizza_menu_soil": "Pizza Menu", "iot_pizza_menu_soil": "Pizza Menu",
"iot_plastic_tupperware": "Plastiche & Tupperware", "iot_plastic_tupperware": "Plastiche & Tupperware",
@ -1026,6 +1065,13 @@
"iot_super_wash": "Super Wash", "iot_super_wash": "Super Wash",
"iot_turbopower": "Turbo Power", "iot_turbopower": "Turbo Power",
"iot_universal": "Universale 60°C", "iot_universal": "Universale 60°C",
"iot_voice_automatic": "Automatico",
"iot_voice_delicate": "Delicato 45°C",
"iot_voice_eco": "Eco 45°C",
"iot_voice_intensive": "Intensivo 75°C",
"iot_voice_prewash": "Prelavaggio",
"iot_voice_rapid_59": "Rapido 59'",
"iot_voice_universal": "Universale 60°C",
"iot_wok_grids_maxi_pans": "Maxi Stoviglie e Griglie", "iot_wok_grids_maxi_pans": "Maxi Stoviglie e Griglie",
"iot_wok_grids_maxi_pans_soil": "Maxi Stoviglie e Griglie", "iot_wok_grids_maxi_pans_soil": "Maxi Stoviglie e Griglie",
"iot_yes_quick_cycle": "Yes Rapido", "iot_yes_quick_cycle": "Yes Rapido",
@ -1057,6 +1103,7 @@
"ultra_silent": "Ultra Silenzioso 55°C", "ultra_silent": "Ultra Silenzioso 55°C",
"universal": "Universale 60°C", "universal": "Universale 60°C",
"universal_plus": "Universale Plus 70°C", "universal_plus": "Universale Plus 70°C",
"zone_wash": "Flex Zone Wash",
"zoom_39": "Zoom 39 min" "zoom_39": "Zoom 39 min"
}, },
"name": "Programma" "name": "Programma"
@ -1190,14 +1237,14 @@
"hqd_bulky": "Vestiti voluminosi", "hqd_bulky": "Vestiti voluminosi",
"hqd_casual": "Casual", "hqd_casual": "Casual",
"hqd_cold_wind_30": "Brezza rinfrescante 30m", "hqd_cold_wind_30": "Brezza rinfrescante 30m",
"hqd_cold_wind_timing": "Brezza rinfrescante", "hqd_cold_wind_timing": "Aria Fredda",
"hqd_cotton": "Cotone", "hqd_cotton": "Cotone",
"hqd_curtain": "Tende", "hqd_curtain": "Tende",
"hqd_delicate": "Delicati", "hqd_delicate": "Delicati",
"hqd_diaper": "Pannolini", "hqd_diaper": "Pannolini",
"hqd_duvet": "Piumone", "hqd_duvet": "Piumini sintetici",
"hqd_feather": "Piumini", "hqd_feather": "Piumini fibra naturale",
"hqd_hot_wind_timing": "Aria calda", "hqd_hot_wind_timing": "Caldo abbraccio",
"hqd_hygienic": "Igienizzante", "hqd_hygienic": "Igienizzante",
"hqd_i_refresh": "I-Refresh", "hqd_i_refresh": "I-Refresh",
"hqd_i_refresh_pro": "I-Refresh Pro", "hqd_i_refresh_pro": "I-Refresh Pro",
@ -1207,10 +1254,10 @@
"hqd_mix": "Misti", "hqd_mix": "Misti",
"hqd_night_dry": "Asciugatura notturna", "hqd_night_dry": "Asciugatura notturna",
"hqd_outdoor": "Outdoor", "hqd_outdoor": "Outdoor",
"hqd_precious_cure": "Precious cure", "hqd_precious_cure": "Precious Cure",
"hqd_quick_20": "Rapido 20m", "hqd_quick_20": "Rapido 20m",
"hqd_quick_30": "Rapido 30'", "hqd_quick_30": "Rapido 30'",
"hqd_quick_dry": "Asciugatura veloce 30'", "hqd_quick_dry": "Asciugatura automatica rapida 30'",
"hqd_quilt": "Trapunte", "hqd_quilt": "Trapunte",
"hqd_refresh": "Refresh", "hqd_refresh": "Refresh",
"hqd_school_uniform": "Uniforme scolastica", "hqd_school_uniform": "Uniforme scolastica",
@ -1240,13 +1287,15 @@
"iot_dry_delicates": "Delicati", "iot_dry_delicates": "Delicati",
"iot_dry_delicate_tablecloths": "Tovaglie delicate", "iot_dry_delicate_tablecloths": "Tovaglie delicate",
"iot_dry_denim_jeans": "Denim - jeans", "iot_dry_denim_jeans": "Denim - jeans",
"iot_dry_down_jacket": "Giacche", "iot_dry_down_jacket": "Asciugatura Giacche",
"iot_dry_duvet": "Piumone", "iot_dry_duvet": "Piumone",
"iot_dry_easy_iron_cotton": "Stira facile", "iot_dry_easy_iron_cotton": "Stira facile",
"iot_dry_easy_iron_synthetics": "Stira facile Sintetici", "iot_dry_easy_iron_synthetics": "Stira facile Sintetici",
"iot_dry_gym_fit": "Gym fit - Fitness", "iot_dry_gym_fit": "Gym fit - Fitness",
"iot_dry_lingerie": "Lingerie", "iot_dry_lingerie": "Lingerie",
"iot_dry_mixed": "Misti", "iot_dry_mixed": "Misti",
"iot_dry_pet_accessories": "Accessori Animali",
"iot_dry_pet_hair_removal": "Rimozione Peli Animali (Pre-lavaggio)",
"iot_dry_playsuits": "Tutine", "iot_dry_playsuits": "Tutine",
"iot_dry_rapid_30": "Rapido 30'", "iot_dry_rapid_30": "Rapido 30'",
"iot_dry_rapid_59": "Rapido 59'.", "iot_dry_rapid_59": "Rapido 59'.",
@ -1261,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",
@ -1298,16 +1347,16 @@
"state": { "state": {
"20_degrees_coloured_cottons": "Cotone e Colorati 20°", "20_degrees_coloured_cottons": "Cotone e Colorati 20°",
"20_degrees_new_energy_label": "20°C", "20_degrees_new_energy_label": "20°C",
"active_steam": "Vapore", "active_steam": "Vapore 29'",
"active_wash": "Active Wash", "active_wash": "Active Wash 20'",
"active_wash_steam": "Active Wash + Vapore", "active_wash_steam": "Active Wash 20' + Vapore",
"allergy_care": "Allergy Care", "allergy_care": "Allergy Care",
"allergy_care_pro": "Allergy Care Pro", "allergy_care_pro": "Allergy Care Pro",
"all_in_one_49": "All in One 49'", "all_in_one_49": "All in One 49'",
"all_in_one_59": "All in One 59'", "all_in_one_59": "All in One 59'",
"all_in_one_59_steam": "All in One 59' + Vapore", "all_in_one_59_steam": "All in One 59' + Vapore",
"autocare": "Autocare", "autocare": "Autocare",
"autoclean": "Pulizia cesto e decalcifiazione", "autoclean": "Pulizia cesto e decalcificazione",
"baby_60": "Tutto Bebè 60°C", "baby_60": "Tutto Bebè 60°C",
"care_14": "Rapid Care 14'", "care_14": "Rapid Care 14'",
"care_30": "Rapid Care 30'", "care_30": "Rapid Care 30'",
@ -1320,19 +1369,19 @@
"cottons_steam": "Cotone + Vapore", "cottons_steam": "Cotone + Vapore",
"cotton_care_59": "Cotton Care 59'", "cotton_care_59": "Cotton Care 59'",
"delicate_59": "Delicati 59'", "delicate_59": "Delicati 59'",
"delicate_silk": "Delicati e Seta", "delicate_silk": "Delicati e Seta 59'",
"delicate_silk_steam": "Delicati e Seta + Vapore", "delicate_silk_steam": "Delicati e Seta + Vapore",
"delicati_59": "Delicati 59'", "delicati_59": "Delicati 59'",
"delicati_59_steam": "Delicati 59' + Vapore", "delicati_59_steam": "Delicati 59' + Vapore",
"drain_spin": "Scarico e Centrifuga", "drain_spin": "Scarico e Centrifuga",
"easy_iron": "Stiro Facile", "easy_iron": "Stiro Facile 39'",
"eco_40_60_new_energy_label": "Eco 40-60", "eco_40_60_new_energy_label": "Eco 40-60",
"extra_care": "Extra Care", "extra_care": "Extra Care",
"fitness": "Fitness Care", "fitness": "Fitness Care",
"fitness_care": "Fitness Care", "fitness_care": "Fitness Care",
"fresh_care": "Fresh Care", "fresh_care": "Fresh Care 59'",
"fresh_care_steam": "Fresh Care + Vapore", "fresh_care_steam": "Fresh Care + Vapore",
"handwash_wool": "Mano e Lana", "handwash_wool": "Mano e Lana 48'",
"high_dry": "Asciugatura Cotone", "high_dry": "Asciugatura Cotone",
"hqd_20_degrees": "Cotone 20°C", "hqd_20_degrees": "Cotone 20°C",
"hqd_allergy": "Allergy Care", "hqd_allergy": "Allergy Care",
@ -1340,13 +1389,13 @@
"hqd_babycare": "Baby Care", "hqd_babycare": "Baby Care",
"hqd_checkup": "Check-Up", "hqd_checkup": "Check-Up",
"hqd_cottons": "Cotone", "hqd_cottons": "Cotone",
"hqd_delicate": "Delicati", "hqd_delicate": "Delicati 50'",
"hqd_delicate_cradle": "Delicati", "hqd_delicate_cradle": "Delicati",
"hqd_dry": "Asciugatura Cotone", "hqd_dry": "Asciugatura Cotone",
"hqd_dry_synthetics": "Asciugatura Misti", "hqd_dry_synthetics": "Asciugatura Misti",
"hqd_duvet": "Piumone", "hqd_duvet": "Piumone",
"hqd_eco_40_60_degrees": "Eco 40-60", "hqd_eco_40_60_degrees": "Eco 40-60",
"hqd_handwash_wool": "Lana", "hqd_handwash_wool": "Lana 40'",
"hqd_i_refresh": "i-Refresh", "hqd_i_refresh": "i-Refresh",
"hqd_mix": "Misti", "hqd_mix": "Misti",
"hqd_quick_15": "Express 15'", "hqd_quick_15": "Express 15'",
@ -1357,7 +1406,7 @@
"hqd_shirts": "Camicie", "hqd_shirts": "Camicie",
"hqd_smart": "Smart A.I.", "hqd_smart": "Smart A.I.",
"hqd_spin": "Centrifuga", "hqd_spin": "Centrifuga",
"hqd_sport": "Sport", "hqd_sport": "Sport 25'",
"hqd_super_fast": "Rapido 39'", "hqd_super_fast": "Rapido 39'",
"hqd_synthetic_and_coloured": "Sintetici", "hqd_synthetic_and_coloured": "Sintetici",
"hygiene_59": "Igiene Plus 59'", "hygiene_59": "Igiene Plus 59'",
@ -1368,10 +1417,11 @@
"hygiene_pro_steam": "Hygiene Pro + Vapore", "hygiene_pro_steam": "Hygiene Pro + Vapore",
"intensive_40": "Intensivo 40°C", "intensive_40": "Intensivo 40°C",
"intensive_40_steam": "Intensivo 40°C + Vapore", "intensive_40_steam": "Intensivo 40°C + Vapore",
"iot_active_steam": "Vapore", "iot_active_steam": "Vapore 29'",
"iot_active_wash_steam": "Active Wash + 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",
@ -1404,17 +1454,19 @@
"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_dry": "Asciugatura lana", "iot_dry_wool_dry": "Asciugatura lana",
"iot_easy_iron": "Stiro Facile", "iot_easy_iron": "Stiro Facile 39'",
"iot_fresh_care_steam": "Fresh Care + Vapore", "iot_fresh_care_steam": "Fresh Care + Vapore",
"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_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",
"iot_shirts_steam": "Camicie + Vapore", "iot_shirts_steam": "Camicie + Vapore",
"iot_single_item_steam": "Capo Singolo + Vapore", "iot_single_item_steam": "Capo Singolo 20' + Vapore",
"iot_smart_wash": "Smart Wash", "iot_smart_wash": "Smart Wash",
"iot_soft_care_steam": "Soft Care + Steam", "iot_soft_care_steam": "Soft Care + Steam",
"iot_special_39_full_load_steam": "Special 39' + Vapore", "iot_special_39_full_load_steam": "Special 39' + Vapore",
@ -1448,7 +1500,7 @@
"iot_wash_coloured_bed_linen": "Lenzuola Colorate", "iot_wash_coloured_bed_linen": "Lenzuola Colorate",
"iot_wash_coloured_bed_linen_steam": "Lenzuola Colorate + Vapore", "iot_wash_coloured_bed_linen_steam": "Lenzuola Colorate + Vapore",
"iot_wash_coloured_curtains": "Tende Colorate", "iot_wash_coloured_curtains": "Tende Colorate",
"iot_wash_coloured_shirts": "Camicie Colorate", "iot_wash_coloured_shirts": "Camicie Colorate 59'",
"iot_wash_coloured_shirts_steam": "Camicie Colorate + Vapore", "iot_wash_coloured_shirts_steam": "Camicie Colorate + Vapore",
"iot_wash_coloured_steam": "Colorati + Vapore", "iot_wash_coloured_steam": "Colorati + Vapore",
"iot_wash_coloured_tableclothes": "Tovaglie Colorate", "iot_wash_coloured_tableclothes": "Tovaglie Colorate",
@ -1485,7 +1537,7 @@
"iot_wash_down_jackets_zelig": "Piumini", "iot_wash_down_jackets_zelig": "Piumini",
"iot_wash_duvet": "Piumone", "iot_wash_duvet": "Piumone",
"iot_wash_fruit_stains": "Macchie di frutta", "iot_wash_fruit_stains": "Macchie di frutta",
"iot_wash_gym_fit": "Gym fit - Fitness", "iot_wash_gym_fit": "Gym fit - Fitness 59'",
"iot_wash_handwash": "Lavaggio a mano", "iot_wash_handwash": "Lavaggio a mano",
"iot_wash_handwash_colored": "Lavaggio a mano Colorati", "iot_wash_handwash_colored": "Lavaggio a mano Colorati",
"iot_wash_handwash_dark": "Lavaggio a mano Scuri", "iot_wash_handwash_dark": "Lavaggio a mano Scuri",
@ -1530,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",
@ -1548,12 +1601,13 @@
"iot_wash_wool": "Lana", "iot_wash_wool": "Lana",
"jeans": "Jeans", "jeans": "Jeans",
"jeans_60": "Jeans", "jeans_60": "Jeans",
"jeans_60_steam": "Jeans + Vapore",
"low_dry": "Asciugatura Misti", "low_dry": "Asciugatura Misti",
"mixed": "Misti", "mixed": "Misti",
"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'",
@ -1571,7 +1625,7 @@
"rinse": "Risciacqui", "rinse": "Risciacqui",
"shirts_steam": "Camicie + Vapore", "shirts_steam": "Camicie + Vapore",
"silent_night": "Ciclo Notturno", "silent_night": "Ciclo Notturno",
"single_item": "Capo Singolo", "single_item": "Capo Singolo 20'",
"single_item_steam": "Capo Singolo + Vapore", "single_item_steam": "Capo Singolo + Vapore",
"smart_wash": "Smart Wash", "smart_wash": "Smart Wash",
"soft_care": "Soft Care", "soft_care": "Soft Care",
@ -1587,8 +1641,8 @@
"steam_39": "Vapore 39'", "steam_39": "Vapore 39'",
"steam_care_pro": "Steam Care Pro", "steam_care_pro": "Steam Care Pro",
"steam_care_pro_cotton": "Steam Care Pro - Cotone", "steam_care_pro_cotton": "Steam Care Pro - Cotone",
"steam_care_pro_delicates": "Steam Care Pro - Delicati", "steam_care_pro_delicates": "Steam Care Pro - Delicati 16'",
"steam_care_pro_synthetic": "Steam Care Pro - Sintetici", "steam_care_pro_synthetic": "Steam Care Pro - Sintetici 20'",
"steam_hygiene_plus": "Hygiene Plus + Vapore", "steam_hygiene_plus": "Hygiene Plus + Vapore",
"synthetics": "Sintetici", "synthetics": "Sintetici",
"synthetic_and_coloured": "Sintetici e Colorati", "synthetic_and_coloured": "Sintetici e Colorati",
@ -1600,7 +1654,7 @@
"wool": "Lana", "wool": "Lana",
"wool_and_delicates_49": "Lana e Delicati 49'", "wool_and_delicates_49": "Lana e Delicati 49'",
"wool_dry": "Asciugatura Lana", "wool_dry": "Asciugatura Lana",
"wool_soft_care": "Lana e Soft Care" "wool_soft_care": "Lana e Soft Care 48'"
}, },
"name": "Programma" "name": "Programma"
}, },
@ -1610,20 +1664,26 @@
"cheese": "Formaggio", "cheese": "Formaggio",
"chiller": "Quick cool", "chiller": "Quick cool",
"cold_drinks": "Soft chill", "cold_drinks": "Soft chill",
"cool_drink": "Cool Drink",
"eco": "Eco", "eco": "Eco",
"eco_mode": "Modalità Eco", "eco_mode": "Modalità Eco",
"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",
"no_mode_selected": "Nessuna modalità selezionata", "no_mode_selected": "Nessuna modalità selezionata",
"quick_cool": "QUICK COOL", "quick_cool": "QUICK COOL",
"sea_food": "Ready to cook meal", "sea_food": "Ready to cook meal",
"smart_mode": "SMART MODE",
"smart_mode_title": "Smart Mode",
"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",
"zero_fresh": "0° Fresh" "vegetables": "Vegetable",
"zero_fresh": "0°C Fresh"
}, },
"name": "Programma" "name": "Programma"
}, },
@ -1676,6 +1736,71 @@
"unknown": "unknown" "unknown": "unknown"
}, },
"name": "Livello di sporco" "name": "Livello di sporco"
},
"stain_type": {
"state": {
"baby_food": "Cibo per bambini",
"bean_paste": "Crema di fagioli",
"blood": "Sangue",
"blueberry": "Mirtillo",
"blue_ink": "Inchiostro blu",
"butter": "Burro",
"chili_oil": "Olio piccante",
"chili_sauce": "Salsa piccante",
"chocolate": "Cioccolato",
"coffe": "Caffè",
"coffee": "Caffè",
"color_pencil": "Matita",
"cooking_oil": "Olio di cottura",
"curry": "Curry",
"deodorant": "Deodorante",
"egg": "Uovo",
"fruit": "Frutta",
"glue": "Colla",
"grass": "Erba",
"ice_cream": "Gelato",
"ketchup": "Ketchup",
"lip_gloss": "Lucidalabbra",
"mayonnaise": "Maionese",
"mech_grease": "Grasso meccanico",
"milk": "Latte",
"milk_tea": "Tè con latte",
"oil": "Olio",
"oil_pastel": "Pastello ad olio",
"perfume": "Profumo",
"rust": "Ruggine",
"shoe_cream": "Crema lucidascarpe",
"soil": "Terra",
"soy_sauce": "Salsa di soia",
"stain_level": "Livello di sporco",
"sweat": "Sudore",
"tea": "Tè",
"wine": "Vino",
"unknown": "unknown"
},
"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": {
@ -1933,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": {
@ -2067,6 +2195,9 @@
} }
} }
} }
},
"my_zone": {
"name": "My Zone"
} }
}, },
"fan": { "fan": {

View File

@ -99,22 +99,25 @@
"auto_care_soil": "Auto Care", "auto_care_soil": "Auto Care",
"auto_hygiene": "Auto Hygiene", "auto_hygiene": "Auto Hygiene",
"auto_plus": "AutoPlus", "auto_plus": "AutoPlus",
"auto_plus_soil": "Auto Plus bevuiling",
"auto_rapid": "Auto Rapid", "auto_rapid": "Auto Rapid",
"auto_rapid_soil": "Auto Rapid bevuiling",
"auto_sensor": "Auto Sensor", "auto_sensor": "Auto Sensor",
"auto_sensor_soil": "Auto Sensor", "auto_sensor_soil": "Auto Sensor",
"auto_universal": "Auto universeel 50 - 60°C", "auto_universal": "Auto universeel 50-60°C",
"auto_universal_plus": "Auto universeel plus 65 - 75°C", "auto_universal_plus": "Auto universeel plus 65-75°C",
"auto_universal_plus_soil": "Auto universeel plus 65 - 75°C", "auto_universal_plus_soil": "Auto universeel plus 65-75°C",
"auto_universal_soil": "Auto universeel 50 - 60°C", "auto_universal_soil": "Auto universeel 50-60°C",
"auto_wash": "Automatisch wassen", "auto_wash": "Automatisch wassen",
"auto_wash_soil": "Automatisch wassen", "auto_wash_soil": "Automatisch wassen",
"classe_a_59": "A klasse 59' 65°C", "classe_a_59": "A klasse 59' 65°C",
"delicate": "Delicaat 45°C", "delicate": "Delicaat 45°C",
"dishwasher_care": "Ontkalkingsprogramma", "dishwasher_care": "Ontkalkingsprogramma",
"eco": "Eco", "eco": "Eco 45°C",
"eco_asynch": "Eco 45°C", "eco_asynch": "Eco 45°C",
"eco_bldc": "Eco 45°C", "eco_bldc": "Eco 45°C",
"eco_synch": "Eco 45°C", "eco_synch": "Eco 45°C",
"eco_voice": "Eco",
"gentle_wash": "Gentle wash", "gentle_wash": "Gentle wash",
"glass": "Glas", "glass": "Glas",
"glassware": "Glaswerk 45°C", "glassware": "Glaswerk 45°C",
@ -123,8 +126,9 @@
"hygiene_plus": "Hygiëne+ 75°C", "hygiene_plus": "Hygiëne+ 75°C",
"intensive": "Intensief", "intensive": "Intensief",
"intensive_rapid": "Intensief snel", "intensive_rapid": "Intensief snel",
"intensive_voice": "Intensief",
"iot_auto_sensor": "Auto Sensor", "iot_auto_sensor": "Auto Sensor",
"iot_auto_universal_soil": "Auto universeel 50 - 60°C", "iot_auto_universal_soil": "Auto universeel 50-60°C",
"iot_auto_wash_soil": "Automatisch wassen", "iot_auto_wash_soil": "Automatisch wassen",
"iot_baby_care": "Baby Care", "iot_baby_care": "Baby Care",
"iot_breakfast": "Onbtijt", "iot_breakfast": "Onbtijt",
@ -164,6 +168,13 @@
"iot_super_wash": "Super Was", "iot_super_wash": "Super Was",
"iot_turbopower": "TurboPower", "iot_turbopower": "TurboPower",
"iot_universal": "Universeel 60°C", "iot_universal": "Universeel 60°C",
"iot_voice_automatic": "Automatic",
"iot_voice_delicate": "Delicaat 45°C",
"iot_voice_eco": "Eco 45°C",
"iot_voice_intensive": "Intensief 75°C",
"iot_voice_prewash": "Voorwas",
"iot_voice_rapid_59": "Snel 59'",
"iot_voice_universal": "Universeel 60°C",
"iot_wok_grids_maxi_pans": "Speciale Pannen (Wokpannen - Roosters & Maxi Pannen)", "iot_wok_grids_maxi_pans": "Speciale Pannen (Wokpannen - Roosters & Maxi Pannen)",
"iot_wok_grids_maxi_pans_soil": "Speciale Pannen (Wokpannen - Roosters & Maxi Pannen)", "iot_wok_grids_maxi_pans_soil": "Speciale Pannen (Wokpannen - Roosters & Maxi Pannen)",
"iot_yes_quick_cycle": "Yes Quick", "iot_yes_quick_cycle": "Yes Quick",
@ -195,6 +206,7 @@
"ultra_silent": "Zeer stil 55°C", "ultra_silent": "Zeer stil 55°C",
"universal": "Universeel 60°C", "universal": "Universeel 60°C",
"universal_plus": "Universeel Plus 70°C", "universal_plus": "Universeel Plus 70°C",
"zone_wash": "Flex Zone Wash",
"zoom_39": "Zoom 39 min" "zoom_39": "Zoom 39 min"
}, },
"name": "Programma" "name": "Programma"
@ -328,14 +340,14 @@
"hqd_bulky": "Grote artikelen", "hqd_bulky": "Grote artikelen",
"hqd_casual": "Casual", "hqd_casual": "Casual",
"hqd_cold_wind_30": "30 minuten koel briesje", "hqd_cold_wind_30": "30 minuten koel briesje",
"hqd_cold_wind_timing": "Koel briesje", "hqd_cold_wind_timing": "Koude lucht",
"hqd_cotton": "Katoen", "hqd_cotton": "Katoen",
"hqd_curtain": "Gordijnen", "hqd_curtain": "Gordijnen",
"hqd_delicate": "Fijne was", "hqd_delicate": "Fijne was",
"hqd_diaper": "Luiers", "hqd_diaper": "Luiers",
"hqd_duvet": "Dekbed", "hqd_duvet": "Gewatteerde jas met synthetische vezels",
"hqd_feather": "Donsjassen", "hqd_feather": "Gewatteerde jas met natuurlijke vezels",
"hqd_hot_wind_timing": "Hete lucht", "hqd_hot_wind_timing": "Warme Knuffel",
"hqd_hygienic": "Ontsmetten", "hqd_hygienic": "Ontsmetten",
"hqd_i_refresh": "I-Refresh", "hqd_i_refresh": "I-Refresh",
"hqd_i_refresh_pro": "I-Refresh Pro", "hqd_i_refresh_pro": "I-Refresh Pro",
@ -345,10 +357,10 @@
"hqd_mix": "Gemengde vezels", "hqd_mix": "Gemengde vezels",
"hqd_night_dry": "Nachtelijk droogprogramma", "hqd_night_dry": "Nachtelijk droogprogramma",
"hqd_outdoor": "Outdoor", "hqd_outdoor": "Outdoor",
"hqd_precious_cure": "Precious cure", "hqd_precious_cure": "Precious Cure",
"hqd_quick_20": "Quick 20", "hqd_quick_20": "Quick 20",
"hqd_quick_30": "Quick 30", "hqd_quick_30": "Quick 30",
"hqd_quick_dry": "Quick dry 30'", "hqd_quick_dry": "30' automatisch snel drogen",
"hqd_quilt": "Quilts", "hqd_quilt": "Quilts",
"hqd_refresh": "Opfrissen", "hqd_refresh": "Opfrissen",
"hqd_school_uniform": "Schooluniform", "hqd_school_uniform": "Schooluniform",
@ -385,6 +397,8 @@
"iot_dry_gym_fit": "Gym fit - Fitness", "iot_dry_gym_fit": "Gym fit - Fitness",
"iot_dry_lingerie": "Lingerie", "iot_dry_lingerie": "Lingerie",
"iot_dry_mixed": "Gemengde vezels", "iot_dry_mixed": "Gemengde vezels",
"iot_dry_pet_accessories": "Accessoires voor dieren",
"iot_dry_pet_hair_removal": "Verwijdering huisdierharen (voorwas)",
"iot_dry_playsuits": "Jumpsuits", "iot_dry_playsuits": "Jumpsuits",
"iot_dry_rapid_30": "Rapid 30", "iot_dry_rapid_30": "Rapid 30",
"iot_dry_rapid_59": "Snel 59'", "iot_dry_rapid_59": "Snel 59'",
@ -436,9 +450,9 @@
"state": { "state": {
"20_degrees_coloured_cottons": "20° gekleurd en katoen", "20_degrees_coloured_cottons": "20° gekleurd en katoen",
"20_degrees_new_energy_label": "20 °C", "20_degrees_new_energy_label": "20 °C",
"active_steam": "Stoom", "active_steam": "Stoom 29'",
"active_wash": "Actieve was", "active_wash": "Actieve was 20'",
"active_wash_steam": "Actieve was", "active_wash_steam": "Actieve was 20' + Stoom",
"allergy_care": "Allergiezorg", "allergy_care": "Allergiezorg",
"allergy_care_pro": "Allergy Care Pro", "allergy_care_pro": "Allergy Care Pro",
"all_in_one_49": "Alles-in-één 49'.", "all_in_one_49": "Alles-in-één 49'.",
@ -458,19 +472,19 @@
"cottons_steam": "Katoen + Stoom", "cottons_steam": "Katoen + Stoom",
"cotton_care_59": "Cotton Care 59 Min", "cotton_care_59": "Cotton Care 59 Min",
"delicate_59": "Fijne was 59'", "delicate_59": "Fijne was 59'",
"delicate_silk": "Fijne was Zijde", "delicate_silk": "Fijne was Zijde 59'",
"delicate_silk_steam": "Fijne was Zijde + Stoom", "delicate_silk_steam": "Fijne was Zijde + Stoom",
"delicati_59": "Fijne was 59'", "delicati_59": "Fijne was 59'",
"delicati_59_steam": "Fijne was 59'", "delicati_59_steam": "Fijne was 59'",
"drain_spin": "Afpompen en centrifugeren", "drain_spin": "Afpompen en centrifugeren",
"easy_iron": "Makkelijk Strijkbaar", "easy_iron": "Makkelijk Strijkbaar 39'",
"eco_40_60_new_energy_label": "Eco 40-60", "eco_40_60_new_energy_label": "Eco 40-60",
"extra_care": "Extra Care", "extra_care": "Extra Care",
"fitness": "Fitness care", "fitness": "Fitness care",
"fitness_care": "Fitness care", "fitness_care": "Fitness care",
"fresh_care": "Opfrisverzorging", "fresh_care": "Opfrisverzorging 59'",
"fresh_care_steam": "Fresh Care + Stoom", "fresh_care_steam": "Fresh Care + Stoom",
"handwash_wool": "Handwas en wol", "handwash_wool": "Handwas en wol 48'",
"high_dry": "Katoen drogen", "high_dry": "Katoen drogen",
"hqd_20_degrees": "Katoen 20℃", "hqd_20_degrees": "Katoen 20℃",
"hqd_allergy": "Allergiezorg", "hqd_allergy": "Allergiezorg",
@ -478,13 +492,13 @@
"hqd_babycare": "Baby Care", "hqd_babycare": "Baby Care",
"hqd_checkup": "Controle", "hqd_checkup": "Controle",
"hqd_cottons": "Katoen", "hqd_cottons": "Katoen",
"hqd_delicate": "Fijne was", "hqd_delicate": "Fijne was 50'",
"hqd_delicate_cradle": "Fijne was", "hqd_delicate_cradle": "Fijne was",
"hqd_dry": "Katoen drogen", "hqd_dry": "Katoen drogen",
"hqd_dry_synthetics": "Gemengde vezels drogen", "hqd_dry_synthetics": "Gemengde vezels drogen",
"hqd_duvet": "Dekbed", "hqd_duvet": "Dekbed",
"hqd_eco_40_60_degrees": "Eco 40-60", "hqd_eco_40_60_degrees": "Eco 40-60",
"hqd_handwash_wool": "Wol", "hqd_handwash_wool": "Wol 40'",
"hqd_i_refresh": "i-Refresh", "hqd_i_refresh": "i-Refresh",
"hqd_mix": "Gemengde was", "hqd_mix": "Gemengde was",
"hqd_quick_15": "Snel 15'", "hqd_quick_15": "Snel 15'",
@ -495,7 +509,7 @@
"hqd_shirts": "Overhemden", "hqd_shirts": "Overhemden",
"hqd_smart": "Smart A.I.", "hqd_smart": "Smart A.I.",
"hqd_spin": "Centrifugeren", "hqd_spin": "Centrifugeren",
"hqd_sport": "Sport", "hqd_sport": "Sport 25'",
"hqd_super_fast": "Snel 39'", "hqd_super_fast": "Snel 39'",
"hqd_synthetic_and_coloured": "Synthetische stoffen", "hqd_synthetic_and_coloured": "Synthetische stoffen",
"hygiene_59": "Hygiene Plus 59'", "hygiene_59": "Hygiene Plus 59'",
@ -506,10 +520,11 @@
"hygiene_pro_steam": "Hygiene Pro + stoom", "hygiene_pro_steam": "Hygiene Pro + stoom",
"intensive_40": "Intensief 40°C", "intensive_40": "Intensief 40°C",
"intensive_40_steam": "Intensief 40°C + Stoom", "intensive_40_steam": "Intensief 40°C + Stoom",
"iot_active_steam": "Stoom", "iot_active_steam": "Stoom 29'",
"iot_active_wash_steam": "Actieve was", "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",
@ -542,17 +557,19 @@
"iot_dry_technical_fabrics": "Technische stoffen", "iot_dry_technical_fabrics": "Technische stoffen",
"iot_dry_warm_embrace": "Warm drogen", "iot_dry_warm_embrace": "Warm drogen",
"iot_dry_wool_dry": "Wol drogen", "iot_dry_wool_dry": "Wol drogen",
"iot_easy_iron": "Makkelijk Strijkbaar", "iot_easy_iron": "Makkelijk Strijkbaar 39'",
"iot_fresh_care_steam": "Fresh Care + Stoom", "iot_fresh_care_steam": "Fresh Care + Stoom",
"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_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'",
"iot_rapid_a_class_60_steam": "Snel klasse A 60 + Stoom", "iot_rapid_a_class_60_steam": "Snel klasse A 60 + Stoom",
"iot_resistant_cotton_steam": "Katoen + Stoom", "iot_resistant_cotton_steam": "Katoen + Stoom",
"iot_shirts_steam": "Shirts + stoom", "iot_shirts_steam": "Shirts + stoom",
"iot_single_item_steam": "Eén artikel + Stoom", "iot_single_item_steam": "Eén artikel 20' + Stoom",
"iot_smart_wash": "Smart Wash", "iot_smart_wash": "Smart Wash",
"iot_soft_care_steam": "Soft Care + Steam", "iot_soft_care_steam": "Soft Care + Steam",
"iot_special_39_full_load_steam": "Speciaal 39' + Stoom", "iot_special_39_full_load_steam": "Speciaal 39' + Stoom",
@ -586,7 +603,7 @@
"iot_wash_coloured_bed_linen": "Gekleurd beddengoed", "iot_wash_coloured_bed_linen": "Gekleurd beddengoed",
"iot_wash_coloured_bed_linen_steam": "Gekleurd beddengoed + Stoom", "iot_wash_coloured_bed_linen_steam": "Gekleurd beddengoed + Stoom",
"iot_wash_coloured_curtains": "Gekleurde gordijnen", "iot_wash_coloured_curtains": "Gekleurde gordijnen",
"iot_wash_coloured_shirts": "Gekleurde overhemden", "iot_wash_coloured_shirts": "Gekleurde overhemden 59'",
"iot_wash_coloured_shirts_steam": "Gekleurde Shirts + Stoom", "iot_wash_coloured_shirts_steam": "Gekleurde Shirts + Stoom",
"iot_wash_coloured_steam": "Bonte was + Stoom", "iot_wash_coloured_steam": "Bonte was + Stoom",
"iot_wash_coloured_tableclothes": "Gekleurde tafelkleden", "iot_wash_coloured_tableclothes": "Gekleurde tafelkleden",
@ -623,7 +640,7 @@
"iot_wash_down_jackets_zelig": "Donsjassen", "iot_wash_down_jackets_zelig": "Donsjassen",
"iot_wash_duvet": "Dekbed", "iot_wash_duvet": "Dekbed",
"iot_wash_fruit_stains": "Fruitvlekken", "iot_wash_fruit_stains": "Fruitvlekken",
"iot_wash_gym_fit": "Sportkleding", "iot_wash_gym_fit": "Sportkleding 59'",
"iot_wash_handwash": "Handwas", "iot_wash_handwash": "Handwas",
"iot_wash_handwash_colored": "Fijne handwas", "iot_wash_handwash_colored": "Fijne handwas",
"iot_wash_handwash_dark": "Donkere handwas", "iot_wash_handwash_dark": "Donkere handwas",
@ -668,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",
@ -686,6 +704,7 @@
"iot_wash_wool": "Wol", "iot_wash_wool": "Wol",
"jeans": "Jeans", "jeans": "Jeans",
"jeans_60": "Jeans", "jeans_60": "Jeans",
"jeans_60_steam": "Jeans + Steam",
"low_dry": "Gemengde vezels drogen", "low_dry": "Gemengde vezels drogen",
"mixed": "Gemengde vezels", "mixed": "Gemengde vezels",
"mixed_and_colored_59": "Gemengde vezels en bonte was 59'", "mixed_and_colored_59": "Gemengde vezels en bonte was 59'",
@ -709,7 +728,7 @@
"rinse": "Spoelen", "rinse": "Spoelen",
"shirts_steam": "Shirts + stoom", "shirts_steam": "Shirts + stoom",
"silent_night": "Nachtprogramma", "silent_night": "Nachtprogramma",
"single_item": "Eén artikel", "single_item": "Eén artikel 20'",
"single_item_steam": "Eén artikel + Stoom", "single_item_steam": "Eén artikel + Stoom",
"smart_wash": "Smart Wash", "smart_wash": "Smart Wash",
"soft_care": "Zachte verzorging", "soft_care": "Zachte verzorging",
@ -725,8 +744,8 @@
"steam_39": "Stoom 39'", "steam_39": "Stoom 39'",
"steam_care_pro": "Steam Care Pro", "steam_care_pro": "Steam Care Pro",
"steam_care_pro_cotton": "Steam Care Pro - Katoen", "steam_care_pro_cotton": "Steam Care Pro - Katoen",
"steam_care_pro_delicates": "Steam Care Pro - Fijne was", "steam_care_pro_delicates": "Steam Care Pro - Fijne was 16'",
"steam_care_pro_synthetic": "Steam Care Pro - Synthetisch", "steam_care_pro_synthetic": "Steam Care Pro - Synthetisch 20'",
"steam_hygiene_plus": "Hygiëne Plus Stoom", "steam_hygiene_plus": "Hygiëne Plus Stoom",
"synthetics": "Synthetische stoffen", "synthetics": "Synthetische stoffen",
"synthetic_and_coloured": "Synthetische vezels en kleuren", "synthetic_and_coloured": "Synthetische vezels en kleuren",
@ -738,7 +757,7 @@
"wool": "Wol", "wool": "Wol",
"wool_and_delicates_49": "Wol/Fijne was 49'", "wool_and_delicates_49": "Wol/Fijne was 49'",
"wool_dry": "Wol drogen", "wool_dry": "Wol drogen",
"wool_soft_care": "Wol & Soft Care" "wool_soft_care": "Wol & Soft Care 48'"
}, },
"name": "Programma" "name": "Programma"
}, },
@ -748,20 +767,25 @@
"cheese": "Kaas", "cheese": "Kaas",
"chiller": "Quick cool", "chiller": "Quick cool",
"cold_drinks": "Soft chill", "cold_drinks": "Soft chill",
"cool_drink": "Cool Drink",
"eco": "Eco", "eco": "Eco",
"eco_mode": "Eco-modus", "eco_mode": "Eco-modus",
"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",
"no_mode_selected": "Geen modus geselecteerd", "no_mode_selected": "Geen modus geselecteerd",
"quick_cool": "QUICK KOEL", "quick_cool": "QUICK KOEL",
"sea_food": "Ready to cook meal", "sea_food": "Ready to cook meal",
"smart_mode_title": "Smart Mode",
"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",
"zero_fresh": "0° Fresh" "vegetables": "Vegetable",
"zero_fresh": "0°C Fresh"
}, },
"name": "Programma" "name": "Programma"
}, },
@ -887,6 +911,14 @@
}, },
"fan_speed": { "fan_speed": {
"name": "Ventilatorsnelheid" "name": "Ventilatorsnelheid"
},
"humidity_level": {
"state": {
"low": "Laag",
"mid": "Gemiddeld",
"high": "Hoog"
},
"name": "Vochtigheidsniveau"
} }
}, },
"select": { "select": {
@ -956,22 +988,25 @@
"auto_care_soil": "Auto Care", "auto_care_soil": "Auto Care",
"auto_hygiene": "Auto Hygiene", "auto_hygiene": "Auto Hygiene",
"auto_plus": "AutoPlus", "auto_plus": "AutoPlus",
"auto_plus_soil": "Auto Plus bevuiling",
"auto_rapid": "Auto Rapid", "auto_rapid": "Auto Rapid",
"auto_rapid_soil": "Auto Rapid bevuiling",
"auto_sensor": "Auto Sensor", "auto_sensor": "Auto Sensor",
"auto_sensor_soil": "Auto Sensor", "auto_sensor_soil": "Auto Sensor",
"auto_universal": "Auto universeel 50 - 60°C", "auto_universal": "Auto universeel 50-60°C",
"auto_universal_plus": "Auto universeel plus 65 - 75°C", "auto_universal_plus": "Auto universeel plus 65-75°C",
"auto_universal_plus_soil": "Auto universeel plus 65 - 75°C", "auto_universal_plus_soil": "Auto universeel plus 65-75°C",
"auto_universal_soil": "Auto universeel 50 - 60°C", "auto_universal_soil": "Auto universeel 50-60°C",
"auto_wash": "Automatisch wassen", "auto_wash": "Automatisch wassen",
"auto_wash_soil": "Automatisch wassen", "auto_wash_soil": "Automatisch wassen",
"classe_a_59": "A klasse 59' 65°C", "classe_a_59": "A klasse 59' 65°C",
"delicate": "Delicaat 45°C", "delicate": "Delicaat 45°C",
"dishwasher_care": "Ontkalkingsprogramma", "dishwasher_care": "Ontkalkingsprogramma",
"eco": "Eco", "eco": "Eco 45°C",
"eco_asynch": "Eco 45°C", "eco_asynch": "Eco 45°C",
"eco_bldc": "Eco 45°C", "eco_bldc": "Eco 45°C",
"eco_synch": "Eco 45°C", "eco_synch": "Eco 45°C",
"eco_voice": "Eco",
"gentle_wash": "Gentle wash", "gentle_wash": "Gentle wash",
"glass": "Glas", "glass": "Glas",
"glassware": "Glaswerk 45°C", "glassware": "Glaswerk 45°C",
@ -980,8 +1015,9 @@
"hygiene_plus": "Hygiëne+ 75°C", "hygiene_plus": "Hygiëne+ 75°C",
"intensive": "Intensief", "intensive": "Intensief",
"intensive_rapid": "Intensief snel", "intensive_rapid": "Intensief snel",
"intensive_voice": "Intensief",
"iot_auto_sensor": "Auto Sensor", "iot_auto_sensor": "Auto Sensor",
"iot_auto_universal_soil": "Auto universeel 50 - 60°C", "iot_auto_universal_soil": "Auto universeel 50-60°C",
"iot_auto_wash_soil": "Automatisch wassen", "iot_auto_wash_soil": "Automatisch wassen",
"iot_baby_care": "Baby Care", "iot_baby_care": "Baby Care",
"iot_breakfast": "Onbtijt", "iot_breakfast": "Onbtijt",
@ -1021,6 +1057,13 @@
"iot_super_wash": "Super Was", "iot_super_wash": "Super Was",
"iot_turbopower": "TurboPower", "iot_turbopower": "TurboPower",
"iot_universal": "Universeel 60°C", "iot_universal": "Universeel 60°C",
"iot_voice_automatic": "Automatic",
"iot_voice_delicate": "Delicaat 45°C",
"iot_voice_eco": "Eco 45°C",
"iot_voice_intensive": "Intensief 75°C",
"iot_voice_prewash": "Voorwas",
"iot_voice_rapid_59": "Snel 59'",
"iot_voice_universal": "Universeel 60°C",
"iot_wok_grids_maxi_pans": "Speciale Pannen (Wokpannen - Roosters & Maxi Pannen)", "iot_wok_grids_maxi_pans": "Speciale Pannen (Wokpannen - Roosters & Maxi Pannen)",
"iot_wok_grids_maxi_pans_soil": "Speciale Pannen (Wokpannen - Roosters & Maxi Pannen)", "iot_wok_grids_maxi_pans_soil": "Speciale Pannen (Wokpannen - Roosters & Maxi Pannen)",
"iot_yes_quick_cycle": "Yes Quick", "iot_yes_quick_cycle": "Yes Quick",
@ -1052,6 +1095,7 @@
"ultra_silent": "Zeer stil 55°C", "ultra_silent": "Zeer stil 55°C",
"universal": "Universeel 60°C", "universal": "Universeel 60°C",
"universal_plus": "Universeel Plus 70°C", "universal_plus": "Universeel Plus 70°C",
"zone_wash": "Flex Zone Wash",
"zoom_39": "Zoom 39 min" "zoom_39": "Zoom 39 min"
}, },
"name": "Programma" "name": "Programma"
@ -1185,14 +1229,14 @@
"hqd_bulky": "Grote artikelen", "hqd_bulky": "Grote artikelen",
"hqd_casual": "Casual", "hqd_casual": "Casual",
"hqd_cold_wind_30": "30 minuten koel briesje", "hqd_cold_wind_30": "30 minuten koel briesje",
"hqd_cold_wind_timing": "Koel briesje", "hqd_cold_wind_timing": "Koude lucht",
"hqd_cotton": "Katoen", "hqd_cotton": "Katoen",
"hqd_curtain": "Gordijnen", "hqd_curtain": "Gordijnen",
"hqd_delicate": "Fijne was", "hqd_delicate": "Fijne was",
"hqd_diaper": "Luiers", "hqd_diaper": "Luiers",
"hqd_duvet": "Dekbed", "hqd_duvet": "Gewatteerde jas met synthetische vezels",
"hqd_feather": "Donsjassen", "hqd_feather": "Gewatteerde jas met natuurlijke vezels",
"hqd_hot_wind_timing": "Hete lucht", "hqd_hot_wind_timing": "Warme Knuffel",
"hqd_hygienic": "Ontsmetten", "hqd_hygienic": "Ontsmetten",
"hqd_i_refresh": "I-Refresh", "hqd_i_refresh": "I-Refresh",
"hqd_i_refresh_pro": "I-Refresh Pro", "hqd_i_refresh_pro": "I-Refresh Pro",
@ -1202,10 +1246,10 @@
"hqd_mix": "Gemengde vezels", "hqd_mix": "Gemengde vezels",
"hqd_night_dry": "Nachtelijk droogprogramma", "hqd_night_dry": "Nachtelijk droogprogramma",
"hqd_outdoor": "Outdoor", "hqd_outdoor": "Outdoor",
"hqd_precious_cure": "Precious cure", "hqd_precious_cure": "Precious Cure",
"hqd_quick_20": "Quick 20", "hqd_quick_20": "Quick 20",
"hqd_quick_30": "Quick 30", "hqd_quick_30": "Quick 30",
"hqd_quick_dry": "Quick dry 30'", "hqd_quick_dry": "30' automatisch snel drogen",
"hqd_quilt": "Quilts", "hqd_quilt": "Quilts",
"hqd_refresh": "Opfrissen", "hqd_refresh": "Opfrissen",
"hqd_school_uniform": "Schooluniform", "hqd_school_uniform": "Schooluniform",
@ -1242,6 +1286,8 @@
"iot_dry_gym_fit": "Gym fit - Fitness", "iot_dry_gym_fit": "Gym fit - Fitness",
"iot_dry_lingerie": "Lingerie", "iot_dry_lingerie": "Lingerie",
"iot_dry_mixed": "Gemengde vezels", "iot_dry_mixed": "Gemengde vezels",
"iot_dry_pet_accessories": "Accessoires voor dieren",
"iot_dry_pet_hair_removal": "Verwijdering huisdierharen (voorwas)",
"iot_dry_playsuits": "Jumpsuits", "iot_dry_playsuits": "Jumpsuits",
"iot_dry_rapid_30": "Rapid 30", "iot_dry_rapid_30": "Rapid 30",
"iot_dry_rapid_59": "Snel 59'", "iot_dry_rapid_59": "Snel 59'",
@ -1293,9 +1339,9 @@
"state": { "state": {
"20_degrees_coloured_cottons": "20° gekleurd en katoen", "20_degrees_coloured_cottons": "20° gekleurd en katoen",
"20_degrees_new_energy_label": "20 °C", "20_degrees_new_energy_label": "20 °C",
"active_steam": "Stoom", "active_steam": "Stoom 29'",
"active_wash": "Actieve was", "active_wash": "Actieve was 20'",
"active_wash_steam": "Actieve was", "active_wash_steam": "Actieve was 20' + Stoom",
"allergy_care": "Allergiezorg", "allergy_care": "Allergiezorg",
"allergy_care_pro": "Allergy Care Pro", "allergy_care_pro": "Allergy Care Pro",
"all_in_one_49": "Alles-in-één 49'.", "all_in_one_49": "Alles-in-één 49'.",
@ -1315,19 +1361,19 @@
"cottons_steam": "Katoen + Stoom", "cottons_steam": "Katoen + Stoom",
"cotton_care_59": "Cotton Care 59 Min", "cotton_care_59": "Cotton Care 59 Min",
"delicate_59": "Fijne was 59'", "delicate_59": "Fijne was 59'",
"delicate_silk": "Fijne was Zijde", "delicate_silk": "Fijne was Zijde 59'",
"delicate_silk_steam": "Fijne was Zijde + Stoom", "delicate_silk_steam": "Fijne was Zijde + Stoom",
"delicati_59": "Fijne was 59'", "delicati_59": "Fijne was 59'",
"delicati_59_steam": "Fijne was 59'", "delicati_59_steam": "Fijne was 59'",
"drain_spin": "Afpompen en centrifugeren", "drain_spin": "Afpompen en centrifugeren",
"easy_iron": "Makkelijk Strijkbaar", "easy_iron": "Makkelijk Strijkbaar 39'",
"eco_40_60_new_energy_label": "Eco 40-60", "eco_40_60_new_energy_label": "Eco 40-60",
"extra_care": "Extra Care", "extra_care": "Extra Care",
"fitness": "Fitness care", "fitness": "Fitness care",
"fitness_care": "Fitness care", "fitness_care": "Fitness care",
"fresh_care": "Opfrisverzorging", "fresh_care": "Opfrisverzorging 59'",
"fresh_care_steam": "Fresh Care + Stoom", "fresh_care_steam": "Fresh Care + Stoom",
"handwash_wool": "Handwas en wol", "handwash_wool": "Handwas en wol 48'",
"high_dry": "Katoen drogen", "high_dry": "Katoen drogen",
"hqd_20_degrees": "Katoen 20℃", "hqd_20_degrees": "Katoen 20℃",
"hqd_allergy": "Allergiezorg", "hqd_allergy": "Allergiezorg",
@ -1335,13 +1381,13 @@
"hqd_babycare": "Baby Care", "hqd_babycare": "Baby Care",
"hqd_checkup": "Controle", "hqd_checkup": "Controle",
"hqd_cottons": "Katoen", "hqd_cottons": "Katoen",
"hqd_delicate": "Fijne was", "hqd_delicate": "Fijne was 50'",
"hqd_delicate_cradle": "Fijne was", "hqd_delicate_cradle": "Fijne was",
"hqd_dry": "Katoen drogen", "hqd_dry": "Katoen drogen",
"hqd_dry_synthetics": "Gemengde vezels drogen", "hqd_dry_synthetics": "Gemengde vezels drogen",
"hqd_duvet": "Dekbed", "hqd_duvet": "Dekbed",
"hqd_eco_40_60_degrees": "Eco 40-60", "hqd_eco_40_60_degrees": "Eco 40-60",
"hqd_handwash_wool": "Wol", "hqd_handwash_wool": "Wol 40'",
"hqd_i_refresh": "i-Refresh", "hqd_i_refresh": "i-Refresh",
"hqd_mix": "Gemengde was", "hqd_mix": "Gemengde was",
"hqd_quick_15": "Snel 15'", "hqd_quick_15": "Snel 15'",
@ -1352,7 +1398,7 @@
"hqd_shirts": "Overhemden", "hqd_shirts": "Overhemden",
"hqd_smart": "Smart A.I.", "hqd_smart": "Smart A.I.",
"hqd_spin": "Centrifugeren", "hqd_spin": "Centrifugeren",
"hqd_sport": "Sport", "hqd_sport": "Sport 25'",
"hqd_super_fast": "Snel 39'", "hqd_super_fast": "Snel 39'",
"hqd_synthetic_and_coloured": "Synthetische stoffen", "hqd_synthetic_and_coloured": "Synthetische stoffen",
"hygiene_59": "Hygiene Plus 59'", "hygiene_59": "Hygiene Plus 59'",
@ -1363,10 +1409,11 @@
"hygiene_pro_steam": "Hygiene Pro + stoom", "hygiene_pro_steam": "Hygiene Pro + stoom",
"intensive_40": "Intensief 40°C", "intensive_40": "Intensief 40°C",
"intensive_40_steam": "Intensief 40°C + Stoom", "intensive_40_steam": "Intensief 40°C + Stoom",
"iot_active_steam": "Stoom", "iot_active_steam": "Stoom 29'",
"iot_active_wash_steam": "Actieve was", "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",
@ -1399,17 +1446,19 @@
"iot_dry_technical_fabrics": "Technische stoffen", "iot_dry_technical_fabrics": "Technische stoffen",
"iot_dry_warm_embrace": "Warm drogen", "iot_dry_warm_embrace": "Warm drogen",
"iot_dry_wool_dry": "Wol drogen", "iot_dry_wool_dry": "Wol drogen",
"iot_easy_iron": "Makkelijk Strijkbaar", "iot_easy_iron": "Makkelijk Strijkbaar 39'",
"iot_fresh_care_steam": "Fresh Care + Stoom", "iot_fresh_care_steam": "Fresh Care + Stoom",
"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_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'",
"iot_rapid_a_class_60_steam": "Snel klasse A 60 + Stoom", "iot_rapid_a_class_60_steam": "Snel klasse A 60 + Stoom",
"iot_resistant_cotton_steam": "Katoen + Stoom", "iot_resistant_cotton_steam": "Katoen + Stoom",
"iot_shirts_steam": "Shirts + stoom", "iot_shirts_steam": "Shirts + stoom",
"iot_single_item_steam": "Eén artikel + Stoom", "iot_single_item_steam": "Eén artikel 20' + Stoom",
"iot_smart_wash": "Smart Wash", "iot_smart_wash": "Smart Wash",
"iot_soft_care_steam": "Soft Care + Steam", "iot_soft_care_steam": "Soft Care + Steam",
"iot_special_39_full_load_steam": "Speciaal 39' + Stoom", "iot_special_39_full_load_steam": "Speciaal 39' + Stoom",
@ -1443,7 +1492,7 @@
"iot_wash_coloured_bed_linen": "Gekleurd beddengoed", "iot_wash_coloured_bed_linen": "Gekleurd beddengoed",
"iot_wash_coloured_bed_linen_steam": "Gekleurd beddengoed + Stoom", "iot_wash_coloured_bed_linen_steam": "Gekleurd beddengoed + Stoom",
"iot_wash_coloured_curtains": "Gekleurde gordijnen", "iot_wash_coloured_curtains": "Gekleurde gordijnen",
"iot_wash_coloured_shirts": "Gekleurde overhemden", "iot_wash_coloured_shirts": "Gekleurde overhemden 59'",
"iot_wash_coloured_shirts_steam": "Gekleurde Shirts + Stoom", "iot_wash_coloured_shirts_steam": "Gekleurde Shirts + Stoom",
"iot_wash_coloured_steam": "Bonte was + Stoom", "iot_wash_coloured_steam": "Bonte was + Stoom",
"iot_wash_coloured_tableclothes": "Gekleurde tafelkleden", "iot_wash_coloured_tableclothes": "Gekleurde tafelkleden",
@ -1480,7 +1529,7 @@
"iot_wash_down_jackets_zelig": "Donsjassen", "iot_wash_down_jackets_zelig": "Donsjassen",
"iot_wash_duvet": "Dekbed", "iot_wash_duvet": "Dekbed",
"iot_wash_fruit_stains": "Fruitvlekken", "iot_wash_fruit_stains": "Fruitvlekken",
"iot_wash_gym_fit": "Sportkleding", "iot_wash_gym_fit": "Sportkleding 59'",
"iot_wash_handwash": "Handwas", "iot_wash_handwash": "Handwas",
"iot_wash_handwash_colored": "Fijne handwas", "iot_wash_handwash_colored": "Fijne handwas",
"iot_wash_handwash_dark": "Donkere handwas", "iot_wash_handwash_dark": "Donkere handwas",
@ -1525,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",
@ -1543,6 +1593,7 @@
"iot_wash_wool": "Wol", "iot_wash_wool": "Wol",
"jeans": "Jeans", "jeans": "Jeans",
"jeans_60": "Jeans", "jeans_60": "Jeans",
"jeans_60_steam": "Jeans + Steam",
"low_dry": "Gemengde vezels drogen", "low_dry": "Gemengde vezels drogen",
"mixed": "Gemengde vezels", "mixed": "Gemengde vezels",
"mixed_and_colored_59": "Gemengde vezels en bonte was 59'", "mixed_and_colored_59": "Gemengde vezels en bonte was 59'",
@ -1566,7 +1617,7 @@
"rinse": "Spoelen", "rinse": "Spoelen",
"shirts_steam": "Shirts + stoom", "shirts_steam": "Shirts + stoom",
"silent_night": "Nachtprogramma", "silent_night": "Nachtprogramma",
"single_item": "Eén artikel", "single_item": "Eén artikel 20'",
"single_item_steam": "Eén artikel + Stoom", "single_item_steam": "Eén artikel + Stoom",
"smart_wash": "Smart Wash", "smart_wash": "Smart Wash",
"soft_care": "Zachte verzorging", "soft_care": "Zachte verzorging",
@ -1582,8 +1633,8 @@
"steam_39": "Stoom 39'", "steam_39": "Stoom 39'",
"steam_care_pro": "Steam Care Pro", "steam_care_pro": "Steam Care Pro",
"steam_care_pro_cotton": "Steam Care Pro - Katoen", "steam_care_pro_cotton": "Steam Care Pro - Katoen",
"steam_care_pro_delicates": "Steam Care Pro - Fijne was", "steam_care_pro_delicates": "Steam Care Pro - Fijne was 16'",
"steam_care_pro_synthetic": "Steam Care Pro - Synthetisch", "steam_care_pro_synthetic": "Steam Care Pro - Synthetisch 20'",
"steam_hygiene_plus": "Hygiëne Plus Stoom", "steam_hygiene_plus": "Hygiëne Plus Stoom",
"synthetics": "Synthetische stoffen", "synthetics": "Synthetische stoffen",
"synthetic_and_coloured": "Synthetische vezels en kleuren", "synthetic_and_coloured": "Synthetische vezels en kleuren",
@ -1595,7 +1646,7 @@
"wool": "Wol", "wool": "Wol",
"wool_and_delicates_49": "Wol/Fijne was 49'", "wool_and_delicates_49": "Wol/Fijne was 49'",
"wool_dry": "Wol drogen", "wool_dry": "Wol drogen",
"wool_soft_care": "Wol & Soft Care" "wool_soft_care": "Wol & Soft Care 48'"
}, },
"name": "Programma" "name": "Programma"
}, },
@ -1605,20 +1656,25 @@
"cheese": "Kaas", "cheese": "Kaas",
"chiller": "Quick cool", "chiller": "Quick cool",
"cold_drinks": "Soft chill", "cold_drinks": "Soft chill",
"cool_drink": "Cool Drink",
"eco": "Eco", "eco": "Eco",
"eco_mode": "Eco-modus", "eco_mode": "Eco-modus",
"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",
"no_mode_selected": "Geen modus geselecteerd", "no_mode_selected": "Geen modus geselecteerd",
"quick_cool": "QUICK KOEL", "quick_cool": "QUICK KOEL",
"sea_food": "Ready to cook meal", "sea_food": "Ready to cook meal",
"smart_mode_title": "Smart Mode",
"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",
"zero_fresh": "0° Fresh" "vegetables": "Vegetable",
"zero_fresh": "0°C Fresh"
}, },
"name": "Programma" "name": "Programma"
}, },
@ -1671,6 +1727,71 @@
"unknown": "unknown" "unknown": "unknown"
}, },
"name": "Vuilheid" "name": "Vuilheid"
},
"stain_type": {
"state": {
"baby_food": "Babyvoeding",
"bean_paste": "Bonensoep",
"blood": "Bloed",
"blueberry": "Blauwe bessen",
"blue_ink": "Blauwe inkt",
"butter": "Boter",
"chili_oil": "Chili-olie",
"chili_sauce": "Chilisaus",
"chocolate": "Chocolade",
"coffe": "Koffie",
"coffee": "Koffie",
"color_pencil": "Potlood",
"cooking_oil": "Bakolie",
"curry": "Curry",
"deodorant": "Deodorant",
"egg": "Ei",
"fruit": "Fruit",
"glue": "Lijm",
"grass": "Gras",
"ice_cream": "IJs",
"ketchup": "Ketchup",
"lip_gloss": "Lipgloss",
"mayonnaise": "Mayonaise",
"mech_grease": "Smeervet",
"milk": "Melk",
"milk_tea": "Thee met melk",
"oil": "Olie",
"oil_pastel": "Oliepastel",
"perfume": "Parfum",
"rust": "Roest",
"shoe_cream": "Schoensmeer",
"soil": "Aarde",
"soy_sauce": "Sojasaus",
"stain_level": "Vlekniveau",
"sweat": "Zweet",
"tea": "Thee",
"wine": "Wijn",
"unknown": "unknown"
},
"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": {
@ -1928,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": {
@ -2062,6 +2186,9 @@
} }
} }
} }
},
"my_zone": {
"name": "My Zone"
} }
}, },
"fan": { "fan": {

View File

@ -99,22 +99,25 @@
"auto_care_soil": "Auto Care", "auto_care_soil": "Auto Care",
"auto_hygiene": "Auto Hygiene", "auto_hygiene": "Auto Hygiene",
"auto_plus": "AutoPlus", "auto_plus": "AutoPlus",
"auto_plus_soil": "Zabrudzenie Auto Plus",
"auto_rapid": "Auto Rapid", "auto_rapid": "Auto Rapid",
"auto_rapid_soil": "Zabrudzenie Auto Rapid",
"auto_sensor": "Auto Sensor", "auto_sensor": "Auto Sensor",
"auto_sensor_soil": "Auto Sensor", "auto_sensor_soil": "Auto Sensor",
"auto_universal": "Auto Universalny 50 - 60°C", "auto_universal": "Auto Universalny 50-60°C",
"auto_universal_plus": "Auto Universalny Plus 65 - 75°C", "auto_universal_plus": "Auto Universalny Plus 65-75°C",
"auto_universal_plus_soil": "Auto Universalny Plus 65 - 75°C", "auto_universal_plus_soil": "Auto Universalny Plus 65-75°C",
"auto_universal_soil": "Auto Universalny 50 - 60°C", "auto_universal_soil": "Auto Universalny 50-60°C",
"auto_wash": "Auto Wash", "auto_wash": "Auto Wash",
"auto_wash_soil": "Auto Wash", "auto_wash_soil": "Auto Wash",
"classe_a_59": "Zmywanie w klasie A 1 godz. 65°C", "classe_a_59": "Zmywanie w klasie A 1 godz. 65°C",
"delicate": "Delikatny 45°C", "delicate": "Delikatny 45°C",
"dishwasher_care": "Cykl usuwania kamienia", "dishwasher_care": "Cykl usuwania kamienia",
"eco": "Eco", "eco": "Eco 45°C",
"eco_asynch": "Eco 45°C", "eco_asynch": "Eco 45°C",
"eco_bldc": "Eco 45°C", "eco_bldc": "Eco 45°C",
"eco_synch": "Eco 45°C", "eco_synch": "Eco 45°C",
"eco_voice": "Eco",
"gentle_wash": "Gentle wash", "gentle_wash": "Gentle wash",
"glass": "Szkło", "glass": "Szkło",
"glassware": "Szklane 45°C", "glassware": "Szklane 45°C",
@ -123,8 +126,9 @@
"hygiene_plus": "Higiena+ 75°C", "hygiene_plus": "Higiena+ 75°C",
"intensive": "Intensywne", "intensive": "Intensywne",
"intensive_rapid": "intensywny szybki", "intensive_rapid": "intensywny szybki",
"intensive_voice": "Intensywne",
"iot_auto_sensor": "Auto Sensor", "iot_auto_sensor": "Auto Sensor",
"iot_auto_universal_soil": "Auto Universalny 50 - 60°C", "iot_auto_universal_soil": "Auto Universalny 50-60°C",
"iot_auto_wash_soil": "Auto Wash", "iot_auto_wash_soil": "Auto Wash",
"iot_baby_care": "Baby Care", "iot_baby_care": "Baby Care",
"iot_breakfast": "Śniadanie", "iot_breakfast": "Śniadanie",
@ -164,6 +168,13 @@
"iot_super_wash": "Super Mycie", "iot_super_wash": "Super Mycie",
"iot_turbopower": "TurboPower", "iot_turbopower": "TurboPower",
"iot_universal": "Uniwersalne 60°C", "iot_universal": "Uniwersalne 60°C",
"iot_voice_automatic": "Automatic",
"iot_voice_delicate": "Delikatny 45°C",
"iot_voice_eco": "Eco 45°C",
"iot_voice_intensive": "Intensywne 75°C",
"iot_voice_prewash": "Mycie wstępne",
"iot_voice_rapid_59": "Szybki 59'",
"iot_voice_universal": "Uniwersalne 60°C",
"iot_wok_grids_maxi_pans": "Specjalny do patelni (Woki, Patelnie karbowane, Patelnie maxi)", "iot_wok_grids_maxi_pans": "Specjalny do patelni (Woki, Patelnie karbowane, Patelnie maxi)",
"iot_wok_grids_maxi_pans_soil": "Specjalny do patelni (Woki, Patelnie karbowane, Patelnie maxi)", "iot_wok_grids_maxi_pans_soil": "Specjalny do patelni (Woki, Patelnie karbowane, Patelnie maxi)",
"iot_yes_quick_cycle": "Yes Quick", "iot_yes_quick_cycle": "Yes Quick",
@ -195,6 +206,7 @@
"ultra_silent": "Ultra Ciche 55°C", "ultra_silent": "Ultra Ciche 55°C",
"universal": "Uniwersalne 60°C", "universal": "Uniwersalne 60°C",
"universal_plus": "Uniwersalne Plus 70°C", "universal_plus": "Uniwersalne Plus 70°C",
"zone_wash": "Flex Zone Wash",
"zoom_39": "Zoom 39 min" "zoom_39": "Zoom 39 min"
}, },
"name": "Program" "name": "Program"
@ -328,14 +340,14 @@
"hqd_bulky": "Elementy wielkogabarytowe", "hqd_bulky": "Elementy wielkogabarytowe",
"hqd_casual": "Nieformalny", "hqd_casual": "Nieformalny",
"hqd_cold_wind_30": "Chłodna bryza 30 minut", "hqd_cold_wind_30": "Chłodna bryza 30 minut",
"hqd_cold_wind_timing": "Chłodny wietrzyk", "hqd_cold_wind_timing": "Zimne powietrze",
"hqd_cotton": "Bawełna", "hqd_cotton": "Bawełna",
"hqd_curtain": "Zasłony", "hqd_curtain": "Zasłony",
"hqd_delicate": "Delikatne", "hqd_delicate": "Delikatne",
"hqd_diaper": "Pieluchy", "hqd_diaper": "Pieluchy",
"hqd_duvet": "Kołdry", "hqd_duvet": "Pikowana kurtka z włókna syntetycznego",
"hqd_feather": "Kurtki puchowe", "hqd_feather": "Pikowana kurtka z naturalnego włókna",
"hqd_hot_wind_timing": "Gorące powietrze", "hqd_hot_wind_timing": "Ciepłe objęcie",
"hqd_hygienic": "Higienizacja", "hqd_hygienic": "Higienizacja",
"hqd_i_refresh": "I-Refresh", "hqd_i_refresh": "I-Refresh",
"hqd_i_refresh_pro": "I-Refresh Pro", "hqd_i_refresh_pro": "I-Refresh Pro",
@ -345,10 +357,10 @@
"hqd_mix": "Mieszane", "hqd_mix": "Mieszane",
"hqd_night_dry": "Suszenie nocne", "hqd_night_dry": "Suszenie nocne",
"hqd_outdoor": "Outdoor", "hqd_outdoor": "Outdoor",
"hqd_precious_cure": "Precious cure", "hqd_precious_cure": "Precious Cure",
"hqd_quick_20": "Szybkie 20", "hqd_quick_20": "Szybkie 20",
"hqd_quick_30": "Szybkie 30", "hqd_quick_30": "Szybkie 30",
"hqd_quick_dry": "Szybkoschnące 30'", "hqd_quick_dry": "Automatyczne szybkie suszenie 30'",
"hqd_quilt": "Kołdry", "hqd_quilt": "Kołdry",
"hqd_refresh": "Odświeżanie", "hqd_refresh": "Odświeżanie",
"hqd_school_uniform": "Mundurek szkolny", "hqd_school_uniform": "Mundurek szkolny",
@ -385,6 +397,8 @@
"iot_dry_gym_fit": "Gimnastyczne - Fitness", "iot_dry_gym_fit": "Gimnastyczne - Fitness",
"iot_dry_lingerie": "Bielizna", "iot_dry_lingerie": "Bielizna",
"iot_dry_mixed": "Mieszane", "iot_dry_mixed": "Mieszane",
"iot_dry_pet_accessories": "Akcesoria dla zwierząt",
"iot_dry_pet_hair_removal": "Usuwanie sierści zwierząt domowych (pranie wstępne)",
"iot_dry_playsuits": "Pajacyki", "iot_dry_playsuits": "Pajacyki",
"iot_dry_rapid_30": "Rapid 30", "iot_dry_rapid_30": "Rapid 30",
"iot_dry_rapid_59": "Szybki 59.", "iot_dry_rapid_59": "Szybki 59.",
@ -436,9 +450,9 @@
"state": { "state": {
"20_degrees_coloured_cottons": "20° Kolorowe i Bawełna", "20_degrees_coloured_cottons": "20° Kolorowe i Bawełna",
"20_degrees_new_energy_label": "20°C", "20_degrees_new_energy_label": "20°C",
"active_steam": "Para", "active_steam": "Para 29'",
"active_wash": "Aktywne pranie", "active_wash": "Aktywne pranie 20'",
"active_wash_steam": "Aktywne pranie", "active_wash_steam": "Aktywne pranie 20' + Para",
"allergy_care": "Pielęgnacja antyalergiczna", "allergy_care": "Pielęgnacja antyalergiczna",
"allergy_care_pro": "Allergy Care Pro", "allergy_care_pro": "Allergy Care Pro",
"all_in_one_49": "Wszystko w jednym cyklu 49", "all_in_one_49": "Wszystko w jednym cyklu 49",
@ -458,19 +472,19 @@
"cottons_steam": "Bawełna + Para", "cottons_steam": "Bawełna + Para",
"cotton_care_59": "Cotton Care 59 Min", "cotton_care_59": "Cotton Care 59 Min",
"delicate_59": "Delikatne 59", "delicate_59": "Delikatne 59",
"delicate_silk": "Delikatny jedwab", "delicate_silk": "Delikatny jedwab 59'",
"delicate_silk_steam": "Delikatny jedwab + Para", "delicate_silk_steam": "Delikatny jedwab + Para",
"delicati_59": "Delikatne 59", "delicati_59": "Delikatne 59",
"delicati_59_steam": "Delikatne 59", "delicati_59_steam": "Delikatne 59",
"drain_spin": "Spuść wodę +i odwiruj", "drain_spin": "Spuść wodę +i odwiruj",
"easy_iron": "Łatwe prasowanie", "easy_iron": "Łatwe prasowanie 39'",
"eco_40_60_new_energy_label": "Eco 40-60", "eco_40_60_new_energy_label": "Eco 40-60",
"extra_care": "Extra Care", "extra_care": "Extra Care",
"fitness": "Fitness Care", "fitness": "Fitness Care",
"fitness_care": "Fitness Care", "fitness_care": "Fitness Care",
"fresh_care": "Fresh Care", "fresh_care": "Fresh Care 59'",
"fresh_care_steam": "Fresh Care + Para", "fresh_care_steam": "Fresh Care + Para",
"handwash_wool": "Pranie ręczne i wełna", "handwash_wool": "Pranie ręczne i wełna 48'",
"high_dry": "Suszenie bawełny", "high_dry": "Suszenie bawełny",
"hqd_20_degrees": "Bawełna 20℃", "hqd_20_degrees": "Bawełna 20℃",
"hqd_allergy": "Pielęgnacja antyalergiczna", "hqd_allergy": "Pielęgnacja antyalergiczna",
@ -478,13 +492,13 @@
"hqd_babycare": "Baby Care", "hqd_babycare": "Baby Care",
"hqd_checkup": "Kontrola", "hqd_checkup": "Kontrola",
"hqd_cottons": "Bawełna", "hqd_cottons": "Bawełna",
"hqd_delicate": "Delikatne", "hqd_delicate": "Delikatne 50'",
"hqd_delicate_cradle": "Delikatne", "hqd_delicate_cradle": "Delikatne",
"hqd_dry": "Suszenie bawełny", "hqd_dry": "Suszenie bawełny",
"hqd_dry_synthetics": "Suszenie materiałów mieszanych", "hqd_dry_synthetics": "Suszenie materiałów mieszanych",
"hqd_duvet": "Kołdry", "hqd_duvet": "Kołdry",
"hqd_eco_40_60_degrees": "Eco 40-60", "hqd_eco_40_60_degrees": "Eco 40-60",
"hqd_handwash_wool": "Wełna", "hqd_handwash_wool": "Wełna 40'",
"hqd_i_refresh": "i-Refresh", "hqd_i_refresh": "i-Refresh",
"hqd_mix": "Mieszane", "hqd_mix": "Mieszane",
"hqd_quick_15": "Szybki 15'", "hqd_quick_15": "Szybki 15'",
@ -495,7 +509,7 @@
"hqd_shirts": "Koszule", "hqd_shirts": "Koszule",
"hqd_smart": "Smart A.I.", "hqd_smart": "Smart A.I.",
"hqd_spin": "Wirowanie", "hqd_spin": "Wirowanie",
"hqd_sport": "Odzież sportowa", "hqd_sport": "Odzież sportowa 25'",
"hqd_super_fast": "Szybki 39", "hqd_super_fast": "Szybki 39",
"hqd_synthetic_and_coloured": "Syntetyki", "hqd_synthetic_and_coloured": "Syntetyki",
"hygiene_59": "Higiena Plus 59'", "hygiene_59": "Higiena Plus 59'",
@ -506,10 +520,11 @@
"hygiene_pro_steam": "Hygiene Pro + Para", "hygiene_pro_steam": "Hygiene Pro + Para",
"intensive_40": "Intensywne 40°C", "intensive_40": "Intensywne 40°C",
"intensive_40_steam": "Intensywny 40°C + Para", "intensive_40_steam": "Intensywny 40°C + Para",
"iot_active_steam": "Para", "iot_active_steam": "Para 29'",
"iot_active_wash_steam": "Aktywne pranie", "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",
@ -542,17 +557,19 @@
"iot_dry_technical_fabrics": "Tkaniny techniczne", "iot_dry_technical_fabrics": "Tkaniny techniczne",
"iot_dry_warm_embrace": "Delikatne suszenie", "iot_dry_warm_embrace": "Delikatne suszenie",
"iot_dry_wool_dry": "Suszenie wełny", "iot_dry_wool_dry": "Suszenie wełny",
"iot_easy_iron": "Łatwe prasowanie", "iot_easy_iron": "Łatwe prasowanie 39'",
"iot_fresh_care_steam": "Fresh Care + Para", "iot_fresh_care_steam": "Fresh Care + Para",
"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_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'",
"iot_rapid_a_class_60_steam": "Szybki Klasa A 60 + Para", "iot_rapid_a_class_60_steam": "Szybki Klasa A 60 + Para",
"iot_resistant_cotton_steam": "Bawełna + Para", "iot_resistant_cotton_steam": "Bawełna + Para",
"iot_shirts_steam": "Koszule + Para", "iot_shirts_steam": "Koszule + Para",
"iot_single_item_steam": "Pojedynczy przedmiot + Para", "iot_single_item_steam": "Pojedynczy przedmiot 20' + Para",
"iot_smart_wash": "Inteligentne pranie", "iot_smart_wash": "Inteligentne pranie",
"iot_soft_care_steam": "Soft Care + Steam", "iot_soft_care_steam": "Soft Care + Steam",
"iot_special_39_full_load_steam": "Specjalny 39' + Para", "iot_special_39_full_load_steam": "Specjalny 39' + Para",
@ -586,7 +603,7 @@
"iot_wash_coloured_bed_linen": "Kolorowa pościel", "iot_wash_coloured_bed_linen": "Kolorowa pościel",
"iot_wash_coloured_bed_linen_steam": "Kolorowa pościel + Para", "iot_wash_coloured_bed_linen_steam": "Kolorowa pościel + Para",
"iot_wash_coloured_curtains": "Kolorowe zasłony", "iot_wash_coloured_curtains": "Kolorowe zasłony",
"iot_wash_coloured_shirts": "Kolorowe koszule", "iot_wash_coloured_shirts": "Kolorowe koszule 59'",
"iot_wash_coloured_shirts_steam": "Kolorowe koszule + Para", "iot_wash_coloured_shirts_steam": "Kolorowe koszule + Para",
"iot_wash_coloured_steam": "Tkaniny kolorowe + Para", "iot_wash_coloured_steam": "Tkaniny kolorowe + Para",
"iot_wash_coloured_tableclothes": "Kolorowe obrusy", "iot_wash_coloured_tableclothes": "Kolorowe obrusy",
@ -623,7 +640,7 @@
"iot_wash_down_jackets_zelig": "Kurtki puchowe", "iot_wash_down_jackets_zelig": "Kurtki puchowe",
"iot_wash_duvet": "Kołdry", "iot_wash_duvet": "Kołdry",
"iot_wash_fruit_stains": "Plamy z owoców", "iot_wash_fruit_stains": "Plamy z owoców",
"iot_wash_gym_fit": "Ubrania na siłownię", "iot_wash_gym_fit": "Ubrania na siłownię 59'",
"iot_wash_handwash": "Pranie ręczne", "iot_wash_handwash": "Pranie ręczne",
"iot_wash_handwash_colored": "Pranie ręczne, kolorowe", "iot_wash_handwash_colored": "Pranie ręczne, kolorowe",
"iot_wash_handwash_dark": "Pranie ręczne, ciemne", "iot_wash_handwash_dark": "Pranie ręczne, ciemne",
@ -668,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",
@ -686,6 +704,7 @@
"iot_wash_wool": "Wełna", "iot_wash_wool": "Wełna",
"jeans": "Dżins", "jeans": "Dżins",
"jeans_60": "Dżinsy", "jeans_60": "Dżinsy",
"jeans_60_steam": "Dżinsy + Para",
"low_dry": "Suszenie materiałów mieszanych", "low_dry": "Suszenie materiałów mieszanych",
"mixed": "Mieszane", "mixed": "Mieszane",
"mixed_and_colored_59": "Mieszane i kolorowe 59 '", "mixed_and_colored_59": "Mieszane i kolorowe 59 '",
@ -709,7 +728,7 @@
"rinse": "Płukanie", "rinse": "Płukanie",
"shirts_steam": "Koszule + Para", "shirts_steam": "Koszule + Para",
"silent_night": "Cykl nocny", "silent_night": "Cykl nocny",
"single_item": "Pojedynczy przedmiot", "single_item": "Pojedynczy przedmiot 20'",
"single_item_steam": "Pojedynczy przedmiot + Para", "single_item_steam": "Pojedynczy przedmiot + Para",
"smart_wash": "Inteligentne pranie", "smart_wash": "Inteligentne pranie",
"soft_care": "Soft Care", "soft_care": "Soft Care",
@ -725,8 +744,8 @@
"steam_39": "Para 39", "steam_39": "Para 39",
"steam_care_pro": "Steam Care Pro", "steam_care_pro": "Steam Care Pro",
"steam_care_pro_cotton": "Steam Care Pro - Bawełna", "steam_care_pro_cotton": "Steam Care Pro - Bawełna",
"steam_care_pro_delicates": "Steam Care Pro - Delikatne", "steam_care_pro_delicates": "Steam Care Pro - Delikatne 16'",
"steam_care_pro_synthetic": "Steam Care Pro - Syntetyki", "steam_care_pro_synthetic": "Steam Care Pro - Syntetyki 20'",
"steam_hygiene_plus": "Higiena Plus Para", "steam_hygiene_plus": "Higiena Plus Para",
"synthetics": "Syntetyki", "synthetics": "Syntetyki",
"synthetic_and_coloured": "Syntetyki i Kolorowe", "synthetic_and_coloured": "Syntetyki i Kolorowe",
@ -738,7 +757,7 @@
"wool": "Wełna", "wool": "Wełna",
"wool_and_delicates_49": "Wełna/Delikatne 49'", "wool_and_delicates_49": "Wełna/Delikatne 49'",
"wool_dry": "Suszenie wełny", "wool_dry": "Suszenie wełny",
"wool_soft_care": "Wełna & Soft Care" "wool_soft_care": "Wełna & Soft Care 48'"
}, },
"name": "Program" "name": "Program"
}, },
@ -748,20 +767,25 @@
"cheese": "Ser", "cheese": "Ser",
"chiller": "Quick cool", "chiller": "Quick cool",
"cold_drinks": "Soft chill", "cold_drinks": "Soft chill",
"cool_drink": "Cool Drink",
"eco": "Eco", "eco": "Eco",
"eco_mode": "Tryb Eco", "eco_mode": "Tryb Eco",
"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",
"no_mode_selected": "Nie wybrano żadnego trybu", "no_mode_selected": "Nie wybrano żadnego trybu",
"quick_cool": "QUICK COOL", "quick_cool": "QUICK COOL",
"sea_food": "Ready to cook meal", "sea_food": "Ready to cook meal",
"smart_mode_title": "Smart Mode",
"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",
"zero_fresh": "0° Fresh" "vegetables": "Vegetable",
"zero_fresh": "0°C Fresh"
}, },
"name": "Program" "name": "Program"
}, },
@ -887,6 +911,14 @@
}, },
"fan_speed": { "fan_speed": {
"name": "Prędkość wentylatora" "name": "Prędkość wentylatora"
},
"humidity_level": {
"state": {
"low": "Niskie",
"mid": "Średnie",
"high": "Wysokie"
},
"name": "Poziom wilgotności"
} }
}, },
"select": { "select": {
@ -956,22 +988,25 @@
"auto_care_soil": "Auto Care", "auto_care_soil": "Auto Care",
"auto_hygiene": "Auto Hygiene", "auto_hygiene": "Auto Hygiene",
"auto_plus": "AutoPlus", "auto_plus": "AutoPlus",
"auto_plus_soil": "Zabrudzenie Auto Plus",
"auto_rapid": "Auto Rapid", "auto_rapid": "Auto Rapid",
"auto_rapid_soil": "Zabrudzenie Auto Rapid",
"auto_sensor": "Auto Sensor", "auto_sensor": "Auto Sensor",
"auto_sensor_soil": "Auto Sensor", "auto_sensor_soil": "Auto Sensor",
"auto_universal": "Auto Universalny 50 - 60°C", "auto_universal": "Auto Universalny 50-60°C",
"auto_universal_plus": "Auto Universalny Plus 65 - 75°C", "auto_universal_plus": "Auto Universalny Plus 65-75°C",
"auto_universal_plus_soil": "Auto Universalny Plus 65 - 75°C", "auto_universal_plus_soil": "Auto Universalny Plus 65-75°C",
"auto_universal_soil": "Auto Universalny 50 - 60°C", "auto_universal_soil": "Auto Universalny 50-60°C",
"auto_wash": "Auto Wash", "auto_wash": "Auto Wash",
"auto_wash_soil": "Auto Wash", "auto_wash_soil": "Auto Wash",
"classe_a_59": "Zmywanie w klasie A 1 godz. 65°C", "classe_a_59": "Zmywanie w klasie A 1 godz. 65°C",
"delicate": "Delikatny 45°C", "delicate": "Delikatny 45°C",
"dishwasher_care": "Cykl usuwania kamienia", "dishwasher_care": "Cykl usuwania kamienia",
"eco": "Eco", "eco": "Eco 45°C",
"eco_asynch": "Eco 45°C", "eco_asynch": "Eco 45°C",
"eco_bldc": "Eco 45°C", "eco_bldc": "Eco 45°C",
"eco_synch": "Eco 45°C", "eco_synch": "Eco 45°C",
"eco_voice": "Eco",
"gentle_wash": "Gentle wash", "gentle_wash": "Gentle wash",
"glass": "Szkło", "glass": "Szkło",
"glassware": "Szklane 45°C", "glassware": "Szklane 45°C",
@ -980,8 +1015,9 @@
"hygiene_plus": "Higiena+ 75°C", "hygiene_plus": "Higiena+ 75°C",
"intensive": "Intensywne", "intensive": "Intensywne",
"intensive_rapid": "intensywny szybki", "intensive_rapid": "intensywny szybki",
"intensive_voice": "Intensywne",
"iot_auto_sensor": "Auto Sensor", "iot_auto_sensor": "Auto Sensor",
"iot_auto_universal_soil": "Auto Universalny 50 - 60°C", "iot_auto_universal_soil": "Auto Universalny 50-60°C",
"iot_auto_wash_soil": "Auto Wash", "iot_auto_wash_soil": "Auto Wash",
"iot_baby_care": "Baby Care", "iot_baby_care": "Baby Care",
"iot_breakfast": "Śniadanie", "iot_breakfast": "Śniadanie",
@ -1021,6 +1057,13 @@
"iot_super_wash": "Super Mycie", "iot_super_wash": "Super Mycie",
"iot_turbopower": "TurboPower", "iot_turbopower": "TurboPower",
"iot_universal": "Uniwersalne 60°C", "iot_universal": "Uniwersalne 60°C",
"iot_voice_automatic": "Automatic",
"iot_voice_delicate": "Delikatny 45°C",
"iot_voice_eco": "Eco 45°C",
"iot_voice_intensive": "Intensywne 75°C",
"iot_voice_prewash": "Mycie wstępne",
"iot_voice_rapid_59": "Szybki 59'",
"iot_voice_universal": "Uniwersalne 60°C",
"iot_wok_grids_maxi_pans": "Specjalny do patelni (Woki, Patelnie karbowane, Patelnie maxi)", "iot_wok_grids_maxi_pans": "Specjalny do patelni (Woki, Patelnie karbowane, Patelnie maxi)",
"iot_wok_grids_maxi_pans_soil": "Specjalny do patelni (Woki, Patelnie karbowane, Patelnie maxi)", "iot_wok_grids_maxi_pans_soil": "Specjalny do patelni (Woki, Patelnie karbowane, Patelnie maxi)",
"iot_yes_quick_cycle": "Yes Quick", "iot_yes_quick_cycle": "Yes Quick",
@ -1052,6 +1095,7 @@
"ultra_silent": "Ultra Ciche 55°C", "ultra_silent": "Ultra Ciche 55°C",
"universal": "Uniwersalne 60°C", "universal": "Uniwersalne 60°C",
"universal_plus": "Uniwersalne Plus 70°C", "universal_plus": "Uniwersalne Plus 70°C",
"zone_wash": "Flex Zone Wash",
"zoom_39": "Zoom 39 min" "zoom_39": "Zoom 39 min"
}, },
"name": "Program" "name": "Program"
@ -1185,14 +1229,14 @@
"hqd_bulky": "Elementy wielkogabarytowe", "hqd_bulky": "Elementy wielkogabarytowe",
"hqd_casual": "Nieformalny", "hqd_casual": "Nieformalny",
"hqd_cold_wind_30": "Chłodna bryza 30 minut", "hqd_cold_wind_30": "Chłodna bryza 30 minut",
"hqd_cold_wind_timing": "Chłodny wietrzyk", "hqd_cold_wind_timing": "Zimne powietrze",
"hqd_cotton": "Bawełna", "hqd_cotton": "Bawełna",
"hqd_curtain": "Zasłony", "hqd_curtain": "Zasłony",
"hqd_delicate": "Delikatne", "hqd_delicate": "Delikatne",
"hqd_diaper": "Pieluchy", "hqd_diaper": "Pieluchy",
"hqd_duvet": "Kołdry", "hqd_duvet": "Pikowana kurtka z włókna syntetycznego",
"hqd_feather": "Kurtki puchowe", "hqd_feather": "Pikowana kurtka z naturalnego włókna",
"hqd_hot_wind_timing": "Gorące powietrze", "hqd_hot_wind_timing": "Ciepłe objęcie",
"hqd_hygienic": "Higienizacja", "hqd_hygienic": "Higienizacja",
"hqd_i_refresh": "I-Refresh", "hqd_i_refresh": "I-Refresh",
"hqd_i_refresh_pro": "I-Refresh Pro", "hqd_i_refresh_pro": "I-Refresh Pro",
@ -1202,10 +1246,10 @@
"hqd_mix": "Mieszane", "hqd_mix": "Mieszane",
"hqd_night_dry": "Suszenie nocne", "hqd_night_dry": "Suszenie nocne",
"hqd_outdoor": "Outdoor", "hqd_outdoor": "Outdoor",
"hqd_precious_cure": "Precious cure", "hqd_precious_cure": "Precious Cure",
"hqd_quick_20": "Szybkie 20", "hqd_quick_20": "Szybkie 20",
"hqd_quick_30": "Szybkie 30", "hqd_quick_30": "Szybkie 30",
"hqd_quick_dry": "Szybkoschnące 30'", "hqd_quick_dry": "Automatyczne szybkie suszenie 30'",
"hqd_quilt": "Kołdry", "hqd_quilt": "Kołdry",
"hqd_refresh": "Odświeżanie", "hqd_refresh": "Odświeżanie",
"hqd_school_uniform": "Mundurek szkolny", "hqd_school_uniform": "Mundurek szkolny",
@ -1242,6 +1286,8 @@
"iot_dry_gym_fit": "Gimnastyczne - Fitness", "iot_dry_gym_fit": "Gimnastyczne - Fitness",
"iot_dry_lingerie": "Bielizna", "iot_dry_lingerie": "Bielizna",
"iot_dry_mixed": "Mieszane", "iot_dry_mixed": "Mieszane",
"iot_dry_pet_accessories": "Akcesoria dla zwierząt",
"iot_dry_pet_hair_removal": "Usuwanie sierści zwierząt domowych (pranie wstępne)",
"iot_dry_playsuits": "Pajacyki", "iot_dry_playsuits": "Pajacyki",
"iot_dry_rapid_30": "Rapid 30", "iot_dry_rapid_30": "Rapid 30",
"iot_dry_rapid_59": "Szybki 59.", "iot_dry_rapid_59": "Szybki 59.",
@ -1293,9 +1339,9 @@
"state": { "state": {
"20_degrees_coloured_cottons": "20° Kolorowe i Bawełna", "20_degrees_coloured_cottons": "20° Kolorowe i Bawełna",
"20_degrees_new_energy_label": "20°C", "20_degrees_new_energy_label": "20°C",
"active_steam": "Para", "active_steam": "Para 29'",
"active_wash": "Aktywne pranie", "active_wash": "Aktywne pranie 20'",
"active_wash_steam": "Aktywne pranie", "active_wash_steam": "Aktywne pranie 20' + Para",
"allergy_care": "Pielęgnacja antyalergiczna", "allergy_care": "Pielęgnacja antyalergiczna",
"allergy_care_pro": "Allergy Care Pro", "allergy_care_pro": "Allergy Care Pro",
"all_in_one_49": "Wszystko w jednym cyklu 49", "all_in_one_49": "Wszystko w jednym cyklu 49",
@ -1315,19 +1361,19 @@
"cottons_steam": "Bawełna + Para", "cottons_steam": "Bawełna + Para",
"cotton_care_59": "Cotton Care 59 Min", "cotton_care_59": "Cotton Care 59 Min",
"delicate_59": "Delikatne 59", "delicate_59": "Delikatne 59",
"delicate_silk": "Delikatny jedwab", "delicate_silk": "Delikatny jedwab 59'",
"delicate_silk_steam": "Delikatny jedwab + Para", "delicate_silk_steam": "Delikatny jedwab + Para",
"delicati_59": "Delikatne 59", "delicati_59": "Delikatne 59",
"delicati_59_steam": "Delikatne 59", "delicati_59_steam": "Delikatne 59",
"drain_spin": "Spuść wodę +i odwiruj", "drain_spin": "Spuść wodę +i odwiruj",
"easy_iron": "Łatwe prasowanie", "easy_iron": "Łatwe prasowanie 39'",
"eco_40_60_new_energy_label": "Eco 40-60", "eco_40_60_new_energy_label": "Eco 40-60",
"extra_care": "Extra Care", "extra_care": "Extra Care",
"fitness": "Fitness Care", "fitness": "Fitness Care",
"fitness_care": "Fitness Care", "fitness_care": "Fitness Care",
"fresh_care": "Fresh Care", "fresh_care": "Fresh Care 59'",
"fresh_care_steam": "Fresh Care + Para", "fresh_care_steam": "Fresh Care + Para",
"handwash_wool": "Pranie ręczne i wełna", "handwash_wool": "Pranie ręczne i wełna 48'",
"high_dry": "Suszenie bawełny", "high_dry": "Suszenie bawełny",
"hqd_20_degrees": "Bawełna 20℃", "hqd_20_degrees": "Bawełna 20℃",
"hqd_allergy": "Pielęgnacja antyalergiczna", "hqd_allergy": "Pielęgnacja antyalergiczna",
@ -1335,13 +1381,13 @@
"hqd_babycare": "Baby Care", "hqd_babycare": "Baby Care",
"hqd_checkup": "Kontrola", "hqd_checkup": "Kontrola",
"hqd_cottons": "Bawełna", "hqd_cottons": "Bawełna",
"hqd_delicate": "Delikatne", "hqd_delicate": "Delikatne 50'",
"hqd_delicate_cradle": "Delikatne", "hqd_delicate_cradle": "Delikatne",
"hqd_dry": "Suszenie bawełny", "hqd_dry": "Suszenie bawełny",
"hqd_dry_synthetics": "Suszenie materiałów mieszanych", "hqd_dry_synthetics": "Suszenie materiałów mieszanych",
"hqd_duvet": "Kołdry", "hqd_duvet": "Kołdry",
"hqd_eco_40_60_degrees": "Eco 40-60", "hqd_eco_40_60_degrees": "Eco 40-60",
"hqd_handwash_wool": "Wełna", "hqd_handwash_wool": "Wełna 40'",
"hqd_i_refresh": "i-Refresh", "hqd_i_refresh": "i-Refresh",
"hqd_mix": "Mieszane", "hqd_mix": "Mieszane",
"hqd_quick_15": "Szybki 15'", "hqd_quick_15": "Szybki 15'",
@ -1352,7 +1398,7 @@
"hqd_shirts": "Koszule", "hqd_shirts": "Koszule",
"hqd_smart": "Smart A.I.", "hqd_smart": "Smart A.I.",
"hqd_spin": "Wirowanie", "hqd_spin": "Wirowanie",
"hqd_sport": "Odzież sportowa", "hqd_sport": "Odzież sportowa 25'",
"hqd_super_fast": "Szybki 39", "hqd_super_fast": "Szybki 39",
"hqd_synthetic_and_coloured": "Syntetyki", "hqd_synthetic_and_coloured": "Syntetyki",
"hygiene_59": "Higiena Plus 59'", "hygiene_59": "Higiena Plus 59'",
@ -1363,10 +1409,11 @@
"hygiene_pro_steam": "Hygiene Pro + Para", "hygiene_pro_steam": "Hygiene Pro + Para",
"intensive_40": "Intensywne 40°C", "intensive_40": "Intensywne 40°C",
"intensive_40_steam": "Intensywny 40°C + Para", "intensive_40_steam": "Intensywny 40°C + Para",
"iot_active_steam": "Para", "iot_active_steam": "Para 29'",
"iot_active_wash_steam": "Aktywne pranie", "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",
@ -1399,17 +1446,19 @@
"iot_dry_technical_fabrics": "Tkaniny techniczne", "iot_dry_technical_fabrics": "Tkaniny techniczne",
"iot_dry_warm_embrace": "Delikatne suszenie", "iot_dry_warm_embrace": "Delikatne suszenie",
"iot_dry_wool_dry": "Suszenie wełny", "iot_dry_wool_dry": "Suszenie wełny",
"iot_easy_iron": "Łatwe prasowanie", "iot_easy_iron": "Łatwe prasowanie 39'",
"iot_fresh_care_steam": "Fresh Care + Para", "iot_fresh_care_steam": "Fresh Care + Para",
"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_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'",
"iot_rapid_a_class_60_steam": "Szybki Klasa A 60 + Para", "iot_rapid_a_class_60_steam": "Szybki Klasa A 60 + Para",
"iot_resistant_cotton_steam": "Bawełna + Para", "iot_resistant_cotton_steam": "Bawełna + Para",
"iot_shirts_steam": "Koszule + Para", "iot_shirts_steam": "Koszule + Para",
"iot_single_item_steam": "Pojedynczy przedmiot + Para", "iot_single_item_steam": "Pojedynczy przedmiot 20' + Para",
"iot_smart_wash": "Inteligentne pranie", "iot_smart_wash": "Inteligentne pranie",
"iot_soft_care_steam": "Soft Care + Steam", "iot_soft_care_steam": "Soft Care + Steam",
"iot_special_39_full_load_steam": "Specjalny 39' + Para", "iot_special_39_full_load_steam": "Specjalny 39' + Para",
@ -1443,7 +1492,7 @@
"iot_wash_coloured_bed_linen": "Kolorowa pościel", "iot_wash_coloured_bed_linen": "Kolorowa pościel",
"iot_wash_coloured_bed_linen_steam": "Kolorowa pościel + Para", "iot_wash_coloured_bed_linen_steam": "Kolorowa pościel + Para",
"iot_wash_coloured_curtains": "Kolorowe zasłony", "iot_wash_coloured_curtains": "Kolorowe zasłony",
"iot_wash_coloured_shirts": "Kolorowe koszule", "iot_wash_coloured_shirts": "Kolorowe koszule 59'",
"iot_wash_coloured_shirts_steam": "Kolorowe koszule + Para", "iot_wash_coloured_shirts_steam": "Kolorowe koszule + Para",
"iot_wash_coloured_steam": "Tkaniny kolorowe + Para", "iot_wash_coloured_steam": "Tkaniny kolorowe + Para",
"iot_wash_coloured_tableclothes": "Kolorowe obrusy", "iot_wash_coloured_tableclothes": "Kolorowe obrusy",
@ -1480,7 +1529,7 @@
"iot_wash_down_jackets_zelig": "Kurtki puchowe", "iot_wash_down_jackets_zelig": "Kurtki puchowe",
"iot_wash_duvet": "Kołdry", "iot_wash_duvet": "Kołdry",
"iot_wash_fruit_stains": "Plamy z owoców", "iot_wash_fruit_stains": "Plamy z owoców",
"iot_wash_gym_fit": "Ubrania na siłownię", "iot_wash_gym_fit": "Ubrania na siłownię 59'",
"iot_wash_handwash": "Pranie ręczne", "iot_wash_handwash": "Pranie ręczne",
"iot_wash_handwash_colored": "Pranie ręczne, kolorowe", "iot_wash_handwash_colored": "Pranie ręczne, kolorowe",
"iot_wash_handwash_dark": "Pranie ręczne, ciemne", "iot_wash_handwash_dark": "Pranie ręczne, ciemne",
@ -1525,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",
@ -1543,6 +1593,7 @@
"iot_wash_wool": "Wełna", "iot_wash_wool": "Wełna",
"jeans": "Dżins", "jeans": "Dżins",
"jeans_60": "Dżinsy", "jeans_60": "Dżinsy",
"jeans_60_steam": "Dżinsy + Para",
"low_dry": "Suszenie materiałów mieszanych", "low_dry": "Suszenie materiałów mieszanych",
"mixed": "Mieszane", "mixed": "Mieszane",
"mixed_and_colored_59": "Mieszane i kolorowe 59 '", "mixed_and_colored_59": "Mieszane i kolorowe 59 '",
@ -1566,7 +1617,7 @@
"rinse": "Płukanie", "rinse": "Płukanie",
"shirts_steam": "Koszule + Para", "shirts_steam": "Koszule + Para",
"silent_night": "Cykl nocny", "silent_night": "Cykl nocny",
"single_item": "Pojedynczy przedmiot", "single_item": "Pojedynczy przedmiot 20'",
"single_item_steam": "Pojedynczy przedmiot + Para", "single_item_steam": "Pojedynczy przedmiot + Para",
"smart_wash": "Inteligentne pranie", "smart_wash": "Inteligentne pranie",
"soft_care": "Soft Care", "soft_care": "Soft Care",
@ -1582,8 +1633,8 @@
"steam_39": "Para 39", "steam_39": "Para 39",
"steam_care_pro": "Steam Care Pro", "steam_care_pro": "Steam Care Pro",
"steam_care_pro_cotton": "Steam Care Pro - Bawełna", "steam_care_pro_cotton": "Steam Care Pro - Bawełna",
"steam_care_pro_delicates": "Steam Care Pro - Delikatne", "steam_care_pro_delicates": "Steam Care Pro - Delikatne 16'",
"steam_care_pro_synthetic": "Steam Care Pro - Syntetyki", "steam_care_pro_synthetic": "Steam Care Pro - Syntetyki 20'",
"steam_hygiene_plus": "Higiena Plus Para", "steam_hygiene_plus": "Higiena Plus Para",
"synthetics": "Syntetyki", "synthetics": "Syntetyki",
"synthetic_and_coloured": "Syntetyki i Kolorowe", "synthetic_and_coloured": "Syntetyki i Kolorowe",
@ -1595,7 +1646,7 @@
"wool": "Wełna", "wool": "Wełna",
"wool_and_delicates_49": "Wełna/Delikatne 49'", "wool_and_delicates_49": "Wełna/Delikatne 49'",
"wool_dry": "Suszenie wełny", "wool_dry": "Suszenie wełny",
"wool_soft_care": "Wełna & Soft Care" "wool_soft_care": "Wełna & Soft Care 48'"
}, },
"name": "Program" "name": "Program"
}, },
@ -1605,20 +1656,25 @@
"cheese": "Ser", "cheese": "Ser",
"chiller": "Quick cool", "chiller": "Quick cool",
"cold_drinks": "Soft chill", "cold_drinks": "Soft chill",
"cool_drink": "Cool Drink",
"eco": "Eco", "eco": "Eco",
"eco_mode": "Tryb Eco", "eco_mode": "Tryb Eco",
"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",
"no_mode_selected": "Nie wybrano żadnego trybu", "no_mode_selected": "Nie wybrano żadnego trybu",
"quick_cool": "QUICK COOL", "quick_cool": "QUICK COOL",
"sea_food": "Ready to cook meal", "sea_food": "Ready to cook meal",
"smart_mode_title": "Smart Mode",
"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",
"zero_fresh": "0° Fresh" "vegetables": "Vegetable",
"zero_fresh": "0°C Fresh"
}, },
"name": "Program" "name": "Program"
}, },
@ -1671,6 +1727,71 @@
"unknown": "unknown" "unknown": "unknown"
}, },
"name": "Stopień zabrudzenia" "name": "Stopień zabrudzenia"
},
"stain_type": {
"state": {
"baby_food": "Jedzenie dla dzieci",
"bean_paste": "Zupa fasolowa",
"blood": "Krew",
"blueberry": "Borówka amerykańska",
"blue_ink": "Niebieski atrament",
"butter": "Masło",
"chili_oil": "Olej z chili",
"chili_sauce": "Sos chili",
"chocolate": "Czekolada",
"coffe": "Kawa",
"coffee": "Kawa",
"color_pencil": "Ołówek",
"cooking_oil": "Olej do gotowania",
"curry": "Curry",
"deodorant": "Dezodorant",
"egg": "Jajko",
"fruit": "Owoce",
"glue": "Klej",
"grass": "Trawa",
"ice_cream": "Lody",
"ketchup": "Ketchup",
"lip_gloss": "Błyszczyk",
"mayonnaise": "Majonez",
"mech_grease": "Smar mechaniczny",
"milk": "Mleko",
"milk_tea": "Herbata z mlekiem",
"oil": "Olej",
"oil_pastel": "Pastele olejne",
"perfume": "Perfumy",
"rust": "Rdza",
"shoe_cream": "pasta do butów",
"soil": "Ziemia",
"soy_sauce": "Sos Sojowy",
"stain_level": "Stopień zabrudzenia",
"sweat": "Pot",
"tea": "Herbata",
"wine": "Wino",
"unknown": "unknown"
},
"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": {
@ -1928,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": {
@ -2062,6 +2186,9 @@
} }
} }
} }
},
"my_zone": {
"name": "My Zone"
} }
}, },
"fan": { "fan": {

View File

@ -99,22 +99,25 @@
"auto_care_soil": "Auto Care", "auto_care_soil": "Auto Care",
"auto_hygiene": "Auto Hygiene", "auto_hygiene": "Auto Hygiene",
"auto_plus": "AutoPlus", "auto_plus": "AutoPlus",
"auto_plus_soil": "Sujidade Auto Plus",
"auto_rapid": "Auto Rapid", "auto_rapid": "Auto Rapid",
"auto_rapid_soil": "Sujidade Auto Rápida",
"auto_sensor": "Auto Sensor", "auto_sensor": "Auto Sensor",
"auto_sensor_soil": "Auto Sensor", "auto_sensor_soil": "Auto Sensor",
"auto_universal": "Auto Universal 50 - 60°C", "auto_universal": "Auto Universal 50-60°C",
"auto_universal_plus": "Auto Universal Plus 65 - 75°C", "auto_universal_plus": "Auto Universal Plus 65-75°C",
"auto_universal_plus_soil": "Auto Universal Plus 65 - 75°C", "auto_universal_plus_soil": "Auto Universal Plus 65-75°C",
"auto_universal_soil": "Auto Universal 50 - 60°C", "auto_universal_soil": "Auto Universal 50-60°C",
"auto_wash": "Auto Wash", "auto_wash": "Auto Wash",
"auto_wash_soil": "Auto Wash", "auto_wash_soil": "Auto Wash",
"classe_a_59": "Classe A 59' 65°C", "classe_a_59": "Classe A 59' 65°C",
"delicate": "Delicados 45°C", "delicate": "Delicados 45°C",
"dishwasher_care": "Ciclo de limpeza de calcário", "dishwasher_care": "Ciclo de limpeza de calcário",
"eco": "Eco", "eco": "Eco 45°C",
"eco_asynch": "Eco 45°C", "eco_asynch": "Eco 45°C",
"eco_bldc": "Eco 45°C", "eco_bldc": "Eco 45°C",
"eco_synch": "Eco 45°C", "eco_synch": "Eco 45°C",
"eco_voice": "Eco",
"gentle_wash": "Gentle wash", "gentle_wash": "Gentle wash",
"glass": "Vidro", "glass": "Vidro",
"glassware": "Vidros 45 °C", "glassware": "Vidros 45 °C",
@ -123,8 +126,9 @@
"hygiene_plus": "Higiene+ 75 °C", "hygiene_plus": "Higiene+ 75 °C",
"intensive": "Intensivo", "intensive": "Intensivo",
"intensive_rapid": "Rápido intensivo", "intensive_rapid": "Rápido intensivo",
"intensive_voice": "Intensivo",
"iot_auto_sensor": "Auto Sensor", "iot_auto_sensor": "Auto Sensor",
"iot_auto_universal_soil": "Auto Universal 50 - 60°C", "iot_auto_universal_soil": "Auto Universal 50-60°C",
"iot_auto_wash_soil": "Auto Wash", "iot_auto_wash_soil": "Auto Wash",
"iot_baby_care": "Roupa de bebé", "iot_baby_care": "Roupa de bebé",
"iot_breakfast": "Pequeno-almoço", "iot_breakfast": "Pequeno-almoço",
@ -164,6 +168,13 @@
"iot_super_wash": "Lavagem Super", "iot_super_wash": "Lavagem Super",
"iot_turbopower": "TurboPower", "iot_turbopower": "TurboPower",
"iot_universal": "Universal 60 °C", "iot_universal": "Universal 60 °C",
"iot_voice_automatic": "Automatic",
"iot_voice_delicate": "Delicados 45°C",
"iot_voice_eco": "Eco 45°C",
"iot_voice_intensive": "Intensivo 75°C",
"iot_voice_prewash": "Pré-lavagem",
"iot_voice_rapid_59": "Rápido 59'",
"iot_voice_universal": "Universal 60 °C",
"iot_wok_grids_maxi_pans": "Tachos Especiais (Wok - Grelhas e Tachos Máxi)", "iot_wok_grids_maxi_pans": "Tachos Especiais (Wok - Grelhas e Tachos Máxi)",
"iot_wok_grids_maxi_pans_soil": "Tachos Especiais (Wok - Grelhas e Tachos Máxi)", "iot_wok_grids_maxi_pans_soil": "Tachos Especiais (Wok - Grelhas e Tachos Máxi)",
"iot_yes_quick_cycle": "Yes Quick", "iot_yes_quick_cycle": "Yes Quick",
@ -195,6 +206,7 @@
"ultra_silent": "Ultra Silencioso 55°C", "ultra_silent": "Ultra Silencioso 55°C",
"universal": "Universal 60 °C", "universal": "Universal 60 °C",
"universal_plus": "Universal plus 70 °C", "universal_plus": "Universal plus 70 °C",
"zone_wash": "Flex Zone Wash",
"zoom_39": "Zoom 39 min" "zoom_39": "Zoom 39 min"
}, },
"name": "Programa" "name": "Programa"
@ -328,14 +340,14 @@
"hqd_bulky": "Itens volumosos", "hqd_bulky": "Itens volumosos",
"hqd_casual": "Casual", "hqd_casual": "Casual",
"hqd_cold_wind_30": "Brisa fresca durante 30 minutos", "hqd_cold_wind_30": "Brisa fresca durante 30 minutos",
"hqd_cold_wind_timing": "Brisa fresca", "hqd_cold_wind_timing": "Ar frio",
"hqd_cotton": "Algodão", "hqd_cotton": "Algodão",
"hqd_curtain": "Cortinas", "hqd_curtain": "Cortinas",
"hqd_delicate": "Roupa delicada", "hqd_delicate": "Roupa delicada",
"hqd_diaper": "Fraldas", "hqd_diaper": "Fraldas",
"hqd_duvet": "Edredões", "hqd_duvet": "Casaco acolchoado em fibra sintética",
"hqd_feather": "Blusões", "hqd_feather": "Casaco acolchoado em fibra natural",
"hqd_hot_wind_timing": "Ar quente", "hqd_hot_wind_timing": "Warm Embrace",
"hqd_hygienic": "Higienização", "hqd_hygienic": "Higienização",
"hqd_i_refresh": "I-Refresh", "hqd_i_refresh": "I-Refresh",
"hqd_i_refresh_pro": "I-Refresh Pro", "hqd_i_refresh_pro": "I-Refresh Pro",
@ -345,10 +357,10 @@
"hqd_mix": "Mistos", "hqd_mix": "Mistos",
"hqd_night_dry": "Secagem durante a noite", "hqd_night_dry": "Secagem durante a noite",
"hqd_outdoor": "Outdoor", "hqd_outdoor": "Outdoor",
"hqd_precious_cure": "Precious cure", "hqd_precious_cure": "Precious Cure",
"hqd_quick_20": "Rápido 20", "hqd_quick_20": "Rápido 20",
"hqd_quick_30": "Rápido 30", "hqd_quick_30": "Rápido 30",
"hqd_quick_dry": "Secagem rápida 30'", "hqd_quick_dry": "Secagem rápida automática de 30'",
"hqd_quilt": "Colchas", "hqd_quilt": "Colchas",
"hqd_refresh": "Refrescar", "hqd_refresh": "Refrescar",
"hqd_school_uniform": "Farda da escola", "hqd_school_uniform": "Farda da escola",
@ -385,6 +397,8 @@
"iot_dry_gym_fit": "Roupa de desporto - Fitness", "iot_dry_gym_fit": "Roupa de desporto - Fitness",
"iot_dry_lingerie": "Roupa interior", "iot_dry_lingerie": "Roupa interior",
"iot_dry_mixed": "Mistos", "iot_dry_mixed": "Mistos",
"iot_dry_pet_accessories": "Acessórios para animais",
"iot_dry_pet_hair_removal": "Remoção de pelos de animais de estimação (pré-lavagem)",
"iot_dry_playsuits": "Macacões", "iot_dry_playsuits": "Macacões",
"iot_dry_rapid_30": "Rapid 30", "iot_dry_rapid_30": "Rapid 30",
"iot_dry_rapid_59": "Rápido 59.", "iot_dry_rapid_59": "Rápido 59.",
@ -436,9 +450,9 @@
"state": { "state": {
"20_degrees_coloured_cottons": "20° Cores e Algodões", "20_degrees_coloured_cottons": "20° Cores e Algodões",
"20_degrees_new_energy_label": "20°C", "20_degrees_new_energy_label": "20°C",
"active_steam": "Vapor", "active_steam": "Vapor 29'",
"active_wash": "Lavagem Ativa", "active_wash": "Lavagem Ativa 20'",
"active_wash_steam": "Lavagem Ativa", "active_wash_steam": "Lavagem Ativa 20' + Vapor",
"allergy_care": "Cuidado de Alergias", "allergy_care": "Cuidado de Alergias",
"allergy_care_pro": "Cuidado Alergias Pro", "allergy_care_pro": "Cuidado Alergias Pro",
"all_in_one_49": "Tudo em Um 49'.", "all_in_one_49": "Tudo em Um 49'.",
@ -458,19 +472,19 @@
"cottons_steam": "Algodão + Vapor", "cottons_steam": "Algodão + Vapor",
"cotton_care_59": "Algodões 59 min", "cotton_care_59": "Algodões 59 min",
"delicate_59": "Delicados 59'", "delicate_59": "Delicados 59'",
"delicate_silk": "Seda delicada", "delicate_silk": "Seda delicada 59'",
"delicate_silk_steam": "Seda delicada + vapor", "delicate_silk_steam": "Seda delicada + vapor",
"delicati_59": "Delicados 59'", "delicati_59": "Delicados 59'",
"delicati_59_steam": "Delicados 59'", "delicati_59_steam": "Delicados 59'",
"drain_spin": "Drenar +e Centrifugar", "drain_spin": "Drenar +e Centrifugar",
"easy_iron": "Engomar Fácil", "easy_iron": "Engomar Fácil 39'",
"eco_40_60_new_energy_label": "Eco 40-60", "eco_40_60_new_energy_label": "Eco 40-60",
"extra_care": "Cuidado extra", "extra_care": "Cuidado extra",
"fitness": "Fitness Care", "fitness": "Fitness Care",
"fitness_care": "Fitness Care", "fitness_care": "Fitness Care",
"fresh_care": "Cuidado Fresco", "fresh_care": "Cuidado Fresco 59'",
"fresh_care_steam": "Fresh Care + Vapor", "fresh_care_steam": "Fresh Care + Vapor",
"handwash_wool": "Lavagem manual e lã", "handwash_wool": "Lavagem manual e lãs 48'",
"high_dry": "Secagem de algodão", "high_dry": "Secagem de algodão",
"hqd_20_degrees": "Algodão 20℃", "hqd_20_degrees": "Algodão 20℃",
"hqd_allergy": "Cuidado de Alergias", "hqd_allergy": "Cuidado de Alergias",
@ -478,13 +492,13 @@
"hqd_babycare": "Roupa de bebé", "hqd_babycare": "Roupa de bebé",
"hqd_checkup": "Check-Up", "hqd_checkup": "Check-Up",
"hqd_cottons": "Algodão", "hqd_cottons": "Algodão",
"hqd_delicate": "Roupa delicada", "hqd_delicate": "Roupa delicada 50'",
"hqd_delicate_cradle": "Roupa delicada", "hqd_delicate_cradle": "Roupa delicada",
"hqd_dry": "Secagem de algodão", "hqd_dry": "Secagem de algodão",
"hqd_dry_synthetics": "Secos mistos", "hqd_dry_synthetics": "Secos mistos",
"hqd_duvet": "Edredãos", "hqd_duvet": "Edredãos",
"hqd_eco_40_60_degrees": "Eco 40-60", "hqd_eco_40_60_degrees": "Eco 40-60",
"hqd_handwash_wool": "Lãs", "hqd_handwash_wool": "Lãs 40'",
"hqd_i_refresh": "i-Refresh", "hqd_i_refresh": "i-Refresh",
"hqd_mix": "Misto", "hqd_mix": "Misto",
"hqd_quick_15": "Rápido 15'", "hqd_quick_15": "Rápido 15'",
@ -495,7 +509,7 @@
"hqd_shirts": "Camisas", "hqd_shirts": "Camisas",
"hqd_smart": "Smart A.I.", "hqd_smart": "Smart A.I.",
"hqd_spin": "Centrifugar", "hqd_spin": "Centrifugar",
"hqd_sport": "Desporto", "hqd_sport": "Desporto 25'",
"hqd_super_fast": "Rápido 39", "hqd_super_fast": "Rápido 39",
"hqd_synthetic_and_coloured": "Sintéticos", "hqd_synthetic_and_coloured": "Sintéticos",
"hygiene_59": "Higiene Plus 59'", "hygiene_59": "Higiene Plus 59'",
@ -506,10 +520,11 @@
"hygiene_pro_steam": "Hygiene Pro + Vapor", "hygiene_pro_steam": "Hygiene Pro + Vapor",
"intensive_40": "Intensivo 40°C", "intensive_40": "Intensivo 40°C",
"intensive_40_steam": "Intensivo 40°C + vapor", "intensive_40_steam": "Intensivo 40°C + vapor",
"iot_active_steam": "Vapor", "iot_active_steam": "Vapor 29'",
"iot_active_wash_steam": "Lavagem Ativa", "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",
@ -542,17 +557,19 @@
"iot_dry_technical_fabrics": "Tecidos técnicos", "iot_dry_technical_fabrics": "Tecidos técnicos",
"iot_dry_warm_embrace": "Secagem a quente", "iot_dry_warm_embrace": "Secagem a quente",
"iot_dry_wool_dry": "Secagem de lãs", "iot_dry_wool_dry": "Secagem de lãs",
"iot_easy_iron": "Engomar Fácil", "iot_easy_iron": "Engomar Fácil 39'",
"iot_fresh_care_steam": "Fresh Care + Vapor", "iot_fresh_care_steam": "Fresh Care + Vapor",
"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_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'",
"iot_rapid_a_class_60_steam": "Classe A rápida 60 + vapor", "iot_rapid_a_class_60_steam": "Classe A rápida 60 + vapor",
"iot_resistant_cotton_steam": "Algodão + Vapor", "iot_resistant_cotton_steam": "Algodão + Vapor",
"iot_shirts_steam": "Camisas + Vapor", "iot_shirts_steam": "Camisas + Vapor",
"iot_single_item_steam": "Peça única + Vapor", "iot_single_item_steam": "Peça única 20' + Vapor",
"iot_smart_wash": "Smart Wash", "iot_smart_wash": "Smart Wash",
"iot_soft_care_steam": "Soft Care + Steam", "iot_soft_care_steam": "Soft Care + Steam",
"iot_special_39_full_load_steam": "Special 39' + Vapor", "iot_special_39_full_load_steam": "Special 39' + Vapor",
@ -586,7 +603,7 @@
"iot_wash_coloured_bed_linen": "Roupa de cama de cores", "iot_wash_coloured_bed_linen": "Roupa de cama de cores",
"iot_wash_coloured_bed_linen_steam": "Roupa de cama de cores + vapor", "iot_wash_coloured_bed_linen_steam": "Roupa de cama de cores + vapor",
"iot_wash_coloured_curtains": "Cortinas de cor", "iot_wash_coloured_curtains": "Cortinas de cor",
"iot_wash_coloured_shirts": "Camisas de cor", "iot_wash_coloured_shirts": "Camisas de cor 59'",
"iot_wash_coloured_shirts_steam": "Camisas de cor + vapor", "iot_wash_coloured_shirts_steam": "Camisas de cor + vapor",
"iot_wash_coloured_steam": "Cores + Vapor", "iot_wash_coloured_steam": "Cores + Vapor",
"iot_wash_coloured_tableclothes": "Toalhas de mesa de cor", "iot_wash_coloured_tableclothes": "Toalhas de mesa de cor",
@ -623,7 +640,7 @@
"iot_wash_down_jackets_zelig": "Blusões", "iot_wash_down_jackets_zelig": "Blusões",
"iot_wash_duvet": "Edredãos", "iot_wash_duvet": "Edredãos",
"iot_wash_fruit_stains": "Nódoas de fruta", "iot_wash_fruit_stains": "Nódoas de fruta",
"iot_wash_gym_fit": "Vestuário de ginásio - fitness", "iot_wash_gym_fit": "Vestuário de ginásio - fitness 59'",
"iot_wash_handwash": "Lavagem à mão", "iot_wash_handwash": "Lavagem à mão",
"iot_wash_handwash_colored": "Lavagem à mão cores", "iot_wash_handwash_colored": "Lavagem à mão cores",
"iot_wash_handwash_dark": "Lavagem à mão de escuros", "iot_wash_handwash_dark": "Lavagem à mão de escuros",
@ -668,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",
@ -686,6 +704,7 @@
"iot_wash_wool": "Lãs", "iot_wash_wool": "Lãs",
"jeans": "Jeans", "jeans": "Jeans",
"jeans_60": "Jeans", "jeans_60": "Jeans",
"jeans_60_steam": "Gangas + vapor",
"low_dry": "Secos mistos", "low_dry": "Secos mistos",
"mixed": "Mistos", "mixed": "Mistos",
"mixed_and_colored_59": "Misto e Cores 59'", "mixed_and_colored_59": "Misto e Cores 59'",
@ -709,7 +728,7 @@
"rinse": "Lavagem", "rinse": "Lavagem",
"shirts_steam": "Camisas + Vapor", "shirts_steam": "Camisas + Vapor",
"silent_night": "Ciclo durante a noite", "silent_night": "Ciclo durante a noite",
"single_item": "Peça única", "single_item": "Peça única 20'",
"single_item_steam": "Peça única + Vapor", "single_item_steam": "Peça única + Vapor",
"smart_wash": "Smart Wash", "smart_wash": "Smart Wash",
"soft_care": "Cuidado Suave", "soft_care": "Cuidado Suave",
@ -725,8 +744,8 @@
"steam_39": "Vapor 39'", "steam_39": "Vapor 39'",
"steam_care_pro": "Steam Care Pro", "steam_care_pro": "Steam Care Pro",
"steam_care_pro_cotton": "Steam Care Pro - Algodões", "steam_care_pro_cotton": "Steam Care Pro - Algodões",
"steam_care_pro_delicates": "Steam Care Pro - Delicados", "steam_care_pro_delicates": "Steam Care Pro - Delicados 16'",
"steam_care_pro_synthetic": "Steam Care Pro - Sintéticos", "steam_care_pro_synthetic": "Steam Care Pro - Sintéticos 20'",
"steam_hygiene_plus": "Hygiene Plus Steam", "steam_hygiene_plus": "Hygiene Plus Steam",
"synthetics": "Sintéticos", "synthetics": "Sintéticos",
"synthetic_and_coloured": "Sintéticos e Cores", "synthetic_and_coloured": "Sintéticos e Cores",
@ -738,7 +757,7 @@
"wool": "Lãs", "wool": "Lãs",
"wool_and_delicates_49": "Lãs/Delicados 49'", "wool_and_delicates_49": "Lãs/Delicados 49'",
"wool_dry": "Secagem de lãs", "wool_dry": "Secagem de lãs",
"wool_soft_care": "Lãs & Cuidado Suavidade" "wool_soft_care": "Lãs & Cuidado Suavidade 48'"
}, },
"name": "Programa" "name": "Programa"
}, },
@ -748,20 +767,25 @@
"cheese": "Queijo", "cheese": "Queijo",
"chiller": "Quick cool", "chiller": "Quick cool",
"cold_drinks": "Soft chill", "cold_drinks": "Soft chill",
"cool_drink": "Cool Drink",
"eco": "Eco", "eco": "Eco",
"eco_mode": "Modo Eco", "eco_mode": "Modo Eco",
"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",
"no_mode_selected": "Nenhum modo selecionado", "no_mode_selected": "Nenhum modo selecionado",
"quick_cool": "QUICK COOL", "quick_cool": "QUICK COOL",
"sea_food": "Ready to cook meal", "sea_food": "Ready to cook meal",
"smart_mode_title": "Smart Mode",
"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",
"zero_fresh": "0° Fresh" "vegetables": "Vegetable",
"zero_fresh": "0°C Fresh"
}, },
"name": "Programa" "name": "Programa"
}, },
@ -887,6 +911,14 @@
}, },
"fan_speed": { "fan_speed": {
"name": "Velocidade da bomba" "name": "Velocidade da bomba"
},
"humidity_level": {
"state": {
"low": "Baixa",
"mid": "Média",
"high": "Alta"
},
"name": "Nível de humidade"
} }
}, },
"select": { "select": {
@ -956,22 +988,25 @@
"auto_care_soil": "Auto Care", "auto_care_soil": "Auto Care",
"auto_hygiene": "Auto Hygiene", "auto_hygiene": "Auto Hygiene",
"auto_plus": "AutoPlus", "auto_plus": "AutoPlus",
"auto_plus_soil": "Sujidade Auto Plus",
"auto_rapid": "Auto Rapid", "auto_rapid": "Auto Rapid",
"auto_rapid_soil": "Sujidade Auto Rápida",
"auto_sensor": "Auto Sensor", "auto_sensor": "Auto Sensor",
"auto_sensor_soil": "Auto Sensor", "auto_sensor_soil": "Auto Sensor",
"auto_universal": "Auto Universal 50 - 60°C", "auto_universal": "Auto Universal 50-60°C",
"auto_universal_plus": "Auto Universal Plus 65 - 75°C", "auto_universal_plus": "Auto Universal Plus 65-75°C",
"auto_universal_plus_soil": "Auto Universal Plus 65 - 75°C", "auto_universal_plus_soil": "Auto Universal Plus 65-75°C",
"auto_universal_soil": "Auto Universal 50 - 60°C", "auto_universal_soil": "Auto Universal 50-60°C",
"auto_wash": "Auto Wash", "auto_wash": "Auto Wash",
"auto_wash_soil": "Auto Wash", "auto_wash_soil": "Auto Wash",
"classe_a_59": "Classe A 59' 65°C", "classe_a_59": "Classe A 59' 65°C",
"delicate": "Delicados 45°C", "delicate": "Delicados 45°C",
"dishwasher_care": "Ciclo de limpeza de calcário", "dishwasher_care": "Ciclo de limpeza de calcário",
"eco": "Eco", "eco": "Eco 45°C",
"eco_asynch": "Eco 45°C", "eco_asynch": "Eco 45°C",
"eco_bldc": "Eco 45°C", "eco_bldc": "Eco 45°C",
"eco_synch": "Eco 45°C", "eco_synch": "Eco 45°C",
"eco_voice": "Eco",
"gentle_wash": "Gentle wash", "gentle_wash": "Gentle wash",
"glass": "Vidro", "glass": "Vidro",
"glassware": "Vidros 45 °C", "glassware": "Vidros 45 °C",
@ -980,8 +1015,9 @@
"hygiene_plus": "Higiene+ 75 °C", "hygiene_plus": "Higiene+ 75 °C",
"intensive": "Intensivo", "intensive": "Intensivo",
"intensive_rapid": "Rápido intensivo", "intensive_rapid": "Rápido intensivo",
"intensive_voice": "Intensivo",
"iot_auto_sensor": "Auto Sensor", "iot_auto_sensor": "Auto Sensor",
"iot_auto_universal_soil": "Auto Universal 50 - 60°C", "iot_auto_universal_soil": "Auto Universal 50-60°C",
"iot_auto_wash_soil": "Auto Wash", "iot_auto_wash_soil": "Auto Wash",
"iot_baby_care": "Roupa de bebé", "iot_baby_care": "Roupa de bebé",
"iot_breakfast": "Pequeno-almoço", "iot_breakfast": "Pequeno-almoço",
@ -1021,6 +1057,13 @@
"iot_super_wash": "Lavagem Super", "iot_super_wash": "Lavagem Super",
"iot_turbopower": "TurboPower", "iot_turbopower": "TurboPower",
"iot_universal": "Universal 60 °C", "iot_universal": "Universal 60 °C",
"iot_voice_automatic": "Automatic",
"iot_voice_delicate": "Delicados 45°C",
"iot_voice_eco": "Eco 45°C",
"iot_voice_intensive": "Intensivo 75°C",
"iot_voice_prewash": "Pré-lavagem",
"iot_voice_rapid_59": "Rápido 59'",
"iot_voice_universal": "Universal 60 °C",
"iot_wok_grids_maxi_pans": "Tachos Especiais (Wok - Grelhas e Tachos Máxi)", "iot_wok_grids_maxi_pans": "Tachos Especiais (Wok - Grelhas e Tachos Máxi)",
"iot_wok_grids_maxi_pans_soil": "Tachos Especiais (Wok - Grelhas e Tachos Máxi)", "iot_wok_grids_maxi_pans_soil": "Tachos Especiais (Wok - Grelhas e Tachos Máxi)",
"iot_yes_quick_cycle": "Yes Quick", "iot_yes_quick_cycle": "Yes Quick",
@ -1052,6 +1095,7 @@
"ultra_silent": "Ultra Silencioso 55°C", "ultra_silent": "Ultra Silencioso 55°C",
"universal": "Universal 60 °C", "universal": "Universal 60 °C",
"universal_plus": "Universal plus 70 °C", "universal_plus": "Universal plus 70 °C",
"zone_wash": "Flex Zone Wash",
"zoom_39": "Zoom 39 min" "zoom_39": "Zoom 39 min"
}, },
"name": "Programa" "name": "Programa"
@ -1185,14 +1229,14 @@
"hqd_bulky": "Itens volumosos", "hqd_bulky": "Itens volumosos",
"hqd_casual": "Casual", "hqd_casual": "Casual",
"hqd_cold_wind_30": "Brisa fresca durante 30 minutos", "hqd_cold_wind_30": "Brisa fresca durante 30 minutos",
"hqd_cold_wind_timing": "Brisa fresca", "hqd_cold_wind_timing": "Ar frio",
"hqd_cotton": "Algodão", "hqd_cotton": "Algodão",
"hqd_curtain": "Cortinas", "hqd_curtain": "Cortinas",
"hqd_delicate": "Roupa delicada", "hqd_delicate": "Roupa delicada",
"hqd_diaper": "Fraldas", "hqd_diaper": "Fraldas",
"hqd_duvet": "Edredões", "hqd_duvet": "Casaco acolchoado em fibra sintética",
"hqd_feather": "Blusões", "hqd_feather": "Casaco acolchoado em fibra natural",
"hqd_hot_wind_timing": "Ar quente", "hqd_hot_wind_timing": "Warm Embrace",
"hqd_hygienic": "Higienização", "hqd_hygienic": "Higienização",
"hqd_i_refresh": "I-Refresh", "hqd_i_refresh": "I-Refresh",
"hqd_i_refresh_pro": "I-Refresh Pro", "hqd_i_refresh_pro": "I-Refresh Pro",
@ -1202,10 +1246,10 @@
"hqd_mix": "Mistos", "hqd_mix": "Mistos",
"hqd_night_dry": "Secagem durante a noite", "hqd_night_dry": "Secagem durante a noite",
"hqd_outdoor": "Outdoor", "hqd_outdoor": "Outdoor",
"hqd_precious_cure": "Precious cure", "hqd_precious_cure": "Precious Cure",
"hqd_quick_20": "Rápido 20", "hqd_quick_20": "Rápido 20",
"hqd_quick_30": "Rápido 30", "hqd_quick_30": "Rápido 30",
"hqd_quick_dry": "Secagem rápida 30'", "hqd_quick_dry": "Secagem rápida automática de 30'",
"hqd_quilt": "Colchas", "hqd_quilt": "Colchas",
"hqd_refresh": "Refrescar", "hqd_refresh": "Refrescar",
"hqd_school_uniform": "Farda da escola", "hqd_school_uniform": "Farda da escola",
@ -1242,6 +1286,8 @@
"iot_dry_gym_fit": "Roupa de desporto - Fitness", "iot_dry_gym_fit": "Roupa de desporto - Fitness",
"iot_dry_lingerie": "Roupa interior", "iot_dry_lingerie": "Roupa interior",
"iot_dry_mixed": "Mistos", "iot_dry_mixed": "Mistos",
"iot_dry_pet_accessories": "Acessórios para animais",
"iot_dry_pet_hair_removal": "Remoção de pelos de animais de estimação (pré-lavagem)",
"iot_dry_playsuits": "Macacões", "iot_dry_playsuits": "Macacões",
"iot_dry_rapid_30": "Rapid 30", "iot_dry_rapid_30": "Rapid 30",
"iot_dry_rapid_59": "Rápido 59.", "iot_dry_rapid_59": "Rápido 59.",
@ -1293,9 +1339,9 @@
"state": { "state": {
"20_degrees_coloured_cottons": "20° Cores e Algodões", "20_degrees_coloured_cottons": "20° Cores e Algodões",
"20_degrees_new_energy_label": "20°C", "20_degrees_new_energy_label": "20°C",
"active_steam": "Vapor", "active_steam": "Vapor 29'",
"active_wash": "Lavagem Ativa", "active_wash": "Lavagem Ativa 20'",
"active_wash_steam": "Lavagem Ativa", "active_wash_steam": "Lavagem Ativa 20' + Vapor",
"allergy_care": "Cuidado de Alergias", "allergy_care": "Cuidado de Alergias",
"allergy_care_pro": "Cuidado Alergias Pro", "allergy_care_pro": "Cuidado Alergias Pro",
"all_in_one_49": "Tudo em Um 49'.", "all_in_one_49": "Tudo em Um 49'.",
@ -1315,19 +1361,19 @@
"cottons_steam": "Algodão + Vapor", "cottons_steam": "Algodão + Vapor",
"cotton_care_59": "Algodões 59 min", "cotton_care_59": "Algodões 59 min",
"delicate_59": "Delicados 59'", "delicate_59": "Delicados 59'",
"delicate_silk": "Seda delicada", "delicate_silk": "Seda delicada 59'",
"delicate_silk_steam": "Seda delicada + vapor", "delicate_silk_steam": "Seda delicada + vapor",
"delicati_59": "Delicados 59'", "delicati_59": "Delicados 59'",
"delicati_59_steam": "Delicados 59'", "delicati_59_steam": "Delicados 59'",
"drain_spin": "Drenar +e Centrifugar", "drain_spin": "Drenar +e Centrifugar",
"easy_iron": "Engomar Fácil", "easy_iron": "Engomar Fácil 39'",
"eco_40_60_new_energy_label": "Eco 40-60", "eco_40_60_new_energy_label": "Eco 40-60",
"extra_care": "Cuidado extra", "extra_care": "Cuidado extra",
"fitness": "Fitness Care", "fitness": "Fitness Care",
"fitness_care": "Fitness Care", "fitness_care": "Fitness Care",
"fresh_care": "Cuidado Fresco", "fresh_care": "Cuidado Fresco 59'",
"fresh_care_steam": "Fresh Care + Vapor", "fresh_care_steam": "Fresh Care + Vapor",
"handwash_wool": "Lavagem manual e lã", "handwash_wool": "Lavagem manual e lãs 48'",
"high_dry": "Secagem de algodão", "high_dry": "Secagem de algodão",
"hqd_20_degrees": "Algodão 20℃", "hqd_20_degrees": "Algodão 20℃",
"hqd_allergy": "Cuidado de Alergias", "hqd_allergy": "Cuidado de Alergias",
@ -1335,13 +1381,13 @@
"hqd_babycare": "Roupa de bebé", "hqd_babycare": "Roupa de bebé",
"hqd_checkup": "Check-Up", "hqd_checkup": "Check-Up",
"hqd_cottons": "Algodão", "hqd_cottons": "Algodão",
"hqd_delicate": "Roupa delicada", "hqd_delicate": "Roupa delicada 50'",
"hqd_delicate_cradle": "Roupa delicada", "hqd_delicate_cradle": "Roupa delicada",
"hqd_dry": "Secagem de algodão", "hqd_dry": "Secagem de algodão",
"hqd_dry_synthetics": "Secos mistos", "hqd_dry_synthetics": "Secos mistos",
"hqd_duvet": "Edredãos", "hqd_duvet": "Edredãos",
"hqd_eco_40_60_degrees": "Eco 40-60", "hqd_eco_40_60_degrees": "Eco 40-60",
"hqd_handwash_wool": "Lãs", "hqd_handwash_wool": "Lãs 40'",
"hqd_i_refresh": "i-Refresh", "hqd_i_refresh": "i-Refresh",
"hqd_mix": "Misto", "hqd_mix": "Misto",
"hqd_quick_15": "Rápido 15'", "hqd_quick_15": "Rápido 15'",
@ -1352,7 +1398,7 @@
"hqd_shirts": "Camisas", "hqd_shirts": "Camisas",
"hqd_smart": "Smart A.I.", "hqd_smart": "Smart A.I.",
"hqd_spin": "Centrifugar", "hqd_spin": "Centrifugar",
"hqd_sport": "Desporto", "hqd_sport": "Desporto 25'",
"hqd_super_fast": "Rápido 39", "hqd_super_fast": "Rápido 39",
"hqd_synthetic_and_coloured": "Sintéticos", "hqd_synthetic_and_coloured": "Sintéticos",
"hygiene_59": "Higiene Plus 59'", "hygiene_59": "Higiene Plus 59'",
@ -1363,10 +1409,11 @@
"hygiene_pro_steam": "Hygiene Pro + Vapor", "hygiene_pro_steam": "Hygiene Pro + Vapor",
"intensive_40": "Intensivo 40°C", "intensive_40": "Intensivo 40°C",
"intensive_40_steam": "Intensivo 40°C + vapor", "intensive_40_steam": "Intensivo 40°C + vapor",
"iot_active_steam": "Vapor", "iot_active_steam": "Vapor 29'",
"iot_active_wash_steam": "Lavagem Ativa", "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",
@ -1399,17 +1446,19 @@
"iot_dry_technical_fabrics": "Tecidos técnicos", "iot_dry_technical_fabrics": "Tecidos técnicos",
"iot_dry_warm_embrace": "Secagem a quente", "iot_dry_warm_embrace": "Secagem a quente",
"iot_dry_wool_dry": "Secagem de lãs", "iot_dry_wool_dry": "Secagem de lãs",
"iot_easy_iron": "Engomar Fácil", "iot_easy_iron": "Engomar Fácil 39'",
"iot_fresh_care_steam": "Fresh Care + Vapor", "iot_fresh_care_steam": "Fresh Care + Vapor",
"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_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'",
"iot_rapid_a_class_60_steam": "Classe A rápida 60 + vapor", "iot_rapid_a_class_60_steam": "Classe A rápida 60 + vapor",
"iot_resistant_cotton_steam": "Algodão + Vapor", "iot_resistant_cotton_steam": "Algodão + Vapor",
"iot_shirts_steam": "Camisas + Vapor", "iot_shirts_steam": "Camisas + Vapor",
"iot_single_item_steam": "Peça única + Vapor", "iot_single_item_steam": "Peça única 20' + Vapor",
"iot_smart_wash": "Smart Wash", "iot_smart_wash": "Smart Wash",
"iot_soft_care_steam": "Soft Care + Steam", "iot_soft_care_steam": "Soft Care + Steam",
"iot_special_39_full_load_steam": "Special 39' + Vapor", "iot_special_39_full_load_steam": "Special 39' + Vapor",
@ -1443,7 +1492,7 @@
"iot_wash_coloured_bed_linen": "Roupa de cama de cores", "iot_wash_coloured_bed_linen": "Roupa de cama de cores",
"iot_wash_coloured_bed_linen_steam": "Roupa de cama de cores + vapor", "iot_wash_coloured_bed_linen_steam": "Roupa de cama de cores + vapor",
"iot_wash_coloured_curtains": "Cortinas de cor", "iot_wash_coloured_curtains": "Cortinas de cor",
"iot_wash_coloured_shirts": "Camisas de cor", "iot_wash_coloured_shirts": "Camisas de cor 59'",
"iot_wash_coloured_shirts_steam": "Camisas de cor + vapor", "iot_wash_coloured_shirts_steam": "Camisas de cor + vapor",
"iot_wash_coloured_steam": "Cores + Vapor", "iot_wash_coloured_steam": "Cores + Vapor",
"iot_wash_coloured_tableclothes": "Toalhas de mesa de cor", "iot_wash_coloured_tableclothes": "Toalhas de mesa de cor",
@ -1480,7 +1529,7 @@
"iot_wash_down_jackets_zelig": "Blusões", "iot_wash_down_jackets_zelig": "Blusões",
"iot_wash_duvet": "Edredãos", "iot_wash_duvet": "Edredãos",
"iot_wash_fruit_stains": "Nódoas de fruta", "iot_wash_fruit_stains": "Nódoas de fruta",
"iot_wash_gym_fit": "Vestuário de ginásio - fitness", "iot_wash_gym_fit": "Vestuário de ginásio - fitness 59'",
"iot_wash_handwash": "Lavagem à mão", "iot_wash_handwash": "Lavagem à mão",
"iot_wash_handwash_colored": "Lavagem à mão cores", "iot_wash_handwash_colored": "Lavagem à mão cores",
"iot_wash_handwash_dark": "Lavagem à mão de escuros", "iot_wash_handwash_dark": "Lavagem à mão de escuros",
@ -1525,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",
@ -1543,6 +1593,7 @@
"iot_wash_wool": "Lãs", "iot_wash_wool": "Lãs",
"jeans": "Jeans", "jeans": "Jeans",
"jeans_60": "Jeans", "jeans_60": "Jeans",
"jeans_60_steam": "Gangas + vapor",
"low_dry": "Secos mistos", "low_dry": "Secos mistos",
"mixed": "Mistos", "mixed": "Mistos",
"mixed_and_colored_59": "Misto e Cores 59'", "mixed_and_colored_59": "Misto e Cores 59'",
@ -1566,7 +1617,7 @@
"rinse": "Lavagem", "rinse": "Lavagem",
"shirts_steam": "Camisas + Vapor", "shirts_steam": "Camisas + Vapor",
"silent_night": "Ciclo durante a noite", "silent_night": "Ciclo durante a noite",
"single_item": "Peça única", "single_item": "Peça única 20'",
"single_item_steam": "Peça única + Vapor", "single_item_steam": "Peça única + Vapor",
"smart_wash": "Smart Wash", "smart_wash": "Smart Wash",
"soft_care": "Cuidado Suave", "soft_care": "Cuidado Suave",
@ -1582,8 +1633,8 @@
"steam_39": "Vapor 39'", "steam_39": "Vapor 39'",
"steam_care_pro": "Steam Care Pro", "steam_care_pro": "Steam Care Pro",
"steam_care_pro_cotton": "Steam Care Pro - Algodões", "steam_care_pro_cotton": "Steam Care Pro - Algodões",
"steam_care_pro_delicates": "Steam Care Pro - Delicados", "steam_care_pro_delicates": "Steam Care Pro - Delicados 16'",
"steam_care_pro_synthetic": "Steam Care Pro - Sintéticos", "steam_care_pro_synthetic": "Steam Care Pro - Sintéticos 20'",
"steam_hygiene_plus": "Hygiene Plus Steam", "steam_hygiene_plus": "Hygiene Plus Steam",
"synthetics": "Sintéticos", "synthetics": "Sintéticos",
"synthetic_and_coloured": "Sintéticos e Cores", "synthetic_and_coloured": "Sintéticos e Cores",
@ -1595,7 +1646,7 @@
"wool": "Lãs", "wool": "Lãs",
"wool_and_delicates_49": "Lãs/Delicados 49'", "wool_and_delicates_49": "Lãs/Delicados 49'",
"wool_dry": "Secagem de lãs", "wool_dry": "Secagem de lãs",
"wool_soft_care": "Lãs & Cuidado Suavidade" "wool_soft_care": "Lãs & Cuidado Suavidade 48'"
}, },
"name": "Programa" "name": "Programa"
}, },
@ -1605,20 +1656,25 @@
"cheese": "Queijo", "cheese": "Queijo",
"chiller": "Quick cool", "chiller": "Quick cool",
"cold_drinks": "Soft chill", "cold_drinks": "Soft chill",
"cool_drink": "Cool Drink",
"eco": "Eco", "eco": "Eco",
"eco_mode": "Modo Eco", "eco_mode": "Modo Eco",
"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",
"no_mode_selected": "Nenhum modo selecionado", "no_mode_selected": "Nenhum modo selecionado",
"quick_cool": "QUICK COOL", "quick_cool": "QUICK COOL",
"sea_food": "Ready to cook meal", "sea_food": "Ready to cook meal",
"smart_mode_title": "Smart Mode",
"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",
"zero_fresh": "0° Fresh" "vegetables": "Vegetable",
"zero_fresh": "0°C Fresh"
}, },
"name": "Programa" "name": "Programa"
}, },
@ -1671,6 +1727,71 @@
"unknown": "unknown" "unknown": "unknown"
}, },
"name": "Nível de sujidade" "name": "Nível de sujidade"
},
"stain_type": {
"state": {
"baby_food": "Alimentos para bebés",
"bean_paste": "Sopa de feijão",
"blood": "Sangue",
"blueberry": "Mirtilo",
"blue_ink": "Tinta azul",
"butter": "Manteiga",
"chili_oil": "Óleo de pimentão",
"chili_sauce": "Molho de chili",
"chocolate": "Chocolate",
"coffe": "Café",
"coffee": "Café",
"color_pencil": "Lápis",
"cooking_oil": "Óleo alimentar",
"curry": "Caril",
"deodorant": "Desodorizante",
"egg": "Ovo",
"fruit": "Fruta",
"glue": "Cola",
"grass": "Relva",
"ice_cream": "Gelado",
"ketchup": "Ketchup",
"lip_gloss": "Brilho labial",
"mayonnaise": "Maionese",
"mech_grease": "Massa lubrificante mecânica",
"milk": "Leite",
"milk_tea": "Chá com leite",
"oil": "Petróleo",
"oil_pastel": "Pastel de óleo",
"perfume": "Perfume",
"rust": "Ferrugem",
"shoe_cream": "Graxa para sapatos",
"soil": "Solo",
"soy_sauce": "Molho De Soja",
"stain_level": "Nível da nódoa",
"sweat": "Suor",
"tea": "Chá",
"wine": "Vinho",
"unknown": "unknown"
},
"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": {
@ -1928,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": {
@ -2062,6 +2186,9 @@
} }
} }
} }
},
"my_zone": {
"name": "My Zone"
} }
}, },
"fan": { "fan": {

View File

@ -99,22 +99,25 @@
"auto_care_soil": "Auto Care", "auto_care_soil": "Auto Care",
"auto_hygiene": "Autoigienă", "auto_hygiene": "Autoigienă",
"auto_plus": "AutoPlus", "auto_plus": "AutoPlus",
"auto_plus_soil": "Auto Plus",
"auto_rapid": "Auto Rapid", "auto_rapid": "Auto Rapid",
"auto_rapid_soil": "Auto Rapid",
"auto_sensor": "Auto Sensor", "auto_sensor": "Auto Sensor",
"auto_sensor_soil": "Auto Sensor", "auto_sensor_soil": "Auto Sensor",
"auto_universal": "Auto Universal 50 - 60°C", "auto_universal": "Auto Universal 50-60°C",
"auto_universal_plus": "Auto Universal+ 65 - 75°C", "auto_universal_plus": "Auto Universal+ 65-75°C",
"auto_universal_plus_soil": "Auto Universal+ 65 - 75°C", "auto_universal_plus_soil": "Auto Universal+ 65-75°C",
"auto_universal_soil": "Auto Universal 50 - 60°C", "auto_universal_soil": "Auto Universal 50-60°C",
"auto_wash": "Spălare automată", "auto_wash": "Spălare automată",
"auto_wash_soil": "Spălare automată", "auto_wash_soil": "Spălare automată",
"classe_a_59": "Clasa A 59' 65°C", "classe_a_59": "Clasa A 59' 65°C",
"delicate": "Delicate 45°C", "delicate": "Delicate 45°C",
"dishwasher_care": "Ciclu de curățare a calcarului", "dishwasher_care": "Ciclu de curățare a calcarului",
"eco": "Eco", "eco": "Eco 45°C",
"eco_asynch": "Eco 45°C", "eco_asynch": "Eco 45°C",
"eco_bldc": "Eco 45°C", "eco_bldc": "Eco 45°C",
"eco_synch": "Eco 45°C", "eco_synch": "Eco 45°C",
"eco_voice": "Eco",
"gentle_wash": "Gentle wash", "gentle_wash": "Gentle wash",
"glass": "Sticlă", "glass": "Sticlă",
"glassware": "Sticlărie 45 °C", "glassware": "Sticlărie 45 °C",
@ -123,8 +126,9 @@
"hygiene_plus": "Igienă+ 75 °C", "hygiene_plus": "Igienă+ 75 °C",
"intensive": "Intensiv", "intensive": "Intensiv",
"intensive_rapid": "rapid intensiv", "intensive_rapid": "rapid intensiv",
"intensive_voice": "Intensiv",
"iot_auto_sensor": "Auto Sensor", "iot_auto_sensor": "Auto Sensor",
"iot_auto_universal_soil": "Auto Universal 50 - 60°C", "iot_auto_universal_soil": "Auto Universal 50-60°C",
"iot_auto_wash_soil": "Spălare automată", "iot_auto_wash_soil": "Spălare automată",
"iot_baby_care": "Îngrijirea bebelușilor", "iot_baby_care": "Îngrijirea bebelușilor",
"iot_breakfast": "Mic dejun", "iot_breakfast": "Mic dejun",
@ -164,6 +168,13 @@
"iot_super_wash": "Super spălare", "iot_super_wash": "Super spălare",
"iot_turbopower": "Putere Turbo", "iot_turbopower": "Putere Turbo",
"iot_universal": "Universal 60 °C", "iot_universal": "Universal 60 °C",
"iot_voice_automatic": "Automatic",
"iot_voice_delicate": "Delicate 45°C",
"iot_voice_eco": "Eco 45°C",
"iot_voice_intensive": "Intensiv 75°C",
"iot_voice_prewash": "Prespălare",
"iot_voice_rapid_59": "Rapid 59'",
"iot_voice_universal": "Universal 60 °C",
"iot_wok_grids_maxi_pans": "Recipiente speciale (Wok - Grătare & Oale mari)", "iot_wok_grids_maxi_pans": "Recipiente speciale (Wok - Grătare & Oale mari)",
"iot_wok_grids_maxi_pans_soil": "Recipiente speciale (Wok - Grătare & Oale mari)", "iot_wok_grids_maxi_pans_soil": "Recipiente speciale (Wok - Grătare & Oale mari)",
"iot_yes_quick_cycle": "Yes Quick", "iot_yes_quick_cycle": "Yes Quick",
@ -195,6 +206,7 @@
"ultra_silent": "Ultra Silențios 55°C", "ultra_silent": "Ultra Silențios 55°C",
"universal": "Universal 60 °C", "universal": "Universal 60 °C",
"universal_plus": "Universal Plus 70 °C", "universal_plus": "Universal Plus 70 °C",
"zone_wash": "Flex Zone Wash",
"zoom_39": "Zoom 39 min" "zoom_39": "Zoom 39 min"
}, },
"name": "Program" "name": "Program"
@ -328,14 +340,14 @@
"hqd_bulky": "Articole voluminoase", "hqd_bulky": "Articole voluminoase",
"hqd_casual": "Articole obișnuite", "hqd_casual": "Articole obișnuite",
"hqd_cold_wind_30": "Vânt rece 30 minute", "hqd_cold_wind_30": "Vânt rece 30 minute",
"hqd_cold_wind_timing": "Vânt rece", "hqd_cold_wind_timing": "Aer rece",
"hqd_cotton": "Bumbac", "hqd_cotton": "Bumbac",
"hqd_curtain": "Perdele", "hqd_curtain": "Perdele",
"hqd_delicate": "Delicate", "hqd_delicate": "Delicate",
"hqd_diaper": "Scutece", "hqd_diaper": "Scutece",
"hqd_duvet": "Cuvertură", "hqd_duvet": "Jachetă matlasată din fibre sintetice",
"hqd_feather": "Geci", "hqd_feather": "Jachetă matlasată din fibre naturale",
"hqd_hot_wind_timing": "Aer cald", "hqd_hot_wind_timing": "Îmbrățișare caldă",
"hqd_hygienic": "Igienizare", "hqd_hygienic": "Igienizare",
"hqd_i_refresh": "I-Refresh", "hqd_i_refresh": "I-Refresh",
"hqd_i_refresh_pro": "I-Refresh Pro", "hqd_i_refresh_pro": "I-Refresh Pro",
@ -345,10 +357,10 @@
"hqd_mix": "Mixte", "hqd_mix": "Mixte",
"hqd_night_dry": "Uscare peste noapte", "hqd_night_dry": "Uscare peste noapte",
"hqd_outdoor": "Outdoor", "hqd_outdoor": "Outdoor",
"hqd_precious_cure": "Precious cure", "hqd_precious_cure": "Precious Cure",
"hqd_quick_20": "Rapid 20", "hqd_quick_20": "Rapid 20",
"hqd_quick_30": "Rapid 30", "hqd_quick_30": "Rapid 30",
"hqd_quick_dry": "Uscare rapidă 30'", "hqd_quick_dry": "Uscare rapidă automată de 30'",
"hqd_quilt": "Pilote", "hqd_quilt": "Pilote",
"hqd_refresh": "Reîmprospătare", "hqd_refresh": "Reîmprospătare",
"hqd_school_uniform": "Uniformă școlară", "hqd_school_uniform": "Uniformă școlară",
@ -385,6 +397,8 @@
"iot_dry_gym_fit": "Articole sportive - Fitness", "iot_dry_gym_fit": "Articole sportive - Fitness",
"iot_dry_lingerie": "Lenjerie", "iot_dry_lingerie": "Lenjerie",
"iot_dry_mixed": "Mixte", "iot_dry_mixed": "Mixte",
"iot_dry_pet_accessories": "Accesorii pentru animale de casă",
"iot_dry_pet_hair_removal": "Îndepărtarea părului de animale de casă (pre-spălare)",
"iot_dry_playsuits": "Haine de joacă", "iot_dry_playsuits": "Haine de joacă",
"iot_dry_rapid_30": "Rapid 30", "iot_dry_rapid_30": "Rapid 30",
"iot_dry_rapid_59": "Rapid 59'.", "iot_dry_rapid_59": "Rapid 59'.",
@ -436,9 +450,9 @@
"state": { "state": {
"20_degrees_coloured_cottons": "20° Colorate și bumbac", "20_degrees_coloured_cottons": "20° Colorate și bumbac",
"20_degrees_new_energy_label": "20 °C", "20_degrees_new_energy_label": "20 °C",
"active_steam": "Abur", "active_steam": "Abur 29'",
"active_wash": "Spălare activă", "active_wash": "Spălare activă 20'",
"active_wash_steam": "Spălare activă", "active_wash_steam": "Spălare activă 20' + abur",
"allergy_care": "Îngrijire antialergică", "allergy_care": "Îngrijire antialergică",
"allergy_care_pro": "Îngrijire alergie pro", "allergy_care_pro": "Îngrijire alergie pro",
"all_in_one_49": "Toate în One 49'.", "all_in_one_49": "Toate în One 49'.",
@ -458,17 +472,17 @@
"cottons_steam": "Bumbac + Abur", "cottons_steam": "Bumbac + Abur",
"cotton_care_59": "Bumbac 59 Min", "cotton_care_59": "Bumbac 59 Min",
"delicate_59": "Delicate 59'", "delicate_59": "Delicate 59'",
"delicate_silk": "Mătase delicată", "delicate_silk": "Mătase delicată 59'",
"delicate_silk_steam": "Mătase delicată + abur", "delicate_silk_steam": "Mătase delicată + abur",
"delicati_59": "Delicate 59'", "delicati_59": "Delicate 59'",
"delicati_59_steam": "Delicate 59'", "delicati_59_steam": "Delicate 59'",
"drain_spin": "Drenare +și stoarcere", "drain_spin": "Drenare +și stoarcere",
"easy_iron": "Călcare ușoară", "easy_iron": "Călcare ușoară 39'",
"eco_40_60_new_energy_label": "Eco 40-60", "eco_40_60_new_energy_label": "Eco 40-60",
"extra_care": "Îngrijire Suplimentară", "extra_care": "Îngrijire Suplimentară",
"fitness": "Fitness Care", "fitness": "Fitness Care",
"fitness_care": "Fitness Care", "fitness_care": "Fitness Care",
"fresh_care": "Îngrijire proaspătă", "fresh_care": "Îngrijire proaspătă 59'",
"fresh_care_steam": "Îngrijire proaspătă + abur", "fresh_care_steam": "Îngrijire proaspătă + abur",
"handwash_wool": "Spălare manuală și lână", "handwash_wool": "Spălare manuală și lână",
"high_dry": "Uscarea bumbacului", "high_dry": "Uscarea bumbacului",
@ -478,13 +492,13 @@
"hqd_babycare": "Îngrijirea bebelușilor", "hqd_babycare": "Îngrijirea bebelușilor",
"hqd_checkup": "Verificare", "hqd_checkup": "Verificare",
"hqd_cottons": "Bumbac", "hqd_cottons": "Bumbac",
"hqd_delicate": "Delicate", "hqd_delicate": "Delicate 50'",
"hqd_delicate_cradle": "Delicate", "hqd_delicate_cradle": "Delicate",
"hqd_dry": "Uscarea bumbacului", "hqd_dry": "Uscarea bumbacului",
"hqd_dry_synthetics": "Uscarea fibrelor mixte", "hqd_dry_synthetics": "Uscarea fibrelor mixte",
"hqd_duvet": "Pătură", "hqd_duvet": "Pătură",
"hqd_eco_40_60_degrees": "Eco 40-60", "hqd_eco_40_60_degrees": "Eco 40-60",
"hqd_handwash_wool": "Lână", "hqd_handwash_wool": "Lână 40'",
"hqd_i_refresh": "i-Refresh", "hqd_i_refresh": "i-Refresh",
"hqd_mix": "Mixte", "hqd_mix": "Mixte",
"hqd_quick_15": "Rapid 15'", "hqd_quick_15": "Rapid 15'",
@ -495,7 +509,7 @@
"hqd_shirts": "Cămăși", "hqd_shirts": "Cămăși",
"hqd_smart": "Smart A.I.", "hqd_smart": "Smart A.I.",
"hqd_spin": "Stoarcere", "hqd_spin": "Stoarcere",
"hqd_sport": "Sport", "hqd_sport": "Sport 25'",
"hqd_super_fast": "Rapid 39", "hqd_super_fast": "Rapid 39",
"hqd_synthetic_and_coloured": "Sintetice", "hqd_synthetic_and_coloured": "Sintetice",
"hygiene_59": "Igiena Plus 59'", "hygiene_59": "Igiena Plus 59'",
@ -506,10 +520,11 @@
"hygiene_pro_steam": "Hygiene Pro + Abur", "hygiene_pro_steam": "Hygiene Pro + Abur",
"intensive_40": "Intensiv 40°C", "intensive_40": "Intensiv 40°C",
"intensive_40_steam": "Intensiv 40°C + Abur", "intensive_40_steam": "Intensiv 40°C + Abur",
"iot_active_steam": "Abur", "iot_active_steam": "Abur 29'",
"iot_active_wash_steam": "Spălare activă", "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",
@ -542,17 +557,19 @@
"iot_dry_technical_fabrics": "Materiale tehnice", "iot_dry_technical_fabrics": "Materiale tehnice",
"iot_dry_warm_embrace": "Uscarea în tambur", "iot_dry_warm_embrace": "Uscarea în tambur",
"iot_dry_wool_dry": "Uscarea lânii", "iot_dry_wool_dry": "Uscarea lânii",
"iot_easy_iron": "Călcare ușoară", "iot_easy_iron": "Călcare ușoară 39'",
"iot_fresh_care_steam": "Îngrijire proaspătă + abur", "iot_fresh_care_steam": "Îngrijire proaspătă + abur",
"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_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'",
"iot_rapid_a_class_60_steam": "Rapid Clasa A 60 + Abur", "iot_rapid_a_class_60_steam": "Rapid Clasa A 60 + Abur",
"iot_resistant_cotton_steam": "Bumbac + Abur", "iot_resistant_cotton_steam": "Bumbac + Abur",
"iot_shirts_steam": "Cămăși + Abur", "iot_shirts_steam": "Cămăși + Abur",
"iot_single_item_steam": "Un singur articol + abur", "iot_single_item_steam": "Un singur articol 20' + abur",
"iot_smart_wash": "Spălare inteligentă", "iot_smart_wash": "Spălare inteligentă",
"iot_soft_care_steam": "Soft Care + Steam", "iot_soft_care_steam": "Soft Care + Steam",
"iot_special_39_full_load_steam": "Special 39' + abur", "iot_special_39_full_load_steam": "Special 39' + abur",
@ -586,7 +603,7 @@
"iot_wash_coloured_bed_linen": "Lenjerie de pat colorată", "iot_wash_coloured_bed_linen": "Lenjerie de pat colorată",
"iot_wash_coloured_bed_linen_steam": "Lenjerie de pat colorată + Abur", "iot_wash_coloured_bed_linen_steam": "Lenjerie de pat colorată + Abur",
"iot_wash_coloured_curtains": "Perdele colorate", "iot_wash_coloured_curtains": "Perdele colorate",
"iot_wash_coloured_shirts": "Cămăși colorate", "iot_wash_coloured_shirts": "Cămăși colorate 59'",
"iot_wash_coloured_shirts_steam": "Cămăși colorate + Abur", "iot_wash_coloured_shirts_steam": "Cămăși colorate + Abur",
"iot_wash_coloured_steam": "Culori + Abur", "iot_wash_coloured_steam": "Culori + Abur",
"iot_wash_coloured_tableclothes": "Fețe de masa colorate", "iot_wash_coloured_tableclothes": "Fețe de masa colorate",
@ -623,7 +640,7 @@
"iot_wash_down_jackets_zelig": "Geci", "iot_wash_down_jackets_zelig": "Geci",
"iot_wash_duvet": "Pătură", "iot_wash_duvet": "Pătură",
"iot_wash_fruit_stains": "Pete de fructe", "iot_wash_fruit_stains": "Pete de fructe",
"iot_wash_gym_fit": "Fitness - haine de fitness", "iot_wash_gym_fit": "Fitness - haine de fitness 59'",
"iot_wash_handwash": "Spălare manuală", "iot_wash_handwash": "Spălare manuală",
"iot_wash_handwash_colored": "Spălare manuală colorate", "iot_wash_handwash_colored": "Spălare manuală colorate",
"iot_wash_handwash_dark": "Spălare manuală închise la culoare", "iot_wash_handwash_dark": "Spălare manuală închise la culoare",
@ -668,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",
@ -686,6 +704,7 @@
"iot_wash_wool": "Lână", "iot_wash_wool": "Lână",
"jeans": "Blugi", "jeans": "Blugi",
"jeans_60": "Jeans", "jeans_60": "Jeans",
"jeans_60_steam": "Blugi + abur",
"low_dry": "Uscarea fibrelor mixte", "low_dry": "Uscarea fibrelor mixte",
"mixed": "Mixte", "mixed": "Mixte",
"mixed_and_colored_59": "Mixte și colorate 59", "mixed_and_colored_59": "Mixte și colorate 59",
@ -709,7 +728,7 @@
"rinse": "Clătire", "rinse": "Clătire",
"shirts_steam": "Cămăși + Abur", "shirts_steam": "Cămăși + Abur",
"silent_night": "Ciclu peste noapte", "silent_night": "Ciclu peste noapte",
"single_item": "Un singur articol", "single_item": "Un singur articol 20'",
"single_item_steam": "Un singur articol + abur", "single_item_steam": "Un singur articol + abur",
"smart_wash": "Spălare inteligentă", "smart_wash": "Spălare inteligentă",
"soft_care": "Îngrijire blândă", "soft_care": "Îngrijire blândă",
@ -725,8 +744,8 @@
"steam_39": "Abur 39'", "steam_39": "Abur 39'",
"steam_care_pro": "Steam Care Pro", "steam_care_pro": "Steam Care Pro",
"steam_care_pro_cotton": "Steam Care Pro - bumbac", "steam_care_pro_cotton": "Steam Care Pro - bumbac",
"steam_care_pro_delicates": "Steam Care Pro - delicate", "steam_care_pro_delicates": "Steam Care Pro - delicate 16'",
"steam_care_pro_synthetic": "Steam Care Pro - sintetice", "steam_care_pro_synthetic": "Steam Care Pro - sintetice 20'",
"steam_hygiene_plus": "Hygiene Plus Steam", "steam_hygiene_plus": "Hygiene Plus Steam",
"synthetics": "Sintetice", "synthetics": "Sintetice",
"synthetic_and_coloured": "Sintetice și colorate", "synthetic_and_coloured": "Sintetice și colorate",
@ -738,7 +757,7 @@
"wool": "Lână", "wool": "Lână",
"wool_and_delicates_49": "Lână/Delicate 49'", "wool_and_delicates_49": "Lână/Delicate 49'",
"wool_dry": "Uscarea lânii", "wool_dry": "Uscarea lânii",
"wool_soft_care": "Lână & Îngrijire Blândă" "wool_soft_care": "Lână & Îngrijire Blândă 48'"
}, },
"name": "Program" "name": "Program"
}, },
@ -748,20 +767,25 @@
"cheese": "Brânză", "cheese": "Brânză",
"chiller": "Quick cool", "chiller": "Quick cool",
"cold_drinks": "Soft chill", "cold_drinks": "Soft chill",
"cool_drink": "Cool Drink",
"eco": "Eco", "eco": "Eco",
"eco_mode": "Modul Eco", "eco_mode": "Modul Eco",
"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",
"no_mode_selected": "Niciun mod selectat", "no_mode_selected": "Niciun mod selectat",
"quick_cool": "QUICK COOL", "quick_cool": "QUICK COOL",
"sea_food": "Ready to cook meal", "sea_food": "Ready to cook meal",
"smart_mode_title": "Smart Mode",
"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",
"zero_fresh": "0° Fresh" "vegetables": "Vegetable",
"zero_fresh": "0°C Fresh"
}, },
"name": "Program" "name": "Program"
}, },
@ -887,6 +911,14 @@
}, },
"fan_speed": { "fan_speed": {
"name": "Viteza ventilatorului" "name": "Viteza ventilatorului"
},
"humidity_level": {
"state": {
"low": "Scăzută",
"mid": "Medie",
"high": "Crescută"
},
"name": "Nivelul de umiditate"
} }
}, },
"select": { "select": {
@ -956,22 +988,25 @@
"auto_care_soil": "Auto Care", "auto_care_soil": "Auto Care",
"auto_hygiene": "Autoigienă", "auto_hygiene": "Autoigienă",
"auto_plus": "AutoPlus", "auto_plus": "AutoPlus",
"auto_plus_soil": "Auto Plus",
"auto_rapid": "Auto Rapid", "auto_rapid": "Auto Rapid",
"auto_rapid_soil": "Auto Rapid",
"auto_sensor": "Auto Sensor", "auto_sensor": "Auto Sensor",
"auto_sensor_soil": "Auto Sensor", "auto_sensor_soil": "Auto Sensor",
"auto_universal": "Auto Universal 50 - 60°C", "auto_universal": "Auto Universal 50-60°C",
"auto_universal_plus": "Auto Universal+ 65 - 75°C", "auto_universal_plus": "Auto Universal+ 65-75°C",
"auto_universal_plus_soil": "Auto Universal+ 65 - 75°C", "auto_universal_plus_soil": "Auto Universal+ 65-75°C",
"auto_universal_soil": "Auto Universal 50 - 60°C", "auto_universal_soil": "Auto Universal 50-60°C",
"auto_wash": "Spălare automată", "auto_wash": "Spălare automată",
"auto_wash_soil": "Spălare automată", "auto_wash_soil": "Spălare automată",
"classe_a_59": "Clasa A 59' 65°C", "classe_a_59": "Clasa A 59' 65°C",
"delicate": "Delicate 45°C", "delicate": "Delicate 45°C",
"dishwasher_care": "Ciclu de curățare a calcarului", "dishwasher_care": "Ciclu de curățare a calcarului",
"eco": "Eco", "eco": "Eco 45°C",
"eco_asynch": "Eco 45°C", "eco_asynch": "Eco 45°C",
"eco_bldc": "Eco 45°C", "eco_bldc": "Eco 45°C",
"eco_synch": "Eco 45°C", "eco_synch": "Eco 45°C",
"eco_voice": "Eco",
"gentle_wash": "Gentle wash", "gentle_wash": "Gentle wash",
"glass": "Sticlă", "glass": "Sticlă",
"glassware": "Sticlărie 45 °C", "glassware": "Sticlărie 45 °C",
@ -980,8 +1015,9 @@
"hygiene_plus": "Igienă+ 75 °C", "hygiene_plus": "Igienă+ 75 °C",
"intensive": "Intensiv", "intensive": "Intensiv",
"intensive_rapid": "rapid intensiv", "intensive_rapid": "rapid intensiv",
"intensive_voice": "Intensiv",
"iot_auto_sensor": "Auto Sensor", "iot_auto_sensor": "Auto Sensor",
"iot_auto_universal_soil": "Auto Universal 50 - 60°C", "iot_auto_universal_soil": "Auto Universal 50-60°C",
"iot_auto_wash_soil": "Spălare automată", "iot_auto_wash_soil": "Spălare automată",
"iot_baby_care": "Îngrijirea bebelușilor", "iot_baby_care": "Îngrijirea bebelușilor",
"iot_breakfast": "Mic dejun", "iot_breakfast": "Mic dejun",
@ -1021,6 +1057,13 @@
"iot_super_wash": "Super spălare", "iot_super_wash": "Super spălare",
"iot_turbopower": "Putere Turbo", "iot_turbopower": "Putere Turbo",
"iot_universal": "Universal 60 °C", "iot_universal": "Universal 60 °C",
"iot_voice_automatic": "Automatic",
"iot_voice_delicate": "Delicate 45°C",
"iot_voice_eco": "Eco 45°C",
"iot_voice_intensive": "Intensiv 75°C",
"iot_voice_prewash": "Prespălare",
"iot_voice_rapid_59": "Rapid 59'",
"iot_voice_universal": "Universal 60 °C",
"iot_wok_grids_maxi_pans": "Recipiente speciale (Wok - Grătare & Oale mari)", "iot_wok_grids_maxi_pans": "Recipiente speciale (Wok - Grătare & Oale mari)",
"iot_wok_grids_maxi_pans_soil": "Recipiente speciale (Wok - Grătare & Oale mari)", "iot_wok_grids_maxi_pans_soil": "Recipiente speciale (Wok - Grătare & Oale mari)",
"iot_yes_quick_cycle": "Yes Quick", "iot_yes_quick_cycle": "Yes Quick",
@ -1052,6 +1095,7 @@
"ultra_silent": "Ultra Silențios 55°C", "ultra_silent": "Ultra Silențios 55°C",
"universal": "Universal 60 °C", "universal": "Universal 60 °C",
"universal_plus": "Universal Plus 70 °C", "universal_plus": "Universal Plus 70 °C",
"zone_wash": "Flex Zone Wash",
"zoom_39": "Zoom 39 min" "zoom_39": "Zoom 39 min"
}, },
"name": "Program" "name": "Program"
@ -1185,14 +1229,14 @@
"hqd_bulky": "Articole voluminoase", "hqd_bulky": "Articole voluminoase",
"hqd_casual": "Articole obișnuite", "hqd_casual": "Articole obișnuite",
"hqd_cold_wind_30": "Vânt rece 30 minute", "hqd_cold_wind_30": "Vânt rece 30 minute",
"hqd_cold_wind_timing": "Vânt rece", "hqd_cold_wind_timing": "Aer rece",
"hqd_cotton": "Bumbac", "hqd_cotton": "Bumbac",
"hqd_curtain": "Perdele", "hqd_curtain": "Perdele",
"hqd_delicate": "Delicate", "hqd_delicate": "Delicate",
"hqd_diaper": "Scutece", "hqd_diaper": "Scutece",
"hqd_duvet": "Cuvertură", "hqd_duvet": "Jachetă matlasată din fibre sintetice",
"hqd_feather": "Geci", "hqd_feather": "Jachetă matlasată din fibre naturale",
"hqd_hot_wind_timing": "Aer cald", "hqd_hot_wind_timing": "Îmbrățișare caldă",
"hqd_hygienic": "Igienizare", "hqd_hygienic": "Igienizare",
"hqd_i_refresh": "I-Refresh", "hqd_i_refresh": "I-Refresh",
"hqd_i_refresh_pro": "I-Refresh Pro", "hqd_i_refresh_pro": "I-Refresh Pro",
@ -1202,10 +1246,10 @@
"hqd_mix": "Mixte", "hqd_mix": "Mixte",
"hqd_night_dry": "Uscare peste noapte", "hqd_night_dry": "Uscare peste noapte",
"hqd_outdoor": "Outdoor", "hqd_outdoor": "Outdoor",
"hqd_precious_cure": "Precious cure", "hqd_precious_cure": "Precious Cure",
"hqd_quick_20": "Rapid 20", "hqd_quick_20": "Rapid 20",
"hqd_quick_30": "Rapid 30", "hqd_quick_30": "Rapid 30",
"hqd_quick_dry": "Uscare rapidă 30'", "hqd_quick_dry": "Uscare rapidă automată de 30'",
"hqd_quilt": "Pilote", "hqd_quilt": "Pilote",
"hqd_refresh": "Reîmprospătare", "hqd_refresh": "Reîmprospătare",
"hqd_school_uniform": "Uniformă școlară", "hqd_school_uniform": "Uniformă școlară",
@ -1242,6 +1286,8 @@
"iot_dry_gym_fit": "Articole sportive - Fitness", "iot_dry_gym_fit": "Articole sportive - Fitness",
"iot_dry_lingerie": "Lenjerie", "iot_dry_lingerie": "Lenjerie",
"iot_dry_mixed": "Mixte", "iot_dry_mixed": "Mixte",
"iot_dry_pet_accessories": "Accesorii pentru animale de casă",
"iot_dry_pet_hair_removal": "Îndepărtarea părului de animale de casă (pre-spălare)",
"iot_dry_playsuits": "Haine de joacă", "iot_dry_playsuits": "Haine de joacă",
"iot_dry_rapid_30": "Rapid 30", "iot_dry_rapid_30": "Rapid 30",
"iot_dry_rapid_59": "Rapid 59'.", "iot_dry_rapid_59": "Rapid 59'.",
@ -1293,9 +1339,9 @@
"state": { "state": {
"20_degrees_coloured_cottons": "20° Colorate și bumbac", "20_degrees_coloured_cottons": "20° Colorate și bumbac",
"20_degrees_new_energy_label": "20 °C", "20_degrees_new_energy_label": "20 °C",
"active_steam": "Abur", "active_steam": "Abur 29'",
"active_wash": "Spălare activă", "active_wash": "Spălare activă 20'",
"active_wash_steam": "Spălare activă", "active_wash_steam": "Spălare activă 20' + abur",
"allergy_care": "Îngrijire antialergică", "allergy_care": "Îngrijire antialergică",
"allergy_care_pro": "Îngrijire alergie pro", "allergy_care_pro": "Îngrijire alergie pro",
"all_in_one_49": "Toate în One 49'.", "all_in_one_49": "Toate în One 49'.",
@ -1315,17 +1361,17 @@
"cottons_steam": "Bumbac + Abur", "cottons_steam": "Bumbac + Abur",
"cotton_care_59": "Bumbac 59 Min", "cotton_care_59": "Bumbac 59 Min",
"delicate_59": "Delicate 59'", "delicate_59": "Delicate 59'",
"delicate_silk": "Mătase delicată", "delicate_silk": "Mătase delicată 59'",
"delicate_silk_steam": "Mătase delicată + abur", "delicate_silk_steam": "Mătase delicată + abur",
"delicati_59": "Delicate 59'", "delicati_59": "Delicate 59'",
"delicati_59_steam": "Delicate 59'", "delicati_59_steam": "Delicate 59'",
"drain_spin": "Drenare +și stoarcere", "drain_spin": "Drenare +și stoarcere",
"easy_iron": "Călcare ușoară", "easy_iron": "Călcare ușoară 39'",
"eco_40_60_new_energy_label": "Eco 40-60", "eco_40_60_new_energy_label": "Eco 40-60",
"extra_care": "Îngrijire Suplimentară", "extra_care": "Îngrijire Suplimentară",
"fitness": "Fitness Care", "fitness": "Fitness Care",
"fitness_care": "Fitness Care", "fitness_care": "Fitness Care",
"fresh_care": "Îngrijire proaspătă", "fresh_care": "Îngrijire proaspătă 59'",
"fresh_care_steam": "Îngrijire proaspătă + abur", "fresh_care_steam": "Îngrijire proaspătă + abur",
"handwash_wool": "Spălare manuală și lână", "handwash_wool": "Spălare manuală și lână",
"high_dry": "Uscarea bumbacului", "high_dry": "Uscarea bumbacului",
@ -1335,13 +1381,13 @@
"hqd_babycare": "Îngrijirea bebelușilor", "hqd_babycare": "Îngrijirea bebelușilor",
"hqd_checkup": "Verificare", "hqd_checkup": "Verificare",
"hqd_cottons": "Bumbac", "hqd_cottons": "Bumbac",
"hqd_delicate": "Delicate", "hqd_delicate": "Delicate 50'",
"hqd_delicate_cradle": "Delicate", "hqd_delicate_cradle": "Delicate",
"hqd_dry": "Uscarea bumbacului", "hqd_dry": "Uscarea bumbacului",
"hqd_dry_synthetics": "Uscarea fibrelor mixte", "hqd_dry_synthetics": "Uscarea fibrelor mixte",
"hqd_duvet": "Pătură", "hqd_duvet": "Pătură",
"hqd_eco_40_60_degrees": "Eco 40-60", "hqd_eco_40_60_degrees": "Eco 40-60",
"hqd_handwash_wool": "Lână", "hqd_handwash_wool": "Lână 40'",
"hqd_i_refresh": "i-Refresh", "hqd_i_refresh": "i-Refresh",
"hqd_mix": "Mixte", "hqd_mix": "Mixte",
"hqd_quick_15": "Rapid 15'", "hqd_quick_15": "Rapid 15'",
@ -1352,7 +1398,7 @@
"hqd_shirts": "Cămăși", "hqd_shirts": "Cămăși",
"hqd_smart": "Smart A.I.", "hqd_smart": "Smart A.I.",
"hqd_spin": "Stoarcere", "hqd_spin": "Stoarcere",
"hqd_sport": "Sport", "hqd_sport": "Sport 25'",
"hqd_super_fast": "Rapid 39", "hqd_super_fast": "Rapid 39",
"hqd_synthetic_and_coloured": "Sintetice", "hqd_synthetic_and_coloured": "Sintetice",
"hygiene_59": "Igiena Plus 59'", "hygiene_59": "Igiena Plus 59'",
@ -1363,10 +1409,11 @@
"hygiene_pro_steam": "Hygiene Pro + Abur", "hygiene_pro_steam": "Hygiene Pro + Abur",
"intensive_40": "Intensiv 40°C", "intensive_40": "Intensiv 40°C",
"intensive_40_steam": "Intensiv 40°C + Abur", "intensive_40_steam": "Intensiv 40°C + Abur",
"iot_active_steam": "Abur", "iot_active_steam": "Abur 29'",
"iot_active_wash_steam": "Spălare activă", "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",
@ -1399,17 +1446,19 @@
"iot_dry_technical_fabrics": "Materiale tehnice", "iot_dry_technical_fabrics": "Materiale tehnice",
"iot_dry_warm_embrace": "Uscarea în tambur", "iot_dry_warm_embrace": "Uscarea în tambur",
"iot_dry_wool_dry": "Uscarea lânii", "iot_dry_wool_dry": "Uscarea lânii",
"iot_easy_iron": "Călcare ușoară", "iot_easy_iron": "Călcare ușoară 39'",
"iot_fresh_care_steam": "Îngrijire proaspătă + abur", "iot_fresh_care_steam": "Îngrijire proaspătă + abur",
"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_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'",
"iot_rapid_a_class_60_steam": "Rapid Clasa A 60 + Abur", "iot_rapid_a_class_60_steam": "Rapid Clasa A 60 + Abur",
"iot_resistant_cotton_steam": "Bumbac + Abur", "iot_resistant_cotton_steam": "Bumbac + Abur",
"iot_shirts_steam": "Cămăși + Abur", "iot_shirts_steam": "Cămăși + Abur",
"iot_single_item_steam": "Un singur articol + abur", "iot_single_item_steam": "Un singur articol 20' + abur",
"iot_smart_wash": "Spălare inteligentă", "iot_smart_wash": "Spălare inteligentă",
"iot_soft_care_steam": "Soft Care + Steam", "iot_soft_care_steam": "Soft Care + Steam",
"iot_special_39_full_load_steam": "Special 39' + abur", "iot_special_39_full_load_steam": "Special 39' + abur",
@ -1443,7 +1492,7 @@
"iot_wash_coloured_bed_linen": "Lenjerie de pat colorată", "iot_wash_coloured_bed_linen": "Lenjerie de pat colorată",
"iot_wash_coloured_bed_linen_steam": "Lenjerie de pat colorată + Abur", "iot_wash_coloured_bed_linen_steam": "Lenjerie de pat colorată + Abur",
"iot_wash_coloured_curtains": "Perdele colorate", "iot_wash_coloured_curtains": "Perdele colorate",
"iot_wash_coloured_shirts": "Cămăși colorate", "iot_wash_coloured_shirts": "Cămăși colorate 59'",
"iot_wash_coloured_shirts_steam": "Cămăși colorate + Abur", "iot_wash_coloured_shirts_steam": "Cămăși colorate + Abur",
"iot_wash_coloured_steam": "Culori + Abur", "iot_wash_coloured_steam": "Culori + Abur",
"iot_wash_coloured_tableclothes": "Fețe de masa colorate", "iot_wash_coloured_tableclothes": "Fețe de masa colorate",
@ -1480,7 +1529,7 @@
"iot_wash_down_jackets_zelig": "Geci", "iot_wash_down_jackets_zelig": "Geci",
"iot_wash_duvet": "Pătură", "iot_wash_duvet": "Pătură",
"iot_wash_fruit_stains": "Pete de fructe", "iot_wash_fruit_stains": "Pete de fructe",
"iot_wash_gym_fit": "Fitness - haine de fitness", "iot_wash_gym_fit": "Fitness - haine de fitness 59'",
"iot_wash_handwash": "Spălare manuală", "iot_wash_handwash": "Spălare manuală",
"iot_wash_handwash_colored": "Spălare manuală colorate", "iot_wash_handwash_colored": "Spălare manuală colorate",
"iot_wash_handwash_dark": "Spălare manuală închise la culoare", "iot_wash_handwash_dark": "Spălare manuală închise la culoare",
@ -1525,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",
@ -1543,6 +1593,7 @@
"iot_wash_wool": "Lână", "iot_wash_wool": "Lână",
"jeans": "Blugi", "jeans": "Blugi",
"jeans_60": "Jeans", "jeans_60": "Jeans",
"jeans_60_steam": "Blugi + abur",
"low_dry": "Uscarea fibrelor mixte", "low_dry": "Uscarea fibrelor mixte",
"mixed": "Mixte", "mixed": "Mixte",
"mixed_and_colored_59": "Mixte și colorate 59", "mixed_and_colored_59": "Mixte și colorate 59",
@ -1566,7 +1617,7 @@
"rinse": "Clătire", "rinse": "Clătire",
"shirts_steam": "Cămăși + Abur", "shirts_steam": "Cămăși + Abur",
"silent_night": "Ciclu peste noapte", "silent_night": "Ciclu peste noapte",
"single_item": "Un singur articol", "single_item": "Un singur articol 20'",
"single_item_steam": "Un singur articol + abur", "single_item_steam": "Un singur articol + abur",
"smart_wash": "Spălare inteligentă", "smart_wash": "Spălare inteligentă",
"soft_care": "Îngrijire blândă", "soft_care": "Îngrijire blândă",
@ -1582,8 +1633,8 @@
"steam_39": "Abur 39'", "steam_39": "Abur 39'",
"steam_care_pro": "Steam Care Pro", "steam_care_pro": "Steam Care Pro",
"steam_care_pro_cotton": "Steam Care Pro - bumbac", "steam_care_pro_cotton": "Steam Care Pro - bumbac",
"steam_care_pro_delicates": "Steam Care Pro - delicate", "steam_care_pro_delicates": "Steam Care Pro - delicate 16'",
"steam_care_pro_synthetic": "Steam Care Pro - sintetice", "steam_care_pro_synthetic": "Steam Care Pro - sintetice 20'",
"steam_hygiene_plus": "Hygiene Plus Steam", "steam_hygiene_plus": "Hygiene Plus Steam",
"synthetics": "Sintetice", "synthetics": "Sintetice",
"synthetic_and_coloured": "Sintetice și colorate", "synthetic_and_coloured": "Sintetice și colorate",
@ -1595,7 +1646,7 @@
"wool": "Lână", "wool": "Lână",
"wool_and_delicates_49": "Lână/Delicate 49'", "wool_and_delicates_49": "Lână/Delicate 49'",
"wool_dry": "Uscarea lânii", "wool_dry": "Uscarea lânii",
"wool_soft_care": "Lână & Îngrijire Blândă" "wool_soft_care": "Lână & Îngrijire Blândă 48'"
}, },
"name": "Program" "name": "Program"
}, },
@ -1605,20 +1656,25 @@
"cheese": "Brânză", "cheese": "Brânză",
"chiller": "Quick cool", "chiller": "Quick cool",
"cold_drinks": "Soft chill", "cold_drinks": "Soft chill",
"cool_drink": "Cool Drink",
"eco": "Eco", "eco": "Eco",
"eco_mode": "Modul Eco", "eco_mode": "Modul Eco",
"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",
"no_mode_selected": "Niciun mod selectat", "no_mode_selected": "Niciun mod selectat",
"quick_cool": "QUICK COOL", "quick_cool": "QUICK COOL",
"sea_food": "Ready to cook meal", "sea_food": "Ready to cook meal",
"smart_mode_title": "Smart Mode",
"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",
"zero_fresh": "0° Fresh" "vegetables": "Vegetable",
"zero_fresh": "0°C Fresh"
}, },
"name": "Program" "name": "Program"
}, },
@ -1671,6 +1727,71 @@
"unknown": "unknown" "unknown": "unknown"
}, },
"name": "Nivel de murdărie" "name": "Nivel de murdărie"
},
"stain_type": {
"state": {
"baby_food": "Alimente pentru copii",
"bean_paste": "Supă de fasole",
"blood": "Sânge",
"blueberry": "Afine",
"blue_ink": "Cerneală albastră",
"butter": "Unt",
"chili_oil": "Ulei de chili",
"chili_sauce": "Sos de chili",
"chocolate": "Ciocolată",
"coffe": "Cafea",
"coffee": "Cafea",
"color_pencil": "Creion",
"cooking_oil": "Ulei de gătit",
"curry": "Curry",
"deodorant": "Deodorant",
"egg": "Ou",
"fruit": "Fructe",
"glue": "Lipici",
"grass": "Iarbă",
"ice_cream": "Înghețată",
"ketchup": "Ketchup",
"lip_gloss": "Luciu de buze",
"mayonnaise": "Maioneză",
"mech_grease": "Unsoare mecanică",
"milk": "Lapte",
"milk_tea": "Ceai cu lapte",
"oil": "Ulei",
"oil_pastel": "Culori pe bază de ulei",
"perfume": "Parfum",
"rust": "Rugină",
"shoe_cream": "Cremă pentru pantofi",
"soil": "Pământ",
"soy_sauce": "Sos de soia",
"stain_level": "Nivelul de pătare",
"sweat": "Sudoare",
"tea": "Ceai",
"wine": "Vin",
"unknown": "unknown"
},
"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": {
@ -1928,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": {
@ -2062,6 +2186,9 @@
} }
} }
} }
},
"my_zone": {
"name": "My Zone"
} }
}, },
"fan": { "fan": {

View File

@ -99,22 +99,25 @@
"auto_care_soil": "Auto Care", "auto_care_soil": "Auto Care",
"auto_hygiene": "Автоочистка", "auto_hygiene": "Автоочистка",
"auto_plus": "AutoPlus", "auto_plus": "AutoPlus",
"auto_plus_soil": "Авто плюс загрязнение",
"auto_rapid": "Быстрая Автомойка", "auto_rapid": "Быстрая Автомойка",
"auto_rapid_soil": "Авто быстрое загрязнение",
"auto_sensor": "Auto Sensor", "auto_sensor": "Auto Sensor",
"auto_sensor_soil": "Auto Sensor", "auto_sensor_soil": "Auto Sensor",
"auto_universal": "авто универсальная 50 - 60°C", "auto_universal": "авто универсальная 50-60°C",
"auto_universal_plus": "авто универсальная плюс 65 - 75°C", "auto_universal_plus": "авто универсальная плюс 65-75°C",
"auto_universal_plus_soil": "авто универсальная плюс 65 - 75°C", "auto_universal_plus_soil": "авто универсальная плюс 65-75°C",
"auto_universal_soil": "авто универсальная 50 - 60°C", "auto_universal_soil": "авто универсальная 50-60°C",
"auto_wash": "Auto Wash", "auto_wash": "Auto Wash",
"auto_wash_soil": "Auto Wash", "auto_wash_soil": "Auto Wash",
"classe_a_59": "а класс за 1 час 65°C", "classe_a_59": "а класс за 1 час 65°C",
"delicate": "деликатная 45°C", "delicate": "деликатная 45°C",
"dishwasher_care": "Цикл очистки от накипи", "dishwasher_care": "Цикл очистки от накипи",
"eco": "Эко", "eco": "эко 45°C",
"eco_asynch": "эко 45°C", "eco_asynch": "эко 45°C",
"eco_bldc": "эко 45°C", "eco_bldc": "эко 45°C",
"eco_synch": "эко 45°C", "eco_synch": "эко 45°C",
"eco_voice": "Eco",
"gentle_wash": "Gentle wash", "gentle_wash": "Gentle wash",
"glass": "Стекло", "glass": "Стекло",
"glassware": "стекло 45°C", "glassware": "стекло 45°C",
@ -123,8 +126,9 @@
"hygiene_plus": "гигиена+ 75°C", "hygiene_plus": "гигиена+ 75°C",
"intensive": "Интенсивная 40", "intensive": "Интенсивная 40",
"intensive_rapid": "интенcивная быcтрая", "intensive_rapid": "интенcивная быcтрая",
"intensive_voice": "Интенсивная 40",
"iot_auto_sensor": "Auto Sensor", "iot_auto_sensor": "Auto Sensor",
"iot_auto_universal_soil": "авто универсальная 50 - 60°C", "iot_auto_universal_soil": "авто универсальная 50-60°C",
"iot_auto_wash_soil": "Auto Wash", "iot_auto_wash_soil": "Auto Wash",
"iot_baby_care": "Детская одежда", "iot_baby_care": "Детская одежда",
"iot_breakfast": "Завтрак", "iot_breakfast": "Завтрак",
@ -164,6 +168,13 @@
"iot_super_wash": "Супермойка", "iot_super_wash": "Супермойка",
"iot_turbopower": "TurboPower", "iot_turbopower": "TurboPower",
"iot_universal": "универсальная 60°C", "iot_universal": "универсальная 60°C",
"iot_voice_automatic": "Automatic",
"iot_voice_delicate": "деликатная 45°C",
"iot_voice_eco": "эко 45°C",
"iot_voice_intensive": "Интенсивная 75°C",
"iot_voice_prewash": "предварительная мойка",
"iot_voice_rapid_59": "Быcтрая Мойkа 59'",
"iot_voice_universal": "универсальная 60°C",
"iot_wok_grids_maxi_pans": "Большие сковородки и решетки", "iot_wok_grids_maxi_pans": "Большие сковородки и решетки",
"iot_wok_grids_maxi_pans_soil": "Большие сковородки и решетки", "iot_wok_grids_maxi_pans_soil": "Большие сковородки и решетки",
"iot_yes_quick_cycle": "Yes Quick", "iot_yes_quick_cycle": "Yes Quick",
@ -195,6 +206,7 @@
"ultra_silent": "ультра тихая 55°с", "ultra_silent": "ультра тихая 55°с",
"universal": "универсальная 60°C", "universal": "универсальная 60°C",
"universal_plus": "универсальная плюс 70°C", "universal_plus": "универсальная плюс 70°C",
"zone_wash": "Flex Zone Wash",
"zoom_39": "Zoom 39 min" "zoom_39": "Zoom 39 min"
}, },
"name": "Программа" "name": "Программа"
@ -328,14 +340,14 @@
"hqd_bulky": "Объемные изделия", "hqd_bulky": "Объемные изделия",
"hqd_casual": "Повседневная одежда", "hqd_casual": "Повседневная одежда",
"hqd_cold_wind_30": "Прохладный обдув 30 минут", "hqd_cold_wind_30": "Прохладный обдув 30 минут",
"hqd_cold_wind_timing": "Прохладный обдув", "hqd_cold_wind_timing": "Холодный воздух",
"hqd_cotton": "Хлопок", "hqd_cotton": "Хлопок",
"hqd_curtain": "Шторы", "hqd_curtain": "Шторы",
"hqd_delicate": "Деликатные вещи", "hqd_delicate": "Деликатные вещи",
"hqd_diaper": "Пеленки", "hqd_diaper": "Пеленки",
"hqd_duvet": "Пуховое одеяло", "hqd_duvet": "Стеганая куртка из синтетического волокна",
"hqd_feather": "Пуховики", "hqd_feather": "Стеганая куртка из натурального волокна",
"hqd_hot_wind_timing": "Горячий воздух", "hqd_hot_wind_timing": "Обработка теплом",
"hqd_hygienic": "Санитарная обработка", "hqd_hygienic": "Санитарная обработка",
"hqd_i_refresh": "I-Refresh", "hqd_i_refresh": "I-Refresh",
"hqd_i_refresh_pro": "I-Refresh Pro", "hqd_i_refresh_pro": "I-Refresh Pro",
@ -345,10 +357,10 @@
"hqd_mix": "Смешанные ткани", "hqd_mix": "Смешанные ткани",
"hqd_night_dry": "Ночная сушка", "hqd_night_dry": "Ночная сушка",
"hqd_outdoor": "Outdoor", "hqd_outdoor": "Outdoor",
"hqd_precious_cure": "Precious cure", "hqd_precious_cure": "Precious Cure",
"hqd_quick_20": "Быстрая 20", "hqd_quick_20": "Быстрая 20",
"hqd_quick_30": "Быстрая 30", "hqd_quick_30": "Быстрая 30",
"hqd_quick_dry": "Быстрая сушка 30'", "hqd_quick_dry": "30-минутная автоматическая быстрая сушка",
"hqd_quilt": "Стеганые одеяла", "hqd_quilt": "Стеганые одеяла",
"hqd_refresh": "Освежение", "hqd_refresh": "Освежение",
"hqd_school_uniform": "Школьная форма", "hqd_school_uniform": "Школьная форма",
@ -385,6 +397,8 @@
"iot_dry_gym_fit": "Одежда для спортзала Фитнес", "iot_dry_gym_fit": "Одежда для спортзала Фитнес",
"iot_dry_lingerie": "Белье", "iot_dry_lingerie": "Белье",
"iot_dry_mixed": "Смешанные ткани", "iot_dry_mixed": "Смешанные ткани",
"iot_dry_pet_accessories": "Аксессуары для домашних животных",
"iot_dry_pet_hair_removal": "Удаление шерсти домашних животных (предварительная стирка)",
"iot_dry_playsuits": "Пляжные костюмы", "iot_dry_playsuits": "Пляжные костюмы",
"iot_dry_rapid_30": "Быстрая 30'", "iot_dry_rapid_30": "Быстрая 30'",
"iot_dry_rapid_59": "Быстрая 59 мин.", "iot_dry_rapid_59": "Быстрая 59 мин.",
@ -436,9 +450,9 @@
"state": { "state": {
"20_degrees_coloured_cottons": "20° Цветные ткани и Хлопок", "20_degrees_coloured_cottons": "20° Цветные ткани и Хлопок",
"20_degrees_new_energy_label": "20°C", "20_degrees_new_energy_label": "20°C",
"active_steam": "Пар", "active_steam": "Пар 29'",
"active_wash": "Активная стирка", "active_wash": "Активная стирка 20'",
"active_wash_steam": "Активная стирка", "active_wash_steam": "Активная стирка 20' + пар",
"allergy_care": "Уход для аллергиков", "allergy_care": "Уход для аллергиков",
"allergy_care_pro": "Уход для аллергиков про", "allergy_care_pro": "Уход для аллергиков про",
"all_in_one_49": "Все в одном 49 мин.", "all_in_one_49": "Все в одном 49 мин.",
@ -458,19 +472,19 @@
"cottons_steam": "Хлопок + Пар", "cottons_steam": "Хлопок + Пар",
"cotton_care_59": "хлопок 59 минут", "cotton_care_59": "хлопок 59 минут",
"delicate_59": "Деликатная 59 мин.", "delicate_59": "Деликатная 59 мин.",
"delicate_silk": "Деликатная ткань (шелк)", "delicate_silk": "Деликатная ткань (шелк) 59'",
"delicate_silk_steam": "Деликатная ткань (шелк) + пар", "delicate_silk_steam": "Деликатная ткань (шелк) + пар",
"delicati_59": "Деликатная 59 мин.", "delicati_59": "Деликатная 59 мин.",
"delicati_59_steam": "Деликатная 59 мин.", "delicati_59_steam": "Деликатная 59 мин.",
"drain_spin": "Слив + отжим", "drain_spin": "Слив + отжим",
"easy_iron": "легкая глажка", "easy_iron": "легкая глажка 39'",
"eco_40_60_new_energy_label": "Eco 40-60", "eco_40_60_new_energy_label": "Eco 40-60",
"extra_care": "ЭКСТРА УХОД", "extra_care": "ЭКСТРА УХОД",
"fitness": "Фитнес", "fitness": "Фитнес",
"fitness_care": "Фитнес", "fitness_care": "Фитнес",
"fresh_care": "Свежесть", "fresh_care": "Свежесть 59'",
"fresh_care_steam": "Свежесть + пар", "fresh_care_steam": "Свежесть + пар",
"handwash_wool": "Ручная стирка и шерсть", "handwash_wool": "Ручная стирка и шерсть 48'",
"high_dry": "Сушка хлопка", "high_dry": "Сушка хлопка",
"hqd_20_degrees": "Хлопок 20℃", "hqd_20_degrees": "Хлопок 20℃",
"hqd_allergy": "Уход для аллергиков", "hqd_allergy": "Уход для аллергиков",
@ -478,13 +492,13 @@
"hqd_babycare": "Детская одежда", "hqd_babycare": "Детская одежда",
"hqd_checkup": "Проверка", "hqd_checkup": "Проверка",
"hqd_cottons": "Хлопок", "hqd_cottons": "Хлопок",
"hqd_delicate": "Деликатные вещи", "hqd_delicate": "Деликатные вещи 50'",
"hqd_delicate_cradle": "Деликатные вещи", "hqd_delicate_cradle": "Деликатные вещи",
"hqd_dry": "Сушка хлопка", "hqd_dry": "Сушка хлопка",
"hqd_dry_synthetics": "Сушка смешанных тканей", "hqd_dry_synthetics": "Сушка смешанных тканей",
"hqd_duvet": "Пуховое одеяло", "hqd_duvet": "Пуховое одеяло",
"hqd_eco_40_60_degrees": "Eco 40-60", "hqd_eco_40_60_degrees": "Eco 40-60",
"hqd_handwash_wool": "Шерсть", "hqd_handwash_wool": "Шерсть 40'",
"hqd_i_refresh": "i-Refresh", "hqd_i_refresh": "i-Refresh",
"hqd_mix": "Смешанные ткани", "hqd_mix": "Смешанные ткани",
"hqd_quick_15": "Быстрая 15 мин.", "hqd_quick_15": "Быстрая 15 мин.",
@ -495,7 +509,7 @@
"hqd_shirts": "Рубашки", "hqd_shirts": "Рубашки",
"hqd_smart": "Smart A.I.", "hqd_smart": "Smart A.I.",
"hqd_spin": "Отжим", "hqd_spin": "Отжим",
"hqd_sport": "Спорт", "hqd_sport": "Спорт 25'",
"hqd_super_fast": "Быстрая 39 мин.", "hqd_super_fast": "Быстрая 39 мин.",
"hqd_synthetic_and_coloured": "Синтетика", "hqd_synthetic_and_coloured": "Синтетика",
"hygiene_59": "ГИГИЕНИЧНАЯ ПЛЮС 59'", "hygiene_59": "ГИГИЕНИЧНАЯ ПЛЮС 59'",
@ -506,10 +520,11 @@
"hygiene_pro_steam": "Hygiene Pro + Пар", "hygiene_pro_steam": "Hygiene Pro + Пар",
"intensive_40": "Интенсивная 40°С", "intensive_40": "Интенсивная 40°С",
"intensive_40_steam": "Интенсивный пар 40°C +", "intensive_40_steam": "Интенсивный пар 40°C +",
"iot_active_steam": "Пар", "iot_active_steam": "Пар 29'",
"iot_active_wash_steam": "Активная стирка", "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": "Хлопок + Пар",
@ -542,17 +557,19 @@
"iot_dry_technical_fabrics": "Современные ткани", "iot_dry_technical_fabrics": "Современные ткани",
"iot_dry_warm_embrace": "Теплая машинная сушка", "iot_dry_warm_embrace": "Теплая машинная сушка",
"iot_dry_wool_dry": "Сушка шерсти", "iot_dry_wool_dry": "Сушка шерсти",
"iot_easy_iron": "легкая глажка", "iot_easy_iron": "легкая глажка 39'",
"iot_fresh_care_steam": "Свежесть + пар", "iot_fresh_care_steam": "Свежесть + пар",
"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_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'",
"iot_rapid_a_class_60_steam": "Быстрая Класс A 60 + пар", "iot_rapid_a_class_60_steam": "Быстрая Класс A 60 + пар",
"iot_resistant_cotton_steam": "Хлопок + Пар", "iot_resistant_cotton_steam": "Хлопок + Пар",
"iot_shirts_steam": "Рубашки + Пар", "iot_shirts_steam": "Рубашки + Пар",
"iot_single_item_steam": "Одна вещь + пар", "iot_single_item_steam": "Одна вещь 20' + пар",
"iot_smart_wash": "Smart Wash", "iot_smart_wash": "Smart Wash",
"iot_soft_care_steam": "Soft Care + Steam", "iot_soft_care_steam": "Soft Care + Steam",
"iot_special_39_full_load_steam": "Специальная 39 мин + пар", "iot_special_39_full_load_steam": "Специальная 39 мин + пар",
@ -586,7 +603,7 @@
"iot_wash_coloured_bed_linen": "Цветное постельное белье", "iot_wash_coloured_bed_linen": "Цветное постельное белье",
"iot_wash_coloured_bed_linen_steam": "Цветное постельное белье + пар", "iot_wash_coloured_bed_linen_steam": "Цветное постельное белье + пар",
"iot_wash_coloured_curtains": "Цветные шторы", "iot_wash_coloured_curtains": "Цветные шторы",
"iot_wash_coloured_shirts": "Цветные рубашки", "iot_wash_coloured_shirts": "Цветные рубашки 59'",
"iot_wash_coloured_shirts_steam": "Цветные рубашки + пар", "iot_wash_coloured_shirts_steam": "Цветные рубашки + пар",
"iot_wash_coloured_steam": "Цветные ткани + Пар", "iot_wash_coloured_steam": "Цветные ткани + Пар",
"iot_wash_coloured_tableclothes": "Цветные скатерти", "iot_wash_coloured_tableclothes": "Цветные скатерти",
@ -623,7 +640,7 @@
"iot_wash_down_jackets_zelig": "Пуховики", "iot_wash_down_jackets_zelig": "Пуховики",
"iot_wash_duvet": "Пуховое одеяло", "iot_wash_duvet": "Пуховое одеяло",
"iot_wash_fruit_stains": "Пятна от фруктов", "iot_wash_fruit_stains": "Пятна от фруктов",
"iot_wash_gym_fit": "Одежда для спортзала", "iot_wash_gym_fit": "Одежда для спортзала 59'",
"iot_wash_handwash": "Ручная стирка", "iot_wash_handwash": "Ручная стирка",
"iot_wash_handwash_colored": "Ручная стирка цветных тканей", "iot_wash_handwash_colored": "Ручная стирка цветных тканей",
"iot_wash_handwash_dark": "Ручная стирка темных тканей", "iot_wash_handwash_dark": "Ручная стирка темных тканей",
@ -668,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": "Синтетика + Пар",
@ -686,6 +704,7 @@
"iot_wash_wool": "Шерсть", "iot_wash_wool": "Шерсть",
"jeans": "Джинсы", "jeans": "Джинсы",
"jeans_60": "джинсы", "jeans_60": "джинсы",
"jeans_60_steam": "Джинсы + пар",
"low_dry": "Сушка смешанных тканей", "low_dry": "Сушка смешанных тканей",
"mixed": "Смешанные ткани", "mixed": "Смешанные ткани",
"mixed_and_colored_59": "Смешанные и цветные 59 мин.", "mixed_and_colored_59": "Смешанные и цветные 59 мин.",
@ -709,7 +728,7 @@
"rinse": "Полоскание", "rinse": "Полоскание",
"shirts_steam": "Рубашки + Пар", "shirts_steam": "Рубашки + Пар",
"silent_night": "Ночной цикл", "silent_night": "Ночной цикл",
"single_item": "Отдельный элемент", "single_item": "Отдельный элемент 20'",
"single_item_steam": "Одна вещь + пар", "single_item_steam": "Одна вещь + пар",
"smart_wash": "Smart Wash", "smart_wash": "Smart Wash",
"soft_care": "Деликатный уход", "soft_care": "Деликатный уход",
@ -725,8 +744,8 @@
"steam_39": "Пар 39 мин.", "steam_39": "Пар 39 мин.",
"steam_care_pro": "Steam Care Pro", "steam_care_pro": "Steam Care Pro",
"steam_care_pro_cotton": "Steam Care Pro — хлопок", "steam_care_pro_cotton": "Steam Care Pro — хлопок",
"steam_care_pro_delicates": "Steam Care Pro — деликатные вещи", "steam_care_pro_delicates": "Steam Care Pro — деликатные вещи 16'",
"steam_care_pro_synthetic": "Steam Care Pro — синтетика", "steam_care_pro_synthetic": "Steam Care Pro — синтетика 20'",
"steam_hygiene_plus": "Гигиена плюс парообработка", "steam_hygiene_plus": "Гигиена плюс парообработка",
"synthetics": "Синтетика", "synthetics": "Синтетика",
"synthetic_and_coloured": "Синтетика и цветные ткани", "synthetic_and_coloured": "Синтетика и цветные ткани",
@ -738,7 +757,7 @@
"wool": "Шерсть", "wool": "Шерсть",
"wool_and_delicates_49": "шерсть/деликатные 49'", "wool_and_delicates_49": "шерсть/деликатные 49'",
"wool_dry": "Сушка шерсти", "wool_dry": "Сушка шерсти",
"wool_soft_care": "шерсть & деликатный уход" "wool_soft_care": "шерсть & деликатный уход 48'"
}, },
"name": "Программа" "name": "Программа"
}, },
@ -748,20 +767,25 @@
"cheese": "Сыр", "cheese": "Сыр",
"chiller": "Quick cool", "chiller": "Quick cool",
"cold_drinks": "Soft chill", "cold_drinks": "Soft chill",
"cool_drink": "Cool Drink",
"eco": "Eco", "eco": "Eco",
"eco_mode": "Режим Eco", "eco_mode": "Режим Eco",
"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",
"no_mode_selected": "Режим не выбран", "no_mode_selected": "Режим не выбран",
"quick_cool": "БЫСТРОЕ ОХЛАЖДЕНИЕ", "quick_cool": "БЫСТРОЕ ОХЛАЖДЕНИЕ",
"sea_food": "Ready to cook meal", "sea_food": "Ready to cook meal",
"smart_mode_title": "Smart Mode",
"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",
"zero_fresh": "0° Fresh" "vegetables": "Vegetable",
"zero_fresh": "0°C Fresh"
}, },
"name": "Программа" "name": "Программа"
}, },
@ -887,6 +911,14 @@
}, },
"fan_speed": { "fan_speed": {
"name": "Скорость вентилятора" "name": "Скорость вентилятора"
},
"humidity_level": {
"state": {
"low": "Низк.",
"mid": "Средне",
"high": "Высок."
},
"name": "Уровень влажности"
} }
}, },
"select": { "select": {
@ -956,22 +988,25 @@
"auto_care_soil": "Auto Care", "auto_care_soil": "Auto Care",
"auto_hygiene": "Автоочистка", "auto_hygiene": "Автоочистка",
"auto_plus": "AutoPlus", "auto_plus": "AutoPlus",
"auto_plus_soil": "Авто плюс загрязнение",
"auto_rapid": "Быстрая Автомойка", "auto_rapid": "Быстрая Автомойка",
"auto_rapid_soil": "Авто быстрое загрязнение",
"auto_sensor": "Auto Sensor", "auto_sensor": "Auto Sensor",
"auto_sensor_soil": "Auto Sensor", "auto_sensor_soil": "Auto Sensor",
"auto_universal": "авто универсальная 50 - 60°C", "auto_universal": "авто универсальная 50-60°C",
"auto_universal_plus": "авто универсальная плюс 65 - 75°C", "auto_universal_plus": "авто универсальная плюс 65-75°C",
"auto_universal_plus_soil": "авто универсальная плюс 65 - 75°C", "auto_universal_plus_soil": "авто универсальная плюс 65-75°C",
"auto_universal_soil": "авто универсальная 50 - 60°C", "auto_universal_soil": "авто универсальная 50-60°C",
"auto_wash": "Auto Wash", "auto_wash": "Auto Wash",
"auto_wash_soil": "Auto Wash", "auto_wash_soil": "Auto Wash",
"classe_a_59": "а класс за 1 час 65°C", "classe_a_59": "а класс за 1 час 65°C",
"delicate": "деликатная 45°C", "delicate": "деликатная 45°C",
"dishwasher_care": "Цикл очистки от накипи", "dishwasher_care": "Цикл очистки от накипи",
"eco": "Эко", "eco": "эко 45°C",
"eco_asynch": "эко 45°C", "eco_asynch": "эко 45°C",
"eco_bldc": "эко 45°C", "eco_bldc": "эко 45°C",
"eco_synch": "эко 45°C", "eco_synch": "эко 45°C",
"eco_voice": "Eco",
"gentle_wash": "Gentle wash", "gentle_wash": "Gentle wash",
"glass": "Стекло", "glass": "Стекло",
"glassware": "стекло 45°C", "glassware": "стекло 45°C",
@ -980,8 +1015,9 @@
"hygiene_plus": "гигиена+ 75°C", "hygiene_plus": "гигиена+ 75°C",
"intensive": "Интенсивная 40", "intensive": "Интенсивная 40",
"intensive_rapid": "интенcивная быcтрая", "intensive_rapid": "интенcивная быcтрая",
"intensive_voice": "Интенсивная 40",
"iot_auto_sensor": "Auto Sensor", "iot_auto_sensor": "Auto Sensor",
"iot_auto_universal_soil": "авто универсальная 50 - 60°C", "iot_auto_universal_soil": "авто универсальная 50-60°C",
"iot_auto_wash_soil": "Auto Wash", "iot_auto_wash_soil": "Auto Wash",
"iot_baby_care": "Детская одежда", "iot_baby_care": "Детская одежда",
"iot_breakfast": "Завтрак", "iot_breakfast": "Завтрак",
@ -1021,6 +1057,13 @@
"iot_super_wash": "Супермойка", "iot_super_wash": "Супермойка",
"iot_turbopower": "TurboPower", "iot_turbopower": "TurboPower",
"iot_universal": "универсальная 60°C", "iot_universal": "универсальная 60°C",
"iot_voice_automatic": "Automatic",
"iot_voice_delicate": "деликатная 45°C",
"iot_voice_eco": "эко 45°C",
"iot_voice_intensive": "Интенсивная 75°C",
"iot_voice_prewash": "предварительная мойка",
"iot_voice_rapid_59": "Быcтрая Мойkа 59'",
"iot_voice_universal": "универсальная 60°C",
"iot_wok_grids_maxi_pans": "Большие сковородки и решетки", "iot_wok_grids_maxi_pans": "Большие сковородки и решетки",
"iot_wok_grids_maxi_pans_soil": "Большие сковородки и решетки", "iot_wok_grids_maxi_pans_soil": "Большие сковородки и решетки",
"iot_yes_quick_cycle": "Yes Quick", "iot_yes_quick_cycle": "Yes Quick",
@ -1052,6 +1095,7 @@
"ultra_silent": "ультра тихая 55°с", "ultra_silent": "ультра тихая 55°с",
"universal": "универсальная 60°C", "universal": "универсальная 60°C",
"universal_plus": "универсальная плюс 70°C", "universal_plus": "универсальная плюс 70°C",
"zone_wash": "Flex Zone Wash",
"zoom_39": "Zoom 39 min" "zoom_39": "Zoom 39 min"
}, },
"name": "Программа" "name": "Программа"
@ -1185,14 +1229,14 @@
"hqd_bulky": "Объемные изделия", "hqd_bulky": "Объемные изделия",
"hqd_casual": "Повседневная одежда", "hqd_casual": "Повседневная одежда",
"hqd_cold_wind_30": "Прохладный обдув 30 минут", "hqd_cold_wind_30": "Прохладный обдув 30 минут",
"hqd_cold_wind_timing": "Прохладный обдув", "hqd_cold_wind_timing": "Холодный воздух",
"hqd_cotton": "Хлопок", "hqd_cotton": "Хлопок",
"hqd_curtain": "Шторы", "hqd_curtain": "Шторы",
"hqd_delicate": "Деликатные вещи", "hqd_delicate": "Деликатные вещи",
"hqd_diaper": "Пеленки", "hqd_diaper": "Пеленки",
"hqd_duvet": "Пуховое одеяло", "hqd_duvet": "Стеганая куртка из синтетического волокна",
"hqd_feather": "Пуховики", "hqd_feather": "Стеганая куртка из натурального волокна",
"hqd_hot_wind_timing": "Горячий воздух", "hqd_hot_wind_timing": "Обработка теплом",
"hqd_hygienic": "Санитарная обработка", "hqd_hygienic": "Санитарная обработка",
"hqd_i_refresh": "I-Refresh", "hqd_i_refresh": "I-Refresh",
"hqd_i_refresh_pro": "I-Refresh Pro", "hqd_i_refresh_pro": "I-Refresh Pro",
@ -1202,10 +1246,10 @@
"hqd_mix": "Смешанные ткани", "hqd_mix": "Смешанные ткани",
"hqd_night_dry": "Ночная сушка", "hqd_night_dry": "Ночная сушка",
"hqd_outdoor": "Outdoor", "hqd_outdoor": "Outdoor",
"hqd_precious_cure": "Precious cure", "hqd_precious_cure": "Precious Cure",
"hqd_quick_20": "Быстрая 20", "hqd_quick_20": "Быстрая 20",
"hqd_quick_30": "Быстрая 30", "hqd_quick_30": "Быстрая 30",
"hqd_quick_dry": "Быстрая сушка 30'", "hqd_quick_dry": "30-минутная автоматическая быстрая сушка",
"hqd_quilt": "Стеганые одеяла", "hqd_quilt": "Стеганые одеяла",
"hqd_refresh": "Освежение", "hqd_refresh": "Освежение",
"hqd_school_uniform": "Школьная форма", "hqd_school_uniform": "Школьная форма",
@ -1242,6 +1286,8 @@
"iot_dry_gym_fit": "Одежда для спортзала Фитнес", "iot_dry_gym_fit": "Одежда для спортзала Фитнес",
"iot_dry_lingerie": "Белье", "iot_dry_lingerie": "Белье",
"iot_dry_mixed": "Смешанные ткани", "iot_dry_mixed": "Смешанные ткани",
"iot_dry_pet_accessories": "Аксессуары для домашних животных",
"iot_dry_pet_hair_removal": "Удаление шерсти домашних животных (предварительная стирка)",
"iot_dry_playsuits": "Пляжные костюмы", "iot_dry_playsuits": "Пляжные костюмы",
"iot_dry_rapid_30": "Быстрая 30'", "iot_dry_rapid_30": "Быстрая 30'",
"iot_dry_rapid_59": "Быстрая 59 мин.", "iot_dry_rapid_59": "Быстрая 59 мин.",
@ -1293,9 +1339,9 @@
"state": { "state": {
"20_degrees_coloured_cottons": "20° Цветные ткани и Хлопок", "20_degrees_coloured_cottons": "20° Цветные ткани и Хлопок",
"20_degrees_new_energy_label": "20°C", "20_degrees_new_energy_label": "20°C",
"active_steam": "Пар", "active_steam": "Пар 29'",
"active_wash": "Активная стирка", "active_wash": "Активная стирка 20'",
"active_wash_steam": "Активная стирка", "active_wash_steam": "Активная стирка 20' + пар",
"allergy_care": "Уход для аллергиков", "allergy_care": "Уход для аллергиков",
"allergy_care_pro": "Уход для аллергиков про", "allergy_care_pro": "Уход для аллергиков про",
"all_in_one_49": "Все в одном 49 мин.", "all_in_one_49": "Все в одном 49 мин.",
@ -1315,19 +1361,19 @@
"cottons_steam": "Хлопок + Пар", "cottons_steam": "Хлопок + Пар",
"cotton_care_59": "хлопок 59 минут", "cotton_care_59": "хлопок 59 минут",
"delicate_59": "Деликатная 59 мин.", "delicate_59": "Деликатная 59 мин.",
"delicate_silk": "Деликатная ткань (шелк)", "delicate_silk": "Деликатная ткань (шелк) 59'",
"delicate_silk_steam": "Деликатная ткань (шелк) + пар", "delicate_silk_steam": "Деликатная ткань (шелк) + пар",
"delicati_59": "Деликатная 59 мин.", "delicati_59": "Деликатная 59 мин.",
"delicati_59_steam": "Деликатная 59 мин.", "delicati_59_steam": "Деликатная 59 мин.",
"drain_spin": "Слив + отжим", "drain_spin": "Слив + отжим",
"easy_iron": "легкая глажка", "easy_iron": "легкая глажка 39'",
"eco_40_60_new_energy_label": "Eco 40-60", "eco_40_60_new_energy_label": "Eco 40-60",
"extra_care": "ЭКСТРА УХОД", "extra_care": "ЭКСТРА УХОД",
"fitness": "Фитнес", "fitness": "Фитнес",
"fitness_care": "Фитнес", "fitness_care": "Фитнес",
"fresh_care": "Свежесть", "fresh_care": "Свежесть 59'",
"fresh_care_steam": "Свежесть + пар", "fresh_care_steam": "Свежесть + пар",
"handwash_wool": "Ручная стирка и шерсть", "handwash_wool": "Ручная стирка и шерсть 48'",
"high_dry": "Сушка хлопка", "high_dry": "Сушка хлопка",
"hqd_20_degrees": "Хлопок 20℃", "hqd_20_degrees": "Хлопок 20℃",
"hqd_allergy": "Уход для аллергиков", "hqd_allergy": "Уход для аллергиков",
@ -1335,13 +1381,13 @@
"hqd_babycare": "Детская одежда", "hqd_babycare": "Детская одежда",
"hqd_checkup": "Проверка", "hqd_checkup": "Проверка",
"hqd_cottons": "Хлопок", "hqd_cottons": "Хлопок",
"hqd_delicate": "Деликатные вещи", "hqd_delicate": "Деликатные вещи 50'",
"hqd_delicate_cradle": "Деликатные вещи", "hqd_delicate_cradle": "Деликатные вещи",
"hqd_dry": "Сушка хлопка", "hqd_dry": "Сушка хлопка",
"hqd_dry_synthetics": "Сушка смешанных тканей", "hqd_dry_synthetics": "Сушка смешанных тканей",
"hqd_duvet": "Пуховое одеяло", "hqd_duvet": "Пуховое одеяло",
"hqd_eco_40_60_degrees": "Eco 40-60", "hqd_eco_40_60_degrees": "Eco 40-60",
"hqd_handwash_wool": "Шерсть", "hqd_handwash_wool": "Шерсть 40'",
"hqd_i_refresh": "i-Refresh", "hqd_i_refresh": "i-Refresh",
"hqd_mix": "Смешанные ткани", "hqd_mix": "Смешанные ткани",
"hqd_quick_15": "Быстрая 15 мин.", "hqd_quick_15": "Быстрая 15 мин.",
@ -1352,7 +1398,7 @@
"hqd_shirts": "Рубашки", "hqd_shirts": "Рубашки",
"hqd_smart": "Smart A.I.", "hqd_smart": "Smart A.I.",
"hqd_spin": "Отжим", "hqd_spin": "Отжим",
"hqd_sport": "Спорт", "hqd_sport": "Спорт 25'",
"hqd_super_fast": "Быстрая 39 мин.", "hqd_super_fast": "Быстрая 39 мин.",
"hqd_synthetic_and_coloured": "Синтетика", "hqd_synthetic_and_coloured": "Синтетика",
"hygiene_59": "ГИГИЕНИЧНАЯ ПЛЮС 59'", "hygiene_59": "ГИГИЕНИЧНАЯ ПЛЮС 59'",
@ -1363,10 +1409,11 @@
"hygiene_pro_steam": "Hygiene Pro + Пар", "hygiene_pro_steam": "Hygiene Pro + Пар",
"intensive_40": "Интенсивная 40°С", "intensive_40": "Интенсивная 40°С",
"intensive_40_steam": "Интенсивный пар 40°C +", "intensive_40_steam": "Интенсивный пар 40°C +",
"iot_active_steam": "Пар", "iot_active_steam": "Пар 29'",
"iot_active_wash_steam": "Активная стирка", "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": "Хлопок + Пар",
@ -1399,17 +1446,19 @@
"iot_dry_technical_fabrics": "Современные ткани", "iot_dry_technical_fabrics": "Современные ткани",
"iot_dry_warm_embrace": "Теплая машинная сушка", "iot_dry_warm_embrace": "Теплая машинная сушка",
"iot_dry_wool_dry": "Сушка шерсти", "iot_dry_wool_dry": "Сушка шерсти",
"iot_easy_iron": "легкая глажка", "iot_easy_iron": "легкая глажка 39'",
"iot_fresh_care_steam": "Свежесть + пар", "iot_fresh_care_steam": "Свежесть + пар",
"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_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'",
"iot_rapid_a_class_60_steam": "Быстрая Класс A 60 + пар", "iot_rapid_a_class_60_steam": "Быстрая Класс A 60 + пар",
"iot_resistant_cotton_steam": "Хлопок + Пар", "iot_resistant_cotton_steam": "Хлопок + Пар",
"iot_shirts_steam": "Рубашки + Пар", "iot_shirts_steam": "Рубашки + Пар",
"iot_single_item_steam": "Одна вещь + пар", "iot_single_item_steam": "Одна вещь 20' + пар",
"iot_smart_wash": "Smart Wash", "iot_smart_wash": "Smart Wash",
"iot_soft_care_steam": "Soft Care + Steam", "iot_soft_care_steam": "Soft Care + Steam",
"iot_special_39_full_load_steam": "Специальная 39 мин + пар", "iot_special_39_full_load_steam": "Специальная 39 мин + пар",
@ -1443,7 +1492,7 @@
"iot_wash_coloured_bed_linen": "Цветное постельное белье", "iot_wash_coloured_bed_linen": "Цветное постельное белье",
"iot_wash_coloured_bed_linen_steam": "Цветное постельное белье + пар", "iot_wash_coloured_bed_linen_steam": "Цветное постельное белье + пар",
"iot_wash_coloured_curtains": "Цветные шторы", "iot_wash_coloured_curtains": "Цветные шторы",
"iot_wash_coloured_shirts": "Цветные рубашки", "iot_wash_coloured_shirts": "Цветные рубашки 59'",
"iot_wash_coloured_shirts_steam": "Цветные рубашки + пар", "iot_wash_coloured_shirts_steam": "Цветные рубашки + пар",
"iot_wash_coloured_steam": "Цветные ткани + Пар", "iot_wash_coloured_steam": "Цветные ткани + Пар",
"iot_wash_coloured_tableclothes": "Цветные скатерти", "iot_wash_coloured_tableclothes": "Цветные скатерти",
@ -1480,7 +1529,7 @@
"iot_wash_down_jackets_zelig": "Пуховики", "iot_wash_down_jackets_zelig": "Пуховики",
"iot_wash_duvet": "Пуховое одеяло", "iot_wash_duvet": "Пуховое одеяло",
"iot_wash_fruit_stains": "Пятна от фруктов", "iot_wash_fruit_stains": "Пятна от фруктов",
"iot_wash_gym_fit": "Одежда для спортзала", "iot_wash_gym_fit": "Одежда для спортзала 59'",
"iot_wash_handwash": "Ручная стирка", "iot_wash_handwash": "Ручная стирка",
"iot_wash_handwash_colored": "Ручная стирка цветных тканей", "iot_wash_handwash_colored": "Ручная стирка цветных тканей",
"iot_wash_handwash_dark": "Ручная стирка темных тканей", "iot_wash_handwash_dark": "Ручная стирка темных тканей",
@ -1525,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": "Синтетика + Пар",
@ -1543,6 +1593,7 @@
"iot_wash_wool": "Шерсть", "iot_wash_wool": "Шерсть",
"jeans": "Джинсы", "jeans": "Джинсы",
"jeans_60": "джинсы", "jeans_60": "джинсы",
"jeans_60_steam": "Джинсы + пар",
"low_dry": "Сушка смешанных тканей", "low_dry": "Сушка смешанных тканей",
"mixed": "Смешанные ткани", "mixed": "Смешанные ткани",
"mixed_and_colored_59": "Смешанные и цветные 59 мин.", "mixed_and_colored_59": "Смешанные и цветные 59 мин.",
@ -1566,7 +1617,7 @@
"rinse": "Полоскание", "rinse": "Полоскание",
"shirts_steam": "Рубашки + Пар", "shirts_steam": "Рубашки + Пар",
"silent_night": "Ночной цикл", "silent_night": "Ночной цикл",
"single_item": "Отдельный элемент", "single_item": "Отдельный элемент 20'",
"single_item_steam": "Одна вещь + пар", "single_item_steam": "Одна вещь + пар",
"smart_wash": "Smart Wash", "smart_wash": "Smart Wash",
"soft_care": "Деликатный уход", "soft_care": "Деликатный уход",
@ -1582,8 +1633,8 @@
"steam_39": "Пар 39 мин.", "steam_39": "Пар 39 мин.",
"steam_care_pro": "Steam Care Pro", "steam_care_pro": "Steam Care Pro",
"steam_care_pro_cotton": "Steam Care Pro — хлопок", "steam_care_pro_cotton": "Steam Care Pro — хлопок",
"steam_care_pro_delicates": "Steam Care Pro — деликатные вещи", "steam_care_pro_delicates": "Steam Care Pro — деликатные вещи 16'",
"steam_care_pro_synthetic": "Steam Care Pro — синтетика", "steam_care_pro_synthetic": "Steam Care Pro — синтетика 20'",
"steam_hygiene_plus": "Гигиена плюс парообработка", "steam_hygiene_plus": "Гигиена плюс парообработка",
"synthetics": "Синтетика", "synthetics": "Синтетика",
"synthetic_and_coloured": "Синтетика и цветные ткани", "synthetic_and_coloured": "Синтетика и цветные ткани",
@ -1595,7 +1646,7 @@
"wool": "Шерсть", "wool": "Шерсть",
"wool_and_delicates_49": "шерсть/деликатные 49'", "wool_and_delicates_49": "шерсть/деликатные 49'",
"wool_dry": "Сушка шерсти", "wool_dry": "Сушка шерсти",
"wool_soft_care": "шерсть & деликатный уход" "wool_soft_care": "шерсть & деликатный уход 48'"
}, },
"name": "Программа" "name": "Программа"
}, },
@ -1605,20 +1656,25 @@
"cheese": "Сыр", "cheese": "Сыр",
"chiller": "Quick cool", "chiller": "Quick cool",
"cold_drinks": "Soft chill", "cold_drinks": "Soft chill",
"cool_drink": "Cool Drink",
"eco": "Eco", "eco": "Eco",
"eco_mode": "Режим Eco", "eco_mode": "Режим Eco",
"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",
"no_mode_selected": "Режим не выбран", "no_mode_selected": "Режим не выбран",
"quick_cool": "БЫСТРОЕ ОХЛАЖДЕНИЕ", "quick_cool": "БЫСТРОЕ ОХЛАЖДЕНИЕ",
"sea_food": "Ready to cook meal", "sea_food": "Ready to cook meal",
"smart_mode_title": "Smart Mode",
"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",
"zero_fresh": "0° Fresh" "vegetables": "Vegetable",
"zero_fresh": "0°C Fresh"
}, },
"name": "Программа" "name": "Программа"
}, },
@ -1671,6 +1727,71 @@
"unknown": "unknown" "unknown": "unknown"
}, },
"name": "Уровень загрязнения" "name": "Уровень загрязнения"
},
"stain_type": {
"state": {
"baby_food": "Детское питание",
"bean_paste": "Фасолевый суп",
"blood": "Кровь",
"blueberry": "Голубика",
"blue_ink": "Синие чернила",
"butter": "Масло",
"chili_oil": "Масло чили",
"chili_sauce": "Соус чили",
"chocolate": "Шоколад",
"coffe": "Кофе",
"coffee": "Кофе",
"color_pencil": "Карандаш",
"cooking_oil": "Растительное масло",
"curry": "Карри",
"deodorant": "Дезодорант",
"egg": "Яйцо",
"fruit": "Фрукты",
"glue": "Клей",
"grass": "Трава",
"ice_cream": "Мороженое",
"ketchup": "Кетчуп",
"lip_gloss": "Блеск для губ",
"mayonnaise": "Майонез",
"mech_grease": "Мех. смазка",
"milk": "Молоко",
"milk_tea": "Молочный чай",
"oil": "Растительное масло",
"oil_pastel": "Масляная пастель",
"perfume": "Парфюмерия",
"rust": "Ржавчина",
"shoe_cream": "Крем для обуви",
"soil": "Почва",
"soy_sauce": "Соевый Соус",
"stain_level": "Уровень загрязнения",
"sweat": "Пот",
"tea": "Чай",
"wine": "Вино",
"unknown": "unknown"
},
"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": {
@ -1928,6 +2049,9 @@
}, },
"aroma_time_off": { "aroma_time_off": {
"name": "Распылитель (Выкл.)" "name": "Распылитель (Выкл.)"
},
"my_zone_temp_sel": {
"name": "Заданная температура My Zone"
} }
}, },
"climate": { "climate": {
@ -2062,6 +2186,9 @@
} }
} }
} }
},
"my_zone": {
"name": "My Zone"
} }
}, },
"fan": { "fan": {

View File

@ -99,22 +99,25 @@
"auto_care_soil": "Auto Care", "auto_care_soil": "Auto Care",
"auto_hygiene": "Automatická Hygiena", "auto_hygiene": "Automatická Hygiena",
"auto_plus": "AutoPlus", "auto_plus": "AutoPlus",
"auto_plus_soil": "Auto Plus Znečistenie",
"auto_rapid": "Auto Rapid", "auto_rapid": "Auto Rapid",
"auto_rapid_soil": "Auto Rýchly Znečistenie",
"auto_sensor": "Auto Sensor", "auto_sensor": "Auto Sensor",
"auto_sensor_soil": "Auto Sensor", "auto_sensor_soil": "Auto Sensor",
"auto_universal": "Auto univerzálny 50 -60°C", "auto_universal": "Auto univerzálny 50 -60°C",
"auto_universal_plus": "Auto univerzálny plus 65 - 75°C", "auto_universal_plus": "Auto univerzálny plus 65-75°C",
"auto_universal_plus_soil": "Auto univerzálny plus 65 - 75°C", "auto_universal_plus_soil": "Auto univerzálny plus 65-75°C",
"auto_universal_soil": "Auto univerzálny 50 -60°C", "auto_universal_soil": "Auto univerzálny 50 -60°C",
"auto_wash": "Automatické pranie", "auto_wash": "Automatické pranie",
"auto_wash_soil": "Automatické pranie", "auto_wash_soil": "Automatické pranie",
"classe_a_59": "A trieda 1 h 65°C", "classe_a_59": "A trieda 1 h 65°C",
"delicate": "Jemný 45°C", "delicate": "Jemný 45°C",
"dishwasher_care": "Cyklus čistenia vodného kameňa", "dishwasher_care": "Cyklus čistenia vodného kameňa",
"eco": "Eko", "eco": "Eco 45°C",
"eco_asynch": "Eco 45°C", "eco_asynch": "Eco 45°C",
"eco_bldc": "Eco 45°C", "eco_bldc": "Eco 45°C",
"eco_synch": "Eco 45°C", "eco_synch": "Eco 45°C",
"eco_voice": "Eco",
"gentle_wash": "Gentle wash", "gentle_wash": "Gentle wash",
"glass": "Sklo", "glass": "Sklo",
"glassware": "Sklo 45 °C", "glassware": "Sklo 45 °C",
@ -123,6 +126,7 @@
"hygiene_plus": "Hygienické umývanie + 75 °C", "hygiene_plus": "Hygienické umývanie + 75 °C",
"intensive": "Intenzívne pranie", "intensive": "Intenzívne pranie",
"intensive_rapid": "intenzívny rýchly", "intensive_rapid": "intenzívny rýchly",
"intensive_voice": "Intenzívne pranie",
"iot_auto_sensor": "Auto Sensor", "iot_auto_sensor": "Auto Sensor",
"iot_auto_universal_soil": "Auto univerzálny 50 -60°C", "iot_auto_universal_soil": "Auto univerzálny 50 -60°C",
"iot_auto_wash_soil": "Automatické pranie", "iot_auto_wash_soil": "Automatické pranie",
@ -164,6 +168,13 @@
"iot_super_wash": "Super Wash", "iot_super_wash": "Super Wash",
"iot_turbopower": "Turbo Power", "iot_turbopower": "Turbo Power",
"iot_universal": "Univerzálne 60 °C", "iot_universal": "Univerzálne 60 °C",
"iot_voice_automatic": "Automatic",
"iot_voice_delicate": "Jemný 45°C",
"iot_voice_eco": "Eco 45°C",
"iot_voice_intensive": "Intenzívne pranie 75°C",
"iot_voice_prewash": "Predumývanie",
"iot_voice_rapid_59": "Rýchly 59'",
"iot_voice_universal": "Univerzálne 60 °C",
"iot_wok_grids_maxi_pans": "Špeciálne panvice (Wok, rošty, maxi panvice)", "iot_wok_grids_maxi_pans": "Špeciálne panvice (Wok, rošty, maxi panvice)",
"iot_wok_grids_maxi_pans_soil": "Špeciálne panvice (Wok, rošty, maxi panvice)", "iot_wok_grids_maxi_pans_soil": "Špeciálne panvice (Wok, rošty, maxi panvice)",
"iot_yes_quick_cycle": "Yes Quick", "iot_yes_quick_cycle": "Yes Quick",
@ -195,6 +206,7 @@
"ultra_silent": "Ultra tichý 55°C", "ultra_silent": "Ultra tichý 55°C",
"universal": "Univerzálne 60 °C", "universal": "Univerzálne 60 °C",
"universal_plus": "Univerzálne Plus 70 °C", "universal_plus": "Univerzálne Plus 70 °C",
"zone_wash": "Flex Zone Wash",
"zoom_39": "Zoom 39 min" "zoom_39": "Zoom 39 min"
}, },
"name": "Program" "name": "Program"
@ -328,14 +340,14 @@
"hqd_bulky": "Objemné položky", "hqd_bulky": "Objemné položky",
"hqd_casual": "Neformálne", "hqd_casual": "Neformálne",
"hqd_cold_wind_30": "Chladný vánok 30 minút", "hqd_cold_wind_30": "Chladný vánok 30 minút",
"hqd_cold_wind_timing": "Studený vánok", "hqd_cold_wind_timing": "Studený vzduch",
"hqd_cotton": "Bavlna", "hqd_cotton": "Bavlna",
"hqd_curtain": "Záclony", "hqd_curtain": "Záclony",
"hqd_delicate": "Jemné materiály", "hqd_delicate": "Jemné materiály",
"hqd_diaper": "Plienky", "hqd_diaper": "Plienky",
"hqd_duvet": "Paplón", "hqd_duvet": "Prešívaná vetrovka so syntetickými vláknami",
"hqd_feather": "Prešívané bundy", "hqd_feather": "Prešívaná vetrovka s prírodnými vláknami",
"hqd_hot_wind_timing": "Horúci vzduch", "hqd_hot_wind_timing": "Detská zavinovačka",
"hqd_hygienic": "Hygienizácia", "hqd_hygienic": "Hygienizácia",
"hqd_i_refresh": "I-Refresh", "hqd_i_refresh": "I-Refresh",
"hqd_i_refresh_pro": "I-Refresh Pro", "hqd_i_refresh_pro": "I-Refresh Pro",
@ -345,10 +357,10 @@
"hqd_mix": "Zmiešané", "hqd_mix": "Zmiešané",
"hqd_night_dry": "Nočné sušenie", "hqd_night_dry": "Nočné sušenie",
"hqd_outdoor": "Outdoor", "hqd_outdoor": "Outdoor",
"hqd_precious_cure": "Precious cure", "hqd_precious_cure": "Precious Cure",
"hqd_quick_20": "Rýchle 20", "hqd_quick_20": "Rýchle 20",
"hqd_quick_30": "Rýchle 30", "hqd_quick_30": "Rýchle 30",
"hqd_quick_dry": "Rýchle sušenie 30'", "hqd_quick_dry": "Automatické rýchle sušenie 30'",
"hqd_quilt": "Prikrývky", "hqd_quilt": "Prikrývky",
"hqd_refresh": "Osvieženie", "hqd_refresh": "Osvieženie",
"hqd_school_uniform": "Školská uniforma", "hqd_school_uniform": "Školská uniforma",
@ -385,6 +397,8 @@
"iot_dry_gym_fit": "Športovné oblečenie", "iot_dry_gym_fit": "Športovné oblečenie",
"iot_dry_lingerie": "Spodná bielizeň", "iot_dry_lingerie": "Spodná bielizeň",
"iot_dry_mixed": "Zmiešané", "iot_dry_mixed": "Zmiešané",
"iot_dry_pet_accessories": "Príslušenstvo pre domáce zvieratá",
"iot_dry_pet_hair_removal": "Odstránenie chlpov domácich zvierat (pred praním)",
"iot_dry_playsuits": "Tepláky", "iot_dry_playsuits": "Tepláky",
"iot_dry_rapid_30": "Rapid 30", "iot_dry_rapid_30": "Rapid 30",
"iot_dry_rapid_59": "Rýchly 59 min.", "iot_dry_rapid_59": "Rýchly 59 min.",
@ -436,9 +450,9 @@
"state": { "state": {
"20_degrees_coloured_cottons": "20° farebné a bavlnené", "20_degrees_coloured_cottons": "20° farebné a bavlnené",
"20_degrees_new_energy_label": "20°C", "20_degrees_new_energy_label": "20°C",
"active_steam": "Para", "active_steam": "Para 29'",
"active_wash": "Aktívne pranie", "active_wash": "Aktívne pranie 20'",
"active_wash_steam": "Aktívne pranie", "active_wash_steam": "Aktívne pranie 20' + Para",
"allergy_care": "Antialergické ošetrenie", "allergy_care": "Antialergické ošetrenie",
"allergy_care_pro": "Antialergické ošetrenie Pro", "allergy_care_pro": "Antialergické ošetrenie Pro",
"all_in_one_49": "Všetko v jednom 49 min.", "all_in_one_49": "Všetko v jednom 49 min.",
@ -447,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'",
@ -458,19 +472,19 @@
"cottons_steam": "Bavlna + Para", "cottons_steam": "Bavlna + Para",
"cotton_care_59": "Bavlna 59 Min", "cotton_care_59": "Bavlna 59 Min",
"delicate_59": "Jemné materiály 59 min.", "delicate_59": "Jemné materiály 59 min.",
"delicate_silk": "Jemný hodváb", "delicate_silk": "Jemný hodváb 59'",
"delicate_silk_steam": "Jemný hodváb + Para", "delicate_silk_steam": "Jemný hodváb + Para",
"delicati_59": "Jemné materiály 59 min.", "delicati_59": "Jemné materiály 59 min.",
"delicati_59_steam": "Jemné materiály 59 min.", "delicati_59_steam": "Jemné materiály 59 min.",
"drain_spin": "Vypúšťanie a odstreďovanie", "drain_spin": "Vypúšťanie a odstreďovanie",
"easy_iron": "Jednoduché žehlenie", "easy_iron": "Jednoduché žehlenie 39'",
"eco_40_60_new_energy_label": "Eco 40 60", "eco_40_60_new_energy_label": "Eco 40 60",
"extra_care": "Extra Starostlivost", "extra_care": "Extra Starostlivost",
"fitness": "Fitnes", "fitness": "Fitnes",
"fitness_care": "Fitnes", "fitness_care": "Fitnes",
"fresh_care": "Svieža starostlivosť", "fresh_care": "Svieža starostlivosť 59'",
"fresh_care_steam": "Fresh Care + Para", "fresh_care_steam": "Fresh Care + Para",
"handwash_wool": "Pranie v rukách a vlna", "handwash_wool": "Pranie v rukách a vlna 48'",
"high_dry": "Bavlna suchá", "high_dry": "Bavlna suchá",
"hqd_20_degrees": "Bavlna 20 ℃", "hqd_20_degrees": "Bavlna 20 ℃",
"hqd_allergy": "Antialergické ošetrenie", "hqd_allergy": "Antialergické ošetrenie",
@ -478,13 +492,13 @@
"hqd_babycare": "Detská starostlivosť", "hqd_babycare": "Detská starostlivosť",
"hqd_checkup": "Kontrola", "hqd_checkup": "Kontrola",
"hqd_cottons": "Bavlna", "hqd_cottons": "Bavlna",
"hqd_delicate": "Jemné materiály", "hqd_delicate": "Jemné materiály 50'",
"hqd_delicate_cradle": "Jemné materiály", "hqd_delicate_cradle": "Jemné materiály",
"hqd_dry": "Bavlna suchá", "hqd_dry": "Bavlna suchá",
"hqd_dry_synthetics": "Zmiešané suché", "hqd_dry_synthetics": "Zmiešané suché",
"hqd_duvet": "Prikrývky", "hqd_duvet": "Prikrývky",
"hqd_eco_40_60_degrees": "Eco 40 60", "hqd_eco_40_60_degrees": "Eco 40 60",
"hqd_handwash_wool": "Vlna", "hqd_handwash_wool": "Vlna 40'",
"hqd_i_refresh": "i-Refresh", "hqd_i_refresh": "i-Refresh",
"hqd_mix": "Zmiešané", "hqd_mix": "Zmiešané",
"hqd_quick_15": "Rýchly 15 min.", "hqd_quick_15": "Rýchly 15 min.",
@ -495,7 +509,7 @@
"hqd_shirts": "Košele", "hqd_shirts": "Košele",
"hqd_smart": "Smart A.I.", "hqd_smart": "Smart A.I.",
"hqd_spin": "Odstreďovanie", "hqd_spin": "Odstreďovanie",
"hqd_sport": "Šport", "hqd_sport": "Šport 25'",
"hqd_super_fast": "Rýchly 39 min.", "hqd_super_fast": "Rýchly 39 min.",
"hqd_synthetic_and_coloured": "Syntetika", "hqd_synthetic_and_coloured": "Syntetika",
"hygiene_59": "Hygiena Plus 59'", "hygiene_59": "Hygiena Plus 59'",
@ -506,10 +520,11 @@
"hygiene_pro_steam": "Hygiene Pro + para", "hygiene_pro_steam": "Hygiene Pro + para",
"intensive_40": "Intenzívne pranie 40°C", "intensive_40": "Intenzívne pranie 40°C",
"intensive_40_steam": "Intensive 40°C + Para", "intensive_40_steam": "Intensive 40°C + Para",
"iot_active_steam": "Para", "iot_active_steam": "Para 29'",
"iot_active_wash_steam": "Aktívne pranie", "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",
@ -542,17 +557,19 @@
"iot_dry_technical_fabrics": "Technické tkaniny", "iot_dry_technical_fabrics": "Technické tkaniny",
"iot_dry_warm_embrace": "Teplé bubnové sušenie", "iot_dry_warm_embrace": "Teplé bubnové sušenie",
"iot_dry_wool_dry": "Vlna suchá", "iot_dry_wool_dry": "Vlna suchá",
"iot_easy_iron": "Jednoduché žehlenie", "iot_easy_iron": "Jednoduché žehlenie 39'",
"iot_fresh_care_steam": "Fresh Care + Para", "iot_fresh_care_steam": "Fresh Care + Para",
"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_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'",
"iot_rapid_a_class_60_steam": "Rýchly Trieda A 60 + Para", "iot_rapid_a_class_60_steam": "Rýchly Trieda A 60 + Para",
"iot_resistant_cotton_steam": "Bavlna + Para", "iot_resistant_cotton_steam": "Bavlna + Para",
"iot_shirts_steam": "Košele + para", "iot_shirts_steam": "Košele + para",
"iot_single_item_steam": "Jedna položka + Para", "iot_single_item_steam": "Jedna položka 20' + Para",
"iot_smart_wash": "Smart Wash", "iot_smart_wash": "Smart Wash",
"iot_soft_care_steam": "Soft Care + Steam", "iot_soft_care_steam": "Soft Care + Steam",
"iot_special_39_full_load_steam": "Špeciál 39' + Para", "iot_special_39_full_load_steam": "Špeciál 39' + Para",
@ -586,7 +603,7 @@
"iot_wash_coloured_bed_linen": "Farebné posteľné obliečky", "iot_wash_coloured_bed_linen": "Farebné posteľné obliečky",
"iot_wash_coloured_bed_linen_steam": "Farebné posteľné obliečky + Para", "iot_wash_coloured_bed_linen_steam": "Farebné posteľné obliečky + Para",
"iot_wash_coloured_curtains": "Farebné závesy", "iot_wash_coloured_curtains": "Farebné závesy",
"iot_wash_coloured_shirts": "Farebné košele", "iot_wash_coloured_shirts": "Farebné košele 59'",
"iot_wash_coloured_shirts_steam": "Farebné košele + Para", "iot_wash_coloured_shirts_steam": "Farebné košele + Para",
"iot_wash_coloured_steam": "Farebné + Para", "iot_wash_coloured_steam": "Farebné + Para",
"iot_wash_coloured_tableclothes": "Farebné obrusy", "iot_wash_coloured_tableclothes": "Farebné obrusy",
@ -623,7 +640,7 @@
"iot_wash_down_jackets_zelig": "Prešívané bundy", "iot_wash_down_jackets_zelig": "Prešívané bundy",
"iot_wash_duvet": "Prikrývky", "iot_wash_duvet": "Prikrývky",
"iot_wash_fruit_stains": "Ovocné škvrny", "iot_wash_fruit_stains": "Ovocné škvrny",
"iot_wash_gym_fit": "Oblečenie do telocvične a posilňovne", "iot_wash_gym_fit": "Oblečenie do telocvične a posilňovne 59'",
"iot_wash_handwash": "Prepieranie", "iot_wash_handwash": "Prepieranie",
"iot_wash_handwash_colored": "Prepieranie farebného", "iot_wash_handwash_colored": "Prepieranie farebného",
"iot_wash_handwash_dark": "Prepieranie tmavého", "iot_wash_handwash_dark": "Prepieranie tmavého",
@ -668,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",
@ -686,6 +704,7 @@
"iot_wash_wool": "Vlna", "iot_wash_wool": "Vlna",
"jeans": "Džínsy", "jeans": "Džínsy",
"jeans_60": "Džínsy", "jeans_60": "Džínsy",
"jeans_60_steam": "Jeans + Steam",
"low_dry": "Zmiešané suché", "low_dry": "Zmiešané suché",
"mixed": "Zmiešané", "mixed": "Zmiešané",
"mixed_and_colored_59": "Zmiešané a farebné 59 min.", "mixed_and_colored_59": "Zmiešané a farebné 59 min.",
@ -709,7 +728,7 @@
"rinse": "Oplachovanie", "rinse": "Oplachovanie",
"shirts_steam": "Košele + para", "shirts_steam": "Košele + para",
"silent_night": "Nočný cyklus", "silent_night": "Nočný cyklus",
"single_item": "Jedna položka", "single_item": "Jedna položka 20'",
"single_item_steam": "Jedna položka + Para", "single_item_steam": "Jedna položka + Para",
"smart_wash": "Smart Wash", "smart_wash": "Smart Wash",
"soft_care": "Jemná starostlivosť", "soft_care": "Jemná starostlivosť",
@ -725,8 +744,8 @@
"steam_39": "Para 39 min.", "steam_39": "Para 39 min.",
"steam_care_pro": "Steam Care Pro", "steam_care_pro": "Steam Care Pro",
"steam_care_pro_cotton": "Steam Care Pro - bavlna", "steam_care_pro_cotton": "Steam Care Pro - bavlna",
"steam_care_pro_delicates": "Steam Care Pro - jemné", "steam_care_pro_delicates": "Steam Care Pro - jemné 16'",
"steam_care_pro_synthetic": "Steam Care Pro - syntetika", "steam_care_pro_synthetic": "Steam Care Pro - syntetika 20'",
"steam_hygiene_plus": "Para Hygiene Plus", "steam_hygiene_plus": "Para Hygiene Plus",
"synthetics": "Syntetika", "synthetics": "Syntetika",
"synthetic_and_coloured": "Syntetika a farebné materiály", "synthetic_and_coloured": "Syntetika a farebné materiály",
@ -738,7 +757,7 @@
"wool": "Vlna", "wool": "Vlna",
"wool_and_delicates_49": "Vlna/Jemné 49'", "wool_and_delicates_49": "Vlna/Jemné 49'",
"wool_dry": "Vlna suchá", "wool_dry": "Vlna suchá",
"wool_soft_care": "Vlna & Mäkká starostlivost" "wool_soft_care": "Vlna & Mäkká starostlivost 48'"
}, },
"name": "Program" "name": "Program"
}, },
@ -748,20 +767,25 @@
"cheese": "Syr", "cheese": "Syr",
"chiller": "Quick cool", "chiller": "Quick cool",
"cold_drinks": "Soft chill", "cold_drinks": "Soft chill",
"cool_drink": "Cool Drink",
"eco": "Eco", "eco": "Eco",
"eco_mode": "Režim Eco", "eco_mode": "Režim Eco",
"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",
"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",
"sea_food": "Ready to cook meal", "sea_food": "Ready to cook meal",
"smart_mode_title": "Smart Mode",
"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",
"zero_fresh": "0° Fresh" "vegetables": "Vegetable",
"zero_fresh": "0°C Fresh"
}, },
"name": "Program" "name": "Program"
}, },
@ -887,6 +911,14 @@
}, },
"fan_speed": { "fan_speed": {
"name": "Rýchlosť ventilátora" "name": "Rýchlosť ventilátora"
},
"humidity_level": {
"state": {
"low": "Nízke",
"mid": "Stredné",
"high": "Vysoké"
},
"name": "Úroveň vlhkosti"
} }
}, },
"select": { "select": {
@ -956,22 +988,25 @@
"auto_care_soil": "Auto Care", "auto_care_soil": "Auto Care",
"auto_hygiene": "Automatická Hygiena", "auto_hygiene": "Automatická Hygiena",
"auto_plus": "AutoPlus", "auto_plus": "AutoPlus",
"auto_plus_soil": "Auto Plus Znečistenie",
"auto_rapid": "Auto Rapid", "auto_rapid": "Auto Rapid",
"auto_rapid_soil": "Auto Rýchly Znečistenie",
"auto_sensor": "Auto Sensor", "auto_sensor": "Auto Sensor",
"auto_sensor_soil": "Auto Sensor", "auto_sensor_soil": "Auto Sensor",
"auto_universal": "Auto univerzálny 50 -60°C", "auto_universal": "Auto univerzálny 50 -60°C",
"auto_universal_plus": "Auto univerzálny plus 65 - 75°C", "auto_universal_plus": "Auto univerzálny plus 65-75°C",
"auto_universal_plus_soil": "Auto univerzálny plus 65 - 75°C", "auto_universal_plus_soil": "Auto univerzálny plus 65-75°C",
"auto_universal_soil": "Auto univerzálny 50 -60°C", "auto_universal_soil": "Auto univerzálny 50 -60°C",
"auto_wash": "Automatické pranie", "auto_wash": "Automatické pranie",
"auto_wash_soil": "Automatické pranie", "auto_wash_soil": "Automatické pranie",
"classe_a_59": "A trieda 1 h 65°C", "classe_a_59": "A trieda 1 h 65°C",
"delicate": "Jemný 45°C", "delicate": "Jemný 45°C",
"dishwasher_care": "Cyklus čistenia vodného kameňa", "dishwasher_care": "Cyklus čistenia vodného kameňa",
"eco": "Eko", "eco": "Eco 45°C",
"eco_asynch": "Eco 45°C", "eco_asynch": "Eco 45°C",
"eco_bldc": "Eco 45°C", "eco_bldc": "Eco 45°C",
"eco_synch": "Eco 45°C", "eco_synch": "Eco 45°C",
"eco_voice": "Eco",
"gentle_wash": "Gentle wash", "gentle_wash": "Gentle wash",
"glass": "Sklo", "glass": "Sklo",
"glassware": "Sklo 45 °C", "glassware": "Sklo 45 °C",
@ -980,6 +1015,7 @@
"hygiene_plus": "Hygienické umývanie + 75 °C", "hygiene_plus": "Hygienické umývanie + 75 °C",
"intensive": "Intenzívne pranie", "intensive": "Intenzívne pranie",
"intensive_rapid": "intenzívny rýchly", "intensive_rapid": "intenzívny rýchly",
"intensive_voice": "Intenzívne pranie",
"iot_auto_sensor": "Auto Sensor", "iot_auto_sensor": "Auto Sensor",
"iot_auto_universal_soil": "Auto univerzálny 50 -60°C", "iot_auto_universal_soil": "Auto univerzálny 50 -60°C",
"iot_auto_wash_soil": "Automatické pranie", "iot_auto_wash_soil": "Automatické pranie",
@ -1021,6 +1057,13 @@
"iot_super_wash": "Super Wash", "iot_super_wash": "Super Wash",
"iot_turbopower": "Turbo Power", "iot_turbopower": "Turbo Power",
"iot_universal": "Univerzálne 60 °C", "iot_universal": "Univerzálne 60 °C",
"iot_voice_automatic": "Automatic",
"iot_voice_delicate": "Jemný 45°C",
"iot_voice_eco": "Eco 45°C",
"iot_voice_intensive": "Intenzívne pranie 75°C",
"iot_voice_prewash": "Predumývanie",
"iot_voice_rapid_59": "Rýchly 59'",
"iot_voice_universal": "Univerzálne 60 °C",
"iot_wok_grids_maxi_pans": "Špeciálne panvice (Wok, rošty, maxi panvice)", "iot_wok_grids_maxi_pans": "Špeciálne panvice (Wok, rošty, maxi panvice)",
"iot_wok_grids_maxi_pans_soil": "Špeciálne panvice (Wok, rošty, maxi panvice)", "iot_wok_grids_maxi_pans_soil": "Špeciálne panvice (Wok, rošty, maxi panvice)",
"iot_yes_quick_cycle": "Yes Quick", "iot_yes_quick_cycle": "Yes Quick",
@ -1052,6 +1095,7 @@
"ultra_silent": "Ultra tichý 55°C", "ultra_silent": "Ultra tichý 55°C",
"universal": "Univerzálne 60 °C", "universal": "Univerzálne 60 °C",
"universal_plus": "Univerzálne Plus 70 °C", "universal_plus": "Univerzálne Plus 70 °C",
"zone_wash": "Flex Zone Wash",
"zoom_39": "Zoom 39 min" "zoom_39": "Zoom 39 min"
}, },
"name": "Program" "name": "Program"
@ -1185,14 +1229,14 @@
"hqd_bulky": "Objemné položky", "hqd_bulky": "Objemné položky",
"hqd_casual": "Neformálne", "hqd_casual": "Neformálne",
"hqd_cold_wind_30": "Chladný vánok 30 minút", "hqd_cold_wind_30": "Chladný vánok 30 minút",
"hqd_cold_wind_timing": "Studený vánok", "hqd_cold_wind_timing": "Studený vzduch",
"hqd_cotton": "Bavlna", "hqd_cotton": "Bavlna",
"hqd_curtain": "Záclony", "hqd_curtain": "Záclony",
"hqd_delicate": "Jemné materiály", "hqd_delicate": "Jemné materiály",
"hqd_diaper": "Plienky", "hqd_diaper": "Plienky",
"hqd_duvet": "Paplón", "hqd_duvet": "Prešívaná vetrovka so syntetickými vláknami",
"hqd_feather": "Prešívané bundy", "hqd_feather": "Prešívaná vetrovka s prírodnými vláknami",
"hqd_hot_wind_timing": "Horúci vzduch", "hqd_hot_wind_timing": "Detská zavinovačka",
"hqd_hygienic": "Hygienizácia", "hqd_hygienic": "Hygienizácia",
"hqd_i_refresh": "I-Refresh", "hqd_i_refresh": "I-Refresh",
"hqd_i_refresh_pro": "I-Refresh Pro", "hqd_i_refresh_pro": "I-Refresh Pro",
@ -1202,10 +1246,10 @@
"hqd_mix": "Zmiešané", "hqd_mix": "Zmiešané",
"hqd_night_dry": "Nočné sušenie", "hqd_night_dry": "Nočné sušenie",
"hqd_outdoor": "Outdoor", "hqd_outdoor": "Outdoor",
"hqd_precious_cure": "Precious cure", "hqd_precious_cure": "Precious Cure",
"hqd_quick_20": "Rýchle 20", "hqd_quick_20": "Rýchle 20",
"hqd_quick_30": "Rýchle 30", "hqd_quick_30": "Rýchle 30",
"hqd_quick_dry": "Rýchle sušenie 30'", "hqd_quick_dry": "Automatické rýchle sušenie 30'",
"hqd_quilt": "Prikrývky", "hqd_quilt": "Prikrývky",
"hqd_refresh": "Osvieženie", "hqd_refresh": "Osvieženie",
"hqd_school_uniform": "Školská uniforma", "hqd_school_uniform": "Školská uniforma",
@ -1242,6 +1286,8 @@
"iot_dry_gym_fit": "Športovné oblečenie", "iot_dry_gym_fit": "Športovné oblečenie",
"iot_dry_lingerie": "Spodná bielizeň", "iot_dry_lingerie": "Spodná bielizeň",
"iot_dry_mixed": "Zmiešané", "iot_dry_mixed": "Zmiešané",
"iot_dry_pet_accessories": "Príslušenstvo pre domáce zvieratá",
"iot_dry_pet_hair_removal": "Odstránenie chlpov domácich zvierat (pred praním)",
"iot_dry_playsuits": "Tepláky", "iot_dry_playsuits": "Tepláky",
"iot_dry_rapid_30": "Rapid 30", "iot_dry_rapid_30": "Rapid 30",
"iot_dry_rapid_59": "Rýchly 59 min.", "iot_dry_rapid_59": "Rýchly 59 min.",
@ -1293,9 +1339,9 @@
"state": { "state": {
"20_degrees_coloured_cottons": "20° farebné a bavlnené", "20_degrees_coloured_cottons": "20° farebné a bavlnené",
"20_degrees_new_energy_label": "20°C", "20_degrees_new_energy_label": "20°C",
"active_steam": "Para", "active_steam": "Para 29'",
"active_wash": "Aktívne pranie", "active_wash": "Aktívne pranie 20'",
"active_wash_steam": "Aktívne pranie", "active_wash_steam": "Aktívne pranie 20' + Para",
"allergy_care": "Antialergické ošetrenie", "allergy_care": "Antialergické ošetrenie",
"allergy_care_pro": "Antialergické ošetrenie Pro", "allergy_care_pro": "Antialergické ošetrenie Pro",
"all_in_one_49": "Všetko v jednom 49 min.", "all_in_one_49": "Všetko v jednom 49 min.",
@ -1304,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'",
@ -1315,19 +1361,19 @@
"cottons_steam": "Bavlna + Para", "cottons_steam": "Bavlna + Para",
"cotton_care_59": "Bavlna 59 Min", "cotton_care_59": "Bavlna 59 Min",
"delicate_59": "Jemné materiály 59 min.", "delicate_59": "Jemné materiály 59 min.",
"delicate_silk": "Jemný hodváb", "delicate_silk": "Jemný hodváb 59'",
"delicate_silk_steam": "Jemný hodváb + Para", "delicate_silk_steam": "Jemný hodváb + Para",
"delicati_59": "Jemné materiály 59 min.", "delicati_59": "Jemné materiály 59 min.",
"delicati_59_steam": "Jemné materiály 59 min.", "delicati_59_steam": "Jemné materiály 59 min.",
"drain_spin": "Vypúšťanie a odstreďovanie", "drain_spin": "Vypúšťanie a odstreďovanie",
"easy_iron": "Jednoduché žehlenie", "easy_iron": "Jednoduché žehlenie 39'",
"eco_40_60_new_energy_label": "Eco 40 60", "eco_40_60_new_energy_label": "Eco 40 60",
"extra_care": "Extra Starostlivost", "extra_care": "Extra Starostlivost",
"fitness": "Fitnes", "fitness": "Fitnes",
"fitness_care": "Fitnes", "fitness_care": "Fitnes",
"fresh_care": "Svieža starostlivosť", "fresh_care": "Svieža starostlivosť 59'",
"fresh_care_steam": "Fresh Care + Para", "fresh_care_steam": "Fresh Care + Para",
"handwash_wool": "Pranie v rukách a vlna", "handwash_wool": "Pranie v rukách a vlna 48'",
"high_dry": "Bavlna suchá", "high_dry": "Bavlna suchá",
"hqd_20_degrees": "Bavlna 20 ℃", "hqd_20_degrees": "Bavlna 20 ℃",
"hqd_allergy": "Antialergické ošetrenie", "hqd_allergy": "Antialergické ošetrenie",
@ -1335,13 +1381,13 @@
"hqd_babycare": "Detská starostlivosť", "hqd_babycare": "Detská starostlivosť",
"hqd_checkup": "Kontrola", "hqd_checkup": "Kontrola",
"hqd_cottons": "Bavlna", "hqd_cottons": "Bavlna",
"hqd_delicate": "Jemné materiály", "hqd_delicate": "Jemné materiály 50'",
"hqd_delicate_cradle": "Jemné materiály", "hqd_delicate_cradle": "Jemné materiály",
"hqd_dry": "Bavlna suchá", "hqd_dry": "Bavlna suchá",
"hqd_dry_synthetics": "Zmiešané suché", "hqd_dry_synthetics": "Zmiešané suché",
"hqd_duvet": "Prikrývky", "hqd_duvet": "Prikrývky",
"hqd_eco_40_60_degrees": "Eco 40 60", "hqd_eco_40_60_degrees": "Eco 40 60",
"hqd_handwash_wool": "Vlna", "hqd_handwash_wool": "Vlna 40'",
"hqd_i_refresh": "i-Refresh", "hqd_i_refresh": "i-Refresh",
"hqd_mix": "Zmiešané", "hqd_mix": "Zmiešané",
"hqd_quick_15": "Rýchly 15 min.", "hqd_quick_15": "Rýchly 15 min.",
@ -1352,7 +1398,7 @@
"hqd_shirts": "Košele", "hqd_shirts": "Košele",
"hqd_smart": "Smart A.I.", "hqd_smart": "Smart A.I.",
"hqd_spin": "Odstreďovanie", "hqd_spin": "Odstreďovanie",
"hqd_sport": "Šport", "hqd_sport": "Šport 25'",
"hqd_super_fast": "Rýchly 39 min.", "hqd_super_fast": "Rýchly 39 min.",
"hqd_synthetic_and_coloured": "Syntetika", "hqd_synthetic_and_coloured": "Syntetika",
"hygiene_59": "Hygiena Plus 59'", "hygiene_59": "Hygiena Plus 59'",
@ -1363,10 +1409,11 @@
"hygiene_pro_steam": "Hygiene Pro + para", "hygiene_pro_steam": "Hygiene Pro + para",
"intensive_40": "Intenzívne pranie 40°C", "intensive_40": "Intenzívne pranie 40°C",
"intensive_40_steam": "Intensive 40°C + Para", "intensive_40_steam": "Intensive 40°C + Para",
"iot_active_steam": "Para", "iot_active_steam": "Para 29'",
"iot_active_wash_steam": "Aktívne pranie", "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",
@ -1399,17 +1446,19 @@
"iot_dry_technical_fabrics": "Technické tkaniny", "iot_dry_technical_fabrics": "Technické tkaniny",
"iot_dry_warm_embrace": "Teplé bubnové sušenie", "iot_dry_warm_embrace": "Teplé bubnové sušenie",
"iot_dry_wool_dry": "Vlna suchá", "iot_dry_wool_dry": "Vlna suchá",
"iot_easy_iron": "Jednoduché žehlenie", "iot_easy_iron": "Jednoduché žehlenie 39'",
"iot_fresh_care_steam": "Fresh Care + Para", "iot_fresh_care_steam": "Fresh Care + Para",
"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_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'",
"iot_rapid_a_class_60_steam": "Rýchly Trieda A 60 + Para", "iot_rapid_a_class_60_steam": "Rýchly Trieda A 60 + Para",
"iot_resistant_cotton_steam": "Bavlna + Para", "iot_resistant_cotton_steam": "Bavlna + Para",
"iot_shirts_steam": "Košele + para", "iot_shirts_steam": "Košele + para",
"iot_single_item_steam": "Jedna položka + Para", "iot_single_item_steam": "Jedna položka 20' + Para",
"iot_smart_wash": "Smart Wash", "iot_smart_wash": "Smart Wash",
"iot_soft_care_steam": "Soft Care + Steam", "iot_soft_care_steam": "Soft Care + Steam",
"iot_special_39_full_load_steam": "Špeciál 39' + Para", "iot_special_39_full_load_steam": "Špeciál 39' + Para",
@ -1443,7 +1492,7 @@
"iot_wash_coloured_bed_linen": "Farebné posteľné obliečky", "iot_wash_coloured_bed_linen": "Farebné posteľné obliečky",
"iot_wash_coloured_bed_linen_steam": "Farebné posteľné obliečky + Para", "iot_wash_coloured_bed_linen_steam": "Farebné posteľné obliečky + Para",
"iot_wash_coloured_curtains": "Farebné závesy", "iot_wash_coloured_curtains": "Farebné závesy",
"iot_wash_coloured_shirts": "Farebné košele", "iot_wash_coloured_shirts": "Farebné košele 59'",
"iot_wash_coloured_shirts_steam": "Farebné košele + Para", "iot_wash_coloured_shirts_steam": "Farebné košele + Para",
"iot_wash_coloured_steam": "Farebné + Para", "iot_wash_coloured_steam": "Farebné + Para",
"iot_wash_coloured_tableclothes": "Farebné obrusy", "iot_wash_coloured_tableclothes": "Farebné obrusy",
@ -1480,7 +1529,7 @@
"iot_wash_down_jackets_zelig": "Prešívané bundy", "iot_wash_down_jackets_zelig": "Prešívané bundy",
"iot_wash_duvet": "Prikrývky", "iot_wash_duvet": "Prikrývky",
"iot_wash_fruit_stains": "Ovocné škvrny", "iot_wash_fruit_stains": "Ovocné škvrny",
"iot_wash_gym_fit": "Oblečenie do telocvične a posilňovne", "iot_wash_gym_fit": "Oblečenie do telocvične a posilňovne 59'",
"iot_wash_handwash": "Prepieranie", "iot_wash_handwash": "Prepieranie",
"iot_wash_handwash_colored": "Prepieranie farebného", "iot_wash_handwash_colored": "Prepieranie farebného",
"iot_wash_handwash_dark": "Prepieranie tmavého", "iot_wash_handwash_dark": "Prepieranie tmavého",
@ -1525,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",
@ -1543,6 +1593,7 @@
"iot_wash_wool": "Vlna", "iot_wash_wool": "Vlna",
"jeans": "Džínsy", "jeans": "Džínsy",
"jeans_60": "Džínsy", "jeans_60": "Džínsy",
"jeans_60_steam": "Jeans + Steam",
"low_dry": "Zmiešané suché", "low_dry": "Zmiešané suché",
"mixed": "Zmiešané", "mixed": "Zmiešané",
"mixed_and_colored_59": "Zmiešané a farebné 59 min.", "mixed_and_colored_59": "Zmiešané a farebné 59 min.",
@ -1566,7 +1617,7 @@
"rinse": "Oplachovanie", "rinse": "Oplachovanie",
"shirts_steam": "Košele + para", "shirts_steam": "Košele + para",
"silent_night": "Nočný cyklus", "silent_night": "Nočný cyklus",
"single_item": "Jedna položka", "single_item": "Jedna položka 20'",
"single_item_steam": "Jedna položka + Para", "single_item_steam": "Jedna položka + Para",
"smart_wash": "Smart Wash", "smart_wash": "Smart Wash",
"soft_care": "Jemná starostlivosť", "soft_care": "Jemná starostlivosť",
@ -1582,8 +1633,8 @@
"steam_39": "Para 39 min.", "steam_39": "Para 39 min.",
"steam_care_pro": "Steam Care Pro", "steam_care_pro": "Steam Care Pro",
"steam_care_pro_cotton": "Steam Care Pro - bavlna", "steam_care_pro_cotton": "Steam Care Pro - bavlna",
"steam_care_pro_delicates": "Steam Care Pro - jemné", "steam_care_pro_delicates": "Steam Care Pro - jemné 16'",
"steam_care_pro_synthetic": "Steam Care Pro - syntetika", "steam_care_pro_synthetic": "Steam Care Pro - syntetika 20'",
"steam_hygiene_plus": "Para Hygiene Plus", "steam_hygiene_plus": "Para Hygiene Plus",
"synthetics": "Syntetika", "synthetics": "Syntetika",
"synthetic_and_coloured": "Syntetika a farebné materiály", "synthetic_and_coloured": "Syntetika a farebné materiály",
@ -1595,7 +1646,7 @@
"wool": "Vlna", "wool": "Vlna",
"wool_and_delicates_49": "Vlna/Jemné 49'", "wool_and_delicates_49": "Vlna/Jemné 49'",
"wool_dry": "Vlna suchá", "wool_dry": "Vlna suchá",
"wool_soft_care": "Vlna & Mäkká starostlivost" "wool_soft_care": "Vlna & Mäkká starostlivost 48'"
}, },
"name": "Program" "name": "Program"
}, },
@ -1605,20 +1656,25 @@
"cheese": "Syr", "cheese": "Syr",
"chiller": "Quick cool", "chiller": "Quick cool",
"cold_drinks": "Soft chill", "cold_drinks": "Soft chill",
"cool_drink": "Cool Drink",
"eco": "Eco", "eco": "Eco",
"eco_mode": "Režim Eco", "eco_mode": "Režim Eco",
"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",
"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",
"sea_food": "Ready to cook meal", "sea_food": "Ready to cook meal",
"smart_mode_title": "Smart Mode",
"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",
"zero_fresh": "0° Fresh" "vegetables": "Vegetable",
"zero_fresh": "0°C Fresh"
}, },
"name": "Program" "name": "Program"
}, },
@ -1671,6 +1727,71 @@
"unknown": "unknown" "unknown": "unknown"
}, },
"name": "Úroveň znečistenia" "name": "Úroveň znečistenia"
},
"stain_type": {
"state": {
"baby_food": "Detská výživa",
"bean_paste": "Fazuľová polievka",
"blood": "Krv",
"blueberry": "Čučoriedka",
"blue_ink": "Modrý atrament",
"butter": "Maslo",
"chili_oil": "Čili olej",
"chili_sauce": "Čili omáčka",
"chocolate": "Čokoláda",
"coffe": "Káva",
"coffee": "Káva",
"color_pencil": "Ceruzka",
"cooking_oil": "Olej na varenie",
"curry": "Karí",
"deodorant": "Dezodorant",
"egg": "Vajíčko",
"fruit": "Ovocie",
"glue": "Lepidlo",
"grass": "Tráva",
"ice_cream": "Zmrzlina",
"ketchup": "Kečup",
"lip_gloss": "Lesk na pery",
"mayonnaise": "Majonéza",
"mech_grease": "Mechanické mazivo",
"milk": "Mlieko",
"milk_tea": "Mliečny čaj",
"oil": "Olej",
"oil_pastel": "Olejový pastel",
"perfume": "Parfém",
"rust": "Hrdza",
"shoe_cream": "Krém na topánky",
"soil": "Pôda",
"soy_sauce": "Sójovej Omáčky",
"stain_level": "Úroveň škvŕn",
"sweat": "Pot",
"tea": "Čaj",
"wine": "Víno",
"unknown": "unknown"
},
"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": {
@ -1928,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": {
@ -2062,6 +2186,9 @@
} }
} }
} }
},
"my_zone": {
"name": "My Zone"
} }
}, },
"fan": { "fan": {

View File

@ -99,7 +99,9 @@
"auto_care_soil": "Auto Care", "auto_care_soil": "Auto Care",
"auto_hygiene": "Auto Higiena", "auto_hygiene": "Auto Higiena",
"auto_plus": "AutoPlus", "auto_plus": "AutoPlus",
"auto_plus_soil": "Auto Plus",
"auto_rapid": "Avtomatsko Hitro", "auto_rapid": "Avtomatsko Hitro",
"auto_rapid_soil": "Auto Rapid",
"auto_sensor": "Auto Sensor", "auto_sensor": "Auto Sensor",
"auto_sensor_soil": "Auto Sensor", "auto_sensor_soil": "Auto Sensor",
"auto_universal": "Samodejno univerzalno 5060 °C", "auto_universal": "Samodejno univerzalno 5060 °C",
@ -111,10 +113,11 @@
"classe_a_59": "Razred A 59 min. 65 °C", "classe_a_59": "Razred A 59 min. 65 °C",
"delicate": "Občutljivo 45 °C", "delicate": "Občutljivo 45 °C",
"dishwasher_care": "Cikel odstranjevanja vodnega kamna", "dishwasher_care": "Cikel odstranjevanja vodnega kamna",
"eco": "Varčno", "eco": "Eko 45 °C",
"eco_asynch": "Eko 45 °C", "eco_asynch": "Eko 45 °C",
"eco_bldc": "Eko 45 °C", "eco_bldc": "Eko 45 °C",
"eco_synch": "Eko 45 °C", "eco_synch": "Eko 45 °C",
"eco_voice": "Eco",
"gentle_wash": "Gentle wash", "gentle_wash": "Gentle wash",
"glass": "Kozarci", "glass": "Kozarci",
"glassware": "Steklo 45 °C", "glassware": "Steklo 45 °C",
@ -123,6 +126,7 @@
"hygiene_plus": "Higiena + 75 °C", "hygiene_plus": "Higiena + 75 °C",
"intensive": "Intenzivno", "intensive": "Intenzivno",
"intensive_rapid": "Hitro in intenzivno", "intensive_rapid": "Hitro in intenzivno",
"intensive_voice": "Intenzivno",
"iot_auto_sensor": "Auto Sensor", "iot_auto_sensor": "Auto Sensor",
"iot_auto_universal_soil": "Samodejno univerzalno 5060 °C", "iot_auto_universal_soil": "Samodejno univerzalno 5060 °C",
"iot_auto_wash_soil": "Samodejno pranje", "iot_auto_wash_soil": "Samodejno pranje",
@ -164,6 +168,13 @@
"iot_super_wash": "Super pomivanje", "iot_super_wash": "Super pomivanje",
"iot_turbopower": "Turbo moč", "iot_turbopower": "Turbo moč",
"iot_universal": "Univerzalno 60 °C", "iot_universal": "Univerzalno 60 °C",
"iot_voice_automatic": "Automatic",
"iot_voice_delicate": "Občutljivo 45 °C",
"iot_voice_eco": "Eko 45 °C",
"iot_voice_intensive": "Intenzivno 75°C",
"iot_voice_prewash": "Predpranje",
"iot_voice_rapid_59": "Hitri progr. 59'",
"iot_voice_universal": "Univerzalno 60 °C",
"iot_wok_grids_maxi_pans": "Posebna posoda (voki, rešetke in velike kozice)", "iot_wok_grids_maxi_pans": "Posebna posoda (voki, rešetke in velike kozice)",
"iot_wok_grids_maxi_pans_soil": "Posebna posoda (voki, rešetke in velike kozice)", "iot_wok_grids_maxi_pans_soil": "Posebna posoda (voki, rešetke in velike kozice)",
"iot_yes_quick_cycle": "Yes Quick", "iot_yes_quick_cycle": "Yes Quick",
@ -195,6 +206,7 @@
"ultra_silent": "Zelo tiho 55 °C", "ultra_silent": "Zelo tiho 55 °C",
"universal": "Univerzalno 60 °C", "universal": "Univerzalno 60 °C",
"universal_plus": "Univerzalni Plus 70 °C", "universal_plus": "Univerzalni Plus 70 °C",
"zone_wash": "Flex Zone Wash",
"zoom_39": "Zoom 39 min" "zoom_39": "Zoom 39 min"
}, },
"name": "Program" "name": "Program"
@ -328,14 +340,14 @@
"hqd_bulky": "Večji kosi", "hqd_bulky": "Večji kosi",
"hqd_casual": "Za prosti čas", "hqd_casual": "Za prosti čas",
"hqd_cold_wind_30": "Hladen vetrič 30 minut", "hqd_cold_wind_30": "Hladen vetrič 30 minut",
"hqd_cold_wind_timing": "Hladen vetrič", "hqd_cold_wind_timing": "Mrzel zrak",
"hqd_cotton": "Bombaž", "hqd_cotton": "Bombaž",
"hqd_curtain": "Zavese", "hqd_curtain": "Zavese",
"hqd_delicate": "Občutljive tkanine", "hqd_delicate": "Občutljive tkanine",
"hqd_diaper": "Plenice", "hqd_diaper": "Plenice",
"hqd_duvet": "Prešite odeje", "hqd_duvet": "Prešita jakna iz sintetičnih vlaken",
"hqd_feather": "Puhovke", "hqd_feather": "Prešita jakna iz naravnih vlaken",
"hqd_hot_wind_timing": "Vroč zrak", "hqd_hot_wind_timing": "Mehkoba",
"hqd_hygienic": "Higienizacija", "hqd_hygienic": "Higienizacija",
"hqd_i_refresh": "I-Refresh", "hqd_i_refresh": "I-Refresh",
"hqd_i_refresh_pro": "I-Refresh Pro", "hqd_i_refresh_pro": "I-Refresh Pro",
@ -345,10 +357,10 @@
"hqd_mix": "Mešano", "hqd_mix": "Mešano",
"hqd_night_dry": "Sušenje čez noč", "hqd_night_dry": "Sušenje čez noč",
"hqd_outdoor": "Outdoor", "hqd_outdoor": "Outdoor",
"hqd_precious_cure": "Precious cure", "hqd_precious_cure": "Precious Cure",
"hqd_quick_20": "Hitro 20", "hqd_quick_20": "Hitro 20",
"hqd_quick_30": "Hitro 30", "hqd_quick_30": "Hitro 30",
"hqd_quick_dry": "Hitro sušenje 30'", "hqd_quick_dry": "Samodejno hitro sušenje 30'",
"hqd_quilt": "Posteljna pregrinjala", "hqd_quilt": "Posteljna pregrinjala",
"hqd_refresh": "Osvežitev", "hqd_refresh": "Osvežitev",
"hqd_school_uniform": "Šolska uniforma", "hqd_school_uniform": "Šolska uniforma",
@ -385,6 +397,8 @@
"iot_dry_gym_fit": "Oblačila za telovadbo in fitnes", "iot_dry_gym_fit": "Oblačila za telovadbo in fitnes",
"iot_dry_lingerie": "Spodnje perilo", "iot_dry_lingerie": "Spodnje perilo",
"iot_dry_mixed": "Mešano", "iot_dry_mixed": "Mešano",
"iot_dry_pet_accessories": "Pripomočki za hišne ljubljenčke",
"iot_dry_pet_hair_removal": "Odstranjevanje dlak hišnih ljubljenčkov (predpranje)",
"iot_dry_playsuits": "Pajaci", "iot_dry_playsuits": "Pajaci",
"iot_dry_rapid_30": "Rapid 30", "iot_dry_rapid_30": "Rapid 30",
"iot_dry_rapid_59": "Hitro 59", "iot_dry_rapid_59": "Hitro 59",
@ -436,9 +450,9 @@
"state": { "state": {
"20_degrees_coloured_cottons": "20° pisano in bombaž", "20_degrees_coloured_cottons": "20° pisano in bombaž",
"20_degrees_new_energy_label": "20°C", "20_degrees_new_energy_label": "20°C",
"active_steam": "Para", "active_steam": "Para 29'",
"active_wash": "Aktivno pranje", "active_wash": "Aktivno pranje 20'",
"active_wash_steam": "Aktivno pranje", "active_wash_steam": "Aktivno pranje 20' + para",
"allergy_care": "Nega proti alergijam", "allergy_care": "Nega proti alergijam",
"allergy_care_pro": "Nega proti alergijam Pro", "allergy_care_pro": "Nega proti alergijam Pro",
"all_in_one_49": "Vse v enem 49'.", "all_in_one_49": "Vse v enem 49'.",
@ -458,19 +472,19 @@
"cottons_steam": "Bombaž + Para", "cottons_steam": "Bombaž + Para",
"cotton_care_59": "Bombaž 59 min.", "cotton_care_59": "Bombaž 59 min.",
"delicate_59": "Občutljivo 59'", "delicate_59": "Občutljivo 59'",
"delicate_silk": "Občutljiva svila", "delicate_silk": "Občutljiva svila 59'",
"delicate_silk_steam": "Občutljiva svila + para", "delicate_silk_steam": "Občutljiva svila + para",
"delicati_59": "Občutljivo 59'", "delicati_59": "Občutljivo 59'",
"delicati_59_steam": "Občutljivo 59'", "delicati_59_steam": "Občutljivo 59'",
"drain_spin": "Izpiranje in ožemanje", "drain_spin": "Izpiranje in ožemanje",
"easy_iron": "Lažje likanje", "easy_iron": "Lažje likanje 39'",
"eco_40_60_new_energy_label": "Eco 40-60", "eco_40_60_new_energy_label": "Eco 40-60",
"extra_care": "Dodatna Nega", "extra_care": "Dodatna Nega",
"fitness": "Fitness", "fitness": "Fitness",
"fitness_care": "Fitness", "fitness_care": "Fitness",
"fresh_care": "Nega za svežino", "fresh_care": "Nega za svežino 59'",
"fresh_care_steam": "Nega za svežino + para", "fresh_care_steam": "Nega za svežino + para",
"handwash_wool": "Ročno pranje in volna", "handwash_wool": "Ročno pranje in volna 48'",
"high_dry": "Sušenje bombaža", "high_dry": "Sušenje bombaža",
"hqd_20_degrees": "Bombaž 20℃", "hqd_20_degrees": "Bombaž 20℃",
"hqd_allergy": "Nega proti alergijam", "hqd_allergy": "Nega proti alergijam",
@ -478,13 +492,13 @@
"hqd_babycare": "Otroška posoda", "hqd_babycare": "Otroška posoda",
"hqd_checkup": "Preveri", "hqd_checkup": "Preveri",
"hqd_cottons": "Bombaž", "hqd_cottons": "Bombaž",
"hqd_delicate": "Občutljive tkanine", "hqd_delicate": "Občutljive tkanine 50'",
"hqd_delicate_cradle": "Občutljive tkanine", "hqd_delicate_cradle": "Občutljive tkanine",
"hqd_dry": "Sušenje bombaža", "hqd_dry": "Sušenje bombaža",
"hqd_dry_synthetics": "Sušenje mešanih tkanin", "hqd_dry_synthetics": "Sušenje mešanih tkanin",
"hqd_duvet": "Prešite odeje", "hqd_duvet": "Prešite odeje",
"hqd_eco_40_60_degrees": "Eco 40-60", "hqd_eco_40_60_degrees": "Eco 40-60",
"hqd_handwash_wool": "Volna", "hqd_handwash_wool": "Volna 40'",
"hqd_i_refresh": "i-Refresh", "hqd_i_refresh": "i-Refresh",
"hqd_mix": "Mešano", "hqd_mix": "Mešano",
"hqd_quick_15": "Hitro 15'", "hqd_quick_15": "Hitro 15'",
@ -495,7 +509,7 @@
"hqd_shirts": "Srajce", "hqd_shirts": "Srajce",
"hqd_smart": "Smart A.I.", "hqd_smart": "Smart A.I.",
"hqd_spin": "Ožemanje", "hqd_spin": "Ožemanje",
"hqd_sport": "Šport", "hqd_sport": "Šport 25'",
"hqd_super_fast": "Hitro 39", "hqd_super_fast": "Hitro 39",
"hqd_synthetic_and_coloured": "Sintetika", "hqd_synthetic_and_coloured": "Sintetika",
"hygiene_59": "Higiena Plus 59'", "hygiene_59": "Higiena Plus 59'",
@ -506,10 +520,11 @@
"hygiene_pro_steam": "Hygiene Pro + Para", "hygiene_pro_steam": "Hygiene Pro + Para",
"intensive_40": "Intenzivno 40°C", "intensive_40": "Intenzivno 40°C",
"intensive_40_steam": "Intenzivno 40°C + para", "intensive_40_steam": "Intenzivno 40°C + para",
"iot_active_steam": "Para", "iot_active_steam": "Para 29'",
"iot_active_wash_steam": "Aktivno pranje", "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",
@ -542,17 +557,19 @@
"iot_dry_technical_fabrics": "Tehnične tkanine", "iot_dry_technical_fabrics": "Tehnične tkanine",
"iot_dry_warm_embrace": "Topel boben", "iot_dry_warm_embrace": "Topel boben",
"iot_dry_wool_dry": "Sušenje volne", "iot_dry_wool_dry": "Sušenje volne",
"iot_easy_iron": "Lažje likanje", "iot_easy_iron": "Lažje likanje 39'",
"iot_fresh_care_steam": "Nega za svežino + para", "iot_fresh_care_steam": "Nega za svežino + para",
"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_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'",
"iot_rapid_a_class_60_steam": "Hitri razred A 60 + para", "iot_rapid_a_class_60_steam": "Hitri razred A 60 + para",
"iot_resistant_cotton_steam": "Bombaž + Para", "iot_resistant_cotton_steam": "Bombaž + Para",
"iot_shirts_steam": "Srajce + Para", "iot_shirts_steam": "Srajce + Para",
"iot_single_item_steam": "En artikel + para", "iot_single_item_steam": "En artikel 20' + para",
"iot_smart_wash": "Pametno pranje", "iot_smart_wash": "Pametno pranje",
"iot_soft_care_steam": "Soft Care + Steam", "iot_soft_care_steam": "Soft Care + Steam",
"iot_special_39_full_load_steam": "Posebno 39' + para", "iot_special_39_full_load_steam": "Posebno 39' + para",
@ -586,7 +603,7 @@
"iot_wash_coloured_bed_linen": "Barvna posteljnina", "iot_wash_coloured_bed_linen": "Barvna posteljnina",
"iot_wash_coloured_bed_linen_steam": "Barvna posteljnina + para", "iot_wash_coloured_bed_linen_steam": "Barvna posteljnina + para",
"iot_wash_coloured_curtains": "Pisane zavese", "iot_wash_coloured_curtains": "Pisane zavese",
"iot_wash_coloured_shirts": "Pisane srajce", "iot_wash_coloured_shirts": "Pisane srajce 59'",
"iot_wash_coloured_shirts_steam": "Barvne srajce + para", "iot_wash_coloured_shirts_steam": "Barvne srajce + para",
"iot_wash_coloured_steam": "Pisane tkanine + Para", "iot_wash_coloured_steam": "Pisane tkanine + Para",
"iot_wash_coloured_tableclothes": "Pisani namizni prti", "iot_wash_coloured_tableclothes": "Pisani namizni prti",
@ -623,7 +640,7 @@
"iot_wash_down_jackets_zelig": "Puhovke", "iot_wash_down_jackets_zelig": "Puhovke",
"iot_wash_duvet": "Prešite odeje", "iot_wash_duvet": "Prešite odeje",
"iot_wash_fruit_stains": "Madeži sadja", "iot_wash_fruit_stains": "Madeži sadja",
"iot_wash_gym_fit": "Športna oblačila", "iot_wash_gym_fit": "Športna oblačila 59'",
"iot_wash_handwash": "Ročno pranje", "iot_wash_handwash": "Ročno pranje",
"iot_wash_handwash_colored": "Ročno pranje barvno", "iot_wash_handwash_colored": "Ročno pranje barvno",
"iot_wash_handwash_dark": "Ročno pranje temno", "iot_wash_handwash_dark": "Ročno pranje temno",
@ -668,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",
@ -686,6 +704,7 @@
"iot_wash_wool": "Volna", "iot_wash_wool": "Volna",
"jeans": "Jeans", "jeans": "Jeans",
"jeans_60": "Džins", "jeans_60": "Džins",
"jeans_60_steam": "Kavbojke + para",
"low_dry": "Sušenje mešanih tkanin", "low_dry": "Sušenje mešanih tkanin",
"mixed": "Mešano", "mixed": "Mešano",
"mixed_and_colored_59": "Mešana in pisana oblačila 59'", "mixed_and_colored_59": "Mešana in pisana oblačila 59'",
@ -709,7 +728,7 @@
"rinse": "Splakovanje", "rinse": "Splakovanje",
"shirts_steam": "Srajce + Para", "shirts_steam": "Srajce + Para",
"silent_night": "Overnight Cycle", "silent_night": "Overnight Cycle",
"single_item": "En artikel", "single_item": "En artikel 20'",
"single_item_steam": "En artikel + para", "single_item_steam": "En artikel + para",
"smart_wash": "Pametno pranje", "smart_wash": "Pametno pranje",
"soft_care": "Nega za mehkobo", "soft_care": "Nega za mehkobo",
@ -725,8 +744,8 @@
"steam_39": "Para 39'", "steam_39": "Para 39'",
"steam_care_pro": "Steam Care Pro", "steam_care_pro": "Steam Care Pro",
"steam_care_pro_cotton": "Steam Care Pro bombaž", "steam_care_pro_cotton": "Steam Care Pro bombaž",
"steam_care_pro_delicates": "Steam Care Pro občutljive tkanine", "steam_care_pro_delicates": "Steam Care Pro občutljive tkanine 16'",
"steam_care_pro_synthetic": "Steam Care Pro sintetika", "steam_care_pro_synthetic": "Steam Care Pro sintetika 20'",
"steam_hygiene_plus": "Higiena plus para", "steam_hygiene_plus": "Higiena plus para",
"synthetics": "Sintetika", "synthetics": "Sintetika",
"synthetic_and_coloured": "Sintetične in pisane tkanine", "synthetic_and_coloured": "Sintetične in pisane tkanine",
@ -738,7 +757,7 @@
"wool": "Volna", "wool": "Volna",
"wool_and_delicates_49": "Volna/Občutljive tkanine 49'", "wool_and_delicates_49": "Volna/Občutljive tkanine 49'",
"wool_dry": "Sušenje volne", "wool_dry": "Sušenje volne",
"wool_soft_care": "Volna & Nega Za Mehkobo" "wool_soft_care": "Volna & Nega Za Mehkobo 48'"
}, },
"name": "Program" "name": "Program"
}, },
@ -748,20 +767,25 @@
"cheese": "Sir", "cheese": "Sir",
"chiller": "Quick cool", "chiller": "Quick cool",
"cold_drinks": "Soft chill", "cold_drinks": "Soft chill",
"cool_drink": "Cool Drink",
"eco": "Eco", "eco": "Eco",
"eco_mode": "Način Eco", "eco_mode": "Način Eco",
"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",
"no_mode_selected": "Izbran ni noben način", "no_mode_selected": "Izbran ni noben način",
"quick_cool": "HITRO HLAJENJE", "quick_cool": "HITRO HLAJENJE",
"sea_food": "Ready to cook meal", "sea_food": "Ready to cook meal",
"smart_mode_title": "Smart Mode",
"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",
"zero_fresh": "0° Fresh" "vegetables": "Vegetable",
"zero_fresh": "0°C Fresh"
}, },
"name": "Program" "name": "Program"
}, },
@ -887,6 +911,14 @@
}, },
"fan_speed": { "fan_speed": {
"name": "Hitrost ventilatorja" "name": "Hitrost ventilatorja"
},
"humidity_level": {
"state": {
"low": "Low",
"mid": "Medium",
"high": "High"
},
"name": "Nivo vlažnosti"
} }
}, },
"select": { "select": {
@ -956,7 +988,9 @@
"auto_care_soil": "Auto Care", "auto_care_soil": "Auto Care",
"auto_hygiene": "Auto Higiena", "auto_hygiene": "Auto Higiena",
"auto_plus": "AutoPlus", "auto_plus": "AutoPlus",
"auto_plus_soil": "Auto Plus",
"auto_rapid": "Avtomatsko Hitro", "auto_rapid": "Avtomatsko Hitro",
"auto_rapid_soil": "Auto Rapid",
"auto_sensor": "Auto Sensor", "auto_sensor": "Auto Sensor",
"auto_sensor_soil": "Auto Sensor", "auto_sensor_soil": "Auto Sensor",
"auto_universal": "Samodejno univerzalno 5060 °C", "auto_universal": "Samodejno univerzalno 5060 °C",
@ -968,10 +1002,11 @@
"classe_a_59": "Razred A 59 min. 65 °C", "classe_a_59": "Razred A 59 min. 65 °C",
"delicate": "Občutljivo 45 °C", "delicate": "Občutljivo 45 °C",
"dishwasher_care": "Cikel odstranjevanja vodnega kamna", "dishwasher_care": "Cikel odstranjevanja vodnega kamna",
"eco": "Varčno", "eco": "Eko 45 °C",
"eco_asynch": "Eko 45 °C", "eco_asynch": "Eko 45 °C",
"eco_bldc": "Eko 45 °C", "eco_bldc": "Eko 45 °C",
"eco_synch": "Eko 45 °C", "eco_synch": "Eko 45 °C",
"eco_voice": "Eco",
"gentle_wash": "Gentle wash", "gentle_wash": "Gentle wash",
"glass": "Kozarci", "glass": "Kozarci",
"glassware": "Steklo 45 °C", "glassware": "Steklo 45 °C",
@ -980,6 +1015,7 @@
"hygiene_plus": "Higiena + 75 °C", "hygiene_plus": "Higiena + 75 °C",
"intensive": "Intenzivno", "intensive": "Intenzivno",
"intensive_rapid": "Hitro in intenzivno", "intensive_rapid": "Hitro in intenzivno",
"intensive_voice": "Intenzivno",
"iot_auto_sensor": "Auto Sensor", "iot_auto_sensor": "Auto Sensor",
"iot_auto_universal_soil": "Samodejno univerzalno 5060 °C", "iot_auto_universal_soil": "Samodejno univerzalno 5060 °C",
"iot_auto_wash_soil": "Samodejno pranje", "iot_auto_wash_soil": "Samodejno pranje",
@ -1021,6 +1057,13 @@
"iot_super_wash": "Super pomivanje", "iot_super_wash": "Super pomivanje",
"iot_turbopower": "Turbo moč", "iot_turbopower": "Turbo moč",
"iot_universal": "Univerzalno 60 °C", "iot_universal": "Univerzalno 60 °C",
"iot_voice_automatic": "Automatic",
"iot_voice_delicate": "Občutljivo 45 °C",
"iot_voice_eco": "Eko 45 °C",
"iot_voice_intensive": "Intenzivno 75°C",
"iot_voice_prewash": "Predpranje",
"iot_voice_rapid_59": "Hitri progr. 59'",
"iot_voice_universal": "Univerzalno 60 °C",
"iot_wok_grids_maxi_pans": "Posebna posoda (voki, rešetke in velike kozice)", "iot_wok_grids_maxi_pans": "Posebna posoda (voki, rešetke in velike kozice)",
"iot_wok_grids_maxi_pans_soil": "Posebna posoda (voki, rešetke in velike kozice)", "iot_wok_grids_maxi_pans_soil": "Posebna posoda (voki, rešetke in velike kozice)",
"iot_yes_quick_cycle": "Yes Quick", "iot_yes_quick_cycle": "Yes Quick",
@ -1052,6 +1095,7 @@
"ultra_silent": "Zelo tiho 55 °C", "ultra_silent": "Zelo tiho 55 °C",
"universal": "Univerzalno 60 °C", "universal": "Univerzalno 60 °C",
"universal_plus": "Univerzalni Plus 70 °C", "universal_plus": "Univerzalni Plus 70 °C",
"zone_wash": "Flex Zone Wash",
"zoom_39": "Zoom 39 min" "zoom_39": "Zoom 39 min"
}, },
"name": "Program" "name": "Program"
@ -1185,14 +1229,14 @@
"hqd_bulky": "Večji kosi", "hqd_bulky": "Večji kosi",
"hqd_casual": "Za prosti čas", "hqd_casual": "Za prosti čas",
"hqd_cold_wind_30": "Hladen vetrič 30 minut", "hqd_cold_wind_30": "Hladen vetrič 30 minut",
"hqd_cold_wind_timing": "Hladen vetrič", "hqd_cold_wind_timing": "Mrzel zrak",
"hqd_cotton": "Bombaž", "hqd_cotton": "Bombaž",
"hqd_curtain": "Zavese", "hqd_curtain": "Zavese",
"hqd_delicate": "Občutljive tkanine", "hqd_delicate": "Občutljive tkanine",
"hqd_diaper": "Plenice", "hqd_diaper": "Plenice",
"hqd_duvet": "Prešite odeje", "hqd_duvet": "Prešita jakna iz sintetičnih vlaken",
"hqd_feather": "Puhovke", "hqd_feather": "Prešita jakna iz naravnih vlaken",
"hqd_hot_wind_timing": "Vroč zrak", "hqd_hot_wind_timing": "Mehkoba",
"hqd_hygienic": "Higienizacija", "hqd_hygienic": "Higienizacija",
"hqd_i_refresh": "I-Refresh", "hqd_i_refresh": "I-Refresh",
"hqd_i_refresh_pro": "I-Refresh Pro", "hqd_i_refresh_pro": "I-Refresh Pro",
@ -1202,10 +1246,10 @@
"hqd_mix": "Mešano", "hqd_mix": "Mešano",
"hqd_night_dry": "Sušenje čez noč", "hqd_night_dry": "Sušenje čez noč",
"hqd_outdoor": "Outdoor", "hqd_outdoor": "Outdoor",
"hqd_precious_cure": "Precious cure", "hqd_precious_cure": "Precious Cure",
"hqd_quick_20": "Hitro 20", "hqd_quick_20": "Hitro 20",
"hqd_quick_30": "Hitro 30", "hqd_quick_30": "Hitro 30",
"hqd_quick_dry": "Hitro sušenje 30'", "hqd_quick_dry": "Samodejno hitro sušenje 30'",
"hqd_quilt": "Posteljna pregrinjala", "hqd_quilt": "Posteljna pregrinjala",
"hqd_refresh": "Osvežitev", "hqd_refresh": "Osvežitev",
"hqd_school_uniform": "Šolska uniforma", "hqd_school_uniform": "Šolska uniforma",
@ -1242,6 +1286,8 @@
"iot_dry_gym_fit": "Oblačila za telovadbo in fitnes", "iot_dry_gym_fit": "Oblačila za telovadbo in fitnes",
"iot_dry_lingerie": "Spodnje perilo", "iot_dry_lingerie": "Spodnje perilo",
"iot_dry_mixed": "Mešano", "iot_dry_mixed": "Mešano",
"iot_dry_pet_accessories": "Pripomočki za hišne ljubljenčke",
"iot_dry_pet_hair_removal": "Odstranjevanje dlak hišnih ljubljenčkov (predpranje)",
"iot_dry_playsuits": "Pajaci", "iot_dry_playsuits": "Pajaci",
"iot_dry_rapid_30": "Rapid 30", "iot_dry_rapid_30": "Rapid 30",
"iot_dry_rapid_59": "Hitro 59", "iot_dry_rapid_59": "Hitro 59",
@ -1293,9 +1339,9 @@
"state": { "state": {
"20_degrees_coloured_cottons": "20° pisano in bombaž", "20_degrees_coloured_cottons": "20° pisano in bombaž",
"20_degrees_new_energy_label": "20°C", "20_degrees_new_energy_label": "20°C",
"active_steam": "Para", "active_steam": "Para 29'",
"active_wash": "Aktivno pranje", "active_wash": "Aktivno pranje 20'",
"active_wash_steam": "Aktivno pranje", "active_wash_steam": "Aktivno pranje 20' + para",
"allergy_care": "Nega proti alergijam", "allergy_care": "Nega proti alergijam",
"allergy_care_pro": "Nega proti alergijam Pro", "allergy_care_pro": "Nega proti alergijam Pro",
"all_in_one_49": "Vse v enem 49'.", "all_in_one_49": "Vse v enem 49'.",
@ -1315,19 +1361,19 @@
"cottons_steam": "Bombaž + Para", "cottons_steam": "Bombaž + Para",
"cotton_care_59": "Bombaž 59 min.", "cotton_care_59": "Bombaž 59 min.",
"delicate_59": "Občutljivo 59'", "delicate_59": "Občutljivo 59'",
"delicate_silk": "Občutljiva svila", "delicate_silk": "Občutljiva svila 59'",
"delicate_silk_steam": "Občutljiva svila + para", "delicate_silk_steam": "Občutljiva svila + para",
"delicati_59": "Občutljivo 59'", "delicati_59": "Občutljivo 59'",
"delicati_59_steam": "Občutljivo 59'", "delicati_59_steam": "Občutljivo 59'",
"drain_spin": "Izpiranje in ožemanje", "drain_spin": "Izpiranje in ožemanje",
"easy_iron": "Lažje likanje", "easy_iron": "Lažje likanje 39'",
"eco_40_60_new_energy_label": "Eco 40-60", "eco_40_60_new_energy_label": "Eco 40-60",
"extra_care": "Dodatna Nega", "extra_care": "Dodatna Nega",
"fitness": "Fitness", "fitness": "Fitness",
"fitness_care": "Fitness", "fitness_care": "Fitness",
"fresh_care": "Nega za svežino", "fresh_care": "Nega za svežino 59'",
"fresh_care_steam": "Nega za svežino + para", "fresh_care_steam": "Nega za svežino + para",
"handwash_wool": "Ročno pranje in volna", "handwash_wool": "Ročno pranje in volna 48'",
"high_dry": "Sušenje bombaža", "high_dry": "Sušenje bombaža",
"hqd_20_degrees": "Bombaž 20℃", "hqd_20_degrees": "Bombaž 20℃",
"hqd_allergy": "Nega proti alergijam", "hqd_allergy": "Nega proti alergijam",
@ -1335,13 +1381,13 @@
"hqd_babycare": "Otroška posoda", "hqd_babycare": "Otroška posoda",
"hqd_checkup": "Preveri", "hqd_checkup": "Preveri",
"hqd_cottons": "Bombaž", "hqd_cottons": "Bombaž",
"hqd_delicate": "Občutljive tkanine", "hqd_delicate": "Občutljive tkanine 50'",
"hqd_delicate_cradle": "Občutljive tkanine", "hqd_delicate_cradle": "Občutljive tkanine",
"hqd_dry": "Sušenje bombaža", "hqd_dry": "Sušenje bombaža",
"hqd_dry_synthetics": "Sušenje mešanih tkanin", "hqd_dry_synthetics": "Sušenje mešanih tkanin",
"hqd_duvet": "Prešite odeje", "hqd_duvet": "Prešite odeje",
"hqd_eco_40_60_degrees": "Eco 40-60", "hqd_eco_40_60_degrees": "Eco 40-60",
"hqd_handwash_wool": "Volna", "hqd_handwash_wool": "Volna 40'",
"hqd_i_refresh": "i-Refresh", "hqd_i_refresh": "i-Refresh",
"hqd_mix": "Mešano", "hqd_mix": "Mešano",
"hqd_quick_15": "Hitro 15'", "hqd_quick_15": "Hitro 15'",
@ -1352,7 +1398,7 @@
"hqd_shirts": "Srajce", "hqd_shirts": "Srajce",
"hqd_smart": "Smart A.I.", "hqd_smart": "Smart A.I.",
"hqd_spin": "Ožemanje", "hqd_spin": "Ožemanje",
"hqd_sport": "Šport", "hqd_sport": "Šport 25'",
"hqd_super_fast": "Hitro 39", "hqd_super_fast": "Hitro 39",
"hqd_synthetic_and_coloured": "Sintetika", "hqd_synthetic_and_coloured": "Sintetika",
"hygiene_59": "Higiena Plus 59'", "hygiene_59": "Higiena Plus 59'",
@ -1363,10 +1409,11 @@
"hygiene_pro_steam": "Hygiene Pro + Para", "hygiene_pro_steam": "Hygiene Pro + Para",
"intensive_40": "Intenzivno 40°C", "intensive_40": "Intenzivno 40°C",
"intensive_40_steam": "Intenzivno 40°C + para", "intensive_40_steam": "Intenzivno 40°C + para",
"iot_active_steam": "Para", "iot_active_steam": "Para 29'",
"iot_active_wash_steam": "Aktivno pranje", "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",
@ -1399,17 +1446,19 @@
"iot_dry_technical_fabrics": "Tehnične tkanine", "iot_dry_technical_fabrics": "Tehnične tkanine",
"iot_dry_warm_embrace": "Topel boben", "iot_dry_warm_embrace": "Topel boben",
"iot_dry_wool_dry": "Sušenje volne", "iot_dry_wool_dry": "Sušenje volne",
"iot_easy_iron": "Lažje likanje", "iot_easy_iron": "Lažje likanje 39'",
"iot_fresh_care_steam": "Nega za svežino + para", "iot_fresh_care_steam": "Nega za svežino + para",
"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_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'",
"iot_rapid_a_class_60_steam": "Hitri razred A 60 + para", "iot_rapid_a_class_60_steam": "Hitri razred A 60 + para",
"iot_resistant_cotton_steam": "Bombaž + Para", "iot_resistant_cotton_steam": "Bombaž + Para",
"iot_shirts_steam": "Srajce + Para", "iot_shirts_steam": "Srajce + Para",
"iot_single_item_steam": "En artikel + para", "iot_single_item_steam": "En artikel 20' + para",
"iot_smart_wash": "Pametno pranje", "iot_smart_wash": "Pametno pranje",
"iot_soft_care_steam": "Soft Care + Steam", "iot_soft_care_steam": "Soft Care + Steam",
"iot_special_39_full_load_steam": "Posebno 39' + para", "iot_special_39_full_load_steam": "Posebno 39' + para",
@ -1443,7 +1492,7 @@
"iot_wash_coloured_bed_linen": "Barvna posteljnina", "iot_wash_coloured_bed_linen": "Barvna posteljnina",
"iot_wash_coloured_bed_linen_steam": "Barvna posteljnina + para", "iot_wash_coloured_bed_linen_steam": "Barvna posteljnina + para",
"iot_wash_coloured_curtains": "Pisane zavese", "iot_wash_coloured_curtains": "Pisane zavese",
"iot_wash_coloured_shirts": "Pisane srajce", "iot_wash_coloured_shirts": "Pisane srajce 59'",
"iot_wash_coloured_shirts_steam": "Barvne srajce + para", "iot_wash_coloured_shirts_steam": "Barvne srajce + para",
"iot_wash_coloured_steam": "Pisane tkanine + Para", "iot_wash_coloured_steam": "Pisane tkanine + Para",
"iot_wash_coloured_tableclothes": "Pisani namizni prti", "iot_wash_coloured_tableclothes": "Pisani namizni prti",
@ -1480,7 +1529,7 @@
"iot_wash_down_jackets_zelig": "Puhovke", "iot_wash_down_jackets_zelig": "Puhovke",
"iot_wash_duvet": "Prešite odeje", "iot_wash_duvet": "Prešite odeje",
"iot_wash_fruit_stains": "Madeži sadja", "iot_wash_fruit_stains": "Madeži sadja",
"iot_wash_gym_fit": "Športna oblačila", "iot_wash_gym_fit": "Športna oblačila 59'",
"iot_wash_handwash": "Ročno pranje", "iot_wash_handwash": "Ročno pranje",
"iot_wash_handwash_colored": "Ročno pranje barvno", "iot_wash_handwash_colored": "Ročno pranje barvno",
"iot_wash_handwash_dark": "Ročno pranje temno", "iot_wash_handwash_dark": "Ročno pranje temno",
@ -1525,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",
@ -1543,6 +1593,7 @@
"iot_wash_wool": "Volna", "iot_wash_wool": "Volna",
"jeans": "Jeans", "jeans": "Jeans",
"jeans_60": "Džins", "jeans_60": "Džins",
"jeans_60_steam": "Kavbojke + para",
"low_dry": "Sušenje mešanih tkanin", "low_dry": "Sušenje mešanih tkanin",
"mixed": "Mešano", "mixed": "Mešano",
"mixed_and_colored_59": "Mešana in pisana oblačila 59'", "mixed_and_colored_59": "Mešana in pisana oblačila 59'",
@ -1566,7 +1617,7 @@
"rinse": "Splakovanje", "rinse": "Splakovanje",
"shirts_steam": "Srajce + Para", "shirts_steam": "Srajce + Para",
"silent_night": "Overnight Cycle", "silent_night": "Overnight Cycle",
"single_item": "En artikel", "single_item": "En artikel 20'",
"single_item_steam": "En artikel + para", "single_item_steam": "En artikel + para",
"smart_wash": "Pametno pranje", "smart_wash": "Pametno pranje",
"soft_care": "Nega za mehkobo", "soft_care": "Nega za mehkobo",
@ -1582,8 +1633,8 @@
"steam_39": "Para 39'", "steam_39": "Para 39'",
"steam_care_pro": "Steam Care Pro", "steam_care_pro": "Steam Care Pro",
"steam_care_pro_cotton": "Steam Care Pro bombaž", "steam_care_pro_cotton": "Steam Care Pro bombaž",
"steam_care_pro_delicates": "Steam Care Pro občutljive tkanine", "steam_care_pro_delicates": "Steam Care Pro občutljive tkanine 16'",
"steam_care_pro_synthetic": "Steam Care Pro sintetika", "steam_care_pro_synthetic": "Steam Care Pro sintetika 20'",
"steam_hygiene_plus": "Higiena plus para", "steam_hygiene_plus": "Higiena plus para",
"synthetics": "Sintetika", "synthetics": "Sintetika",
"synthetic_and_coloured": "Sintetične in pisane tkanine", "synthetic_and_coloured": "Sintetične in pisane tkanine",
@ -1595,7 +1646,7 @@
"wool": "Volna", "wool": "Volna",
"wool_and_delicates_49": "Volna/Občutljive tkanine 49'", "wool_and_delicates_49": "Volna/Občutljive tkanine 49'",
"wool_dry": "Sušenje volne", "wool_dry": "Sušenje volne",
"wool_soft_care": "Volna & Nega Za Mehkobo" "wool_soft_care": "Volna & Nega Za Mehkobo 48'"
}, },
"name": "Program" "name": "Program"
}, },
@ -1605,20 +1656,25 @@
"cheese": "Sir", "cheese": "Sir",
"chiller": "Quick cool", "chiller": "Quick cool",
"cold_drinks": "Soft chill", "cold_drinks": "Soft chill",
"cool_drink": "Cool Drink",
"eco": "Eco", "eco": "Eco",
"eco_mode": "Način Eco", "eco_mode": "Način Eco",
"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",
"no_mode_selected": "Izbran ni noben način", "no_mode_selected": "Izbran ni noben način",
"quick_cool": "HITRO HLAJENJE", "quick_cool": "HITRO HLAJENJE",
"sea_food": "Ready to cook meal", "sea_food": "Ready to cook meal",
"smart_mode_title": "Smart Mode",
"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",
"zero_fresh": "0° Fresh" "vegetables": "Vegetable",
"zero_fresh": "0°C Fresh"
}, },
"name": "Program" "name": "Program"
}, },
@ -1671,6 +1727,71 @@
"unknown": "unknown" "unknown": "unknown"
}, },
"name": "Stopnja umazanije" "name": "Stopnja umazanije"
},
"stain_type": {
"state": {
"baby_food": "Otroška hrana",
"bean_paste": "Fižolova juha",
"blood": "Kri",
"blueberry": "Borovnica",
"blue_ink": "Modro črnilo",
"butter": "Maslo",
"chili_oil": "Čilijevo olje",
"chili_sauce": "Čili omaka",
"chocolate": "Čokolada",
"coffe": "Kava",
"coffee": "Kava",
"color_pencil": "Svinčnik",
"cooking_oil": "Olje za kuhanje",
"curry": "Kari",
"deodorant": "Dezodorant",
"egg": "Jajce",
"fruit": "Sadje",
"glue": "Lepilo",
"grass": "Trava",
"ice_cream": "Sladoled",
"ketchup": "Kečap",
"lip_gloss": "Balzam za ustnice",
"mayonnaise": "Majoneza",
"mech_grease": "Strojna mast",
"milk": "Mleko",
"milk_tea": "Mlečni čaj",
"oil": "Olje",
"oil_pastel": "Oljni pastel",
"perfume": "Parfum",
"rust": "Rja",
"shoe_cream": "Krema za čevlje",
"soil": "Tla",
"soy_sauce": "Sojina Omaka",
"stain_level": "Stopnja madežev",
"sweat": "Pot",
"tea": "Čaj",
"wine": "Vino",
"unknown": "unknown"
},
"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": {
@ -1928,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": {
@ -2062,6 +2186,9 @@
} }
} }
} }
},
"my_zone": {
"name": "My Zone"
} }
}, },
"fan": { "fan": {

View File

@ -99,22 +99,25 @@
"auto_care_soil": "Auto Care", "auto_care_soil": "Auto Care",
"auto_hygiene": "Automatska Higijena", "auto_hygiene": "Automatska Higijena",
"auto_plus": "AutoPlus", "auto_plus": "AutoPlus",
"auto_plus_soil": "Auto Plus",
"auto_rapid": "Automatski Brzi", "auto_rapid": "Automatski Brzi",
"auto_rapid_soil": "Auto Rapid",
"auto_sensor": "Auto Sensor", "auto_sensor": "Auto Sensor",
"auto_sensor_soil": "Auto Sensor", "auto_sensor_soil": "Auto Sensor",
"auto_universal": "Automatski univerzalni 50 - 60°C", "auto_universal": "Automatski univerzalni 50-60°C",
"auto_universal_plus": "Automatski univerzalni+ 65 - 75°C", "auto_universal_plus": "Automatski univerzalni+ 65-75°C",
"auto_universal_plus_soil": "Automatski univerzalni+ 65 - 75°C", "auto_universal_plus_soil": "Automatski univerzalni+ 65-75°C",
"auto_universal_soil": "Automatski univerzalni 50 - 60°C", "auto_universal_soil": "Automatski univerzalni 50-60°C",
"auto_wash": "Automatsko pranje", "auto_wash": "Automatsko pranje",
"auto_wash_soil": "Automatsko pranje", "auto_wash_soil": "Automatsko pranje",
"classe_a_59": "A klasa 59' 65°C", "classe_a_59": "A klasa 59' 65°C",
"delicate": "Osetljivo 45°C", "delicate": "Osetljivo 45°C",
"dishwasher_care": "Ciklus čišćenja kamenca", "dishwasher_care": "Ciklus čišćenja kamenca",
"eco": "Eko", "eco": "Eco 45°C",
"eco_asynch": "Eco 45°C", "eco_asynch": "Eco 45°C",
"eco_bldc": "Eco 45°C", "eco_bldc": "Eco 45°C",
"eco_synch": "Eco 45°C", "eco_synch": "Eco 45°C",
"eco_voice": "Eco",
"gentle_wash": "Gentle wash", "gentle_wash": "Gentle wash",
"glass": "Staklo", "glass": "Staklo",
"glassware": "Staklo 45°C", "glassware": "Staklo 45°C",
@ -123,8 +126,9 @@
"hygiene_plus": "Higijenski+ 75°C", "hygiene_plus": "Higijenski+ 75°C",
"intensive": "Intenzivno", "intensive": "Intenzivno",
"intensive_rapid": "snažno i brzo", "intensive_rapid": "snažno i brzo",
"intensive_voice": "Intenzivno",
"iot_auto_sensor": "Auto Sensor", "iot_auto_sensor": "Auto Sensor",
"iot_auto_universal_soil": "Automatski univerzalni 50 - 60°C", "iot_auto_universal_soil": "Automatski univerzalni 50-60°C",
"iot_auto_wash_soil": "Automatsko pranje", "iot_auto_wash_soil": "Automatsko pranje",
"iot_baby_care": "Baby Nega", "iot_baby_care": "Baby Nega",
"iot_breakfast": "Doručak", "iot_breakfast": "Doručak",
@ -164,6 +168,13 @@
"iot_super_wash": "Super pranje", "iot_super_wash": "Super pranje",
"iot_turbopower": "TurboPower", "iot_turbopower": "TurboPower",
"iot_universal": "Univerzalni 60°C", "iot_universal": "Univerzalni 60°C",
"iot_voice_automatic": "Automatic",
"iot_voice_delicate": "Osetljivo 45°C",
"iot_voice_eco": "Eco 45°C",
"iot_voice_intensive": "Intenzivno 75°C",
"iot_voice_prewash": "Predpranje",
"iot_voice_rapid_59": "Brzi 59'",
"iot_voice_universal": "Univerzalni 60°C",
"iot_wok_grids_maxi_pans": "Specijalni tiganji (Wok, Rešetke, Maxi tiganji)", "iot_wok_grids_maxi_pans": "Specijalni tiganji (Wok, Rešetke, Maxi tiganji)",
"iot_wok_grids_maxi_pans_soil": "Specijalni tiganji (Wok, Rešetke, Maxi tiganji)", "iot_wok_grids_maxi_pans_soil": "Specijalni tiganji (Wok, Rešetke, Maxi tiganji)",
"iot_yes_quick_cycle": "Yes Quick", "iot_yes_quick_cycle": "Yes Quick",
@ -195,6 +206,7 @@
"ultra_silent": "Ultra tihi 55°C", "ultra_silent": "Ultra tihi 55°C",
"universal": "Univerzalni 60°C", "universal": "Univerzalni 60°C",
"universal_plus": "Univerzalni plus 70°C", "universal_plus": "Univerzalni plus 70°C",
"zone_wash": "Flex Zone Wash",
"zoom_39": "Zoom 39 min" "zoom_39": "Zoom 39 min"
}, },
"name": "Program" "name": "Program"
@ -333,9 +345,9 @@
"hqd_curtain": "Zavese", "hqd_curtain": "Zavese",
"hqd_delicate": "Osetljive tkanine", "hqd_delicate": "Osetljive tkanine",
"hqd_diaper": "Pelene", "hqd_diaper": "Pelene",
"hqd_duvet": "Jorgan", "hqd_duvet": "Prošivena jakna od sintetičkih vlakana",
"hqd_feather": "Perjane jakne", "hqd_feather": "Prošivena jakna od prirodnih vlakana",
"hqd_hot_wind_timing": "Vruć vazduh", "hqd_hot_wind_timing": "Topao zagrljaj",
"hqd_hygienic": "Higijenski", "hqd_hygienic": "Higijenski",
"hqd_i_refresh": "I-Refresh", "hqd_i_refresh": "I-Refresh",
"hqd_i_refresh_pro": "I-Refresh Pro", "hqd_i_refresh_pro": "I-Refresh Pro",
@ -345,10 +357,10 @@
"hqd_mix": "Mešovito", "hqd_mix": "Mešovito",
"hqd_night_dry": "Noćno sušenje", "hqd_night_dry": "Noćno sušenje",
"hqd_outdoor": "Outdoor", "hqd_outdoor": "Outdoor",
"hqd_precious_cure": "Precious cure", "hqd_precious_cure": "Precious Cure",
"hqd_quick_20": "Brzo 20", "hqd_quick_20": "Brzo 20",
"hqd_quick_30": "Brzo 30", "hqd_quick_30": "Brzo 30",
"hqd_quick_dry": "Brzo sušenje 30'", "hqd_quick_dry": "Brzo automatsko sušenje 30'",
"hqd_quilt": "Jorgani", "hqd_quilt": "Jorgani",
"hqd_refresh": "Osvežavanje", "hqd_refresh": "Osvežavanje",
"hqd_school_uniform": "Školska uniforma", "hqd_school_uniform": "Školska uniforma",
@ -385,6 +397,8 @@
"iot_dry_gym_fit": "Gym fit - Fitness", "iot_dry_gym_fit": "Gym fit - Fitness",
"iot_dry_lingerie": "Donji veš", "iot_dry_lingerie": "Donji veš",
"iot_dry_mixed": "Mešani veš", "iot_dry_mixed": "Mešani veš",
"iot_dry_pet_accessories": "Oprema za kućne ljubimce",
"iot_dry_pet_hair_removal": "Uklanjanje dlaka kućnih ljubimaca (pretpranje)",
"iot_dry_playsuits": "Kostimi", "iot_dry_playsuits": "Kostimi",
"iot_dry_rapid_30": "Rapid 30", "iot_dry_rapid_30": "Rapid 30",
"iot_dry_rapid_59": "Brzi program 59'.", "iot_dry_rapid_59": "Brzi program 59'.",
@ -436,9 +450,9 @@
"state": { "state": {
"20_degrees_coloured_cottons": "20° u boji i pamuk", "20_degrees_coloured_cottons": "20° u boji i pamuk",
"20_degrees_new_energy_label": "20°C", "20_degrees_new_energy_label": "20°C",
"active_steam": "Para", "active_steam": "Para 29'",
"active_wash": "Aktivno pranje", "active_wash": "Aktivno pranje 20'",
"active_wash_steam": "Aktivno pranje", "active_wash_steam": "Aktivno pranje 20' + para",
"allergy_care": "Tretman protiv alergija", "allergy_care": "Tretman protiv alergija",
"allergy_care_pro": "Tretman protiv alergija Pro", "allergy_care_pro": "Tretman protiv alergija Pro",
"all_in_one_49": "Sve u jedan 49'.", "all_in_one_49": "Sve u jedan 49'.",
@ -458,19 +472,19 @@
"cottons_steam": "Pamuk + Para", "cottons_steam": "Pamuk + Para",
"cotton_care_59": "Pamuk 59 Min", "cotton_care_59": "Pamuk 59 Min",
"delicate_59": "Delikatni 59'", "delicate_59": "Delikatni 59'",
"delicate_silk": "Osetljiva svila", "delicate_silk": "Osetljiva svila 59'",
"delicate_silk_steam": "Osetljiva svila + para", "delicate_silk_steam": "Osetljiva svila + para",
"delicati_59": "Delikatni 59'", "delicati_59": "Delikatni 59'",
"delicati_59_steam": "Delikatni 59'", "delicati_59_steam": "Delikatni 59'",
"drain_spin": "Sušenje i centrifuga", "drain_spin": "Sušenje i centrifuga",
"easy_iron": "Lako peglanje", "easy_iron": "Lako peglanje 39'",
"eco_40_60_new_energy_label": "Eko 40-60", "eco_40_60_new_energy_label": "Eko 40-60",
"extra_care": "Dodatni Tretman", "extra_care": "Dodatni Tretman",
"fitness": "Fitnes", "fitness": "Fitnes",
"fitness_care": "Fitnes", "fitness_care": "Fitnes",
"fresh_care": "Tretman za osvežavanje", "fresh_care": "Tretman za osvežavanje 59'",
"fresh_care_steam": "Tretman za osvežavanje + para", "fresh_care_steam": "Tretman za osvežavanje + para",
"handwash_wool": "Ručno pranje i vuna", "handwash_wool": "Ručno pranje i vuna 48'",
"high_dry": "Sušenje pamuka", "high_dry": "Sušenje pamuka",
"hqd_20_degrees": "Pamuk 20℃", "hqd_20_degrees": "Pamuk 20℃",
"hqd_allergy": "Tretman protiv alergija", "hqd_allergy": "Tretman protiv alergija",
@ -478,13 +492,13 @@
"hqd_babycare": "Baby Nega", "hqd_babycare": "Baby Nega",
"hqd_checkup": "Provera", "hqd_checkup": "Provera",
"hqd_cottons": "Pamuk", "hqd_cottons": "Pamuk",
"hqd_delicate": "Osetljive tkanine", "hqd_delicate": "Osetljive tkanine 50'",
"hqd_delicate_cradle": "Osetljive tkanine", "hqd_delicate_cradle": "Osetljive tkanine",
"hqd_dry": "Sušenje pamuka", "hqd_dry": "Sušenje pamuka",
"hqd_dry_synthetics": "Sušenje mešanog veša", "hqd_dry_synthetics": "Sušenje mešanog veša",
"hqd_duvet": "Jorgani", "hqd_duvet": "Jorgani",
"hqd_eco_40_60_degrees": "Eko 40-60", "hqd_eco_40_60_degrees": "Eko 40-60",
"hqd_handwash_wool": "Vuna", "hqd_handwash_wool": "Vuna 40'",
"hqd_i_refresh": "i-Refresh", "hqd_i_refresh": "i-Refresh",
"hqd_mix": "Mešani veš", "hqd_mix": "Mešani veš",
"hqd_quick_15": "Brzi program 15'", "hqd_quick_15": "Brzi program 15'",
@ -495,7 +509,7 @@
"hqd_shirts": "Košulje", "hqd_shirts": "Košulje",
"hqd_smart": "Smart A.I.", "hqd_smart": "Smart A.I.",
"hqd_spin": "Centrifuga", "hqd_spin": "Centrifuga",
"hqd_sport": "Sportska odeća", "hqd_sport": "Sportska odeća 25'",
"hqd_super_fast": "Brzi program 39", "hqd_super_fast": "Brzi program 39",
"hqd_synthetic_and_coloured": "Sintetika", "hqd_synthetic_and_coloured": "Sintetika",
"hygiene_59": "Hygijenski Plus 59'", "hygiene_59": "Hygijenski Plus 59'",
@ -506,10 +520,11 @@
"hygiene_pro_steam": "Hygiene Pro + para", "hygiene_pro_steam": "Hygiene Pro + para",
"intensive_40": "Intenzivno 40°C", "intensive_40": "Intenzivno 40°C",
"intensive_40_steam": "Intenzivno 40°C + para", "intensive_40_steam": "Intenzivno 40°C + para",
"iot_active_steam": "Para", "iot_active_steam": "Para 29'",
"iot_active_wash_steam": "Aktivno pranje", "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",
@ -542,17 +557,19 @@
"iot_dry_technical_fabrics": "Teničke tkanine", "iot_dry_technical_fabrics": "Teničke tkanine",
"iot_dry_warm_embrace": "Toplo sušenje", "iot_dry_warm_embrace": "Toplo sušenje",
"iot_dry_wool_dry": "Sušenje vune", "iot_dry_wool_dry": "Sušenje vune",
"iot_easy_iron": "Lako peglanje", "iot_easy_iron": "Lako peglanje 39'",
"iot_fresh_care_steam": "Tretman za osvežavanje + para", "iot_fresh_care_steam": "Tretman za osvežavanje + para",
"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_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'",
"iot_rapid_a_class_60_steam": "Brza klasa A 60 + para", "iot_rapid_a_class_60_steam": "Brza klasa A 60 + para",
"iot_resistant_cotton_steam": "Pamuk + Para", "iot_resistant_cotton_steam": "Pamuk + Para",
"iot_shirts_steam": "Košulje + para", "iot_shirts_steam": "Košulje + para",
"iot_single_item_steam": "Pojedinačni predmet + para", "iot_single_item_steam": "Pojedinačni predmet 20' + para",
"iot_smart_wash": "Pametno pranje", "iot_smart_wash": "Pametno pranje",
"iot_soft_care_steam": "Soft Care + Steam", "iot_soft_care_steam": "Soft Care + Steam",
"iot_special_39_full_load_steam": "Posebno 39' + para", "iot_special_39_full_load_steam": "Posebno 39' + para",
@ -586,7 +603,7 @@
"iot_wash_coloured_bed_linen": "Posteljina u boji", "iot_wash_coloured_bed_linen": "Posteljina u boji",
"iot_wash_coloured_bed_linen_steam": "Posteljina u boji + para", "iot_wash_coloured_bed_linen_steam": "Posteljina u boji + para",
"iot_wash_coloured_curtains": "Zavese u boji", "iot_wash_coloured_curtains": "Zavese u boji",
"iot_wash_coloured_shirts": "Košulje u boji", "iot_wash_coloured_shirts": "Košulje u boji 59'",
"iot_wash_coloured_shirts_steam": "Košulje u boji + para", "iot_wash_coloured_shirts_steam": "Košulje u boji + para",
"iot_wash_coloured_steam": "Boja + Para", "iot_wash_coloured_steam": "Boja + Para",
"iot_wash_coloured_tableclothes": "Stolnjaci u boji", "iot_wash_coloured_tableclothes": "Stolnjaci u boji",
@ -623,7 +640,7 @@
"iot_wash_down_jackets_zelig": "Podjakne", "iot_wash_down_jackets_zelig": "Podjakne",
"iot_wash_duvet": "Jorgani", "iot_wash_duvet": "Jorgani",
"iot_wash_fruit_stains": "Fleke od voća", "iot_wash_fruit_stains": "Fleke od voća",
"iot_wash_gym_fit": "Odeća za teretanu - fitnes", "iot_wash_gym_fit": "Odeća za teretanu - fitnes 59'",
"iot_wash_handwash": "Ručno pranje", "iot_wash_handwash": "Ručno pranje",
"iot_wash_handwash_colored": "Ručno pranje materijala u boji", "iot_wash_handwash_colored": "Ručno pranje materijala u boji",
"iot_wash_handwash_dark": "Ručno pranje tamnog materijala", "iot_wash_handwash_dark": "Ručno pranje tamnog materijala",
@ -668,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",
@ -686,6 +704,7 @@
"iot_wash_wool": "Vuna", "iot_wash_wool": "Vuna",
"jeans": "Džins", "jeans": "Džins",
"jeans_60": "Jeans", "jeans_60": "Jeans",
"jeans_60_steam": "„Jeans + Steam“",
"low_dry": "Sušenje mešanog veša", "low_dry": "Sušenje mešanog veša",
"mixed": "Mešani veš", "mixed": "Mešani veš",
"mixed_and_colored_59": "Mešani veš i veš u boji 59'", "mixed_and_colored_59": "Mešani veš i veš u boji 59'",
@ -709,7 +728,7 @@
"rinse": "Ispiranje", "rinse": "Ispiranje",
"shirts_steam": "Košulje + para", "shirts_steam": "Košulje + para",
"silent_night": "Noćni ciklus", "silent_night": "Noćni ciklus",
"single_item": "Pojedinačni predmet", "single_item": "Pojedinačni predmet 20'",
"single_item_steam": "Pojedinačni predmet + para", "single_item_steam": "Pojedinačni predmet + para",
"smart_wash": "Pametno pranje", "smart_wash": "Pametno pranje",
"soft_care": "Blagi tretman", "soft_care": "Blagi tretman",
@ -725,8 +744,8 @@
"steam_39": "Para 39'", "steam_39": "Para 39'",
"steam_care_pro": "Steam Care Pro", "steam_care_pro": "Steam Care Pro",
"steam_care_pro_cotton": "Steam Care Pro - pamuk", "steam_care_pro_cotton": "Steam Care Pro - pamuk",
"steam_care_pro_delicates": "Steam Care Pro - osetljive tkanine", "steam_care_pro_delicates": "Steam Care Pro - osetljive tkanine 16'",
"steam_care_pro_synthetic": "Steam Care Pro - sintetika", "steam_care_pro_synthetic": "Steam Care Pro - sintetika 20'",
"steam_hygiene_plus": "Higijena plus sa parom", "steam_hygiene_plus": "Higijena plus sa parom",
"synthetics": "Sintetika", "synthetics": "Sintetika",
"synthetic_and_coloured": "Sintetika i materijal u boji", "synthetic_and_coloured": "Sintetika i materijal u boji",
@ -738,7 +757,7 @@
"wool": "Vuna", "wool": "Vuna",
"wool_and_delicates_49": "Vuna/Delikatni 49'", "wool_and_delicates_49": "Vuna/Delikatni 49'",
"wool_dry": "Sušenje vune", "wool_dry": "Sušenje vune",
"wool_soft_care": "Vuna & Blagi Tretman" "wool_soft_care": "Vuna & Blagi Tretman 48'"
}, },
"name": "Program" "name": "Program"
}, },
@ -748,20 +767,25 @@
"cheese": "Sir", "cheese": "Sir",
"chiller": "Quick cool", "chiller": "Quick cool",
"cold_drinks": "Soft chill", "cold_drinks": "Soft chill",
"cool_drink": "Cool Drink",
"eco": "Eco", "eco": "Eco",
"eco_mode": "Eco režim", "eco_mode": "Eco režim",
"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",
"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",
"sea_food": "Ready to cook meal", "sea_food": "Ready to cook meal",
"smart_mode_title": "Smart Mode",
"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",
"zero_fresh": "0° Fresh" "vegetables": "Vegetable",
"zero_fresh": "0°C Fresh"
}, },
"name": "Program" "name": "Program"
}, },
@ -887,6 +911,14 @@
}, },
"fan_speed": { "fan_speed": {
"name": "Brzina ventilatora" "name": "Brzina ventilatora"
},
"humidity_level": {
"state": {
"low": "Niska",
"mid": "Srednja",
"high": "Visoka"
},
"name": "Nivo vlage"
} }
}, },
"select": { "select": {
@ -956,22 +988,25 @@
"auto_care_soil": "Auto Care", "auto_care_soil": "Auto Care",
"auto_hygiene": "Automatska Higijena", "auto_hygiene": "Automatska Higijena",
"auto_plus": "AutoPlus", "auto_plus": "AutoPlus",
"auto_plus_soil": "Auto Plus",
"auto_rapid": "Automatski Brzi", "auto_rapid": "Automatski Brzi",
"auto_rapid_soil": "Auto Rapid",
"auto_sensor": "Auto Sensor", "auto_sensor": "Auto Sensor",
"auto_sensor_soil": "Auto Sensor", "auto_sensor_soil": "Auto Sensor",
"auto_universal": "Automatski univerzalni 50 - 60°C", "auto_universal": "Automatski univerzalni 50-60°C",
"auto_universal_plus": "Automatski univerzalni+ 65 - 75°C", "auto_universal_plus": "Automatski univerzalni+ 65-75°C",
"auto_universal_plus_soil": "Automatski univerzalni+ 65 - 75°C", "auto_universal_plus_soil": "Automatski univerzalni+ 65-75°C",
"auto_universal_soil": "Automatski univerzalni 50 - 60°C", "auto_universal_soil": "Automatski univerzalni 50-60°C",
"auto_wash": "Automatsko pranje", "auto_wash": "Automatsko pranje",
"auto_wash_soil": "Automatsko pranje", "auto_wash_soil": "Automatsko pranje",
"classe_a_59": "A klasa 59' 65°C", "classe_a_59": "A klasa 59' 65°C",
"delicate": "Osetljivo 45°C", "delicate": "Osetljivo 45°C",
"dishwasher_care": "Ciklus čišćenja kamenca", "dishwasher_care": "Ciklus čišćenja kamenca",
"eco": "Eko", "eco": "Eco 45°C",
"eco_asynch": "Eco 45°C", "eco_asynch": "Eco 45°C",
"eco_bldc": "Eco 45°C", "eco_bldc": "Eco 45°C",
"eco_synch": "Eco 45°C", "eco_synch": "Eco 45°C",
"eco_voice": "Eco",
"gentle_wash": "Gentle wash", "gentle_wash": "Gentle wash",
"glass": "Staklo", "glass": "Staklo",
"glassware": "Staklo 45°C", "glassware": "Staklo 45°C",
@ -980,8 +1015,9 @@
"hygiene_plus": "Higijenski+ 75°C", "hygiene_plus": "Higijenski+ 75°C",
"intensive": "Intenzivno", "intensive": "Intenzivno",
"intensive_rapid": "snažno i brzo", "intensive_rapid": "snažno i brzo",
"intensive_voice": "Intenzivno",
"iot_auto_sensor": "Auto Sensor", "iot_auto_sensor": "Auto Sensor",
"iot_auto_universal_soil": "Automatski univerzalni 50 - 60°C", "iot_auto_universal_soil": "Automatski univerzalni 50-60°C",
"iot_auto_wash_soil": "Automatsko pranje", "iot_auto_wash_soil": "Automatsko pranje",
"iot_baby_care": "Baby Nega", "iot_baby_care": "Baby Nega",
"iot_breakfast": "Doručak", "iot_breakfast": "Doručak",
@ -1021,6 +1057,13 @@
"iot_super_wash": "Super pranje", "iot_super_wash": "Super pranje",
"iot_turbopower": "TurboPower", "iot_turbopower": "TurboPower",
"iot_universal": "Univerzalni 60°C", "iot_universal": "Univerzalni 60°C",
"iot_voice_automatic": "Automatic",
"iot_voice_delicate": "Osetljivo 45°C",
"iot_voice_eco": "Eco 45°C",
"iot_voice_intensive": "Intenzivno 75°C",
"iot_voice_prewash": "Predpranje",
"iot_voice_rapid_59": "Brzi 59'",
"iot_voice_universal": "Univerzalni 60°C",
"iot_wok_grids_maxi_pans": "Specijalni tiganji (Wok, Rešetke, Maxi tiganji)", "iot_wok_grids_maxi_pans": "Specijalni tiganji (Wok, Rešetke, Maxi tiganji)",
"iot_wok_grids_maxi_pans_soil": "Specijalni tiganji (Wok, Rešetke, Maxi tiganji)", "iot_wok_grids_maxi_pans_soil": "Specijalni tiganji (Wok, Rešetke, Maxi tiganji)",
"iot_yes_quick_cycle": "Yes Quick", "iot_yes_quick_cycle": "Yes Quick",
@ -1052,6 +1095,7 @@
"ultra_silent": "Ultra tihi 55°C", "ultra_silent": "Ultra tihi 55°C",
"universal": "Univerzalni 60°C", "universal": "Univerzalni 60°C",
"universal_plus": "Univerzalni plus 70°C", "universal_plus": "Univerzalni plus 70°C",
"zone_wash": "Flex Zone Wash",
"zoom_39": "Zoom 39 min" "zoom_39": "Zoom 39 min"
}, },
"name": "Program" "name": "Program"
@ -1190,9 +1234,9 @@
"hqd_curtain": "Zavese", "hqd_curtain": "Zavese",
"hqd_delicate": "Osetljive tkanine", "hqd_delicate": "Osetljive tkanine",
"hqd_diaper": "Pelene", "hqd_diaper": "Pelene",
"hqd_duvet": "Jorgan", "hqd_duvet": "Prošivena jakna od sintetičkih vlakana",
"hqd_feather": "Perjane jakne", "hqd_feather": "Prošivena jakna od prirodnih vlakana",
"hqd_hot_wind_timing": "Vruć vazduh", "hqd_hot_wind_timing": "Topao zagrljaj",
"hqd_hygienic": "Higijenski", "hqd_hygienic": "Higijenski",
"hqd_i_refresh": "I-Refresh", "hqd_i_refresh": "I-Refresh",
"hqd_i_refresh_pro": "I-Refresh Pro", "hqd_i_refresh_pro": "I-Refresh Pro",
@ -1202,10 +1246,10 @@
"hqd_mix": "Mešovito", "hqd_mix": "Mešovito",
"hqd_night_dry": "Noćno sušenje", "hqd_night_dry": "Noćno sušenje",
"hqd_outdoor": "Outdoor", "hqd_outdoor": "Outdoor",
"hqd_precious_cure": "Precious cure", "hqd_precious_cure": "Precious Cure",
"hqd_quick_20": "Brzo 20", "hqd_quick_20": "Brzo 20",
"hqd_quick_30": "Brzo 30", "hqd_quick_30": "Brzo 30",
"hqd_quick_dry": "Brzo sušenje 30'", "hqd_quick_dry": "Brzo automatsko sušenje 30'",
"hqd_quilt": "Jorgani", "hqd_quilt": "Jorgani",
"hqd_refresh": "Osvežavanje", "hqd_refresh": "Osvežavanje",
"hqd_school_uniform": "Školska uniforma", "hqd_school_uniform": "Školska uniforma",
@ -1242,6 +1286,8 @@
"iot_dry_gym_fit": "Gym fit - Fitness", "iot_dry_gym_fit": "Gym fit - Fitness",
"iot_dry_lingerie": "Donji veš", "iot_dry_lingerie": "Donji veš",
"iot_dry_mixed": "Mešani veš", "iot_dry_mixed": "Mešani veš",
"iot_dry_pet_accessories": "Oprema za kućne ljubimce",
"iot_dry_pet_hair_removal": "Uklanjanje dlaka kućnih ljubimaca (pretpranje)",
"iot_dry_playsuits": "Kostimi", "iot_dry_playsuits": "Kostimi",
"iot_dry_rapid_30": "Rapid 30", "iot_dry_rapid_30": "Rapid 30",
"iot_dry_rapid_59": "Brzi program 59'.", "iot_dry_rapid_59": "Brzi program 59'.",
@ -1293,9 +1339,9 @@
"state": { "state": {
"20_degrees_coloured_cottons": "20° u boji i pamuk", "20_degrees_coloured_cottons": "20° u boji i pamuk",
"20_degrees_new_energy_label": "20°C", "20_degrees_new_energy_label": "20°C",
"active_steam": "Para", "active_steam": "Para 29'",
"active_wash": "Aktivno pranje", "active_wash": "Aktivno pranje 20'",
"active_wash_steam": "Aktivno pranje", "active_wash_steam": "Aktivno pranje 20' + para",
"allergy_care": "Tretman protiv alergija", "allergy_care": "Tretman protiv alergija",
"allergy_care_pro": "Tretman protiv alergija Pro", "allergy_care_pro": "Tretman protiv alergija Pro",
"all_in_one_49": "Sve u jedan 49'.", "all_in_one_49": "Sve u jedan 49'.",
@ -1315,19 +1361,19 @@
"cottons_steam": "Pamuk + Para", "cottons_steam": "Pamuk + Para",
"cotton_care_59": "Pamuk 59 Min", "cotton_care_59": "Pamuk 59 Min",
"delicate_59": "Delikatni 59'", "delicate_59": "Delikatni 59'",
"delicate_silk": "Osetljiva svila", "delicate_silk": "Osetljiva svila 59'",
"delicate_silk_steam": "Osetljiva svila + para", "delicate_silk_steam": "Osetljiva svila + para",
"delicati_59": "Delikatni 59'", "delicati_59": "Delikatni 59'",
"delicati_59_steam": "Delikatni 59'", "delicati_59_steam": "Delikatni 59'",
"drain_spin": "Sušenje i centrifuga", "drain_spin": "Sušenje i centrifuga",
"easy_iron": "Lako peglanje", "easy_iron": "Lako peglanje 39'",
"eco_40_60_new_energy_label": "Eko 40-60", "eco_40_60_new_energy_label": "Eko 40-60",
"extra_care": "Dodatni Tretman", "extra_care": "Dodatni Tretman",
"fitness": "Fitnes", "fitness": "Fitnes",
"fitness_care": "Fitnes", "fitness_care": "Fitnes",
"fresh_care": "Tretman za osvežavanje", "fresh_care": "Tretman za osvežavanje 59'",
"fresh_care_steam": "Tretman za osvežavanje + para", "fresh_care_steam": "Tretman za osvežavanje + para",
"handwash_wool": "Ručno pranje i vuna", "handwash_wool": "Ručno pranje i vuna 48'",
"high_dry": "Sušenje pamuka", "high_dry": "Sušenje pamuka",
"hqd_20_degrees": "Pamuk 20℃", "hqd_20_degrees": "Pamuk 20℃",
"hqd_allergy": "Tretman protiv alergija", "hqd_allergy": "Tretman protiv alergija",
@ -1335,13 +1381,13 @@
"hqd_babycare": "Baby Nega", "hqd_babycare": "Baby Nega",
"hqd_checkup": "Provera", "hqd_checkup": "Provera",
"hqd_cottons": "Pamuk", "hqd_cottons": "Pamuk",
"hqd_delicate": "Osetljive tkanine", "hqd_delicate": "Osetljive tkanine 50'",
"hqd_delicate_cradle": "Osetljive tkanine", "hqd_delicate_cradle": "Osetljive tkanine",
"hqd_dry": "Sušenje pamuka", "hqd_dry": "Sušenje pamuka",
"hqd_dry_synthetics": "Sušenje mešanog veša", "hqd_dry_synthetics": "Sušenje mešanog veša",
"hqd_duvet": "Jorgani", "hqd_duvet": "Jorgani",
"hqd_eco_40_60_degrees": "Eko 40-60", "hqd_eco_40_60_degrees": "Eko 40-60",
"hqd_handwash_wool": "Vuna", "hqd_handwash_wool": "Vuna 40'",
"hqd_i_refresh": "i-Refresh", "hqd_i_refresh": "i-Refresh",
"hqd_mix": "Mešani veš", "hqd_mix": "Mešani veš",
"hqd_quick_15": "Brzi program 15'", "hqd_quick_15": "Brzi program 15'",
@ -1352,7 +1398,7 @@
"hqd_shirts": "Košulje", "hqd_shirts": "Košulje",
"hqd_smart": "Smart A.I.", "hqd_smart": "Smart A.I.",
"hqd_spin": "Centrifuga", "hqd_spin": "Centrifuga",
"hqd_sport": "Sportska odeća", "hqd_sport": "Sportska odeća 25'",
"hqd_super_fast": "Brzi program 39", "hqd_super_fast": "Brzi program 39",
"hqd_synthetic_and_coloured": "Sintetika", "hqd_synthetic_and_coloured": "Sintetika",
"hygiene_59": "Hygijenski Plus 59'", "hygiene_59": "Hygijenski Plus 59'",
@ -1363,10 +1409,11 @@
"hygiene_pro_steam": "Hygiene Pro + para", "hygiene_pro_steam": "Hygiene Pro + para",
"intensive_40": "Intenzivno 40°C", "intensive_40": "Intenzivno 40°C",
"intensive_40_steam": "Intenzivno 40°C + para", "intensive_40_steam": "Intenzivno 40°C + para",
"iot_active_steam": "Para", "iot_active_steam": "Para 29'",
"iot_active_wash_steam": "Aktivno pranje", "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",
@ -1399,17 +1446,19 @@
"iot_dry_technical_fabrics": "Teničke tkanine", "iot_dry_technical_fabrics": "Teničke tkanine",
"iot_dry_warm_embrace": "Toplo sušenje", "iot_dry_warm_embrace": "Toplo sušenje",
"iot_dry_wool_dry": "Sušenje vune", "iot_dry_wool_dry": "Sušenje vune",
"iot_easy_iron": "Lako peglanje", "iot_easy_iron": "Lako peglanje 39'",
"iot_fresh_care_steam": "Tretman za osvežavanje + para", "iot_fresh_care_steam": "Tretman za osvežavanje + para",
"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_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'",
"iot_rapid_a_class_60_steam": "Brza klasa A 60 + para", "iot_rapid_a_class_60_steam": "Brza klasa A 60 + para",
"iot_resistant_cotton_steam": "Pamuk + Para", "iot_resistant_cotton_steam": "Pamuk + Para",
"iot_shirts_steam": "Košulje + para", "iot_shirts_steam": "Košulje + para",
"iot_single_item_steam": "Pojedinačni predmet + para", "iot_single_item_steam": "Pojedinačni predmet 20' + para",
"iot_smart_wash": "Pametno pranje", "iot_smart_wash": "Pametno pranje",
"iot_soft_care_steam": "Soft Care + Steam", "iot_soft_care_steam": "Soft Care + Steam",
"iot_special_39_full_load_steam": "Posebno 39' + para", "iot_special_39_full_load_steam": "Posebno 39' + para",
@ -1443,7 +1492,7 @@
"iot_wash_coloured_bed_linen": "Posteljina u boji", "iot_wash_coloured_bed_linen": "Posteljina u boji",
"iot_wash_coloured_bed_linen_steam": "Posteljina u boji + para", "iot_wash_coloured_bed_linen_steam": "Posteljina u boji + para",
"iot_wash_coloured_curtains": "Zavese u boji", "iot_wash_coloured_curtains": "Zavese u boji",
"iot_wash_coloured_shirts": "Košulje u boji", "iot_wash_coloured_shirts": "Košulje u boji 59'",
"iot_wash_coloured_shirts_steam": "Košulje u boji + para", "iot_wash_coloured_shirts_steam": "Košulje u boji + para",
"iot_wash_coloured_steam": "Boja + Para", "iot_wash_coloured_steam": "Boja + Para",
"iot_wash_coloured_tableclothes": "Stolnjaci u boji", "iot_wash_coloured_tableclothes": "Stolnjaci u boji",
@ -1480,7 +1529,7 @@
"iot_wash_down_jackets_zelig": "Podjakne", "iot_wash_down_jackets_zelig": "Podjakne",
"iot_wash_duvet": "Jorgani", "iot_wash_duvet": "Jorgani",
"iot_wash_fruit_stains": "Fleke od voća", "iot_wash_fruit_stains": "Fleke od voća",
"iot_wash_gym_fit": "Odeća za teretanu - fitnes", "iot_wash_gym_fit": "Odeća za teretanu - fitnes 59'",
"iot_wash_handwash": "Ručno pranje", "iot_wash_handwash": "Ručno pranje",
"iot_wash_handwash_colored": "Ručno pranje materijala u boji", "iot_wash_handwash_colored": "Ručno pranje materijala u boji",
"iot_wash_handwash_dark": "Ručno pranje tamnog materijala", "iot_wash_handwash_dark": "Ručno pranje tamnog materijala",
@ -1525,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",
@ -1543,6 +1593,7 @@
"iot_wash_wool": "Vuna", "iot_wash_wool": "Vuna",
"jeans": "Džins", "jeans": "Džins",
"jeans_60": "Jeans", "jeans_60": "Jeans",
"jeans_60_steam": "„Jeans + Steam“",
"low_dry": "Sušenje mešanog veša", "low_dry": "Sušenje mešanog veša",
"mixed": "Mešani veš", "mixed": "Mešani veš",
"mixed_and_colored_59": "Mešani veš i veš u boji 59'", "mixed_and_colored_59": "Mešani veš i veš u boji 59'",
@ -1566,7 +1617,7 @@
"rinse": "Ispiranje", "rinse": "Ispiranje",
"shirts_steam": "Košulje + para", "shirts_steam": "Košulje + para",
"silent_night": "Noćni ciklus", "silent_night": "Noćni ciklus",
"single_item": "Pojedinačni predmet", "single_item": "Pojedinačni predmet 20'",
"single_item_steam": "Pojedinačni predmet + para", "single_item_steam": "Pojedinačni predmet + para",
"smart_wash": "Pametno pranje", "smart_wash": "Pametno pranje",
"soft_care": "Blagi tretman", "soft_care": "Blagi tretman",
@ -1582,8 +1633,8 @@
"steam_39": "Para 39'", "steam_39": "Para 39'",
"steam_care_pro": "Steam Care Pro", "steam_care_pro": "Steam Care Pro",
"steam_care_pro_cotton": "Steam Care Pro - pamuk", "steam_care_pro_cotton": "Steam Care Pro - pamuk",
"steam_care_pro_delicates": "Steam Care Pro - osetljive tkanine", "steam_care_pro_delicates": "Steam Care Pro - osetljive tkanine 16'",
"steam_care_pro_synthetic": "Steam Care Pro - sintetika", "steam_care_pro_synthetic": "Steam Care Pro - sintetika 20'",
"steam_hygiene_plus": "Higijena plus sa parom", "steam_hygiene_plus": "Higijena plus sa parom",
"synthetics": "Sintetika", "synthetics": "Sintetika",
"synthetic_and_coloured": "Sintetika i materijal u boji", "synthetic_and_coloured": "Sintetika i materijal u boji",
@ -1595,7 +1646,7 @@
"wool": "Vuna", "wool": "Vuna",
"wool_and_delicates_49": "Vuna/Delikatni 49'", "wool_and_delicates_49": "Vuna/Delikatni 49'",
"wool_dry": "Sušenje vune", "wool_dry": "Sušenje vune",
"wool_soft_care": "Vuna & Blagi Tretman" "wool_soft_care": "Vuna & Blagi Tretman 48'"
}, },
"name": "Program" "name": "Program"
}, },
@ -1605,20 +1656,25 @@
"cheese": "Sir", "cheese": "Sir",
"chiller": "Quick cool", "chiller": "Quick cool",
"cold_drinks": "Soft chill", "cold_drinks": "Soft chill",
"cool_drink": "Cool Drink",
"eco": "Eco", "eco": "Eco",
"eco_mode": "Eco režim", "eco_mode": "Eco režim",
"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",
"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",
"sea_food": "Ready to cook meal", "sea_food": "Ready to cook meal",
"smart_mode_title": "Smart Mode",
"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",
"zero_fresh": "0° Fresh" "vegetables": "Vegetable",
"zero_fresh": "0°C Fresh"
}, },
"name": "Program" "name": "Program"
}, },
@ -1671,6 +1727,71 @@
"unknown": "unknown" "unknown": "unknown"
}, },
"name": "Nivo zaprljanosti" "name": "Nivo zaprljanosti"
},
"stain_type": {
"state": {
"baby_food": "Hrana za bebe",
"bean_paste": "Pasulj",
"blood": "Krv",
"blueberry": "Borovnica",
"blue_ink": "Plavo mastilo",
"butter": "Maslac",
"chili_oil": "Ulje sa čilijem",
"chili_sauce": "Čili sos",
"chocolate": "Čokolada",
"coffe": "Kafa",
"coffee": "Kafa",
"color_pencil": "Olovka",
"cooking_oil": "Kuhinjsko ulje",
"curry": "Kari",
"deodorant": "Dezodorans",
"egg": "Jaje",
"fruit": "Voće",
"glue": "Lepak",
"grass": "Trava",
"ice_cream": "Sladoled",
"ketchup": "Kečap",
"lip_gloss": "Sjaj za usne",
"mayonnaise": "Majonez",
"mech_grease": "Mehaničko mazivo",
"milk": "Mleko",
"milk_tea": "Čaj sa mlekom",
"oil": "Ulje",
"oil_pastel": "Voštane boje",
"perfume": "Parfem",
"rust": "Rđa",
"shoe_cream": "Krema za cipele",
"soil": "Zemlja",
"soy_sauce": "Soja Sos",
"stain_level": "Nivo mrlje",
"sweat": "Znoj",
"tea": "Čaj",
"wine": "Vino",
"unknown": "unknown"
},
"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": {
@ -1928,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": {
@ -2062,6 +2186,9 @@
} }
} }
} }
},
"my_zone": {
"name": "My Zone"
} }
}, },
"fan": { "fan": {

View File

@ -99,7 +99,9 @@
"auto_care_soil": "Auto Care", "auto_care_soil": "Auto Care",
"auto_hygiene": "Oto. Hijyen", "auto_hygiene": "Oto. Hijyen",
"auto_plus": "AutoPlus", "auto_plus": "AutoPlus",
"auto_plus_soil": "Otomatik Artı Kirlenme",
"auto_rapid": "Oto. Rapid", "auto_rapid": "Oto. Rapid",
"auto_rapid_soil": "Otomatik Hızlı Kirlenme",
"auto_sensor": "Auto Sensor", "auto_sensor": "Auto Sensor",
"auto_sensor_soil": "Auto Sensor", "auto_sensor_soil": "Auto Sensor",
"auto_universal": "Universal 50-60°C", "auto_universal": "Universal 50-60°C",
@ -111,10 +113,11 @@
"classe_a_59": "A Wash 59' 65°C", "classe_a_59": "A Wash 59' 65°C",
"delicate": "Cristal 45°C", "delicate": "Cristal 45°C",
"dishwasher_care": "Kireç kalıntısı temizleme programı", "dishwasher_care": "Kireç kalıntısı temizleme programı",
"eco": "Eko", "eco": "Eco 45°C",
"eco_asynch": "Eco 45°C", "eco_asynch": "Eco 45°C",
"eco_bldc": "Eco 45°C", "eco_bldc": "Eco 45°C",
"eco_synch": "Eco 45°C", "eco_synch": "Eco 45°C",
"eco_voice": "Eco",
"gentle_wash": "Gentle wash", "gentle_wash": "Gentle wash",
"glass": "Cam", "glass": "Cam",
"glassware": "Cam Eşya 45°C", "glassware": "Cam Eşya 45°C",
@ -123,6 +126,7 @@
"hygiene_plus": "Hijyen+ 75°C", "hygiene_plus": "Hijyen+ 75°C",
"intensive": "Yoğun", "intensive": "Yoğun",
"intensive_rapid": "yogun hizli", "intensive_rapid": "yogun hizli",
"intensive_voice": "Yoğun",
"iot_auto_sensor": "Auto Sensor", "iot_auto_sensor": "Auto Sensor",
"iot_auto_universal_soil": "Universal 50-60°C", "iot_auto_universal_soil": "Universal 50-60°C",
"iot_auto_wash_soil": "Otomatik Yıkama", "iot_auto_wash_soil": "Otomatik Yıkama",
@ -164,6 +168,13 @@
"iot_super_wash": "Süper Yıkama", "iot_super_wash": "Süper Yıkama",
"iot_turbopower": "TurboPower", "iot_turbopower": "TurboPower",
"iot_universal": "Çok Amaçlı 60°C", "iot_universal": "Çok Amaçlı 60°C",
"iot_voice_automatic": "Automatic",
"iot_voice_delicate": "Cristal 45°C",
"iot_voice_eco": "Eco 45°C",
"iot_voice_intensive": "Yoğun 75°C",
"iot_voice_prewash": "Pre-wash",
"iot_voice_rapid_59": "Hizli 59'",
"iot_voice_universal": "Çok Amaçlı 60°C",
"iot_wok_grids_maxi_pans": "Özel Tavalar (Wok - Izgaralar ve Maksi Tavalar)", "iot_wok_grids_maxi_pans": "Özel Tavalar (Wok - Izgaralar ve Maksi Tavalar)",
"iot_wok_grids_maxi_pans_soil": "Özel Tavalar (Wok - Izgaralar ve Maksi Tavalar)", "iot_wok_grids_maxi_pans_soil": "Özel Tavalar (Wok - Izgaralar ve Maksi Tavalar)",
"iot_yes_quick_cycle": "Yes Quick", "iot_yes_quick_cycle": "Yes Quick",
@ -195,6 +206,7 @@
"ultra_silent": "Night 55°C", "ultra_silent": "Night 55°C",
"universal": "Çok Amaçlı 60°C", "universal": "Çok Amaçlı 60°C",
"universal_plus": "Çok Amaçlı Artı 70°C", "universal_plus": "Çok Amaçlı Artı 70°C",
"zone_wash": "Flex Zone Wash",
"zoom_39": "Zoom 39 min" "zoom_39": "Zoom 39 min"
}, },
"name": "Program" "name": "Program"
@ -328,14 +340,14 @@
"hqd_bulky": "Hacimli eşyalar", "hqd_bulky": "Hacimli eşyalar",
"hqd_casual": "Gündelik", "hqd_casual": "Gündelik",
"hqd_cold_wind_30": "Serin esinti 30 dakika", "hqd_cold_wind_30": "Serin esinti 30 dakika",
"hqd_cold_wind_timing": "Serin esinti", "hqd_cold_wind_timing": "Soğuk Hava",
"hqd_cotton": "Pamuk", "hqd_cotton": "Pamuk",
"hqd_curtain": "Perdeler", "hqd_curtain": "Perdeler",
"hqd_delicate": "Narin Çamaşırlar", "hqd_delicate": "Narin Çamaşırlar",
"hqd_diaper": "Bebek bezi", "hqd_diaper": "Bebek bezi",
"hqd_duvet": "Nevresim", "hqd_duvet": "Sentetik elyaflı kapitone ceket",
"hqd_feather": "Şişme montlar", "hqd_feather": "Doğal elyaflı kapitone ceket",
"hqd_hot_wind_timing": "Sıcak hava", "hqd_hot_wind_timing": "Sıcak Hava",
"hqd_hygienic": "Hijyen", "hqd_hygienic": "Hijyen",
"hqd_i_refresh": "I-Refresh", "hqd_i_refresh": "I-Refresh",
"hqd_i_refresh_pro": "I-Refresh Pro", "hqd_i_refresh_pro": "I-Refresh Pro",
@ -345,10 +357,10 @@
"hqd_mix": "Karışık", "hqd_mix": "Karışık",
"hqd_night_dry": "Gece kurutma", "hqd_night_dry": "Gece kurutma",
"hqd_outdoor": "Outdoor", "hqd_outdoor": "Outdoor",
"hqd_precious_cure": "Precious cure", "hqd_precious_cure": "Precious Cure",
"hqd_quick_20": "Hızlı 20", "hqd_quick_20": "Hızlı 20",
"hqd_quick_30": "Hızlı 30", "hqd_quick_30": "Hızlı 30",
"hqd_quick_dry": "Hızlı kurutma 30'", "hqd_quick_dry": "30 dk otomatik hızlı kurutma",
"hqd_quilt": "Yorganlar", "hqd_quilt": "Yorganlar",
"hqd_refresh": "Yenileme", "hqd_refresh": "Yenileme",
"hqd_school_uniform": "Okul üniforması", "hqd_school_uniform": "Okul üniforması",
@ -385,6 +397,8 @@
"iot_dry_gym_fit": "Spor kıyafetleri", "iot_dry_gym_fit": "Spor kıyafetleri",
"iot_dry_lingerie": "İç Çamaşırı", "iot_dry_lingerie": "İç Çamaşırı",
"iot_dry_mixed": "Karışık", "iot_dry_mixed": "Karışık",
"iot_dry_pet_accessories": "Evcil Hayvan Aksesuarları",
"iot_dry_pet_hair_removal": "Evcil hayvan tüyü temizleme (ön yıkama)",
"iot_dry_playsuits": "Oyun elbiseleri", "iot_dry_playsuits": "Oyun elbiseleri",
"iot_dry_rapid_30": "Rapid 30", "iot_dry_rapid_30": "Rapid 30",
"iot_dry_rapid_59": "Hızlı 59'.", "iot_dry_rapid_59": "Hızlı 59'.",
@ -436,9 +450,9 @@
"state": { "state": {
"20_degrees_coloured_cottons": "20° Renkli ve Pamuklular", "20_degrees_coloured_cottons": "20° Renkli ve Pamuklular",
"20_degrees_new_energy_label": "20°C", "20_degrees_new_energy_label": "20°C",
"active_steam": "Buhar", "active_steam": "Buhar 29'",
"active_wash": "Aktif Yıkama", "active_wash": "Aktif Yıkama 20'",
"active_wash_steam": "Aktif Yıkama", "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'.",
@ -458,19 +472,19 @@
"cottons_steam": "Pamuklular + Buhar", "cottons_steam": "Pamuklular + Buhar",
"cotton_care_59": "Pamuklular 59 dk", "cotton_care_59": "Pamuklular 59 dk",
"delicate_59": "Narin 59'", "delicate_59": "Narin 59'",
"delicate_silk": "Hassas İpek", "delicate_silk": "Hassas İpek 59'",
"delicate_silk_steam": "Hassas İpek + Buhar", "delicate_silk_steam": "Hassas İpek + Buhar",
"delicati_59": "Narin 59'", "delicati_59": "Narin 59'",
"delicati_59_steam": "Narin 59'", "delicati_59_steam": "Narin 59'",
"drain_spin": "Boşaltma +ve Sıkma", "drain_spin": "Boşaltma +ve Sıkma",
"easy_iron": "Kolay Ütüleme", "easy_iron": "Kolay Ütüleme 39'",
"eco_40_60_new_energy_label": "Eco 40-60", "eco_40_60_new_energy_label": "Eco 40-60",
"extra_care": "Karisik Kirliler", "extra_care": "Karisik Kirliler",
"fitness": "Az Kirli Spor", "fitness": "Az Kirli Spor",
"fitness_care": "Az Kirli Spor", "fitness_care": "Az Kirli Spor",
"fresh_care": "Yenileme Bakımı", "fresh_care": "Yenileme Bakımı 59'",
"fresh_care_steam": "Fresh Care + Buhar", "fresh_care_steam": "Fresh Care + Buhar",
"handwash_wool": "Elde Yıkama ve Yünlüler", "handwash_wool": "Elde Yıkama ve Yünlüler 48'",
"high_dry": "Pamuklular kurutma", "high_dry": "Pamuklular kurutma",
"hqd_20_degrees": "Pamuklu 20℃", "hqd_20_degrees": "Pamuklu 20℃",
"hqd_allergy": "Alerji Bakımı", "hqd_allergy": "Alerji Bakımı",
@ -478,13 +492,13 @@
"hqd_babycare": "Bebek Bakım", "hqd_babycare": "Bebek Bakım",
"hqd_checkup": "Check-Up", "hqd_checkup": "Check-Up",
"hqd_cottons": "Pamuklular", "hqd_cottons": "Pamuklular",
"hqd_delicate": "Narin Çamaşırlar", "hqd_delicate": "Narin Çamaşırlar 50'",
"hqd_delicate_cradle": "Narin Çamaşırlar", "hqd_delicate_cradle": "Narin Çamaşırlar",
"hqd_dry": "Pamuklular kurutma", "hqd_dry": "Pamuklular kurutma",
"hqd_dry_synthetics": "Karışık kurutma", "hqd_dry_synthetics": "Karışık kurutma",
"hqd_duvet": "Yorgan", "hqd_duvet": "Yorgan",
"hqd_eco_40_60_degrees": "Eco 40-60", "hqd_eco_40_60_degrees": "Eco 40-60",
"hqd_handwash_wool": "Yünlüler", "hqd_handwash_wool": "Yünlüler 40'",
"hqd_i_refresh": "i-Refresh", "hqd_i_refresh": "i-Refresh",
"hqd_mix": "Karışık", "hqd_mix": "Karışık",
"hqd_quick_15": "Hızlı 15'", "hqd_quick_15": "Hızlı 15'",
@ -495,7 +509,7 @@
"hqd_shirts": "Gömlekler", "hqd_shirts": "Gömlekler",
"hqd_smart": "Smart A.I.", "hqd_smart": "Smart A.I.",
"hqd_spin": "Sıkma", "hqd_spin": "Sıkma",
"hqd_sport": "Spor", "hqd_sport": "Spor 25'",
"hqd_super_fast": "Hızlı 39", "hqd_super_fast": "Hızlı 39",
"hqd_synthetic_and_coloured": "Sentetikler", "hqd_synthetic_and_coloured": "Sentetikler",
"hygiene_59": "Hijyen 59'", "hygiene_59": "Hijyen 59'",
@ -506,10 +520,11 @@
"hygiene_pro_steam": "Hygiene Pro + Buhar", "hygiene_pro_steam": "Hygiene Pro + Buhar",
"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", "iot_active_steam": "Buhar 29'",
"iot_active_wash_steam": "Aktif Yıkama", "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",
@ -542,17 +557,19 @@
"iot_dry_technical_fabrics": "Teknik kumaşlar", "iot_dry_technical_fabrics": "Teknik kumaşlar",
"iot_dry_warm_embrace": "Ilık döndürme", "iot_dry_warm_embrace": "Ilık döndürme",
"iot_dry_wool_dry": "Yünlü kurutma", "iot_dry_wool_dry": "Yünlü kurutma",
"iot_easy_iron": "Kolay Ütüleme", "iot_easy_iron": "Kolay Ütüleme 39'",
"iot_fresh_care_steam": "Fresh Care + Buhar", "iot_fresh_care_steam": "Fresh Care + Buhar",
"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_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'",
"iot_rapid_a_class_60_steam": "Hızlı A Sınıfı 60 + Buhar", "iot_rapid_a_class_60_steam": "Hızlı A Sınıfı 60 + Buhar",
"iot_resistant_cotton_steam": "Pamuklular + Buhar", "iot_resistant_cotton_steam": "Pamuklular + Buhar",
"iot_shirts_steam": "Gömlek + Buhar", "iot_shirts_steam": "Gömlek + Buhar",
"iot_single_item_steam": "Tek Çamaşır + Buhar", "iot_single_item_steam": "Tek Çamaşır 20' + Buhar",
"iot_smart_wash": "Akıllı Yıkama", "iot_smart_wash": "Akıllı Yıkama",
"iot_soft_care_steam": "Soft Care + Steam", "iot_soft_care_steam": "Soft Care + Steam",
"iot_special_39_full_load_steam": "Özel program 39' + Buhar", "iot_special_39_full_load_steam": "Özel program 39' + Buhar",
@ -586,7 +603,7 @@
"iot_wash_coloured_bed_linen": "Renkli Nevresim", "iot_wash_coloured_bed_linen": "Renkli Nevresim",
"iot_wash_coloured_bed_linen_steam": "Renkli Nevresim + Buhar", "iot_wash_coloured_bed_linen_steam": "Renkli Nevresim + Buhar",
"iot_wash_coloured_curtains": "Renkli Perdeler", "iot_wash_coloured_curtains": "Renkli Perdeler",
"iot_wash_coloured_shirts": "Renkli Gömlekler", "iot_wash_coloured_shirts": "Renkli Gömlekler 59'",
"iot_wash_coloured_shirts_steam": "Renkli Gömlekler + Buhar", "iot_wash_coloured_shirts_steam": "Renkli Gömlekler + Buhar",
"iot_wash_coloured_steam": "Renkliler + Buhar", "iot_wash_coloured_steam": "Renkliler + Buhar",
"iot_wash_coloured_tableclothes": "Renkli Masa Örtüsü", "iot_wash_coloured_tableclothes": "Renkli Masa Örtüsü",
@ -623,7 +640,7 @@
"iot_wash_down_jackets_zelig": "Şişme montlar", "iot_wash_down_jackets_zelig": "Şişme montlar",
"iot_wash_duvet": "Yorgan", "iot_wash_duvet": "Yorgan",
"iot_wash_fruit_stains": "Meyve lekeleri", "iot_wash_fruit_stains": "Meyve lekeleri",
"iot_wash_gym_fit": "Fitness - spor kıyafetleri", "iot_wash_gym_fit": "Fitness - spor kıyafetleri 59'",
"iot_wash_handwash": "Elde yıkama", "iot_wash_handwash": "Elde yıkama",
"iot_wash_handwash_colored": "Elde yıkama renkli", "iot_wash_handwash_colored": "Elde yıkama renkli",
"iot_wash_handwash_dark": "Elde yıkama koyu renkli", "iot_wash_handwash_dark": "Elde yıkama koyu renkli",
@ -668,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",
@ -686,6 +704,7 @@
"iot_wash_wool": "Yünlüler", "iot_wash_wool": "Yünlüler",
"jeans": "Kot pantolon", "jeans": "Kot pantolon",
"jeans_60": "Kot", "jeans_60": "Kot",
"jeans_60_steam": "Kot Pantolon + Buhar",
"low_dry": "Karışık kurutma", "low_dry": "Karışık kurutma",
"mixed": "Karışık", "mixed": "Karışık",
"mixed_and_colored_59": "Karışık ve Renkliler 59'", "mixed_and_colored_59": "Karışık ve Renkliler 59'",
@ -709,7 +728,7 @@
"rinse": "Durulama", "rinse": "Durulama",
"shirts_steam": "Gömlek + Buhar", "shirts_steam": "Gömlek + Buhar",
"silent_night": "Gece Programı", "silent_night": "Gece Programı",
"single_item": "Tek Çamaşır", "single_item": "Tek Çamaşır 20'",
"single_item_steam": "Tek Çamaşır + Buhar", "single_item_steam": "Tek Çamaşır + Buhar",
"smart_wash": "Akıllı Yıkama", "smart_wash": "Akıllı Yıkama",
"soft_care": "Yumuşak Bakım", "soft_care": "Yumuşak Bakım",
@ -725,8 +744,8 @@
"steam_39": "Buhar 39'", "steam_39": "Buhar 39'",
"steam_care_pro": "Steam Care Pro", "steam_care_pro": "Steam Care Pro",
"steam_care_pro_cotton": "Steam Care Pro - Pamuklular", "steam_care_pro_cotton": "Steam Care Pro - Pamuklular",
"steam_care_pro_delicates": "Steam Care Pro - Narin çamaşırlar", "steam_care_pro_delicates": "Steam Care Pro - Narin çamaşırlar 16'",
"steam_care_pro_synthetic": "Steam Care Pro - Sentetikler", "steam_care_pro_synthetic": "Steam Care Pro - Sentetikler 20'",
"steam_hygiene_plus": "Hijyen Artı Buhar", "steam_hygiene_plus": "Hijyen Artı Buhar",
"synthetics": "Sentetikler", "synthetics": "Sentetikler",
"synthetic_and_coloured": "Sentetikler ve Renkliler", "synthetic_and_coloured": "Sentetikler ve Renkliler",
@ -738,7 +757,7 @@
"wool": "Yünlüler", "wool": "Yünlüler",
"wool_and_delicates_49": "Yünlü/Hassas 49'", "wool_and_delicates_49": "Yünlü/Hassas 49'",
"wool_dry": "Yünlü kurutma", "wool_dry": "Yünlü kurutma",
"wool_soft_care": "Yünlü & Hassas" "wool_soft_care": "Yünlü & Hassas 48'"
}, },
"name": "Program" "name": "Program"
}, },
@ -748,20 +767,25 @@
"cheese": "Peynir", "cheese": "Peynir",
"chiller": "Quick cool", "chiller": "Quick cool",
"cold_drinks": "Soft chill", "cold_drinks": "Soft chill",
"cool_drink": "Cool Drink",
"eco": "Eco", "eco": "Eco",
"eco_mode": "Eco modu", "eco_mode": "Eco modu",
"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",
"no_mode_selected": "Hiç mod seçilmedi", "no_mode_selected": "Hiç mod seçilmedi",
"quick_cool": "HIZLI SOĞUTMA", "quick_cool": "HIZLI SOĞUTMA",
"sea_food": "Ready to cook meal", "sea_food": "Ready to cook meal",
"smart_mode_title": "Smart Mode",
"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",
"zero_fresh": "0° Fresh" "vegetables": "Vegetable",
"zero_fresh": "0°C Fresh"
}, },
"name": "Program" "name": "Program"
}, },
@ -887,6 +911,14 @@
}, },
"fan_speed": { "fan_speed": {
"name": "Fan hızı" "name": "Fan hızı"
},
"humidity_level": {
"state": {
"low": "Düşük",
"mid": "Orta",
"high": "Yüksek"
},
"name": "Nem seviyesi"
} }
}, },
"select": { "select": {
@ -956,7 +988,9 @@
"auto_care_soil": "Auto Care", "auto_care_soil": "Auto Care",
"auto_hygiene": "Oto. Hijyen", "auto_hygiene": "Oto. Hijyen",
"auto_plus": "AutoPlus", "auto_plus": "AutoPlus",
"auto_plus_soil": "Otomatik Artı Kirlenme",
"auto_rapid": "Oto. Rapid", "auto_rapid": "Oto. Rapid",
"auto_rapid_soil": "Otomatik Hızlı Kirlenme",
"auto_sensor": "Auto Sensor", "auto_sensor": "Auto Sensor",
"auto_sensor_soil": "Auto Sensor", "auto_sensor_soil": "Auto Sensor",
"auto_universal": "Universal 50-60°C", "auto_universal": "Universal 50-60°C",
@ -968,10 +1002,11 @@
"classe_a_59": "A Wash 59' 65°C", "classe_a_59": "A Wash 59' 65°C",
"delicate": "Cristal 45°C", "delicate": "Cristal 45°C",
"dishwasher_care": "Kireç kalıntısı temizleme programı", "dishwasher_care": "Kireç kalıntısı temizleme programı",
"eco": "Eko", "eco": "Eco 45°C",
"eco_asynch": "Eco 45°C", "eco_asynch": "Eco 45°C",
"eco_bldc": "Eco 45°C", "eco_bldc": "Eco 45°C",
"eco_synch": "Eco 45°C", "eco_synch": "Eco 45°C",
"eco_voice": "Eco",
"gentle_wash": "Gentle wash", "gentle_wash": "Gentle wash",
"glass": "Cam", "glass": "Cam",
"glassware": "Cam Eşya 45°C", "glassware": "Cam Eşya 45°C",
@ -980,6 +1015,7 @@
"hygiene_plus": "Hijyen+ 75°C", "hygiene_plus": "Hijyen+ 75°C",
"intensive": "Yoğun", "intensive": "Yoğun",
"intensive_rapid": "yogun hizli", "intensive_rapid": "yogun hizli",
"intensive_voice": "Yoğun",
"iot_auto_sensor": "Auto Sensor", "iot_auto_sensor": "Auto Sensor",
"iot_auto_universal_soil": "Universal 50-60°C", "iot_auto_universal_soil": "Universal 50-60°C",
"iot_auto_wash_soil": "Otomatik Yıkama", "iot_auto_wash_soil": "Otomatik Yıkama",
@ -1021,6 +1057,13 @@
"iot_super_wash": "Süper Yıkama", "iot_super_wash": "Süper Yıkama",
"iot_turbopower": "TurboPower", "iot_turbopower": "TurboPower",
"iot_universal": "Çok Amaçlı 60°C", "iot_universal": "Çok Amaçlı 60°C",
"iot_voice_automatic": "Automatic",
"iot_voice_delicate": "Cristal 45°C",
"iot_voice_eco": "Eco 45°C",
"iot_voice_intensive": "Yoğun 75°C",
"iot_voice_prewash": "Pre-wash",
"iot_voice_rapid_59": "Hizli 59'",
"iot_voice_universal": "Çok Amaçlı 60°C",
"iot_wok_grids_maxi_pans": "Özel Tavalar (Wok - Izgaralar ve Maksi Tavalar)", "iot_wok_grids_maxi_pans": "Özel Tavalar (Wok - Izgaralar ve Maksi Tavalar)",
"iot_wok_grids_maxi_pans_soil": "Özel Tavalar (Wok - Izgaralar ve Maksi Tavalar)", "iot_wok_grids_maxi_pans_soil": "Özel Tavalar (Wok - Izgaralar ve Maksi Tavalar)",
"iot_yes_quick_cycle": "Yes Quick", "iot_yes_quick_cycle": "Yes Quick",
@ -1052,6 +1095,7 @@
"ultra_silent": "Night 55°C", "ultra_silent": "Night 55°C",
"universal": "Çok Amaçlı 60°C", "universal": "Çok Amaçlı 60°C",
"universal_plus": "Çok Amaçlı Artı 70°C", "universal_plus": "Çok Amaçlı Artı 70°C",
"zone_wash": "Flex Zone Wash",
"zoom_39": "Zoom 39 min" "zoom_39": "Zoom 39 min"
}, },
"name": "Program" "name": "Program"
@ -1185,14 +1229,14 @@
"hqd_bulky": "Hacimli eşyalar", "hqd_bulky": "Hacimli eşyalar",
"hqd_casual": "Gündelik", "hqd_casual": "Gündelik",
"hqd_cold_wind_30": "Serin esinti 30 dakika", "hqd_cold_wind_30": "Serin esinti 30 dakika",
"hqd_cold_wind_timing": "Serin esinti", "hqd_cold_wind_timing": "Soğuk Hava",
"hqd_cotton": "Pamuk", "hqd_cotton": "Pamuk",
"hqd_curtain": "Perdeler", "hqd_curtain": "Perdeler",
"hqd_delicate": "Narin Çamaşırlar", "hqd_delicate": "Narin Çamaşırlar",
"hqd_diaper": "Bebek bezi", "hqd_diaper": "Bebek bezi",
"hqd_duvet": "Nevresim", "hqd_duvet": "Sentetik elyaflı kapitone ceket",
"hqd_feather": "Şişme montlar", "hqd_feather": "Doğal elyaflı kapitone ceket",
"hqd_hot_wind_timing": "Sıcak hava", "hqd_hot_wind_timing": "Sıcak Hava",
"hqd_hygienic": "Hijyen", "hqd_hygienic": "Hijyen",
"hqd_i_refresh": "I-Refresh", "hqd_i_refresh": "I-Refresh",
"hqd_i_refresh_pro": "I-Refresh Pro", "hqd_i_refresh_pro": "I-Refresh Pro",
@ -1202,10 +1246,10 @@
"hqd_mix": "Karışık", "hqd_mix": "Karışık",
"hqd_night_dry": "Gece kurutma", "hqd_night_dry": "Gece kurutma",
"hqd_outdoor": "Outdoor", "hqd_outdoor": "Outdoor",
"hqd_precious_cure": "Precious cure", "hqd_precious_cure": "Precious Cure",
"hqd_quick_20": "Hızlı 20", "hqd_quick_20": "Hızlı 20",
"hqd_quick_30": "Hızlı 30", "hqd_quick_30": "Hızlı 30",
"hqd_quick_dry": "Hızlı kurutma 30'", "hqd_quick_dry": "30 dk otomatik hızlı kurutma",
"hqd_quilt": "Yorganlar", "hqd_quilt": "Yorganlar",
"hqd_refresh": "Yenileme", "hqd_refresh": "Yenileme",
"hqd_school_uniform": "Okul üniforması", "hqd_school_uniform": "Okul üniforması",
@ -1242,6 +1286,8 @@
"iot_dry_gym_fit": "Spor kıyafetleri", "iot_dry_gym_fit": "Spor kıyafetleri",
"iot_dry_lingerie": "İç Çamaşırı", "iot_dry_lingerie": "İç Çamaşırı",
"iot_dry_mixed": "Karışık", "iot_dry_mixed": "Karışık",
"iot_dry_pet_accessories": "Evcil Hayvan Aksesuarları",
"iot_dry_pet_hair_removal": "Evcil hayvan tüyü temizleme (ön yıkama)",
"iot_dry_playsuits": "Oyun elbiseleri", "iot_dry_playsuits": "Oyun elbiseleri",
"iot_dry_rapid_30": "Rapid 30", "iot_dry_rapid_30": "Rapid 30",
"iot_dry_rapid_59": "Hızlı 59'.", "iot_dry_rapid_59": "Hızlı 59'.",
@ -1293,9 +1339,9 @@
"state": { "state": {
"20_degrees_coloured_cottons": "20° Renkli ve Pamuklular", "20_degrees_coloured_cottons": "20° Renkli ve Pamuklular",
"20_degrees_new_energy_label": "20°C", "20_degrees_new_energy_label": "20°C",
"active_steam": "Buhar", "active_steam": "Buhar 29'",
"active_wash": "Aktif Yıkama", "active_wash": "Aktif Yıkama 20'",
"active_wash_steam": "Aktif Yıkama", "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'.",
@ -1315,19 +1361,19 @@
"cottons_steam": "Pamuklular + Buhar", "cottons_steam": "Pamuklular + Buhar",
"cotton_care_59": "Pamuklular 59 dk", "cotton_care_59": "Pamuklular 59 dk",
"delicate_59": "Narin 59'", "delicate_59": "Narin 59'",
"delicate_silk": "Hassas İpek", "delicate_silk": "Hassas İpek 59'",
"delicate_silk_steam": "Hassas İpek + Buhar", "delicate_silk_steam": "Hassas İpek + Buhar",
"delicati_59": "Narin 59'", "delicati_59": "Narin 59'",
"delicati_59_steam": "Narin 59'", "delicati_59_steam": "Narin 59'",
"drain_spin": "Boşaltma +ve Sıkma", "drain_spin": "Boşaltma +ve Sıkma",
"easy_iron": "Kolay Ütüleme", "easy_iron": "Kolay Ütüleme 39'",
"eco_40_60_new_energy_label": "Eco 40-60", "eco_40_60_new_energy_label": "Eco 40-60",
"extra_care": "Karisik Kirliler", "extra_care": "Karisik Kirliler",
"fitness": "Az Kirli Spor", "fitness": "Az Kirli Spor",
"fitness_care": "Az Kirli Spor", "fitness_care": "Az Kirli Spor",
"fresh_care": "Yenileme Bakımı", "fresh_care": "Yenileme Bakımı 59'",
"fresh_care_steam": "Fresh Care + Buhar", "fresh_care_steam": "Fresh Care + Buhar",
"handwash_wool": "Elde Yıkama ve Yünlüler", "handwash_wool": "Elde Yıkama ve Yünlüler 48'",
"high_dry": "Pamuklular kurutma", "high_dry": "Pamuklular kurutma",
"hqd_20_degrees": "Pamuklu 20℃", "hqd_20_degrees": "Pamuklu 20℃",
"hqd_allergy": "Alerji Bakımı", "hqd_allergy": "Alerji Bakımı",
@ -1335,13 +1381,13 @@
"hqd_babycare": "Bebek Bakım", "hqd_babycare": "Bebek Bakım",
"hqd_checkup": "Check-Up", "hqd_checkup": "Check-Up",
"hqd_cottons": "Pamuklular", "hqd_cottons": "Pamuklular",
"hqd_delicate": "Narin Çamaşırlar", "hqd_delicate": "Narin Çamaşırlar 50'",
"hqd_delicate_cradle": "Narin Çamaşırlar", "hqd_delicate_cradle": "Narin Çamaşırlar",
"hqd_dry": "Pamuklular kurutma", "hqd_dry": "Pamuklular kurutma",
"hqd_dry_synthetics": "Karışık kurutma", "hqd_dry_synthetics": "Karışık kurutma",
"hqd_duvet": "Yorgan", "hqd_duvet": "Yorgan",
"hqd_eco_40_60_degrees": "Eco 40-60", "hqd_eco_40_60_degrees": "Eco 40-60",
"hqd_handwash_wool": "Yünlüler", "hqd_handwash_wool": "Yünlüler 40'",
"hqd_i_refresh": "i-Refresh", "hqd_i_refresh": "i-Refresh",
"hqd_mix": "Karışık", "hqd_mix": "Karışık",
"hqd_quick_15": "Hızlı 15'", "hqd_quick_15": "Hızlı 15'",
@ -1352,7 +1398,7 @@
"hqd_shirts": "Gömlekler", "hqd_shirts": "Gömlekler",
"hqd_smart": "Smart A.I.", "hqd_smart": "Smart A.I.",
"hqd_spin": "Sıkma", "hqd_spin": "Sıkma",
"hqd_sport": "Spor", "hqd_sport": "Spor 25'",
"hqd_super_fast": "Hızlı 39", "hqd_super_fast": "Hızlı 39",
"hqd_synthetic_and_coloured": "Sentetikler", "hqd_synthetic_and_coloured": "Sentetikler",
"hygiene_59": "Hijyen 59'", "hygiene_59": "Hijyen 59'",
@ -1363,10 +1409,11 @@
"hygiene_pro_steam": "Hygiene Pro + Buhar", "hygiene_pro_steam": "Hygiene Pro + Buhar",
"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", "iot_active_steam": "Buhar 29'",
"iot_active_wash_steam": "Aktif Yıkama", "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",
@ -1399,17 +1446,19 @@
"iot_dry_technical_fabrics": "Teknik kumaşlar", "iot_dry_technical_fabrics": "Teknik kumaşlar",
"iot_dry_warm_embrace": "Ilık döndürme", "iot_dry_warm_embrace": "Ilık döndürme",
"iot_dry_wool_dry": "Yünlü kurutma", "iot_dry_wool_dry": "Yünlü kurutma",
"iot_easy_iron": "Kolay Ütüleme", "iot_easy_iron": "Kolay Ütüleme 39'",
"iot_fresh_care_steam": "Fresh Care + Buhar", "iot_fresh_care_steam": "Fresh Care + Buhar",
"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_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'",
"iot_rapid_a_class_60_steam": "Hızlı A Sınıfı 60 + Buhar", "iot_rapid_a_class_60_steam": "Hızlı A Sınıfı 60 + Buhar",
"iot_resistant_cotton_steam": "Pamuklular + Buhar", "iot_resistant_cotton_steam": "Pamuklular + Buhar",
"iot_shirts_steam": "Gömlek + Buhar", "iot_shirts_steam": "Gömlek + Buhar",
"iot_single_item_steam": "Tek Çamaşır + Buhar", "iot_single_item_steam": "Tek Çamaşır 20' + Buhar",
"iot_smart_wash": "Akıllı Yıkama", "iot_smart_wash": "Akıllı Yıkama",
"iot_soft_care_steam": "Soft Care + Steam", "iot_soft_care_steam": "Soft Care + Steam",
"iot_special_39_full_load_steam": "Özel program 39' + Buhar", "iot_special_39_full_load_steam": "Özel program 39' + Buhar",
@ -1443,7 +1492,7 @@
"iot_wash_coloured_bed_linen": "Renkli Nevresim", "iot_wash_coloured_bed_linen": "Renkli Nevresim",
"iot_wash_coloured_bed_linen_steam": "Renkli Nevresim + Buhar", "iot_wash_coloured_bed_linen_steam": "Renkli Nevresim + Buhar",
"iot_wash_coloured_curtains": "Renkli Perdeler", "iot_wash_coloured_curtains": "Renkli Perdeler",
"iot_wash_coloured_shirts": "Renkli Gömlekler", "iot_wash_coloured_shirts": "Renkli Gömlekler 59'",
"iot_wash_coloured_shirts_steam": "Renkli Gömlekler + Buhar", "iot_wash_coloured_shirts_steam": "Renkli Gömlekler + Buhar",
"iot_wash_coloured_steam": "Renkliler + Buhar", "iot_wash_coloured_steam": "Renkliler + Buhar",
"iot_wash_coloured_tableclothes": "Renkli Masa Örtüsü", "iot_wash_coloured_tableclothes": "Renkli Masa Örtüsü",
@ -1480,7 +1529,7 @@
"iot_wash_down_jackets_zelig": "Şişme montlar", "iot_wash_down_jackets_zelig": "Şişme montlar",
"iot_wash_duvet": "Yorgan", "iot_wash_duvet": "Yorgan",
"iot_wash_fruit_stains": "Meyve lekeleri", "iot_wash_fruit_stains": "Meyve lekeleri",
"iot_wash_gym_fit": "Fitness - spor kıyafetleri", "iot_wash_gym_fit": "Fitness - spor kıyafetleri 59'",
"iot_wash_handwash": "Elde yıkama", "iot_wash_handwash": "Elde yıkama",
"iot_wash_handwash_colored": "Elde yıkama renkli", "iot_wash_handwash_colored": "Elde yıkama renkli",
"iot_wash_handwash_dark": "Elde yıkama koyu renkli", "iot_wash_handwash_dark": "Elde yıkama koyu renkli",
@ -1525,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",
@ -1543,6 +1593,7 @@
"iot_wash_wool": "Yünlüler", "iot_wash_wool": "Yünlüler",
"jeans": "Kot pantolon", "jeans": "Kot pantolon",
"jeans_60": "Kot", "jeans_60": "Kot",
"jeans_60_steam": "Kot Pantolon + Buhar",
"low_dry": "Karışık kurutma", "low_dry": "Karışık kurutma",
"mixed": "Karışık", "mixed": "Karışık",
"mixed_and_colored_59": "Karışık ve Renkliler 59'", "mixed_and_colored_59": "Karışık ve Renkliler 59'",
@ -1566,7 +1617,7 @@
"rinse": "Durulama", "rinse": "Durulama",
"shirts_steam": "Gömlek + Buhar", "shirts_steam": "Gömlek + Buhar",
"silent_night": "Gece Programı", "silent_night": "Gece Programı",
"single_item": "Tek Çamaşır", "single_item": "Tek Çamaşır 20'",
"single_item_steam": "Tek Çamaşır + Buhar", "single_item_steam": "Tek Çamaşır + Buhar",
"smart_wash": "Akıllı Yıkama", "smart_wash": "Akıllı Yıkama",
"soft_care": "Yumuşak Bakım", "soft_care": "Yumuşak Bakım",
@ -1582,8 +1633,8 @@
"steam_39": "Buhar 39'", "steam_39": "Buhar 39'",
"steam_care_pro": "Steam Care Pro", "steam_care_pro": "Steam Care Pro",
"steam_care_pro_cotton": "Steam Care Pro - Pamuklular", "steam_care_pro_cotton": "Steam Care Pro - Pamuklular",
"steam_care_pro_delicates": "Steam Care Pro - Narin çamaşırlar", "steam_care_pro_delicates": "Steam Care Pro - Narin çamaşırlar 16'",
"steam_care_pro_synthetic": "Steam Care Pro - Sentetikler", "steam_care_pro_synthetic": "Steam Care Pro - Sentetikler 20'",
"steam_hygiene_plus": "Hijyen Artı Buhar", "steam_hygiene_plus": "Hijyen Artı Buhar",
"synthetics": "Sentetikler", "synthetics": "Sentetikler",
"synthetic_and_coloured": "Sentetikler ve Renkliler", "synthetic_and_coloured": "Sentetikler ve Renkliler",
@ -1595,7 +1646,7 @@
"wool": "Yünlüler", "wool": "Yünlüler",
"wool_and_delicates_49": "Yünlü/Hassas 49'", "wool_and_delicates_49": "Yünlü/Hassas 49'",
"wool_dry": "Yünlü kurutma", "wool_dry": "Yünlü kurutma",
"wool_soft_care": "Yünlü & Hassas" "wool_soft_care": "Yünlü & Hassas 48'"
}, },
"name": "Program" "name": "Program"
}, },
@ -1605,20 +1656,25 @@
"cheese": "Peynir", "cheese": "Peynir",
"chiller": "Quick cool", "chiller": "Quick cool",
"cold_drinks": "Soft chill", "cold_drinks": "Soft chill",
"cool_drink": "Cool Drink",
"eco": "Eco", "eco": "Eco",
"eco_mode": "Eco modu", "eco_mode": "Eco modu",
"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",
"no_mode_selected": "Hiç mod seçilmedi", "no_mode_selected": "Hiç mod seçilmedi",
"quick_cool": "HIZLI SOĞUTMA", "quick_cool": "HIZLI SOĞUTMA",
"sea_food": "Ready to cook meal", "sea_food": "Ready to cook meal",
"smart_mode_title": "Smart Mode",
"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",
"zero_fresh": "0° Fresh" "vegetables": "Vegetable",
"zero_fresh": "0°C Fresh"
}, },
"name": "Program" "name": "Program"
}, },
@ -1671,6 +1727,71 @@
"unknown": "unknown" "unknown": "unknown"
}, },
"name": "Kir seviyesi" "name": "Kir seviyesi"
},
"stain_type": {
"state": {
"baby_food": "Bebek maması",
"bean_paste": "Fasulye çorbası",
"blood": "Kan",
"blueberry": "Yabanmersini",
"blue_ink": "Mavi mürekkep",
"butter": "Tereyağı",
"chili_oil": "Biber yağı",
"chili_sauce": "Acı sos",
"chocolate": "Çikolata",
"coffe": "Kahve",
"coffee": "Kahve",
"color_pencil": "Kalem",
"cooking_oil": "Yemek yağı",
"curry": "Köri",
"deodorant": "Deodorant",
"egg": "Yumurta",
"fruit": "Meyve",
"glue": "Tutkal",
"grass": "Çim",
"ice_cream": "Dondurma",
"ketchup": "Ketçap",
"lip_gloss": "Dudak parlatıcısı",
"mayonnaise": "Mayonez",
"mech_grease": "Makine gresi",
"milk": "Süt",
"milk_tea": "Sütlü çay",
"oil": "Sıvı yağ",
"oil_pastel": "Yağlı pastel",
"perfume": "Parfüm",
"rust": "Pas",
"shoe_cream": "Ayakkabı kremi",
"soil": "Toprak",
"soy_sauce": "Soya Sosu",
"stain_level": "Leke seviyesi",
"sweat": "Ter",
"tea": "Çay",
"wine": "Şarap",
"unknown": "unknown"
},
"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": {
@ -1928,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": {
@ -2062,6 +2186,9 @@
} }
} }
} }
},
"my_zone": {
"name": "My Zone"
} }
}, },
"fan": { "fan": {

View File

@ -99,7 +99,9 @@
"auto_care_soil": "Auto Care", "auto_care_soil": "Auto Care",
"auto_hygiene": "Auto Hygiene", "auto_hygiene": "Auto Hygiene",
"auto_plus": "AutoPlus", "auto_plus": "AutoPlus",
"auto_plus_soil": "自动增强污染",
"auto_rapid": "Auto Rapid", "auto_rapid": "Auto Rapid",
"auto_rapid_soil": "自动快速污染",
"auto_sensor": "Auto Sensor", "auto_sensor": "Auto Sensor",
"auto_sensor_soil": "Auto Sensor", "auto_sensor_soil": "Auto Sensor",
"auto_universal": "自动通用50℃-60℃", "auto_universal": "自动通用50℃-60℃",
@ -111,10 +113,11 @@
"classe_a_59": "A级1小时65℃", "classe_a_59": "A级1小时65℃",
"delicate": "易碎45℃", "delicate": "易碎45℃",
"dishwasher_care": "水垢清洁循环", "dishwasher_care": "水垢清洁循环",
"eco": "节能", "eco": "经济45℃",
"eco_asynch": "经济45℃", "eco_asynch": "经济45℃",
"eco_bldc": "经济45℃", "eco_bldc": "经济45℃",
"eco_synch": "经济45℃", "eco_synch": "经济45℃",
"eco_voice": "Eco",
"gentle_wash": "Gentle wash", "gentle_wash": "Gentle wash",
"glass": "玻璃", "glass": "玻璃",
"glassware": "玻璃器皿45°C", "glassware": "玻璃器皿45°C",
@ -123,6 +126,7 @@
"hygiene_plus": "消毒洗+75°C", "hygiene_plus": "消毒洗+75°C",
"intensive": "加强", "intensive": "加强",
"intensive_rapid": "强化快速", "intensive_rapid": "强化快速",
"intensive_voice": "加强",
"iot_auto_sensor": "Auto Sensor", "iot_auto_sensor": "Auto Sensor",
"iot_auto_universal_soil": "自动通用50℃-60℃", "iot_auto_universal_soil": "自动通用50℃-60℃",
"iot_auto_wash_soil": "自动洗涤", "iot_auto_wash_soil": "自动洗涤",
@ -195,6 +199,7 @@
"ultra_silent": "超静55℃", "ultra_silent": "超静55℃",
"universal": "通用60°C", "universal": "通用60°C",
"universal_plus": "通用+ 70°C", "universal_plus": "通用+ 70°C",
"zone_wash": "Flex Zone Wash",
"zoom_39": "Zoom 39 min" "zoom_39": "Zoom 39 min"
}, },
"name": "程序" "name": "程序"
@ -328,14 +333,14 @@
"hqd_bulky": "大件物品", "hqd_bulky": "大件物品",
"hqd_casual": "休闲", "hqd_casual": "休闲",
"hqd_cold_wind_30": "凉风 30 分钟", "hqd_cold_wind_30": "凉风 30 分钟",
"hqd_cold_wind_timing": "凉风", "hqd_cold_wind_timing": "冷气",
"hqd_cotton": "棉布", "hqd_cotton": "棉布",
"hqd_curtain": "窗帘", "hqd_curtain": "窗帘",
"hqd_delicate": "精致衣物", "hqd_delicate": "精致衣物",
"hqd_diaper": "纸尿裤", "hqd_diaper": "纸尿裤",
"hqd_duvet": "羽绒被", "hqd_duvet": "合成纤维棉服",
"hqd_feather": "羽绒服", "hqd_feather": "天然纤维棉服",
"hqd_hot_wind_timing": "热空气", "hqd_hot_wind_timing": "衣物蓬松",
"hqd_hygienic": "卫生保护", "hqd_hygienic": "卫生保护",
"hqd_i_refresh": "I-Refresh", "hqd_i_refresh": "I-Refresh",
"hqd_i_refresh_pro": "I-Refresh Pro", "hqd_i_refresh_pro": "I-Refresh Pro",
@ -345,10 +350,10 @@
"hqd_mix": "混合材质", "hqd_mix": "混合材质",
"hqd_night_dry": "过夜烘干", "hqd_night_dry": "过夜烘干",
"hqd_outdoor": "Outdoor", "hqd_outdoor": "Outdoor",
"hqd_precious_cure": "Precious cure", "hqd_precious_cure": "Precious Cure",
"hqd_quick_20": "快洗 20", "hqd_quick_20": "快洗 20",
"hqd_quick_30": "快洗 30", "hqd_quick_30": "快洗 30",
"hqd_quick_dry": "快速干", "hqd_quick_dry": "30 秒自动快速干",
"hqd_quilt": "棉被", "hqd_quilt": "棉被",
"hqd_refresh": "清新", "hqd_refresh": "清新",
"hqd_school_uniform": "校服", "hqd_school_uniform": "校服",
@ -385,6 +390,8 @@
"iot_dry_gym_fit": "健身服", "iot_dry_gym_fit": "健身服",
"iot_dry_lingerie": "女性内衣", "iot_dry_lingerie": "女性内衣",
"iot_dry_mixed": "混合材质", "iot_dry_mixed": "混合材质",
"iot_dry_pet_accessories": "宠物用品",
"iot_dry_pet_hair_removal": "宠物毛发清除(预洗)",
"iot_dry_playsuits": "运动装", "iot_dry_playsuits": "运动装",
"iot_dry_rapid_30": "快速 30", "iot_dry_rapid_30": "快速 30",
"iot_dry_rapid_59": "快速 59", "iot_dry_rapid_59": "快速 59",
@ -436,9 +443,9 @@
"state": { "state": {
"20_degrees_coloured_cottons": "20° 彩色和棉花", "20_degrees_coloured_cottons": "20° 彩色和棉花",
"20_degrees_new_energy_label": "20°C", "20_degrees_new_energy_label": "20°C",
"active_steam": "蒸汽", "active_steam": "蒸汽 29'",
"active_wash": "活化洗涤", "active_wash": "活化洗涤 20'",
"active_wash_steam": "活化洗涤", "active_wash_steam": "活化洗涤 20' + 蒸汽",
"allergy_care": "过敏保养", "allergy_care": "过敏保养",
"allergy_care_pro": "Allergy Care Pro", "allergy_care_pro": "Allergy Care Pro",
"all_in_one_49": "一体化 49'", "all_in_one_49": "一体化 49'",
@ -458,19 +465,19 @@
"cottons_steam": "棉质 + 蒸汽", "cottons_steam": "棉质 + 蒸汽",
"cotton_care_59": "棉麻洗59\"", "cotton_care_59": "棉麻洗59\"",
"delicate_59": "精致 59'", "delicate_59": "精致 59'",
"delicate_silk": "精致丝绸", "delicate_silk": "精致丝绸 59'",
"delicate_silk_steam": "精致丝绸 + 蒸汽", "delicate_silk_steam": "精致丝绸 + 蒸汽",
"delicati_59": "精致 59'", "delicati_59": "精致 59'",
"delicati_59_steam": "精致 59'", "delicati_59_steam": "精致 59'",
"drain_spin": "脱水 + 甩干", "drain_spin": "脱水 + 甩干",
"easy_iron": "易熨", "easy_iron": "易熨 39'",
"eco_40_60_new_energy_label": "经济 40-60", "eco_40_60_new_energy_label": "经济 40-60",
"extra_care": "额外保养", "extra_care": "额外保养",
"fitness": "健身衣物", "fitness": "健身衣物",
"fitness_care": "健身衣物", "fitness_care": "健身衣物",
"fresh_care": "清新护理", "fresh_care": "清新护理 59'",
"fresh_care_steam": "清新护理 + 蒸汽", "fresh_care_steam": "清新护理 + 蒸汽",
"handwash_wool": "手洗和羊毛衣物", "handwash_wool": "手洗和羊毛衣物 48'",
"high_dry": "棉质衣物烘干", "high_dry": "棉质衣物烘干",
"hqd_20_degrees": "棉质 20℃", "hqd_20_degrees": "棉质 20℃",
"hqd_allergy": "过敏保养", "hqd_allergy": "过敏保养",
@ -478,13 +485,13 @@
"hqd_babycare": "婴儿服", "hqd_babycare": "婴儿服",
"hqd_checkup": "检测", "hqd_checkup": "检测",
"hqd_cottons": "棉布", "hqd_cottons": "棉布",
"hqd_delicate": "精致衣物", "hqd_delicate": "精致衣物 50'",
"hqd_delicate_cradle": "精致衣物", "hqd_delicate_cradle": "精致衣物",
"hqd_dry": "棉质衣物烘干", "hqd_dry": "棉质衣物烘干",
"hqd_dry_synthetics": "混合材质烘干", "hqd_dry_synthetics": "混合材质烘干",
"hqd_duvet": "羽绒服", "hqd_duvet": "羽绒服",
"hqd_eco_40_60_degrees": "经济 40-60", "hqd_eco_40_60_degrees": "经济 40-60",
"hqd_handwash_wool": "羊毛衣物", "hqd_handwash_wool": "羊毛衣物 40'",
"hqd_i_refresh": "i-Refresh", "hqd_i_refresh": "i-Refresh",
"hqd_mix": "混合", "hqd_mix": "混合",
"hqd_quick_15": "快速 15'", "hqd_quick_15": "快速 15'",
@ -495,7 +502,7 @@
"hqd_shirts": "衬衫", "hqd_shirts": "衬衫",
"hqd_smart": "Smart A.I.", "hqd_smart": "Smart A.I.",
"hqd_spin": "甩干", "hqd_spin": "甩干",
"hqd_sport": "运动装", "hqd_sport": "运动装 25'",
"hqd_super_fast": "快速 39", "hqd_super_fast": "快速 39",
"hqd_synthetic_and_coloured": "合成纤维", "hqd_synthetic_and_coloured": "合成纤维",
"hygiene_59": "卫生增强 59 分", "hygiene_59": "卫生增强 59 分",
@ -506,10 +513,11 @@
"hygiene_pro_steam": "Hygiene Pro + 蒸汽", "hygiene_pro_steam": "Hygiene Pro + 蒸汽",
"intensive_40": "加强 40°C", "intensive_40": "加强 40°C",
"intensive_40_steam": "Intensive 40°C + 蒸汽", "intensive_40_steam": "Intensive 40°C + 蒸汽",
"iot_active_steam": "蒸汽", "iot_active_steam": "蒸汽 29'",
"iot_active_wash_steam": "活化洗涤", "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": "棉质 + 蒸汽",
@ -542,17 +550,19 @@
"iot_dry_technical_fabrics": "工艺织物", "iot_dry_technical_fabrics": "工艺织物",
"iot_dry_warm_embrace": "中温烘干", "iot_dry_warm_embrace": "中温烘干",
"iot_dry_wool_dry": "羊毛衣物烘干", "iot_dry_wool_dry": "羊毛衣物烘干",
"iot_easy_iron": "易熨", "iot_easy_iron": "易熨 39'",
"iot_fresh_care_steam": "清新护理 + 蒸汽", "iot_fresh_care_steam": "清新护理 + 蒸汽",
"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_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 分",
"iot_rapid_a_class_60_steam": "快速 A 级 60 + 蒸汽", "iot_rapid_a_class_60_steam": "快速 A 级 60 + 蒸汽",
"iot_resistant_cotton_steam": "棉质 + 蒸汽", "iot_resistant_cotton_steam": "棉质 + 蒸汽",
"iot_shirts_steam": "衬衫 + 蒸汽", "iot_shirts_steam": "衬衫 + 蒸汽",
"iot_single_item_steam": "单件物品 + 蒸汽", "iot_single_item_steam": "单件物品 20' + 蒸汽",
"iot_smart_wash": "智能洗涤", "iot_smart_wash": "智能洗涤",
"iot_soft_care_steam": "Soft Care + Steam", "iot_soft_care_steam": "Soft Care + Steam",
"iot_special_39_full_load_steam": "专用 39' + 蒸汽", "iot_special_39_full_load_steam": "专用 39' + 蒸汽",
@ -586,7 +596,7 @@
"iot_wash_coloured_bed_linen": "彩色床单", "iot_wash_coloured_bed_linen": "彩色床单",
"iot_wash_coloured_bed_linen_steam": "彩色床单 + 蒸汽", "iot_wash_coloured_bed_linen_steam": "彩色床单 + 蒸汽",
"iot_wash_coloured_curtains": "彩色窗帘", "iot_wash_coloured_curtains": "彩色窗帘",
"iot_wash_coloured_shirts": "彩色衬衫", "iot_wash_coloured_shirts": "彩色衬衫 59'",
"iot_wash_coloured_shirts_steam": "彩色衬衫 + 蒸汽", "iot_wash_coloured_shirts_steam": "彩色衬衫 + 蒸汽",
"iot_wash_coloured_steam": "彩色 + 蒸汽", "iot_wash_coloured_steam": "彩色 + 蒸汽",
"iot_wash_coloured_tableclothes": "彩色桌布", "iot_wash_coloured_tableclothes": "彩色桌布",
@ -623,7 +633,7 @@
"iot_wash_down_jackets_zelig": "羽绒服", "iot_wash_down_jackets_zelig": "羽绒服",
"iot_wash_duvet": "羽绒服", "iot_wash_duvet": "羽绒服",
"iot_wash_fruit_stains": "水果渍", "iot_wash_fruit_stains": "水果渍",
"iot_wash_gym_fit": "运动 - 健身衣物", "iot_wash_gym_fit": "运动 - 健身衣物 59'",
"iot_wash_handwash": "手洗", "iot_wash_handwash": "手洗",
"iot_wash_handwash_colored": "彩色手洗", "iot_wash_handwash_colored": "彩色手洗",
"iot_wash_handwash_dark": "深色手洗", "iot_wash_handwash_dark": "深色手洗",
@ -668,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": "合成纤维 + 蒸汽",
@ -686,6 +697,7 @@
"iot_wash_wool": "羊毛衣物", "iot_wash_wool": "羊毛衣物",
"jeans": "牛仔裤", "jeans": "牛仔裤",
"jeans_60": "牛仔裤", "jeans_60": "牛仔裤",
"jeans_60_steam": "牛仔裤 + 蒸汽",
"low_dry": "混合材质烘干", "low_dry": "混合材质烘干",
"mixed": "混合材质", "mixed": "混合材质",
"mixed_and_colored_59": "混合材质和彩色 59'", "mixed_and_colored_59": "混合材质和彩色 59'",
@ -709,7 +721,7 @@
"rinse": "漂洗", "rinse": "漂洗",
"shirts_steam": "衬衫 + 蒸汽", "shirts_steam": "衬衫 + 蒸汽",
"silent_night": "过夜循环", "silent_night": "过夜循环",
"single_item": "单件商品", "single_item": "单件商品 20'",
"single_item_steam": "单件物品 + 蒸汽", "single_item_steam": "单件物品 + 蒸汽",
"smart_wash": "智能洗涤", "smart_wash": "智能洗涤",
"soft_care": "柔软保养", "soft_care": "柔软保养",
@ -725,8 +737,8 @@
"steam_39": "蒸汽 39'", "steam_39": "蒸汽 39'",
"steam_care_pro": "Steam Care Pro", "steam_care_pro": "Steam Care Pro",
"steam_care_pro_cotton": "Steam Care Pro - 棉", "steam_care_pro_cotton": "Steam Care Pro - 棉",
"steam_care_pro_delicates": "Steam Care Pro - 精致衣物", "steam_care_pro_delicates": "Steam Care Pro - 精致衣物 16'",
"steam_care_pro_synthetic": "Steam Care Pro - 化纤", "steam_care_pro_synthetic": "Steam Care Pro - 化纤 20'",
"steam_hygiene_plus": "卫生增强蒸汽", "steam_hygiene_plus": "卫生增强蒸汽",
"synthetics": "合成纤维", "synthetics": "合成纤维",
"synthetic_and_coloured": "合成纤维和彩色衣物", "synthetic_and_coloured": "合成纤维和彩色衣物",
@ -738,7 +750,7 @@
"wool": "羊毛衣物", "wool": "羊毛衣物",
"wool_and_delicates_49": "羊毛", "wool_and_delicates_49": "羊毛",
"wool_dry": "羊毛衣物烘干", "wool_dry": "羊毛衣物烘干",
"wool_soft_care": "羊毛" "wool_soft_care": "羊毛 48'"
}, },
"name": "程序" "name": "程序"
}, },
@ -748,20 +760,25 @@
"cheese": "奶酪", "cheese": "奶酪",
"chiller": "Quick cool", "chiller": "Quick cool",
"cold_drinks": "Soft chill", "cold_drinks": "Soft chill",
"cool_drink": "Cool Drink",
"eco": "Eco", "eco": "Eco",
"eco_mode": "Eco 模式", "eco_mode": "Eco 模式",
"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",
"no_mode_selected": "未选择模式", "no_mode_selected": "未选择模式",
"quick_cool": "QUICK COOL快速冷却", "quick_cool": "QUICK COOL快速冷却",
"sea_food": "Ready to cook meal", "sea_food": "Ready to cook meal",
"smart_mode_title": "Smart Mode",
"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",
"zero_fresh": "0° Fresh" "vegetables": "Vegetable",
"zero_fresh": "0°C Fresh"
}, },
"name": "程序" "name": "程序"
}, },
@ -887,6 +904,14 @@
}, },
"fan_speed": { "fan_speed": {
"name": "风扇速度" "name": "风扇速度"
},
"humidity_level": {
"state": {
"low": "低",
"mid": "中",
"high": "高"
},
"name": "湿度水平"
} }
}, },
"select": { "select": {
@ -956,7 +981,9 @@
"auto_care_soil": "Auto Care", "auto_care_soil": "Auto Care",
"auto_hygiene": "Auto Hygiene", "auto_hygiene": "Auto Hygiene",
"auto_plus": "AutoPlus", "auto_plus": "AutoPlus",
"auto_plus_soil": "自动增强污染",
"auto_rapid": "Auto Rapid", "auto_rapid": "Auto Rapid",
"auto_rapid_soil": "自动快速污染",
"auto_sensor": "Auto Sensor", "auto_sensor": "Auto Sensor",
"auto_sensor_soil": "Auto Sensor", "auto_sensor_soil": "Auto Sensor",
"auto_universal": "自动通用50℃-60℃", "auto_universal": "自动通用50℃-60℃",
@ -968,10 +995,11 @@
"classe_a_59": "A级1小时65℃", "classe_a_59": "A级1小时65℃",
"delicate": "易碎45℃", "delicate": "易碎45℃",
"dishwasher_care": "水垢清洁循环", "dishwasher_care": "水垢清洁循环",
"eco": "节能", "eco": "经济45℃",
"eco_asynch": "经济45℃", "eco_asynch": "经济45℃",
"eco_bldc": "经济45℃", "eco_bldc": "经济45℃",
"eco_synch": "经济45℃", "eco_synch": "经济45℃",
"eco_voice": "Eco",
"gentle_wash": "Gentle wash", "gentle_wash": "Gentle wash",
"glass": "玻璃", "glass": "玻璃",
"glassware": "玻璃器皿45°C", "glassware": "玻璃器皿45°C",
@ -980,6 +1008,7 @@
"hygiene_plus": "消毒洗+75°C", "hygiene_plus": "消毒洗+75°C",
"intensive": "加强", "intensive": "加强",
"intensive_rapid": "强化快速", "intensive_rapid": "强化快速",
"intensive_voice": "加强",
"iot_auto_sensor": "Auto Sensor", "iot_auto_sensor": "Auto Sensor",
"iot_auto_universal_soil": "自动通用50℃-60℃", "iot_auto_universal_soil": "自动通用50℃-60℃",
"iot_auto_wash_soil": "自动洗涤", "iot_auto_wash_soil": "自动洗涤",
@ -1052,6 +1081,7 @@
"ultra_silent": "超静55℃", "ultra_silent": "超静55℃",
"universal": "通用60°C", "universal": "通用60°C",
"universal_plus": "通用+ 70°C", "universal_plus": "通用+ 70°C",
"zone_wash": "Flex Zone Wash",
"zoom_39": "Zoom 39 min" "zoom_39": "Zoom 39 min"
}, },
"name": "程序" "name": "程序"
@ -1185,14 +1215,14 @@
"hqd_bulky": "大件物品", "hqd_bulky": "大件物品",
"hqd_casual": "休闲", "hqd_casual": "休闲",
"hqd_cold_wind_30": "凉风 30 分钟", "hqd_cold_wind_30": "凉风 30 分钟",
"hqd_cold_wind_timing": "凉风", "hqd_cold_wind_timing": "冷气",
"hqd_cotton": "棉布", "hqd_cotton": "棉布",
"hqd_curtain": "窗帘", "hqd_curtain": "窗帘",
"hqd_delicate": "精致衣物", "hqd_delicate": "精致衣物",
"hqd_diaper": "纸尿裤", "hqd_diaper": "纸尿裤",
"hqd_duvet": "羽绒被", "hqd_duvet": "合成纤维棉服",
"hqd_feather": "羽绒服", "hqd_feather": "天然纤维棉服",
"hqd_hot_wind_timing": "热空气", "hqd_hot_wind_timing": "衣物蓬松",
"hqd_hygienic": "卫生保护", "hqd_hygienic": "卫生保护",
"hqd_i_refresh": "I-Refresh", "hqd_i_refresh": "I-Refresh",
"hqd_i_refresh_pro": "I-Refresh Pro", "hqd_i_refresh_pro": "I-Refresh Pro",
@ -1202,10 +1232,10 @@
"hqd_mix": "混合材质", "hqd_mix": "混合材质",
"hqd_night_dry": "过夜烘干", "hqd_night_dry": "过夜烘干",
"hqd_outdoor": "Outdoor", "hqd_outdoor": "Outdoor",
"hqd_precious_cure": "Precious cure", "hqd_precious_cure": "Precious Cure",
"hqd_quick_20": "快洗 20", "hqd_quick_20": "快洗 20",
"hqd_quick_30": "快洗 30", "hqd_quick_30": "快洗 30",
"hqd_quick_dry": "快速干", "hqd_quick_dry": "30 秒自动快速干",
"hqd_quilt": "棉被", "hqd_quilt": "棉被",
"hqd_refresh": "清新", "hqd_refresh": "清新",
"hqd_school_uniform": "校服", "hqd_school_uniform": "校服",
@ -1242,6 +1272,8 @@
"iot_dry_gym_fit": "健身服", "iot_dry_gym_fit": "健身服",
"iot_dry_lingerie": "女性内衣", "iot_dry_lingerie": "女性内衣",
"iot_dry_mixed": "混合材质", "iot_dry_mixed": "混合材质",
"iot_dry_pet_accessories": "宠物用品",
"iot_dry_pet_hair_removal": "宠物毛发清除(预洗)",
"iot_dry_playsuits": "运动装", "iot_dry_playsuits": "运动装",
"iot_dry_rapid_30": "快速 30", "iot_dry_rapid_30": "快速 30",
"iot_dry_rapid_59": "快速 59", "iot_dry_rapid_59": "快速 59",
@ -1293,9 +1325,9 @@
"state": { "state": {
"20_degrees_coloured_cottons": "20° 彩色和棉花", "20_degrees_coloured_cottons": "20° 彩色和棉花",
"20_degrees_new_energy_label": "20°C", "20_degrees_new_energy_label": "20°C",
"active_steam": "蒸汽", "active_steam": "蒸汽 29'",
"active_wash": "活化洗涤", "active_wash": "活化洗涤 20'",
"active_wash_steam": "活化洗涤", "active_wash_steam": "活化洗涤 20' + 蒸汽",
"allergy_care": "过敏保养", "allergy_care": "过敏保养",
"allergy_care_pro": "Allergy Care Pro", "allergy_care_pro": "Allergy Care Pro",
"all_in_one_49": "一体化 49'", "all_in_one_49": "一体化 49'",
@ -1315,19 +1347,19 @@
"cottons_steam": "棉质 + 蒸汽", "cottons_steam": "棉质 + 蒸汽",
"cotton_care_59": "棉麻洗59\"", "cotton_care_59": "棉麻洗59\"",
"delicate_59": "精致 59'", "delicate_59": "精致 59'",
"delicate_silk": "精致丝绸", "delicate_silk": "精致丝绸 59'",
"delicate_silk_steam": "精致丝绸 + 蒸汽", "delicate_silk_steam": "精致丝绸 + 蒸汽",
"delicati_59": "精致 59'", "delicati_59": "精致 59'",
"delicati_59_steam": "精致 59'", "delicati_59_steam": "精致 59'",
"drain_spin": "脱水 + 甩干", "drain_spin": "脱水 + 甩干",
"easy_iron": "易熨", "easy_iron": "易熨 39'",
"eco_40_60_new_energy_label": "经济 40-60", "eco_40_60_new_energy_label": "经济 40-60",
"extra_care": "额外保养", "extra_care": "额外保养",
"fitness": "健身衣物", "fitness": "健身衣物",
"fitness_care": "健身衣物", "fitness_care": "健身衣物",
"fresh_care": "清新护理", "fresh_care": "清新护理 59'",
"fresh_care_steam": "清新护理 + 蒸汽", "fresh_care_steam": "清新护理 + 蒸汽",
"handwash_wool": "手洗和羊毛衣物", "handwash_wool": "手洗和羊毛衣物 48'",
"high_dry": "棉质衣物烘干", "high_dry": "棉质衣物烘干",
"hqd_20_degrees": "棉质 20℃", "hqd_20_degrees": "棉质 20℃",
"hqd_allergy": "过敏保养", "hqd_allergy": "过敏保养",
@ -1335,13 +1367,13 @@
"hqd_babycare": "婴儿服", "hqd_babycare": "婴儿服",
"hqd_checkup": "检测", "hqd_checkup": "检测",
"hqd_cottons": "棉布", "hqd_cottons": "棉布",
"hqd_delicate": "精致衣物", "hqd_delicate": "精致衣物 50'",
"hqd_delicate_cradle": "精致衣物", "hqd_delicate_cradle": "精致衣物",
"hqd_dry": "棉质衣物烘干", "hqd_dry": "棉质衣物烘干",
"hqd_dry_synthetics": "混合材质烘干", "hqd_dry_synthetics": "混合材质烘干",
"hqd_duvet": "羽绒服", "hqd_duvet": "羽绒服",
"hqd_eco_40_60_degrees": "经济 40-60", "hqd_eco_40_60_degrees": "经济 40-60",
"hqd_handwash_wool": "羊毛衣物", "hqd_handwash_wool": "羊毛衣物 40'",
"hqd_i_refresh": "i-Refresh", "hqd_i_refresh": "i-Refresh",
"hqd_mix": "混合", "hqd_mix": "混合",
"hqd_quick_15": "快速 15'", "hqd_quick_15": "快速 15'",
@ -1352,7 +1384,7 @@
"hqd_shirts": "衬衫", "hqd_shirts": "衬衫",
"hqd_smart": "Smart A.I.", "hqd_smart": "Smart A.I.",
"hqd_spin": "甩干", "hqd_spin": "甩干",
"hqd_sport": "运动装", "hqd_sport": "运动装 25'",
"hqd_super_fast": "快速 39", "hqd_super_fast": "快速 39",
"hqd_synthetic_and_coloured": "合成纤维", "hqd_synthetic_and_coloured": "合成纤维",
"hygiene_59": "卫生增强 59 分", "hygiene_59": "卫生增强 59 分",
@ -1363,10 +1395,11 @@
"hygiene_pro_steam": "Hygiene Pro + 蒸汽", "hygiene_pro_steam": "Hygiene Pro + 蒸汽",
"intensive_40": "加强 40°C", "intensive_40": "加强 40°C",
"intensive_40_steam": "Intensive 40°C + 蒸汽", "intensive_40_steam": "Intensive 40°C + 蒸汽",
"iot_active_steam": "蒸汽", "iot_active_steam": "蒸汽 29'",
"iot_active_wash_steam": "活化洗涤", "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": "棉质 + 蒸汽",
@ -1399,17 +1432,19 @@
"iot_dry_technical_fabrics": "工艺织物", "iot_dry_technical_fabrics": "工艺织物",
"iot_dry_warm_embrace": "中温烘干", "iot_dry_warm_embrace": "中温烘干",
"iot_dry_wool_dry": "羊毛衣物烘干", "iot_dry_wool_dry": "羊毛衣物烘干",
"iot_easy_iron": "易熨", "iot_easy_iron": "易熨 39'",
"iot_fresh_care_steam": "清新护理 + 蒸汽", "iot_fresh_care_steam": "清新护理 + 蒸汽",
"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_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 分",
"iot_rapid_a_class_60_steam": "快速 A 级 60 + 蒸汽", "iot_rapid_a_class_60_steam": "快速 A 级 60 + 蒸汽",
"iot_resistant_cotton_steam": "棉质 + 蒸汽", "iot_resistant_cotton_steam": "棉质 + 蒸汽",
"iot_shirts_steam": "衬衫 + 蒸汽", "iot_shirts_steam": "衬衫 + 蒸汽",
"iot_single_item_steam": "单件物品 + 蒸汽", "iot_single_item_steam": "单件物品 20' + 蒸汽",
"iot_smart_wash": "智能洗涤", "iot_smart_wash": "智能洗涤",
"iot_soft_care_steam": "Soft Care + Steam", "iot_soft_care_steam": "Soft Care + Steam",
"iot_special_39_full_load_steam": "专用 39' + 蒸汽", "iot_special_39_full_load_steam": "专用 39' + 蒸汽",
@ -1443,7 +1478,7 @@
"iot_wash_coloured_bed_linen": "彩色床单", "iot_wash_coloured_bed_linen": "彩色床单",
"iot_wash_coloured_bed_linen_steam": "彩色床单 + 蒸汽", "iot_wash_coloured_bed_linen_steam": "彩色床单 + 蒸汽",
"iot_wash_coloured_curtains": "彩色窗帘", "iot_wash_coloured_curtains": "彩色窗帘",
"iot_wash_coloured_shirts": "彩色衬衫", "iot_wash_coloured_shirts": "彩色衬衫 59'",
"iot_wash_coloured_shirts_steam": "彩色衬衫 + 蒸汽", "iot_wash_coloured_shirts_steam": "彩色衬衫 + 蒸汽",
"iot_wash_coloured_steam": "彩色 + 蒸汽", "iot_wash_coloured_steam": "彩色 + 蒸汽",
"iot_wash_coloured_tableclothes": "彩色桌布", "iot_wash_coloured_tableclothes": "彩色桌布",
@ -1480,7 +1515,7 @@
"iot_wash_down_jackets_zelig": "羽绒服", "iot_wash_down_jackets_zelig": "羽绒服",
"iot_wash_duvet": "羽绒服", "iot_wash_duvet": "羽绒服",
"iot_wash_fruit_stains": "水果渍", "iot_wash_fruit_stains": "水果渍",
"iot_wash_gym_fit": "运动 - 健身衣物", "iot_wash_gym_fit": "运动 - 健身衣物 59'",
"iot_wash_handwash": "手洗", "iot_wash_handwash": "手洗",
"iot_wash_handwash_colored": "彩色手洗", "iot_wash_handwash_colored": "彩色手洗",
"iot_wash_handwash_dark": "深色手洗", "iot_wash_handwash_dark": "深色手洗",
@ -1525,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": "合成纤维 + 蒸汽",
@ -1543,6 +1579,7 @@
"iot_wash_wool": "羊毛衣物", "iot_wash_wool": "羊毛衣物",
"jeans": "牛仔裤", "jeans": "牛仔裤",
"jeans_60": "牛仔裤", "jeans_60": "牛仔裤",
"jeans_60_steam": "牛仔裤 + 蒸汽",
"low_dry": "混合材质烘干", "low_dry": "混合材质烘干",
"mixed": "混合材质", "mixed": "混合材质",
"mixed_and_colored_59": "混合材质和彩色 59'", "mixed_and_colored_59": "混合材质和彩色 59'",
@ -1566,7 +1603,7 @@
"rinse": "漂洗", "rinse": "漂洗",
"shirts_steam": "衬衫 + 蒸汽", "shirts_steam": "衬衫 + 蒸汽",
"silent_night": "过夜循环", "silent_night": "过夜循环",
"single_item": "单件商品", "single_item": "单件商品 20'",
"single_item_steam": "单件物品 + 蒸汽", "single_item_steam": "单件物品 + 蒸汽",
"smart_wash": "智能洗涤", "smart_wash": "智能洗涤",
"soft_care": "柔软保养", "soft_care": "柔软保养",
@ -1582,8 +1619,8 @@
"steam_39": "蒸汽 39'", "steam_39": "蒸汽 39'",
"steam_care_pro": "Steam Care Pro", "steam_care_pro": "Steam Care Pro",
"steam_care_pro_cotton": "Steam Care Pro - 棉", "steam_care_pro_cotton": "Steam Care Pro - 棉",
"steam_care_pro_delicates": "Steam Care Pro - 精致衣物", "steam_care_pro_delicates": "Steam Care Pro - 精致衣物 16'",
"steam_care_pro_synthetic": "Steam Care Pro - 化纤", "steam_care_pro_synthetic": "Steam Care Pro - 化纤 20'",
"steam_hygiene_plus": "卫生增强蒸汽", "steam_hygiene_plus": "卫生增强蒸汽",
"synthetics": "合成纤维", "synthetics": "合成纤维",
"synthetic_and_coloured": "合成纤维和彩色衣物", "synthetic_and_coloured": "合成纤维和彩色衣物",
@ -1595,7 +1632,7 @@
"wool": "羊毛衣物", "wool": "羊毛衣物",
"wool_and_delicates_49": "羊毛", "wool_and_delicates_49": "羊毛",
"wool_dry": "羊毛衣物烘干", "wool_dry": "羊毛衣物烘干",
"wool_soft_care": "羊毛" "wool_soft_care": "羊毛 48'"
}, },
"name": "程序" "name": "程序"
}, },
@ -1605,20 +1642,25 @@
"cheese": "奶酪", "cheese": "奶酪",
"chiller": "Quick cool", "chiller": "Quick cool",
"cold_drinks": "Soft chill", "cold_drinks": "Soft chill",
"cool_drink": "Cool Drink",
"eco": "Eco", "eco": "Eco",
"eco_mode": "Eco 模式", "eco_mode": "Eco 模式",
"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",
"no_mode_selected": "未选择模式", "no_mode_selected": "未选择模式",
"quick_cool": "QUICK COOL快速冷却", "quick_cool": "QUICK COOL快速冷却",
"sea_food": "Ready to cook meal", "sea_food": "Ready to cook meal",
"smart_mode_title": "Smart Mode",
"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",
"zero_fresh": "0° Fresh" "vegetables": "Vegetable",
"zero_fresh": "0°C Fresh"
}, },
"name": "程序" "name": "程序"
}, },
@ -1671,6 +1713,71 @@
"unknown": "unknown" "unknown": "unknown"
}, },
"name": "脏污程度" "name": "脏污程度"
},
"stain_type": {
"state": {
"baby_food": "婴儿食品",
"bean_paste": "豆汤",
"blood": "血渍",
"blueberry": "蓝莓",
"blue_ink": "蓝色墨水",
"butter": "黄油",
"chili_oil": "辣椒油",
"chili_sauce": "辣椒酱",
"chocolate": "巧克力",
"coffe": "咖啡",
"coffee": "咖啡",
"color_pencil": "铅笔",
"cooking_oil": "食用油",
"curry": "咖喱",
"deodorant": "除臭剂",
"egg": "鸡蛋",
"fruit": "水果",
"glue": "胶水",
"grass": "青草",
"ice_cream": "冰淇淋",
"ketchup": "调味蕃茄酱",
"lip_gloss": "唇彩",
"mayonnaise": "蛋黄酱",
"mech_grease": "机械润滑油",
"milk": "牛奶",
"milk_tea": "奶茶",
"oil": "油",
"oil_pastel": "油画棒",
"perfume": "香水",
"rust": "锈",
"shoe_cream": "鞋油",
"soil": "土壤",
"soy_sauce": "酱油",
"stain_level": "污渍水平",
"sweat": "汗水",
"tea": "茶渍",
"wine": "酒类",
"unknown": "unknown"
},
"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": {
@ -1928,6 +2035,9 @@
}, },
"aroma_time_off": { "aroma_time_off": {
"name": "扩散器(关)" "name": "扩散器(关)"
},
"my_zone_temp_sel": {
"name": "目标温度 My Zone"
} }
}, },
"climate": { "climate": {
@ -2062,6 +2172,9 @@
} }
} }
} }
},
"my_zone": {
"name": "My Zone"
} }
}, },
"fan": { "fan": {

View File

@ -0,0 +1,95 @@
from typing import Union, TypeVar, TYPE_CHECKING
if TYPE_CHECKING:
from homeassistant.components.button import ButtonEntityDescription
from homeassistant.components.fan import FanEntityDescription
from homeassistant.components.light import LightEntityDescription
from homeassistant.components.lock import LockEntityDescription
from homeassistant.components.number import NumberEntityDescription
from homeassistant.components.select import SelectEntityDescription
from homeassistant.components.sensor import SensorEntityDescription
from homeassistant.components.switch import SwitchEntityDescription
from .binary_sensor import HonBinarySensorEntityDescription
from .button import HonButtonEntity, HonDataArchive, HonDeviceInfo
from .climate import (
HonACClimateEntityDescription,
HonClimateEntityDescription,
)
from .number import (
HonConfigNumberEntityDescription,
HonNumberEntityDescription,
)
from .select import (
HonConfigSelectEntityDescription,
HonSelectEntityDescription,
)
from .sensor import (
HonSensorEntityDescription,
HonConfigSensorEntityDescription,
)
from .switch import (
HonControlSwitchEntityDescription,
HonSwitchEntityDescription,
HonConfigSwitchEntityDescription,
)
HonButtonType = Union[
"HonButtonEntity",
"HonDataArchive",
"HonDeviceInfo",
]
HonEntityDescription = Union[
"HonBinarySensorEntityDescription",
"HonControlSwitchEntityDescription",
"HonSwitchEntityDescription",
"HonConfigSwitchEntityDescription",
"HonSensorEntityDescription",
"HonConfigSelectEntityDescription",
"HonConfigNumberEntityDescription",
"HonACClimateEntityDescription",
"HonClimateEntityDescription",
"HonNumberEntityDescription",
"HonSelectEntityDescription",
"HonConfigSensorEntityDescription",
"FanEntityDescription",
"LightEntityDescription",
"LockEntityDescription",
"ButtonEntityDescription",
"SwitchEntityDescription",
"SensorEntityDescription",
"SelectEntityDescription",
"NumberEntityDescription",
]
HonOptionEntityDescription = Union[
"HonConfigSelectEntityDescription",
"HonSelectEntityDescription",
"HonConfigSensorEntityDescription",
"HonSensorEntityDescription",
]
T = TypeVar(
"T",
"HonBinarySensorEntityDescription",
"HonControlSwitchEntityDescription",
"HonSwitchEntityDescription",
"HonConfigSwitchEntityDescription",
"HonSensorEntityDescription",
"HonConfigSelectEntityDescription",
"HonConfigNumberEntityDescription",
"HonACClimateEntityDescription",
"HonClimateEntityDescription",
"HonNumberEntityDescription",
"HonSelectEntityDescription",
"HonConfigSensorEntityDescription",
"FanEntityDescription",
"LightEntityDescription",
"LockEntityDescription",
"ButtonEntityDescription",
"SwitchEntityDescription",
"SensorEntityDescription",
"SelectEntityDescription",
"NumberEntityDescription",
)

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"
} }

781
info.md
View File

@ -1,21 +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)
Support for home appliances of [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 Appliances](https://img.shields.io/badge/Appliances-11-forestgreen)](https://github.com/Andre0512/hon#supported-appliances)
[![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-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
@ -24,26 +727,6 @@ Support for home appliances of [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 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/> HW90-B14TEAM5 <br/> HW100-B14959U1 | H-WASH 500 <br/> H7W4 48MBC-S <br/> HW 410AMBCB/1-80 | CO4 107T1/2-07 <br/> CBWO49TWME-S <br/> RO44 1286DWMC4-07 <br/> HW 68AMC/1-80 <br/> HWPD 69AMBC/1-S |
| **Tumble Dryer** | HD80-A3959 | 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 |
| **Washer Dryer** | HWD100-B14979 | 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/> AS35PBAHRA <br/> AS35S2SF1FA-WH <br/> AS35S2SF2FA-3 <br/> AS35TADHRA-2 <br/> AS35TAMHRA-C | | CY-12TAIN |
| **Fridge** | HFW7720ENMB | | CCE4T620EWU |
| **Hob** | HA2MTSJ68MC | | CIS633SCTTWIFI |
| **Hood** | HADG6DS46BWIFI | | |
| **Wine Cellar** | HWS247FDU1 | | |
| **Air Purifier** | | HHP50CA001 | |
| 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
@ -66,19 +749,37 @@ Translation of internal names like programs are available for all languages whic
* 🇪🇸 Spanish * 🇪🇸 Spanish
* 🇹🇷 Turkish * 🇹🇷 Turkish
## Examples ## Compatiblity
### Washing Machine Haier offers different apps for different markets. Some appliances are compatible with more than one app. This integration only supports appliances that can be controlled via hOn. Please download the hOn app and check compatibilty before you open an issue.
![washing_machine.png](assets/washing_machine.png) The apps on this (incomplete) list have been requested so far:
| App | Main Market | Supported | Alternative |
|-----------------|---------------|-----------------------------------------|---------------------------------------------------------------------------------|
| Haier hOn | Europe | :heavy_check_mark: | |
| Candy simply-Fi | Europe | :grey_question: (only newer appliances) | [ofalvai/home-assistant-candy](https://github.com/ofalvai/home-assistant-candy) |
| Hoover Wizard | Europe | :grey_question: (only newer appliances) | |
| Haier Uhome | China | :x: | [banto6/haier](https://github.com/banto6/haier) |
| Haier U+ | China | :x: | |
| GE SmartHQ | North America | :x: | [simbaja/ha_gehome](https://github.com/simbaja/ha_gehome) |
| Haier Evo | Russia | :x: | |
## 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! ⭐

25
mypy.ini Normal file
View File

@ -0,0 +1,25 @@
[mypy]
check_untyped_defs = true
disallow_any_generics = true
disallow_incomplete_defs = true
disallow_untyped_calls = true
disallow_untyped_decorators = true
disallow_untyped_defs = true
disable_error_code = annotation-unchecked
enable_error_code = ignore-without-code, redundant-self, truthy-iterable
follow_imports = silent
local_partial_types = true
no_implicit_optional = true
no_implicit_reexport = true
show_error_codes = true
strict_concatenate = false
strict_equality = true
warn_incomplete_stub = true
warn_redundant_casts = true
warn_return_any = true
warn_unreachable = true
warn_unused_configs = true
warn_unused_ignores = true
[mypy-homeassistant.*]
implicit_reexport = True

1
requirements.txt Normal file
View File

@ -0,0 +1 @@
pyhOn==0.15.15

View File

@ -1,3 +1,4 @@
pyhOn black>=22.12
black flake8>=6.0
homeassistant mypy>=0.991
pylint>=2.15

View File

@ -8,7 +8,6 @@ from pathlib import Path
from pyhon import HonAPI from pyhon import HonAPI
if __name__ == "__main__": if __name__ == "__main__":
sys.path.insert(0, str(Path(__file__).parent.parent)) sys.path.insert(0, str(Path(__file__).parent.parent))

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,8 +40,14 @@ entities = {
"switch": SWITCHES, "switch": SWITCHES,
} }
result = {}
for entity_type, appliances in entities.items(): def get_models():
return yaml.load_yaml(str(Path(__file__).parent.parent / "supported_models.yml"))
def get_entites():
result = {}
for entity_type, appliances in ENTITIES.items():
for appliance, data in appliances.items(): for appliance, data in appliances.items():
for entity in data: for entity in data:
if isinstance(entity, HonControlSwitchEntityDescription): if isinstance(entity, HonControlSwitchEntityDescription):
@ -59,10 +66,27 @@ for entity_type, appliances in entities.items():
result.setdefault(appliance, {}).setdefault( result.setdefault(appliance, {}).setdefault(
entity.entity_category or category, [] entity.entity_category or category, []
).append(attributes) ).append(attributes)
text = "" return result
for appliance, categories in sorted(result.items()):
text += f"\n### {APPLIANCES[appliance]}\n"
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} 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(): for category, data in categories.items():
text += f"#### {str(category).capitalize()}s\n" text += f"#### {str(category).capitalize()}s\n"
text += "| Name | Icon | Entity | Key |\n" text += "| Name | Icon | Entity | Key |\n"
@ -70,14 +94,30 @@ for appliance, categories in sorted(result.items()):
for key, name, icon, entity_type in sorted(data, key=lambda d: d[1]): for key, name, icon, entity_type in sorted(data, key=lambda d: d[1]):
icon = f"`{icon.replace('mdi:', '')}`" if icon else "" icon = f"`{icon.replace('mdi:', '')}`" if icon else ""
text += f"| {name} | {icon} | `{entity_type}` | `{key}` |\n" text += f"| {name} | {icon} | `{entity_type}` | `{key}` |\n"
text += "\n</details>\n\n"
return text
with open(Path(__file__).parent.parent / "README.md", "r") as file:
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 = file.read()
readme = re.sub( readme = re.sub(
"(## Appliance Features\n)(?:.|\\s)+?([^#]## |\\Z)", "(## Supported Appliances\n)(?:.|\\s)+?([^#]## |\\Z)",
f"\\1{text}\\2", f"\\1{text}\\2",
readme, readme,
re.DOTALL, re.DOTALL,
) )
with open(Path(__file__).parent.parent / "README.md", "w") as file: 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) 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",
@ -109,6 +143,52 @@ REF_ZONES = {
"fridge_freezer": ["REF.ZONES.FRIDGE", " & ", "REF.ZONES.FREEZER"], "fridge_freezer": ["REF.ZONES.FRIDGE", " & ", "REF.ZONES.FREEZER"],
} }
REF_HUMIDITY_LEVELS = {
"low": "GLOBALS.GENERAL.LOW",
"mid": "GLOBALS.GENERAL.MEDIUM",
"high": "GLOBALS.GENERAL.HIGH",
}
STAINS = {
"baby_food": "STAIN_TYPE_LIST.STAINS.BABY_FOOD",
"bean_paste": "STAIN_TYPE_LIST.STAINS.BEAN_PASTE",
"blood": "STAIN_TYPE_LIST.STAINS.BLOOD",
"blueberry": "STAIN_TYPE_LIST.STAINS.BLUEBERRY",
"blue_ink": "STAIN_TYPE_LIST.STAINS.BLUE_INK",
"butter": "STAIN_TYPE_LIST.STAINS.BUTTER",
"chili_oil": "STAIN_TYPE_LIST.STAINS.CHILI_OIL",
"chili_sauce": "STAIN_TYPE_LIST.STAINS.CHILI_SAUCE",
"chocolate": "STAIN_TYPE_LIST.STAINS.CHOCOLATE",
"coffe": "STAIN_TYPE_LIST.STAINS.COFFE",
"coffee": "STAIN_TYPE_LIST.STAINS.COFFEE",
"color_pencil": "STAIN_TYPE_LIST.STAINS.COLOR_PENCIL",
"cooking_oil": "STAIN_TYPE_LIST.STAINS.COOKING_OIL",
"curry": "STAIN_TYPE_LIST.STAINS.CURRY",
"deodorant": "STAIN_TYPE_LIST.STAINS.DEODORANT",
"egg": "STAIN_TYPE_LIST.STAINS.EGG",
"fruit": "STAIN_TYPE_LIST.STAINS.FRUIT",
"glue": "STAIN_TYPE_LIST.STAINS.GLUE",
"grass": "STAIN_TYPE_LIST.STAINS.GRASS",
"ice_cream": "STAIN_TYPE_LIST.STAINS.ICE_CREAM",
"ketchup": "STAIN_TYPE_LIST.STAINS.KETCHUP",
"lip_gloss": "STAIN_TYPE_LIST.STAINS.LIP_GLOSS",
"mayonnaise": "STAIN_TYPE_LIST.STAINS.MAYONNAISE",
"mech_grease": "STAIN_TYPE_LIST.STAINS.MECH_GREASE",
"milk": "STAIN_TYPE_LIST.STAINS.MILK",
"milk_tea": "STAIN_TYPE_LIST.STAINS.MILK_TEA",
"oil": "STAIN_TYPE_LIST.STAINS.OIL",
"oil_pastel": "STAIN_TYPE_LIST.STAINS.OIL_PASTEL",
"perfume": "STAIN_TYPE_LIST.STAINS.PERFUME",
"rust": "STAIN_TYPE_LIST.STAINS.RUST",
"shoe_cream": "STAIN_TYPE_LIST.STAINS.SHOE_CREAM",
"soil": "STAIN_TYPE_LIST.STAINS.SOIL",
"soy_sauce": "STAIN_TYPE_LIST.STAINS.SOY_SAUCE",
"sweat": "STAIN_TYPE_LIST.STAINS.SWEAT",
"tea": "STAIN_TYPE_LIST.STAINS.TEA",
"wine": "STAIN_TYPE_LIST.STAINS.WINE",
"unknown": "unknown",
}
SENSOR = { SENSOR = {
"washing_modes": MACH_MODE, "washing_modes": MACH_MODE,
@ -119,6 +199,7 @@ SENSOR = {
"dry_levels": TUMBLE_DRYER_DRY_LEVEL, "dry_levels": TUMBLE_DRYER_DRY_LEVEL,
"dirt_level": DIRTY_LEVEL, "dirt_level": DIRTY_LEVEL,
"steam_level": STEAM_LEVEL, "steam_level": STEAM_LEVEL,
"humidity_level": REF_HUMIDITY_LEVELS,
} }
SELECT = { SELECT = {
@ -130,6 +211,9 @@ SELECT = {
"mode": AP_MACH_MODE, "mode": AP_MACH_MODE,
"diffuser": AP_DIFFUSER_LEVEL, "diffuser": AP_DIFFUSER_LEVEL,
"dirt_level": DIRTY_LEVEL, "dirt_level": DIRTY_LEVEL,
"stain_type": STAINS,
"fan_horizontal": AC_POSITIONS,
"fan_vertical": AC_POSITIONS,
} }
PROGRAMS = { PROGRAMS = {
@ -295,6 +379,15 @@ NAMES = {
"mode": "CUBE90_GLOBAL.GENERAL.MODE", "mode": "CUBE90_GLOBAL.GENERAL.MODE",
"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",
"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",
@ -355,6 +448,7 @@ NAMES = {
"filter_life": "AP.MAINTENANCE.FILTER_LIFE", "filter_life": "AP.MAINTENANCE.FILTER_LIFE",
"air_quality": "AP.DISCOVER.AIR_QUALITY", "air_quality": "AP.DISCOVER.AIR_QUALITY",
"fan_speed": "AP.TITLES.FAN_SPEED", "fan_speed": "AP.TITLES.FAN_SPEED",
"humidity_level": "WC.MAINTENANCE_HUMIDITY.TITLE",
}, },
"number": { "number": {
"power_management": "HINTS.COOKING_WITH_INDUCTION.POWER_MANAGEMENT", "power_management": "HINTS.COOKING_WITH_INDUCTION.POWER_MANAGEMENT",
@ -368,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",
@ -377,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"