@ledvance/base 1.0.14 → 1.0.15

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/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "name": "@ledvance/base",
5
5
  "pid": [],
6
6
  "uiid": "",
7
- "version": "1.0.14",
7
+ "version": "1.0.15",
8
8
  "scripts": {},
9
9
  "dependencies": {
10
10
  "@reduxjs/toolkit": "^1.8.6",
@@ -1,9 +1,10 @@
1
- import { NativeResult } from '../models/modules/Result';
1
+ import { NativeResult, Result } from '../models/modules/Result';
2
2
  export declare class NativeApi {
3
3
  static back(): void;
4
4
  static log(msg: string): void;
5
5
  static logObj(msg: any): void;
6
6
  static showObj(obj: any): void;
7
+ static getAllTaskTimer(devId: string, type?: number): Promise<Result<any>>;
7
8
  static timerList(deviceId: string): Promise<any>;
8
9
  static addTimer(deviceId: string, value: any, callback?: (res: any) => void): void;
9
10
  static editTimer(deviceId: string, value: any, callback?: (res: any) => void): void;
package/src/api/native.ts CHANGED
@@ -1,10 +1,11 @@
1
1
  import {NativeModules} from 'react-native'
2
- import {NativeResult} from '../models/modules/Result'
2
+ import {NativeResult, Result} from '../models/modules/Result'
3
3
 
4
4
  interface LDVDevicePanelManager {
5
5
  back: () => void
6
6
  control: (params: any, callback: (result: any) => void) => void
7
7
  setTimer: (params: any, callback: (result: any) => void) => void
8
+ getAllTaskTimer: (deviceId: string, type: number, callback: (res: NativeResult<string>) => void) => void
8
9
  deleteDevice: (deviceId: string, isReset: boolean, callback: (result: any) => void) => void
9
10
  rename: (deviceId: string, name: string, callback: (result: any) => void) => void
10
11
  toDeviceSettingsPage: (deviceId: string) => void
@@ -66,6 +67,16 @@ const deleteTimer = (devId, value, callback: any = undefined) => {
66
67
  })
67
68
  }
68
69
 
70
+ /**
71
+ * 获取所有Timer,不区分TASK
72
+ * @param devId 涂鸦 设备 ID 或群组 ID
73
+ * @param type 0:设备,1:群组
74
+ * @param callback
75
+ */
76
+ function getAllTaskTimer(devId: string, type: number = 0, callback: ((res: NativeResult<string>) => void)) {
77
+ devicePanel.getAllTaskTimer(devId, type, callback)
78
+ }
79
+
69
80
  const setDp = <T>(deviceId: string, key: string, value: any) => {
70
81
  return new Promise<NativeResult<T>>((resolve, _reject) => {
71
82
  control(deviceId, {[key]: value}, res => {
@@ -123,6 +134,18 @@ export class NativeApi {
123
134
  showObj(obj)
124
135
  }
125
136
 
137
+ static getAllTaskTimer(devId: string, type: number = 0): Promise<Result<any>> {
138
+ return new Promise<Result<any>>((resolve, _reject) => {
139
+ getAllTaskTimer(devId, type, res => {
140
+ resolve({
141
+ success: res.result,
142
+ data: res.result ? JSON.parse(res.data || '[]') : undefined,
143
+ msg: res.msg,
144
+ })
145
+ })
146
+ })
147
+ }
148
+
126
149
  static timerList(deviceId: string): Promise<any> {
127
150
  return timerList(deviceId)
128
151
  }
@@ -305,6 +305,15 @@ export default {
305
305
  devicemusic_game_text: "النوع 3",
306
306
  devicemusic_romantic_text: "النوع 4",
307
307
  devicemusic_music_text: "النوع 1",
308
+ light_sources_feature_2_text_min_off:
309
+ "تنطفئ الاضاءة الرئيسية خلال {0} min",
310
+ light_sources_feature_2_text_min_on:
311
+ "يتم تشغيل الاضاءة الرئيسية خلال {0} min",
312
+ light_sources_feature_2_switched_off_text:
313
+ "سيتم إيقاف الإضاءة الرئيسية عند حوالي {0}",
314
+ light_sources_feature_2_switched_on_text:
315
+ "سيتم تشغيل الإضاءة الرئيسية عند حوالي {0}",
316
+ switch_overcharge_headline_text: "حماية الشحن الزائد",
308
317
  },
309
318
  cs: {
310
319
  add_new_dynamic_mood_color_changing_mode_value: "Gradient",
@@ -619,6 +628,15 @@ export default {
619
628
  devicemusic_game_text: "Žánr 3",
620
629
  devicemusic_romantic_text: "Žánr 4",
621
630
  devicemusic_music_text: "Žánr 1",
631
+ light_sources_feature_2_text_min_off:
632
+ "Vypnutí hlavního osvětlení za {0} min",
633
+ light_sources_feature_2_text_min_on:
634
+ "Zapnutí hlavního osvětlení za {0} min",
635
+ light_sources_feature_2_switched_off_text:
636
+ "Hlavní osvětlení se vypne přibližně v {0}",
637
+ light_sources_feature_2_switched_on_text:
638
+ "Hlavní osvětlení se zapne přibližně v {0}",
639
+ switch_overcharge_headline_text: "Ochrana proti přebíjení",
622
640
  },
623
641
  en: {
624
642
  add_new_dynamic_mood_color_changing_mode_value: "Gradient",
@@ -929,6 +947,15 @@ export default {
929
947
  devicemusic_game_text: "Genre 3",
930
948
  devicemusic_romantic_text: "Genre 4",
931
949
  devicemusic_music_text: "Genre 1",
950
+ light_sources_feature_2_text_min_off:
951
+ "Main lighting off in {0} min",
952
+ light_sources_feature_2_text_min_on:
953
+ "Main lighting on in {0} min",
954
+ light_sources_feature_2_switched_off_text:
955
+ "Main lighting will be switched off at about {0}",
956
+ light_sources_feature_2_switched_on_text:
957
+ "Main lighting will be switched on at about {0}",
958
+ switch_overcharge_headline_text: "Overcharging Protection",
932
959
  },
933
960
  bg: {
934
961
  add_new_dynamic_mood_color_changing_mode_value: "Градиент",
@@ -950,7 +977,7 @@ export default {
950
977
  "Дефиниран от потребителя избор на цвят и стойност на яркостта.",
951
978
  feature_summary_action_txt_1: "Включване",
952
979
  sockets_specific_settings_relay_status: "Сила върху поведението",
953
- light_sources_specific_settings_power_off: "Памет за изключване",
980
+ light_sources_specific_settings_power_off: "Сила върху поведението",
954
981
  add_new_dynamic_mood_color_changing_mode_value2: "Скок",
955
982
  add_new_dynamic_mood_lights_field_headline2_text: "Цвят",
956
983
  add_new_dynamic_mood_lights_field_saturation_text: "Насищане",
@@ -1247,6 +1274,15 @@ export default {
1247
1274
  devicemusic_game_text: "Жанр 3",
1248
1275
  devicemusic_romantic_text: "Жанр 4",
1249
1276
  devicemusic_music_text: "Жанр 1",
1277
+ light_sources_feature_2_text_min_off:
1278
+ "Изключване на основното осветление след {0} min",
1279
+ light_sources_feature_2_text_min_on:
1280
+ "Основното осветление се включва след {0} min",
1281
+ light_sources_feature_2_switched_off_text:
1282
+ "Основното осветление ще бъде изключено около {0}",
1283
+ light_sources_feature_2_switched_on_text:
1284
+ "Основното осветление ще бъде включено около {0}",
1285
+ switch_overcharge_headline_text: "Защита от презареждане",
1250
1286
  },
1251
1287
  da: {
1252
1288
  add_new_dynamic_mood_color_changing_mode_value: "Gradvist",
@@ -1268,7 +1304,7 @@ export default {
1268
1304
  "Dine indstillinger for farve og lysstyrke.",
1269
1305
  feature_summary_action_txt_1: "Tænd",
1270
1306
  sockets_specific_settings_relay_status: "Når der tændes, så:",
1271
- light_sources_specific_settings_power_off: "Når der tændes , så:",
1307
+ light_sources_specific_settings_power_off: "Når der tændes, så:",
1272
1308
  add_new_dynamic_mood_color_changing_mode_value2: "Hurtige skift",
1273
1309
  add_new_dynamic_mood_lights_field_headline2_text: "Farve",
1274
1310
  add_new_dynamic_mood_lights_field_saturation_text: "Farvemætning",
@@ -1403,10 +1439,12 @@ export default {
1403
1439
  sleepwakeschedule_field_3_Times_chips2_text: "Søvnrutine",
1404
1440
  sleepwakeschedule_field_3_Times_chips_text: "Vågn op-rutine",
1405
1441
  sleepwakeschedule_field_speed_text: "Varighed",
1406
- cancel_dialog_delete_item_timeschedule_titel: "Vil du slette tidsplanen?",
1407
- cancel_dialog_delete_item_sleepschedule_titel: "Vil du slette søvnrutinen?",
1442
+ cancel_dialog_delete_item_timeschedule_titel:
1443
+ "Er du sikker på, du vil slette tidsplanen?",
1444
+ cancel_dialog_delete_item_sleepschedule_titel:
1445
+ "Er du sikker på, du vil slette søvnrutinen?",
1408
1446
  cancel_dialog_delete_item_wakeupschedule_titel:
1409
- "Vil du slette vågn op-rutinen?",
1447
+ "Er du sikker på, du vil slette vågn op-rutinen?",
1410
1448
  fixedTimeCycle_socket_headline: "Fast tidscyklus",
1411
1449
  randomtimecycle_sockets_headline_text: "Tilfældig tidscyklus",
1412
1450
  history_socket_headline_text: "Historik",
@@ -1448,17 +1486,17 @@ export default {
1448
1486
  conflict_dialog_save_item_randomtimecycle_description:
1449
1487
  "Bemærk, at den tilfældige tidscyklus er i konflikt med en eller flere funktioner. De modstridende funktioner vil blive deaktiveret.",
1450
1488
  conflict_dialog_save_item_randomtimecycle_titel:
1451
- "Vil du gemme og aktivere denne tilfældige tidscyklus?",
1489
+ "Er du sikker på, du vil gemme og aktivere denne tilfældige tidscyklus?",
1452
1490
  conflict_dialog_save_item_bio_rhythm_description:
1453
1491
  "Bemærk, at den biologiske rytme er i konflikt med en eller flere funktioner. De modstridende funktioner vil blive deaktiveret.",
1454
1492
  conflict_dialog_save_item_bio_rhythm_titel:
1455
- "Vil du gemme og aktivere denne biologiske rytme?",
1493
+ "Er du sikker på, du vil gemme og aktivere denne biologiske rytme?",
1456
1494
  conflict_dialog_save_item_sleepschedule_answer_no_text: "Nej",
1457
1495
  conflict_dialog_save_item_sleepschedule_answer_yes_text: "Ja",
1458
1496
  conflict_dialog_save_item_sleepschedule_description:
1459
1497
  "Bemærk, at søvnrutinen er i konflikt med en eller flere funktioner. De modstridende funktioner vil blive deaktiveret.",
1460
1498
  conflict_dialog_save_item_sleepschedule_titel:
1461
- "Vil du gemme og aktivere denne søvnrutine?",
1499
+ "Er du sikker på, du vil gemme og aktivere denne søvnrutine?",
1462
1500
  conflict_dialog_save_item_wakeupschedule_answer_no_text: "Nej",
1463
1501
  conflict_dialog_save_item_wakeupschedule_answer_yes_text: "Ja",
1464
1502
  conflict_dialog_save_item_wakeupschedule_description:
@@ -1483,7 +1521,7 @@ export default {
1483
1521
  conflict_dialog_save_item_fixedtimecycle_description:
1484
1522
  "Bemærk, at den faste tidscyklus er i konflikt med en eller flere funktioner. De modstridende funktioner vil blive deaktiveret.",
1485
1523
  conflict_dialog_save_item_fixedtimecycle_titel:
1486
- "Vil du gemme og aktivere denne faste tidscyklus?",
1524
+ "Er du sikker på, du vil gemme og aktivere denne faste tidscyklus?",
1487
1525
  bio_ryhthm_default_field_text: "Solopgang",
1488
1526
  timeschedule_add_schedule_no_device_warning_text:
1489
1527
  'Du skal vælge mindst én komponent i afsnittet "GÆLDER FOR".',
@@ -1506,13 +1544,13 @@ export default {
1506
1544
  cancel_dialog_delete_item_timeschedule_answer_no_text: "Nej",
1507
1545
  cancel_dialog_delete_item_timeschedule_answer_yes_text: "Ja",
1508
1546
  cancel_dialog_delete_item_fixedtimecycle_titel:
1509
- "Vil du slette den faste tidscyklus?",
1547
+ "Er du sikker på, du vil slette den faste tidscyklus?",
1510
1548
  cancel_dialog_delete_item_fixedtimecycle_description:
1511
1549
  "Bemærk, at du ikke kan gendanne det.",
1512
1550
  cancel_dialog_delete_item_fixedtimecycle_answer_yes_text: "Ja",
1513
1551
  cancel_dialog_delete_item_fixedtimecycle_answer_no_text: "Nej",
1514
1552
  cancel_dialog_delete_item_randomtimecycle_titel:
1515
- "Vil du slette den tilfældige tidscyklus?",
1553
+ "Er du sikker på, du vil slette den tilfældige tidscyklus?",
1516
1554
  cancel_dialog_delete_item_randomtimecycle_description:
1517
1555
  "Bemærk, at du ikke kan gendanne det.",
1518
1556
  cancel_dialog_delete_item_sleepschedule_answer_yes_text: "Ja",
@@ -1528,17 +1566,17 @@ export default {
1528
1566
  childlock_overview_description_text:
1529
1567
  "Denne funktion deaktiverer den fysiske kontakt på enheden. For at slukke for den kan du trykke på kontakten i fire gange i træk inden for fem sekunder eller slukke for denne funktion herfra.",
1530
1568
  conflict_dialog_save_item_timer_titel:
1531
- "Vil du gemme og aktivere denne timer?",
1569
+ "Er du sikker på, du vil gemme og aktivere denne timer?",
1532
1570
  conflict_dialog_save_item_timer_description:
1533
1571
  "Bemærk, at timeren er i konflikt med en eller flere funktioner. De modstridende funktioner deaktiveres.",
1534
- conflict_dialog_save_item_timer_answer_no_text: "nej",
1535
- conflict_dialog_save_item_timer_answer_yes_text: "ja",
1572
+ conflict_dialog_save_item_timer_answer_no_text: "Nej",
1573
+ conflict_dialog_save_item_timer_answer_yes_text: "Ja, den blinker",
1536
1574
  conflict_dialog_save_item_inching_titel:
1537
- "Vil du gemme og aktivere denne funktion?",
1575
+ "Er du sikker på, du vil gemme og aktivere denne funktion?",
1538
1576
  conflict_dialog_save_item_inching_description:
1539
1577
  "Bemærk, at den automatiske slukning er i konflikt med en eller flere funktioner. De modstridende funktioner vil blive deaktiveret.",
1540
- conflict_dialog_save_item_inching_answer_no_text: "nej",
1541
- conflict_dialog_save_item_inching_answer_yes_text: "ja",
1578
+ conflict_dialog_save_item_inching_answer_no_text: "Nej",
1579
+ conflict_dialog_save_item_inching_answer_yes_text: "Ja, den blinker",
1542
1580
  cancel_dialog_delete_item_sleepschedule_description:
1543
1581
  "Bemærk, at du ikke kan gendanne det.",
1544
1582
  cancel_dialog_delete_item_wakeupschedule_answer_no_text: "Nej",
@@ -1559,6 +1597,15 @@ export default {
1559
1597
  devicemusic_game_text: "Genre 3",
1560
1598
  devicemusic_romantic_text: "Genre 4",
1561
1599
  devicemusic_music_text: "Genre 1",
1600
+ light_sources_feature_2_text_min_off:
1601
+ "Hovedbelysningen slukker om {0} min.",
1602
+ light_sources_feature_2_text_min_on:
1603
+ "Hovedbelysningen tænder om {0} min.",
1604
+ light_sources_feature_2_switched_off_text:
1605
+ "Hovedbelysningen vil blive slukket omkring {0}",
1606
+ light_sources_feature_2_switched_on_text:
1607
+ "Hovedbelysningen tændes omkring {0}",
1608
+ switch_overcharge_headline_text: "Beskyttelse mod overopladning",
1562
1609
  },
1563
1610
  de: {
1564
1611
  add_new_dynamic_mood_color_changing_mode_value: "Fließend",
@@ -1799,7 +1846,7 @@ export default {
1799
1846
  "Möchtest Du diesen festen Zeitzyklus speichern und aktivieren?",
1800
1847
  bio_ryhthm_default_field_text: "Sonnenaufgang",
1801
1848
  timeschedule_add_schedule_no_device_warning_text:
1802
- "Im Bereich „Anwenden für“ müsst du mindestens eine Komponente auswählen.",
1849
+ "Im Bereich „Anwenden“ müsst Du mindestens eine Komponente auswählen.",
1803
1850
  add_new_dynamic_mood_alert_text:
1804
1851
  "Die maximale Zeichenanzahl wurde erreicht.",
1805
1852
  add_new_trigger_time_information_text:
@@ -1873,6 +1920,15 @@ export default {
1873
1920
  devicemusic_game_text: "Musikrichtung 3",
1874
1921
  devicemusic_romantic_text: "Musikrichtung 4",
1875
1922
  devicemusic_music_text: "Musikrichtung 1",
1923
+ light_sources_feature_2_text_min_off:
1924
+ "Hauptbeleuchtung aus in {0} min",
1925
+ light_sources_feature_2_text_min_on:
1926
+ "Hauptbeleuchtung ein in {0} min",
1927
+ light_sources_feature_2_switched_off_text:
1928
+ "Die Hauptbeleuchtung wird um ca. {0} ausgeschaltet.",
1929
+ light_sources_feature_2_switched_on_text:
1930
+ "Die Hauptbeleuchtung wird um ca. {0} eingeschaltet.",
1931
+ switch_overcharge_headline_text: "Überladeschutz",
1876
1932
  },
1877
1933
  el: {
1878
1934
  add_new_dynamic_mood_color_changing_mode_value: "Διαβάθμιση",
@@ -2197,6 +2253,15 @@ export default {
2197
2253
  devicemusic_game_text: "Είδος 3",
2198
2254
  devicemusic_romantic_text: "Είδος 4",
2199
2255
  devicemusic_music_text: "Είδος 1",
2256
+ light_sources_feature_2_text_min_off:
2257
+ "Απενεργοποίηση κύριου φωτισμού σε {0} min",
2258
+ light_sources_feature_2_text_min_on:
2259
+ "Ενεργοποίηση κύριου φωτισμού σε {0} min",
2260
+ light_sources_feature_2_switched_off_text:
2261
+ "Ο κύριος φωτισμός θα απενεργοποιηθεί περίπου στο {0}",
2262
+ light_sources_feature_2_switched_on_text:
2263
+ "Ο κύριος φωτισμός θα ενεργοποιηθεί περίπου σε {0}",
2264
+ switch_overcharge_headline_text: "Προστασία υπερφόρτισης",
2200
2265
  },
2201
2266
  es: {
2202
2267
  add_new_dynamic_mood_color_changing_mode_value: "Gradiente",
@@ -2515,6 +2580,15 @@ export default {
2515
2580
  devicemusic_game_text: "Género 3",
2516
2581
  devicemusic_romantic_text: "Género 4",
2517
2582
  devicemusic_music_text: "Género 1",
2583
+ light_sources_feature_2_text_min_off:
2584
+ "Iluminación principal apagada en {0} min",
2585
+ light_sources_feature_2_text_min_on:
2586
+ "Iluminación principal encendida en {0} min",
2587
+ light_sources_feature_2_switched_off_text:
2588
+ "La iluminación principal se apagará aproximadamente a las {0}",
2589
+ light_sources_feature_2_switched_on_text:
2590
+ "La iluminación principal se encenderá aproximadamente a las {0}",
2591
+ switch_overcharge_headline_text: "Protección de sobrecarga",
2518
2592
  },
2519
2593
  fr: {
2520
2594
  add_new_dynamic_mood_color_changing_mode_value: "Fluide",
@@ -2838,6 +2912,15 @@ export default {
2838
2912
  devicemusic_game_text: "Genre 2",
2839
2913
  devicemusic_romantic_text: "Genre 4",
2840
2914
  devicemusic_music_text: "Genre 1",
2915
+ light_sources_feature_2_text_min_off:
2916
+ "Extinction de l'éclairage principal dans {0} min",
2917
+ light_sources_feature_2_text_min_on:
2918
+ "L'éclairage principal est allumé dans {0} min",
2919
+ light_sources_feature_2_switched_off_text:
2920
+ "L'éclairage principal sera éteint vers {0}",
2921
+ light_sources_feature_2_switched_on_text:
2922
+ "L'éclairage principal sera allumé vers {0}",
2923
+ switch_overcharge_headline_text: "Protection contre les surcharges",
2841
2924
  },
2842
2925
  hr: {
2843
2926
  add_new_dynamic_mood_color_changing_mode_value: "Prijelaz",
@@ -2859,7 +2942,7 @@ export default {
2859
2942
  "Korisnički definiran odabir vrijednosti boje i svjetline.",
2860
2943
  feature_summary_action_txt_1: "Upali",
2861
2944
  sockets_specific_settings_relay_status: "Snaga na ponašanje",
2862
- light_sources_specific_settings_power_off: "Uključite ponašanje",
2945
+ light_sources_specific_settings_power_off: "Snaga na ponašanje",
2863
2946
  add_new_dynamic_mood_color_changing_mode_value2: "Skoči",
2864
2947
  add_new_dynamic_mood_lights_field_headline2_text: "Boja",
2865
2948
  add_new_dynamic_mood_lights_field_saturation_text: "Zasićenost",
@@ -3155,6 +3238,15 @@ export default {
3155
3238
  devicemusic_game_text: "Žanr 3",
3156
3239
  devicemusic_romantic_text: "Žanr 4",
3157
3240
  devicemusic_music_text: "Žanr 1",
3241
+ light_sources_feature_2_text_min_off:
3242
+ "Glavna rasvjeta gasi se za {0} min",
3243
+ light_sources_feature_2_text_min_on:
3244
+ "Glavna rasvjeta pali se za {0} min",
3245
+ light_sources_feature_2_switched_off_text:
3246
+ "Glavna rasvjeta će se isključiti oko {0}",
3247
+ light_sources_feature_2_switched_on_text:
3248
+ "Glavna rasvjeta će se uključiti oko {0}",
3249
+ switch_overcharge_headline_text: "Overcharging Protection",
3158
3250
  },
3159
3251
  hu: {
3160
3252
  add_new_dynamic_mood_color_changing_mode_value: "Átmenet",
@@ -3176,7 +3268,7 @@ export default {
3176
3268
  "A felhasználó által megadott szín- és fényerő-érték kiválasztása.",
3177
3269
  feature_summary_action_txt_1: "Bekapcsolás",
3178
3270
  sockets_specific_settings_relay_status: "A viselkedés bekapcsolása",
3179
- light_sources_specific_settings_power_off: "Kapcsolja be a viselkedést",
3271
+ light_sources_specific_settings_power_off: "A viselkedés bekapcsolása",
3180
3272
  add_new_dynamic_mood_color_changing_mode_value2: "Ugrás",
3181
3273
  add_new_dynamic_mood_lights_field_headline2_text: "Szín",
3182
3274
  add_new_dynamic_mood_lights_field_saturation_text: "Telítettség",
@@ -3470,6 +3562,15 @@ export default {
3470
3562
  devicemusic_game_text: "Műfaj 3",
3471
3563
  devicemusic_romantic_text: "Műfaj 4",
3472
3564
  devicemusic_music_text: "Műfaj 1",
3565
+ light_sources_feature_2_text_min_off:
3566
+ "Fő világítás kikapcsol: {0} perc múlva",
3567
+ light_sources_feature_2_text_min_on:
3568
+ "Fő világítás kikapcsol: {0} perc múlva",
3569
+ light_sources_feature_2_switched_off_text:
3570
+ "A fő világítás kb. {0} körül kapcsol ki.",
3571
+ light_sources_feature_2_switched_on_text:
3572
+ "A fő világítás kb. {0} körül fog bekapcsolódni",
3573
+ switch_overcharge_headline_text: "Túltöltés elleni védelem",
3473
3574
  },
3474
3575
  it: {
3475
3576
  add_new_dynamic_mood_color_changing_mode_value: "Fluido",
@@ -3483,15 +3584,15 @@ export default {
3483
3584
  history_contact_sensor_description_text:
3484
3585
  "Vengono mostrati i dati relativi agli ultimi 7 giorni.",
3485
3586
  power_off_memory_default_state_description:
3486
- "Torna al valore predefinito di colore e luminosità.",
3487
- power_off_memory_restore_memory_title: "Ripristina la memoria",
3587
+ "Torna al valore predefinito di tonalità e luminosità.",
3588
+ power_off_memory_restore_memory_title: "Ripristina lo stato precedente",
3488
3589
  power_off_memory_restore_memory_description:
3489
- "Ritorna allo stato precedente prima che l'alimentazione fosse spenta",
3590
+ "Ripristina tonalità e luminosità come impostati prima dell'interruzione dell'alimentazione",
3490
3591
  power_off_memory_customized_description:
3491
- "Selezione del colore e del valore di luminosità definita dall'utente.",
3592
+ "Tonalità e luminosità definite dall'utente.",
3492
3593
  feature_summary_action_txt_1: "Accendi",
3493
- sockets_specific_settings_relay_status: "Potenziamento del comportamento",
3494
- light_sources_specific_settings_power_off: "Accendi il comportamento",
3594
+ sockets_specific_settings_relay_status: "Impostazioni alla riaccensione",
3595
+ light_sources_specific_settings_power_off: "Impostazioni alla riaccensione",
3495
3596
  add_new_dynamic_mood_color_changing_mode_value2: "Improvviso",
3496
3597
  add_new_dynamic_mood_lights_field_headline2_text: "Colore",
3497
3598
  add_new_dynamic_mood_lights_field_saturation_text: "Saturazione",
@@ -3505,7 +3606,7 @@ export default {
3505
3606
  "Modalità bianco",
3506
3607
  add_new_static_mood_system_back: "Scenario",
3507
3608
  add_new_trigger_time_field_brightness_text: "Luminosità",
3508
- add_new_trigger_time_field_headline_text3: "Illuminazione secondaria",
3609
+ add_new_trigger_time_field_headline_text3: "Luce secondaria",
3509
3610
  add_new_trigger_time_field_text: "Tonalità",
3510
3611
  add_new_trigger_time_inputfield_value_text: "Nome",
3511
3612
  add_new_trigger_time_subheadline_text: "STATO DEL DISPOSITIVO",
@@ -3527,7 +3628,7 @@ export default {
3527
3628
  bio_ryhthm_default_field_field_brightness_text: "Luminosità",
3528
3629
  bio_ryhthm_default_field_text2: "Risveglio",
3529
3630
  bio_ryhthm_default_field_text3: "Luce solare",
3530
- bio_ryhthm_default_field_text4: "Confortevole",
3631
+ bio_ryhthm_default_field_text4: "Relax",
3531
3632
  bio_ryhthm_default_field_text5: "Luce notturna",
3532
3633
  bio_ryhthm_default_selectionfield_topic_text: "Modalità cambio colore",
3533
3634
  bio_ryhthm_default_weekday1_text: "Lun",
@@ -3543,7 +3644,7 @@ export default {
3543
3644
  flashing_fs_toggle_state1: "Veloce",
3544
3645
  flashing_fs_toggle_state2: "Lento",
3545
3646
  light_sources_tile_dim_lighting_brightness: "Luminosità",
3546
- light_sources_tile_main_lighting_headline: "Illuminazione principale",
3647
+ light_sources_tile_main_lighting_headline: "Luce principale",
3547
3648
  light_sources_tile_main_lighting_shade: "Tonalità",
3548
3649
  light_sources_tile_rgb_lighting_brightness: "Luminosità",
3549
3650
  light_sources_tile_rgb_lighting_headline: "Luce",
@@ -3551,7 +3652,7 @@ export default {
3551
3652
  light_sources_tile_rgb_lighting_shade: "Tonalità",
3552
3653
  light_sources_tile_rgb_lighting_tab_color: "Modalità colore",
3553
3654
  light_sources_tile_rgb_lighting_tab_white: "Modalità bianco",
3554
- light_sources_tile_sec_lighting_headline: "Illuminazione secondaria",
3655
+ light_sources_tile_sec_lighting_headline: "Luce secondaria",
3555
3656
  light_sources_tile_sec_lighting_shade: "Tonalità",
3556
3657
  light_sources_tile_tw_lighting_brightness: "Luminosità",
3557
3658
  light_sources_tile_tw_lighting_headline: "Luce",
@@ -3665,9 +3766,9 @@ export default {
3665
3766
  conflict_dialog_active_item_randomtimecycle_description:
3666
3767
  "Attenzione: il ciclo a intervalli casuali è in conflitto con una o più funzionalità. Le funzionalità in conflitto verranno disattivate.",
3667
3768
  timeschedule_add_schedule_Lighting_applyfor_selection2_text:
3668
- "Illuminazione secondaria",
3769
+ "Luce secondaria",
3669
3770
  timeschedule_add_schedule_Lighting_applyfor_selection_text:
3670
- "Illuminazione principale",
3771
+ "Luce principale",
3671
3772
  light_sources_specific_settings_remote_control: "Telecomando",
3672
3773
  conflict_dialog_save_item_bio_rhythm_answer_no_text: "No",
3673
3774
  conflict_dialog_save_item_bio_rhythm_answer_yes_text: "Sì",
@@ -3788,6 +3889,15 @@ export default {
3788
3889
  devicemusic_game_text: "Genere 3",
3789
3890
  devicemusic_romantic_text: "Genere 4",
3790
3891
  devicemusic_music_text: "Genere 1",
3892
+ light_sources_feature_2_text_min_off:
3893
+ "Luce principale spenta tra {0} min",
3894
+ light_sources_feature_2_text_min_on:
3895
+ "Luce principale accesa tra {0} min",
3896
+ light_sources_feature_2_switched_off_text:
3897
+ "L'illuminazione principale si spegnerà intorno a {0}",
3898
+ light_sources_feature_2_switched_on_text:
3899
+ "L'illuminazione principale si accenderà a circa {0}",
3900
+ switch_overcharge_headline_text: "Protezione da sovraccarico",
3791
3901
  },
3792
3902
  ko: {
3793
3903
  add_new_dynamic_mood_color_changing_mode_value: "그래디언트",
@@ -3809,7 +3919,7 @@ export default {
3809
3919
  "색상 및 밝기 값의 사용자 정의 선택.",
3810
3920
  feature_summary_action_txt_1: "스위치 켜기",
3811
3921
  sockets_specific_settings_relay_status: "전원 켜기 동작",
3812
- light_sources_specific_settings_power_off: "전원 끄기 메모리",
3922
+ light_sources_specific_settings_power_off: "전원 켜기 동작",
3813
3923
  add_new_dynamic_mood_color_changing_mode_value2: "건너 뛰기",
3814
3924
  add_new_dynamic_mood_lights_field_headline2_text: "색상",
3815
3925
  add_new_dynamic_mood_lights_field_saturation_text: "채도",
@@ -4085,6 +4195,13 @@ export default {
4085
4195
  devicemusic_game_text: "장르 3",
4086
4196
  devicemusic_romantic_text: "장르 4",
4087
4197
  devicemusic_music_text: "장르 1",
4198
+ light_sources_feature_2_text_min_off: "{0}분 후에 주 조명 꺼짐",
4199
+ light_sources_feature_2_text_min_on: "{0}분 후에 기본 조명 켜짐",
4200
+ light_sources_feature_2_switched_off_text:
4201
+ "주 조명은 약 {0}에 꺼집니다.",
4202
+ light_sources_feature_2_switched_on_text:
4203
+ "주 조명은 약 {0}에 켜집니다.",
4204
+ switch_overcharge_headline_text: "과충전 보호",
4088
4205
  },
4089
4206
  lv: {
4090
4207
  add_new_dynamic_mood_color_changing_mode_value: "FließendFließendFließend",
@@ -4450,6 +4567,16 @@ export default {
4450
4567
  devicemusic_game_text: "Musikrichtung 3Musikrichtung 3Musikrichtung 3",
4451
4568
  devicemusic_romantic_text: "Musikrichtung 4Musikrichtung 4Musikrichtung 4",
4452
4569
  devicemusic_music_text: "Musikrichtung 1Musikrichtung 1Musikrichtung 1",
4570
+ light_sources_feature_2_text_min_off:
4571
+ "Hauptbeleuchtung aus in {0} min",
4572
+ light_sources_feature_2_text_min_on:
4573
+ "Hauptbeleuchtung ein in {0} min",
4574
+ light_sources_feature_2_switched_off_text:
4575
+ "Galvenais apgaismojums tiks izslēgts aptuveni {0}",
4576
+ light_sources_feature_2_switched_on_text:
4577
+ "Galvenais apgaismojums tiks ieslēgts aptuveni {0}",
4578
+ switch_overcharge_headline_text:
4579
+ "Aizsardzība pret pārlādēšanuAizsardzība pret pārlādēšanuAizsardzība pret pārlādēšanu",
4453
4580
  },
4454
4581
  nb: {
4455
4582
  add_new_dynamic_mood_color_changing_mode_value: "Gradient",
@@ -4762,6 +4889,15 @@ export default {
4762
4889
  devicemusic_game_text: "Sjanger 2",
4763
4890
  devicemusic_romantic_text: "Sjanger 4",
4764
4891
  devicemusic_music_text: "Sjanger 1",
4892
+ light_sources_feature_2_text_min_off:
4893
+ "Hovedbelysning av om {0} min",
4894
+ light_sources_feature_2_text_min_on:
4895
+ "Hovedbelysning på om {0} min",
4896
+ light_sources_feature_2_switched_off_text:
4897
+ "Hovedbelysningen slås av ved ca. {0}.",
4898
+ light_sources_feature_2_switched_on_text:
4899
+ "Hovedbelysningen slås på ved ca. {0}.",
4900
+ switch_overcharge_headline_text: "Beskyttelse mot overlading",
4765
4901
  },
4766
4902
  nl: {
4767
4903
  add_new_dynamic_mood_color_changing_mode_value: "Verloop",
@@ -5079,6 +5215,15 @@ export default {
5079
5215
  devicemusic_game_text: "Genre 3",
5080
5216
  devicemusic_romantic_text: "Genre 4",
5081
5217
  devicemusic_music_text: "Genre 1",
5218
+ light_sources_feature_2_text_min_off:
5219
+ "Hoofdverlichting uit over {0} min",
5220
+ light_sources_feature_2_text_min_on:
5221
+ "Hoofdverlichting aan over {0} min",
5222
+ light_sources_feature_2_switched_off_text:
5223
+ "De hoofdverlichting wordt uitgeschakeld om ongeveer {0}",
5224
+ light_sources_feature_2_switched_on_text:
5225
+ "De hoofdverlichting wordt ingeschakeld om ongeveer {0}",
5226
+ switch_overcharge_headline_text: "Overcharging Protection",
5082
5227
  },
5083
5228
  pl: {
5084
5229
  add_new_dynamic_mood_color_changing_mode_value: "Gradient",
@@ -5100,8 +5245,7 @@ export default {
5100
5245
  "Wybór koloru i wartości jasności zdefiniowany przez użytkownika.",
5101
5246
  feature_summary_action_txt_1: "Włącz",
5102
5247
  sockets_specific_settings_relay_status: "Zachowanie włączania zasilania",
5103
- light_sources_specific_settings_power_off:
5104
- "Zachowanie przy włączonym zasilaniu",
5248
+ light_sources_specific_settings_power_off: "Zachowanie włączania zasilania",
5105
5249
  add_new_dynamic_mood_color_changing_mode_value2: "PRZEJDŹ",
5106
5250
  add_new_dynamic_mood_lights_field_headline2_text: "Kolor",
5107
5251
  add_new_dynamic_mood_lights_field_saturation_text: "Nasycenie",
@@ -5397,6 +5541,15 @@ export default {
5397
5541
  devicemusic_game_text: "Gatunek 3",
5398
5542
  devicemusic_romantic_text: "Gatunek 4",
5399
5543
  devicemusic_music_text: "Rodzaj 1",
5544
+ light_sources_feature_2_text_min_off:
5545
+ "Oświetlenie główne wyłączone w {0} min",
5546
+ light_sources_feature_2_text_min_on:
5547
+ "Oświetlenie główne włączone w {0} min",
5548
+ light_sources_feature_2_switched_off_text:
5549
+ "Oświetlenie główne zostanie wyłączone około {0}",
5550
+ light_sources_feature_2_switched_on_text:
5551
+ "Oświetlenie główne zostanie włączone około {0}",
5552
+ switch_overcharge_headline_text: "Ochrona przed przeładowaniem",
5400
5553
  },
5401
5554
  "pt-BR": {
5402
5555
  add_new_dynamic_mood_color_changing_mode_value: "Gradiente",
@@ -5715,6 +5868,15 @@ export default {
5715
5868
  devicemusic_game_text: "Gênero 3",
5716
5869
  devicemusic_romantic_text: "Gênero 4",
5717
5870
  devicemusic_music_text: "Gênero 1",
5871
+ light_sources_feature_2_text_min_off:
5872
+ "Iluminação principal desligada em {0} min",
5873
+ light_sources_feature_2_text_min_on:
5874
+ "Iluminação principal ligada em {0} min",
5875
+ light_sources_feature_2_switched_off_text:
5876
+ "A iluminação principal será desligada por volta de {0}",
5877
+ light_sources_feature_2_switched_on_text:
5878
+ "A iluminação principal será ligada a cerca de {0}",
5879
+ switch_overcharge_headline_text: "Overcharging Protection",
5718
5880
  },
5719
5881
  "pt_BR": {
5720
5882
  add_new_dynamic_mood_color_changing_mode_value: "Gradiente",
@@ -6033,6 +6195,15 @@ export default {
6033
6195
  devicemusic_game_text: "Gênero 3",
6034
6196
  devicemusic_romantic_text: "Gênero 4",
6035
6197
  devicemusic_music_text: "Gênero 1",
6198
+ light_sources_feature_2_text_min_off:
6199
+ "Iluminação principal desligada em {0} min",
6200
+ light_sources_feature_2_text_min_on:
6201
+ "Iluminação principal ligada em {0} min",
6202
+ light_sources_feature_2_switched_off_text:
6203
+ "A iluminação principal será desligada por volta de {0}",
6204
+ light_sources_feature_2_switched_on_text:
6205
+ "A iluminação principal será ligada a cerca de {0}",
6206
+ switch_overcharge_headline_text: "Overcharging Protection",
6036
6207
  },
6037
6208
  ro: {
6038
6209
  add_new_dynamic_mood_color_changing_mode_value: "Gradient",
@@ -6345,6 +6516,15 @@ export default {
6345
6516
  devicemusic_game_text: "Gen 3",
6346
6517
  devicemusic_romantic_text: "Gen 4",
6347
6518
  devicemusic_music_text: "Gen 1",
6519
+ light_sources_feature_2_text_min_off:
6520
+ "Iluminarea principală este oprită în {0} min",
6521
+ light_sources_feature_2_text_min_on:
6522
+ "Iluminare principală aprinsă în {0} min",
6523
+ light_sources_feature_2_switched_off_text:
6524
+ "Iluminatul principal va fi oprit la aproximativ {0}",
6525
+ light_sources_feature_2_switched_on_text:
6526
+ "Iluminatul principal va fi pornit la aproximativ {0}",
6527
+ switch_overcharge_headline_text: "Protecție la supraîncărcare",
6348
6528
  },
6349
6529
  ru: {
6350
6530
  add_new_dynamic_mood_color_changing_mode_value: "Градиент",
@@ -6525,7 +6705,7 @@ export default {
6525
6705
  timer_powerstrip_socket1_switched_on_text:
6526
6706
  "Разъем1 будет включен примерно через {0}",
6527
6707
  set_pw_button_save: "Сохранить",
6528
- consumption_data_field2_value_text1: "Мощность (Вт)",
6708
+ consumption_data_field2_value_text1: "Мощность \n(Вт)",
6529
6709
  consumption_data_field2_value_text2: "Сила тока (мА)",
6530
6710
  consumption_data_field2_value_text3: "Напряжение (В)",
6531
6711
  timer_nightplug_active_timer_subheadline2_text:
@@ -6665,6 +6845,15 @@ export default {
6665
6845
  devicemusic_game_text: "Жанр 3",
6666
6846
  devicemusic_romantic_text: "Жанр 4",
6667
6847
  devicemusic_music_text: "Жанр 1",
6848
+ light_sources_feature_2_text_min_off:
6849
+ "Основное освещение выключится через {0} min",
6850
+ light_sources_feature_2_text_min_on:
6851
+ "Основное освещение включится через {0} мин",
6852
+ light_sources_feature_2_switched_off_text:
6853
+ "Основное освещение будет выключено примерно в {0}",
6854
+ light_sources_feature_2_switched_on_text:
6855
+ "Основное освещение будет включено примерно в {0}",
6856
+ switch_overcharge_headline_text: "Защита от перезарядки",
6668
6857
  },
6669
6858
  sk: {
6670
6859
  add_new_dynamic_mood_color_changing_mode_value: "Prechod",
@@ -6686,7 +6875,7 @@ export default {
6686
6875
  "Užívateľsky definovaný výber farby a hodnoty jasu.",
6687
6876
  feature_summary_action_txt_1: "Zapnúť",
6688
6877
  sockets_specific_settings_relay_status: "Správanie pri zapovaní",
6689
- light_sources_specific_settings_power_off: "Správanie pri zapnutí",
6878
+ light_sources_specific_settings_power_off: "Správanie pri zapovaní",
6690
6879
  add_new_dynamic_mood_color_changing_mode_value2: "Preskočiť",
6691
6880
  add_new_dynamic_mood_lights_field_headline2_text: "Farba",
6692
6881
  add_new_dynamic_mood_lights_field_saturation_text: "Sýtosť",
@@ -6978,6 +7167,15 @@ export default {
6978
7167
  devicemusic_game_text: "Žáner 3",
6979
7168
  devicemusic_romantic_text: "Žáner 4",
6980
7169
  devicemusic_music_text: "Žáner 1",
7170
+ light_sources_feature_2_text_min_off:
7171
+ "Hlavné osvetlenie sa vypne za {0} min",
7172
+ light_sources_feature_2_text_min_on:
7173
+ "Hlavné osvetlenie zapnuté za {0} min",
7174
+ light_sources_feature_2_switched_off_text:
7175
+ "Hlavné osvetlenie sa vypne približne o {0}",
7176
+ light_sources_feature_2_switched_on_text:
7177
+ "Hlavné osvetlenie sa zapne približne o {0}",
7178
+ switch_overcharge_headline_text: "Ochrana proti prebíjaniu",
6981
7179
  },
6982
7180
  sv: {
6983
7181
  add_new_dynamic_mood_color_changing_mode_value: "Toning",
@@ -7291,6 +7489,15 @@ export default {
7291
7489
  devicemusic_game_text: "Genre 3",
7292
7490
  devicemusic_romantic_text: "Genre 4",
7293
7491
  devicemusic_music_text: "Genre 1",
7492
+ light_sources_feature_2_text_min_off:
7493
+ "Huvudbelysningen släcks om {0} min",
7494
+ light_sources_feature_2_text_min_on:
7495
+ "Huvudbelysningen tänds om {0} min",
7496
+ light_sources_feature_2_switched_off_text:
7497
+ "Huvudbelysningen kommer att släckas vid ca {0}",
7498
+ light_sources_feature_2_switched_on_text:
7499
+ "Huvudbelysningen kommer att slås på omkring {0}",
7500
+ switch_overcharge_headline_text: "Överladdningsskydd",
7294
7501
  },
7295
7502
  tr: {
7296
7503
  add_new_dynamic_mood_color_changing_mode_value: "Gradyan",
@@ -7312,7 +7519,7 @@ export default {
7312
7519
  "Kullanıcı tanımlı renk ve parlaklık değeri seçimi.",
7313
7520
  feature_summary_action_txt_1: "Aç",
7314
7521
  sockets_specific_settings_relay_status: "Davranış üzerinde güç",
7315
- light_sources_specific_settings_power_off: "Güç açma davranışı",
7522
+ light_sources_specific_settings_power_off: "Davranış üzerinde güç",
7316
7523
  add_new_dynamic_mood_color_changing_mode_value2: "Atla",
7317
7524
  add_new_dynamic_mood_lights_field_headline2_text: "Renk",
7318
7525
  add_new_dynamic_mood_lights_field_saturation_text: "Doygunluk",
@@ -7601,6 +7808,15 @@ export default {
7601
7808
  devicemusic_game_text: "Tarz 3",
7602
7809
  devicemusic_romantic_text: "Tarz 4",
7603
7810
  devicemusic_music_text: "Tarz 1",
7811
+ light_sources_feature_2_text_min_off:
7812
+ "Ana aydınlatma {0} dakika içinde kapanacak",
7813
+ light_sources_feature_2_text_min_on:
7814
+ "Ana aydınlatma {0} dakika açık kalacak.",
7815
+ light_sources_feature_2_switched_off_text:
7816
+ "Ana aydınlatma yaklaşık {0}'de kapatılacaktır.",
7817
+ light_sources_feature_2_switched_on_text:
7818
+ "Ana aydınlatma yaklaşık {0}'de açılacaktır.",
7819
+ switch_overcharge_headline_text: "Overcharging Protection",
7604
7820
  },
7605
7821
  uk: {
7606
7822
  add_new_dynamic_mood_color_changing_mode_value: "Градієнт",
@@ -7622,7 +7838,8 @@ export default {
7622
7838
  "Вибір кольору та значення яскравості, що визначається користувачем.",
7623
7839
  feature_summary_action_txt_1: "Увімкнути",
7624
7840
  sockets_specific_settings_relay_status: "Поведінка при увімкненні живлення",
7625
- light_sources_specific_settings_power_off: "Поведінка при включенні",
7841
+ light_sources_specific_settings_power_off:
7842
+ "Поведінка при увімкненні живлення",
7626
7843
  add_new_dynamic_mood_color_changing_mode_value2: "Стрибок",
7627
7844
  add_new_dynamic_mood_lights_field_headline2_text: "Колір",
7628
7845
  add_new_dynamic_mood_lights_field_saturation_text: "Насиченість",
@@ -7915,5 +8132,14 @@ export default {
7915
8132
  devicemusic_game_text: "Жанр 3",
7916
8133
  devicemusic_romantic_text: "Жанр 4",
7917
8134
  devicemusic_music_text: "Жанр 1",
8135
+ light_sources_feature_2_text_min_off:
8136
+ "Вимкнення основного освітлення через {0} хв",
8137
+ light_sources_feature_2_text_min_on:
8138
+ "Увімкнення основного освітлення через {0} хв",
8139
+ light_sources_feature_2_switched_off_text:
8140
+ "Основне освітлення буде вимкнено приблизно через {0}",
8141
+ light_sources_feature_2_switched_on_text:
8142
+ "Основне освітлення буде ввімкнено приблизно через {0}",
8143
+ switch_overcharge_headline_text: "Overcharging Protection",
7918
8144
  },
7919
8145
  };