@ledvance/base 1.1.96 → 1.1.97

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.1.96",
7
+ "version": "1.1.97",
8
8
  "scripts": {},
9
9
  "dependencies": {
10
10
  "@reduxjs/toolkit": "^1.8.6",
@@ -12,6 +12,7 @@ export interface ColorAdjustViewProps {
12
12
  s: number
13
13
  v: number
14
14
  minBrightness?: number // 最小亮度
15
+ minSaturation?: number // 最小Saturation
15
16
  reserveSV?: boolean // 保留 s v
16
17
  onHSVChange?: (h: number, s: number, v: number) => void
17
18
  onHSVChangeComplete: (h: number, s: number, v: number) => void
@@ -41,6 +42,7 @@ const ColorAdjustView = (props: ColorAdjustViewProps) => {
41
42
  }}/>
42
43
  <LdvSaturation
43
44
  value={props.s}
45
+ minSaturation={props.minSaturation}
44
46
  onValueChange={s => {
45
47
  props.onHSVChange && props.onHSVChange(props.h, s, props.v)
46
48
  }}
@@ -169,6 +169,7 @@ const DrawToolView = (props: DrawToolViewProps) => {
169
169
  isSupportBrightness={!!props.isSupportBrightness}
170
170
  isColorMode={!!props.isColorMode}
171
171
  reserveSV={true}
172
+ minSaturation={1}
172
173
  setIsColorMode={props.setIsColorMode}
173
174
  h={props.h} s={props.s} v={props.v}
174
175
  onHSVChange={props.onHSVChange}
@@ -40,6 +40,7 @@ const LampAdjustView = (props: LampConfigViewProps) => {
40
40
  s={props.s}
41
41
  v={props.v}
42
42
  minBrightness={props.minBrightness}
43
+ minSaturation={props.minSaturation}
43
44
  reserveSV={props.reserveSV}
44
45
  onHSVChange={props.onHSVChange}
45
46
  onHSVChangeComplete={props.onHSVChangeComplete}/>
@@ -3,7 +3,7 @@ import LdvSlider from 'components/ldvSlider'
3
3
  import I18n from '../i18n/index'
4
4
 
5
5
  const LdvSaturation = (props) => {
6
- const {value, onSlidingComplete} = props
6
+ const {value, onSlidingComplete, minSaturation} = props
7
7
 
8
8
  const renderBrightness = () => {
9
9
  return (
@@ -12,7 +12,7 @@ const LdvSaturation = (props) => {
12
12
  title={I18n.getLang('light_sources_tile_rgb_lighting_saturation')}
13
13
  value={value}
14
14
  max={100}
15
- min={0}
15
+ min={minSaturation ? minSaturation : 0}
16
16
  onSlidingComplete={onSlidingComplete}
17
17
  onValueChange={props.onValueChange}/>
18
18
  )
@@ -536,7 +536,11 @@ export default {
536
536
  strip_lights_start_sync_text: "Start synchronisation",
537
537
  strip_lights_await_sync_text: "Synchronising",
538
538
  cancel_dialog_exit_sync_title: "Exit synchronisation",
539
- cancel_dialog_exit_sync_description: "Are you sure you want to exit synchronising?"
539
+ cancel_dialog_exit_sync_description: "Are you sure you want to exit synchronising?",
540
+ socket_settings_firstbox_topic: "Device status after being powered on",
541
+ socket_settings_firstbox_status1_description: "Device remains switched off",
542
+ socket_settings_firstbox_status2_description: "Device remains switched on",
543
+ socket_settings_firstbox_status3_description: "Return to the previous state before the power was switched off"
540
544
  },
541
545
  cs: {
542
546
  add_new_dynamic_mood_color_changing_mode_value: "Gradient",
@@ -1075,7 +1079,11 @@ export default {
1075
1079
  strip_lights_start_sync_text: "Start synchronisation",
1076
1080
  strip_lights_await_sync_text: "Synchronising",
1077
1081
  cancel_dialog_exit_sync_title: "Exit synchronisation",
1078
- cancel_dialog_exit_sync_description: "Are you sure you want to exit synchronising?"
1082
+ cancel_dialog_exit_sync_description: "Are you sure you want to exit synchronising?",
1083
+ socket_settings_firstbox_topic: "Stav zařízení po zapnutí",
1084
+ socket_settings_firstbox_status1_description: "Zařízení zůstává vypnuté",
1085
+ socket_settings_firstbox_status2_description: "Zařízení zůstává zapnuté",
1086
+ socket_settings_firstbox_status3_description: "Návrat do předchozího stavu před odpojením napájení"
1079
1087
  },
1080
1088
  en: {
1081
1089
  add_new_dynamic_mood_color_changing_mode_value: "Gradient",
@@ -1614,7 +1622,11 @@ export default {
1614
1622
  strip_lights_start_sync_text: "Start synchronisation",
1615
1623
  strip_lights_await_sync_text: "Synchronising",
1616
1624
  cancel_dialog_exit_sync_title: "Exit synchronisation",
1617
- cancel_dialog_exit_sync_description: "Are you sure you want to exit synchronising?"
1625
+ cancel_dialog_exit_sync_description: "Are you sure you want to exit synchronising?",
1626
+ socket_settings_firstbox_topic: "Device status after being powered on",
1627
+ socket_settings_firstbox_status1_description: "Device remains switched off",
1628
+ socket_settings_firstbox_status2_description: "Device remains switched on",
1629
+ socket_settings_firstbox_status3_description: "Return to the previous state before the power was switched off"
1618
1630
  },
1619
1631
  bg: {
1620
1632
  add_new_dynamic_mood_color_changing_mode_value: "Градиент",
@@ -2153,7 +2165,11 @@ export default {
2153
2165
  strip_lights_start_sync_text: "Start synchronisation",
2154
2166
  strip_lights_await_sync_text: "Synchronising",
2155
2167
  cancel_dialog_exit_sync_title: "Exit synchronisation",
2156
- cancel_dialog_exit_sync_description: "Are you sure you want to exit synchronising?"
2168
+ cancel_dialog_exit_sync_description: "Are you sure you want to exit synchronising?",
2169
+ socket_settings_firstbox_topic: "Състояние на устройството след включване",
2170
+ socket_settings_firstbox_status1_description: "Устройството остава изключено",
2171
+ socket_settings_firstbox_status2_description: "Устройството остава включено",
2172
+ socket_settings_firstbox_status3_description: "Връщане към предишното състояние преди изключване на захранването"
2157
2173
  },
2158
2174
  da: {
2159
2175
  add_new_dynamic_mood_color_changing_mode_value: "Gradvist",
@@ -2692,7 +2708,11 @@ export default {
2692
2708
  strip_lights_start_sync_text: "Start synchronisation",
2693
2709
  strip_lights_await_sync_text: "Synchronising",
2694
2710
  cancel_dialog_exit_sync_title: "Exit synchronisation",
2695
- cancel_dialog_exit_sync_description: "Are you sure you want to exit synchronising?"
2711
+ cancel_dialog_exit_sync_description: "Are you sure you want to exit synchronising?",
2712
+ socket_settings_firstbox_topic: "Enhedens status efter at være blevet tændt",
2713
+ socket_settings_firstbox_status1_description: "Enheden forbliver slukket",
2714
+ socket_settings_firstbox_status2_description: "Enheden forbliver tændt",
2715
+ socket_settings_firstbox_status3_description: "Gå tilbage til den tilstand, der var, før strømmen blev slukket"
2696
2716
  },
2697
2717
  de: {
2698
2718
  add_new_dynamic_mood_color_changing_mode_value: "Fließend",
@@ -3223,15 +3243,19 @@ export default {
3223
3243
  strip_lights_mood_text44: "Planetenreise",
3224
3244
  devicemusic_classical_text: "Klassische Musik",
3225
3245
  devicemusic_techno_text: "Techno-Musik",
3226
- strip_lights_headline_text: "Screen Sync",
3227
- strip_lights_top_strip_light_text: "Top strip light",
3228
- strip_lights_bottom_strip_light_text: "Bottom strip light",
3229
- strip_lights_left_strip_light_text: "Left strip light",
3230
- strip_lights_right_strip_light_text: "Right strip light",
3231
- strip_lights_start_sync_text: "Start synchronisation",
3232
- strip_lights_await_sync_text: "Synchronising",
3233
- cancel_dialog_exit_sync_title: "Exit synchronisation",
3234
- cancel_dialog_exit_sync_description: "Are you sure you want to exit synchronising?"
3246
+ strip_lights_headline_text: "Bildschirm-Synchronisierung",
3247
+ strip_lights_top_strip_light_text: "Oberes Lichtband",
3248
+ strip_lights_bottom_strip_light_text: "Unteres Lichtband",
3249
+ strip_lights_left_strip_light_text: "Linkes Lichtband",
3250
+ strip_lights_right_strip_light_text: "Rechtes Lichtband",
3251
+ strip_lights_start_sync_text: "Synchronisierung starten",
3252
+ strip_lights_await_sync_text: "Synchronisieren…",
3253
+ cancel_dialog_exit_sync_title: "Synchronisierung beenden",
3254
+ cancel_dialog_exit_sync_description: "Bist Du sicher, dass du die Synchronisierung beenden willst?",
3255
+ socket_settings_firstbox_topic: "Gerätestatus nach dem Einschalten",
3256
+ socket_settings_firstbox_status1_description: "Gerät bleibt ausgeschaltet",
3257
+ socket_settings_firstbox_status2_description: "Gerät bleibt eingeschaltet",
3258
+ socket_settings_firstbox_status3_description: "Kehre zum Zustand zurück, bevor der Strom abgeschaltet wurde"
3235
3259
  },
3236
3260
  el: {
3237
3261
  add_new_dynamic_mood_color_changing_mode_value: "Διαβάθμιση",
@@ -3770,7 +3794,11 @@ export default {
3770
3794
  strip_lights_start_sync_text: "Start synchronisation",
3771
3795
  strip_lights_await_sync_text: "Synchronising",
3772
3796
  cancel_dialog_exit_sync_title: "Exit synchronisation",
3773
- cancel_dialog_exit_sync_description: "Are you sure you want to exit synchronising?"
3797
+ cancel_dialog_exit_sync_description: "Are you sure you want to exit synchronising?",
3798
+ socket_settings_firstbox_topic: "Κατάσταση της συσκευής μετά την ενεργοποίηση",
3799
+ socket_settings_firstbox_status1_description: "Η συσκευή παραμένει απενεργοποιημένη",
3800
+ socket_settings_firstbox_status2_description: "Η συσκευή παραμένει ενεργοποιημένη",
3801
+ socket_settings_firstbox_status3_description: "Επιστροφή στην προηγούμενη κατάσταση πριν από την απενεργοποίηση της τροφοδοσίας"
3774
3802
  },
3775
3803
  es: {
3776
3804
  add_new_dynamic_mood_color_changing_mode_value: "Gradiente",
@@ -4309,7 +4337,11 @@ export default {
4309
4337
  strip_lights_start_sync_text: "Start synchronisation",
4310
4338
  strip_lights_await_sync_text: "Synchronising",
4311
4339
  cancel_dialog_exit_sync_title: "Exit synchronisation",
4312
- cancel_dialog_exit_sync_description: "Are you sure you want to exit synchronising?"
4340
+ cancel_dialog_exit_sync_description: "Are you sure you want to exit synchronising?",
4341
+ socket_settings_firstbox_topic: "Estado del dispositivo después de encenderlo",
4342
+ socket_settings_firstbox_status1_description: "El dispositivo permanece apagado",
4343
+ socket_settings_firstbox_status2_description: "El dispositivo permanece encendido",
4344
+ socket_settings_firstbox_status3_description: "Volver al estado anterior antes de desconectar la alimentación"
4313
4345
  },
4314
4346
  et: {
4315
4347
  add_new_dynamic_mood_color_changing_mode_value: "Muutmisaste",
@@ -4848,7 +4880,11 @@ export default {
4848
4880
  strip_lights_start_sync_text: "Start synchronisation",
4849
4881
  strip_lights_await_sync_text: "Synchronising",
4850
4882
  cancel_dialog_exit_sync_title: "Exit synchronisation",
4851
- cancel_dialog_exit_sync_description: "Are you sure you want to exit synchronising?"
4883
+ cancel_dialog_exit_sync_description: "Are you sure you want to exit synchronising?",
4884
+ socket_settings_firstbox_topic: "Seadme olek pärast sisselülitamist",
4885
+ socket_settings_firstbox_status1_description: "Seade jääb väljalülitatuks",
4886
+ socket_settings_firstbox_status2_description: "Seade jääb sisselülitatuks",
4887
+ socket_settings_firstbox_status3_description: "Pöördu tagasi eelmisesse olekusse (olekusse enne seda, kui toide välja lülitati)"
4852
4888
  },
4853
4889
  fi: {
4854
4890
  add_new_dynamic_mood_color_changing_mode_value: "Liukuva",
@@ -5387,7 +5423,11 @@ export default {
5387
5423
  strip_lights_start_sync_text: "Start synchronisation",
5388
5424
  strip_lights_await_sync_text: "Synchronising",
5389
5425
  cancel_dialog_exit_sync_title: "Exit synchronisation",
5390
- cancel_dialog_exit_sync_description: "Are you sure you want to exit synchronising?"
5426
+ cancel_dialog_exit_sync_description: "Are you sure you want to exit synchronising?",
5427
+ socket_settings_firstbox_topic: "Laitteen tila käynnistyksen jälkeen",
5428
+ socket_settings_firstbox_status1_description: "Laite pysyy sammutettuna",
5429
+ socket_settings_firstbox_status2_description: "Laite pysyy päällä",
5430
+ socket_settings_firstbox_status3_description: "Palaa edelliseen tilaan ennen virran katkaisua"
5391
5431
  },
5392
5432
  fr: {
5393
5433
  add_new_dynamic_mood_color_changing_mode_value: "Fluide",
@@ -5926,7 +5966,11 @@ export default {
5926
5966
  strip_lights_start_sync_text: "Start synchronisation",
5927
5967
  strip_lights_await_sync_text: "Synchronising",
5928
5968
  cancel_dialog_exit_sync_title: "Exit synchronisation",
5929
- cancel_dialog_exit_sync_description: "Are you sure you want to exit synchronising?"
5969
+ cancel_dialog_exit_sync_description: "Are you sure you want to exit synchronising?",
5970
+ socket_settings_firstbox_topic: "État de l'appareil après sa mise sous tension",
5971
+ socket_settings_firstbox_status1_description: "L'appareil reste éteint",
5972
+ socket_settings_firstbox_status2_description: "L'appareil reste allumé",
5973
+ socket_settings_firstbox_status3_description: "Revenez à l'état précédent avant la mise hors tension"
5930
5974
  },
5931
5975
  hr: {
5932
5976
  add_new_dynamic_mood_color_changing_mode_value: "Prijelaz",
@@ -6404,13 +6448,13 @@ export default {
6404
6448
  string_lights_modes_dazzle_text: "Blistavo",
6405
6449
  strip_lights_modes_magic_rebound_text: "Čarobni odskok",
6406
6450
  strip_lights_modes_magic_meteor: "Čarobni meteor",
6407
- string_lights_set_bulbs_title: "Please set the number of bulbs according to the actual number of bulbs in the lamp string",
6451
+ string_lights_set_bulbs_title: "Postavite broj žarulja prema stvarnom broju žarulja u svjetlosnom lancu",
6408
6452
  add_new_dynamic_mood_strip_lights_switch_tab_text3: "Paragraf",
6409
6453
  add_new_dynamic_mood_strip_lights_switch_tab_text4: "Segmentirano",
6410
6454
  add_new_dynamic_mood_strip_lights_switch_tab_text5: "U međuvremenu",
6411
6455
  add_new_dynamic_mood_strip_lights_switch_tab_text6: "Postepeno",
6412
6456
  add_new_dynamic_mood_strip_lights_schedule_switch_tab_combination_text: "Kombinacija",
6413
- string_lights_set_bulbs_description_text: "Supports a maximum of 48 and a minimum of 5 bulbs",
6457
+ string_lights_set_bulbs_description_text: "Podržava najviše 48 i najmanje 5 žarulja",
6414
6458
  strip_lights_mood_text1: "Islandska plava",
6415
6459
  strip_lights_mood_text2: "Ledeni ekspres",
6416
6460
  strip_lights_mood_text3: "More oblaka",
@@ -6428,35 +6472,35 @@ export default {
6428
6472
  strip_lights_mood_text15: "Zvono na vjetru",
6429
6473
  strip_lights_mood_text16: "Svjetla grada",
6430
6474
  strip_lights_mood_text17: "Kugle u boji",
6431
- strip_lights_mood_text18: "Summer train",
6432
- strip_lights_mood_text19: "Christmas Eve",
6433
- strip_lights_mood_text20: "Dream Sea",
6434
- strip_lights_mood_text21: "Game mood",
6435
- strip_lights_mood_text22: "Holiday mood",
6436
- strip_lights_mood_text23: "Work Mood",
6437
- strip_lights_mood_text24: "Party Mood",
6438
- strip_lights_mood_text25: "Trendy",
6439
- strip_lights_mood_text26: "Sporty Mood",
6440
- strip_lights_mood_text27: "Time for meditation",
6441
- strip_lights_mood_text28: "Dating Mood",
6442
- strip_lights_mood_text29: "Christmas Feeling",
6443
- strip_lights_mood_text30: "Valentine's Day",
6444
- strip_lights_mood_text31: "Halloween Day",
6445
- strip_lights_mood_text32: "Thanksgiving Day",
6446
- strip_lights_mood_text33: "Forest Day",
6447
- strip_lights_mood_text34: "Mother's Day",
6448
- strip_lights_mood_text35: "Father's Day",
6449
- strip_lights_mood_text36: "Football Day",
6450
- strip_lights_mood_text37: "Summer idyll",
6451
- strip_lights_mood_text38: "Dream of the sea",
6452
- strip_lights_mood_text39: "Love & Dream",
6453
- strip_lights_mood_text40: "Spring fishing",
6454
- strip_lights_mood_text41: "Neon world",
6455
- strip_lights_mood_text42: "Dreamland",
6456
- strip_lights_mood_text43: "Summer wind",
6457
- strip_lights_mood_text44: "Planet journey",
6458
- devicemusic_classical_text: "Classical music",
6459
- devicemusic_techno_text: "Techno music",
6475
+ strip_lights_mood_text18: "Ljetni vlak",
6476
+ strip_lights_mood_text19: "Badnje veče",
6477
+ strip_lights_mood_text20: "More snova",
6478
+ strip_lights_mood_text21: "Raspoloženje za igru",
6479
+ strip_lights_mood_text22: "Blagdansko raspoloženje",
6480
+ strip_lights_mood_text23: "Raspoloženje za rad",
6481
+ strip_lights_mood_text24: "Raspoloženje za zabavu",
6482
+ strip_lights_mood_text25: "U trendu",
6483
+ strip_lights_mood_text26: "Sportsko raspoloženje",
6484
+ strip_lights_mood_text27: "Vrijeme za meditaciju",
6485
+ strip_lights_mood_text28: "Raspoloženje za spoj",
6486
+ strip_lights_mood_text29: "Božićni osjećaj",
6487
+ strip_lights_mood_text30: "Valentinovo",
6488
+ strip_lights_mood_text31: "Dan Noći vještica",
6489
+ strip_lights_mood_text32: "Dan zahvalnosti",
6490
+ strip_lights_mood_text33: "Dan šuma",
6491
+ strip_lights_mood_text34: "Majčin dan",
6492
+ strip_lights_mood_text35: "Dan očeva",
6493
+ strip_lights_mood_text36: "Dan nogometa",
6494
+ strip_lights_mood_text37: "Ljetna idila",
6495
+ strip_lights_mood_text38: "Morski san",
6496
+ strip_lights_mood_text39: "Ljubav i san",
6497
+ strip_lights_mood_text40: "Proljetni ribolov",
6498
+ strip_lights_mood_text41: "Neonski svijet",
6499
+ strip_lights_mood_text42: "Zemlja snova",
6500
+ strip_lights_mood_text43: "Ljetni vjetar",
6501
+ strip_lights_mood_text44: "Putovanje planetom",
6502
+ devicemusic_classical_text: "Klasična glazba",
6503
+ devicemusic_techno_text: "Techno glazba",
6460
6504
  strip_lights_headline_text: "Screen Sync",
6461
6505
  strip_lights_top_strip_light_text: "Top strip light",
6462
6506
  strip_lights_bottom_strip_light_text: "Bottom strip light",
@@ -6465,7 +6509,11 @@ export default {
6465
6509
  strip_lights_start_sync_text: "Start synchronisation",
6466
6510
  strip_lights_await_sync_text: "Synchronising",
6467
6511
  cancel_dialog_exit_sync_title: "Exit synchronisation",
6468
- cancel_dialog_exit_sync_description: "Are you sure you want to exit synchronising?"
6512
+ cancel_dialog_exit_sync_description: "Are you sure you want to exit synchronising?",
6513
+ socket_settings_firstbox_topic: "Status uređaja nakon uključivanja",
6514
+ socket_settings_firstbox_status1_description: "Uređaj ostaje isključen",
6515
+ socket_settings_firstbox_status2_description: "Uređaj ostaje uključen",
6516
+ socket_settings_firstbox_status3_description: "Povratak u prethodno stanje prije isključivanja napajanja"
6469
6517
  },
6470
6518
  hu: {
6471
6519
  add_new_dynamic_mood_color_changing_mode_value: "Átmenet",
@@ -6930,7 +6978,7 @@ export default {
6930
6978
  strip_lights_modes_rebound_text: "Visszapattan",
6931
6979
  strip_lights_modes_shuttle_text: "Inga",
6932
6980
  strip_lights_modes_switch_text: "Váltás",
6933
- strip_lights_modes_random_text: "Random",
6981
+ strip_lights_modes_random_text: "Véletlenszerű",
6934
6982
  strip_lights_modes_breath_text: "Lehelet",
6935
6983
  strip_lights_modes_flash_text: "Vaku",
6936
6984
  strip_lights_modes_flashing_text: "Villog",
@@ -6941,70 +6989,74 @@ export default {
6941
6989
  string_lights_modes_blink_text: "Villanás",
6942
6990
  string_lights_modes_chase_text: "Üldözés",
6943
6991
  string_lights_modes_dazzle_text: "Káprázat",
6944
- strip_lights_modes_magic_rebound_text: "Magic rebound",
6945
- strip_lights_modes_magic_meteor: "Magic meteor",
6946
- string_lights_set_bulbs_title: "Please set the number of bulbs according to the actual number of bulbs in the lamp string",
6947
- add_new_dynamic_mood_strip_lights_switch_tab_text3: "Paragraph",
6948
- add_new_dynamic_mood_strip_lights_switch_tab_text4: "Segmented",
6949
- add_new_dynamic_mood_strip_lights_switch_tab_text5: "Meanwhile",
6950
- add_new_dynamic_mood_strip_lights_switch_tab_text6: "Staggered",
6951
- add_new_dynamic_mood_strip_lights_schedule_switch_tab_combination_text: "Combination",
6952
- string_lights_set_bulbs_description_text: "Supports a maximum of 48 and a minimum of 5 bulbs",
6953
- strip_lights_mood_text1: "Iceland blue",
6954
- strip_lights_mood_text2: "Glacier express",
6955
- strip_lights_mood_text3: "Sea of clouds",
6956
- strip_lights_mood_text4: "Fireworks at sea",
6957
- strip_lights_mood_text5: "Hut in the snow",
6958
- strip_lights_mood_text6: "Firefly night",
6992
+ strip_lights_modes_magic_rebound_text: "Mágikus visszapattanás",
6993
+ strip_lights_modes_magic_meteor: "Mágikus meteor",
6994
+ string_lights_set_bulbs_title: "Kérjük, az izzók számát a lámpafüzérben lévő izzók tényleges számának megfelelően állítsa be.",
6995
+ add_new_dynamic_mood_strip_lights_switch_tab_text3: "Bekezdés",
6996
+ add_new_dynamic_mood_strip_lights_switch_tab_text4: "Szegmentált",
6997
+ add_new_dynamic_mood_strip_lights_switch_tab_text5: "Közben",
6998
+ add_new_dynamic_mood_strip_lights_switch_tab_text6: "Fokozatosan",
6999
+ add_new_dynamic_mood_strip_lights_schedule_switch_tab_combination_text: "Kombináció",
7000
+ string_lights_set_bulbs_description_text: "Legfeljebb 48, de legalább 5 izzót támogat",
7001
+ strip_lights_mood_text1: "Izland kék",
7002
+ strip_lights_mood_text2: "Gleccser expressz",
7003
+ strip_lights_mood_text3: "Felhők tengere",
7004
+ strip_lights_mood_text4: "Tűzijáték a tengeren",
7005
+ strip_lights_mood_text5: "Kunyhó a hóban",
7006
+ strip_lights_mood_text6: "Szentjánosbogár éjszaka",
6959
7007
  strip_lights_mood_text7: "Northland",
6960
- strip_lights_mood_text8: "Grassland",
6961
- strip_lights_mood_text9: "Northern lights",
6962
- strip_lights_mood_text10: "Late autumn",
6963
- strip_lights_mood_text11: "Dream meteor",
6964
- strip_lights_mood_text12: "Early spring",
6965
- strip_lights_mood_text13: "Spring outing",
6966
- strip_lights_mood_text14: "Night service",
6967
- strip_lights_mood_text15: "Wind chime",
6968
- strip_lights_mood_text16: "City Lights",
6969
- strip_lights_mood_text17: "Color marbles",
6970
- strip_lights_mood_text18: "Summer train",
6971
- strip_lights_mood_text19: "Christmas Eve",
6972
- strip_lights_mood_text20: "Dream Sea",
6973
- strip_lights_mood_text21: "Game mood",
6974
- strip_lights_mood_text22: "Holiday mood",
6975
- strip_lights_mood_text23: "Work Mood",
6976
- strip_lights_mood_text24: "Party Mood",
6977
- strip_lights_mood_text25: "Trendy",
6978
- strip_lights_mood_text26: "Sporty Mood",
6979
- strip_lights_mood_text27: "Time for meditation",
6980
- strip_lights_mood_text28: "Dating Mood",
6981
- strip_lights_mood_text29: "Christmas Feeling",
6982
- strip_lights_mood_text30: "Valentine's Day",
6983
- strip_lights_mood_text31: "Halloween Day",
6984
- strip_lights_mood_text32: "Thanksgiving Day",
6985
- strip_lights_mood_text33: "Forest Day",
6986
- strip_lights_mood_text34: "Mother's Day",
6987
- strip_lights_mood_text35: "Father's Day",
6988
- strip_lights_mood_text36: "Football Day",
6989
- strip_lights_mood_text37: "Summer idyll",
6990
- strip_lights_mood_text38: "Dream of the sea",
6991
- strip_lights_mood_text39: "Love & Dream",
6992
- strip_lights_mood_text40: "Spring fishing",
6993
- strip_lights_mood_text41: "Neon world",
6994
- strip_lights_mood_text42: "Dreamland",
6995
- strip_lights_mood_text43: "Summer wind",
6996
- strip_lights_mood_text44: "Planet journey",
6997
- devicemusic_classical_text: "Classical music",
6998
- devicemusic_techno_text: "Techno music",
6999
- strip_lights_headline_text: "Screen Sync",
7000
- strip_lights_top_strip_light_text: "Top strip light",
7001
- strip_lights_bottom_strip_light_text: "Bottom strip light",
7002
- strip_lights_left_strip_light_text: "Left strip light",
7003
- strip_lights_right_strip_light_text: "Right strip light",
7004
- strip_lights_start_sync_text: "Start synchronisation",
7005
- strip_lights_await_sync_text: "Synchronising",
7006
- cancel_dialog_exit_sync_title: "Exit synchronisation",
7007
- cancel_dialog_exit_sync_description: "Are you sure you want to exit synchronising?"
7008
+ strip_lights_mood_text8: "Gyep",
7009
+ strip_lights_mood_text9: "Északi fény",
7010
+ strip_lights_mood_text10: "Késő ősz",
7011
+ strip_lights_mood_text11: "Álom meteor",
7012
+ strip_lights_mood_text12: "Kora tavasz",
7013
+ strip_lights_mood_text13: "Tavaszi kirándulás",
7014
+ strip_lights_mood_text14: "Éjszakai szolgáltatás",
7015
+ strip_lights_mood_text15: "Szélcsengő",
7016
+ strip_lights_mood_text16: "Városi fények",
7017
+ strip_lights_mood_text17: "Színes golyók",
7018
+ strip_lights_mood_text18: "Nyári vonat",
7019
+ strip_lights_mood_text19: "Szenteste",
7020
+ strip_lights_mood_text20: "Álomtenger",
7021
+ strip_lights_mood_text21: "Játék hangulat",
7022
+ strip_lights_mood_text22: "Ünnepi hangulat",
7023
+ strip_lights_mood_text23: "Munka hangulat",
7024
+ strip_lights_mood_text24: "Parti hangulat",
7025
+ strip_lights_mood_text25: "Trendi",
7026
+ strip_lights_mood_text26: "Sportos hangulat",
7027
+ strip_lights_mood_text27: "Meditációs idő",
7028
+ strip_lights_mood_text28: "Ismerkedési hangulat",
7029
+ strip_lights_mood_text29: "Karácsonyi hangulat",
7030
+ strip_lights_mood_text30: "Valentin nap",
7031
+ strip_lights_mood_text31: "Halloween napja",
7032
+ strip_lights_mood_text32: "Hálaadás napja",
7033
+ strip_lights_mood_text33: "Erdei nap",
7034
+ strip_lights_mood_text34: "Anyák napja",
7035
+ strip_lights_mood_text35: "Apák napja",
7036
+ strip_lights_mood_text36: "Futball Nap",
7037
+ strip_lights_mood_text37: "Nyári idill",
7038
+ strip_lights_mood_text38: "Álom a tengerről",
7039
+ strip_lights_mood_text39: "Szerelem és álom",
7040
+ strip_lights_mood_text40: "Tavaszi horgászat",
7041
+ strip_lights_mood_text41: "Neon világ",
7042
+ strip_lights_mood_text42: "Álomvilág",
7043
+ strip_lights_mood_text43: "Nyári szél",
7044
+ strip_lights_mood_text44: "Bolygó utazás",
7045
+ devicemusic_classical_text: "Klasszikus zene",
7046
+ devicemusic_techno_text: "Techno zene",
7047
+ strip_lights_headline_text: "Képernyő szinkronizálás",
7048
+ strip_lights_top_strip_light_text: "Felső szalagfény",
7049
+ strip_lights_bottom_strip_light_text: "Alsó szalagfény",
7050
+ strip_lights_left_strip_light_text: "Bal oldali szalagfény",
7051
+ strip_lights_right_strip_light_text: "Jobb oldali szalagfény",
7052
+ strip_lights_start_sync_text: "Szinkronizálás indítása",
7053
+ strip_lights_await_sync_text: "Szinkronizálás",
7054
+ cancel_dialog_exit_sync_title: "Kilépés a szinkronizálásból",
7055
+ cancel_dialog_exit_sync_description: "Biztosan ki akar lépni a szinkronizálásból?",
7056
+ socket_settings_firstbox_topic: "A készülék állapota bekapcsolás után",
7057
+ socket_settings_firstbox_status1_description: "A készülék kikapcsolva marad",
7058
+ socket_settings_firstbox_status2_description: "A készülék bekapcsolva marad",
7059
+ socket_settings_firstbox_status3_description: "Visszatérés a kikapcsolás előtti állapotba"
7008
7060
  },
7009
7061
  it: {
7010
7062
  add_new_dynamic_mood_color_changing_mode_value: "Fluido",
@@ -7469,7 +7521,7 @@ export default {
7469
7521
  strip_lights_modes_rebound_text: "Rimbalzo",
7470
7522
  strip_lights_modes_shuttle_text: "Shuttle",
7471
7523
  strip_lights_modes_switch_text: "Switch",
7472
- strip_lights_modes_random_text: "Random",
7524
+ strip_lights_modes_random_text: "Casuale",
7473
7525
  strip_lights_modes_breath_text: "Respiro",
7474
7526
  strip_lights_modes_flash_text: "Flash",
7475
7527
  strip_lights_modes_flashing_text: "Lampeggiante",
@@ -7480,61 +7532,61 @@ export default {
7480
7532
  string_lights_modes_blink_text: "Blink",
7481
7533
  string_lights_modes_chase_text: "Caccia",
7482
7534
  string_lights_modes_dazzle_text: "Abbagliante",
7483
- strip_lights_modes_magic_rebound_text: "Magic rebound",
7484
- strip_lights_modes_magic_meteor: "Magic meteor",
7485
- string_lights_set_bulbs_title: "Please set the number of bulbs according to the actual number of bulbs in the lamp string",
7486
- add_new_dynamic_mood_strip_lights_switch_tab_text3: "Paragraph",
7487
- add_new_dynamic_mood_strip_lights_switch_tab_text4: "Segmented",
7535
+ strip_lights_modes_magic_rebound_text: "Rimbalzo magico",
7536
+ strip_lights_modes_magic_meteor: "Meteora magica",
7537
+ string_lights_set_bulbs_title: "Impostare il numero di lampadine in base al numero effettivo di lampadine nella catena luminosa",
7538
+ add_new_dynamic_mood_strip_lights_switch_tab_text3: "Paragrafo",
7539
+ add_new_dynamic_mood_strip_lights_switch_tab_text4: "Segmentato",
7488
7540
  add_new_dynamic_mood_strip_lights_switch_tab_text5: "Meanwhile",
7489
- add_new_dynamic_mood_strip_lights_switch_tab_text6: "Staggered",
7490
- add_new_dynamic_mood_strip_lights_schedule_switch_tab_combination_text: "Combination",
7491
- string_lights_set_bulbs_description_text: "Supports a maximum of 48 and a minimum of 5 bulbs",
7492
- strip_lights_mood_text1: "Iceland blue",
7541
+ add_new_dynamic_mood_strip_lights_switch_tab_text6: "Sfalsato",
7542
+ add_new_dynamic_mood_strip_lights_schedule_switch_tab_combination_text: "Combinazione",
7543
+ string_lights_set_bulbs_description_text: "Supporta un massimo di 48 e un minimo di 5 lampadine",
7544
+ strip_lights_mood_text1: "Blu Islanda",
7493
7545
  strip_lights_mood_text2: "Glacier express",
7494
- strip_lights_mood_text3: "Sea of clouds",
7495
- strip_lights_mood_text4: "Fireworks at sea",
7496
- strip_lights_mood_text5: "Hut in the snow",
7497
- strip_lights_mood_text6: "Firefly night",
7498
- strip_lights_mood_text7: "Northland",
7499
- strip_lights_mood_text8: "Grassland",
7500
- strip_lights_mood_text9: "Northern lights",
7501
- strip_lights_mood_text10: "Late autumn",
7502
- strip_lights_mood_text11: "Dream meteor",
7503
- strip_lights_mood_text12: "Early spring",
7504
- strip_lights_mood_text13: "Spring outing",
7505
- strip_lights_mood_text14: "Night service",
7506
- strip_lights_mood_text15: "Wind chime",
7507
- strip_lights_mood_text16: "City Lights",
7508
- strip_lights_mood_text17: "Color marbles",
7509
- strip_lights_mood_text18: "Summer train",
7510
- strip_lights_mood_text19: "Christmas Eve",
7511
- strip_lights_mood_text20: "Dream Sea",
7546
+ strip_lights_mood_text3: "Mare di nuvole",
7547
+ strip_lights_mood_text4: "Fuochi d'artificio",
7548
+ strip_lights_mood_text5: "Rifugio nella neve",
7549
+ strip_lights_mood_text6: "Bagliori nella notte",
7550
+ strip_lights_mood_text7: "Terra del Nord",
7551
+ strip_lights_mood_text8: "Prateria",
7552
+ strip_lights_mood_text9: "Aurora boreale",
7553
+ strip_lights_mood_text10: "Autunno",
7554
+ strip_lights_mood_text11: "Meteora da sogno",
7555
+ strip_lights_mood_text12: "Primavera",
7556
+ strip_lights_mood_text13: "Gita primaverile",
7557
+ strip_lights_mood_text14: "Servizio notturno",
7558
+ strip_lights_mood_text15: "Scampanellio",
7559
+ strip_lights_mood_text16: "Luci della città",
7560
+ strip_lights_mood_text17: "Marmi colorati",
7561
+ strip_lights_mood_text18: "Treno estivo",
7562
+ strip_lights_mood_text19: "Vigilia di Natale",
7563
+ strip_lights_mood_text20: "Mare da sogno",
7512
7564
  strip_lights_mood_text21: "Game mood",
7513
- strip_lights_mood_text22: "Holiday mood",
7514
- strip_lights_mood_text23: "Work Mood",
7515
- strip_lights_mood_text24: "Party Mood",
7565
+ strip_lights_mood_text22: "Voglia di vacanze",
7566
+ strip_lights_mood_text23: "Si lavora",
7567
+ strip_lights_mood_text24: "Voglia di festa",
7516
7568
  strip_lights_mood_text25: "Trendy",
7517
- strip_lights_mood_text26: "Sporty Mood",
7518
- strip_lights_mood_text27: "Time for meditation",
7519
- strip_lights_mood_text28: "Dating Mood",
7520
- strip_lights_mood_text29: "Christmas Feeling",
7521
- strip_lights_mood_text30: "Valentine's Day",
7522
- strip_lights_mood_text31: "Halloween Day",
7569
+ strip_lights_mood_text26: "Mood sportivo",
7570
+ strip_lights_mood_text27: "Tempo di meditazione",
7571
+ strip_lights_mood_text28: "Nuovi incontri",
7572
+ strip_lights_mood_text29: "Magia del Natale",
7573
+ strip_lights_mood_text30: "San Valentino",
7574
+ strip_lights_mood_text31: "Halloween",
7523
7575
  strip_lights_mood_text32: "Thanksgiving Day",
7524
7576
  strip_lights_mood_text33: "Forest Day",
7525
- strip_lights_mood_text34: "Mother's Day",
7526
- strip_lights_mood_text35: "Father's Day",
7577
+ strip_lights_mood_text34: "Festa della mamma",
7578
+ strip_lights_mood_text35: "Festa del papà",
7527
7579
  strip_lights_mood_text36: "Football Day",
7528
- strip_lights_mood_text37: "Summer idyll",
7529
- strip_lights_mood_text38: "Dream of the sea",
7580
+ strip_lights_mood_text37: "Idillio estivo",
7581
+ strip_lights_mood_text38: "Sognando il mare",
7530
7582
  strip_lights_mood_text39: "Love & Dream",
7531
- strip_lights_mood_text40: "Spring fishing",
7583
+ strip_lights_mood_text40: "Pesca primaverile",
7532
7584
  strip_lights_mood_text41: "Neon world",
7533
7585
  strip_lights_mood_text42: "Dreamland",
7534
- strip_lights_mood_text43: "Summer wind",
7535
- strip_lights_mood_text44: "Planet journey",
7536
- devicemusic_classical_text: "Classical music",
7537
- devicemusic_techno_text: "Techno music",
7586
+ strip_lights_mood_text43: "Vento d'estate",
7587
+ strip_lights_mood_text44: "Viaggio per il mondo",
7588
+ devicemusic_classical_text: "Musica classica",
7589
+ devicemusic_techno_text: "Musica techno",
7538
7590
  strip_lights_headline_text: "Screen Sync",
7539
7591
  strip_lights_top_strip_light_text: "Top strip light",
7540
7592
  strip_lights_bottom_strip_light_text: "Bottom strip light",
@@ -7543,7 +7595,11 @@ export default {
7543
7595
  strip_lights_start_sync_text: "Start synchronisation",
7544
7596
  strip_lights_await_sync_text: "Synchronising",
7545
7597
  cancel_dialog_exit_sync_title: "Exit synchronisation",
7546
- cancel_dialog_exit_sync_description: "Are you sure you want to exit synchronising?"
7598
+ cancel_dialog_exit_sync_description: "Are you sure you want to exit synchronising?",
7599
+ socket_settings_firstbox_topic: "Stato del dispositivo dopo l'accensione",
7600
+ socket_settings_firstbox_status1_description: "Il dispositivo rimane spento",
7601
+ socket_settings_firstbox_status2_description: "Il dispositivo rimane acceso",
7602
+ socket_settings_firstbox_status3_description: "Ripristina lo stato come prima dell'interruzione dell'alimentazione"
7547
7603
  },
7548
7604
  ko: {
7549
7605
  add_new_dynamic_mood_color_changing_mode_value: "그래디언트",
@@ -8082,7 +8138,11 @@ export default {
8082
8138
  strip_lights_start_sync_text: "Start synchronisation",
8083
8139
  strip_lights_await_sync_text: "Synchronising",
8084
8140
  cancel_dialog_exit_sync_title: "Exit synchronisation",
8085
- cancel_dialog_exit_sync_description: "Are you sure you want to exit synchronising?"
8141
+ cancel_dialog_exit_sync_description: "Are you sure you want to exit synchronising?",
8142
+ socket_settings_firstbox_topic: "점등 후의 장치 상태",
8143
+ socket_settings_firstbox_status1_description: "장치 꺼진 상태로 유지",
8144
+ socket_settings_firstbox_status2_description: "장치 전원이 켜진 상태로 유지",
8145
+ socket_settings_firstbox_status3_description: "전원이 꺼지기 전의 상태로 돌아갑니다."
8086
8146
  },
8087
8147
  lt: {
8088
8148
  add_new_dynamic_mood_color_changing_mode_value: "Gradientas",
@@ -8621,7 +8681,11 @@ export default {
8621
8681
  strip_lights_start_sync_text: "Start synchronisation",
8622
8682
  strip_lights_await_sync_text: "Synchronising",
8623
8683
  cancel_dialog_exit_sync_title: "Exit synchronisation",
8624
- cancel_dialog_exit_sync_description: "Are you sure you want to exit synchronising?"
8684
+ cancel_dialog_exit_sync_description: "Are you sure you want to exit synchronising?",
8685
+ socket_settings_firstbox_topic: "Įrenginio būsena po įjungimo",
8686
+ socket_settings_firstbox_status1_description: "Įrenginys lieka išjungtas",
8687
+ socket_settings_firstbox_status2_description: "Įrenginys lieka įjungtas",
8688
+ socket_settings_firstbox_status3_description: "Grįžti į ankstesnę būseną prieš išjungiant maitinimą"
8625
8689
  },
8626
8690
  lv: {
8627
8691
  add_new_dynamic_mood_color_changing_mode_value: "Gradients",
@@ -9160,7 +9224,11 @@ export default {
9160
9224
  strip_lights_start_sync_text: "Start synchronisation",
9161
9225
  strip_lights_await_sync_text: "Synchronising",
9162
9226
  cancel_dialog_exit_sync_title: "Exit synchronisation",
9163
- cancel_dialog_exit_sync_description: "Are you sure you want to exit synchronising?"
9227
+ cancel_dialog_exit_sync_description: "Are you sure you want to exit synchronising?",
9228
+ socket_settings_firstbox_topic: "Ierīces statuss pēc ieslēgšanas",
9229
+ socket_settings_firstbox_status1_description: "Ierīce paliek izslēgta",
9230
+ socket_settings_firstbox_status2_description: "Ierīce paliek ieslēgta",
9231
+ socket_settings_firstbox_status3_description: "Atgriezieties iepriekšējā stāvoklī pirms strāvas padeves izslēgšanas"
9164
9232
  },
9165
9233
  nb: {
9166
9234
  add_new_dynamic_mood_color_changing_mode_value: "Gradient",
@@ -9699,7 +9767,11 @@ export default {
9699
9767
  strip_lights_start_sync_text: "Start synchronisation",
9700
9768
  strip_lights_await_sync_text: "Synchronising",
9701
9769
  cancel_dialog_exit_sync_title: "Exit synchronisation",
9702
- cancel_dialog_exit_sync_description: "Are you sure you want to exit synchronising?"
9770
+ cancel_dialog_exit_sync_description: "Are you sure you want to exit synchronising?",
9771
+ socket_settings_firstbox_topic: "Enhetsstatus etter at den er slått på",
9772
+ socket_settings_firstbox_status1_description: "Enheten forblir slått av",
9773
+ socket_settings_firstbox_status2_description: "Enheten forblir slått på",
9774
+ socket_settings_firstbox_status3_description: "Gå tilbake til forrige tilstand før strømmen ble slått av"
9703
9775
  },
9704
9776
  nl: {
9705
9777
  add_new_dynamic_mood_color_changing_mode_value: "Verloop",
@@ -10238,7 +10310,11 @@ export default {
10238
10310
  strip_lights_start_sync_text: "Start synchronisation",
10239
10311
  strip_lights_await_sync_text: "Synchronising",
10240
10312
  cancel_dialog_exit_sync_title: "Exit synchronisation",
10241
- cancel_dialog_exit_sync_description: "Are you sure you want to exit synchronising?"
10313
+ cancel_dialog_exit_sync_description: "Are you sure you want to exit synchronising?",
10314
+ socket_settings_firstbox_topic: "Apparaatstatus nadat het is ingeschakeld",
10315
+ socket_settings_firstbox_status1_description: "Apparaat blijft uitgeschakeld",
10316
+ socket_settings_firstbox_status2_description: "Apparaat blijft ingeschakeld",
10317
+ socket_settings_firstbox_status3_description: "Terugkeren naar de vorige status voordat de stroom werd uitgeschakeld"
10242
10318
  },
10243
10319
  pl: {
10244
10320
  add_new_dynamic_mood_color_changing_mode_value: "Gradient",
@@ -10777,7 +10853,11 @@ export default {
10777
10853
  strip_lights_start_sync_text: "Start synchronisation",
10778
10854
  strip_lights_await_sync_text: "Synchronising",
10779
10855
  cancel_dialog_exit_sync_title: "Exit synchronisation",
10780
- cancel_dialog_exit_sync_description: "Are you sure you want to exit synchronising?"
10856
+ cancel_dialog_exit_sync_description: "Are you sure you want to exit synchronising?",
10857
+ socket_settings_firstbox_topic: "Stan urządzenia po włączeniu",
10858
+ socket_settings_firstbox_status1_description: "Urządzenie pozostaje wyłączone",
10859
+ socket_settings_firstbox_status2_description: "Urządzenie pozostaje włączone",
10860
+ socket_settings_firstbox_status3_description: "Powrót do poprzedniego stanu przed wyłączeniem zasilania"
10781
10861
  },
10782
10862
  'pt-BR': {
10783
10863
  add_new_dynamic_mood_color_changing_mode_value: "Gradiente",
@@ -11316,7 +11396,11 @@ export default {
11316
11396
  strip_lights_start_sync_text: "Start synchronisation",
11317
11397
  strip_lights_await_sync_text: "Synchronising",
11318
11398
  cancel_dialog_exit_sync_title: "Exit synchronisation",
11319
- cancel_dialog_exit_sync_description: "Are you sure you want to exit synchronising?"
11399
+ cancel_dialog_exit_sync_description: "Are you sure you want to exit synchronising?",
11400
+ socket_settings_firstbox_topic: "Status do dispositivo após ser ligado",
11401
+ socket_settings_firstbox_status1_description: "O dispositivo permanece desligado",
11402
+ socket_settings_firstbox_status2_description: "O dispositivo permanece ligado",
11403
+ socket_settings_firstbox_status3_description: "Retorne ao estado anterior antes de a energia ser desligada"
11320
11404
  },
11321
11405
  'pt_BR': {
11322
11406
  add_new_dynamic_mood_color_changing_mode_value: "Gradiente",
@@ -11855,7 +11939,11 @@ export default {
11855
11939
  strip_lights_start_sync_text: "Start synchronisation",
11856
11940
  strip_lights_await_sync_text: "Synchronising",
11857
11941
  cancel_dialog_exit_sync_title: "Exit synchronisation",
11858
- cancel_dialog_exit_sync_description: "Are you sure you want to exit synchronising?"
11942
+ cancel_dialog_exit_sync_description: "Are you sure you want to exit synchronising?",
11943
+ socket_settings_firstbox_topic: "Status do dispositivo após ser ligado",
11944
+ socket_settings_firstbox_status1_description: "O dispositivo permanece desligado",
11945
+ socket_settings_firstbox_status2_description: "O dispositivo permanece ligado",
11946
+ socket_settings_firstbox_status3_description: "Retorne ao estado anterior antes de a energia ser desligada"
11859
11947
  },
11860
11948
  ro: {
11861
11949
  add_new_dynamic_mood_color_changing_mode_value: "Gradient",
@@ -12394,7 +12482,11 @@ export default {
12394
12482
  strip_lights_start_sync_text: "Start synchronisation",
12395
12483
  strip_lights_await_sync_text: "Synchronising",
12396
12484
  cancel_dialog_exit_sync_title: "Exit synchronisation",
12397
- cancel_dialog_exit_sync_description: "Are you sure you want to exit synchronising?"
12485
+ cancel_dialog_exit_sync_description: "Are you sure you want to exit synchronising?",
12486
+ socket_settings_firstbox_topic: "Starea dispozitivului după ce a fost pornit",
12487
+ socket_settings_firstbox_status1_description: "Dispozitivul rămâne oprit",
12488
+ socket_settings_firstbox_status2_description: "Dispozitivul rămâne pornit",
12489
+ socket_settings_firstbox_status3_description: "Reveniți la starea anterioară înainte ca alimentarea să fie oprită"
12398
12490
  },
12399
12491
  ru: {
12400
12492
  add_new_dynamic_mood_color_changing_mode_value: "Градиент",
@@ -12933,7 +13025,11 @@ export default {
12933
13025
  strip_lights_start_sync_text: "Start synchronisation",
12934
13026
  strip_lights_await_sync_text: "Synchronising",
12935
13027
  cancel_dialog_exit_sync_title: "Exit synchronisation",
12936
- cancel_dialog_exit_sync_description: "Are you sure you want to exit synchronising?"
13028
+ cancel_dialog_exit_sync_description: "Are you sure you want to exit synchronising?",
13029
+ socket_settings_firstbox_topic: "Состояние устройства после включения питания",
13030
+ socket_settings_firstbox_status1_description: "Устройство остается выключенным",
13031
+ socket_settings_firstbox_status2_description: "Устройство остается включенным",
13032
+ socket_settings_firstbox_status3_description: "Возврат к предыдущему состоянию до отключения питания"
12937
13033
  },
12938
13034
  sk: {
12939
13035
  add_new_dynamic_mood_color_changing_mode_value: "Prechod",
@@ -13472,7 +13568,11 @@ export default {
13472
13568
  strip_lights_start_sync_text: "Start synchronisation",
13473
13569
  strip_lights_await_sync_text: "Synchronising",
13474
13570
  cancel_dialog_exit_sync_title: "Exit synchronisation",
13475
- cancel_dialog_exit_sync_description: "Are you sure you want to exit synchronising?"
13571
+ cancel_dialog_exit_sync_description: "Are you sure you want to exit synchronising?",
13572
+ socket_settings_firstbox_topic: "Stav zariadenia po zapnutí",
13573
+ socket_settings_firstbox_status1_description: "Zariadenie zostáva vypnuté",
13574
+ socket_settings_firstbox_status2_description: "Zariadenie zostáva zapnuté",
13575
+ socket_settings_firstbox_status3_description: "Návrat do predchádzajúceho stavu pred vypnutím napájania"
13476
13576
  },
13477
13577
  sv: {
13478
13578
  add_new_dynamic_mood_color_changing_mode_value: "Toning",
@@ -14011,7 +14111,11 @@ export default {
14011
14111
  strip_lights_start_sync_text: "Start synchronisation",
14012
14112
  strip_lights_await_sync_text: "Synchronising",
14013
14113
  cancel_dialog_exit_sync_title: "Exit synchronisation",
14014
- cancel_dialog_exit_sync_description: "Are you sure you want to exit synchronising?"
14114
+ cancel_dialog_exit_sync_description: "Are you sure you want to exit synchronising?",
14115
+ socket_settings_firstbox_topic: "Enhetens status efter påslagning",
14116
+ socket_settings_firstbox_status1_description: "Enheten förblir frånkopplad",
14117
+ socket_settings_firstbox_status2_description: "Enheten förblir tillkopplad",
14118
+ socket_settings_firstbox_status3_description: "Återgå till föregående tillstånd innan strömmen stängdes av"
14015
14119
  },
14016
14120
  tr: {
14017
14121
  add_new_dynamic_mood_color_changing_mode_value: "Gradyan",
@@ -14550,7 +14654,11 @@ export default {
14550
14654
  strip_lights_start_sync_text: "Start synchronisation",
14551
14655
  strip_lights_await_sync_text: "Synchronising",
14552
14656
  cancel_dialog_exit_sync_title: "Exit synchronisation",
14553
- cancel_dialog_exit_sync_description: "Are you sure you want to exit synchronising?"
14657
+ cancel_dialog_exit_sync_description: "Are you sure you want to exit synchronising?",
14658
+ socket_settings_firstbox_topic: "Güç verildikten sonra cihaz durumu",
14659
+ socket_settings_firstbox_status1_description: "Cihaz kapalı kalıyor",
14660
+ socket_settings_firstbox_status2_description: "Cihaz açık kalır",
14661
+ socket_settings_firstbox_status3_description: "Güç kapatılmadan önceki duruma geri dönün"
14554
14662
  },
14555
14663
  uk: {
14556
14664
  add_new_dynamic_mood_color_changing_mode_value: "Градієнт",
@@ -15089,6 +15197,10 @@ export default {
15089
15197
  strip_lights_start_sync_text: "Start synchronisation",
15090
15198
  strip_lights_await_sync_text: "Synchronising",
15091
15199
  cancel_dialog_exit_sync_title: "Exit synchronisation",
15092
- cancel_dialog_exit_sync_description: "Are you sure you want to exit synchronising?"
15200
+ cancel_dialog_exit_sync_description: "Are you sure you want to exit synchronising?",
15201
+ socket_settings_firstbox_topic: "Стан пристрою після ввімкнення",
15202
+ socket_settings_firstbox_status1_description: "Пристрій залишається вимкненим",
15203
+ socket_settings_firstbox_status2_description: "Пристрій залишається увімкненим",
15204
+ socket_settings_firstbox_status3_description: "Повернення до попереднього стану перед вимкненням живлення"
15093
15205
  }
15094
15206
  }