Compare commits

...

5 Commits

Author SHA1 Message Date
Andre Basche cbaf9f13b4 Bump version 2024-02-11 05:24:34 +01:00
Andre Basche d175e19c3b Safe refresh token 2024-02-11 05:06:53 +01:00
Andre Basche 8694882c45 Set refresh token and mobile id 2024-02-10 01:02:26 +01:00
Andre Basche 71d3d42efe Update supported appliances 2024-02-02 22:34:04 +01:00
Andre Basche 8f0483ead2 Update translations 2024-02-02 22:13:43 +01:00
27 changed files with 430 additions and 64 deletions
+10 -4
View File
@@ -16,8 +16,8 @@ Home Assistant integration for [Haier's mobile app hOn](https://hon-smarthome.co
[![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 Models](https://img.shields.io/badge/Models-130-yellowgreen)](https://github.com/Andre0512/hon#supported-appliances)
[![Supported Entities](https://img.shields.io/badge/Entities-320-crimson)](https://github.com/Andre0512/hon#supported-appliances)
## Takedown Story
Haier sent a takedown notice and threatened legal action. The community started a big riot and called for a Haier boycott, the repository was forked over 2000+ times to make the code undeletable. Haier starts a dialog to find a joint solution. Read all about it here:
@@ -176,6 +176,8 @@ Support has been confirmed for these **6 models**, but many more will work. Plea
| --- | --- | --- | --- |
| Buzzer Disabled | `volume-off` | `switch` | `buzzerDisabled` |
| Dish Washer | `dishwasher` | `switch` | `startProgram` / `stopProgram` |
| Light status | | `light` | `settings.lightStatus` |
| Water hard | `water` | `number` | `settings.waterHard` |
#### Configs
| Name | Icon | Entity | Key |
| --- | --- | --- | --- |
@@ -187,6 +189,7 @@ Support has been confirmed for these **6 models**, but many more will work. Plea
| Open Door | `door-open` | `switch` | `startProgram.openDoor` |
| Program | | `select` | `startProgram.program` |
| Remaining Time | `timer` | `select` | `startProgram.remainingTime` |
| Tab Status | `silverware-clean` | `switch` | `startProgram.tabStatus` |
| Temperature | `thermometer` | `select` | `startProgram.temp` |
| Three in One | `numeric-3-box-outline` | `switch` | `startProgram.threeInOne` |
| Water hard | `water` | `number` | `startProgram.waterHard` |
@@ -467,11 +470,12 @@ Support has been confirmed for these **22 models**, but many more will work. Ple
![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).
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
- HWS247FDU1
- HWS42GDAU1
- HWS77GDAU1
### Wine Cellar Entities
#### Controls
@@ -610,9 +614,10 @@ Support has been confirmed for these **15 models**, but many more will work. Ple
![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).
Support has been confirmed for these **41 models**, but many more will work. Please add already supported devices [with this form to complete the list](https://forms.gle/bTSD8qFotdZFytbf8).
#### Haier
- HW80-B1439N
- HW80-B14959TU1
- HW80-B14959S8U1S
- HW80-B14979TU1
@@ -625,6 +630,7 @@ Support has been confirmed for these **39 models**, but many more will work. Ple
- HW110-14979
#### Hoover
- H5WPB4 27BC8/1-S
- H5WPB447AMBC/1-S
- H7W 412MBCR-80
- H7W 610AMBC-80
+20 -7
View File
@@ -8,7 +8,7 @@ from homeassistant.helpers import config_validation as cv, aiohttp_client
from homeassistant.helpers.typing import HomeAssistantType
from pyhon import Hon
from .const import DOMAIN, PLATFORMS
from .const import DOMAIN, PLATFORMS, MOBILE_ID, CONF_REFRESH_TOKEN
_LOGGER = logging.getLogger(__name__)
@@ -29,14 +29,22 @@ async def async_setup_entry(hass: HomeAssistantType, entry: ConfigEntry) -> bool
session = aiohttp_client.async_get_clientsession(hass)
if (config_dir := hass.config.config_dir) is None:
raise ValueError("Missing Config Dir")
hon = await Hon(
entry.data["email"],
entry.data["password"],
session=session,
test_data_path=Path(config_dir),
).create()
kwargs = {
"email": entry.data[CONF_EMAIL],
"password": entry.data[CONF_PASSWORD],
"mobile_id": MOBILE_ID,
"session": session,
"test_data_path": Path(config_dir),
}
if refresh_token := entry.data.get(CONF_REFRESH_TOKEN):
kwargs["refresh_token"] = refresh_token
hon = await Hon(**kwargs).create()
hass.data.setdefault(DOMAIN, {})
hass.data[DOMAIN][entry.unique_id] = hon
hass.config_entries.async_update_entry(
entry, data={**entry.data, CONF_REFRESH_TOKEN: hon.api.auth.refresh_token}
)
hass.data[DOMAIN]["coordinators"] = {}
for platform in PLATFORMS:
@@ -47,6 +55,11 @@ async def async_setup_entry(hass: HomeAssistantType, entry: ConfigEntry) -> bool
async def async_unload_entry(hass: HomeAssistantType, entry: ConfigEntry) -> bool:
refresh_token = hass.data[DOMAIN][entry.unique_id].api.auth.refresh_token
hass.config_entries.async_update_entry(
entry, data={**entry.data, CONF_REFRESH_TOKEN: refresh_token}
)
unload = await hass.config_entries.async_unload_platforms(entry, PLATFORMS)
if unload:
if not hass.data[DOMAIN]:
+2
View File
@@ -8,6 +8,8 @@ from homeassistant.components.climate import (
DOMAIN: str = "hon"
UPDATE_INTERVAL: int = 60
MOBILE_ID: str = "homassistant"
CONF_REFRESH_TOKEN = "refresh_token"
PLATFORMS: list[str] = [
"sensor",
+2 -2
View File
@@ -9,7 +9,7 @@
"iot_class": "cloud_polling",
"issue_tracker": "https://github.com/Andre0512/hon/issues",
"requirements": [
"pyhOn==0.15.15"
"pyhOn==0.16.0"
],
"version": "0.12.0"
"version": "0.13.0"
}
+20 -2
View File
@@ -194,7 +194,6 @@
"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í",
@@ -339,6 +338,7 @@
"hqd_bed_sheets": "Povlečení",
"hqd_bulky": "Objemné kusy",
"hqd_casual": "Casual",
"hqd_checkup": "Kontrola",
"hqd_cold_wind_30": "Chladný vánek 30 minut",
"hqd_cold_wind_timing": "Chladný vzduch",
"hqd_cotton": "Bavlna",
@@ -351,6 +351,13 @@
"hqd_hygienic": "Dezinfekce",
"hqd_i_refresh": "I-Refresh",
"hqd_i_refresh_pro": "I-Refresh Pro",
"hqd_i_refresh_pro_babycare": "I-Refresh Pro Dětské prádlo",
"hqd_i_refresh_pro_bulky": "I-Refresh Pro Objemné",
"hqd_i_refresh_pro_delicates": "I-Refresh Pro Jemné",
"hqd_i_refresh_pro_down": "I-Refresh Pro Prachové peří",
"hqd_i_refresh_pro_shirt": "I-Refresh Pro Košile",
"hqd_i_refresh_pro_towel": "I-Refresh Pro Ručníky",
"hqd_i_refresh_pro_wool": "I-Refresh Pro Vlna",
"hqd_jacket": "Bundy",
"hqd_jeans": "Džíny",
"hqd_luxury": "Luxusní",
@@ -471,6 +478,7 @@
"cottons_prewash": "Bavlna + předpírka",
"cottons_steam": "Bavlna + Pára",
"cotton_care_59": "Cotton Care 59'",
"cycle_ended": "Cyklus skončil",
"delicate_59": "Jemné 59'",
"delicate_silk": "Jemné hedvábí 59'",
"delicate_silk_steam": "Jemné hedvábí + pára",
@@ -754,6 +762,7 @@
"tailored_synthetic_and_coloured": "Tailored Synthetic Colored",
"total_care": "Total Care",
"tumbling": "Pomalé otáčení",
"ultra_fresh": "Ultra Fresh",
"wool": "Vlna",
"wool_and_delicates_49": "Vlna/Jemné 49'",
"wool_dry": "Vlna - suché",
@@ -1083,7 +1092,6 @@
"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í",
@@ -1228,6 +1236,7 @@
"hqd_bed_sheets": "Povlečení",
"hqd_bulky": "Objemné kusy",
"hqd_casual": "Casual",
"hqd_checkup": "Kontrola",
"hqd_cold_wind_30": "Chladný vánek 30 minut",
"hqd_cold_wind_timing": "Chladný vzduch",
"hqd_cotton": "Bavlna",
@@ -1240,6 +1249,13 @@
"hqd_hygienic": "Dezinfekce",
"hqd_i_refresh": "I-Refresh",
"hqd_i_refresh_pro": "I-Refresh Pro",
"hqd_i_refresh_pro_babycare": "I-Refresh Pro Dětské prádlo",
"hqd_i_refresh_pro_bulky": "I-Refresh Pro Objemné",
"hqd_i_refresh_pro_delicates": "I-Refresh Pro Jemné",
"hqd_i_refresh_pro_down": "I-Refresh Pro Prachové peří",
"hqd_i_refresh_pro_shirt": "I-Refresh Pro Košile",
"hqd_i_refresh_pro_towel": "I-Refresh Pro Ručníky",
"hqd_i_refresh_pro_wool": "I-Refresh Pro Vlna",
"hqd_jacket": "Bundy",
"hqd_jeans": "Džíny",
"hqd_luxury": "Luxusní",
@@ -1360,6 +1376,7 @@
"cottons_prewash": "Bavlna + předpírka",
"cottons_steam": "Bavlna + Pára",
"cotton_care_59": "Cotton Care 59'",
"cycle_ended": "Cyklus skončil",
"delicate_59": "Jemné 59'",
"delicate_silk": "Jemné hedvábí 59'",
"delicate_silk_steam": "Jemné hedvábí + pára",
@@ -1643,6 +1660,7 @@
"tailored_synthetic_and_coloured": "Tailored Synthetic Colored",
"total_care": "Total Care",
"tumbling": "Pomalé otáčení",
"ultra_fresh": "Ultra Fresh",
"wool": "Vlna",
"wool_and_delicates_49": "Vlna/Jemné 49'",
"wool_dry": "Vlna - suché",
+20 -2
View File
@@ -194,7 +194,6 @@
"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",
@@ -339,6 +338,7 @@
"hqd_bed_sheets": "Bettwäsche",
"hqd_bulky": "Schwere Textilien",
"hqd_casual": "Casual",
"hqd_checkup": "Check-Up",
"hqd_cold_wind_30": "Kühle Brise 30 Minuten",
"hqd_cold_wind_timing": "Kalte Luft",
"hqd_cotton": "Baumwolle",
@@ -351,6 +351,13 @@
"hqd_hygienic": "Desinfektion",
"hqd_i_refresh": "I-Refresh",
"hqd_i_refresh_pro": "I-Refresh Pro",
"hqd_i_refresh_pro_babycare": "I-Refresh Pro Babycare",
"hqd_i_refresh_pro_bulky": "I-Refresh Pro Voluminös",
"hqd_i_refresh_pro_delicates": "I-Refresh Pro Feinwäsche",
"hqd_i_refresh_pro_down": "I-Refresh Pro Daunen",
"hqd_i_refresh_pro_shirt": "I-Refresh Pro Hemden",
"hqd_i_refresh_pro_towel": "I-Refresh Pro Handtücher",
"hqd_i_refresh_pro_wool": "I-Refresh Pro Wolle",
"hqd_jacket": "Jacken",
"hqd_jeans": "Jeans",
"hqd_luxury": "Luxury",
@@ -471,6 +478,7 @@
"cottons_prewash": "Baumwolle + Vorwäsche",
"cottons_steam": "Baumwolle + Dampf",
"cotton_care_59": "Cotton Care 59 Min",
"cycle_ended": "Programm beendet",
"delicate_59": "Feines 59'",
"delicate_silk": "Empfindliche Seide 59'",
"delicate_silk_steam": "Empfindliche Seide + Dampf",
@@ -754,6 +762,7 @@
"tailored_synthetic_and_coloured": "Tailored Synthetic Colored",
"total_care": "Total Care",
"tumbling": "Trocknen",
"ultra_fresh": "Ultra Fresh",
"wool": "Wolle",
"wool_and_delicates_49": "Wolle/Feinwäsche 49'",
"wool_dry": "Wolle trocknen",
@@ -1083,7 +1092,6 @@
"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",
@@ -1228,6 +1236,7 @@
"hqd_bed_sheets": "Bettwäsche",
"hqd_bulky": "Schwere Textilien",
"hqd_casual": "Casual",
"hqd_checkup": "Check-Up",
"hqd_cold_wind_30": "Kühle Brise 30 Minuten",
"hqd_cold_wind_timing": "Kalte Luft",
"hqd_cotton": "Baumwolle",
@@ -1240,6 +1249,13 @@
"hqd_hygienic": "Desinfektion",
"hqd_i_refresh": "I-Refresh",
"hqd_i_refresh_pro": "I-Refresh Pro",
"hqd_i_refresh_pro_babycare": "I-Refresh Pro Babycare",
"hqd_i_refresh_pro_bulky": "I-Refresh Pro Voluminös",
"hqd_i_refresh_pro_delicates": "I-Refresh Pro Feinwäsche",
"hqd_i_refresh_pro_down": "I-Refresh Pro Daunen",
"hqd_i_refresh_pro_shirt": "I-Refresh Pro Hemden",
"hqd_i_refresh_pro_towel": "I-Refresh Pro Handtücher",
"hqd_i_refresh_pro_wool": "I-Refresh Pro Wolle",
"hqd_jacket": "Jacken",
"hqd_jeans": "Jeans",
"hqd_luxury": "Luxury",
@@ -1360,6 +1376,7 @@
"cottons_prewash": "Baumwolle + Vorwäsche",
"cottons_steam": "Baumwolle + Dampf",
"cotton_care_59": "Cotton Care 59 Min",
"cycle_ended": "Programm beendet",
"delicate_59": "Feines 59'",
"delicate_silk": "Empfindliche Seide 59'",
"delicate_silk_steam": "Empfindliche Seide + Dampf",
@@ -1643,6 +1660,7 @@
"tailored_synthetic_and_coloured": "Tailored Synthetic Colored",
"total_care": "Total Care",
"tumbling": "Trocknen",
"ultra_fresh": "Ultra Fresh",
"wool": "Wolle",
"wool_and_delicates_49": "Wolle/Feinwäsche 49'",
"wool_dry": "Wolle trocknen",
+20 -2
View File
@@ -194,7 +194,6 @@
"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": "σπεσιαλ",
@@ -339,6 +338,7 @@
"hqd_bed_sheets": "Σεντόνια κρεβατιού",
"hqd_bulky": "Ογκώδη αντικείμενα",
"hqd_casual": "Καθημερινά ρούχα",
"hqd_checkup": "Έλεγχος",
"hqd_cold_wind_30": "Δροσερό αεράκι 30 λεπτά",
"hqd_cold_wind_timing": "Ψυχρός Αέρας",
"hqd_cotton": "Βαμβακερό",
@@ -351,6 +351,13 @@
"hqd_hygienic": "Υγιεινή",
"hqd_i_refresh": "I-Refresh",
"hqd_i_refresh_pro": "I-Refresh Pro",
"hqd_i_refresh_pro_babycare": "I-Refresh Pro Παιδικά ρούχα",
"hqd_i_refresh_pro_bulky": "I-Refresh Pro Ογκώδη",
"hqd_i_refresh_pro_delicates": "I-Refresh Pro Ευαίσθητα",
"hqd_i_refresh_pro_down": "I-Refresh Pro Πούπουλο",
"hqd_i_refresh_pro_shirt": "I-Refresh Pro Πουκάμισα",
"hqd_i_refresh_pro_towel": "I-Refresh Pro Πετσέτα",
"hqd_i_refresh_pro_wool": "I-Refresh Pro Μάλλινα",
"hqd_jacket": "Ζακέτες",
"hqd_jeans": "Τζιν παντελονια",
"hqd_luxury": "Luxury",
@@ -471,6 +478,7 @@
"cottons_prewash": "βαμβακερα + προπλυση",
"cottons_steam": "Βαμβακερό + Ατμός",
"cotton_care_59": "βαμβακερα 59 λεπτα",
"cycle_ended": "Ο κύκλος ολοκληρώθηκε",
"delicate_59": "Ευαίσθητα 59'",
"delicate_silk": "Ευαίσθητα μεταξωτά 59'",
"delicate_silk_steam": "Ευαίσθητα μεταξωτά + ατμός",
@@ -754,6 +762,7 @@
"tailored_synthetic_and_coloured": "Tailored Synthetic Colored",
"total_care": "Ολική φροντίδα",
"tumbling": "Κατρακύλισμα",
"ultra_fresh": "Ultra Fresh",
"wool": "Μάλλινα",
"wool_and_delicates_49": "μαλλινα/ευαισθητα 49'",
"wool_dry": "Μάλλινα στέγνωμα",
@@ -1083,7 +1092,6 @@
"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": "σπεσιαλ",
@@ -1228,6 +1236,7 @@
"hqd_bed_sheets": "Σεντόνια κρεβατιού",
"hqd_bulky": "Ογκώδη αντικείμενα",
"hqd_casual": "Καθημερινά ρούχα",
"hqd_checkup": "Έλεγχος",
"hqd_cold_wind_30": "Δροσερό αεράκι 30 λεπτά",
"hqd_cold_wind_timing": "Ψυχρός Αέρας",
"hqd_cotton": "Βαμβακερό",
@@ -1240,6 +1249,13 @@
"hqd_hygienic": "Υγιεινή",
"hqd_i_refresh": "I-Refresh",
"hqd_i_refresh_pro": "I-Refresh Pro",
"hqd_i_refresh_pro_babycare": "I-Refresh Pro Παιδικά ρούχα",
"hqd_i_refresh_pro_bulky": "I-Refresh Pro Ογκώδη",
"hqd_i_refresh_pro_delicates": "I-Refresh Pro Ευαίσθητα",
"hqd_i_refresh_pro_down": "I-Refresh Pro Πούπουλο",
"hqd_i_refresh_pro_shirt": "I-Refresh Pro Πουκάμισα",
"hqd_i_refresh_pro_towel": "I-Refresh Pro Πετσέτα",
"hqd_i_refresh_pro_wool": "I-Refresh Pro Μάλλινα",
"hqd_jacket": "Ζακέτες",
"hqd_jeans": "Τζιν παντελονια",
"hqd_luxury": "Luxury",
@@ -1360,6 +1376,7 @@
"cottons_prewash": "βαμβακερα + προπλυση",
"cottons_steam": "Βαμβακερό + Ατμός",
"cotton_care_59": "βαμβακερα 59 λεπτα",
"cycle_ended": "Ο κύκλος ολοκληρώθηκε",
"delicate_59": "Ευαίσθητα 59'",
"delicate_silk": "Ευαίσθητα μεταξωτά 59'",
"delicate_silk_steam": "Ευαίσθητα μεταξωτά + ατμός",
@@ -1643,6 +1660,7 @@
"tailored_synthetic_and_coloured": "Tailored Synthetic Colored",
"total_care": "Ολική φροντίδα",
"tumbling": "Κατρακύλισμα",
"ultra_fresh": "Ultra Fresh",
"wool": "Μάλλινα",
"wool_and_delicates_49": "μαλλινα/ευαισθητα 49'",
"wool_dry": "Μάλλινα στέγνωμα",
+34 -2
View File
@@ -72,7 +72,7 @@
"no_dry": "No drying",
"iron_dry": "Iron dry",
"no_dry_iron": "Hang",
"cupboard_dry": "Cupboard Dry",
"cupboard_dry": "Cupboard",
"extra_dry": "Extra dry",
"ready_to_wear": "Ready to wear"
},
@@ -328,7 +328,9 @@
"anti_odours": "Anti-odours",
"auto_care": "Auto Care",
"baby": "Baby",
"babycare": "Babycare",
"bed_quilt": "Bed Quilt",
"bulky": "Bulky",
"care_30": "Care 30",
"care_45": "Care 45",
"care_59": "Care 59",
@@ -337,6 +339,7 @@
"daily_perfect_59_min": "Daily Perfect 59'",
"darks_and_coloured": "Darks & Colored",
"delicates": "Delicates",
"down": "Down",
"duvet": "Duvet",
"eco": "Eco Cotton",
"ecospeed_cottons": "Ecospeed Cottons",
@@ -351,6 +354,7 @@
"hqd_bed_sheets": "Bed Sheets",
"hqd_bulky": "Bulky Items",
"hqd_casual": "Casual",
"hqd_checkup": "Check-Up",
"hqd_cold_wind_30": "Cool Breeze 30m",
"hqd_cold_wind_timing": "Cold Air",
"hqd_cotton": "Cotton",
@@ -358,11 +362,19 @@
"hqd_delicate": "Delicates",
"hqd_diaper": "Diapers",
"hqd_duvet": "Synthetic fibre quilted jacket",
"hqd_eco": "HQD ECO",
"hqd_feather": "Natural fibre quilted jacket",
"hqd_hot_wind_timing": "Warm Embrace",
"hqd_hygienic": "Hygienising",
"hqd_i_refresh": "I-Refresh",
"hqd_i_refresh_pro": "I-Refresh Pro",
"hqd_i_refresh_pro_babycare": "I-Refresh Pro Babycare",
"hqd_i_refresh_pro_bulky": "I-Refresh Pro Bulky",
"hqd_i_refresh_pro_delicates": "I-Refresh Pro Delicates",
"hqd_i_refresh_pro_down": "I-Refresh Pro Down",
"hqd_i_refresh_pro_shirt": "I-Refresh Pro Shirt",
"hqd_i_refresh_pro_towel": "I-Refresh Pro Towel",
"hqd_i_refresh_pro_wool": "I-Refresh Pro Wool",
"hqd_jacket": "Jackets",
"hqd_jeans": "Jeans",
"hqd_luxury": "Luxury",
@@ -379,6 +391,7 @@
"hqd_shirt": "Shirts",
"hqd_shoes": "Shoes",
"hqd_silk": "Silk",
"hqd_smart": "HQD SMART",
"hqd_sports": "Sports",
"hqd_synthetics": "Synthetics",
"hqd_timer": "Timed",
@@ -484,6 +497,7 @@
"cottons_steam": "Cotton + Steam",
"cotton_care_59": "Cotton Care 59'",
"crystals": "Crystals 45°C",
"cycle_ended": "Cycle ended",
"delicate_59": "Delicate 59'",
"delicate_silk": "Delicate and Silk 59'",
"delicate_silk_steam": "Delicate and Silk + Steam",
@@ -769,6 +783,7 @@
"tailored_synthetic_and_coloured": "Tailored Synthetic Coloured",
"total_care": "Total Care",
"tumbling": "Tumbling",
"ultra_fresh": "Ultra Fresh",
"wool": "Wool",
"wool_and_delicates_49": "Wool and Delicates 49'",
"wool_dry": "Wool Dry",
@@ -793,6 +808,7 @@
"milk_and_eggs": "Milk & Eggs",
"no_mode_selected": "No mode selected",
"quick_cool": "QUICK COOL",
"quick_set": "Quick Set",
"sea_food": "Ready to cook meal",
"smart_mode": "SMART MODE",
"smart_mode_title": "Smart Mode",
@@ -949,7 +965,7 @@
"no_dry": "No drying",
"iron_dry": "Iron dry",
"no_dry_iron": "Hang",
"cupboard_dry": "Cupboard Dry",
"cupboard_dry": "Cupboard",
"extra_dry": "Extra dry",
"ready_to_wear": "Ready to wear"
},
@@ -1231,7 +1247,9 @@
"anti_odours": "Anti-odours",
"auto_care": "Auto Care",
"baby": "Baby",
"babycare": "Babycare",
"bed_quilt": "Bed Quilt",
"bulky": "Bulky",
"care_30": "Care 30",
"care_45": "Care 45",
"care_59": "Care 59",
@@ -1240,6 +1258,7 @@
"daily_perfect_59_min": "Daily Perfect 59'",
"darks_and_coloured": "Darks & Colored",
"delicates": "Delicates",
"down": "Down",
"duvet": "Duvet",
"eco": "Eco Cotton",
"ecospeed_cottons": "Ecospeed Cottons",
@@ -1254,6 +1273,7 @@
"hqd_bed_sheets": "Bed Sheets",
"hqd_bulky": "Bulky Items",
"hqd_casual": "Casual",
"hqd_checkup": "Check-Up",
"hqd_cold_wind_30": "Cool Breeze 30m",
"hqd_cold_wind_timing": "Cold Air",
"hqd_cotton": "Cotton",
@@ -1261,11 +1281,19 @@
"hqd_delicate": "Delicates",
"hqd_diaper": "Diapers",
"hqd_duvet": "Synthetic fibre quilted jacket",
"hqd_eco": "HQD ECO",
"hqd_feather": "Natural fibre quilted jacket",
"hqd_hot_wind_timing": "Warm Embrace",
"hqd_hygienic": "Hygienising",
"hqd_i_refresh": "I-Refresh",
"hqd_i_refresh_pro": "I-Refresh Pro",
"hqd_i_refresh_pro_babycare": "I-Refresh Pro Babycare",
"hqd_i_refresh_pro_bulky": "I-Refresh Pro Bulky",
"hqd_i_refresh_pro_delicates": "I-Refresh Pro Delicates",
"hqd_i_refresh_pro_down": "I-Refresh Pro Down",
"hqd_i_refresh_pro_shirt": "I-Refresh Pro Shirt",
"hqd_i_refresh_pro_towel": "I-Refresh Pro Towel",
"hqd_i_refresh_pro_wool": "I-Refresh Pro Wool",
"hqd_jacket": "Jackets",
"hqd_jeans": "Jeans",
"hqd_luxury": "Luxury",
@@ -1282,6 +1310,7 @@
"hqd_shirt": "Shirts",
"hqd_shoes": "Shoes",
"hqd_silk": "Silk",
"hqd_smart": "HQD SMART",
"hqd_sports": "Sports",
"hqd_synthetics": "Synthetics",
"hqd_timer": "Timed",
@@ -1387,6 +1416,7 @@
"cottons_steam": "Cotton + Steam",
"cotton_care_59": "Cotton Care 59'",
"crystals": "Crystals 45°C",
"cycle_ended": "Cycle ended",
"delicate_59": "Delicate 59'",
"delicate_silk": "Delicate and Silk 59'",
"delicate_silk_steam": "Delicate and Silk + Steam",
@@ -1672,6 +1702,7 @@
"tailored_synthetic_and_coloured": "Tailored Synthetic Coloured",
"total_care": "Total Care",
"tumbling": "Tumbling",
"ultra_fresh": "Ultra Fresh",
"wool": "Wool",
"wool_and_delicates_49": "Wool and Delicates 49'",
"wool_dry": "Wool Dry",
@@ -1696,6 +1727,7 @@
"milk_and_eggs": "Milk & Eggs",
"no_mode_selected": "No mode selected",
"quick_cool": "QUICK COOL",
"quick_set": "Quick Set",
"sea_food": "Ready to cook meal",
"smart_mode": "SMART MODE",
"smart_mode_title": "Smart Mode",
+20 -2
View File
@@ -194,7 +194,6 @@
"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",
@@ -339,6 +338,7 @@
"hqd_bed_sheets": "Sábanas",
"hqd_bulky": "Objetos voluminosos",
"hqd_casual": "Casual",
"hqd_checkup": "Revisión",
"hqd_cold_wind_30": "Brisa fresca 30 minutos",
"hqd_cold_wind_timing": "Aire frío",
"hqd_cotton": "Algodón",
@@ -351,6 +351,13 @@
"hqd_hygienic": "Higienizar",
"hqd_i_refresh": "I-Refresh",
"hqd_i_refresh_pro": "I-Refresh Pro",
"hqd_i_refresh_pro_babycare": "I-Refresh Pro Cuidado del bebé",
"hqd_i_refresh_pro_bulky": "I-Refresh Pro Cargas voluminosas",
"hqd_i_refresh_pro_delicates": "I-Refresh Pro Delicados",
"hqd_i_refresh_pro_down": "I-Refresh Pro Pelusa",
"hqd_i_refresh_pro_shirt": "I-Refresh Pro Camisetas",
"hqd_i_refresh_pro_towel": "I-Refresh Pro Toallas",
"hqd_i_refresh_pro_wool": "I-Refresh Pro Lana",
"hqd_jacket": "Chaquetas",
"hqd_jeans": "Vaqueros",
"hqd_luxury": "Lujo",
@@ -471,6 +478,7 @@
"cottons_prewash": "Ropa Blanca + Prelavado",
"cottons_steam": "Algodón + Vapor",
"cotton_care_59": "Cotton Care 59 Min",
"cycle_ended": "Fin del ciclo",
"delicate_59": "Delicado 59'",
"delicate_silk": "Seda delicada 59'",
"delicate_silk_steam": "Seda delicada + vapor",
@@ -754,6 +762,7 @@
"tailored_synthetic_and_coloured": "Tailored Synthetic Colored",
"total_care": "Cuidado total",
"tumbling": "Rotación",
"ultra_fresh": "Ultra Fresh",
"wool": "Lana",
"wool_and_delicates_49": "Lana/Delicados 49'",
"wool_dry": "Secado lana",
@@ -1083,7 +1092,6 @@
"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",
@@ -1228,6 +1236,7 @@
"hqd_bed_sheets": "Sábanas",
"hqd_bulky": "Objetos voluminosos",
"hqd_casual": "Casual",
"hqd_checkup": "Revisión",
"hqd_cold_wind_30": "Brisa fresca 30 minutos",
"hqd_cold_wind_timing": "Aire frío",
"hqd_cotton": "Algodón",
@@ -1240,6 +1249,13 @@
"hqd_hygienic": "Higienizar",
"hqd_i_refresh": "I-Refresh",
"hqd_i_refresh_pro": "I-Refresh Pro",
"hqd_i_refresh_pro_babycare": "I-Refresh Pro Cuidado del bebé",
"hqd_i_refresh_pro_bulky": "I-Refresh Pro Cargas voluminosas",
"hqd_i_refresh_pro_delicates": "I-Refresh Pro Delicados",
"hqd_i_refresh_pro_down": "I-Refresh Pro Pelusa",
"hqd_i_refresh_pro_shirt": "I-Refresh Pro Camisetas",
"hqd_i_refresh_pro_towel": "I-Refresh Pro Toallas",
"hqd_i_refresh_pro_wool": "I-Refresh Pro Lana",
"hqd_jacket": "Chaquetas",
"hqd_jeans": "Vaqueros",
"hqd_luxury": "Lujo",
@@ -1360,6 +1376,7 @@
"cottons_prewash": "Ropa Blanca + Prelavado",
"cottons_steam": "Algodón + Vapor",
"cotton_care_59": "Cotton Care 59 Min",
"cycle_ended": "Fin del ciclo",
"delicate_59": "Delicado 59'",
"delicate_silk": "Seda delicada 59'",
"delicate_silk_steam": "Seda delicada + vapor",
@@ -1643,6 +1660,7 @@
"tailored_synthetic_and_coloured": "Tailored Synthetic Colored",
"total_care": "Cuidado total",
"tumbling": "Rotación",
"ultra_fresh": "Ultra Fresh",
"wool": "Lana",
"wool_and_delicates_49": "Lana/Delicados 49'",
"wool_dry": "Secado lana",
+20 -2
View File
@@ -194,7 +194,6 @@
"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",
@@ -339,6 +338,7 @@
"hqd_bed_sheets": "Draps",
"hqd_bulky": "Articles volumineux",
"hqd_casual": "Journalier",
"hqd_checkup": "Vérification",
"hqd_cold_wind_30": "Brise rafraîchissante 30 minutes",
"hqd_cold_wind_timing": "Air froid",
"hqd_cotton": "Coton",
@@ -351,6 +351,13 @@
"hqd_hygienic": "Hygiénisation",
"hqd_i_refresh": "I-Refresh",
"hqd_i_refresh_pro": "I-Refresh Pro",
"hqd_i_refresh_pro_babycare": "I-Refresh Pro Babycare",
"hqd_i_refresh_pro_bulky": "I-Refresh Pro Volumineux",
"hqd_i_refresh_pro_delicates": "I-Refresh Pro Délicats",
"hqd_i_refresh_pro_down": "I-Refresh Pro Duvet",
"hqd_i_refresh_pro_shirt": "I-Refresh Pro Chemise",
"hqd_i_refresh_pro_towel": "I-Refresh Pro Serviette",
"hqd_i_refresh_pro_wool": "I-Refresh Pro Laine",
"hqd_jacket": "Vestes",
"hqd_jeans": "Jeans",
"hqd_luxury": "Luxury",
@@ -471,6 +478,7 @@
"cottons_prewash": "Coton + prélavage",
"cottons_steam": "Coton + Vapeur d'eau",
"cotton_care_59": "Cotton Care 59 Min",
"cycle_ended": "Cycle terminé",
"delicate_59": "Délicat 59'",
"delicate_silk": "Délicat 59'",
"delicate_silk_steam": "Délicat + vapeur",
@@ -754,6 +762,7 @@
"tailored_synthetic_and_coloured": "Tailored Synthetic Colored",
"total_care": "Soin total",
"tumbling": "Tumble",
"ultra_fresh": "Ultra Fresh",
"wool": "Laine",
"wool_and_delicates_49": "Laine/Délicat 49'",
"wool_dry": "Séchage de la laine",
@@ -1083,7 +1092,6 @@
"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",
@@ -1228,6 +1236,7 @@
"hqd_bed_sheets": "Draps",
"hqd_bulky": "Articles volumineux",
"hqd_casual": "Journalier",
"hqd_checkup": "Vérification",
"hqd_cold_wind_30": "Brise rafraîchissante 30 minutes",
"hqd_cold_wind_timing": "Air froid",
"hqd_cotton": "Coton",
@@ -1240,6 +1249,13 @@
"hqd_hygienic": "Hygiénisation",
"hqd_i_refresh": "I-Refresh",
"hqd_i_refresh_pro": "I-Refresh Pro",
"hqd_i_refresh_pro_babycare": "I-Refresh Pro Babycare",
"hqd_i_refresh_pro_bulky": "I-Refresh Pro Volumineux",
"hqd_i_refresh_pro_delicates": "I-Refresh Pro Délicats",
"hqd_i_refresh_pro_down": "I-Refresh Pro Duvet",
"hqd_i_refresh_pro_shirt": "I-Refresh Pro Chemise",
"hqd_i_refresh_pro_towel": "I-Refresh Pro Serviette",
"hqd_i_refresh_pro_wool": "I-Refresh Pro Laine",
"hqd_jacket": "Vestes",
"hqd_jeans": "Jeans",
"hqd_luxury": "Luxury",
@@ -1360,6 +1376,7 @@
"cottons_prewash": "Coton + prélavage",
"cottons_steam": "Coton + Vapeur d'eau",
"cotton_care_59": "Cotton Care 59 Min",
"cycle_ended": "Cycle terminé",
"delicate_59": "Délicat 59'",
"delicate_silk": "Délicat 59'",
"delicate_silk_steam": "Délicat + vapeur",
@@ -1643,6 +1660,7 @@
"tailored_synthetic_and_coloured": "Tailored Synthetic Colored",
"total_care": "Soin total",
"tumbling": "Tumble",
"ultra_fresh": "Ultra Fresh",
"wool": "Laine",
"wool_and_delicates_49": "Laine/Délicat 49'",
"wool_dry": "Séchage de la laine",
@@ -110,6 +110,7 @@
"genius": "Genius",
"hqd_bath_towel": "Bath towel",
"hqd_bulky": "Bulky",
"hqd_checkup": "בְּדִיקָה",
"hqd_cold_wind_30": "Cold wind 30 minutes",
"hqd_cold_wind_timing": "Cold wind",
"hqd_luxury": "Luxury",
@@ -302,6 +303,7 @@
"tailored_synthetic_and_coloured": "Tailored Synthetic Colored",
"total_care": "טיפול טוטאלי",
"tumbling": "נופלים",
"ultra_fresh": "Ultra Fresh",
"wool_and_delicates_49": "Wool/Delicates 49'",
"wool_dry": "צמר יבש"
},
@@ -526,6 +528,7 @@
"genius": "Genius",
"hqd_bath_towel": "Bath towel",
"hqd_bulky": "Bulky",
"hqd_checkup": "בְּדִיקָה",
"hqd_cold_wind_30": "Cold wind 30 minutes",
"hqd_cold_wind_timing": "Cold wind",
"hqd_luxury": "Luxury",
@@ -718,6 +721,7 @@
"tailored_synthetic_and_coloured": "Tailored Synthetic Colored",
"total_care": "טיפול טוטאלי",
"tumbling": "נופלים",
"ultra_fresh": "Ultra Fresh",
"wool_and_delicates_49": "Wool/Delicates 49'",
"wool_dry": "צמר יבש"
},
+20 -2
View File
@@ -194,7 +194,6 @@
"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",
@@ -339,6 +338,7 @@
"hqd_bed_sheets": "Plahte",
"hqd_bulky": "Glomazni komadi",
"hqd_casual": "Opušteno",
"hqd_checkup": "Check Up ciklus provjere",
"hqd_cold_wind_30": "Hladni zrak, 30 minuta",
"hqd_cold_wind_timing": "Hladan zrak",
"hqd_cotton": "Pamuk",
@@ -351,6 +351,13 @@
"hqd_hygienic": "Higijenizacija",
"hqd_i_refresh": "I-Refresh",
"hqd_i_refresh_pro": "I-Refresh Pro",
"hqd_i_refresh_pro_babycare": "I-Refresh Pro dječja njega",
"hqd_i_refresh_pro_bulky": "I-Refresh Pro razno",
"hqd_i_refresh_pro_delicates": "I-Refresh Pro osjetljivo",
"hqd_i_refresh_pro_down": "I-Refresh Pro paperje",
"hqd_i_refresh_pro_shirt": "I-Refresh Pro košulje",
"hqd_i_refresh_pro_towel": "I-Refresh Pro ručnici",
"hqd_i_refresh_pro_wool": "I-Refresh Pro vuna",
"hqd_jacket": "Jakne",
"hqd_jeans": "Traperice",
"hqd_luxury": "Luxury",
@@ -471,6 +478,7 @@
"cottons_prewash": "Pamuk + Pretpranje",
"cottons_steam": "Pamuk + Para",
"cotton_care_59": "Pamuk 59 Min",
"cycle_ended": "Ciklus je završen",
"delicate_59": "Osjetljivo rublje 59",
"delicate_silk": "Osjetljiva svila 59'",
"delicate_silk_steam": "Osjetljiva svila + para",
@@ -754,6 +762,7 @@
"tailored_synthetic_and_coloured": "Tailored Synthetic Colored",
"total_care": "Potpuna njega",
"tumbling": "Sušilica",
"ultra_fresh": "Ultra Fresh",
"wool": "Vuna",
"wool_and_delicates_49": "Vuna/Osjetljivo 49'",
"wool_dry": "Suha vuna",
@@ -1083,7 +1092,6 @@
"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",
@@ -1228,6 +1236,7 @@
"hqd_bed_sheets": "Plahte",
"hqd_bulky": "Glomazni komadi",
"hqd_casual": "Opušteno",
"hqd_checkup": "Check Up ciklus provjere",
"hqd_cold_wind_30": "Hladni zrak, 30 minuta",
"hqd_cold_wind_timing": "Hladan zrak",
"hqd_cotton": "Pamuk",
@@ -1240,6 +1249,13 @@
"hqd_hygienic": "Higijenizacija",
"hqd_i_refresh": "I-Refresh",
"hqd_i_refresh_pro": "I-Refresh Pro",
"hqd_i_refresh_pro_babycare": "I-Refresh Pro dječja njega",
"hqd_i_refresh_pro_bulky": "I-Refresh Pro razno",
"hqd_i_refresh_pro_delicates": "I-Refresh Pro osjetljivo",
"hqd_i_refresh_pro_down": "I-Refresh Pro paperje",
"hqd_i_refresh_pro_shirt": "I-Refresh Pro košulje",
"hqd_i_refresh_pro_towel": "I-Refresh Pro ručnici",
"hqd_i_refresh_pro_wool": "I-Refresh Pro vuna",
"hqd_jacket": "Jakne",
"hqd_jeans": "Traperice",
"hqd_luxury": "Luxury",
@@ -1360,6 +1376,7 @@
"cottons_prewash": "Pamuk + Pretpranje",
"cottons_steam": "Pamuk + Para",
"cotton_care_59": "Pamuk 59 Min",
"cycle_ended": "Ciklus je završen",
"delicate_59": "Osjetljivo rublje 59",
"delicate_silk": "Osjetljiva svila 59'",
"delicate_silk_steam": "Osjetljiva svila + para",
@@ -1643,6 +1660,7 @@
"tailored_synthetic_and_coloured": "Tailored Synthetic Colored",
"total_care": "Potpuna njega",
"tumbling": "Sušilica",
"ultra_fresh": "Ultra Fresh",
"wool": "Vuna",
"wool_and_delicates_49": "Vuna/Osjetljivo 49'",
"wool_dry": "Suha vuna",
@@ -340,6 +340,7 @@
"hqd_bed_sheets": "Lenzuola",
"hqd_bulky": "Vestiti voluminosi",
"hqd_casual": "Casual",
"hqd_checkup": "Check-Up",
"hqd_cold_wind_30": "Brezza rinfrescante 30m",
"hqd_cold_wind_timing": "Aria Fredda",
"hqd_cotton": "Cotone",
@@ -352,6 +353,13 @@
"hqd_hygienic": "Igienizzante",
"hqd_i_refresh": "I-Refresh",
"hqd_i_refresh_pro": "I-Refresh Pro",
"hqd_i_refresh_pro_babycare": "I-Refresh Pro Babycare",
"hqd_i_refresh_pro_bulky": "I-Refresh Pro Voluminosi",
"hqd_i_refresh_pro_delicates": "I-Refresh Pro Delicati",
"hqd_i_refresh_pro_down": "I-Refresh Pro Piumino",
"hqd_i_refresh_pro_shirt": "I-Refresh Pro Camicia",
"hqd_i_refresh_pro_towel": "I-Refresh Pro Towel",
"hqd_i_refresh_pro_wool": "I-Refresh Pro Lana",
"hqd_jacket": "Giacche",
"hqd_jeans": "Jeans",
"hqd_luxury": "Capi Pregiati",
@@ -472,6 +480,7 @@
"cottons_prewash": "Cotone + Prelavaggio",
"cottons_steam": "Cotone + Vapore",
"cotton_care_59": "Cotton Care 59'",
"cycle_ended": "Programma terminato",
"delicate_59": "Delicati 59'",
"delicate_silk": "Delicati e Seta 59'",
"delicate_silk_steam": "Delicati e Seta + Vapore",
@@ -755,6 +764,7 @@
"tailored_synthetic_and_coloured": "Sartoriale Sintetico Colorato",
"total_care": "Total Care",
"tumbling": "Tumbling",
"ultra_fresh": "Ultra Fresh",
"wool": "Lana",
"wool_and_delicates_49": "Lana e Delicati 49'",
"wool_dry": "Asciugatura Lana",
@@ -1236,6 +1246,7 @@
"hqd_bed_sheets": "Lenzuola",
"hqd_bulky": "Vestiti voluminosi",
"hqd_casual": "Casual",
"hqd_checkup": "Check-Up",
"hqd_cold_wind_30": "Brezza rinfrescante 30m",
"hqd_cold_wind_timing": "Aria Fredda",
"hqd_cotton": "Cotone",
@@ -1248,6 +1259,13 @@
"hqd_hygienic": "Igienizzante",
"hqd_i_refresh": "I-Refresh",
"hqd_i_refresh_pro": "I-Refresh Pro",
"hqd_i_refresh_pro_babycare": "I-Refresh Pro Babycare",
"hqd_i_refresh_pro_bulky": "I-Refresh Pro Voluminosi",
"hqd_i_refresh_pro_delicates": "I-Refresh Pro Delicati",
"hqd_i_refresh_pro_down": "I-Refresh Pro Piumino",
"hqd_i_refresh_pro_shirt": "I-Refresh Pro Camicia",
"hqd_i_refresh_pro_towel": "I-Refresh Pro Towel",
"hqd_i_refresh_pro_wool": "I-Refresh Pro Lana",
"hqd_jacket": "Giacche",
"hqd_jeans": "Jeans",
"hqd_luxury": "Capi Pregiati",
@@ -1368,6 +1386,7 @@
"cottons_prewash": "Cotone + Prelavaggio",
"cottons_steam": "Cotone + Vapore",
"cotton_care_59": "Cotton Care 59'",
"cycle_ended": "Programma terminato",
"delicate_59": "Delicati 59'",
"delicate_silk": "Delicati e Seta 59'",
"delicate_silk_steam": "Delicati e Seta + Vapore",
@@ -1651,6 +1670,7 @@
"tailored_synthetic_and_coloured": "Sartoriale Sintetico Colorato",
"total_care": "Total Care",
"tumbling": "Tumbling",
"ultra_fresh": "Ultra Fresh",
"wool": "Lana",
"wool_and_delicates_49": "Lana e Delicati 49'",
"wool_dry": "Asciugatura Lana",
+20 -2
View File
@@ -194,7 +194,6 @@
"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",
@@ -339,6 +338,7 @@
"hqd_bed_sheets": "Beddengoed",
"hqd_bulky": "Grote artikelen",
"hqd_casual": "Casual",
"hqd_checkup": "Controle",
"hqd_cold_wind_30": "30 minuten koel briesje",
"hqd_cold_wind_timing": "Koude lucht",
"hqd_cotton": "Katoen",
@@ -351,6 +351,13 @@
"hqd_hygienic": "Ontsmetten",
"hqd_i_refresh": "I-Refresh",
"hqd_i_refresh_pro": "I-Refresh Pro",
"hqd_i_refresh_pro_babycare": "I-Refresh Pro Babyverzorging",
"hqd_i_refresh_pro_bulky": "I-Refresh Pro Volumineus",
"hqd_i_refresh_pro_delicates": "I-Refresh Pro Fijne was",
"hqd_i_refresh_pro_down": "I-Refresh Pro Dons",
"hqd_i_refresh_pro_shirt": "I-Refresh Pro Shirt",
"hqd_i_refresh_pro_towel": "I-Refresh Pro Handdoeken",
"hqd_i_refresh_pro_wool": "I-Refresh Pro Wol",
"hqd_jacket": "Jassen",
"hqd_jeans": "Jeans",
"hqd_luxury": "Luxury",
@@ -471,6 +478,7 @@
"cottons_prewash": "Katoen + voorwas",
"cottons_steam": "Katoen + Stoom",
"cotton_care_59": "Cotton Care 59 Min",
"cycle_ended": "Einde cyclus",
"delicate_59": "Fijne was 59'",
"delicate_silk": "Fijne was Zijde 59'",
"delicate_silk_steam": "Fijne was Zijde + Stoom",
@@ -754,6 +762,7 @@
"tailored_synthetic_and_coloured": "Tailored Synthetic Colored",
"total_care": "Total Care",
"tumbling": "Trommeldrogen",
"ultra_fresh": "Ultra Fresh",
"wool": "Wol",
"wool_and_delicates_49": "Wol/Fijne was 49'",
"wool_dry": "Wol drogen",
@@ -1083,7 +1092,6 @@
"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",
@@ -1228,6 +1236,7 @@
"hqd_bed_sheets": "Beddengoed",
"hqd_bulky": "Grote artikelen",
"hqd_casual": "Casual",
"hqd_checkup": "Controle",
"hqd_cold_wind_30": "30 minuten koel briesje",
"hqd_cold_wind_timing": "Koude lucht",
"hqd_cotton": "Katoen",
@@ -1240,6 +1249,13 @@
"hqd_hygienic": "Ontsmetten",
"hqd_i_refresh": "I-Refresh",
"hqd_i_refresh_pro": "I-Refresh Pro",
"hqd_i_refresh_pro_babycare": "I-Refresh Pro Babyverzorging",
"hqd_i_refresh_pro_bulky": "I-Refresh Pro Volumineus",
"hqd_i_refresh_pro_delicates": "I-Refresh Pro Fijne was",
"hqd_i_refresh_pro_down": "I-Refresh Pro Dons",
"hqd_i_refresh_pro_shirt": "I-Refresh Pro Shirt",
"hqd_i_refresh_pro_towel": "I-Refresh Pro Handdoeken",
"hqd_i_refresh_pro_wool": "I-Refresh Pro Wol",
"hqd_jacket": "Jassen",
"hqd_jeans": "Jeans",
"hqd_luxury": "Luxury",
@@ -1360,6 +1376,7 @@
"cottons_prewash": "Katoen + voorwas",
"cottons_steam": "Katoen + Stoom",
"cotton_care_59": "Cotton Care 59 Min",
"cycle_ended": "Einde cyclus",
"delicate_59": "Fijne was 59'",
"delicate_silk": "Fijne was Zijde 59'",
"delicate_silk_steam": "Fijne was Zijde + Stoom",
@@ -1643,6 +1660,7 @@
"tailored_synthetic_and_coloured": "Tailored Synthetic Colored",
"total_care": "Total Care",
"tumbling": "Trommeldrogen",
"ultra_fresh": "Ultra Fresh",
"wool": "Wol",
"wool_and_delicates_49": "Wol/Fijne was 49'",
"wool_dry": "Wol drogen",
+20 -2
View File
@@ -194,7 +194,6 @@
"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",
@@ -339,6 +338,7 @@
"hqd_bed_sheets": "Prześcieradła",
"hqd_bulky": "Elementy wielkogabarytowe",
"hqd_casual": "Nieformalny",
"hqd_checkup": "Kontrola",
"hqd_cold_wind_30": "Chłodna bryza 30 minut",
"hqd_cold_wind_timing": "Zimne powietrze",
"hqd_cotton": "Bawełna",
@@ -351,6 +351,13 @@
"hqd_hygienic": "Higienizacja",
"hqd_i_refresh": "I-Refresh",
"hqd_i_refresh_pro": "I-Refresh Pro",
"hqd_i_refresh_pro_babycare": "I-Refresh Pro Pielęgnacja niemowląt",
"hqd_i_refresh_pro_bulky": "I-Refresh Pro Duże przedmioty",
"hqd_i_refresh_pro_delicates": "I-Refresh Pro Delikatne",
"hqd_i_refresh_pro_down": "I-Refresh Pro Puch",
"hqd_i_refresh_pro_shirt": "I-Refresh Pro Koszula",
"hqd_i_refresh_pro_towel": "I-Refresh Pro Ręcznik",
"hqd_i_refresh_pro_wool": "I-Refresh Pro Wełna",
"hqd_jacket": "Kurtki",
"hqd_jeans": "Dżins",
"hqd_luxury": "Luxury",
@@ -471,6 +478,7 @@
"cottons_prewash": "Bawełna + pranie wstępne",
"cottons_steam": "Bawełna + Para",
"cotton_care_59": "Cotton Care 59 Min",
"cycle_ended": "Cykl zakończony",
"delicate_59": "Delikatne 59",
"delicate_silk": "Delikatny jedwab 59'",
"delicate_silk_steam": "Delikatny jedwab + Para",
@@ -754,6 +762,7 @@
"tailored_synthetic_and_coloured": "Tailored Synthetic Colored",
"total_care": "Total Care",
"tumbling": "Bęben",
"ultra_fresh": "Ultra Fresh",
"wool": "Wełna",
"wool_and_delicates_49": "Wełna/Delikatne 49'",
"wool_dry": "Suszenie wełny",
@@ -1083,7 +1092,6 @@
"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",
@@ -1228,6 +1236,7 @@
"hqd_bed_sheets": "Prześcieradła",
"hqd_bulky": "Elementy wielkogabarytowe",
"hqd_casual": "Nieformalny",
"hqd_checkup": "Kontrola",
"hqd_cold_wind_30": "Chłodna bryza 30 minut",
"hqd_cold_wind_timing": "Zimne powietrze",
"hqd_cotton": "Bawełna",
@@ -1240,6 +1249,13 @@
"hqd_hygienic": "Higienizacja",
"hqd_i_refresh": "I-Refresh",
"hqd_i_refresh_pro": "I-Refresh Pro",
"hqd_i_refresh_pro_babycare": "I-Refresh Pro Pielęgnacja niemowląt",
"hqd_i_refresh_pro_bulky": "I-Refresh Pro Duże przedmioty",
"hqd_i_refresh_pro_delicates": "I-Refresh Pro Delikatne",
"hqd_i_refresh_pro_down": "I-Refresh Pro Puch",
"hqd_i_refresh_pro_shirt": "I-Refresh Pro Koszula",
"hqd_i_refresh_pro_towel": "I-Refresh Pro Ręcznik",
"hqd_i_refresh_pro_wool": "I-Refresh Pro Wełna",
"hqd_jacket": "Kurtki",
"hqd_jeans": "Dżins",
"hqd_luxury": "Luxury",
@@ -1360,6 +1376,7 @@
"cottons_prewash": "Bawełna + pranie wstępne",
"cottons_steam": "Bawełna + Para",
"cotton_care_59": "Cotton Care 59 Min",
"cycle_ended": "Cykl zakończony",
"delicate_59": "Delikatne 59",
"delicate_silk": "Delikatny jedwab 59'",
"delicate_silk_steam": "Delikatny jedwab + Para",
@@ -1643,6 +1660,7 @@
"tailored_synthetic_and_coloured": "Tailored Synthetic Colored",
"total_care": "Total Care",
"tumbling": "Bęben",
"ultra_fresh": "Ultra Fresh",
"wool": "Wełna",
"wool_and_delicates_49": "Wełna/Delikatne 49'",
"wool_dry": "Suszenie wełny",
+20 -2
View File
@@ -194,7 +194,6 @@
"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",
@@ -339,6 +338,7 @@
"hqd_bed_sheets": "Lençóis",
"hqd_bulky": "Itens volumosos",
"hqd_casual": "Casual",
"hqd_checkup": "Check-Up",
"hqd_cold_wind_30": "Brisa fresca durante 30 minutos",
"hqd_cold_wind_timing": "Ar frio",
"hqd_cotton": "Algodão",
@@ -351,6 +351,13 @@
"hqd_hygienic": "Higienização",
"hqd_i_refresh": "I-Refresh",
"hqd_i_refresh_pro": "I-Refresh Pro",
"hqd_i_refresh_pro_babycare": "I-Refresh Pro Cuidados do bebé",
"hqd_i_refresh_pro_bulky": "I-Refresh Pro Itens volumosos",
"hqd_i_refresh_pro_delicates": "I-Refresh Pro Delicados",
"hqd_i_refresh_pro_down": "I-Refresh Pro Forros",
"hqd_i_refresh_pro_shirt": "I-Refresh Pro Camisas",
"hqd_i_refresh_pro_towel": "I-Refresh Pro Toalhas",
"hqd_i_refresh_pro_wool": "I-Refresh Pro Lãs",
"hqd_jacket": "Casacos",
"hqd_jeans": "Jeans",
"hqd_luxury": "Peças requintadas",
@@ -471,6 +478,7 @@
"cottons_prewash": "Algodões + Pré-lavagem",
"cottons_steam": "Algodão + Vapor",
"cotton_care_59": "Algodões 59 min",
"cycle_ended": "Fim do ciclo",
"delicate_59": "Delicados 59'",
"delicate_silk": "Seda delicada 59'",
"delicate_silk_steam": "Seda delicada + vapor",
@@ -754,6 +762,7 @@
"tailored_synthetic_and_coloured": "Tailored Synthetic Colored",
"total_care": "Cuidado Total",
"tumbling": "Secar na máquina",
"ultra_fresh": "Ultra Fresh",
"wool": "Lãs",
"wool_and_delicates_49": "Lãs/Delicados 49'",
"wool_dry": "Secagem de lãs",
@@ -1083,7 +1092,6 @@
"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",
@@ -1228,6 +1236,7 @@
"hqd_bed_sheets": "Lençóis",
"hqd_bulky": "Itens volumosos",
"hqd_casual": "Casual",
"hqd_checkup": "Check-Up",
"hqd_cold_wind_30": "Brisa fresca durante 30 minutos",
"hqd_cold_wind_timing": "Ar frio",
"hqd_cotton": "Algodão",
@@ -1240,6 +1249,13 @@
"hqd_hygienic": "Higienização",
"hqd_i_refresh": "I-Refresh",
"hqd_i_refresh_pro": "I-Refresh Pro",
"hqd_i_refresh_pro_babycare": "I-Refresh Pro Cuidados do bebé",
"hqd_i_refresh_pro_bulky": "I-Refresh Pro Itens volumosos",
"hqd_i_refresh_pro_delicates": "I-Refresh Pro Delicados",
"hqd_i_refresh_pro_down": "I-Refresh Pro Forros",
"hqd_i_refresh_pro_shirt": "I-Refresh Pro Camisas",
"hqd_i_refresh_pro_towel": "I-Refresh Pro Toalhas",
"hqd_i_refresh_pro_wool": "I-Refresh Pro Lãs",
"hqd_jacket": "Casacos",
"hqd_jeans": "Jeans",
"hqd_luxury": "Peças requintadas",
@@ -1360,6 +1376,7 @@
"cottons_prewash": "Algodões + Pré-lavagem",
"cottons_steam": "Algodão + Vapor",
"cotton_care_59": "Algodões 59 min",
"cycle_ended": "Fim do ciclo",
"delicate_59": "Delicados 59'",
"delicate_silk": "Seda delicada 59'",
"delicate_silk_steam": "Seda delicada + vapor",
@@ -1643,6 +1660,7 @@
"tailored_synthetic_and_coloured": "Tailored Synthetic Colored",
"total_care": "Cuidado Total",
"tumbling": "Secar na máquina",
"ultra_fresh": "Ultra Fresh",
"wool": "Lãs",
"wool_and_delicates_49": "Lãs/Delicados 49'",
"wool_dry": "Secagem de lãs",
+20 -2
View File
@@ -194,7 +194,6 @@
"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",
@@ -339,6 +338,7 @@
"hqd_bed_sheets": "Cearceafuri",
"hqd_bulky": "Articole voluminoase",
"hqd_casual": "Articole obișnuite",
"hqd_checkup": "Verificare",
"hqd_cold_wind_30": "Vânt rece 30 minute",
"hqd_cold_wind_timing": "Aer rece",
"hqd_cotton": "Bumbac",
@@ -351,6 +351,13 @@
"hqd_hygienic": "Igienizare",
"hqd_i_refresh": "I-Refresh",
"hqd_i_refresh_pro": "I-Refresh Pro",
"hqd_i_refresh_pro_babycare": "I-Refresh Pro Îngrijire bebeluși",
"hqd_i_refresh_pro_bulky": "I-Refresh Pro Voluminoase",
"hqd_i_refresh_pro_delicates": "I-Refresh Pro Delicate",
"hqd_i_refresh_pro_down": "I-Refresh Pro Puf",
"hqd_i_refresh_pro_shirt": "I-Refresh Pro Tricou",
"hqd_i_refresh_pro_towel": "I-Refresh Pro Prosoape",
"hqd_i_refresh_pro_wool": "I-Refresh Pro Lână",
"hqd_jacket": "Jachete",
"hqd_jeans": "Blugi",
"hqd_luxury": "Luxury",
@@ -471,6 +478,7 @@
"cottons_prewash": "Bumbac + Prespălare",
"cottons_steam": "Bumbac + Abur",
"cotton_care_59": "Bumbac 59 Min",
"cycle_ended": "Ciclul s-a încheiat",
"delicate_59": "Delicate 59'",
"delicate_silk": "Mătase delicată 59'",
"delicate_silk_steam": "Mătase delicată + abur",
@@ -754,6 +762,7 @@
"tailored_synthetic_and_coloured": "Tailored Synthetic Colored",
"total_care": "Îngrijire totală",
"tumbling": "Tambur",
"ultra_fresh": "Ultra Fresh",
"wool": "Lână",
"wool_and_delicates_49": "Lână/Delicate 49'",
"wool_dry": "Uscarea lânii",
@@ -1083,7 +1092,6 @@
"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",
@@ -1228,6 +1236,7 @@
"hqd_bed_sheets": "Cearceafuri",
"hqd_bulky": "Articole voluminoase",
"hqd_casual": "Articole obișnuite",
"hqd_checkup": "Verificare",
"hqd_cold_wind_30": "Vânt rece 30 minute",
"hqd_cold_wind_timing": "Aer rece",
"hqd_cotton": "Bumbac",
@@ -1240,6 +1249,13 @@
"hqd_hygienic": "Igienizare",
"hqd_i_refresh": "I-Refresh",
"hqd_i_refresh_pro": "I-Refresh Pro",
"hqd_i_refresh_pro_babycare": "I-Refresh Pro Îngrijire bebeluși",
"hqd_i_refresh_pro_bulky": "I-Refresh Pro Voluminoase",
"hqd_i_refresh_pro_delicates": "I-Refresh Pro Delicate",
"hqd_i_refresh_pro_down": "I-Refresh Pro Puf",
"hqd_i_refresh_pro_shirt": "I-Refresh Pro Tricou",
"hqd_i_refresh_pro_towel": "I-Refresh Pro Prosoape",
"hqd_i_refresh_pro_wool": "I-Refresh Pro Lână",
"hqd_jacket": "Jachete",
"hqd_jeans": "Blugi",
"hqd_luxury": "Luxury",
@@ -1360,6 +1376,7 @@
"cottons_prewash": "Bumbac + Prespălare",
"cottons_steam": "Bumbac + Abur",
"cotton_care_59": "Bumbac 59 Min",
"cycle_ended": "Ciclul s-a încheiat",
"delicate_59": "Delicate 59'",
"delicate_silk": "Mătase delicată 59'",
"delicate_silk_steam": "Mătase delicată + abur",
@@ -1643,6 +1660,7 @@
"tailored_synthetic_and_coloured": "Tailored Synthetic Colored",
"total_care": "Îngrijire totală",
"tumbling": "Tambur",
"ultra_fresh": "Ultra Fresh",
"wool": "Lână",
"wool_and_delicates_49": "Lână/Delicate 49'",
"wool_dry": "Uscarea lânii",
+20 -2
View File
@@ -194,7 +194,6 @@
"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": "специальные",
@@ -339,6 +338,7 @@
"hqd_bed_sheets": "Простыни",
"hqd_bulky": "Объемные изделия",
"hqd_casual": "Повседневная одежда",
"hqd_checkup": "Проверка",
"hqd_cold_wind_30": "Прохладный обдув 30 минут",
"hqd_cold_wind_timing": "Холодный воздух",
"hqd_cotton": "Хлопок",
@@ -351,6 +351,13 @@
"hqd_hygienic": "Санитарная обработка",
"hqd_i_refresh": "I-Refresh",
"hqd_i_refresh_pro": "I-Refresh Pro",
"hqd_i_refresh_pro_babycare": "I-Refresh Pro Детские вещи",
"hqd_i_refresh_pro_bulky": "I-Refresh Pro Объемные изделия",
"hqd_i_refresh_pro_delicates": "I-Refresh Pro Деликатные изделия",
"hqd_i_refresh_pro_down": "I-Refresh Pro Пух",
"hqd_i_refresh_pro_shirt": "I-Refresh Pro Рубашки",
"hqd_i_refresh_pro_towel": "I-Refresh Pro Полотенца",
"hqd_i_refresh_pro_wool": "I-Refresh Pro Шерсть",
"hqd_jacket": "Куртки",
"hqd_jeans": "Джинсы",
"hqd_luxury": "Люксовые изделия",
@@ -471,6 +478,7 @@
"cottons_prewash": "хлопок + предвар.",
"cottons_steam": "Хлопок + Пар",
"cotton_care_59": "хлопок 59 минут",
"cycle_ended": "Окончание цикла",
"delicate_59": "Деликатная 59 мин.",
"delicate_silk": "Деликатная ткань (шелк) 59'",
"delicate_silk_steam": "Деликатная ткань (шелк) + пар",
@@ -754,6 +762,7 @@
"tailored_synthetic_and_coloured": "Tailored Synthetic Colored",
"total_care": "Общий уход",
"tumbling": "Барабан",
"ultra_fresh": "Ultra Fresh",
"wool": "Шерсть",
"wool_and_delicates_49": "шерсть/деликатные 49'",
"wool_dry": "Сушка шерсти",
@@ -1083,7 +1092,6 @@
"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": "специальные",
@@ -1228,6 +1236,7 @@
"hqd_bed_sheets": "Простыни",
"hqd_bulky": "Объемные изделия",
"hqd_casual": "Повседневная одежда",
"hqd_checkup": "Проверка",
"hqd_cold_wind_30": "Прохладный обдув 30 минут",
"hqd_cold_wind_timing": "Холодный воздух",
"hqd_cotton": "Хлопок",
@@ -1240,6 +1249,13 @@
"hqd_hygienic": "Санитарная обработка",
"hqd_i_refresh": "I-Refresh",
"hqd_i_refresh_pro": "I-Refresh Pro",
"hqd_i_refresh_pro_babycare": "I-Refresh Pro Детские вещи",
"hqd_i_refresh_pro_bulky": "I-Refresh Pro Объемные изделия",
"hqd_i_refresh_pro_delicates": "I-Refresh Pro Деликатные изделия",
"hqd_i_refresh_pro_down": "I-Refresh Pro Пух",
"hqd_i_refresh_pro_shirt": "I-Refresh Pro Рубашки",
"hqd_i_refresh_pro_towel": "I-Refresh Pro Полотенца",
"hqd_i_refresh_pro_wool": "I-Refresh Pro Шерсть",
"hqd_jacket": "Куртки",
"hqd_jeans": "Джинсы",
"hqd_luxury": "Люксовые изделия",
@@ -1360,6 +1376,7 @@
"cottons_prewash": "хлопок + предвар.",
"cottons_steam": "Хлопок + Пар",
"cotton_care_59": "хлопок 59 минут",
"cycle_ended": "Окончание цикла",
"delicate_59": "Деликатная 59 мин.",
"delicate_silk": "Деликатная ткань (шелк) 59'",
"delicate_silk_steam": "Деликатная ткань (шелк) + пар",
@@ -1643,6 +1660,7 @@
"tailored_synthetic_and_coloured": "Tailored Synthetic Colored",
"total_care": "Общий уход",
"tumbling": "Барабан",
"ultra_fresh": "Ultra Fresh",
"wool": "Шерсть",
"wool_and_delicates_49": "шерсть/деликатные 49'",
"wool_dry": "Сушка шерсти",
+20 -2
View File
@@ -194,7 +194,6 @@
"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",
@@ -339,6 +338,7 @@
"hqd_bed_sheets": "Posteľná bielizeň",
"hqd_bulky": "Objemné položky",
"hqd_casual": "Neformálne",
"hqd_checkup": "Kontrola",
"hqd_cold_wind_30": "Chladný vánok 30 minút",
"hqd_cold_wind_timing": "Studený vzduch",
"hqd_cotton": "Bavlna",
@@ -351,6 +351,13 @@
"hqd_hygienic": "Hygienizácia",
"hqd_i_refresh": "I-Refresh",
"hqd_i_refresh_pro": "I-Refresh Pro",
"hqd_i_refresh_pro_babycare": "I-Refresh Pro detské",
"hqd_i_refresh_pro_bulky": "I-Refresh Pro veľké množstvo",
"hqd_i_refresh_pro_delicates": "I-Refresh Pro jemné",
"hqd_i_refresh_pro_down": "I-Refresh Pro páperie",
"hqd_i_refresh_pro_shirt": "I-Refresh Pro košele",
"hqd_i_refresh_pro_towel": "I-Refresh Pro uteráky",
"hqd_i_refresh_pro_wool": "I-Refresh Pro vlna",
"hqd_jacket": "Bundy",
"hqd_jeans": "Džínsy",
"hqd_luxury": "Luxury",
@@ -471,6 +478,7 @@
"cottons_prewash": "Bavlna + Predpierka",
"cottons_steam": "Bavlna + Para",
"cotton_care_59": "Bavlna 59 Min",
"cycle_ended": "Cyklus sa skončil",
"delicate_59": "Jemné materiály 59 min.",
"delicate_silk": "Jemný hodváb 59'",
"delicate_silk_steam": "Jemný hodváb + Para",
@@ -754,6 +762,7 @@
"tailored_synthetic_and_coloured": "Tailored Synthetic Colored",
"total_care": "Celková starostlivosť",
"tumbling": "Bubnové sušenie",
"ultra_fresh": "Ultra Fresh",
"wool": "Vlna",
"wool_and_delicates_49": "Vlna/Jemné 49'",
"wool_dry": "Vlna suchá",
@@ -1083,7 +1092,6 @@
"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",
@@ -1228,6 +1236,7 @@
"hqd_bed_sheets": "Posteľná bielizeň",
"hqd_bulky": "Objemné položky",
"hqd_casual": "Neformálne",
"hqd_checkup": "Kontrola",
"hqd_cold_wind_30": "Chladný vánok 30 minút",
"hqd_cold_wind_timing": "Studený vzduch",
"hqd_cotton": "Bavlna",
@@ -1240,6 +1249,13 @@
"hqd_hygienic": "Hygienizácia",
"hqd_i_refresh": "I-Refresh",
"hqd_i_refresh_pro": "I-Refresh Pro",
"hqd_i_refresh_pro_babycare": "I-Refresh Pro detské",
"hqd_i_refresh_pro_bulky": "I-Refresh Pro veľké množstvo",
"hqd_i_refresh_pro_delicates": "I-Refresh Pro jemné",
"hqd_i_refresh_pro_down": "I-Refresh Pro páperie",
"hqd_i_refresh_pro_shirt": "I-Refresh Pro košele",
"hqd_i_refresh_pro_towel": "I-Refresh Pro uteráky",
"hqd_i_refresh_pro_wool": "I-Refresh Pro vlna",
"hqd_jacket": "Bundy",
"hqd_jeans": "Džínsy",
"hqd_luxury": "Luxury",
@@ -1360,6 +1376,7 @@
"cottons_prewash": "Bavlna + Predpierka",
"cottons_steam": "Bavlna + Para",
"cotton_care_59": "Bavlna 59 Min",
"cycle_ended": "Cyklus sa skončil",
"delicate_59": "Jemné materiály 59 min.",
"delicate_silk": "Jemný hodváb 59'",
"delicate_silk_steam": "Jemný hodváb + Para",
@@ -1643,6 +1660,7 @@
"tailored_synthetic_and_coloured": "Tailored Synthetic Colored",
"total_care": "Celková starostlivosť",
"tumbling": "Bubnové sušenie",
"ultra_fresh": "Ultra Fresh",
"wool": "Vlna",
"wool_and_delicates_49": "Vlna/Jemné 49'",
"wool_dry": "Vlna suchá",
+20 -2
View File
@@ -194,7 +194,6 @@
"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",
@@ -339,6 +338,7 @@
"hqd_bed_sheets": "Rjuhe",
"hqd_bulky": "Večji kosi",
"hqd_casual": "Za prosti čas",
"hqd_checkup": "Pregled",
"hqd_cold_wind_30": "Hladen vetrič 30 minut",
"hqd_cold_wind_timing": "Mrzel zrak",
"hqd_cotton": "Bombaž",
@@ -351,6 +351,13 @@
"hqd_hygienic": "Higienizacija",
"hqd_i_refresh": "I-Refresh",
"hqd_i_refresh_pro": "I-Refresh Pro",
"hqd_i_refresh_pro_babycare": "I-Refresh Pro otroška oblačila",
"hqd_i_refresh_pro_bulky": "I-Refresh Pro večji kosi",
"hqd_i_refresh_pro_delicates": "I-Refresh Pro občutljiva oblačila",
"hqd_i_refresh_pro_down": "I-Refresh Pro puh",
"hqd_i_refresh_pro_shirt": "I-Refresh Pro srajce",
"hqd_i_refresh_pro_towel": "I-Refresh Pro brisače",
"hqd_i_refresh_pro_wool": "I-Refresh Pro volna",
"hqd_jacket": "Suknjiči",
"hqd_jeans": "Kavbojke",
"hqd_luxury": "Luxury",
@@ -471,6 +478,7 @@
"cottons_prewash": "Bombaž + predpranje",
"cottons_steam": "Bombaž + Para",
"cotton_care_59": "Bombaž 59 min.",
"cycle_ended": "Cikel se je končal",
"delicate_59": "Občutljivo 59'",
"delicate_silk": "Občutljiva svila 59'",
"delicate_silk_steam": "Občutljiva svila + para",
@@ -754,6 +762,7 @@
"tailored_synthetic_and_coloured": "Tailored Synthetic Colored",
"total_care": "Popolna nega",
"tumbling": "Boben",
"ultra_fresh": "Ultra Fresh",
"wool": "Volna",
"wool_and_delicates_49": "Volna/Občutljive tkanine 49'",
"wool_dry": "Sušenje volne",
@@ -1083,7 +1092,6 @@
"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",
@@ -1228,6 +1236,7 @@
"hqd_bed_sheets": "Rjuhe",
"hqd_bulky": "Večji kosi",
"hqd_casual": "Za prosti čas",
"hqd_checkup": "Pregled",
"hqd_cold_wind_30": "Hladen vetrič 30 minut",
"hqd_cold_wind_timing": "Mrzel zrak",
"hqd_cotton": "Bombaž",
@@ -1240,6 +1249,13 @@
"hqd_hygienic": "Higienizacija",
"hqd_i_refresh": "I-Refresh",
"hqd_i_refresh_pro": "I-Refresh Pro",
"hqd_i_refresh_pro_babycare": "I-Refresh Pro otroška oblačila",
"hqd_i_refresh_pro_bulky": "I-Refresh Pro večji kosi",
"hqd_i_refresh_pro_delicates": "I-Refresh Pro občutljiva oblačila",
"hqd_i_refresh_pro_down": "I-Refresh Pro puh",
"hqd_i_refresh_pro_shirt": "I-Refresh Pro srajce",
"hqd_i_refresh_pro_towel": "I-Refresh Pro brisače",
"hqd_i_refresh_pro_wool": "I-Refresh Pro volna",
"hqd_jacket": "Suknjiči",
"hqd_jeans": "Kavbojke",
"hqd_luxury": "Luxury",
@@ -1360,6 +1376,7 @@
"cottons_prewash": "Bombaž + predpranje",
"cottons_steam": "Bombaž + Para",
"cotton_care_59": "Bombaž 59 min.",
"cycle_ended": "Cikel se je končal",
"delicate_59": "Občutljivo 59'",
"delicate_silk": "Občutljiva svila 59'",
"delicate_silk_steam": "Občutljiva svila + para",
@@ -1643,6 +1660,7 @@
"tailored_synthetic_and_coloured": "Tailored Synthetic Colored",
"total_care": "Popolna nega",
"tumbling": "Boben",
"ultra_fresh": "Ultra Fresh",
"wool": "Volna",
"wool_and_delicates_49": "Volna/Občutljive tkanine 49'",
"wool_dry": "Sušenje volne",
+20 -2
View File
@@ -194,7 +194,6 @@
"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",
@@ -339,6 +338,7 @@
"hqd_bed_sheets": "Posteljina",
"hqd_bulky": "Glomazni artikli",
"hqd_casual": "Neformalno",
"hqd_checkup": "Provera",
"hqd_cold_wind_30": "Hladan vazduh 30 minuta",
"hqd_cold_wind_timing": "Hladan vazduh",
"hqd_cotton": "Pamuk",
@@ -351,6 +351,13 @@
"hqd_hygienic": "Higijenski",
"hqd_i_refresh": "I-Refresh",
"hqd_i_refresh_pro": "I-Refresh Pro",
"hqd_i_refresh_pro_babycare": "I-Refresh Pro Babycare",
"hqd_i_refresh_pro_bulky": "I-Refresh Pro kabaste stvari",
"hqd_i_refresh_pro_delicates": "I-Refresh Pro osetljive tkanine",
"hqd_i_refresh_pro_down": "I-Refresh Pro perje",
"hqd_i_refresh_pro_shirt": "I-Refresh Pro košulja",
"hqd_i_refresh_pro_towel": "I-Refresh Pro peškir",
"hqd_i_refresh_pro_wool": "I-Refresh Pro vuna",
"hqd_jacket": "Jakne",
"hqd_jeans": "Džins",
"hqd_luxury": "Luksuzno",
@@ -471,6 +478,7 @@
"cottons_prewash": "Pamuk + Predpranje",
"cottons_steam": "Pamuk + Para",
"cotton_care_59": "Pamuk 59 Min",
"cycle_ended": "Ciklus je završen",
"delicate_59": "Delikatni 59'",
"delicate_silk": "Osetljiva svila 59'",
"delicate_silk_steam": "Osetljiva svila + para",
@@ -754,6 +762,7 @@
"tailored_synthetic_and_coloured": "Tailored Synthetic Colored",
"total_care": "Kompletna nega",
"tumbling": "Sušenje",
"ultra_fresh": "Ultra Fresh",
"wool": "Vuna",
"wool_and_delicates_49": "Vuna/Delikatni 49'",
"wool_dry": "Sušenje vune",
@@ -1083,7 +1092,6 @@
"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",
@@ -1228,6 +1236,7 @@
"hqd_bed_sheets": "Posteljina",
"hqd_bulky": "Glomazni artikli",
"hqd_casual": "Neformalno",
"hqd_checkup": "Provera",
"hqd_cold_wind_30": "Hladan vazduh 30 minuta",
"hqd_cold_wind_timing": "Hladan vazduh",
"hqd_cotton": "Pamuk",
@@ -1240,6 +1249,13 @@
"hqd_hygienic": "Higijenski",
"hqd_i_refresh": "I-Refresh",
"hqd_i_refresh_pro": "I-Refresh Pro",
"hqd_i_refresh_pro_babycare": "I-Refresh Pro Babycare",
"hqd_i_refresh_pro_bulky": "I-Refresh Pro kabaste stvari",
"hqd_i_refresh_pro_delicates": "I-Refresh Pro osetljive tkanine",
"hqd_i_refresh_pro_down": "I-Refresh Pro perje",
"hqd_i_refresh_pro_shirt": "I-Refresh Pro košulja",
"hqd_i_refresh_pro_towel": "I-Refresh Pro peškir",
"hqd_i_refresh_pro_wool": "I-Refresh Pro vuna",
"hqd_jacket": "Jakne",
"hqd_jeans": "Džins",
"hqd_luxury": "Luksuzno",
@@ -1360,6 +1376,7 @@
"cottons_prewash": "Pamuk + Predpranje",
"cottons_steam": "Pamuk + Para",
"cotton_care_59": "Pamuk 59 Min",
"cycle_ended": "Ciklus je završen",
"delicate_59": "Delikatni 59'",
"delicate_silk": "Osetljiva svila 59'",
"delicate_silk_steam": "Osetljiva svila + para",
@@ -1643,6 +1660,7 @@
"tailored_synthetic_and_coloured": "Tailored Synthetic Colored",
"total_care": "Kompletna nega",
"tumbling": "Sušenje",
"ultra_fresh": "Ultra Fresh",
"wool": "Vuna",
"wool_and_delicates_49": "Vuna/Delikatni 49'",
"wool_dry": "Sušenje vune",
+20 -2
View File
@@ -194,7 +194,6 @@
"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",
@@ -339,6 +338,7 @@
"hqd_bed_sheets": "Çarşaflar",
"hqd_bulky": "Hacimli eşyalar",
"hqd_casual": "Gündelik",
"hqd_checkup": "Check-up",
"hqd_cold_wind_30": "Serin esinti 30 dakika",
"hqd_cold_wind_timing": "Soğuk Hava",
"hqd_cotton": "Pamuk",
@@ -351,6 +351,13 @@
"hqd_hygienic": "Hijyen",
"hqd_i_refresh": "I-Refresh",
"hqd_i_refresh_pro": "I-Refresh Pro",
"hqd_i_refresh_pro_babycare": "I-Refresh Pro Bebek Bakımı",
"hqd_i_refresh_pro_bulky": "I-Refresh Pro Hacimli Eşyalar",
"hqd_i_refresh_pro_delicates": "I-Refresh Pro Narinler",
"hqd_i_refresh_pro_down": "I-Refresh Pro Kuş Tüyü",
"hqd_i_refresh_pro_shirt": "I-Refresh Pro Gömlek",
"hqd_i_refresh_pro_towel": "I-Refresh Pro Havlu",
"hqd_i_refresh_pro_wool": "I-Refresh Pro Yün",
"hqd_jacket": "Ceketler",
"hqd_jeans": "Kot pantolon",
"hqd_luxury": "Konfor",
@@ -471,6 +478,7 @@
"cottons_prewash": "Pamuklular + Ön Yıkama",
"cottons_steam": "Pamuklular + Buhar",
"cotton_care_59": "Pamuklular 59 dk",
"cycle_ended": "Program sona erdi",
"delicate_59": "Narin 59'",
"delicate_silk": "Hassas İpek 59'",
"delicate_silk_steam": "Hassas İpek + Buhar",
@@ -754,6 +762,7 @@
"tailored_synthetic_and_coloured": "Tailored Synthetic Colored",
"total_care": "Toplam Bakım",
"tumbling": "Döndürme",
"ultra_fresh": "Ultra Fresh",
"wool": "Yünlüler",
"wool_and_delicates_49": "Yünlü/Hassas 49'",
"wool_dry": "Yünlü kurutma",
@@ -1083,7 +1092,6 @@
"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",
@@ -1228,6 +1236,7 @@
"hqd_bed_sheets": "Çarşaflar",
"hqd_bulky": "Hacimli eşyalar",
"hqd_casual": "Gündelik",
"hqd_checkup": "Check-up",
"hqd_cold_wind_30": "Serin esinti 30 dakika",
"hqd_cold_wind_timing": "Soğuk Hava",
"hqd_cotton": "Pamuk",
@@ -1240,6 +1249,13 @@
"hqd_hygienic": "Hijyen",
"hqd_i_refresh": "I-Refresh",
"hqd_i_refresh_pro": "I-Refresh Pro",
"hqd_i_refresh_pro_babycare": "I-Refresh Pro Bebek Bakımı",
"hqd_i_refresh_pro_bulky": "I-Refresh Pro Hacimli Eşyalar",
"hqd_i_refresh_pro_delicates": "I-Refresh Pro Narinler",
"hqd_i_refresh_pro_down": "I-Refresh Pro Kuş Tüyü",
"hqd_i_refresh_pro_shirt": "I-Refresh Pro Gömlek",
"hqd_i_refresh_pro_towel": "I-Refresh Pro Havlu",
"hqd_i_refresh_pro_wool": "I-Refresh Pro Yün",
"hqd_jacket": "Ceketler",
"hqd_jeans": "Kot pantolon",
"hqd_luxury": "Konfor",
@@ -1360,6 +1376,7 @@
"cottons_prewash": "Pamuklular + Ön Yıkama",
"cottons_steam": "Pamuklular + Buhar",
"cotton_care_59": "Pamuklular 59 dk",
"cycle_ended": "Program sona erdi",
"delicate_59": "Narin 59'",
"delicate_silk": "Hassas İpek 59'",
"delicate_silk_steam": "Hassas İpek + Buhar",
@@ -1643,6 +1660,7 @@
"tailored_synthetic_and_coloured": "Tailored Synthetic Colored",
"total_care": "Toplam Bakım",
"tumbling": "Döndürme",
"ultra_fresh": "Ultra Fresh",
"wool": "Yünlüler",
"wool_and_delicates_49": "Yünlü/Hassas 49'",
"wool_dry": "Yünlü kurutma",
+20 -2
View File
@@ -187,7 +187,6 @@
"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": "特殊",
@@ -332,6 +331,7 @@
"hqd_bed_sheets": "床单",
"hqd_bulky": "大件物品",
"hqd_casual": "休闲",
"hqd_checkup": "检测",
"hqd_cold_wind_30": "凉风 30 分钟",
"hqd_cold_wind_timing": "冷气",
"hqd_cotton": "棉布",
@@ -344,6 +344,13 @@
"hqd_hygienic": "卫生保护",
"hqd_i_refresh": "I-Refresh",
"hqd_i_refresh_pro": "I-Refresh Pro",
"hqd_i_refresh_pro_babycare": "I-Refresh Pro 婴儿衣物",
"hqd_i_refresh_pro_bulky": "I-Refresh Pro 大件",
"hqd_i_refresh_pro_delicates": "I-Refresh Pro 精致衣物",
"hqd_i_refresh_pro_down": "I-Refresh Pro 羽绒",
"hqd_i_refresh_pro_shirt": "I-Refresh Pro 衬衫",
"hqd_i_refresh_pro_towel": "I-Refresh Pro 毛巾",
"hqd_i_refresh_pro_wool": "I-Refresh Pro 羊毛衣物",
"hqd_jacket": "夹克",
"hqd_jeans": "牛仔裤",
"hqd_luxury": "奢侈衣物",
@@ -464,6 +471,7 @@
"cottons_prewash": "棉麻+预洗",
"cottons_steam": "棉质 + 蒸汽",
"cotton_care_59": "棉麻洗59\"",
"cycle_ended": "循环已结束",
"delicate_59": "精致 59'",
"delicate_silk": "精致丝绸 59'",
"delicate_silk_steam": "精致丝绸 + 蒸汽",
@@ -747,6 +755,7 @@
"tailored_synthetic_and_coloured": "Tailored Synthetic Colored",
"total_care": "全面护理",
"tumbling": "滚筒烘干",
"ultra_fresh": "Ultra Fresh",
"wool": "羊毛衣物",
"wool_and_delicates_49": "羊毛",
"wool_dry": "羊毛衣物烘干",
@@ -1069,7 +1078,6 @@
"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": "特殊",
@@ -1214,6 +1222,7 @@
"hqd_bed_sheets": "床单",
"hqd_bulky": "大件物品",
"hqd_casual": "休闲",
"hqd_checkup": "检测",
"hqd_cold_wind_30": "凉风 30 分钟",
"hqd_cold_wind_timing": "冷气",
"hqd_cotton": "棉布",
@@ -1226,6 +1235,13 @@
"hqd_hygienic": "卫生保护",
"hqd_i_refresh": "I-Refresh",
"hqd_i_refresh_pro": "I-Refresh Pro",
"hqd_i_refresh_pro_babycare": "I-Refresh Pro 婴儿衣物",
"hqd_i_refresh_pro_bulky": "I-Refresh Pro 大件",
"hqd_i_refresh_pro_delicates": "I-Refresh Pro 精致衣物",
"hqd_i_refresh_pro_down": "I-Refresh Pro 羽绒",
"hqd_i_refresh_pro_shirt": "I-Refresh Pro 衬衫",
"hqd_i_refresh_pro_towel": "I-Refresh Pro 毛巾",
"hqd_i_refresh_pro_wool": "I-Refresh Pro 羊毛衣物",
"hqd_jacket": "夹克",
"hqd_jeans": "牛仔裤",
"hqd_luxury": "奢侈衣物",
@@ -1346,6 +1362,7 @@
"cottons_prewash": "棉麻+预洗",
"cottons_steam": "棉质 + 蒸汽",
"cotton_care_59": "棉麻洗59\"",
"cycle_ended": "循环已结束",
"delicate_59": "精致 59'",
"delicate_silk": "精致丝绸 59'",
"delicate_silk_steam": "精致丝绸 + 蒸汽",
@@ -1629,6 +1646,7 @@
"tailored_synthetic_and_coloured": "Tailored Synthetic Colored",
"total_care": "全面护理",
"tumbling": "滚筒烘干",
"ultra_fresh": "Ultra Fresh",
"wool": "羊毛衣物",
"wool_and_delicates_49": "羊毛",
"wool_dry": "羊毛衣物烘干",
+10 -16
View File
@@ -1,15 +1,3 @@
## Update: [Answer from Haier](https://github.com/Andre0512/hon/issues/147#issuecomment-1902075829)
## Have a look at [Takedown FAQs](https://github.com/Andre0512/hon/blob/main/takedown_faq.md) and [Timeline of events](https://github.com/Andre0512/hon/blob/main/takedown_timeline.md)
## 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
[![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)
@@ -22,8 +10,8 @@ Home Assistant integration for [Haier's mobile app hOn](https://hon-smarthome.co
[![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 Models](https://img.shields.io/badge/Models-130-yellowgreen)](https://github.com/Andre0512/hon#supported-appliances)
[![Supported Entities](https://img.shields.io/badge/Entities-320-crimson)](https://github.com/Andre0512/hon#supported-appliances)
## Supported Appliances
_Click to expand..._
@@ -174,6 +162,8 @@ Support has been confirmed for these **6 models**, but many more will work. Plea
| --- | --- | --- | --- |
| Buzzer Disabled | `volume-off` | `switch` | `buzzerDisabled` |
| Dish Washer | `dishwasher` | `switch` | `startProgram` / `stopProgram` |
| Light status | | `light` | `settings.lightStatus` |
| Water hard | `water` | `number` | `settings.waterHard` |
#### Configs
| Name | Icon | Entity | Key |
| --- | --- | --- | --- |
@@ -185,6 +175,7 @@ Support has been confirmed for these **6 models**, but many more will work. Plea
| Open Door | `door-open` | `switch` | `startProgram.openDoor` |
| Program | | `select` | `startProgram.program` |
| Remaining Time | `timer` | `select` | `startProgram.remainingTime` |
| Tab Status | `silverware-clean` | `switch` | `startProgram.tabStatus` |
| Temperature | `thermometer` | `select` | `startProgram.temp` |
| Three in One | `numeric-3-box-outline` | `switch` | `startProgram.threeInOne` |
| Water hard | `water` | `number` | `startProgram.waterHard` |
@@ -465,11 +456,12 @@ Support has been confirmed for these **22 models**, but many more will work. Ple
![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).
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
- HWS247FDU1
- HWS42GDAU1
- HWS77GDAU1
### Wine Cellar Entities
#### Controls
@@ -608,9 +600,10 @@ Support has been confirmed for these **15 models**, but many more will work. Ple
![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).
Support has been confirmed for these **41 models**, but many more will work. Please add already supported devices [with this form to complete the list](https://forms.gle/bTSD8qFotdZFytbf8).
#### Haier
- HW80-B1439N
- HW80-B14959TU1
- HW80-B14959S8U1S
- HW80-B14979TU1
@@ -623,6 +616,7 @@ Support has been confirmed for these **39 models**, but many more will work. Ple
- HW110-14979
#### Hoover
- H5WPB4 27BC8/1-S
- H5WPB447AMBC/1-S
- H7W 412MBCR-80
- H7W 610AMBC-80
+1 -1
View File
@@ -1 +1 @@
pyhOn==0.15.15
pyhOn==0.16.0
+7
View File
@@ -1,5 +1,10 @@
# This file helps to manage the model lists for README.md and info.md
# Execute scripts/create_docs.py to refresh
# Add your device here or use this https://forms.gle/bTSD8qFotdZFytbf8
wm:
haier:
- "HW80-B1439N"
- "HW80-B14959TU1"
- "HW80-B14959S8U1S"
- "HW80-B14979TU1"
@@ -11,6 +16,7 @@ wm:
- "HW100-B14959U1"
- "HW110-14979"
hoover:
- "H5WPB4 27BC8/1-S"
- "H5WPB447AMBC/1-S"
- "H7W 412MBCR-80"
- "H7W 610AMBC-80"
@@ -154,6 +160,7 @@ wc:
haier:
- "HWS247FDU1"
- "HWS42GDAU1"
- "HWS77GDAU1"
ap:
hoover:
- "HHP30C011"