Improve fridge support #41

This commit is contained in:
Andre Basche 2023-05-21 20:51:20 +02:00
parent 833c395c97
commit bf1a6e8fe2
29 changed files with 788 additions and 278 deletions

View file

@ -72,6 +72,7 @@ Support has been confirmed for these models, but many more will work. Please add
- Haier HWO60SM2F3XH
- Haier XIB 3B2SFS-80
- Haier XIB 6B2D3FB
- Candy BCTDH7A1TE
- Candy CIS633SCTTWIFI
- Candy CSOE C10DE-80
- Candy ROE H9A3TCEX-S
@ -274,18 +275,23 @@ For every device exists a hidden button which can be used to log all infos of yo
| Auto-Set Mode | `thermometer-auto` | `switch` | `settings.intelligenceMode` |
| Freezer Temperature | `thermometer` | `number` | `settings.tempSelZ2` |
| Fridge Temperature | `thermometer` | `number` | `settings.tempSelZ1` |
| Holiday Mode | `palm-tree` | `switch` | `settings.holidayMode` |
| Program Start | `play` | `button` | `startProgram` |
| Program Stop | `stop` | `button` | `stopProgram` |
| Super Cool | `snowflake` | `switch` | `settings.quickModeZ2` |
| Super Freeze | `snowflake-variant` | `switch` | `settings.quickModeZ1` |
#### 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` |
| Door Status Freezer | `fridge-top` | `binary_sensor` | `doorStatusZ1` |
| Door Status Fridge | `fridge-bottom` | `binary_sensor` | `door2StatusZ1` |
| Error | `math-log` | `sensor` | `errors` |
| Holiday Mode | `palm-tree` | `binary_sensor` | `holidayMode` |
| Room Humidity | `water-percent` | `sensor` | `humidityEnv` |
| Room Temperature | `home-thermometer-outline` | `sensor` | `tempEnv` |

View file

@ -23,6 +23,20 @@ BUTTONS: dict[str, tuple[ButtonEntityDescription, ...]] = {
translation_key="induction_hob",
),
),
"REF": (
ButtonEntityDescription(
key="startProgram",
name="Program Start",
icon="mdi:play",
translation_key="start_program",
),
ButtonEntityDescription(
key="stopProgram",
name="Program Stop",
icon="mdi:stop",
translation_key="stop_program",
),
),
}

View file

@ -180,6 +180,13 @@ AC_HUMAN_SENSE = {
"2": "AC.PROGRAM_DETAIL.FOLLOW_TOUCH",
}
REF_ZONES = {
"fridge": "REF.ZONES.FRIDGE",
"freezer": "REF.ZONES.FREEZER",
"vtRoom1": "REF.ZONES.MY_ZONE_1",
"[fridge|freezer]": ["REF.ZONES.FRIDGE", " & ", "REF.ZONES.FREEZER"],
}
PROGRAMS_TD = [
"active_dry",
"allergy_care",

View file

@ -1,11 +1,15 @@
{
"domain": "hon",
"name": "Haier hOn",
"codeowners": ["@Andre0512"],
"codeowners": [
"@Andre0512"
],
"config_flow": true,
"documentation": "https://github.com/Andre0512/hon/",
"iot_class": "cloud_polling",
"issue_tracker": "https://github.com/Andre0512/hon/issues",
"requirements": ["pyhOn==0.10.10"],
"requirements": [
"pyhOn==0.11.0"
],
"version": "0.8.0-beta.5"
}

View file

@ -216,7 +216,7 @@ class HonNumberEntity(HonEntity, NumberEntity):
async def async_set_native_value(self, value: float) -> None:
setting = self._device.settings[self.entity_description.key]
if not (
isinstance(setting, HonParameter) or isinstance(setting, HonParameterFixed)
type(setting) == HonParameter or isinstance(setting, HonParameterFixed)
):
setting.value = value
if "settings." in self.entity_description.key:

View file

@ -124,6 +124,13 @@ SELECTS = {
entity_category=EntityCategory.CONFIG,
translation_key="programs_ref",
),
SelectEntityDescription(
key="startProgram.zone",
name="Zone",
icon="mdi:radiobox-marked",
entity_category=EntityCategory.CONFIG,
translation_key="ref_zones",
),
),
}

View file

@ -502,6 +502,9 @@ SENSORS: dict[str, tuple[SensorEntityDescription, ...]] = {
native_unit_of_measurement=UnitOfTemperature.CELSIUS,
translation_key="freezer_temp",
),
SensorEntityDescription(
key="errors", name="Error", icon="mdi:math-log", translation_key="errors"
),
),
}
SENSORS["WD"] = unique_entities(SENSORS["WM"], SENSORS["TD"])

View file

@ -4,6 +4,7 @@ from typing import Any
from pyhon import Hon
from pyhon.appliance import HonAppliance
from pyhon.parameter.base import HonParameter
from pyhon.parameter.range import HonParameterRange
from homeassistant.components.switch import SwitchEntityDescription, SwitchEntity
@ -319,22 +320,32 @@ SWITCHES: dict[str, tuple[HonSwitchEntityDescription, ...]] = {
"REF": (
HonSwitchEntityDescription(
key="settings.intelligenceMode",
status_key="intelligenceMode",
name="Auto-Set Mode",
icon="mdi:thermometer-auto",
translation_key="auto_set",
),
HonSwitchEntityDescription(
key="settings.quickModeZ1",
status_key="quickModeZ1",
name="Super Freeze",
icon="mdi:snowflake-variant",
translation_key="super_freeze",
),
HonSwitchEntityDescription(
key="settings.quickModeZ2",
status_key="quickModeZ2",
name="Super Cool",
icon="mdi:snowflake",
translation_key="super_cool",
),
HonSwitchEntityDescription(
key="settings.holidayMode",
status_key="holidayMode",
name="Holiday Mode",
icon="mdi:palm-tree",
translation_key="holiday_mode",
),
),
}
@ -411,13 +422,14 @@ class HonSwitchEntity(HonEntity, SwitchEntity):
or "settings." in self.entity_description.key
):
setting = self._device.settings[self.entity_description.key]
setting.value = (
setting.max if isinstance(setting, HonParameterRange) else "1"
)
self.async_write_ha_state()
if "settings." in self.entity_description.key:
await self._device.commands["settings"].send()
await self.coordinator.async_refresh()
if not type(setting) == HonParameter:
setting.value = (
setting.max if isinstance(setting, HonParameterRange) else "1"
)
self.async_write_ha_state()
await self.coordinator.async_refresh()
if "settings." in self.entity_description.key:
await self._device.commands["settings"].send()
else:
await self._device.commands[self.entity_description.turn_on_key].send()
@ -427,13 +439,14 @@ class HonSwitchEntity(HonEntity, SwitchEntity):
or "settings." in self.entity_description.key
):
setting = self._device.settings[self.entity_description.key]
setting.value = (
setting.min if isinstance(setting, HonParameterRange) else "0"
)
self.async_write_ha_state()
if "settings." in self.entity_description.key:
await self._device.commands["settings"].send()
await self.coordinator.async_refresh()
if not type(setting) == HonParameter:
setting.value = (
setting.min if isinstance(setting, HonParameterRange) else "0"
)
self.async_write_ha_state()
if "settings." in self.entity_description.key:
await self._device.commands["settings"].send()
await self.coordinator.async_refresh()
else:
await self._device.commands[self.entity_description.turn_off_key].send()
@ -452,8 +465,11 @@ class HonSwitchEntity(HonEntity, SwitchEntity):
@callback
def _handle_coordinator_update(self):
if not self.entity_description.status_key:
if self.entity_description.status_key:
value = self._device.get(self.entity_description.status_key, "0")
elif self.entity_category == EntityCategory.CONFIG:
value = self._device.settings.get(self.entity_description.key, "0")
else:
return
value = self._device.get(self.entity_description.status_key, "0")
self._attr_state = value == "1"
self.async_write_ha_state()

View file

@ -225,7 +225,7 @@
"hqd_precious_cure": "Precious cure",
"hqd_quick_20": "Rychlý 20",
"hqd_quick_30": "Rychlý 30",
"hqd_quick_dry": "Rychlé sušení",
"hqd_quick_dry": "Rychlé sušení 30",
"hqd_quilt": "Deky",
"hqd_refresh": "Osvěžení",
"hqd_school_uniform": "Školní uniformy",
@ -409,6 +409,11 @@
"silent": "Noc",
"silent_care": "Silent Care",
"smart_ai": "Smart AI",
"smart_ai_pro": "Smart AI Pro",
"smart_ai_pro_soil": "Smart AI Pro",
"smart_ai_rapid": "Smart AI Rapid",
"smart_ai_rapid_soil": "Smart AI Rapid",
"smart_ai_soil": "Smart AI",
"special": "speciální",
"special_pw_prz": "speciální",
"steam": "Parní 75 °C",
@ -465,19 +470,20 @@
"programs_ov": {
"state": {
"bakery": "Těstoviny a pečivo",
"bakery_steam": "Chléb pečený v páře",
"bakery_steam": "Pára v troubě",
"bottom_heating": "Spodní ohřev",
"bottom_heating_fan": "Spodní ohřev + ventilátor",
"bread": "Chléb",
"bread_steam": "Pečivo pečené v páře",
"bread_steam": "Chléb pečený v páře",
"combi": "Combi",
"convection_fan": "Statický + ventilátor",
"convection_fan_turnspit": "Konvekce + ventilátor + rožeň",
"conventional": "Statický",
"conventional_turnspit": "Konvekční + rožeň",
"conventional_turnspit": "Konvekce + rožeň",
"defrost": "Rozmrazování",
"descaling": "Odstraňování vodního kamene",
"fish": "Ryby",
"fish_steam": "Ryby připravované v páře",
"fish_steam": "Ryby v páře",
"grill_cata": "Gril",
"grill_fan_cata": "Ventilátor grilu",
"grill_fan_pyro": "Gril + ventilátor",
@ -487,13 +493,13 @@
"iot_h20_clean": "h2O clean",
"leavening": "Kynutí",
"low_temp_cooking": "Příprava při nízkých teplotách",
"low_temp_cooking_fish": "Příprava ryb při nízkých teplotách",
"low_temp_cooking_fish_steam": "Příprava ryb v páře při nízkých teplotách",
"low_temp_cooking_meat": "Příprava masa při nízkých teplotách",
"low_temp_cooking_meat_steam": "Příprava masa v páře při nízkých teplotách",
"low_temp_cooking_fish": "Příprava při nízkých teplotách ryby",
"low_temp_cooking_fish_steam": "Příprava při nízkých teplotách ryby v páře",
"low_temp_cooking_meat": "Příprava při nízkých teplotách maso",
"low_temp_cooking_meat_steam": "Příprava při nízkých teplotách - dušené maso",
"low_temp_cooking_steam": "Příprava v páře při nízkých teplotách",
"meat": "Maso",
"meat_steam": "Maso připravované v páře",
"meat_steam": "Maso v páře",
"multi_level": "Víceúrovňové",
"paella": "Paella",
"pasta_and_bakery": "Těstoviny a pečivo",
@ -501,7 +507,7 @@
"pyrolysis": "Pyrolýza",
"pyrolysis_plus": "Pyrolýza +",
"red_meat": "Tmavé maso",
"red_meat_steam": "Červené maso připravované v páře",
"red_meat_steam": "Červené maso vařené v páře",
"regenerate": "Regenerace",
"soft_plus": "Soft +",
"super_grill": "Super gril",
@ -511,9 +517,9 @@
"vegetables": "Zelenina",
"vegetables_cata": "Zelenina",
"vegetables_pyro": "Zelenina",
"water_discharge": "Odtok vody",
"water_discharge": "Vypouštění vody",
"white_meat": "Bílé maso",
"white_meat_steam": "Bílé maso připravované v páře"
"white_meat_steam": "Bílé maso vařené v páře"
},
"name": "Program"
},
@ -570,7 +576,7 @@
"hqd_precious_cure": "Precious cure",
"hqd_quick_20": "Rychlý 20",
"hqd_quick_30": "Rychlý 30",
"hqd_quick_dry": "Rychlé sušení",
"hqd_quick_dry": "Rychlé sušení 30",
"hqd_quilt": "Deky",
"hqd_refresh": "Osvěžení",
"hqd_school_uniform": "Školní uniformy",
@ -1050,6 +1056,15 @@
},
"remaining_time": {
"name": "Zbývající čas"
},
"ref_zones": {
"state": {
"fridge": "Chladnička",
"freezer": "Mraznička",
"vtRoom1": "My Zone",
"[fridge|freezer]": "Chladnička & Mraznička"
},
"name": "Zóna"
}
},
"switch": {
@ -1093,7 +1108,7 @@
"name": "Trouba"
},
"prewash": {
"name": "Předpírka\r\r\r\r\r\r\n"
"name": "Předpírka\r\r\r\r\r\r\r\n"
},
"pause": {
"name": "Pozastavit"
@ -1157,6 +1172,9 @@
},
"super_freeze": {
"name": "Super Freeze"
},
"refrigerator": {
"name": "Chladnička"
}
},
"binary_sensor": {
@ -1227,7 +1245,7 @@
"name": "Zapnout"
},
"prewash": {
"name": "Předpírka\r\r\r\r\r\r\n"
"name": "Předpírka\r\r\r\r\r\r\r\n"
},
"acqua_plus": {
"name": "Aquaplus"
@ -1301,6 +1319,12 @@
"button": {
"induction_hob": {
"name": "Indukční varná deska"
},
"start_program": {
"name": "Program Zahájení"
},
"stop_program": {
"name": "Program Zastavit"
}
},
"climate": {

View file

@ -225,7 +225,7 @@
"hqd_precious_cure": "Precious Cure",
"hqd_quick_20": "Schnell 20",
"hqd_quick_30": "Schnell 30",
"hqd_quick_dry": "Schnell trocken",
"hqd_quick_dry": "Schnell trocken 30",
"hqd_quilt": "Steppdecken",
"hqd_refresh": "Auffrischen",
"hqd_school_uniform": "Schuluniform",
@ -409,6 +409,11 @@
"silent": "Nacht",
"silent_care": "Silent Care",
"smart_ai": "Smart AI",
"smart_ai_pro": "Smart AI Pro",
"smart_ai_pro_soil": "Smart AI Pro",
"smart_ai_rapid": "Smart AI Rapid",
"smart_ai_rapid_soil": "Smart AI Rapid",
"smart_ai_soil": "Smart AI",
"special": "spezial",
"special_pw_prz": "spezial",
"steam": "Dampf 75 °C",
@ -465,11 +470,12 @@
"programs_ov": {
"state": {
"bakery": "Teigwaren und Brot",
"bakery_steam": "Mit Dampf gebackenes Brot",
"bakery_steam": "Dampf im Backofen",
"bottom_heating": "Unterhitze",
"bottom_heating_fan": "Unterhitze + Umluft",
"bread": "Brot",
"bread_steam": "Mit Dampf gebackenes Gebäck",
"bread_steam": "Mit Dampf gebackenes Brot",
"combi": "Combi",
"convection_fan": "Umluft",
"convection_fan_turnspit": "Heißluft + Drehspieß",
"conventional": "Ober-Unterhitze",
@ -477,7 +483,7 @@
"defrost": "Auftauen",
"descaling": "Entkalkung",
"fish": "Fisch",
"fish_steam": "Dampfgegarter Fisch",
"fish_steam": "Gedünsteter Fisch",
"grill_cata": "Grill",
"grill_fan_cata": "Grill Umluft",
"grill_fan_pyro": "Grill + Umluft",
@ -488,12 +494,12 @@
"leavening": "Aufgehen",
"low_temp_cooking": "Garen bei niedriger Temperatur",
"low_temp_cooking_fish": "Garen bei niedriger Temperatur - Fisch",
"low_temp_cooking_fish_steam": "Dampfgaren bei niedriger Temperatur - Fisch",
"low_temp_cooking_fish_steam": "Niedertemperaturgaren - Gedünsteter Fisch",
"low_temp_cooking_meat": "Garen bei niedriger Temperatur - Fleisch",
"low_temp_cooking_meat_steam": "Niedertemperatur-Dampfgaren - Fleisch",
"low_temp_cooking_meat_steam": "Niedertemperaturgaren - Gedämpftes Fleisch",
"low_temp_cooking_steam": "Niedertemperatur-Dampfgaren",
"meat": "Fleisch",
"meat_steam": "Dampfgegartes Fleisch",
"meat_steam": "Fleisch Dampf",
"multi_level": "Multi-Level",
"paella": "Paella",
"pasta_and_bakery": "Teigwaren und Brot",
@ -501,8 +507,8 @@
"pyrolysis": "Pyrolyse",
"pyrolysis_plus": "Pyrolyse +",
"red_meat": "Rotes Fleisch",
"red_meat_steam": "Dampfgegartes rotes Fleisch",
"regenerate": "Regeneration",
"red_meat_steam": "Gedünstetes rotes Fleisch",
"regenerate": "Regenerieren",
"soft_plus": "Soft+",
"super_grill": "Super Grill",
"tailor_bake": "Tailor bake",
@ -513,7 +519,7 @@
"vegetables_pyro": "Gemüse",
"water_discharge": "Wasserabfluss",
"white_meat": "Weißes Fleisch",
"white_meat_steam": "Dampfgegartes weißes Fleisch"
"white_meat_steam": "Gedämpftes weißes Fleisch"
},
"name": "Programm"
},
@ -570,7 +576,7 @@
"hqd_precious_cure": "Precious Cure",
"hqd_quick_20": "Schnell 20",
"hqd_quick_30": "Schnell 30",
"hqd_quick_dry": "Schnell trocken",
"hqd_quick_dry": "Schnell trocken 30",
"hqd_quilt": "Steppdecken",
"hqd_refresh": "Auffrischen",
"hqd_school_uniform": "Schuluniform",
@ -1050,6 +1056,15 @@
},
"remaining_time": {
"name": "Verbleibende Zeit"
},
"ref_zones": {
"state": {
"fridge": "Kühlschrank",
"freezer": "Gefrierschrank",
"vtRoom1": "My Zone",
"[fridge|freezer]": "Kühlschrank & Gefrierschrank"
},
"name": "Zone"
}
},
"switch": {
@ -1157,6 +1172,9 @@
},
"super_freeze": {
"name": "Super Freeze"
},
"refrigerator": {
"name": "Kühlschrank"
}
},
"binary_sensor": {
@ -1301,6 +1319,12 @@
"button": {
"induction_hob": {
"name": "Induktionskochfeld"
},
"start_program": {
"name": "Programm Start"
},
"stop_program": {
"name": "Programm Stopp"
}
},
"climate": {

View file

@ -225,7 +225,7 @@
"hqd_precious_cure": "Precious cure",
"hqd_quick_20": "Γρήγορα 20",
"hqd_quick_30": "Γρήγορα 30",
"hqd_quick_dry": "Γρήγορο στέγνωμα",
"hqd_quick_dry": "Γρήγορο στέγνωμα 30",
"hqd_quilt": "Παπλώματα",
"hqd_refresh": "Φρεσκάρισμα",
"hqd_school_uniform": "Σχολική στολή",
@ -409,6 +409,11 @@
"silent": "Νύχτα",
"silent_care": "Silent Care",
"smart_ai": "Smart AI",
"smart_ai_pro": "Smart AI Pro",
"smart_ai_pro_soil": "Smart AI Pro",
"smart_ai_rapid": "Smart AI Rapid",
"smart_ai_rapid_soil": "Smart AI Rapid",
"smart_ai_soil": "Smart AI",
"special": "σπεσιαλ",
"special_pw_prz": "σπεσιαλ",
"steam": "ατμος 75°C",
@ -465,11 +470,12 @@
"programs_ov": {
"state": {
"bakery": "Ζυμαρικά και αρτοποιήματα",
"bakery_steam": "Ψωμί ατμού",
"bakery_steam": "Ατμός φούρνου",
"bottom_heating": "Κάτω στοιχείο",
"bottom_heating_fan": "Κάτω στοιχείο + ανεμιστήρας",
"bread": "Ψωμί",
"bread_steam": "Αρτοσκευάσματα ατμού",
"bread_steam": "Ψωμί ατμού",
"combi": "Combi",
"convection_fan": "Θερμοσ αερασ",
"convection_fan_turnspit": "Θερμός αέρας + Ανεμιστήρας + Σούβλα",
"conventional": "Ανω - κατω θερμανση",
@ -477,7 +483,7 @@
"defrost": "Απόψυξη",
"descaling": "Αφαλάτωση",
"fish": "Ψάρια",
"fish_steam": "Ψάρι στον ατμό",
"fish_steam": "Ψάρια στον ατμό",
"grill_cata": "Γκριλ",
"grill_fan_cata": "Ανεμιστήρας γκριλ",
"grill_fan_pyro": "Γκριλ + ανεμιστήρας",
@ -488,9 +494,9 @@
"leavening": "Ζυμωση",
"low_temp_cooking": "Μαγείρεμα σε χαμηλή θερμοκρασία",
"low_temp_cooking_fish": "Μαγείρεμα σε χαμηλή θερμοκρασία - Ψάρι",
"low_temp_cooking_fish_steam": "Μαγείρεμα με ατμό σε χαμηλή θερμοκρασία - Ψάρι",
"low_temp_cooking_fish_steam": "Μαγείρεμα σε χαμηλή θερμοκρασία - Ψάρια στον ατμό",
"low_temp_cooking_meat": "Μαγείρεμα σε χαμηλή θερμοκρασία - Κρέας",
"low_temp_cooking_meat_steam": "Μαγείρεμα με ατμό σε χαμηλή θερμοκρασία - Κρέας",
"low_temp_cooking_meat_steam": "Μαγείρεμα σε χαμηλή θερμοκρασία - Κρέας στον ατμό",
"low_temp_cooking_steam": "Μαγείρεμα με ατμό σε χαμηλή θερμοκρασία",
"meat": "Κρέας",
"meat_steam": "Κρέας στον ατμό",
@ -511,7 +517,7 @@
"vegetables": "Λαχανικά",
"vegetables_cata": "Λαχανικά",
"vegetables_pyro": "Λαχανικά",
"water_discharge": "Αποστράγγιση νερού",
"water_discharge": "Απόρριψη νερού",
"white_meat": "Λευκό κρέας",
"white_meat_steam": "Λευκό κρέας στον ατμό"
},
@ -570,7 +576,7 @@
"hqd_precious_cure": "Precious cure",
"hqd_quick_20": "Γρήγορα 20",
"hqd_quick_30": "Γρήγορα 30",
"hqd_quick_dry": "Γρήγορο στέγνωμα",
"hqd_quick_dry": "Γρήγορο στέγνωμα 30",
"hqd_quilt": "Παπλώματα",
"hqd_refresh": "Φρεσκάρισμα",
"hqd_school_uniform": "Σχολική στολή",
@ -1050,6 +1056,15 @@
},
"remaining_time": {
"name": "Χρόνος που απομένει"
},
"ref_zones": {
"state": {
"fridge": "Ψυγείο",
"freezer": "Καταψύκτης",
"vtRoom1": "My Zone",
"[fridge|freezer]": "Ψυγείο & Καταψύκτης"
},
"name": "Ζώνη"
}
},
"switch": {
@ -1157,6 +1172,9 @@
},
"super_freeze": {
"name": "Super Freeze"
},
"refrigerator": {
"name": "Ψυγείο"
}
},
"binary_sensor": {
@ -1206,7 +1224,7 @@
"name": "Τηγάνι"
},
"remote_control": {
"name": "Τηλεχειριστήριο"
"name": "Daljinsko upravljanje"
},
"rinse_aid": {
"name": "Επίπεδο λαμπρυντικού"
@ -1301,6 +1319,12 @@
"button": {
"induction_hob": {
"name": "Επαγωγική εστία"
},
"start_program": {
"name": "Πρόγραμμα Εκκίνηση"
},
"stop_program": {
"name": "Πρόγραμμα Διακοπή"
}
},
"climate": {

View file

@ -263,7 +263,7 @@
"hqd_bed_sheets": "Bed Sheets",
"hqd_bulky": "Bulky Items",
"hqd_casual": "Casual",
"hqd_cold_wind_30": "Cool Breeze 30 minutes",
"hqd_cold_wind_30": "Cool Breeze 30m",
"hqd_cold_wind_timing": "Cool Breeze ",
"hqd_cotton": "Cotton",
"hqd_curtain": "Curtains",
@ -282,9 +282,9 @@
"hqd_night_dry": "Overnight drying",
"hqd_outdoor": "Outdoor",
"hqd_precious_cure": "Precious Cure",
"hqd_quick_20": "Quick 20",
"hqd_quick_30": "Quick 30",
"hqd_quick_dry": "Quick dry",
"hqd_quick_20": "Quick 20m",
"hqd_quick_30": "Quick 30m",
"hqd_quick_dry": "Quick dry (30 min)",
"hqd_quilt": "Quilts",
"hqd_refresh": "Refresh",
"hqd_school_uniform": "School Uniform",
@ -322,7 +322,7 @@
"iot_dry_lingerie": "Lingerie",
"iot_dry_mixed": "Mixed",
"iot_dry_playsuits": "Playsuits",
"iot_dry_rapid_30": "Rapid 30",
"iot_dry_rapid_30": "Rapid 30m",
"iot_dry_rapid_59": "Rapid 59'",
"iot_dry_refresh": "Refresh",
"iot_dry_regenerates_waterproof": "Regenerates Waterproof",
@ -485,6 +485,9 @@
},
"super_freeze": {
"name": "Super Freeze"
},
"refrigerator": {
"name": "Refrigerator"
}
},
"select": {
@ -508,9 +511,9 @@
"59_min": "Rapid 59'",
"auto_care": "Auto Care",
"auto_care_soil": "Auto Care",
"auto_hygiene": "Auto Hygiene",
"auto_plus": "AutoPlus",
"auto_rapid": "Auto Rapid",
"auto_plus_soil": "Auto Plus Soil",
"auto_rapid_soil": "Auto rapid Soil",
"auto_sensor": "Auto Sensor",
"auto_sensor_soil": "Auto Sensor",
"auto_universal": "Auto Universal 50 - 60°C",
@ -554,7 +557,7 @@
"iot_eco_bldc": "Eco 45°C",
"iot_eco_synch": "Eco 45°C",
"iot_extra_hygiene": "Extra Hygiene",
"iot_fairy_quick_cycle": "Fairy Short",
"iot_fairy_quick_cycle": "Fairy Quick",
"iot_happy_hour": "Happy Hour",
"iot_jar_quick_cycle": "Jar Quick",
"iot_party": "Party",
@ -593,7 +596,10 @@
"silent_care": "Silent Care",
"smart_ai": "Smart AI",
"smart_ai_pro": "Smart AI Pro",
"smart_ai_pro_soil": "Smart AI Pro",
"smart_ai_rapid": "Smart AI Rapid",
"smart_ai_rapid_soil": "Smart AI Rapid",
"smart_ai_soil": "Smart AI",
"special": "Special",
"special_pw_prz": "Special",
"steam": "Steam 75°C",
@ -650,21 +656,21 @@
},
"programs_ov": {
"state": {
"bakery": "Pasta and Pastries",
"bakery_steam": "Steam-baked bread",
"bakery": "Pasta and Bakery",
"bakery_steam": "Steam oven",
"bottom_heating": "Bottom Heating",
"bottom_heating_fan": "Bottom Heating + Fan",
"bread": "Bread",
"bread_steam": "Steam-baked pastries",
"bread_steam": "Steam baked bread",
"combi": "Combi",
"convection_fan": "Convection + Fan",
"convection_fan_turnspit": "Convection + Fan + Turnspit",
"conventional": "Conventional",
"conventional_turnspit": "Convection + Turnspit",
"defrost": "Defrost",
"defrost": "Defrosting",
"descaling": "Descaling",
"fish": "Fish",
"fish_steam": "Steam-cooked fish",
"fish_steam": "Steamed fish",
"grill_cata": "Grill",
"grill_fan_cata": "Grill fan",
"grill_fan_pyro": "Grill + Fan",
@ -673,16 +679,15 @@
"iot_bread": "Bread",
"iot_h20_clean": "h2O clean",
"leavening": "Leavening",
"light_fan": "Light Fan",
"light_fan\n": "Light Fan",
"low_temp_cooking": "Low Temperature Cooking",
"low_temp_cooking_fish": "Low Temperature Cooking - Fish",
"low_temp_cooking_fish_steam": "Low Temperature Steam Cooking - Fish",
"low_temp_cooking_fish_steam": "Low Temperature Cooking - Steamed fish",
"low_temp_cooking_meat": "Low Temperature Cooking - Meat",
"low_temp_cooking_meat_steam": "Low Temperature Steam Cooking - Meat",
"low_temp_cooking_meat_steam": "Low Temperature Cooking - Steamed meat",
"low_temp_cooking_steam": "Low Temperature Steam Cooking",
"meat": "Meat",
"meat_steam": "Steam-cooked meat",
"meat_steam": "Steamed meat",
"multi_level": "Multi-Level",
"paella": "Paella",
"pasta_and_bakery": "Pasta and Bakery",
@ -690,8 +695,8 @@
"pyrolysis": "Pyrolysis",
"pyrolysis_plus": "Pyrolysis +",
"red_meat": "Red Meat",
"red_meat_steam": "Steam-cooked red meat",
"regenerate": "Regeneration",
"red_meat_steam": "Steamed red meat",
"regenerate": "Regenerate",
"soft_plus": "Soft+",
"super_grill": "Super Grill",
"tailor_bake": "Tailor bake",
@ -700,9 +705,9 @@
"vegetables": "Vegetables",
"vegetables_cata": "Vegetables",
"vegetables_pyro": "Vegetables",
"water_discharge": "Water Drain",
"water_discharge": "Water Discharge",
"white_meat": "White Meat",
"white_meat_steam": "Steam-cooked white meat"
"white_meat_steam": "Steamed white meat"
},
"name": "Program"
},
@ -738,7 +743,7 @@
"hqd_bed_sheets": "Bed Sheets",
"hqd_bulky": "Bulky Items",
"hqd_casual": "Casual",
"hqd_cold_wind_30": "Cool Breeze 30 minutes",
"hqd_cold_wind_30": "Cool Breeze 30m",
"hqd_cold_wind_timing": "Cool Breeze ",
"hqd_cotton": "Cotton",
"hqd_curtain": "Curtains",
@ -757,9 +762,9 @@
"hqd_night_dry": "Overnight drying",
"hqd_outdoor": "Outdoor",
"hqd_precious_cure": "Precious Cure",
"hqd_quick_20": "Quick 20",
"hqd_quick_30": "Quick 30",
"hqd_quick_dry": "Quick dry",
"hqd_quick_20": "Quick 20m",
"hqd_quick_30": "Quick 30m",
"hqd_quick_dry": "Quick dry (30 min)",
"hqd_quilt": "Quilts",
"hqd_refresh": "Refresh",
"hqd_school_uniform": "School Uniform",
@ -797,7 +802,7 @@
"iot_dry_lingerie": "Lingerie",
"iot_dry_mixed": "Mixed",
"iot_dry_playsuits": "Playsuits",
"iot_dry_rapid_30": "Rapid 30",
"iot_dry_rapid_30": "Rapid 30m",
"iot_dry_rapid_59": "Rapid 59'",
"iot_dry_refresh": "Refresh",
"iot_dry_regenerates_waterproof": "Regenerates Waterproof",
@ -856,7 +861,7 @@
"all_in_one_59": "All in One 59'",
"all_in_one_59_steam": "Active Wash + Steam",
"autocare": "Autocare",
"autoclean": "Drum Cleaning",
"autoclean": "Drum cleaning and descaling ",
"baby_60": "All Baby 60°C",
"care_14": "Rapid Care 14'",
"care_30": "Rapid Care 30'",
@ -1225,6 +1230,15 @@
},
"remaining_time": {
"name": "Time remaining"
},
"ref_zones": {
"state": {
"fridge": "Fridge",
"freezer": "Freezer",
"vtRoom1": "My Zone",
"[fridge|freezer]": "Fridge & Freezer"
},
"name": "Zone"
}
},
"binary_sensor": {
@ -1369,6 +1383,12 @@
"button": {
"induction_hob": {
"name": "Induction Hob"
},
"start_program": {
"name": "Program Start"
},
"stop_program": {
"name": "Program Stop"
}
},
"climate": {

View file

@ -225,7 +225,7 @@
"hqd_precious_cure": "Precious cure",
"hqd_quick_20": "Rápido 20",
"hqd_quick_30": "Rápido 30",
"hqd_quick_dry": "Secado rápido",
"hqd_quick_dry": "Secado rápido 30",
"hqd_quilt": "Colchas",
"hqd_refresh": "Refrescar",
"hqd_school_uniform": "Uniformes escolares",
@ -409,6 +409,11 @@
"silent": "Noche",
"silent_care": "Silent Care",
"smart_ai": "Smart AI",
"smart_ai_pro": "Smart AI Pro",
"smart_ai_pro_soil": "Smart AI Pro",
"smart_ai_rapid": "Smart AI Rapid",
"smart_ai_rapid_soil": "Smart AI Rapid",
"smart_ai_soil": "Smart AI",
"special": "Especial",
"special_pw_prz": "Especial",
"steam": "Vapor 75 °C",
@ -465,15 +470,16 @@
"programs_ov": {
"state": {
"bakery": "Pasta y Panadería",
"bakery_steam": "Pan al vapor",
"bakery_steam": "Oven steam",
"bottom_heating": "Calentamiento Inferior",
"bottom_heating_fan": "Calentamiento Inferior + Ventilador",
"bread": "Pan",
"bread_steam": "Bollería al vapor",
"bread_steam": "Pan al vapor",
"combi": "Combi",
"convection_fan": "Convección + Ventilador",
"convection_fan_turnspit": "Convección + Ventilador + Rustepollos",
"convection_fan_turnspit": "Asador giratorio convencional ventilada",
"conventional": "Convección",
"conventional_turnspit": "Convección + Rustepollos",
"conventional_turnspit": "Asador giratorio convencional",
"defrost": "Descongelación",
"descaling": "Descalcificación",
"fish": "Pescado",
@ -487,13 +493,13 @@
"iot_h20_clean": "h2O clean",
"leavening": "Fermentación",
"low_temp_cooking": "Cocción a baja temperatura",
"low_temp_cooking_fish": "Cocción a baja temperatura - Pescado",
"low_temp_cooking_fish_steam": "Cocción al vapor a baja temperatura - Pescado",
"low_temp_cooking_meat": "Cocción a baja temperatura - Carne",
"low_temp_cooking_meat_steam": "Cocción al vapor a baja temperatura - Carne",
"low_temp_cooking_steam": "Cocción al vapor a baja temperatura",
"low_temp_cooking_fish": "Cocción a baja temperatura Pescado",
"low_temp_cooking_fish_steam": "Cocción a baja temperatura Pescado",
"low_temp_cooking_meat": "Cocción a baja temperatura Carne",
"low_temp_cooking_meat_steam": "Cocción a baja temperatura Carne al vapor",
"low_temp_cooking_steam": "Cocción a baja temperatura al vapor",
"meat": "Carne",
"meat_steam": "Carne al vapor",
"meat_steam": "Meat steam",
"multi_level": "Múltiples niveles",
"paella": "Paella",
"pasta_and_bakery": "Pasta y Panadería",
@ -502,7 +508,7 @@
"pyrolysis_plus": "Pirólisis +",
"red_meat": "Carne roja",
"red_meat_steam": "Carne roja al vapor",
"regenerate": "Regeneración",
"regenerate": "Regenerar",
"soft_plus": "Soft+",
"super_grill": "Super Grill",
"tailor_bake": "Tailor bake",
@ -511,7 +517,7 @@
"vegetables": "Verduras",
"vegetables_cata": "Verduras",
"vegetables_pyro": "Verdura",
"water_discharge": "Drenaje del agua",
"water_discharge": "Descarga de agua",
"white_meat": "Carne blanca",
"white_meat_steam": "Carne blanca al vapor"
},
@ -570,7 +576,7 @@
"hqd_precious_cure": "Precious cure",
"hqd_quick_20": "Rápido 20",
"hqd_quick_30": "Rápido 30",
"hqd_quick_dry": "Secado rápido",
"hqd_quick_dry": "Secado rápido 30",
"hqd_quilt": "Colchas",
"hqd_refresh": "Refrescar",
"hqd_school_uniform": "Uniformes escolares",
@ -1050,6 +1056,15 @@
},
"remaining_time": {
"name": "Tiempo restante"
},
"ref_zones": {
"state": {
"fridge": "Frigorífico",
"freezer": "Congelador",
"vtRoom1": "My Zone",
"[fridge|freezer]": "Frigorífico & Congelador"
},
"name": "Zona"
}
},
"switch": {
@ -1157,6 +1172,9 @@
},
"super_freeze": {
"name": "Super Freeze"
},
"refrigerator": {
"name": "Frigorífico"
}
},
"binary_sensor": {
@ -1206,7 +1224,7 @@
"name": "Sartén"
},
"remote_control": {
"name": "Control remoto"
"name": "Τηλεχειριστήριο"
},
"rinse_aid": {
"name": "Nivel del agente de enjuague"
@ -1301,6 +1319,12 @@
"button": {
"induction_hob": {
"name": "Placa de inducción"
},
"start_program": {
"name": "Programa Inicio"
},
"stop_program": {
"name": "Programa Detener"
}
},
"climate": {

View file

@ -225,7 +225,7 @@
"hqd_precious_cure": "Precious cure",
"hqd_quick_20": "Rapide 20",
"hqd_quick_30": "Rapide 30",
"hqd_quick_dry": "Séchage rapide",
"hqd_quick_dry": "Séchage rapide 30",
"hqd_quilt": "Couvertures",
"hqd_refresh": "Rafraîchissement",
"hqd_school_uniform": "Uniforme scolaire",
@ -409,6 +409,11 @@
"silent": "Nuit",
"silent_care": "Silent Care",
"smart_ai": "Smart AI",
"smart_ai_pro": "Smart AI Pro",
"smart_ai_pro_soil": "Smart AI Pro",
"smart_ai_rapid": "Smart AI Rapid",
"smart_ai_rapid_soil": "Smart AI Rapid",
"smart_ai_soil": "Smart AI",
"special": "spécial",
"special_pw_prz": "spécial",
"steam": "Vapeur 75 °C",
@ -465,19 +470,20 @@
"programs_ov": {
"state": {
"bakery": "Pâtes et pains",
"bakery_steam": "Pain cuit à la vapeur",
"bakery_steam": "Four à vapeur",
"bottom_heating": "Sole",
"bottom_heating_fan": "Sole brassée",
"bread": "Pain",
"bread_steam": "Pâtisseries cuites à la vapeur",
"bread_steam": "Pain àla vapeur",
"combi": "Combi",
"convection_fan": "Chaleur tournante",
"convection_fan_turnspit": "Convection + Ventilateur + Tournebroche",
"convection_fan_turnspit": "Tournebrocheà convection ventilée",
"conventional": "Convection naturelle",
"conventional_turnspit": "Convection + Tournebroche",
"conventional_turnspit": "Tournebroche conventionnel",
"defrost": "Décongélation",
"descaling": "Détartrage",
"fish": "Poisson",
"fish_steam": "Poisson cuit à la vapeur",
"fish_steam": "Poisson à la vapeur",
"grill_cata": "Gril",
"grill_fan_cata": "Turbogril",
"grill_fan_pyro": "Turbogril",
@ -487,13 +493,13 @@
"iot_h20_clean": "h2O clean",
"leavening": "Étuve",
"low_temp_cooking": "Cuisson à basse température",
"low_temp_cooking_fish": "Cuisson à basse température - Poisson",
"low_temp_cooking_fish_steam": "Cuisson à la vapeur à basse température - Poisson",
"low_temp_cooking_meat": "Cuisson à basse température - Viande",
"low_temp_cooking_meat_steam": "Cuisson à la vapeur à basse température - Viande",
"low_temp_cooking_steam": "Cuisson à la vapeur à basse température",
"low_temp_cooking_fish": "Cuisson à basse température Poisson",
"low_temp_cooking_fish_steam": "Cuisson à basse température Poisson à la vapeur",
"low_temp_cooking_meat": "Cuisson à basse température Viande",
"low_temp_cooking_meat_steam": "Cuisson à basse température Viande à la vapeur",
"low_temp_cooking_steam": "Cuisson à basse température à la vapeur",
"meat": "Viande",
"meat_steam": "Viande cuite à la vapeur",
"meat_steam": "Viande à la vapeur",
"multi_level": "Chaleur pulsée",
"paella": "Paella",
"pasta_and_bakery": "Pâtes et pains",
@ -501,8 +507,8 @@
"pyrolysis": "Pyrolyse",
"pyrolysis_plus": "Pyrolyse +",
"red_meat": "Viande rouge",
"red_meat_steam": "Viande rouge cuite à la vapeur",
"regenerate": "Régénération",
"red_meat_steam": "Viande rouge à la vapeur",
"regenerate": "Régénérer",
"soft_plus": "Soft+",
"super_grill": "Super Gril",
"tailor_bake": "Tailor bake",
@ -511,9 +517,9 @@
"vegetables": "Légumes",
"vegetables_cata": "Légumes",
"vegetables_pyro": "Légumes",
"water_discharge": "Vidange de leau",
"water_discharge": "Décharge d'eau",
"white_meat": "Viande blanche",
"white_meat_steam": "Viande blanche cuite à la vapeur"
"white_meat_steam": "Viande blanche à la vapeur"
},
"name": "Programme"
},
@ -570,7 +576,7 @@
"hqd_precious_cure": "Precious cure",
"hqd_quick_20": "Rapide 20",
"hqd_quick_30": "Rapide 30",
"hqd_quick_dry": "Séchage rapide",
"hqd_quick_dry": "Séchage rapide 30",
"hqd_quilt": "Couvertures",
"hqd_refresh": "Rafraîchissement",
"hqd_school_uniform": "Uniforme scolaire",
@ -1050,6 +1056,15 @@
},
"remaining_time": {
"name": "Temps restant"
},
"ref_zones": {
"state": {
"fridge": "Réfrigérateur",
"freezer": "Congélateur",
"vtRoom1": "My Zone",
"[fridge|freezer]": "Réfrigérateur & Congélateur"
},
"name": "Zone"
}
},
"switch": {
@ -1157,6 +1172,9 @@
},
"super_freeze": {
"name": "Super Freeze"
},
"refrigerator": {
"name": "Réfrigérateur"
}
},
"binary_sensor": {
@ -1301,6 +1319,12 @@
"button": {
"induction_hob": {
"name": "Table de cuisson à induction"
},
"start_program": {
"name": "Programme Démarrer"
},
"stop_program": {
"name": "Programme Arrêter"
}
},
"climate": {

View file

@ -211,7 +211,8 @@
"iot_fairy_quick_cycle": "Fairy Quick",
"iot_jar_quick_cycle": "Jar Quick",
"iot_yes_quick_cycle": "Yes Quick",
"smart_ai": "Smart AI"
"smart_ai": "Smart AI",
"smart_ai_soil": "Smart AI"
},
"name": "Program"
},
@ -503,6 +504,15 @@
},
"remaining_time": {
"name": "זמן שנותר"
},
"ref_zones": {
"state": {
"fridge": "Fridge",
"freezer": "Freezer",
"vtRoom1": "My Zone",
"[fridge|freezer]": "Fridge & Freezer"
},
"name": "Zone"
}
},
"switch": {
@ -610,6 +620,9 @@
},
"super_freeze": {
"name": "Super Freeze"
},
"refrigerator": {
"name": "Refrigerator"
}
},
"binary_sensor": {
@ -754,6 +767,12 @@
"button": {
"induction_hob": {
"name": "Induction Hob"
},
"start_program": {
"name": "Program Start"
},
"stop_program": {
"name": "Program Stop"
}
},
"climate": {

View file

@ -225,7 +225,7 @@
"hqd_precious_cure": "Precious Cure",
"hqd_quick_20": "Brzo 20",
"hqd_quick_30": "Brzo 30",
"hqd_quick_dry": "Brzo sušenje",
"hqd_quick_dry": "Brzo sušenje 30",
"hqd_quilt": "Popluni",
"hqd_refresh": "Protiv neugodnih mirisa",
"hqd_school_uniform": "Školska uniforma",
@ -409,6 +409,11 @@
"silent": "Noć",
"silent_care": "Silent Care",
"smart_ai": "Smart AI",
"smart_ai_pro": "Smart AI Pro",
"smart_ai_pro_soil": "Smart AI Pro",
"smart_ai_rapid": "Smart AI Rapid",
"smart_ai_rapid_soil": "Smart AI Rapid",
"smart_ai_soil": "Smart AI",
"special": "Posebno",
"special_pw_prz": "Posebno",
"steam": "Steam (Para) 75 °C",
@ -465,11 +470,12 @@
"programs_ov": {
"state": {
"bakery": "Tjestenina i tijesta",
"bakery_steam": "Kruh pečen na pari",
"bakery_steam": "Para u pećnici",
"bottom_heating": "Donji grijač",
"bottom_heating_fan": "Donji grijač + Ventilator",
"bread": "Kruh",
"bread_steam": "Peciva pečena na pari",
"bread_steam": "Kruh pečen na pari",
"combi": "Combi",
"convection_fan": "Konvekcija + Ventilator",
"convection_fan_turnspit": "Konvekcija + ventilator + ražanj",
"conventional": "Konvekcijska",
@ -477,7 +483,7 @@
"defrost": "Odmrzavanje",
"descaling": "Uklanjanje kamenca",
"fish": "Riba",
"fish_steam": "Riba kuhana na pari",
"fish_steam": "Riba na pari",
"grill_cata": "Pečenje",
"grill_fan_cata": "Ventilator za pečenje",
"grill_fan_pyro": "Grijač + ventilator",
@ -488,12 +494,12 @@
"leavening": "Dizanje tijesta",
"low_temp_cooking": "Kuhanje na niskoj temperaturi",
"low_temp_cooking_fish": "Kuhanje na niskoj temperaturi - riba",
"low_temp_cooking_fish_steam": "Kuhanje na pari i na niskoj temperaturi - riba",
"low_temp_cooking_fish_steam": "Kuhanje na niskoj temperaturi - riba na pari",
"low_temp_cooking_meat": "Kuhanje na niskoj temperaturi - meso",
"low_temp_cooking_meat_steam": "Kuhanje na pari i na niskoj temperaturi - meso",
"low_temp_cooking_meat_steam": "Kuhanje na niskoj temperaturi - meso na pari",
"low_temp_cooking_steam": "Kuhanje na pari i na niskoj temperaturi",
"meat": "Meso",
"meat_steam": "Meso kuhano na pari",
"meat_steam": "Meso na pari",
"multi_level": "Više razina",
"paella": "Paella",
"pasta_and_bakery": "Tjestenina i tijesta",
@ -501,7 +507,7 @@
"pyrolysis": "Piroliza",
"pyrolysis_plus": "Piroliza +",
"red_meat": "Crveno meso",
"red_meat_steam": "Crveno meso kuhano na pari",
"red_meat_steam": "Kuhano crveno meso",
"regenerate": "Regeneracija",
"soft_plus": "Mekano+",
"super_grill": "Super roštilj",
@ -511,9 +517,9 @@
"vegetables": "Povrće",
"vegetables_cata": "Povrće",
"vegetables_pyro": "Povrće",
"water_discharge": "Odvod vode",
"water_discharge": "Ispuštanje vode",
"white_meat": "Bijelo meso",
"white_meat_steam": "Bijelo meso kuhano na pari"
"white_meat_steam": "Kuhano bijelo meso na pari"
},
"name": "Program"
},
@ -570,7 +576,7 @@
"hqd_precious_cure": "Precious Cure",
"hqd_quick_20": "Brzo 20",
"hqd_quick_30": "Brzo 30",
"hqd_quick_dry": "Brzo sušenje",
"hqd_quick_dry": "Brzo sušenje 30",
"hqd_quilt": "Popluni",
"hqd_refresh": "Protiv neugodnih mirisa",
"hqd_school_uniform": "Školska uniforma",
@ -1050,6 +1056,15 @@
},
"remaining_time": {
"name": "Preostalo vrijeme"
},
"ref_zones": {
"state": {
"fridge": "Hladnjak",
"freezer": "Zamrzivač",
"vtRoom1": "My Zone",
"[fridge|freezer]": "Hladnjak & Zamrzivač"
},
"name": "Zona"
}
},
"switch": {
@ -1157,6 +1172,9 @@
},
"super_freeze": {
"name": "Super Freeze"
},
"refrigerator": {
"name": "Hladnjak"
}
},
"binary_sensor": {
@ -1206,7 +1224,7 @@
"name": "Tava"
},
"remote_control": {
"name": "Upravljanje na daljinu"
"name": "Daljinski upravljač"
},
"rinse_aid": {
"name": "Razina sredstva za ispiranje"
@ -1301,6 +1319,12 @@
"button": {
"induction_hob": {
"name": "Indukcijska ploča za kuhanje"
},
"start_program": {
"name": "Program Početak"
},
"stop_program": {
"name": "Program Zaustavi"
}
},
"climate": {

View file

@ -256,7 +256,7 @@
"hqd_bed_sheets": "Lenzuola",
"hqd_bulky": "Vestiti voluminosi",
"hqd_casual": "Casual",
"hqd_cold_wind_30": "Brezza rinfrescante 30 minuti",
"hqd_cold_wind_30": "Brezza rinfrescante 30m",
"hqd_cold_wind_timing": "Brezza rinfrescante",
"hqd_cotton": "Cotone",
"hqd_curtain": "Tende",
@ -270,14 +270,14 @@
"hqd_i_refresh_pro": "I-Refresh Pro",
"hqd_jacket": "Giacche",
"hqd_jeans": "Jeans",
"hqd_luxury": "Vestiti preziosi",
"hqd_luxury": "Capi Pregiati",
"hqd_mix": "Misti",
"hqd_night_dry": "Asciugatura notturna",
"hqd_outdoor": "Outdoor",
"hqd_precious_cure": "Precious cure",
"hqd_quick_20": "Rapido 20",
"hqd_quick_30": "Rapido 30",
"hqd_quick_dry": "Asciugatura veloce",
"hqd_quick_20": "Rapido 20m",
"hqd_quick_30": "Rapido 30m",
"hqd_quick_dry": "Asciugatura veloce (30 min)",
"hqd_quilt": "Trapunte",
"hqd_refresh": "Refresh",
"hqd_school_uniform": "Uniforme scolastica",
@ -291,7 +291,7 @@
"hqd_underwear": "Intimo",
"hqd_warm_up": "Riscaldamento",
"hqd_wool": "Lana",
"hqd_working_suit": "Completo da lavoro",
"hqd_working_suit": "Abbigliamento da lavoro",
"hygiene": "Igiene",
"iot_checkup": "Check-Up",
"iot_dry_anti_mites": "Anti-Acari",
@ -315,7 +315,7 @@
"iot_dry_lingerie": "Lingerie",
"iot_dry_mixed": "Misti",
"iot_dry_playsuits": "Tutine",
"iot_dry_rapid_30": "Rapido 30",
"iot_dry_rapid_30": "Rapido 30m",
"iot_dry_rapid_59": "Rapido 59'.",
"iot_dry_refresh": "Rinfresca",
"iot_dry_regenerates_waterproof": "Rigenera Tessuti Impermeabili",
@ -461,6 +461,11 @@
"silent": "Notte",
"silent_care": "Silent Care",
"smart_ai": "Smart AI",
"smart_ai_pro": "Smart AI Pro",
"smart_ai_pro_soil": "Smart AI Pro",
"smart_ai_rapid": "Smart AI Rapid",
"smart_ai_rapid_soil": "Smart AI Rapid",
"smart_ai_soil": "Smart AI",
"special": "Speciale",
"special_pw_prz": "Speciale",
"steam": "Vapore 75°C",
@ -517,19 +522,20 @@
"programs_ov": {
"state": {
"bakery": "Pasta e Pasticceria",
"bakery_steam": "Pane a vapore",
"bakery_steam": "Vapore da forno",
"bottom_heating": "Resistenza Inferiore",
"bottom_heating_fan": "Resistenza Inferiore Ventilata",
"bread": "Pane",
"bread_steam": "Pasticceria a vapore",
"bread_steam": "Pane al vapore",
"combi": "Combi",
"convection_fan": "Cottura Ventilata",
"convection_fan_turnspit": "Girarrosto + statico ventilato",
"convection_fan_turnspit": "Girarrosto a convenzione ventilata",
"conventional": "Statico",
"conventional_turnspit": "Girarrosto + statico",
"conventional_turnspit": "Girarrosto a convenzione",
"defrost": "Decongelamento",
"descaling": "Disincrostazione",
"descaling": "Decalcificazione",
"fish": "Pesce",
"fish_steam": "Pesce a vapore",
"fish_steam": "Pesce al vapore",
"grill_cata": "Grill",
"grill_fan_cata": "Grill fan",
"grill_fan_pyro": "Grill Ventilato",
@ -539,13 +545,13 @@
"iot_h20_clean": "h2O clean",
"leavening": "Lievitazione",
"low_temp_cooking": "Cottura a bassa temperatura",
"low_temp_cooking_fish": "Cottura a bassa temperatura del pesce",
"low_temp_cooking_fish_steam": "Cottura a bassa temperatura del pesce a vapore",
"low_temp_cooking_meat": "Cottura a bassa temperatura della carne",
"low_temp_cooking_meat_steam": "Cottura a vapore a bassa temperatura di carne",
"low_temp_cooking_steam": "Cottura a vapore a bassa temperatura",
"low_temp_cooking_fish": "Cottura a bassa temperatura Pesce",
"low_temp_cooking_fish_steam": "Cottura a bassa temperatura Pesce al vapore",
"low_temp_cooking_meat": "Cottura a bassa temperatura Carne",
"low_temp_cooking_meat_steam": "Cottura a bassa temperatura Carne al vapore",
"low_temp_cooking_steam": "Cottura a bassa temperatura al vapore",
"meat": "Carne",
"meat_steam": "Carne a vapore",
"meat_steam": "Carne al vapore",
"multi_level": "Cottura Multilivello",
"paella": "Paella",
"pasta_and_bakery": "Pasta e Pasticceria",
@ -553,8 +559,8 @@
"pyrolysis": "Pirolisi",
"pyrolysis_plus": "Pirolisi +",
"red_meat": "Carne rossa",
"red_meat_steam": "Carne rossa a vapore",
"regenerate": "Rigenerazione",
"red_meat_steam": "Carne rossa al vapore",
"regenerate": "Rigenerare",
"soft_plus": "Soft+",
"super_grill": "Supergriglia",
"tailor_bake": "Tailor bake",
@ -563,9 +569,9 @@
"vegetables": "Verdure",
"vegetables_cata": "Verdure",
"vegetables_pyro": "Verdure",
"water_discharge": "Scarico d'acqua",
"white_meat": "Carne bianca",
"white_meat_steam": "Carne bianca a vapore"
"water_discharge": "Scarico dell'acqua",
"white_meat": "Carne Bianca",
"white_meat_steam": "Carne bianca al vapore"
},
"name": "Programma"
},
@ -601,7 +607,7 @@
"hqd_bed_sheets": "Lenzuola",
"hqd_bulky": "Vestiti voluminosi",
"hqd_casual": "Casual",
"hqd_cold_wind_30": "Brezza rinfrescante 30 minuti",
"hqd_cold_wind_30": "Brezza rinfrescante 30m",
"hqd_cold_wind_timing": "Brezza rinfrescante",
"hqd_cotton": "Cotone",
"hqd_curtain": "Tende",
@ -615,14 +621,14 @@
"hqd_i_refresh_pro": "I-Refresh Pro",
"hqd_jacket": "Giacche",
"hqd_jeans": "Jeans",
"hqd_luxury": "Vestiti preziosi",
"hqd_luxury": "Capi Pregiati",
"hqd_mix": "Misti",
"hqd_night_dry": "Asciugatura notturna",
"hqd_outdoor": "Outdoor",
"hqd_precious_cure": "Precious cure",
"hqd_quick_20": "Rapido 20",
"hqd_quick_30": "Rapido 30",
"hqd_quick_dry": "Asciugatura veloce",
"hqd_quick_20": "Rapido 20m",
"hqd_quick_30": "Rapido 30m",
"hqd_quick_dry": "Asciugatura veloce (30 min)",
"hqd_quilt": "Trapunte",
"hqd_refresh": "Refresh",
"hqd_school_uniform": "Uniforme scolastica",
@ -636,7 +642,7 @@
"hqd_underwear": "Intimo",
"hqd_warm_up": "Riscaldamento",
"hqd_wool": "Lana",
"hqd_working_suit": "Completo da lavoro",
"hqd_working_suit": "Abbigliamento da lavoro",
"hygiene": "Igiene",
"iot_checkup": "Check-Up",
"iot_dry_anti_mites": "Anti-Acari",
@ -660,7 +666,7 @@
"iot_dry_lingerie": "Lingerie",
"iot_dry_mixed": "Misti",
"iot_dry_playsuits": "Tutine",
"iot_dry_rapid_30": "Rapido 30",
"iot_dry_rapid_30": "Rapido 30m",
"iot_dry_rapid_59": "Rapido 59'.",
"iot_dry_refresh": "Rinfresca",
"iot_dry_regenerates_waterproof": "Rigenera Tessuti Impermeabili",
@ -1102,6 +1108,15 @@
},
"remaining_time": {
"name": "Tempo rimanente"
},
"ref_zones": {
"state": {
"fridge": "Frigorifero",
"freezer": "Congelatore",
"vtRoom1": "My Zone",
"[fridge|freezer]": "Frigorifero & Congelatore"
},
"name": "Zona"
}
},
"switch": {
@ -1209,6 +1224,9 @@
},
"super_freeze": {
"name": "Super Freeze"
},
"refrigerator": {
"name": "Frigo"
}
},
"binary_sensor": {
@ -1258,7 +1276,7 @@
"name": "Pentola"
},
"remote_control": {
"name": "Controllo remoto"
"name": "远程控制"
},
"rinse_aid": {
"name": "Livello Brillantante"
@ -1353,6 +1371,12 @@
"button": {
"induction_hob": {
"name": "Piano cottura a induzione"
},
"start_program": {
"name": "Programma Inizia"
},
"stop_program": {
"name": "Programma Stop"
}
},
"climate": {

View file

@ -225,7 +225,7 @@
"hqd_precious_cure": "Precious cure",
"hqd_quick_20": "Quick 20",
"hqd_quick_30": "Quick 30",
"hqd_quick_dry": "Quick dry",
"hqd_quick_dry": "Quick dry 30",
"hqd_quilt": "Quilts",
"hqd_refresh": "Opfrissen",
"hqd_school_uniform": "Schooluniform",
@ -409,6 +409,11 @@
"silent": "Nacht",
"silent_care": "Silent Care",
"smart_ai": "Smart AI",
"smart_ai_pro": "Smart AI Pro",
"smart_ai_pro_soil": "Smart AI Pro",
"smart_ai_rapid": "Smart AI Rapid",
"smart_ai_rapid_soil": "Smart AI Rapid",
"smart_ai_soil": "Smart AI",
"special": "speciaal",
"special_pw_prz": "speciaal",
"steam": "Stoom 75°C",
@ -465,11 +470,12 @@
"programs_ov": {
"state": {
"bakery": "Pasta en bakkersproducten",
"bakery_steam": "Stoomgebakken brood",
"bakery_steam": "Oven stomen",
"bottom_heating": "Bodemverwarming",
"bottom_heating_fan": "Bodemverwarming + Ventilator",
"bread": "Brood",
"bread_steam": "Stoomgebakken pasteien",
"bread_steam": "Stoomgebakken brood",
"combi": "Combi",
"convection_fan": "Met ventilator",
"convection_fan_turnspit": "Convectie + ventilator + draaispit",
"conventional": "Conventioneel",
@ -488,12 +494,12 @@
"leavening": "Gisting",
"low_temp_cooking": "Bereiding op lage temperatuur",
"low_temp_cooking_fish": "Bereiding op lage temperatuur Vis",
"low_temp_cooking_fish_steam": "Stomen bij lage temperatuur Vis",
"low_temp_cooking_fish_steam": "Bereiding op lage temperatuur Gestoomde vis",
"low_temp_cooking_meat": "Bereiding op lage temperatuur Vlees",
"low_temp_cooking_meat_steam": "Stomen bij lage temperatuur Vlees",
"low_temp_cooking_meat_steam": "Bereiding op lage temperatuur Gestoomd vlees",
"low_temp_cooking_steam": "Stomen bij lage temperatuur",
"meat": "Vlees",
"meat_steam": "Gestoomd vlees",
"meat_steam": "Vlees stomen",
"multi_level": "Multi-level",
"paella": "Paella",
"pasta_and_bakery": "Pasta en bakkersproducten",
@ -502,7 +508,7 @@
"pyrolysis_plus": "Pyrolyse +",
"red_meat": "Rood vlees",
"red_meat_steam": "Gestoomd rood vlees",
"regenerate": "Regeneratie",
"regenerate": "Regenereren",
"soft_plus": "Soft+",
"super_grill": "Super grill",
"tailor_bake": "Tailor bake",
@ -511,7 +517,7 @@
"vegetables": "Groenten",
"vegetables_cata": "Groenten",
"vegetables_pyro": "Groenten",
"water_discharge": "Waterafvoer",
"water_discharge": "Afvoer van water",
"white_meat": "Wit vlees",
"white_meat_steam": "Gestoomd wit vlees"
},
@ -570,7 +576,7 @@
"hqd_precious_cure": "Precious cure",
"hqd_quick_20": "Quick 20",
"hqd_quick_30": "Quick 30",
"hqd_quick_dry": "Quick dry",
"hqd_quick_dry": "Quick dry 30",
"hqd_quilt": "Quilts",
"hqd_refresh": "Opfrissen",
"hqd_school_uniform": "Schooluniform",
@ -1050,6 +1056,15 @@
},
"remaining_time": {
"name": "Resterende tijd"
},
"ref_zones": {
"state": {
"fridge": "Koelkast",
"freezer": "Vriezer",
"vtRoom1": "My Zone",
"[fridge|freezer]": "Koelkast & Vriezer"
},
"name": "Zone"
}
},
"switch": {
@ -1157,6 +1172,9 @@
},
"super_freeze": {
"name": "Super Freeze"
},
"refrigerator": {
"name": "Koelkast"
}
},
"binary_sensor": {
@ -1301,6 +1319,12 @@
"button": {
"induction_hob": {
"name": "Inductiekookplaat"
},
"start_program": {
"name": "Programma Start"
},
"stop_program": {
"name": "Programma Stoppen"
}
},
"climate": {

View file

@ -225,7 +225,7 @@
"hqd_precious_cure": "Precious cure",
"hqd_quick_20": "Szybkie 20",
"hqd_quick_30": "Szybkie 30",
"hqd_quick_dry": "Szybkoschnące",
"hqd_quick_dry": "Szybkoschnące 30",
"hqd_quilt": "Kołdry",
"hqd_refresh": "Odświeżanie",
"hqd_school_uniform": "Mundurek szkolny",
@ -409,6 +409,11 @@
"silent": "Nocny",
"silent_care": "Silent Care",
"smart_ai": "Smart AI",
"smart_ai_pro": "Smart AI Pro",
"smart_ai_pro_soil": "Smart AI Pro",
"smart_ai_rapid": "Smart AI Rapid",
"smart_ai_rapid_soil": "Smart AI Rapid",
"smart_ai_soil": "Smart AI",
"special": "specjalne",
"special_pw_prz": "specjalne",
"steam": "Para 75°C",
@ -465,11 +470,12 @@
"programs_ov": {
"state": {
"bakery": "Makaron i Piekarnia",
"bakery_steam": "Chleb pieczony na parze",
"bakery_steam": "Para z piekarnika",
"bottom_heating": "Grzanie dolne",
"bottom_heating_fan": "Grzanie Dolne + Termoobieg",
"bread": "Chleb",
"bread_steam": "Ciasteczka pieczone na parze",
"bread_steam": "Chleb pieczony na parze",
"combi": "Kombi",
"convection_fan": "Termoobieg",
"convection_fan_turnspit": "Termoobieg + Fan + Rożen",
"conventional": "Konwencjonalny",
@ -477,7 +483,7 @@
"defrost": "Rozmrażanie",
"descaling": "Odkamienianie",
"fish": "Ryby",
"fish_steam": "Ryba gotowana na parze",
"fish_steam": "Ryba na parze",
"grill_cata": "Grill",
"grill_fan_cata": "Grill + termoobieg",
"grill_fan_pyro": "Grill + termoobieg",
@ -488,12 +494,12 @@
"leavening": "Zaczyn",
"low_temp_cooking": "Pieczenie w niskiej temperaturze",
"low_temp_cooking_fish": "Pieczenie w niskiej temperaturze - ryby",
"low_temp_cooking_fish_steam": "Gotowanie na parze w niskiej temperaturze — ryby",
"low_temp_cooking_fish_steam": "Gotowanie w niskiej temperaturze - ryba gotowana na parze",
"low_temp_cooking_meat": "Pieczenie w niskiej temperaturze - mięso",
"low_temp_cooking_meat_steam": "Gotowanie na parze w niskiej temperaturze — mięso",
"low_temp_cooking_meat_steam": "Gotowanie w niskiej temperaturze — mięso gotowane na parze",
"low_temp_cooking_steam": "Gotowanie na parze w niskiej temperaturze",
"meat": "Mięso",
"meat_steam": "Mięso gotowane na parze",
"meat_steam": "Mięso na parze",
"multi_level": "Wielopoziomowo",
"paella": "Paella",
"pasta_and_bakery": "Makaron i Piekarnia",
@ -501,8 +507,8 @@
"pyrolysis": "Pyroliza",
"pyrolysis_plus": "Pyroliza +",
"red_meat": "Czerwone mięso",
"red_meat_steam": "Czerwone mięso gotowane na parze",
"regenerate": "Regeneracja",
"red_meat_steam": "Czerwone mięso na parze",
"regenerate": "Podgrzewanie",
"soft_plus": "Soft+",
"super_grill": "Super Grill",
"tailor_bake": "Tailor bake",
@ -511,7 +517,7 @@
"vegetables": "Warzywa",
"vegetables_cata": "Warzywa",
"vegetables_pyro": "Warzywa",
"water_discharge": "Odpływ wody",
"water_discharge": "Odprowadzanie wody",
"white_meat": "Białe mięso",
"white_meat_steam": "Białe mięso gotowane na parze"
},
@ -570,7 +576,7 @@
"hqd_precious_cure": "Precious cure",
"hqd_quick_20": "Szybkie 20",
"hqd_quick_30": "Szybkie 30",
"hqd_quick_dry": "Szybkoschnące",
"hqd_quick_dry": "Szybkoschnące 30",
"hqd_quilt": "Kołdry",
"hqd_refresh": "Odświeżanie",
"hqd_school_uniform": "Mundurek szkolny",
@ -1050,6 +1056,15 @@
},
"remaining_time": {
"name": "Pozostały czas"
},
"ref_zones": {
"state": {
"fridge": "Lodówka",
"freezer": "Zamrażarka",
"vtRoom1": "My Zone",
"[fridge|freezer]": "Lodówka & Zamrażarka"
},
"name": "Strefa"
}
},
"switch": {
@ -1157,6 +1172,9 @@
},
"super_freeze": {
"name": "Super Freeze"
},
"refrigerator": {
"name": "Lodówka"
}
},
"binary_sensor": {
@ -1301,6 +1319,12 @@
"button": {
"induction_hob": {
"name": "Płyta indukcyjna"
},
"start_program": {
"name": "Program Początek"
},
"stop_program": {
"name": "Program Zatrzymaj"
}
},
"climate": {

View file

@ -225,7 +225,7 @@
"hqd_precious_cure": "Precious cure",
"hqd_quick_20": "Rápido 20",
"hqd_quick_30": "Rápido 30",
"hqd_quick_dry": "Secagem rápida",
"hqd_quick_dry": "Secagem rápida 30",
"hqd_quilt": "Colchas",
"hqd_refresh": "Refrescar",
"hqd_school_uniform": "Farda da escola",
@ -409,6 +409,11 @@
"silent": "Noite",
"silent_care": "Silent Care",
"smart_ai": "Smart AI",
"smart_ai_pro": "Smart AI Pro",
"smart_ai_pro_soil": "Smart AI Pro",
"smart_ai_rapid": "Smart AI Rapid",
"smart_ai_rapid_soil": "Smart AI Rapid",
"smart_ai_soil": "Smart AI",
"special": "especial",
"special_pw_prz": "especial",
"steam": "Vapor 75 °C",
@ -465,19 +470,20 @@
"programs_ov": {
"state": {
"bakery": "Massas e bolos",
"bakery_steam": "Pão cozido a vapor",
"bakery_steam": "Vapor do forno",
"bottom_heating": "Aquecimento inferior",
"bottom_heating_fan": "Aquecimento Inferior + Ventilação",
"bread": "Pão",
"bread_steam": "Pastelaria cozida a vapor",
"bread_steam": "Pão no vapor",
"combi": "Combi",
"convection_fan": "Convecção + Ventilador",
"convection_fan_turnspit": "Convecção + Ventilador + Espeto giratório",
"convection_fan_turnspit": "Espeto com convecção ventilada",
"conventional": "Estático",
"conventional_turnspit": "Convecção + Espeto giratório",
"conventional_turnspit": "Espeto convencional",
"defrost": "Descongelar",
"descaling": "Descalcificação",
"fish": "Peixe",
"fish_steam": "Peixe cozinhado a vapor",
"fish_steam": "Peixe no vapor",
"grill_cata": "Grelhar",
"grill_fan_cata": "Grelhar com ventilação",
"grill_fan_pyro": "Grelhar + Ventilação",
@ -486,23 +492,23 @@
"iot_bread": "Pão",
"iot_h20_clean": "h2O clean",
"leavening": "Levedação",
"low_temp_cooking": "Cozinhar a baixa temperatura",
"low_temp_cooking_fish": "Cozinhar carne a baixa temperatura - Peixe",
"low_temp_cooking_fish_steam": "Cozedura a vapor a baixa temperatura - Peixe",
"low_temp_cooking_meat": "Cozinhar carne a baixa temperatura - Carne",
"low_temp_cooking_meat_steam": "Cozedura a vapor a baixa temperatura - Carne",
"low_temp_cooking_steam": "Cozedura a vapor a baixa temperatura",
"low_temp_cooking": "Cozimento em baixa temperatura",
"low_temp_cooking_fish": "Cozimento em baixa temperatura Peixe",
"low_temp_cooking_fish_steam": "Cozimento em baixa temperatura Peixe a vapor",
"low_temp_cooking_meat": "Cozimento em baixa temperatura Carne",
"low_temp_cooking_meat_steam": "Cozimento em baixa temperatura Carne no vapor",
"low_temp_cooking_steam": "Cozimento em baixa temperatura no vapor",
"meat": "Carne",
"meat_steam": "Carne cozinhada a vapor",
"meat_steam": "Vapor de carne",
"multi_level": "Multinível",
"paella": "Paella",
"pasta_and_bakery": "Massas e bolos",
"pizza": "Pizza",
"pyrolysis": "Pirólise",
"pyrolysis_plus": "Pirólise +",
"red_meat": "Carne vermelha",
"red_meat_steam": "Carne vermelha cozinhada a vapor",
"regenerate": "Regeneração",
"red_meat": "Carne Vermelha",
"red_meat_steam": "Carne Vermelha no vapor",
"regenerate": "Regenerar",
"soft_plus": "Soft+",
"super_grill": "Super Grelhador",
"tailor_bake": "Tailor bake",
@ -511,9 +517,9 @@
"vegetables": "Vegetais",
"vegetables_cata": "Legumes",
"vegetables_pyro": "Legumes",
"water_discharge": "Drenagem de água",
"white_meat": "Carne branca",
"white_meat_steam": "Carne branca cozinhada a vapor"
"water_discharge": "Descarga d'água",
"white_meat": "Carne Branca",
"white_meat_steam": "Carne Branca no vapor"
},
"name": "Programa"
},
@ -570,7 +576,7 @@
"hqd_precious_cure": "Precious cure",
"hqd_quick_20": "Rápido 20",
"hqd_quick_30": "Rápido 30",
"hqd_quick_dry": "Secagem rápida",
"hqd_quick_dry": "Secagem rápida 30",
"hqd_quilt": "Colchas",
"hqd_refresh": "Refrescar",
"hqd_school_uniform": "Farda da escola",
@ -1050,6 +1056,15 @@
},
"remaining_time": {
"name": "Tempo restante"
},
"ref_zones": {
"state": {
"fridge": "Frigorífico",
"freezer": "Congelador",
"vtRoom1": "My Zone",
"[fridge|freezer]": "Frigorífico & Congelador"
},
"name": "Zona"
}
},
"switch": {
@ -1157,6 +1172,9 @@
},
"super_freeze": {
"name": "Super Freeze"
},
"refrigerator": {
"name": "Frigorífico"
}
},
"binary_sensor": {
@ -1301,6 +1319,12 @@
"button": {
"induction_hob": {
"name": "Placa de indução"
},
"start_program": {
"name": "Programa Início"
},
"stop_program": {
"name": "Programa Parar"
}
},
"climate": {

View file

@ -225,7 +225,7 @@
"hqd_precious_cure": "Precious cure",
"hqd_quick_20": "Rapid 20",
"hqd_quick_30": "Rapid 30",
"hqd_quick_dry": "Uscare rapidă",
"hqd_quick_dry": "Uscare rapidă 30",
"hqd_quilt": "Pilote",
"hqd_refresh": "Reîmprospătare",
"hqd_school_uniform": "Uniformă școlară",
@ -409,6 +409,11 @@
"silent": "Noapte",
"silent_care": "Silent Care",
"smart_ai": "Smart AI",
"smart_ai_pro": "Smart AI Pro",
"smart_ai_pro_soil": "Smart AI Pro",
"smart_ai_rapid": "Smart AI Rapid",
"smart_ai_rapid_soil": "Smart AI Rapid",
"smart_ai_soil": "Smart AI",
"special": "special",
"special_pw_prz": "special",
"steam": "Abur 75 °C",
@ -464,12 +469,13 @@
},
"programs_ov": {
"state": {
"bakery": "Paste și patiserie",
"bakery_steam": "Pâine gătită la abur",
"bakery": "Paste și produse de patiserie",
"bakery_steam": "În cuptor la abur",
"bottom_heating": "Încălzire de jos",
"bottom_heating_fan": "Încălzire De Jos + Ventilație",
"bread": "Pâine",
"bread_steam": "Produse de patiserie gătite la abur",
"bread_steam": "Pâine gătită la abur",
"combi": "Combi",
"convection_fan": "Convecție și ventilație",
"convection_fan_turnspit": "Convecție + Ventilator + Rotisor",
"conventional": "Convențional",
@ -488,9 +494,9 @@
"leavening": "Dospire",
"low_temp_cooking": "Gătire la temperatură scăzută",
"low_temp_cooking_fish": "Gătire la temperatură scăzută - Pește",
"low_temp_cooking_fish_steam": "Gătitul cu abur la temperatură scăzută - Pește",
"low_temp_cooking_fish_steam": "Gătitul la temperaturi scăzute - Pește gătit la abur",
"low_temp_cooking_meat": "Gătire la temperatură scăzută - Carne",
"low_temp_cooking_meat_steam": "Gătitul la abur la temperatură scăzută - carne",
"low_temp_cooking_meat_steam": "Gătitul la temperaturi scăzute - Carne gătită la abur",
"low_temp_cooking_steam": "Gătitul la abur la temperaturi scăzute",
"meat": "Carne",
"meat_steam": "Carne gătită la abur",
@ -511,7 +517,7 @@
"vegetables": "Legume",
"vegetables_cata": "Legume",
"vegetables_pyro": "Legume",
"water_discharge": "Scurgerea apei",
"water_discharge": "Evacuare apă",
"white_meat": "Carne albă",
"white_meat_steam": "Carne albă gătită la abur"
},
@ -570,7 +576,7 @@
"hqd_precious_cure": "Precious cure",
"hqd_quick_20": "Rapid 20",
"hqd_quick_30": "Rapid 30",
"hqd_quick_dry": "Uscare rapidă",
"hqd_quick_dry": "Uscare rapidă 30",
"hqd_quilt": "Pilote",
"hqd_refresh": "Reîmprospătare",
"hqd_school_uniform": "Uniformă școlară",
@ -1050,6 +1056,15 @@
},
"remaining_time": {
"name": "Timp rămas"
},
"ref_zones": {
"state": {
"fridge": "Frigider",
"freezer": "Congelator",
"vtRoom1": "My Zone",
"[fridge|freezer]": "Frigider & Congelator"
},
"name": "Zonă"
}
},
"switch": {
@ -1157,6 +1172,9 @@
},
"super_freeze": {
"name": "Super Freeze"
},
"refrigerator": {
"name": "Frigider"
}
},
"binary_sensor": {
@ -1301,6 +1319,12 @@
"button": {
"induction_hob": {
"name": "Plita cu inducție"
},
"start_program": {
"name": "Program Pornire"
},
"stop_program": {
"name": "Program Oprire"
}
},
"climate": {

View file

@ -225,7 +225,7 @@
"hqd_precious_cure": "Precious cure",
"hqd_quick_20": "Быстрая 20",
"hqd_quick_30": "Быстрая 30",
"hqd_quick_dry": "Быстрая сушка",
"hqd_quick_dry": "Быстрая сушка 30",
"hqd_quilt": "Стеганые одеяла",
"hqd_refresh": "Освежение",
"hqd_school_uniform": "Школьная форма",
@ -409,6 +409,11 @@
"silent": "Ночь",
"silent_care": "Silent Care",
"smart_ai": "Smart AI",
"smart_ai_pro": "Smart AI Pro",
"smart_ai_pro_soil": "Smart AI Pro",
"smart_ai_rapid": "Smart AI Rapid",
"smart_ai_rapid_soil": "Smart AI Rapid",
"smart_ai_soil": "Smart AI",
"special": "специальные",
"special_pw_prz": "специальные",
"steam": "пар 75°C",
@ -465,11 +470,12 @@
"programs_ov": {
"state": {
"bakery": "Паста и выпечка",
"bakery_steam": "Хлеб, испеченный на пару",
"bakery_steam": "Пар в духовом шкафу",
"bottom_heating": "Нижний элемент",
"bottom_heating_fan": "Нижний элемент + вентилятор",
"bread": "Хлеб",
"bread_steam": "Выпечка, приготовленная на пару",
"bread_steam": "Хлеб, испеченный на пару",
"combi": "Combi",
"convection_fan": "Верхний и нижний нагрев с вентилятором",
"convection_fan_turnspit": "Обыкновенная духовка + вентилятор + вертел",
"conventional": "Верхний и нижний нагрев",
@ -477,7 +483,7 @@
"defrost": "Размораживание",
"descaling": "Удаление накипи",
"fish": "Рыба",
"fish_steam": "Рыба, приготовленная на пару",
"fish_steam": "Рыба на пару",
"grill_cata": "Гриль",
"grill_fan_cata": "Гриль с вентилятором",
"grill_fan_pyro": "Гриль + вентилятор",
@ -488,12 +494,12 @@
"leavening": "Заквашивание",
"low_temp_cooking": "Приготовление при низкой температуре",
"low_temp_cooking_fish": "Приготовление при низкой температуре - Рыба",
"low_temp_cooking_fish_steam": "Приготовление при низкой температуре на пару - Рыба",
"low_temp_cooking_fish_steam": "Приготовление при низкой температуре - Рыба на пару",
"low_temp_cooking_meat": "Приготовление при низкой температуре - Мясо",
"low_temp_cooking_meat_steam": "Приготовление при низкой температуре на пару - Мясо",
"low_temp_cooking_meat_steam": "Приготовление при низкой температуре - Мясо на пару",
"low_temp_cooking_steam": "Приготовление при низкой температуре на пару",
"meat": "Мясо",
"meat_steam": "Мясо, приготовленное на пару",
"meat_steam": "Мясо на пару",
"multi_level": "Многоуровневое приготовление",
"paella": "Paella",
"pasta_and_bakery": "Паста и выпечка",
@ -501,7 +507,7 @@
"pyrolysis": "Пиролиз",
"pyrolysis_plus": "Пиролиз +",
"red_meat": "Красное мясо",
"red_meat_steam": "Красное мясо, приготовленное на пару",
"red_meat_steam": "Красное мясо на пару",
"regenerate": "Регенерация",
"soft_plus": "Soft+",
"super_grill": "Супер-гриль",
@ -511,9 +517,9 @@
"vegetables": "Овощи",
"vegetables_cata": "Овощи",
"vegetables_pyro": "Овощи",
"water_discharge": "Водоотвод",
"water_discharge": "Слив воды",
"white_meat": "Белое мясо",
"white_meat_steam": "Белое мясо, приготовленное на пару"
"white_meat_steam": "Белое мясо на пару"
},
"name": "Программа"
},
@ -570,7 +576,7 @@
"hqd_precious_cure": "Precious cure",
"hqd_quick_20": "Быстрая 20",
"hqd_quick_30": "Быстрая 30",
"hqd_quick_dry": "Быстрая сушка",
"hqd_quick_dry": "Быстрая сушка 30",
"hqd_quilt": "Стеганые одеяла",
"hqd_refresh": "Освежение",
"hqd_school_uniform": "Школьная форма",
@ -1050,6 +1056,15 @@
},
"remaining_time": {
"name": "Оставшееся время"
},
"ref_zones": {
"state": {
"fridge": "Холодильник",
"freezer": "Морозильник",
"vtRoom1": "My Zone",
"[fridge|freezer]": "Холодильник & Морозильник"
},
"name": "Зона"
}
},
"switch": {
@ -1157,6 +1172,9 @@
},
"super_freeze": {
"name": "Super Freeze"
},
"refrigerator": {
"name": "Холодильник"
}
},
"binary_sensor": {
@ -1301,6 +1319,12 @@
"button": {
"induction_hob": {
"name": "Индукционная варочная панель"
},
"start_program": {
"name": "Программа Начать"
},
"stop_program": {
"name": "Программа Стоп"
}
},
"climate": {

View file

@ -225,7 +225,7 @@
"hqd_precious_cure": "Precious cure",
"hqd_quick_20": "Rýchle 20",
"hqd_quick_30": "Rýchle 30",
"hqd_quick_dry": "Rýchle sušenie",
"hqd_quick_dry": "Rýchle sušenie 30",
"hqd_quilt": "Prikrývky",
"hqd_refresh": "Osvieženie",
"hqd_school_uniform": "Školská uniforma",
@ -409,6 +409,11 @@
"silent": "Noc",
"silent_care": "Silent Care",
"smart_ai": "Smart AI",
"smart_ai_pro": "Smart AI Pro",
"smart_ai_pro_soil": "Smart AI Pro",
"smart_ai_rapid": "Smart AI Rapid",
"smart_ai_rapid_soil": "Smart AI Rapid",
"smart_ai_soil": "Smart AI",
"special": "špeciál",
"special_pw_prz": "špeciál",
"steam": "Para 75 °C",
@ -465,11 +470,12 @@
"programs_ov": {
"state": {
"bakery": "Cestoviny a pečenie",
"bakery_steam": "Chlieb pečený v pare",
"bakery_steam": "Parná rúra",
"bottom_heating": "Spodný ohrev",
"bottom_heating_fan": "Spodný ohrev + Ventilátor",
"bread": "Chlieb",
"bread_steam": "Pečivo pečené v pare",
"bread_steam": "Chlieb pečený v pare",
"combi": "Combi",
"convection_fan": "Statický + ventilátor",
"convection_fan_turnspit": "Statické + ventilátor + otočný ražeň",
"conventional": "Statický",
@ -477,7 +483,7 @@
"defrost": "Rozmraziť",
"descaling": "Odstránenie vodného kameňa",
"fish": "Ryby",
"fish_steam": "Ryby varené v pare",
"fish_steam": "Ryby pripravené v pare",
"grill_cata": "Gril",
"grill_fan_cata": "Gril + ventilátor",
"grill_fan_pyro": "Gril + ventilátor",
@ -488,12 +494,12 @@
"leavening": "Kysnutie",
"low_temp_cooking": "Varenie pri nízkych teplotách",
"low_temp_cooking_fish": "Varenie pri nízkych teplotách Ryby",
"low_temp_cooking_fish_steam": "Varenie pri nízkych teplotách v pare Ryby",
"low_temp_cooking_fish_steam": "Varenie pri nízkych teplotách ryby pripravené v pare",
"low_temp_cooking_meat": "Varenie pri nízkych teplotách Mäso",
"low_temp_cooking_meat_steam": "Varenie pri nízkych teplotách v pare",
"low_temp_cooking_meat_steam": "Varenie pri nízkych teplotách - mäso dusené v pare",
"low_temp_cooking_steam": "Varenie pri nízkych teplotách v pare",
"meat": "Mäso",
"meat_steam": "Mäso uvarené v pare",
"meat_steam": "Mäso v pare",
"multi_level": "Viacúrovňové",
"paella": "Paella",
"pasta_and_bakery": "Cestoviny a pečenie",
@ -501,8 +507,8 @@
"pyrolysis": "Pyrolýza",
"pyrolysis_plus": "Pyrolýza +",
"red_meat": "Červené mäso",
"red_meat_steam": "Červené mäso varené v pare",
"regenerate": "Regenerácia",
"red_meat_steam": "Červené mäso dusené v pare",
"regenerate": "Regenerovať",
"soft_plus": "Soft+",
"super_grill": "Super Gril",
"tailor_bake": "Tailor bake",
@ -511,9 +517,9 @@
"vegetables": "Zelenina",
"vegetables_cata": "Zelenina",
"vegetables_pyro": "Zelenina",
"water_discharge": "Odtok vody",
"water_discharge": "Vypúšťanie vody",
"white_meat": "Biele mäso",
"white_meat_steam": "Biele mäso varené v pare"
"white_meat_steam": "Biele mäso pripravené v pare"
},
"name": "Program"
},
@ -570,7 +576,7 @@
"hqd_precious_cure": "Precious cure",
"hqd_quick_20": "Rýchle 20",
"hqd_quick_30": "Rýchle 30",
"hqd_quick_dry": "Rýchle sušenie",
"hqd_quick_dry": "Rýchle sušenie 30",
"hqd_quilt": "Prikrývky",
"hqd_refresh": "Osvieženie",
"hqd_school_uniform": "Školská uniforma",
@ -1050,6 +1056,15 @@
},
"remaining_time": {
"name": "Zostávajúci čas"
},
"ref_zones": {
"state": {
"fridge": "Chladnička",
"freezer": "Mraznička",
"vtRoom1": "My Zone",
"[fridge|freezer]": "Chladnička & Mraznička"
},
"name": "Zóna"
}
},
"switch": {
@ -1157,6 +1172,9 @@
},
"super_freeze": {
"name": "Super Freeze"
},
"refrigerator": {
"name": "Chladnička"
}
},
"binary_sensor": {
@ -1206,7 +1224,7 @@
"name": "Panvica"
},
"remote_control": {
"name": "Diaľkové ovládanie"
"name": "Daljinsko upravljanje"
},
"rinse_aid": {
"name": "Úroveň prostriedku na oplachovanie"
@ -1301,6 +1319,12 @@
"button": {
"induction_hob": {
"name": "Indukčná varná doska"
},
"start_program": {
"name": "Program Začiatok"
},
"stop_program": {
"name": "Program Zastaviť"
}
},
"climate": {

View file

@ -225,7 +225,7 @@
"hqd_precious_cure": "Precious cure",
"hqd_quick_20": "Hitro 20",
"hqd_quick_30": "Hitro 30",
"hqd_quick_dry": "Hitro sušenje",
"hqd_quick_dry": "Hitro sušenje 30",
"hqd_quilt": "Posteljna pregrinjala",
"hqd_refresh": "Osvežitev",
"hqd_school_uniform": "Šolska uniforma",
@ -409,6 +409,11 @@
"silent": "Noč",
"silent_care": "Silent Care",
"smart_ai": "Smart AI",
"smart_ai_pro": "Smart AI Pro",
"smart_ai_pro_soil": "Smart AI Pro",
"smart_ai_rapid": "Smart AI Rapid",
"smart_ai_rapid_soil": "Smart AI Rapid",
"smart_ai_soil": "Smart AI",
"special": "posebno",
"special_pw_prz": "Posebno",
"steam": "Para 75 °C",
@ -465,11 +470,12 @@
"programs_ov": {
"state": {
"bakery": "Testenine in pekovski izdelki",
"bakery_steam": "V sopari pečen kruh",
"bakery_steam": "Parna pečica",
"bottom_heating": "Spodnji grelnik",
"bottom_heating_fan": "Spodnji grelnik + Ventilator",
"bread": "Kruh",
"bread_steam": "V sopari pečeno pecivo",
"bread_steam": "V sopari pečen kruh",
"combi": "Kombinirano",
"convection_fan": "Konvekcija + ventilator",
"convection_fan_turnspit": "Konvekcija + ventilator + raženj",
"conventional": "Konvenkcijsko",
@ -486,14 +492,14 @@
"iot_bread": "Kruh",
"iot_h20_clean": "h2O clean",
"leavening": "Vzhajanje",
"low_temp_cooking": "Priprava pri nizki temperaturi",
"low_temp_cooking_fish": "Priprava pri nizki temperaturi ribe",
"low_temp_cooking_fish_steam": "Soparjenje pri nizki temperaturi ribe",
"low_temp_cooking_meat": "Priprava pri nizki temperaturi meso",
"low_temp_cooking_meat_steam": "Soparjenje pri nizki temperaturi meso",
"low_temp_cooking": "Kuhanje pri nizki temperaturi",
"low_temp_cooking_fish": "Kuhanje pri nizki temperaturi ribe",
"low_temp_cooking_fish_steam": "Kuhanje pri nizki temperaturi soparjene ribe",
"low_temp_cooking_meat": "Kuhanje pri nizki temperaturi meso",
"low_temp_cooking_meat_steam": "Kuhanje pri nizki temperaturi soparjeno meso",
"low_temp_cooking_steam": "Soparjenje pri nizki temperaturi",
"meat": "Meso",
"meat_steam": "Soparjeno meso",
"meat_steam": "Soparjenje mesa",
"multi_level": "Na več nivojih",
"paella": "Paella",
"pasta_and_bakery": "Testenine in pekovski izdelki",
@ -502,7 +508,7 @@
"pyrolysis_plus": "Piroliza +",
"red_meat": "Rdeče meso",
"red_meat_steam": "Soparjeno rdeče meso",
"regenerate": "Obnavljanje",
"regenerate": "Regeneracija",
"soft_plus": "Soft+",
"super_grill": "Super Grill",
"tailor_bake": "Tailor bake",
@ -511,7 +517,7 @@
"vegetables": "Zelenjava",
"vegetables_cata": "Zelenjava",
"vegetables_pyro": "Zelenjava",
"water_discharge": "Odtok za vodo",
"water_discharge": "Izpust vode",
"white_meat": "Belo meso",
"white_meat_steam": "Soparjeno belo meso"
},
@ -570,7 +576,7 @@
"hqd_precious_cure": "Precious cure",
"hqd_quick_20": "Hitro 20",
"hqd_quick_30": "Hitro 30",
"hqd_quick_dry": "Hitro sušenje",
"hqd_quick_dry": "Hitro sušenje 30",
"hqd_quilt": "Posteljna pregrinjala",
"hqd_refresh": "Osvežitev",
"hqd_school_uniform": "Šolska uniforma",
@ -1050,6 +1056,15 @@
},
"remaining_time": {
"name": "Time remaining"
},
"ref_zones": {
"state": {
"fridge": "Hladilnik",
"freezer": "Zamrzovalnik",
"vtRoom1": "My Zone",
"[fridge|freezer]": "Hladilnik & Zamrzovalnik"
},
"name": "Cona"
}
},
"switch": {
@ -1157,6 +1172,9 @@
},
"super_freeze": {
"name": "Super Freeze"
},
"refrigerator": {
"name": "Hladilnik"
}
},
"binary_sensor": {
@ -1206,7 +1224,7 @@
"name": "Posoda"
},
"remote_control": {
"name": "Daljinsko upravljanje"
"name": "Diaľkové ovládanie"
},
"rinse_aid": {
"name": "Nivo sredstva za sijaj"
@ -1301,6 +1319,12 @@
"button": {
"induction_hob": {
"name": "Indukcijska kuhalna plošča"
},
"start_program": {
"name": "Program Start"
},
"stop_program": {
"name": "Program Stop"
}
},
"climate": {

View file

@ -225,7 +225,7 @@
"hqd_precious_cure": "Precious cure",
"hqd_quick_20": "Brzo 20",
"hqd_quick_30": "Brzo 30",
"hqd_quick_dry": "Brzo sušenje",
"hqd_quick_dry": "Brzo sušenje 30",
"hqd_quilt": "Jorgani",
"hqd_refresh": "Osvežavanje",
"hqd_school_uniform": "Školska uniforma",
@ -409,6 +409,11 @@
"silent": "Noć",
"silent_care": "Silent Care",
"smart_ai": "Smart AI",
"smart_ai_pro": "Smart AI Pro",
"smart_ai_pro_soil": "Smart AI Pro",
"smart_ai_rapid": "Smart AI Rapid",
"smart_ai_rapid_soil": "Smart AI Rapid",
"smart_ai_soil": "Smart AI",
"special": "posebno",
"special_pw_prz": "posebno",
"steam": "Para 75°C",
@ -465,11 +470,12 @@
"programs_ov": {
"state": {
"bakery": "Testenine i pecivo",
"bakery_steam": "Hleb pečen na pari",
"bakery_steam": "Priprema na pari u rerni",
"bottom_heating": "Donje grejanje",
"bottom_heating_fan": "Donje grejanje + Ventilator",
"bread": "Hleb",
"bread_steam": "Peciva pečena na pari",
"bread_steam": "Hleb pečen na pari",
"combi": "Kombinovani",
"convection_fan": "Konvekcija + ventilator",
"convection_fan_turnspit": "Konvekcija + ventilator + ražanj",
"conventional": "Konvekcija",
@ -477,7 +483,7 @@
"defrost": "Odmrzavanje",
"descaling": "Uklanjanje kamenca",
"fish": "Riba",
"fish_steam": "Riba kuvana na pari",
"fish_steam": "Riba na pari",
"grill_cata": "Roštilj",
"grill_fan_cata": "Roštilj sa ventilatorom",
"grill_fan_pyro": "Gril + ventilator",
@ -488,12 +494,12 @@
"leavening": "Narastanje",
"low_temp_cooking": "Kuvanje na niskoj temperaturi",
"low_temp_cooking_fish": "Kuvanje na niskoj temperaturi riba",
"low_temp_cooking_fish_steam": "Kuvanje na pari na niskoj temperaturi riba",
"low_temp_cooking_fish_steam": "Kuvanje na niskoj temperaturi riba na pari",
"low_temp_cooking_meat": "Kuvanje na niskoj temperaturi meso",
"low_temp_cooking_meat_steam": "Kuvanje na pari na niskoj temperaturi meso",
"low_temp_cooking_meat_steam": "Kuvanje na niskoj temperaturi meso na pari",
"low_temp_cooking_steam": "Kuvanje na pari na niskoj temperaturi",
"meat": "Meso",
"meat_steam": "Meso kuvano na pari",
"meat_steam": "Priprema mesa na pari",
"multi_level": "Više nivoa",
"paella": "Paella",
"pasta_and_bakery": "Testenine i pecivo",
@ -501,7 +507,7 @@
"pyrolysis": "Piroliza",
"pyrolysis_plus": "Piroliza +",
"red_meat": "Crveno meso",
"red_meat_steam": "Crveno meso kuvano na pari",
"red_meat_steam": "Crveno meso na pari",
"regenerate": "Regeneracija",
"soft_plus": "Meko+",
"super_grill": "Super gril",
@ -511,9 +517,9 @@
"vegetables": "Povrće",
"vegetables_cata": "Povrće",
"vegetables_pyro": "Povrće",
"water_discharge": "Odvod vode",
"water_discharge": "Ispuštanje vode",
"white_meat": "Belo meso",
"white_meat_steam": "Belo meso kuvano na pari"
"white_meat_steam": "Belo meso na pari"
},
"name": "Program"
},
@ -570,7 +576,7 @@
"hqd_precious_cure": "Precious cure",
"hqd_quick_20": "Brzo 20",
"hqd_quick_30": "Brzo 30",
"hqd_quick_dry": "Brzo sušenje",
"hqd_quick_dry": "Brzo sušenje 30",
"hqd_quilt": "Jorgani",
"hqd_refresh": "Osvežavanje",
"hqd_school_uniform": "Školska uniforma",
@ -1050,6 +1056,15 @@
},
"remaining_time": {
"name": "Preostalo vreme"
},
"ref_zones": {
"state": {
"fridge": "Frižider",
"freezer": "Zamrzivač",
"vtRoom1": "My Zone",
"[fridge|freezer]": "Frižider & Zamrzivač"
},
"name": "Zona"
}
},
"switch": {
@ -1157,6 +1172,9 @@
},
"super_freeze": {
"name": "Super Freeze"
},
"refrigerator": {
"name": "Frižider"
}
},
"binary_sensor": {
@ -1206,7 +1224,7 @@
"name": "Tiganj"
},
"remote_control": {
"name": "Daljinsko upravljanje"
"name": "Upravljanje na daljinu"
},
"rinse_aid": {
"name": "Nivo sredstva za ispiranje"
@ -1301,6 +1319,12 @@
"button": {
"induction_hob": {
"name": "Indukciona ploča"
},
"start_program": {
"name": "Program Pokretanje"
},
"stop_program": {
"name": "Program Zaustavi"
}
},
"climate": {

View file

@ -225,7 +225,7 @@
"hqd_precious_cure": "Precious cure",
"hqd_quick_20": "Hızlı 20",
"hqd_quick_30": "Hızlı 30",
"hqd_quick_dry": "Hızlı kurutma",
"hqd_quick_dry": "Hızlı kurutma 30",
"hqd_quilt": "Yorganlar",
"hqd_refresh": "Yenileme",
"hqd_school_uniform": "Okul üniforması",
@ -409,6 +409,11 @@
"silent": "Gece",
"silent_care": "Silent Care",
"smart_ai": "Smart AI",
"smart_ai_pro": "Smart AI Pro",
"smart_ai_pro_soil": "Smart AI Pro",
"smart_ai_rapid": "Smart AI Rapid",
"smart_ai_rapid_soil": "Smart AI Rapid",
"smart_ai_soil": "Smart AI",
"special": "özel",
"special_pw_prz": "özel",
"steam": "Buhar 75°C",
@ -465,11 +470,12 @@
"programs_ov": {
"state": {
"bakery": "Makarna ve Ekmek",
"bakery_steam": "Buharda pişmiş ekmek",
"bakery_steam": "Fırın buharı",
"bottom_heating": "Alt ısıtıcı",
"bottom_heating_fan": "Alt ısıtıcı + Fan",
"bread": "Ekmek",
"bread_steam": "Buharda pişmiş hamur işleri",
"bread_steam": "Buharda pişmiş ekmek",
"combi": "Kombi",
"convection_fan": "Fan desteklı",
"convection_fan_turnspit": "Konveksiyon + Fan + Şiş Çevirme",
"conventional": "Statık",
@ -477,7 +483,7 @@
"defrost": "Buz çözme",
"descaling": "Kireç çözme",
"fish": "Balık",
"fish_steam": "Buharda pişmiş balık",
"fish_steam": "Balık buğulama",
"grill_cata": "Izgara",
"grill_fan_cata": "Izgara fan",
"grill_fan_pyro": "Izgara + Fan",
@ -488,12 +494,12 @@
"leavening": "Mayalama",
"low_temp_cooking": "Düşük Sıcaklıkta Pişirme",
"low_temp_cooking_fish": "Düşük Sıcaklıkta Pişirme - Balık",
"low_temp_cooking_fish_steam": "Düşük Sıcaklıkta Buharda Pişirme - Balık",
"low_temp_cooking_fish_steam": "Düşük Isıda Pişirme - Balık buğulama",
"low_temp_cooking_meat": "Düşük Sıcaklıkta Pişirme - Et",
"low_temp_cooking_meat_steam": "Düşük Sıcaklıkta Buharda Pişirme - Et",
"low_temp_cooking_meat_steam": "Düşük Isıda Pişirme - Buharda et",
"low_temp_cooking_steam": "Düşük Sıcaklıkta Buharda Pişirme",
"meat": "Et",
"meat_steam": "Buharda pişmiş et",
"meat_steam": "Et buharı",
"multi_level": "Çok Seviyeli",
"paella": "Paella",
"pasta_and_bakery": "Makarna ve Ekmek",
@ -501,8 +507,8 @@
"pyrolysis": "Piroliz",
"pyrolysis_plus": "Piroliz +",
"red_meat": "Kırmızı Et",
"red_meat_steam": "Buharda pişmiş kırmızı et",
"regenerate": "Yenileme",
"red_meat_steam": "Buharda kırmızı et",
"regenerate": "Yeniden oluştur",
"soft_plus": "Yumuşak+",
"super_grill": "Süper Izgara",
"tailor_bake": "Tailor bake",
@ -511,9 +517,9 @@
"vegetables": "Sebzeler",
"vegetables_cata": "Sebzeler",
"vegetables_pyro": "Sebzeler",
"water_discharge": "Su Drenajı",
"water_discharge": "Su Tahliyesi",
"white_meat": "Beyaz Et",
"white_meat_steam": "Buharda pişmiş beyaz et"
"white_meat_steam": "Buharda beyaz et"
},
"name": "Program"
},
@ -570,7 +576,7 @@
"hqd_precious_cure": "Precious cure",
"hqd_quick_20": "Hızlı 20",
"hqd_quick_30": "Hızlı 30",
"hqd_quick_dry": "Hızlı kurutma",
"hqd_quick_dry": "Hızlı kurutma 30",
"hqd_quilt": "Yorganlar",
"hqd_refresh": "Yenileme",
"hqd_school_uniform": "Okul üniforması",
@ -1050,6 +1056,15 @@
},
"remaining_time": {
"name": "Kalan süre"
},
"ref_zones": {
"state": {
"fridge": "Buzdolabı",
"freezer": "Dondurucu",
"vtRoom1": "My Zone",
"[fridge|freezer]": "Buzdolabı & Dondurucu"
},
"name": "Ocak gözü"
}
},
"switch": {
@ -1157,6 +1172,9 @@
},
"super_freeze": {
"name": "Super Freeze"
},
"refrigerator": {
"name": "Buzdolabı"
}
},
"binary_sensor": {
@ -1301,6 +1319,12 @@
"button": {
"induction_hob": {
"name": "İndüksiyonlu Ocak"
},
"start_program": {
"name": "Program Başlangıç"
},
"stop_program": {
"name": "Program Durdur"
}
},
"climate": {

View file

@ -409,6 +409,11 @@
"silent": "夜间",
"silent_care": "Silent Care",
"smart_ai": "Smart AI",
"smart_ai_pro": "Smart AI Pro",
"smart_ai_pro_soil": "Smart AI Pro",
"smart_ai_rapid": "Smart AI Rapid",
"smart_ai_rapid_soil": "Smart AI Rapid",
"smart_ai_soil": "Smart AI",
"special": "特殊",
"special_pw_prz": "特殊",
"steam": "蒸汽洗75°C",
@ -465,11 +470,12 @@
"programs_ov": {
"state": {
"bakery": "意大利面和烘焙食品",
"bakery_steam": "蒸烤的面包",
"bakery_steam": "烤炉蒸汽",
"bottom_heating": "底部加热 ",
"bottom_heating_fan": "底部加热 + 风扇",
"bread": "面包",
"bread_steam": "蒸烤的甜点",
"bread_steam": "蒸烤的面包",
"combi": "Combi",
"convection_fan": "对流 + 风扇",
"convection_fan_turnspit": "对流 + 风扇 + 烤叉",
"conventional": "对流",
@ -477,7 +483,7 @@
"defrost": "解冻",
"descaling": "除垢",
"fish": "鱼",
"fish_steam": "蒸煮的鱼",
"fish_steam": "蒸鱼",
"grill_cata": "烤架",
"grill_fan_cata": "烤架风扇",
"grill_fan_pyro": "烤架 + 风扇",
@ -488,12 +494,12 @@
"leavening": "发酵",
"low_temp_cooking": "低温烹饪",
"low_temp_cooking_fish": "低温烹饪 - 鱼类",
"low_temp_cooking_fish_steam": "低温蒸汽烹饪 - 鱼",
"low_temp_cooking_fish_steam": "低温烹饪 - 鱼",
"low_temp_cooking_meat": "低温烹饪 - 肉类",
"low_temp_cooking_meat_steam": "低温蒸汽烹饪 - 肉",
"low_temp_cooking_meat_steam": "低温烹饪 - 肉",
"low_temp_cooking_steam": "低温蒸汽烹饪",
"meat": "肉",
"meat_steam": "蒸煮的肉",
"meat_steam": "类蒸汽",
"multi_level": "多层",
"paella": "Paella",
"pasta_and_bakery": "意大利面和烘焙食品",
@ -501,8 +507,8 @@
"pyrolysis": "热解",
"pyrolysis_plus": "热解 +",
"red_meat": "红肉",
"red_meat_steam": "蒸煮的红肉",
"regenerate": "再",
"red_meat_steam": "蒸红肉",
"regenerate": "再加热",
"soft_plus": "软+",
"super_grill": "超级烤架",
"tailor_bake": "Tailor bake",
@ -513,7 +519,7 @@
"vegetables_pyro": "蔬菜",
"water_discharge": "排水",
"white_meat": "白肉",
"white_meat_steam": "蒸煮的白肉"
"white_meat_steam": "蒸白肉"
},
"name": "程序"
},
@ -1050,6 +1056,15 @@
},
"remaining_time": {
"name": "剩余时间"
},
"ref_zones": {
"state": {
"fridge": "冰箱",
"freezer": "冷藏箱",
"vtRoom1": "My Zone",
"[fridge|freezer]": "冰箱 & 冷藏箱"
},
"name": "区域"
}
},
"switch": {
@ -1157,6 +1172,9 @@
},
"super_freeze": {
"name": "Super Freeze"
},
"refrigerator": {
"name": "冰箱"
}
},
"binary_sensor": {
@ -1206,7 +1224,7 @@
"name": "烤盘"
},
"remote_control": {
"name": "远程控制"
"name": "Control remoto"
},
"rinse_aid": {
"name": "漂洗助剂液位"
@ -1301,6 +1319,12 @@
"button": {
"induction_hob": {
"name": "电磁炉"
},
"start_program": {
"name": "程序 开始"
},
"stop_program": {
"name": "程序 停止"
}
},
"climate": {

View file

@ -61,6 +61,7 @@ Support has been confirmed for these models, but many more will work. Please add
- Haier HWO60SM2F3XH
- Haier XIB 3B2SFS-80
- Haier XIB 6B2D3FB
- Candy BCTDH7A1TE
- Candy CIS633SCTTWIFI
- Candy CSOE C10DE-80
- Candy ROE H9A3TCEX-S

View file

@ -26,6 +26,7 @@ SELECT = {
"dry_levels": const.TUMBLE_DRYER_DRY_LEVEL,
"eco_pilot": const.AC_HUMAN_SENSE,
"fan_mode": const.AC_FAN_MODE,
"ref_zones": const.REF_ZONES,
}
PROGRAMS = {
@ -85,6 +86,7 @@ NAMES = {
"auto_set": "REF_CMD&CTRL.MODALITIES.ECO",
"super_cool": "REF_CMD&CTRL.MODALITIES.SUPER_COOL",
"super_freeze": "REF_CMD&CTRL.MODALITIES.SUPER_FREEZE",
"refrigerator": "REF.NAME",
},
"binary_sensor": {
"door_lock": "WASHING_CMD&CTRL.CHECK_UP_RESULTS.DOOR_LOCK",
@ -116,6 +118,8 @@ NAMES = {
},
"button": {
"induction_hob": "GLOBALS.APPLIANCES_NAME.IH",
"start_program": ["WC.SET_PROGRAM.PROGRAM", "GLOBALS.GENERAL.START_ON"],
"stop_program": ["WC.SET_PROGRAM.PROGRAM", "GLOBALS.GENERAL.STOP"],
},
"select": {
"dry_levels": "WASHING_CMD&CTRL.DRAWER_CYCLE_DRYING.TAB_LEVEL",
@ -129,6 +133,7 @@ NAMES = {
"programs_wm": "WC.SET_PROGRAM.PROGRAM",
"eco_pilot": "AC.PROGRAM_DETAIL.ECO_PILOT",
"remaining_time": "ENROLLMENT_COMMON.GENERAL.REMAINING_TIME",
"ref_zones": "IH.COMMON.COIL",
},
"sensor": {
"dry_levels": "WASHING_CMD&CTRL.DRAWER_CYCLE_DRYING.TAB_LEVEL",