@ledvance/base 1.3.21 → 1.3.23

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/localazy.json CHANGED
@@ -927,7 +927,10 @@
927
927
  "MATCH:energyconsumption_emptydata",
928
928
  "MATCH:date_type",
929
929
  "MATCH:cancel_dialog_leave_unsaved_vacation_note",
930
- "MATCH:mood_string_mode_light_show"
930
+ "MATCH:mood_string_mode_light_show",
931
+ "MATCH:thermostat_scene",
932
+ "MATCH:thermostat_vacationplan",
933
+ "MATCH:thermostat_automatictab"
931
934
  ],
932
935
  "replacements": {
933
936
  "REGEX:% %1\\$s.*?\\)%": "{0}",
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "name": "@ledvance/base",
5
5
  "pid": [],
6
6
  "uiid": "",
7
- "version": "1.3.21",
7
+ "version": "1.3.23",
8
8
  "scripts": {
9
9
  "prepublishOnly": "python update-localazy.py"
10
10
  },
@@ -18,6 +18,7 @@ interface TextFieldProps extends TextInputProps {
18
18
  const TextField = (props: TextFieldProps) => {
19
19
  const icon = props.tipIcon || res.ic_warning_amber
20
20
  const color = props.tipColor || props.theme?.global.warning
21
+ const editable = props.editable ?? !props.editable
21
22
 
22
23
  const styles = StyleSheet.create({
23
24
  topTip: {
@@ -69,7 +70,7 @@ const TextField = (props: TextFieldProps) => {
69
70
  <Text style={[styles.topTip, { opacity: (!!props.value) ? 1 : 0 }]}>{props.placeholder}</Text>
70
71
  <View style={styles.textInputGroup}>
71
72
  <TextInput{...props} style={styles.textInput} />
72
- {!!props.value && props.editable &&
73
+ {!!props.value && editable &&
73
74
  <TouchableOpacity
74
75
  style={styles.iconTouchable}
75
76
  onPress={() => {
@@ -826,16 +826,17 @@ export default {
826
826
  "switch_overcharge_headline_description": "La función desactiva automáticamente la carga de los dispositivos móviles, incluidos los teléfonos móviles y las baterías externas, cuando están completamente cargados para evitar la sobrecarga y prolongar la duración de la batería.",
827
827
  "switch_overcharge_headline_text": "Protección de sobrecarga",
828
828
  "switchinching_overview_description_text": "Para apagar automáticamente el dispositivo después de un período de tiempo.",
829
- "thermostat_automode": "Automatic",
829
+ "thermostat_automatictab": "Automatic",
830
+ "thermostat_automode": "Automatic schedule",
830
831
  "thermostat_childlock_overview_description_text": "This feature disables the physical control on at the thermostat. The child lock can just be deactivated here in the settings.",
831
832
  "thermostat_cold": "Cold",
832
833
  "thermostat_comforttemp": "Comfort temp.",
833
- "thermostat_cool": "Cool",
834
+ "thermostat_cool": "Eco",
834
835
  "thermostat_descriptionrapid": "To set the temperature to a value immediately",
835
836
  "thermostat_descriptionvacation": "To set a vacation time",
836
837
  "thermostat_difference": "Adjustment of the ambient temperature",
837
838
  "thermostat_drifttemp": "Drift temp.",
838
- "thermostat_editauto": "Edit Automatic mode",
839
+ "thermostat_editauto": "Edit Automatic schedule",
839
840
  "thermostat_enddate": "End date",
840
841
  "thermostat_endtime": "End time",
841
842
  "thermostat_energysaving": "Energy saving temp.",
@@ -846,6 +847,7 @@ export default {
846
847
  "thermostat_powermode": "Manual",
847
848
  "thermostat_quicktemp": "Quick temp. rising",
848
849
  "thermostat_refresh": "Refresh",
850
+ "thermostat_scene": "Scenes",
849
851
  "thermostat_schedule": "You can adapt the temperature as per your schedule",
850
852
  "thermostat_setscope": "Set scope",
851
853
  "thermostat_settemp": "Set temp.",
@@ -858,7 +860,8 @@ export default {
858
860
  "thermostat_triggertimes": "Trigger times",
859
861
  "thermostat_unit": "Unit: °C",
860
862
  "thermostat_vacationmode": "Vacation",
861
- "thermostat_warm": "Warm",
863
+ "thermostat_vacationplan": "Vacation plan",
864
+ "thermostat_warm": "Comfort",
862
865
  "time_unit_h": "h",
863
866
  "timer_ceiling_fan_headline_text": "Temporizador",
864
867
  "timer_ceiling_fan_lighting_switched_off_text": "La luz se apagará aproximadamente a las {0}",
@@ -1734,16 +1737,17 @@ export default {
1734
1737
  "switch_overcharge_headline_description": "تعمل الميزة تلقائيًا على إيقاف شحن أجهزتك المحمولة، بما في ذلك الهواتف المحمولة وبنوك الطاقة، عندما تكون مشحونة بالكامل لمنع الشحن الزائد وإطالة عمر البطارية.",
1735
1738
  "switch_overcharge_headline_text": "حماية الشحن الزائد",
1736
1739
  "switchinching_overview_description_text": "لإيقاف تشغيل الجهاز تلقائيًا بعد فترة من الوقت.",
1737
- "thermostat_automode": "Automatic",
1740
+ "thermostat_automatictab": "Automatic",
1741
+ "thermostat_automode": "Automatic schedule",
1738
1742
  "thermostat_childlock_overview_description_text": "This feature disables the physical control on at the thermostat. The child lock can just be deactivated here in the settings.",
1739
1743
  "thermostat_cold": "Cold",
1740
1744
  "thermostat_comforttemp": "Comfort temp.",
1741
- "thermostat_cool": "Cool",
1745
+ "thermostat_cool": "Eco",
1742
1746
  "thermostat_descriptionrapid": "To set the temperature to a value immediately",
1743
1747
  "thermostat_descriptionvacation": "To set a vacation time",
1744
1748
  "thermostat_difference": "Adjustment of the ambient temperature",
1745
1749
  "thermostat_drifttemp": "Drift temp.",
1746
- "thermostat_editauto": "Edit Automatic mode",
1750
+ "thermostat_editauto": "Edit Automatic schedule",
1747
1751
  "thermostat_enddate": "End date",
1748
1752
  "thermostat_endtime": "End time",
1749
1753
  "thermostat_energysaving": "Energy saving temp.",
@@ -1754,6 +1758,7 @@ export default {
1754
1758
  "thermostat_powermode": "Manual",
1755
1759
  "thermostat_quicktemp": "Quick temp. rising",
1756
1760
  "thermostat_refresh": "Refresh",
1761
+ "thermostat_scene": "Scenes",
1757
1762
  "thermostat_schedule": "You can adapt the temperature as per your schedule",
1758
1763
  "thermostat_setscope": "Set scope",
1759
1764
  "thermostat_settemp": "Set temp.",
@@ -1766,7 +1771,8 @@ export default {
1766
1771
  "thermostat_triggertimes": "Trigger times",
1767
1772
  "thermostat_unit": "Unit: °C",
1768
1773
  "thermostat_vacationmode": "Vacation",
1769
- "thermostat_warm": "Warm",
1774
+ "thermostat_vacationplan": "Vacation plan",
1775
+ "thermostat_warm": "Comfort",
1770
1776
  "time_unit_h": "h",
1771
1777
  "timer_ceiling_fan_headline_text": "مؤقت",
1772
1778
  "timer_ceiling_fan_lighting_switched_off_text": "سيتم إيقاف الإضاءة عند حوالي {0}",
@@ -2642,16 +2648,17 @@ export default {
2642
2648
  "switch_overcharge_headline_description": "Tato funkce automaticky vypne nabíjení mobilních zařízení, včetně mobilních telefonů a napájecích bank, když jsou plně nabitá, aby se zabránilo přebíjení a prodloužila životnost baterie.",
2643
2649
  "switch_overcharge_headline_text": "Ochrana proti přebíjení",
2644
2650
  "switchinching_overview_description_text": "Automatické vypnutí zařízení po určité době.",
2645
- "thermostat_automode": "Automatic",
2651
+ "thermostat_automatictab": "Automatic",
2652
+ "thermostat_automode": "Automatic schedule",
2646
2653
  "thermostat_childlock_overview_description_text": "This feature disables the physical control on at the thermostat. The child lock can just be deactivated here in the settings.",
2647
2654
  "thermostat_cold": "Cold",
2648
2655
  "thermostat_comforttemp": "Comfort temp.",
2649
- "thermostat_cool": "Cool",
2656
+ "thermostat_cool": "Eco",
2650
2657
  "thermostat_descriptionrapid": "To set the temperature to a value immediately",
2651
2658
  "thermostat_descriptionvacation": "To set a vacation time",
2652
2659
  "thermostat_difference": "Adjustment of the ambient temperature",
2653
2660
  "thermostat_drifttemp": "Drift temp.",
2654
- "thermostat_editauto": "Edit Automatic mode",
2661
+ "thermostat_editauto": "Edit Automatic schedule",
2655
2662
  "thermostat_enddate": "End date",
2656
2663
  "thermostat_endtime": "End time",
2657
2664
  "thermostat_energysaving": "Energy saving temp.",
@@ -2662,6 +2669,7 @@ export default {
2662
2669
  "thermostat_powermode": "Manual",
2663
2670
  "thermostat_quicktemp": "Quick temp. rising",
2664
2671
  "thermostat_refresh": "Refresh",
2672
+ "thermostat_scene": "Scenes",
2665
2673
  "thermostat_schedule": "You can adapt the temperature as per your schedule",
2666
2674
  "thermostat_setscope": "Set scope",
2667
2675
  "thermostat_settemp": "Set temp.",
@@ -2674,7 +2682,8 @@ export default {
2674
2682
  "thermostat_triggertimes": "Trigger times",
2675
2683
  "thermostat_unit": "Unit: °C",
2676
2684
  "thermostat_vacationmode": "Vacation",
2677
- "thermostat_warm": "Warm",
2685
+ "thermostat_vacationplan": "Vacation plan",
2686
+ "thermostat_warm": "Comfort",
2678
2687
  "time_unit_h": "h",
2679
2688
  "timer_ceiling_fan_headline_text": "Časovač",
2680
2689
  "timer_ceiling_fan_lighting_switched_off_text": "Osvětlení bude vypnuto přibližně v {0}",
@@ -3550,16 +3559,17 @@ export default {
3550
3559
  "switch_overcharge_headline_description": "The feature automatically turns off charging your mobile devices, including mobile phones and power banks, when they are fully charged to prevent overcharging and prolong battery life.",
3551
3560
  "switch_overcharge_headline_text": "Overcharging Protection",
3552
3561
  "switchinching_overview_description_text": "To automatically switch off the device after a period of time.",
3553
- "thermostat_automode": "Automatic",
3562
+ "thermostat_automatictab": "Automatic",
3563
+ "thermostat_automode": "Automatic schedule",
3554
3564
  "thermostat_childlock_overview_description_text": "This feature disables the physical control on at the thermostat. The child lock can just be deactivated here in the settings.",
3555
3565
  "thermostat_cold": "Cold",
3556
3566
  "thermostat_comforttemp": "Comfort temp.",
3557
- "thermostat_cool": "Cool",
3567
+ "thermostat_cool": "Eco",
3558
3568
  "thermostat_descriptionrapid": "To set the temperature to a value immediately",
3559
3569
  "thermostat_descriptionvacation": "To set a vacation time",
3560
3570
  "thermostat_difference": "Adjustment of the ambient temperature",
3561
3571
  "thermostat_drifttemp": "Drift temp.",
3562
- "thermostat_editauto": "Edit Automatic mode",
3572
+ "thermostat_editauto": "Edit Automatic schedule",
3563
3573
  "thermostat_enddate": "End date",
3564
3574
  "thermostat_endtime": "End time",
3565
3575
  "thermostat_energysaving": "Energy saving temp.",
@@ -3570,6 +3580,7 @@ export default {
3570
3580
  "thermostat_powermode": "Manual",
3571
3581
  "thermostat_quicktemp": "Quick temp. rising",
3572
3582
  "thermostat_refresh": "Refresh",
3583
+ "thermostat_scene": "Scenes",
3573
3584
  "thermostat_schedule": "You can adapt the temperature as per your schedule",
3574
3585
  "thermostat_setscope": "Set scope",
3575
3586
  "thermostat_settemp": "Set temp.",
@@ -3582,7 +3593,8 @@ export default {
3582
3593
  "thermostat_triggertimes": "Trigger times",
3583
3594
  "thermostat_unit": "Unit: °C",
3584
3595
  "thermostat_vacationmode": "Vacation",
3585
- "thermostat_warm": "Warm",
3596
+ "thermostat_vacationplan": "Vacation plan",
3597
+ "thermostat_warm": "Comfort",
3586
3598
  "time_unit_h": "h",
3587
3599
  "timer_ceiling_fan_headline_text": "Timer",
3588
3600
  "timer_ceiling_fan_lighting_switched_off_text": "Lighting will be switched off at about {0}",
@@ -4458,16 +4470,17 @@ export default {
4458
4470
  "switch_overcharge_headline_description": "Функцията автоматично изключва зареждането на вашите мобилни устройства, включително мобилни телефони и захранващи банки, когато те са напълно заредени, за да се предотврати презареждането и да се удължи живота на батерията.",
4459
4471
  "switch_overcharge_headline_text": "Защита от презареждане",
4460
4472
  "switchinching_overview_description_text": "За автоматично изключване на устройството след определен период от време.",
4461
- "thermostat_automode": "Automatic",
4473
+ "thermostat_automatictab": "Automatic",
4474
+ "thermostat_automode": "Automatic schedule",
4462
4475
  "thermostat_childlock_overview_description_text": "This feature disables the physical control on at the thermostat. The child lock can just be deactivated here in the settings.",
4463
4476
  "thermostat_cold": "Cold",
4464
4477
  "thermostat_comforttemp": "Comfort temp.",
4465
- "thermostat_cool": "Cool",
4478
+ "thermostat_cool": "Eco",
4466
4479
  "thermostat_descriptionrapid": "To set the temperature to a value immediately",
4467
4480
  "thermostat_descriptionvacation": "To set a vacation time",
4468
4481
  "thermostat_difference": "Adjustment of the ambient temperature",
4469
4482
  "thermostat_drifttemp": "Drift temp.",
4470
- "thermostat_editauto": "Edit Automatic mode",
4483
+ "thermostat_editauto": "Edit Automatic schedule",
4471
4484
  "thermostat_enddate": "End date",
4472
4485
  "thermostat_endtime": "End time",
4473
4486
  "thermostat_energysaving": "Energy saving temp.",
@@ -4478,6 +4491,7 @@ export default {
4478
4491
  "thermostat_powermode": "Manual",
4479
4492
  "thermostat_quicktemp": "Quick temp. rising",
4480
4493
  "thermostat_refresh": "Refresh",
4494
+ "thermostat_scene": "Scenes",
4481
4495
  "thermostat_schedule": "You can adapt the temperature as per your schedule",
4482
4496
  "thermostat_setscope": "Set scope",
4483
4497
  "thermostat_settemp": "Set temp.",
@@ -4490,7 +4504,8 @@ export default {
4490
4504
  "thermostat_triggertimes": "Trigger times",
4491
4505
  "thermostat_unit": "Unit: °C",
4492
4506
  "thermostat_vacationmode": "Vacation",
4493
- "thermostat_warm": "Warm",
4507
+ "thermostat_vacationplan": "Vacation plan",
4508
+ "thermostat_warm": "Comfort",
4494
4509
  "time_unit_h": "h",
4495
4510
  "timer_ceiling_fan_headline_text": "Таймер",
4496
4511
  "timer_ceiling_fan_lighting_switched_off_text": "Осветлението ще бъде изключено след около {0}",
@@ -5366,16 +5381,17 @@ export default {
5366
5381
  "switch_overcharge_headline_description": "Funktionen slukker automatisk opladning af dine mobile enheder, herunder mobiltelefoner og strømbanker, når de er fuldt opladet for at forhindre overopladning og forlænge batteriets levetid.",
5367
5382
  "switch_overcharge_headline_text": "Beskyttelse mod overopladning",
5368
5383
  "switchinching_overview_description_text": "Til at slukke enheden automatisk efter et stykke tid.",
5369
- "thermostat_automode": "Automatic",
5384
+ "thermostat_automatictab": "Automatic",
5385
+ "thermostat_automode": "Automatic schedule",
5370
5386
  "thermostat_childlock_overview_description_text": "This feature disables the physical control on at the thermostat. The child lock can just be deactivated here in the settings.",
5371
5387
  "thermostat_cold": "Cold",
5372
5388
  "thermostat_comforttemp": "Comfort temp.",
5373
- "thermostat_cool": "Cool",
5389
+ "thermostat_cool": "Eco",
5374
5390
  "thermostat_descriptionrapid": "To set the temperature to a value immediately",
5375
5391
  "thermostat_descriptionvacation": "To set a vacation time",
5376
5392
  "thermostat_difference": "Adjustment of the ambient temperature",
5377
5393
  "thermostat_drifttemp": "Drift temp.",
5378
- "thermostat_editauto": "Edit Automatic mode",
5394
+ "thermostat_editauto": "Edit Automatic schedule",
5379
5395
  "thermostat_enddate": "End date",
5380
5396
  "thermostat_endtime": "End time",
5381
5397
  "thermostat_energysaving": "Energy saving temp.",
@@ -5386,6 +5402,7 @@ export default {
5386
5402
  "thermostat_powermode": "Manual",
5387
5403
  "thermostat_quicktemp": "Quick temp. rising",
5388
5404
  "thermostat_refresh": "Refresh",
5405
+ "thermostat_scene": "Scenes",
5389
5406
  "thermostat_schedule": "You can adapt the temperature as per your schedule",
5390
5407
  "thermostat_setscope": "Set scope",
5391
5408
  "thermostat_settemp": "Set temp.",
@@ -5398,7 +5415,8 @@ export default {
5398
5415
  "thermostat_triggertimes": "Trigger times",
5399
5416
  "thermostat_unit": "Unit: °C",
5400
5417
  "thermostat_vacationmode": "Vacation",
5401
- "thermostat_warm": "Warm",
5418
+ "thermostat_vacationplan": "Vacation plan",
5419
+ "thermostat_warm": "Comfort",
5402
5420
  "time_unit_h": "h",
5403
5421
  "timer_ceiling_fan_headline_text": "Timer",
5404
5422
  "timer_ceiling_fan_lighting_switched_off_text": "Lyset slukker om {0}",
@@ -6274,7 +6292,8 @@ export default {
6274
6292
  "switch_overcharge_headline_description": "Die Funktion schaltet das Aufladen Deiner mobilen Geräte, einschließlich Mobiltelefone und Powerbanks, automatisch aus, wenn sie vollständig aufgeladen sind, um ein Überladen zu verhindern und die Akkulaufzeit zu verlängern.",
6275
6293
  "switch_overcharge_headline_text": "Überladeschutz",
6276
6294
  "switchinching_overview_description_text": "Um das Gerät nach einer bestimmten Zeit automatisch auszuschalten.",
6277
- "thermostat_automode": "Automatisch",
6295
+ "thermostat_automatictab": "Automatisch",
6296
+ "thermostat_automode": "Automatischer Zeitplan",
6278
6297
  "thermostat_childlock_overview_description_text": "Diese Funktion deaktiviert die physische Steuerung des Thermostats. Die Kindersicherung kann nur hier in den Einstellungen deaktiviert werden.",
6279
6298
  "thermostat_cold": "Kalt",
6280
6299
  "thermostat_comforttemp": "Komforttemperatur",
@@ -6283,7 +6302,7 @@ export default {
6283
6302
  "thermostat_descriptionvacation": "Um eine Urlaubszeit festzulegen",
6284
6303
  "thermostat_difference": "Anpassung der Umgebungstemperatur",
6285
6304
  "thermostat_drifttemp": "Temperaturkorrektur",
6286
- "thermostat_editauto": "Automatik-Modus bearbeiten",
6305
+ "thermostat_editauto": "Automatischen Zeitplan bearbeiten",
6287
6306
  "thermostat_enddate": "Enddatum",
6288
6307
  "thermostat_endtime": "Endzeit",
6289
6308
  "thermostat_energysaving": "Energiesparende Temperatur.",
@@ -6294,6 +6313,7 @@ export default {
6294
6313
  "thermostat_powermode": "Manuell",
6295
6314
  "thermostat_quicktemp": "Schneller Temperaturanstieg",
6296
6315
  "thermostat_refresh": "Aktualisieren",
6316
+ "thermostat_scene": "Szenen",
6297
6317
  "thermostat_schedule": "Du kannst die Temperatur nach deinem Zeitplan anpassen",
6298
6318
  "thermostat_setscope": "Umfang festlegen",
6299
6319
  "thermostat_settemp": "Temperatur einstellen",
@@ -6306,7 +6326,8 @@ export default {
6306
6326
  "thermostat_triggertimes": "Auslösezeiten",
6307
6327
  "thermostat_unit": "Einheit: °C",
6308
6328
  "thermostat_vacationmode": "Urlaub",
6309
- "thermostat_warm": "Warm",
6329
+ "thermostat_vacationplan": "Urlaubsplan",
6330
+ "thermostat_warm": "Komfort",
6310
6331
  "time_unit_h": "h",
6311
6332
  "timer_ceiling_fan_headline_text": "Timer",
6312
6333
  "timer_ceiling_fan_lighting_switched_off_text": "Licht wird um ca. {0} ausgeschaltet",
@@ -7182,16 +7203,17 @@ export default {
7182
7203
  "switch_overcharge_headline_description": "Η λειτουργία απενεργοποιεί αυτόματα τη φόρτιση των κινητών συσκευών σας, συμπεριλαμβανομένων των κινητών τηλεφώνων και των τροφοδοτικών τραπεζών, όταν είναι πλήρως φορτισμένες για να αποφευχθεί η υπερφόρτιση και να παραταθεί η διάρκεια ζωής της μπαταρίας.",
7183
7204
  "switch_overcharge_headline_text": "Προστασία υπερφόρτισης",
7184
7205
  "switchinching_overview_description_text": "Για να απενεργοποιήσετε αυτόματα τη συσκευή μετά από ένα χρονικό διάστημα.",
7185
- "thermostat_automode": "Automatic",
7206
+ "thermostat_automatictab": "Automatic",
7207
+ "thermostat_automode": "Automatic schedule",
7186
7208
  "thermostat_childlock_overview_description_text": "This feature disables the physical control on at the thermostat. The child lock can just be deactivated here in the settings.",
7187
7209
  "thermostat_cold": "Cold",
7188
7210
  "thermostat_comforttemp": "Comfort temp.",
7189
- "thermostat_cool": "Cool",
7211
+ "thermostat_cool": "Eco",
7190
7212
  "thermostat_descriptionrapid": "To set the temperature to a value immediately",
7191
7213
  "thermostat_descriptionvacation": "To set a vacation time",
7192
7214
  "thermostat_difference": "Adjustment of the ambient temperature",
7193
7215
  "thermostat_drifttemp": "Drift temp.",
7194
- "thermostat_editauto": "Edit Automatic mode",
7216
+ "thermostat_editauto": "Edit Automatic schedule",
7195
7217
  "thermostat_enddate": "End date",
7196
7218
  "thermostat_endtime": "End time",
7197
7219
  "thermostat_energysaving": "Energy saving temp.",
@@ -7202,6 +7224,7 @@ export default {
7202
7224
  "thermostat_powermode": "Manual",
7203
7225
  "thermostat_quicktemp": "Quick temp. rising",
7204
7226
  "thermostat_refresh": "Refresh",
7227
+ "thermostat_scene": "Scenes",
7205
7228
  "thermostat_schedule": "You can adapt the temperature as per your schedule",
7206
7229
  "thermostat_setscope": "Set scope",
7207
7230
  "thermostat_settemp": "Set temp.",
@@ -7214,7 +7237,8 @@ export default {
7214
7237
  "thermostat_triggertimes": "Trigger times",
7215
7238
  "thermostat_unit": "Unit: °C",
7216
7239
  "thermostat_vacationmode": "Vacation",
7217
- "thermostat_warm": "Warm",
7240
+ "thermostat_vacationplan": "Vacation plan",
7241
+ "thermostat_warm": "Comfort",
7218
7242
  "time_unit_h": "h",
7219
7243
  "timer_ceiling_fan_headline_text": "Χρονοδιακόπτης",
7220
7244
  "timer_ceiling_fan_lighting_switched_off_text": "Ο φωτισμός θα απενεργοποιηθεί περίπου στις {0}",
@@ -8090,16 +8114,17 @@ export default {
8090
8114
  "switch_overcharge_headline_description": "La función desactiva automáticamente la carga de los dispositivos móviles, incluidos los teléfonos móviles y las baterías externas, cuando están completamente cargados para evitar la sobrecarga y prolongar la duración de la batería.",
8091
8115
  "switch_overcharge_headline_text": "Protección de sobrecarga",
8092
8116
  "switchinching_overview_description_text": "Para apagar automáticamente el dispositivo después de un período de tiempo.",
8093
- "thermostat_automode": "Automatic",
8117
+ "thermostat_automatictab": "Automatic",
8118
+ "thermostat_automode": "Automatic schedule",
8094
8119
  "thermostat_childlock_overview_description_text": "This feature disables the physical control on at the thermostat. The child lock can just be deactivated here in the settings.",
8095
8120
  "thermostat_cold": "Cold",
8096
8121
  "thermostat_comforttemp": "Comfort temp.",
8097
- "thermostat_cool": "Cool",
8122
+ "thermostat_cool": "Eco",
8098
8123
  "thermostat_descriptionrapid": "To set the temperature to a value immediately",
8099
8124
  "thermostat_descriptionvacation": "To set a vacation time",
8100
8125
  "thermostat_difference": "Adjustment of the ambient temperature",
8101
8126
  "thermostat_drifttemp": "Drift temp.",
8102
- "thermostat_editauto": "Edit Automatic mode",
8127
+ "thermostat_editauto": "Edit Automatic schedule",
8103
8128
  "thermostat_enddate": "End date",
8104
8129
  "thermostat_endtime": "End time",
8105
8130
  "thermostat_energysaving": "Energy saving temp.",
@@ -8110,6 +8135,7 @@ export default {
8110
8135
  "thermostat_powermode": "Manual",
8111
8136
  "thermostat_quicktemp": "Quick temp. rising",
8112
8137
  "thermostat_refresh": "Refresh",
8138
+ "thermostat_scene": "Scenes",
8113
8139
  "thermostat_schedule": "You can adapt the temperature as per your schedule",
8114
8140
  "thermostat_setscope": "Set scope",
8115
8141
  "thermostat_settemp": "Set temp.",
@@ -8122,7 +8148,8 @@ export default {
8122
8148
  "thermostat_triggertimes": "Trigger times",
8123
8149
  "thermostat_unit": "Unit: °C",
8124
8150
  "thermostat_vacationmode": "Vacation",
8125
- "thermostat_warm": "Warm",
8151
+ "thermostat_vacationplan": "Vacation plan",
8152
+ "thermostat_warm": "Comfort",
8126
8153
  "time_unit_h": "h",
8127
8154
  "timer_ceiling_fan_headline_text": "Temporizador",
8128
8155
  "timer_ceiling_fan_lighting_switched_off_text": "La luz se apagará aproximadamente a las {0}",
@@ -8998,11 +9025,12 @@ export default {
8998
9025
  "switch_overcharge_headline_description": "See funktsioon lülitab juba täis laetud mobiilseadmete, sh mobiiltelefonide ja akupankade laadimise automaatselt välja, et vältida ülelaadimist ja pikendada akude tööiga.",
8999
9026
  "switch_overcharge_headline_text": "Ülelaadimiskaitse",
9000
9027
  "switchinching_overview_description_text": "Seadme automaatseks väljalülitamiseks teatud aja möödudes.",
9001
- "thermostat_automode": "Automaatne režiim",
9028
+ "thermostat_automatictab": "Automatic",
9029
+ "thermostat_automode": "Automaatne ajakava",
9002
9030
  "thermostat_childlock_overview_description_text": "See funktsioon keelab termostaadi füüsilise juhtimise. Lapseluku saab lihtsalt deaktiveerida siin seadetes.",
9003
9031
  "thermostat_cold": "Külm",
9004
9032
  "thermostat_comforttemp": "Mugavustemperatuur.",
9005
- "thermostat_cool": "Jahe",
9033
+ "thermostat_cool": "Öko",
9006
9034
  "thermostat_descriptionrapid": "Temperatuuri seadistamine kohe väärtusele",
9007
9035
  "thermostat_descriptionvacation": "Puhkuseaja määramine",
9008
9036
  "thermostat_difference": "Ümbritseva õhu temperatuuri reguleerimine",
@@ -9018,6 +9046,7 @@ export default {
9018
9046
  "thermostat_powermode": "Käsiraamat",
9019
9047
  "thermostat_quicktemp": "Kiire temperatuuri tõus",
9020
9048
  "thermostat_refresh": "Värskenda",
9049
+ "thermostat_scene": "Stseenid",
9021
9050
  "thermostat_schedule": "Temperatuuri saate kohandada vastavalt oma ajakavale",
9022
9051
  "thermostat_setscope": "Määrake ulatus",
9023
9052
  "thermostat_settemp": "Määrake temperatuur.",
@@ -9030,7 +9059,8 @@ export default {
9030
9059
  "thermostat_triggertimes": "Käivitusajad",
9031
9060
  "thermostat_unit": "Ühik:° C",
9032
9061
  "thermostat_vacationmode": "Puhkerežiim",
9033
- "thermostat_warm": "Soe",
9062
+ "thermostat_vacationplan": "Puhkuseplaan",
9063
+ "thermostat_warm": "Mugavus",
9034
9064
  "time_unit_h": "h",
9035
9065
  "timer_ceiling_fan_headline_text": "Taimer",
9036
9066
  "timer_ceiling_fan_lighting_switched_off_text": "Valgustus lülitatakse välja umbes {0}",
@@ -9906,7 +9936,8 @@ export default {
9906
9936
  "switch_overcharge_headline_description": "Ominaisuus sammuttaa automaattisesti mobiililaitteiden, kuten matkapuhelinten ja virtapankkien, lataamisen, kun ne on ladattu täyteen, jotta estetään ylikuormitus ja pidennetään akun käyttöikää.",
9907
9937
  "switch_overcharge_headline_text": "Ylilataussuoja",
9908
9938
  "switchinching_overview_description_text": "Laitteen automaattinen sammuttaminen tietyn ajan kuluttua.",
9909
- "thermostat_automode": "Automaattinen tila",
9939
+ "thermostat_automatictab": "Automatic",
9940
+ "thermostat_automode": "Automaattinen aikataulu",
9910
9941
  "thermostat_childlock_overview_description_text": "Tämä ominaisuus poistaa termostaatin fyysisen ohjauksen käytöstä. Lapsilukon voi kytkeä pois päältä täällä asetuksista.",
9911
9942
  "thermostat_cold": "Kylmä",
9912
9943
  "thermostat_comforttemp": "Mukavuuslämpötila",
@@ -9926,6 +9957,7 @@ export default {
9926
9957
  "thermostat_powermode": "Manuaalinen",
9927
9958
  "thermostat_quicktemp": "Nopea lämpötilan nousu",
9928
9959
  "thermostat_refresh": "Päivitä",
9960
+ "thermostat_scene": "Scenes",
9929
9961
  "thermostat_schedule": "Voit mukauttaa lämpötilaa aikataulusi mukaan",
9930
9962
  "thermostat_setscope": "Aseta laajuus",
9931
9963
  "thermostat_settemp": "Aseta lämpötila.",
@@ -9938,6 +9970,7 @@ export default {
9938
9970
  "thermostat_triggertimes": "Käynnistysajat",
9939
9971
  "thermostat_unit": "Yksikkö: °C",
9940
9972
  "thermostat_vacationmode": "Lomatila",
9973
+ "thermostat_vacationplan": "Vacation plan",
9941
9974
  "thermostat_warm": "Lämmin",
9942
9975
  "time_unit_h": "h",
9943
9976
  "timer_ceiling_fan_headline_text": "Ajastin",
@@ -10814,7 +10847,8 @@ export default {
10814
10847
  "switch_overcharge_headline_description": "La fonction désactive automatiquement le chargement de vos appareils mobiles, y compris les téléphones portables et les batteries externes, lorsqu'ils sont complètement chargés afin d'éviter toute surcharge et de prolonger la durée de vie de la batterie.",
10815
10848
  "switch_overcharge_headline_text": "Protection contre les surcharges",
10816
10849
  "switchinching_overview_description_text": "Pour éteindre automatiquement l'appareil après un certain temps.",
10817
- "thermostat_automode": "Mode Automatique",
10850
+ "thermostat_automatictab": "Automatic",
10851
+ "thermostat_automode": "Calendrier automatique",
10818
10852
  "thermostat_childlock_overview_description_text": "La sécurité enfant verrouille le contrôle physique du thermostat. Elle peut uniquement être désactivée, ici, dans les paramètres.",
10819
10853
  "thermostat_cold": "Froid",
10820
10854
  "thermostat_comforttemp": "Température de confort.",
@@ -10834,6 +10868,7 @@ export default {
10834
10868
  "thermostat_powermode": "Manuel",
10835
10869
  "thermostat_quicktemp": "Hausse rapide de la température",
10836
10870
  "thermostat_refresh": "Actualiser",
10871
+ "thermostat_scene": "Scenes",
10837
10872
  "thermostat_schedule": "Vous pouvez adapter la température selon votre emploi du temps",
10838
10873
  "thermostat_setscope": "Définir le champ d'application",
10839
10874
  "thermostat_settemp": "Régler la température",
@@ -10846,6 +10881,7 @@ export default {
10846
10881
  "thermostat_triggertimes": "Temps de déclenchement",
10847
10882
  "thermostat_unit": "Unité : °C",
10848
10883
  "thermostat_vacationmode": "Mode vacances",
10884
+ "thermostat_vacationplan": "Vacation plan",
10849
10885
  "thermostat_warm": "Tiède",
10850
10886
  "time_unit_h": "h",
10851
10887
  "timer_ceiling_fan_headline_text": "Minuteur",
@@ -11722,7 +11758,8 @@ export default {
11722
11758
  "switch_overcharge_headline_description": "Značajka automatski isključuje punjenje vaših mobilnih uređaja, uključujući mobilne telefone i banke napajanja, kada su potpuno napunjeni kako bi se spriječilo prekomjerno punjenje i produljilo trajanje baterije.",
11723
11759
  "switch_overcharge_headline_text": "Zaštita od prekomjernog punjenja",
11724
11760
  "switchinching_overview_description_text": "Za automatsko isključivanje uređaja nakon određenog vremenskog razdoblja.",
11725
- "thermostat_automode": "Automatski način rada",
11761
+ "thermostat_automatictab": "Automatic",
11762
+ "thermostat_automode": "Automatski raspored",
11726
11763
  "thermostat_childlock_overview_description_text": "Ova značajka onemogućuje fizičku kontrolu na termostatu. Dječje zaključavanje možete deaktivirati samo ovdje u postavkama.",
11727
11764
  "thermostat_cold": "Hladno",
11728
11765
  "thermostat_comforttemp": "Komforna temp.",
@@ -11742,6 +11779,7 @@ export default {
11742
11779
  "thermostat_powermode": "Ručno",
11743
11780
  "thermostat_quicktemp": "Brzo podizanje temperature",
11744
11781
  "thermostat_refresh": "Osvježi",
11782
+ "thermostat_scene": "Scenes",
11745
11783
  "thermostat_schedule": "Možete prilagoditi temperaturu prema svom rasporedu",
11746
11784
  "thermostat_setscope": "Postavite opseg",
11747
11785
  "thermostat_settemp": "Podesite temp.",
@@ -11754,6 +11792,7 @@ export default {
11754
11792
  "thermostat_triggertimes": "Vremena okidača",
11755
11793
  "thermostat_unit": "Jedinica: °C",
11756
11794
  "thermostat_vacationmode": "Režim: odmor",
11795
+ "thermostat_vacationplan": "Vacation plan",
11757
11796
  "thermostat_warm": "Toplo",
11758
11797
  "time_unit_h": "h",
11759
11798
  "timer_ceiling_fan_headline_text": "Timer",
@@ -12630,11 +12669,12 @@ export default {
12630
12669
  "switch_overcharge_headline_description": "La funzione disattiva automaticamente la ricarica dei dispositivi mobili, inclusi telefoni cellulari e power bank, quando sono completamente carichi per evitare il sovraccarico e prolungare la durata della batteria.",
12631
12670
  "switch_overcharge_headline_text": "Protezione da sovraccarico",
12632
12671
  "switchinching_overview_description_text": "Per spegnere automaticamente il dispositivo dopo un certo periodo di tempo.",
12633
- "thermostat_automode": "Modalità automatica",
12672
+ "thermostat_automatictab": "Automatico",
12673
+ "thermostat_automode": "Programmazione automatica",
12634
12674
  "thermostat_childlock_overview_description_text": "Questa funzione disabilita il controllo sul dispositivo. L'unica possibilità è quella di spegnerlo da qui.",
12635
12675
  "thermostat_cold": "Freddo",
12636
12676
  "thermostat_comforttemp": "Temperatura di comfort.",
12637
- "thermostat_cool": "Freddo",
12677
+ "thermostat_cool": "Eco",
12638
12678
  "thermostat_descriptionrapid": "Per impostare immediatamente la temperatura su un valore",
12639
12679
  "thermostat_descriptionvacation": "Per impostare un orario di vacanza",
12640
12680
  "thermostat_difference": "Regolazione della temperatura ambiente",
@@ -12650,6 +12690,7 @@ export default {
12650
12690
  "thermostat_powermode": "Manuale",
12651
12691
  "thermostat_quicktemp": "Aumento rapido della temperatura",
12652
12692
  "thermostat_refresh": "Ricarica",
12693
+ "thermostat_scene": "Scene",
12653
12694
  "thermostat_schedule": "Puoi adattare la temperatura in base ai tuoi orari",
12654
12695
  "thermostat_setscope": "Imposta ambito",
12655
12696
  "thermostat_settemp": "Impostazione della temperatura.",
@@ -12662,7 +12703,8 @@ export default {
12662
12703
  "thermostat_triggertimes": "TEMPI DI ATTIVAZIONE",
12663
12704
  "thermostat_unit": "Unità: °C",
12664
12705
  "thermostat_vacationmode": "Modalità vacanza",
12665
- "thermostat_warm": "Caldo",
12706
+ "thermostat_vacationplan": "Piano vacanze",
12707
+ "thermostat_warm": "Comfort",
12666
12708
  "time_unit_h": "h",
12667
12709
  "timer_ceiling_fan_headline_text": "Timer",
12668
12710
  "timer_ceiling_fan_lighting_switched_off_text": "L'illuminazione verrà spenta alle {0}",
@@ -13538,11 +13580,12 @@ export default {
13538
13580
  "switch_overcharge_headline_description": "이 기능은 휴대폰 및 보조 배터리를 비롯한 모바일 장치가 완전히 충전되면 자동으로 충전 기능을 끄므로 과충전을 방지하고 배터리 수명을 연장합니다.",
13539
13581
  "switch_overcharge_headline_text": "과충전 보호",
13540
13582
  "switchinching_overview_description_text": "일정 시간이 지나면 자동으로 장치를 끕니다.",
13541
- "thermostat_automode": "자동화",
13583
+ "thermostat_automatictab": "Automatic",
13584
+ "thermostat_automode": "자동 일정",
13542
13585
  "thermostat_childlock_overview_description_text": "This feature disables the physical control on at the thermostat. The child lock can just be deactivated here in the settings.",
13543
13586
  "thermostat_cold": "Cold",
13544
13587
  "thermostat_comforttemp": "편안한 온도",
13545
- "thermostat_cool": "Cool",
13588
+ "thermostat_cool": "Eco",
13546
13589
  "thermostat_descriptionrapid": "온도를 즉시 설정하려면",
13547
13590
  "thermostat_descriptionvacation": "쉬는 기간을 설정하려면",
13548
13591
  "thermostat_difference": "현재 온도와 설정 온도의 차이",
@@ -13558,6 +13601,7 @@ export default {
13558
13601
  "thermostat_powermode": "수동",
13559
13602
  "thermostat_quicktemp": "온도 급상승",
13560
13603
  "thermostat_refresh": "새로 고침",
13604
+ "thermostat_scene": "Scenes",
13561
13605
  "thermostat_schedule": "일정에 따라 온도를 조정할 수 있습니다.",
13562
13606
  "thermostat_setscope": "범위 설정",
13563
13607
  "thermostat_settemp": "온도 설정",
@@ -13570,7 +13614,8 @@ export default {
13570
13614
  "thermostat_triggertimes": "트리거 시간",
13571
13615
  "thermostat_unit": "단위: °C",
13572
13616
  "thermostat_vacationmode": "휴가",
13573
- "thermostat_warm": "Warm",
13617
+ "thermostat_vacationplan": "Vacation plan",
13618
+ "thermostat_warm": "Comfort",
13574
13619
  "time_unit_h": "h",
13575
13620
  "timer_ceiling_fan_headline_text": "타이머",
13576
13621
  "timer_ceiling_fan_lighting_switched_off_text": "조명은 약 {0}에 꺼집니다.",
@@ -14446,16 +14491,17 @@ export default {
14446
14491
  "switch_overcharge_headline_description": "Ši funkcija automatiškai išjungia mobiliųjų įtaisų, įskaitant mobiliuosius telefonus ir išorines baterijas, įkrovimą, kai jie visiškai įkrauti, kad būtų išvengta perteklinės įkrovos ir pailgėtų akumuliatoriaus veikimo laikas.",
14447
14492
  "switch_overcharge_headline_text": "Apsauga nuo perteklinės įkrovos",
14448
14493
  "switchinching_overview_description_text": "Po tam tikro laiko automatiškai išjungti įtaisą.",
14449
- "thermostat_automode": "Automatic",
14494
+ "thermostat_automatictab": "Automatic",
14495
+ "thermostat_automode": "Automatic schedule",
14450
14496
  "thermostat_childlock_overview_description_text": "This feature disables the physical control on at the thermostat. The child lock can just be deactivated here in the settings.",
14451
14497
  "thermostat_cold": "Cold",
14452
14498
  "thermostat_comforttemp": "Comfort temp.",
14453
- "thermostat_cool": "Cool",
14499
+ "thermostat_cool": "Eco",
14454
14500
  "thermostat_descriptionrapid": "To set the temperature to a value immediately",
14455
14501
  "thermostat_descriptionvacation": "To set a vacation time",
14456
14502
  "thermostat_difference": "Adjustment of the ambient temperature",
14457
14503
  "thermostat_drifttemp": "Drift temp.",
14458
- "thermostat_editauto": "Edit Automatic mode",
14504
+ "thermostat_editauto": "Edit Automatic schedule",
14459
14505
  "thermostat_enddate": "End date",
14460
14506
  "thermostat_endtime": "End time",
14461
14507
  "thermostat_energysaving": "Energy saving temp.",
@@ -14466,6 +14512,7 @@ export default {
14466
14512
  "thermostat_powermode": "Manual",
14467
14513
  "thermostat_quicktemp": "Quick temp. rising",
14468
14514
  "thermostat_refresh": "Refresh",
14515
+ "thermostat_scene": "Scenes",
14469
14516
  "thermostat_schedule": "You can adapt the temperature as per your schedule",
14470
14517
  "thermostat_setscope": "Set scope",
14471
14518
  "thermostat_settemp": "Set temp.",
@@ -14478,7 +14525,8 @@ export default {
14478
14525
  "thermostat_triggertimes": "Trigger times",
14479
14526
  "thermostat_unit": "Unit: °C",
14480
14527
  "thermostat_vacationmode": "Vacation",
14481
- "thermostat_warm": "Warm",
14528
+ "thermostat_vacationplan": "Vacation plan",
14529
+ "thermostat_warm": "Comfort",
14482
14530
  "time_unit_h": "h",
14483
14531
  "timer_ceiling_fan_headline_text": "Laikmatis",
14484
14532
  "timer_ceiling_fan_lighting_switched_off_text": "Apšvietimas bus išjungtas apie {0}",
@@ -15354,16 +15402,17 @@ export default {
15354
15402
  "switch_overcharge_headline_description": "Šī funkcija automātiski izslēdz mobilo ierīču, tostarp mobilo tālruņu un barošanas bateriju, uzlādi, kad tās ir pilnībā uzlādētas, lai novērstu to pārmērīgu uzlādi un pagarinātu baterijas darbības laiku.",
15355
15403
  "switch_overcharge_headline_text": "Aizsardzība pret pārmērīgu uzlādi",
15356
15404
  "switchinching_overview_description_text": "Lai automātiski izslēgtu ierīci pēc noteikta laika perioda.",
15357
- "thermostat_automode": "Automātiskais režīms",
15405
+ "thermostat_automatictab": "Automātisks",
15406
+ "thermostat_automode": "Automātiskais grafiks",
15358
15407
  "thermostat_childlock_overview_description_text": "Šī funkcija atslēdz termostata fiziskās vadības ieslēgšanu. Bērnu bloķēšanu var vienkārši deaktivizēt šeit iestatījumos.",
15359
15408
  "thermostat_cold": "Auksts",
15360
15409
  "thermostat_comforttemp": "Komforta temp.",
15361
- "thermostat_cool": "Vēss",
15410
+ "thermostat_cool": "Eko",
15362
15411
  "thermostat_descriptionrapid": "Tūlītēja temperatūras iestatīšana uz vērtību",
15363
15412
  "thermostat_descriptionvacation": "Atvaļinājuma laika iestatīšana",
15364
15413
  "thermostat_difference": "Starpība starp pašreizējo un iestatīto temperatūru",
15365
15414
  "thermostat_drifttemp": "Dreifa temperatūra.",
15366
- "thermostat_editauto": "Rediģēt automātisko režīmu",
15415
+ "thermostat_editauto": "Rediģēt automātisko grafiku",
15367
15416
  "thermostat_enddate": "Beigu datums",
15368
15417
  "thermostat_endtime": "Beigu laiks",
15369
15418
  "thermostat_energysaving": "Enerģijas taupīšanas temp.",
@@ -15374,6 +15423,7 @@ export default {
15374
15423
  "thermostat_powermode": "Pamācība",
15375
15424
  "thermostat_quicktemp": "Ātra temperatūras paaugstināšana",
15376
15425
  "thermostat_refresh": "Atjaunot",
15426
+ "thermostat_scene": "Ainas",
15377
15427
  "thermostat_schedule": "Jūs varat pielāgot temperatūru atbilstoši savam grafikam",
15378
15428
  "thermostat_setscope": "Iestatiet darbības jomu",
15379
15429
  "thermostat_settemp": "Iestatiet temperatūru.",
@@ -15386,7 +15436,8 @@ export default {
15386
15436
  "thermostat_triggertimes": "Sprūda laiki",
15387
15437
  "thermostat_unit": "Mērvienība: °C",
15388
15438
  "thermostat_vacationmode": "Atvaļinājuma režīms",
15389
- "thermostat_warm": "Silts",
15439
+ "thermostat_vacationplan": "Atvaļinājuma plāns",
15440
+ "thermostat_warm": "Komforts",
15390
15441
  "time_unit_h": "h",
15391
15442
  "timer_ceiling_fan_headline_text": "Taimeris",
15392
15443
  "timer_ceiling_fan_lighting_switched_off_text": "Apgaismojums tiks izslēgts aptuveni {0}",
@@ -16262,11 +16313,12 @@ export default {
16262
16313
  "switch_overcharge_headline_description": "Funksjonen slår automatisk av lading av mobilenhetene dine, inkludert mobiltelefoner og strømbanker, når de er fulladet for å forhindre overlading og forlenge batteriets levetid.",
16263
16314
  "switch_overcharge_headline_text": "Beskyttelse mot overlading",
16264
16315
  "switchinching_overview_description_text": "For å slå av enheten automatisk etter en periode.",
16265
- "thermostat_automode": "Auto-modus",
16316
+ "thermostat_automatictab": "Automatic",
16317
+ "thermostat_automode": "Automatisk tidsplan",
16266
16318
  "thermostat_childlock_overview_description_text": "This feature disables the physical control on at the thermostat. The child lock can just be deactivated here in the settings.",
16267
16319
  "thermostat_cold": "Cold",
16268
16320
  "thermostat_comforttemp": "Komfort temp.",
16269
- "thermostat_cool": "Cool",
16321
+ "thermostat_cool": "Eco",
16270
16322
  "thermostat_descriptionrapid": "Slik setter du temperaturen til en verdi umiddelbart",
16271
16323
  "thermostat_descriptionvacation": "Slik angir du en ferietid",
16272
16324
  "thermostat_difference": "Forskjellen mellom gjeldende og innstilt temperatur",
@@ -16282,6 +16334,7 @@ export default {
16282
16334
  "thermostat_powermode": "Manuell",
16283
16335
  "thermostat_quicktemp": "Rask temp. stigende",
16284
16336
  "thermostat_refresh": "Oppdater",
16337
+ "thermostat_scene": "Scenes",
16285
16338
  "thermostat_schedule": "Du kan tilpasse temperaturen i henhold til timeplanen din",
16286
16339
  "thermostat_setscope": "Angi omfang",
16287
16340
  "thermostat_settemp": "Still inn temp.",
@@ -16294,7 +16347,8 @@ export default {
16294
16347
  "thermostat_triggertimes": "Utløsende tider",
16295
16348
  "thermostat_unit": "Enhet:° C",
16296
16349
  "thermostat_vacationmode": "Feriemodus",
16297
- "thermostat_warm": "Warm",
16350
+ "thermostat_vacationplan": "Vacation plan",
16351
+ "thermostat_warm": "Comfort",
16298
16352
  "time_unit_h": "h",
16299
16353
  "timer_ceiling_fan_headline_text": "Nedtelling",
16300
16354
  "timer_ceiling_fan_lighting_switched_off_text": "Belysningen vil bli slått av ved ca. {0}",
@@ -17170,16 +17224,17 @@ export default {
17170
17224
  "switch_overcharge_headline_description": "De functie schakelt het opladen van mobiele apparaten, waaronder mobiele telefoons en powerbanks, automatisch uit wanneer ze volledig zijn opgeladen om overbelading te voorkomen en de levensduur van de batterij te verlengen.",
17171
17225
  "switch_overcharge_headline_text": "Bescherming tegen overlading",
17172
17226
  "switchinching_overview_description_text": "Om het apparaat na een bepaalde tijd automatisch uit te schakelen.",
17173
- "thermostat_automode": "Automatic",
17227
+ "thermostat_automatictab": "Automatic",
17228
+ "thermostat_automode": "Automatic schedule",
17174
17229
  "thermostat_childlock_overview_description_text": "This feature disables the physical control on at the thermostat. The child lock can just be deactivated here in the settings.",
17175
17230
  "thermostat_cold": "Cold",
17176
17231
  "thermostat_comforttemp": "Comfort temp.",
17177
- "thermostat_cool": "Cool",
17232
+ "thermostat_cool": "Eco",
17178
17233
  "thermostat_descriptionrapid": "To set the temperature to a value immediately",
17179
17234
  "thermostat_descriptionvacation": "To set a vacation time",
17180
17235
  "thermostat_difference": "Adjustment of the ambient temperature",
17181
17236
  "thermostat_drifttemp": "Drift temp.",
17182
- "thermostat_editauto": "Edit Automatic mode",
17237
+ "thermostat_editauto": "Edit Automatic schedule",
17183
17238
  "thermostat_enddate": "End date",
17184
17239
  "thermostat_endtime": "End time",
17185
17240
  "thermostat_energysaving": "Energy saving temp.",
@@ -17190,6 +17245,7 @@ export default {
17190
17245
  "thermostat_powermode": "Manual",
17191
17246
  "thermostat_quicktemp": "Quick temp. rising",
17192
17247
  "thermostat_refresh": "Refresh",
17248
+ "thermostat_scene": "Scenes",
17193
17249
  "thermostat_schedule": "You can adapt the temperature as per your schedule",
17194
17250
  "thermostat_setscope": "Set scope",
17195
17251
  "thermostat_settemp": "Set temp.",
@@ -17202,7 +17258,8 @@ export default {
17202
17258
  "thermostat_triggertimes": "Trigger times",
17203
17259
  "thermostat_unit": "Unit: °C",
17204
17260
  "thermostat_vacationmode": "Vacation",
17205
- "thermostat_warm": "Warm",
17261
+ "thermostat_vacationplan": "Vacation plan",
17262
+ "thermostat_warm": "Comfort",
17206
17263
  "time_unit_h": "h",
17207
17264
  "timer_ceiling_fan_headline_text": "Timer",
17208
17265
  "timer_ceiling_fan_lighting_switched_off_text": "Verlichting wordt uitgeschakeld rond {0}",
@@ -18078,16 +18135,17 @@ export default {
18078
18135
  "switch_overcharge_headline_description": "Funcția oprește automat încărcarea dispozitivelor mobile, inclusiv a telefoanelor mobile și a băncilor de alimentare, atunci când acestea sunt complet încărcate, pentru a preveni supraîncărcarea și a prelungi durata de viață a bateriei.",
18079
18136
  "switch_overcharge_headline_text": "Protecție la supraîncărcare",
18080
18137
  "switchinching_overview_description_text": "Pentru a opri automat dispozitivul după o perioadă de timp.",
18081
- "thermostat_automode": "Automatic",
18138
+ "thermostat_automatictab": "Automatic",
18139
+ "thermostat_automode": "Automatic schedule",
18082
18140
  "thermostat_childlock_overview_description_text": "This feature disables the physical control on at the thermostat. The child lock can just be deactivated here in the settings.",
18083
18141
  "thermostat_cold": "Cold",
18084
18142
  "thermostat_comforttemp": "Comfort temp.",
18085
- "thermostat_cool": "Cool",
18143
+ "thermostat_cool": "Eco",
18086
18144
  "thermostat_descriptionrapid": "To set the temperature to a value immediately",
18087
18145
  "thermostat_descriptionvacation": "To set a vacation time",
18088
18146
  "thermostat_difference": "Adjustment of the ambient temperature",
18089
18147
  "thermostat_drifttemp": "Drift temp.",
18090
- "thermostat_editauto": "Edit Automatic mode",
18148
+ "thermostat_editauto": "Edit Automatic schedule",
18091
18149
  "thermostat_enddate": "End date",
18092
18150
  "thermostat_endtime": "End time",
18093
18151
  "thermostat_energysaving": "Energy saving temp.",
@@ -18098,6 +18156,7 @@ export default {
18098
18156
  "thermostat_powermode": "Manual",
18099
18157
  "thermostat_quicktemp": "Quick temp. rising",
18100
18158
  "thermostat_refresh": "Refresh",
18159
+ "thermostat_scene": "Scenes",
18101
18160
  "thermostat_schedule": "You can adapt the temperature as per your schedule",
18102
18161
  "thermostat_setscope": "Set scope",
18103
18162
  "thermostat_settemp": "Set temp.",
@@ -18110,7 +18169,8 @@ export default {
18110
18169
  "thermostat_triggertimes": "Trigger times",
18111
18170
  "thermostat_unit": "Unit: °C",
18112
18171
  "thermostat_vacationmode": "Vacation",
18113
- "thermostat_warm": "Warm",
18172
+ "thermostat_vacationplan": "Vacation plan",
18173
+ "thermostat_warm": "Comfort",
18114
18174
  "time_unit_h": "h",
18115
18175
  "timer_ceiling_fan_headline_text": "Cronometru",
18116
18176
  "timer_ceiling_fan_lighting_switched_off_text": "Iluminatul va fi oprit la aproximativ {0}",
@@ -18986,7 +19046,8 @@ export default {
18986
19046
  "switch_overcharge_headline_description": "Táto funkcia automaticky vypne nabíjanie mobilných zariadení vrátane mobilných telefónov a napájacích bánk, keď sú úplne nabité, aby sa zabránilo prebíjaniu a predĺžila sa životnosť batérie.",
18987
19047
  "switch_overcharge_headline_text": "Ochrana proti prebíjaniu",
18988
19048
  "switchinching_overview_description_text": "Automatické vypnutie zariadenia po určitej dobe.",
18989
- "thermostat_automode": "Automatický",
19049
+ "thermostat_automatictab": "Automatic",
19050
+ "thermostat_automode": "Automatický plán",
18990
19051
  "thermostat_childlock_overview_description_text": "Táto funkcia deaktivuje fyzické ovládanie na termostate. Detskú poistku je možné deaktivovať len tu v nastaveniach.",
18991
19052
  "thermostat_cold": "Chladno",
18992
19053
  "thermostat_comforttemp": "Komfortná teplota",
@@ -19006,6 +19067,7 @@ export default {
19006
19067
  "thermostat_powermode": "Manuálny",
19007
19068
  "thermostat_quicktemp": "Rýchle zvyšovanie teploty",
19008
19069
  "thermostat_refresh": "Aktualizovať",
19070
+ "thermostat_scene": "Scenes",
19009
19071
  "thermostat_schedule": "Teplotu si môžete prispôsobiť podľa svojho plánu",
19010
19072
  "thermostat_setscope": "Nastavenie rozsahu",
19011
19073
  "thermostat_settemp": "Nastaviť teplotu",
@@ -19018,6 +19080,7 @@ export default {
19018
19080
  "thermostat_triggertimes": "SPÚŠŤACIE ČASY",
19019
19081
  "thermostat_unit": "Jednotka: °C",
19020
19082
  "thermostat_vacationmode": "Dovolenka",
19083
+ "thermostat_vacationplan": "Vacation plan",
19021
19084
  "thermostat_warm": "Teplo",
19022
19085
  "time_unit_h": "h",
19023
19086
  "timer_ceiling_fan_headline_text": "Časovač",
@@ -19894,11 +19957,12 @@ export default {
19894
19957
  "switch_overcharge_headline_description": "Funktionen stänger automatiskt av laddning av dina mobila enheter, inklusive mobiltelefoner och kraftbanker, när de är fulladdade för att förhindra överladdning och förlänga batteriets livslängd.",
19895
19958
  "switch_overcharge_headline_text": "Överladdningsskydd",
19896
19959
  "switchinching_overview_description_text": "För att automatiskt stänga av enheten efter en tidsperiod.",
19897
- "thermostat_automode": "Autoläge",
19960
+ "thermostat_automatictab": "Automatic",
19961
+ "thermostat_automode": "Automatiskt schema",
19898
19962
  "thermostat_childlock_overview_description_text": "This feature disables the physical control on at the thermostat. The child lock can just be deactivated here in the settings.",
19899
19963
  "thermostat_cold": "Cold",
19900
19964
  "thermostat_comforttemp": "Komforttemperatur.",
19901
- "thermostat_cool": "Cool",
19965
+ "thermostat_cool": "Eco",
19902
19966
  "thermostat_descriptionrapid": "Ställ in temperaturen på ett värde omedelbart",
19903
19967
  "thermostat_descriptionvacation": "Ställ in semestertid",
19904
19968
  "thermostat_difference": "Skillnad mellan aktuell och inställd temperatur",
@@ -19914,6 +19978,7 @@ export default {
19914
19978
  "thermostat_powermode": "Manuell",
19915
19979
  "thermostat_quicktemp": "Snabb temperaturhöjning",
19916
19980
  "thermostat_refresh": "Uppdatera",
19981
+ "thermostat_scene": "Scenes",
19917
19982
  "thermostat_schedule": "Du kan anpassa temperaturen enligt ditt schema",
19918
19983
  "thermostat_setscope": "Ange omfattning",
19919
19984
  "thermostat_settemp": "Ställ in temperatur:",
@@ -19926,7 +19991,8 @@ export default {
19926
19991
  "thermostat_triggertimes": "Utlösande tider",
19927
19992
  "thermostat_unit": "Enhet: °C",
19928
19993
  "thermostat_vacationmode": "Semesterläge",
19929
- "thermostat_warm": "Warm",
19994
+ "thermostat_vacationplan": "Vacation plan",
19995
+ "thermostat_warm": "Comfort",
19930
19996
  "time_unit_h": "h",
19931
19997
  "timer_ceiling_fan_headline_text": "Timer",
19932
19998
  "timer_ceiling_fan_lighting_switched_off_text": "Belysningen släcks vid ca {0}",
@@ -20802,16 +20868,17 @@ export default {
20802
20868
  "switch_overcharge_headline_description": "Функція автоматично відключає зарядку ваших мобільних пристроїв, включаючи мобільні телефони та банки живлення, коли вони повністю заряджені, щоб запобігти перезарядженню та продовжити термін служби акумулятора.",
20803
20869
  "switch_overcharge_headline_text": "Захист від перезарядки",
20804
20870
  "switchinching_overview_description_text": "Автоматичне вимкнення пристрою через певний проміжок часу.",
20805
- "thermostat_automode": "Автоматичний режим",
20871
+ "thermostat_automatictab": "Автоматично",
20872
+ "thermostat_automode": "Автоматичний розклад",
20806
20873
  "thermostat_childlock_overview_description_text": "Ця функція відключає фізичне управління пристроєм. Єдина можливість – відключити його тут.",
20807
20874
  "thermostat_cold": "Холодний",
20808
20875
  "thermostat_comforttemp": "Комфортна температура.",
20809
- "thermostat_cool": "холодний",
20876
+ "thermostat_cool": "Еко",
20810
20877
  "thermostat_descriptionrapid": "Щоб відразу встановити значення температури",
20811
20878
  "thermostat_descriptionvacation": "Встановити час перерви",
20812
20879
  "thermostat_difference": "Регулювання температури навколишнього середовища",
20813
20880
  "thermostat_drifttemp": "Похибка температури.",
20814
- "thermostat_editauto": "Редагувати автоматичний режим",
20881
+ "thermostat_editauto": "Редагувати автоматичний розклад",
20815
20882
  "thermostat_enddate": "Дата завершення",
20816
20883
  "thermostat_endtime": "Час завершення",
20817
20884
  "thermostat_energysaving": "Температура енергозберігання",
@@ -20822,6 +20889,7 @@ export default {
20822
20889
  "thermostat_powermode": "Інструкція",
20823
20890
  "thermostat_quicktemp": "Швидкий темп підвищення температури",
20824
20891
  "thermostat_refresh": "Оновити",
20892
+ "thermostat_scene": "Сценарії",
20825
20893
  "thermostat_schedule": "Ви можете регулювати температуру відповідно до свого розкладу",
20826
20894
  "thermostat_setscope": "Встановити область застосування",
20827
20895
  "thermostat_settemp": "Встановити температуру.",
@@ -20834,7 +20902,8 @@ export default {
20834
20902
  "thermostat_triggertimes": "ЧАС ЗАПУСКУ",
20835
20903
  "thermostat_unit": "Одиниця виміру:° C",
20836
20904
  "thermostat_vacationmode": "Режим перерви",
20837
- "thermostat_warm": "Теплий",
20905
+ "thermostat_vacationplan": "План перерви",
20906
+ "thermostat_warm": "Комфорт",
20838
20907
  "time_unit_h": "h",
20839
20908
  "timer_ceiling_fan_headline_text": "Таймер",
20840
20909
  "timer_ceiling_fan_lighting_switched_off_text": "Освітлення буде вимкнено приблизно через {0}",
@@ -21710,16 +21779,17 @@ export default {
21710
21779
  "switch_overcharge_headline_description": "A funkció automatikusan kikapcsolja a mobileszközök töltését, beleértve a mobiltelefonokat és a külső akkumulátorokat, amikor azok teljesen fel vannak töltve, hogy megakadályozzák a túltöltést és meghosszabbítsák az akkumulátor élettartamát.",
21711
21780
  "switch_overcharge_headline_text": "Túltöltés elleni védelem",
21712
21781
  "switchinching_overview_description_text": "Ahhoz, hogy automatikusan kikapcsolja a készüléket, miután egy ideig.",
21713
- "thermostat_automode": "Automatic",
21782
+ "thermostat_automatictab": "Automatic",
21783
+ "thermostat_automode": "Automatic schedule",
21714
21784
  "thermostat_childlock_overview_description_text": "This feature disables the physical control on at the thermostat. The child lock can just be deactivated here in the settings.",
21715
21785
  "thermostat_cold": "Cold",
21716
21786
  "thermostat_comforttemp": "Comfort temp.",
21717
- "thermostat_cool": "Cool",
21787
+ "thermostat_cool": "Eco",
21718
21788
  "thermostat_descriptionrapid": "To set the temperature to a value immediately",
21719
21789
  "thermostat_descriptionvacation": "To set a vacation time",
21720
21790
  "thermostat_difference": "Adjustment of the ambient temperature",
21721
21791
  "thermostat_drifttemp": "Drift temp.",
21722
- "thermostat_editauto": "Edit Automatic mode",
21792
+ "thermostat_editauto": "Edit Automatic schedule",
21723
21793
  "thermostat_enddate": "End date",
21724
21794
  "thermostat_endtime": "End time",
21725
21795
  "thermostat_energysaving": "Energy saving temp.",
@@ -21730,6 +21800,7 @@ export default {
21730
21800
  "thermostat_powermode": "Manual",
21731
21801
  "thermostat_quicktemp": "Quick temp. rising",
21732
21802
  "thermostat_refresh": "Refresh",
21803
+ "thermostat_scene": "Scenes",
21733
21804
  "thermostat_schedule": "You can adapt the temperature as per your schedule",
21734
21805
  "thermostat_setscope": "Set scope",
21735
21806
  "thermostat_settemp": "Set temp.",
@@ -21742,7 +21813,8 @@ export default {
21742
21813
  "thermostat_triggertimes": "Trigger times",
21743
21814
  "thermostat_unit": "Unit: °C",
21744
21815
  "thermostat_vacationmode": "Vacation",
21745
- "thermostat_warm": "Warm",
21816
+ "thermostat_vacationplan": "Vacation plan",
21817
+ "thermostat_warm": "Comfort",
21746
21818
  "time_unit_h": "h",
21747
21819
  "timer_ceiling_fan_headline_text": "Időzítő",
21748
21820
  "timer_ceiling_fan_lighting_switched_off_text": "A világítás kikapcsol körülbelül ekkor: {0}",
@@ -22618,16 +22690,17 @@ export default {
22618
22690
  "switch_overcharge_headline_description": "Funkcja automatycznie wyłącza ładowanie urządzeń mobilnych, w tym telefonów komórkowych i power banków, gdy są w pełni naładowane, aby zapobiec przeładowaniu i przedłużyć żywotność baterii.",
22619
22691
  "switch_overcharge_headline_text": "Ochrona przed przeładowaniem",
22620
22692
  "switchinching_overview_description_text": "Automatyczne wyłączanie urządzenia po pewnym czasie.",
22621
- "thermostat_automode": "Automatic",
22693
+ "thermostat_automatictab": "Automatic",
22694
+ "thermostat_automode": "Automatic schedule",
22622
22695
  "thermostat_childlock_overview_description_text": "This feature disables the physical control on at the thermostat. The child lock can just be deactivated here in the settings.",
22623
22696
  "thermostat_cold": "Cold",
22624
22697
  "thermostat_comforttemp": "Comfort temp.",
22625
- "thermostat_cool": "Cool",
22698
+ "thermostat_cool": "Eco",
22626
22699
  "thermostat_descriptionrapid": "To set the temperature to a value immediately",
22627
22700
  "thermostat_descriptionvacation": "To set a vacation time",
22628
22701
  "thermostat_difference": "Adjustment of the ambient temperature",
22629
22702
  "thermostat_drifttemp": "Drift temp.",
22630
- "thermostat_editauto": "Edit Automatic mode",
22703
+ "thermostat_editauto": "Edit Automatic schedule",
22631
22704
  "thermostat_enddate": "End date",
22632
22705
  "thermostat_endtime": "End time",
22633
22706
  "thermostat_energysaving": "Energy saving temp.",
@@ -22638,6 +22711,7 @@ export default {
22638
22711
  "thermostat_powermode": "Manual",
22639
22712
  "thermostat_quicktemp": "Quick temp. rising",
22640
22713
  "thermostat_refresh": "Refresh",
22714
+ "thermostat_scene": "Scenes",
22641
22715
  "thermostat_schedule": "You can adapt the temperature as per your schedule",
22642
22716
  "thermostat_setscope": "Set scope",
22643
22717
  "thermostat_settemp": "Set temp.",
@@ -22650,7 +22724,8 @@ export default {
22650
22724
  "thermostat_triggertimes": "Trigger times",
22651
22725
  "thermostat_unit": "Unit: °C",
22652
22726
  "thermostat_vacationmode": "Vacation",
22653
- "thermostat_warm": "Warm",
22727
+ "thermostat_vacationplan": "Vacation plan",
22728
+ "thermostat_warm": "Comfort",
22654
22729
  "time_unit_h": "h",
22655
22730
  "timer_ceiling_fan_headline_text": "Timer",
22656
22731
  "timer_ceiling_fan_lighting_switched_off_text": "Oświetlenie zostanie wyłączone około {0}",
@@ -23526,16 +23601,17 @@ export default {
23526
23601
  "switch_overcharge_headline_description": "O recurso desliga automaticamente o carregamento de seus dispositivos móveis, incluindo telefones celulares e bancos de energia, quando eles estão totalmente carregados para evitar sobrecargas e prolongar a vida útil da bateria.",
23527
23602
  "switch_overcharge_headline_text": "Proteção contra sobrecarga",
23528
23603
  "switchinching_overview_description_text": "Para desligar automaticamente o dispositivo após um período de tempo.",
23529
- "thermostat_automode": "Automatic",
23604
+ "thermostat_automatictab": "Automatic",
23605
+ "thermostat_automode": "Automatic schedule",
23530
23606
  "thermostat_childlock_overview_description_text": "This feature disables the physical control on at the thermostat. The child lock can just be deactivated here in the settings.",
23531
23607
  "thermostat_cold": "Cold",
23532
23608
  "thermostat_comforttemp": "Comfort temp.",
23533
- "thermostat_cool": "Cool",
23609
+ "thermostat_cool": "Eco",
23534
23610
  "thermostat_descriptionrapid": "To set the temperature to a value immediately",
23535
23611
  "thermostat_descriptionvacation": "To set a vacation time",
23536
23612
  "thermostat_difference": "Adjustment of the ambient temperature",
23537
23613
  "thermostat_drifttemp": "Drift temp.",
23538
- "thermostat_editauto": "Edit Automatic mode",
23614
+ "thermostat_editauto": "Edit Automatic schedule",
23539
23615
  "thermostat_enddate": "End date",
23540
23616
  "thermostat_endtime": "End time",
23541
23617
  "thermostat_energysaving": "Energy saving temp.",
@@ -23546,6 +23622,7 @@ export default {
23546
23622
  "thermostat_powermode": "Manual",
23547
23623
  "thermostat_quicktemp": "Quick temp. rising",
23548
23624
  "thermostat_refresh": "Refresh",
23625
+ "thermostat_scene": "Scenes",
23549
23626
  "thermostat_schedule": "You can adapt the temperature as per your schedule",
23550
23627
  "thermostat_setscope": "Set scope",
23551
23628
  "thermostat_settemp": "Set temp.",
@@ -23558,7 +23635,8 @@ export default {
23558
23635
  "thermostat_triggertimes": "Trigger times",
23559
23636
  "thermostat_unit": "Unit: °C",
23560
23637
  "thermostat_vacationmode": "Vacation",
23561
- "thermostat_warm": "Warm",
23638
+ "thermostat_vacationplan": "Vacation plan",
23639
+ "thermostat_warm": "Comfort",
23562
23640
  "time_unit_h": "h",
23563
23641
  "timer_ceiling_fan_headline_text": "Cronômetro",
23564
23642
  "timer_ceiling_fan_lighting_switched_off_text": "A iluminação será desligada por volta de {0}",
@@ -24434,16 +24512,17 @@ export default {
24434
24512
  "switch_overcharge_headline_description": "Эта функция автоматически отключает зарядку мобильных устройств, включая мобильные телефоны и блоки питания, после их полной зарядки, чтобы предотвратить перезарядку и продлить срок службы батареи.",
24435
24513
  "switch_overcharge_headline_text": "Защита от перезарядки",
24436
24514
  "switchinching_overview_description_text": "Для автоматического выключения устройства через некоторое время.",
24437
- "thermostat_automode": "Automatic",
24515
+ "thermostat_automatictab": "Automatic",
24516
+ "thermostat_automode": "Automatic schedule",
24438
24517
  "thermostat_childlock_overview_description_text": "This feature disables the physical control on at the thermostat. The child lock can just be deactivated here in the settings.",
24439
24518
  "thermostat_cold": "Cold",
24440
24519
  "thermostat_comforttemp": "Comfort temp.",
24441
- "thermostat_cool": "Cool",
24520
+ "thermostat_cool": "Eco",
24442
24521
  "thermostat_descriptionrapid": "To set the temperature to a value immediately",
24443
24522
  "thermostat_descriptionvacation": "To set a vacation time",
24444
24523
  "thermostat_difference": "Adjustment of the ambient temperature",
24445
24524
  "thermostat_drifttemp": "Drift temp.",
24446
- "thermostat_editauto": "Edit Automatic mode",
24525
+ "thermostat_editauto": "Edit Automatic schedule",
24447
24526
  "thermostat_enddate": "End date",
24448
24527
  "thermostat_endtime": "End time",
24449
24528
  "thermostat_energysaving": "Energy saving temp.",
@@ -24454,6 +24533,7 @@ export default {
24454
24533
  "thermostat_powermode": "Manual",
24455
24534
  "thermostat_quicktemp": "Quick temp. rising",
24456
24535
  "thermostat_refresh": "Refresh",
24536
+ "thermostat_scene": "Scenes",
24457
24537
  "thermostat_schedule": "You can adapt the temperature as per your schedule",
24458
24538
  "thermostat_setscope": "Set scope",
24459
24539
  "thermostat_settemp": "Set temp.",
@@ -24466,7 +24546,8 @@ export default {
24466
24546
  "thermostat_triggertimes": "Trigger times",
24467
24547
  "thermostat_unit": "Unit: °C",
24468
24548
  "thermostat_vacationmode": "Vacation",
24469
- "thermostat_warm": "Warm",
24549
+ "thermostat_vacationplan": "Vacation plan",
24550
+ "thermostat_warm": "Comfort",
24470
24551
  "time_unit_h": "h",
24471
24552
  "timer_ceiling_fan_headline_text": "Таймер",
24472
24553
  "timer_ceiling_fan_lighting_switched_off_text": "Освещение будет выключено примерно через {0}",
@@ -25342,16 +25423,17 @@ export default {
25342
25423
  "switch_overcharge_headline_description": "Bu özellik, aşırı şarjı önlemek ve pil ömrünü uzatmak için tamamen şarj olduklarında cep telefonları ve güç bankaları da dahil olmak üzere mobil cihazlarınızı şarj etmeyi otomatik olarak kapatır.",
25343
25424
  "switch_overcharge_headline_text": "Aşırı Şarj Koruması",
25344
25425
  "switchinching_overview_description_text": "Belirli bir süre sonra cihazı otomatik olarak kapatmak için.",
25345
- "thermostat_automode": "Automatic",
25426
+ "thermostat_automatictab": "Automatic",
25427
+ "thermostat_automode": "Automatic schedule",
25346
25428
  "thermostat_childlock_overview_description_text": "This feature disables the physical control on at the thermostat. The child lock can just be deactivated here in the settings.",
25347
25429
  "thermostat_cold": "Cold",
25348
25430
  "thermostat_comforttemp": "Comfort temp.",
25349
- "thermostat_cool": "Cool",
25431
+ "thermostat_cool": "Eco",
25350
25432
  "thermostat_descriptionrapid": "To set the temperature to a value immediately",
25351
25433
  "thermostat_descriptionvacation": "To set a vacation time",
25352
25434
  "thermostat_difference": "Adjustment of the ambient temperature",
25353
25435
  "thermostat_drifttemp": "Drift temp.",
25354
- "thermostat_editauto": "Edit Automatic mode",
25436
+ "thermostat_editauto": "Edit Automatic schedule",
25355
25437
  "thermostat_enddate": "End date",
25356
25438
  "thermostat_endtime": "End time",
25357
25439
  "thermostat_energysaving": "Energy saving temp.",
@@ -25362,6 +25444,7 @@ export default {
25362
25444
  "thermostat_powermode": "Manual",
25363
25445
  "thermostat_quicktemp": "Quick temp. rising",
25364
25446
  "thermostat_refresh": "Refresh",
25447
+ "thermostat_scene": "Scenes",
25365
25448
  "thermostat_schedule": "You can adapt the temperature as per your schedule",
25366
25449
  "thermostat_setscope": "Set scope",
25367
25450
  "thermostat_settemp": "Set temp.",
@@ -25374,7 +25457,8 @@ export default {
25374
25457
  "thermostat_triggertimes": "Trigger times",
25375
25458
  "thermostat_unit": "Unit: °C",
25376
25459
  "thermostat_vacationmode": "Vacation",
25377
- "thermostat_warm": "Warm",
25460
+ "thermostat_vacationplan": "Vacation plan",
25461
+ "thermostat_warm": "Comfort",
25378
25462
  "time_unit_h": "h",
25379
25463
  "timer_ceiling_fan_headline_text": "Zamanlayıcı",
25380
25464
  "timer_ceiling_fan_lighting_switched_off_text": "Aydınlatma yaklaşık {0}'de kapatılacaktır",
@@ -26250,16 +26334,17 @@ export default {
26250
26334
  "switch_overcharge_headline_description": "O recurso desliga automaticamente o carregamento de seus dispositivos móveis, incluindo telefones celulares e bancos de energia, quando eles estão totalmente carregados para evitar sobrecargas e prolongar a vida útil da bateria.",
26251
26335
  "switch_overcharge_headline_text": "Proteção contra sobrecarga",
26252
26336
  "switchinching_overview_description_text": "Para desligar automaticamente o dispositivo após um período de tempo.",
26253
- "thermostat_automode": "Automatic",
26337
+ "thermostat_automatictab": "Automatic",
26338
+ "thermostat_automode": "Automatic schedule",
26254
26339
  "thermostat_childlock_overview_description_text": "This feature disables the physical control on at the thermostat. The child lock can just be deactivated here in the settings.",
26255
26340
  "thermostat_cold": "Cold",
26256
26341
  "thermostat_comforttemp": "Comfort temp.",
26257
- "thermostat_cool": "Cool",
26342
+ "thermostat_cool": "Eco",
26258
26343
  "thermostat_descriptionrapid": "To set the temperature to a value immediately",
26259
26344
  "thermostat_descriptionvacation": "To set a vacation time",
26260
26345
  "thermostat_difference": "Adjustment of the ambient temperature",
26261
26346
  "thermostat_drifttemp": "Drift temp.",
26262
- "thermostat_editauto": "Edit Automatic mode",
26347
+ "thermostat_editauto": "Edit Automatic schedule",
26263
26348
  "thermostat_enddate": "End date",
26264
26349
  "thermostat_endtime": "End time",
26265
26350
  "thermostat_energysaving": "Energy saving temp.",
@@ -26270,6 +26355,7 @@ export default {
26270
26355
  "thermostat_powermode": "Manual",
26271
26356
  "thermostat_quicktemp": "Quick temp. rising",
26272
26357
  "thermostat_refresh": "Refresh",
26358
+ "thermostat_scene": "Scenes",
26273
26359
  "thermostat_schedule": "You can adapt the temperature as per your schedule",
26274
26360
  "thermostat_setscope": "Set scope",
26275
26361
  "thermostat_settemp": "Set temp.",
@@ -26282,7 +26368,8 @@ export default {
26282
26368
  "thermostat_triggertimes": "Trigger times",
26283
26369
  "thermostat_unit": "Unit: °C",
26284
26370
  "thermostat_vacationmode": "Vacation",
26285
- "thermostat_warm": "Warm",
26371
+ "thermostat_vacationplan": "Vacation plan",
26372
+ "thermostat_warm": "Comfort",
26286
26373
  "time_unit_h": "h",
26287
26374
  "timer_ceiling_fan_headline_text": "Cronômetro",
26288
26375
  "timer_ceiling_fan_lighting_switched_off_text": "A iluminação será desligada por volta de {0}",
package/translateKey.txt CHANGED
@@ -921,4 +921,7 @@ day
921
921
  energyconsumption_emptydata
922
922
  date_type
923
923
  cancel_dialog_leave_unsaved_vacation_note
924
- mood_string_mode_light_show
924
+ mood_string_mode_light_show
925
+ thermostat_scene
926
+ thermostat_vacationplan
927
+ thermostat_automatictab