@ledvance/base 1.1.94 → 1.1.96

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.94",
7
+ "version": "1.1.96",
8
8
  "scripts": {},
9
9
  "dependencies": {
10
10
  "@reduxjs/toolkit": "^1.8.6",
@@ -8,52 +8,58 @@ import { Utils } from 'tuya-panel-kit'
8
8
  const cx = Utils.RatioUtils.convertX
9
9
 
10
10
  interface ListData {
11
- text: string
12
- value?: any
11
+ text: string
12
+ value?: any
13
+ isMax?: boolean
13
14
  }
14
15
 
15
16
  interface CustomListDialogProps extends ViewProps {
16
- itemStyle?: StyleProp<ViewStyle>
17
- show: boolean
18
- onDismiss: () => void
19
- data: ListData[]
20
- onItemPress: (item: any | undefined, index: number) => void
17
+ itemStyle?: StyleProp<ViewStyle>
18
+ show: boolean
19
+ onDismiss: () => void
20
+ data: ListData[]
21
+ onItemPress: (item: any | undefined, index: number) => void
21
22
  }
22
23
 
23
24
  const CustomListDialog = (props: CustomListDialogProps) => {
24
- return <Dialog
25
- show={props.show}
26
- hideMask={true}
27
- onRequestClose={props.onDismiss}>
28
- <Card style={props.style} shadowHeight={cx(7)}>
29
- <FlatList
30
- data={props.data}
31
- renderItem={({ item, index }) => {
32
- return (
33
- <TextButton
34
- text={item.text}
35
- style={props.itemStyle}
36
- textStyle={styles.popoverItemText}
37
- onPress={() => {
38
- props.onItemPress(item.value, index)
39
- }} />
40
- )
41
- }}
42
- keyExtractor={(_, index) => `${index}`}
43
- ItemSeparatorComponent={() => (<View style={styles.line} />)} />
44
- </Card>
45
- </Dialog>
25
+ return <Dialog
26
+ show={props.show}
27
+ hideMask={true}
28
+ onRequestClose={props.onDismiss}>
29
+ <Card style={props.style} shadowHeight={cx(7)}>
30
+ <FlatList
31
+ data={props.data}
32
+ renderItem={({ item, index }) => {
33
+ return (
34
+ <TextButton
35
+ text={item.text}
36
+ style={props.itemStyle}
37
+ textStyle={item.isMax ? styles.disableItemText : styles.popoverItemText}
38
+ onPress={() => {
39
+ props.onItemPress(item.value, index)
40
+ }} />
41
+ )
42
+ }}
43
+ keyExtractor={(_, index) => `${index}`}
44
+ ItemSeparatorComponent={() => (<View style={styles.line} />)} />
45
+ </Card>
46
+ </Dialog>
46
47
  }
47
48
 
48
49
  const styles = StyleSheet.create({
49
- popoverItemText: {
50
- color: '#000',
51
- fontSize: cx(16),
52
- },
53
- line: {
54
- height: .5,
55
- backgroundColor: 'rgba(60,60,67,.36)',
56
- },
50
+ popoverItemText: {
51
+ color: '#000',
52
+ fontSize: cx(16),
53
+ },
54
+ disableItemText: {
55
+ color: '#CBCBCB',
56
+ fontSize: cx(16),
57
+ },
58
+ line: {
59
+ height: .5,
60
+ backgroundColor: 'rgba(60,60,67,.36)',
61
+ },
62
+
57
63
  })
58
64
 
59
65
  export default CustomListDialog
@@ -1,7 +1,7 @@
1
1
  import React, { PropsWithChildren, useCallback, useEffect, useMemo } from 'react'
2
2
  import { Image, StyleSheet, Text, TouchableOpacity, View, ViewProps } from 'react-native'
3
3
  import { Modal, Utils } from 'tuya-panel-kit'
4
- import { useReactive } from 'ahooks'
4
+ import { useReactive, useUpdateEffect } from 'ahooks'
5
5
  import Card from './Card'
6
6
  import res from '@res'
7
7
  import I18n from '@i18n'
@@ -56,11 +56,12 @@ interface DrawToolViewProps extends PropsWithChildren<ViewProps> {
56
56
  hidLampAdjustView?: boolean
57
57
  hideDisableLight?: boolean
58
58
  hideColorize?: boolean
59
+ ledNumModalVisible?: boolean
59
60
  }
60
61
 
61
62
  const DrawToolView = (props: DrawToolViewProps) => {
62
63
  const state = useReactive({
63
- visible: false,
64
+ visible: props.ledNumModalVisible,
64
65
  ledNum: props.ledNum || 5,
65
66
  width: 0,
66
67
  })
@@ -75,6 +76,10 @@ const DrawToolView = (props: DrawToolViewProps) => {
75
76
  }
76
77
  }, [])
77
78
 
79
+ useUpdateEffect(() =>{
80
+ state.visible = props.ledNumModalVisible
81
+ }, [props.ledNumModalVisible])
82
+
78
83
  const onLayout = (event: any) => {
79
84
  const { width } = event.nativeEvent.layout
80
85
  state.width = width
@@ -14,7 +14,7 @@ interface LdvSliderProps {
14
14
  onSlidingComplete: (v: number) => void,
15
15
  style?: StyleProp<ViewStyle> | undefined,
16
16
  sliderStyle?: StyleProp<ViewStyle> | undefined
17
- subTitleStr?: string
17
+ subTitleStr?: string | number
18
18
  titleStyle?: StyleProp<TextStyle> | undefined
19
19
  }
20
20
 
@@ -525,7 +525,18 @@ export default {
525
525
  strip_lights_mood_text41: "Neon world",
526
526
  strip_lights_mood_text42: "Dreamland",
527
527
  strip_lights_mood_text43: "Summer wind",
528
- strip_lights_mood_text44: "Planet journey"
528
+ strip_lights_mood_text44: "Planet journey",
529
+ devicemusic_classical_text: "Classical music",
530
+ devicemusic_techno_text: "Techno music",
531
+ strip_lights_headline_text: "Screen Sync",
532
+ strip_lights_top_strip_light_text: "Top strip light",
533
+ strip_lights_bottom_strip_light_text: "Bottom strip light",
534
+ strip_lights_left_strip_light_text: "Left strip light",
535
+ strip_lights_right_strip_light_text: "Right strip light",
536
+ strip_lights_start_sync_text: "Start synchronisation",
537
+ strip_lights_await_sync_text: "Synchronising",
538
+ cancel_dialog_exit_sync_title: "Exit synchronisation",
539
+ cancel_dialog_exit_sync_description: "Are you sure you want to exit synchronising?"
529
540
  },
530
541
  cs: {
531
542
  add_new_dynamic_mood_color_changing_mode_value: "Gradient",
@@ -1053,7 +1064,18 @@ export default {
1053
1064
  strip_lights_mood_text41: "Neon world",
1054
1065
  strip_lights_mood_text42: "Dreamland",
1055
1066
  strip_lights_mood_text43: "Summer wind",
1056
- strip_lights_mood_text44: "Planet journey"
1067
+ strip_lights_mood_text44: "Planet journey",
1068
+ devicemusic_classical_text: "Classical music",
1069
+ devicemusic_techno_text: "Techno music",
1070
+ strip_lights_headline_text: "Screen Sync",
1071
+ strip_lights_top_strip_light_text: "Top strip light",
1072
+ strip_lights_bottom_strip_light_text: "Bottom strip light",
1073
+ strip_lights_left_strip_light_text: "Left strip light",
1074
+ strip_lights_right_strip_light_text: "Right strip light",
1075
+ strip_lights_start_sync_text: "Start synchronisation",
1076
+ strip_lights_await_sync_text: "Synchronising",
1077
+ cancel_dialog_exit_sync_title: "Exit synchronisation",
1078
+ cancel_dialog_exit_sync_description: "Are you sure you want to exit synchronising?"
1057
1079
  },
1058
1080
  en: {
1059
1081
  add_new_dynamic_mood_color_changing_mode_value: "Gradient",
@@ -1581,7 +1603,18 @@ export default {
1581
1603
  strip_lights_mood_text41: "Neon world",
1582
1604
  strip_lights_mood_text42: "Dreamland",
1583
1605
  strip_lights_mood_text43: "Summer wind",
1584
- strip_lights_mood_text44: "Planet journey"
1606
+ strip_lights_mood_text44: "Planet journey",
1607
+ devicemusic_classical_text: "Classical music",
1608
+ devicemusic_techno_text: "Techno music",
1609
+ strip_lights_headline_text: "Screen Sync",
1610
+ strip_lights_top_strip_light_text: "Top strip light",
1611
+ strip_lights_bottom_strip_light_text: "Bottom strip light",
1612
+ strip_lights_left_strip_light_text: "Left strip light",
1613
+ strip_lights_right_strip_light_text: "Right strip light",
1614
+ strip_lights_start_sync_text: "Start synchronisation",
1615
+ strip_lights_await_sync_text: "Synchronising",
1616
+ cancel_dialog_exit_sync_title: "Exit synchronisation",
1617
+ cancel_dialog_exit_sync_description: "Are you sure you want to exit synchronising?"
1585
1618
  },
1586
1619
  bg: {
1587
1620
  add_new_dynamic_mood_color_changing_mode_value: "Градиент",
@@ -2109,7 +2142,18 @@ export default {
2109
2142
  strip_lights_mood_text41: "Neon world",
2110
2143
  strip_lights_mood_text42: "Dreamland",
2111
2144
  strip_lights_mood_text43: "Summer wind",
2112
- strip_lights_mood_text44: "Planet journey"
2145
+ strip_lights_mood_text44: "Planet journey",
2146
+ devicemusic_classical_text: "Classical music",
2147
+ devicemusic_techno_text: "Techno music",
2148
+ strip_lights_headline_text: "Screen Sync",
2149
+ strip_lights_top_strip_light_text: "Top strip light",
2150
+ strip_lights_bottom_strip_light_text: "Bottom strip light",
2151
+ strip_lights_left_strip_light_text: "Left strip light",
2152
+ strip_lights_right_strip_light_text: "Right strip light",
2153
+ strip_lights_start_sync_text: "Start synchronisation",
2154
+ strip_lights_await_sync_text: "Synchronising",
2155
+ cancel_dialog_exit_sync_title: "Exit synchronisation",
2156
+ cancel_dialog_exit_sync_description: "Are you sure you want to exit synchronising?"
2113
2157
  },
2114
2158
  da: {
2115
2159
  add_new_dynamic_mood_color_changing_mode_value: "Gradvist",
@@ -2299,7 +2343,7 @@ export default {
2299
2343
  sleepwakeschedule_empty_filtering_information_text: "Der er ingen tidsplaner for denne filtrering.",
2300
2344
  timer_ceiling_fan_selectionfield_no_components_text: "ingen komponent valgt",
2301
2345
  timer_nightplug_active_timer_field_description_off_text: "Plug/stikdåse bliver slukket om {0}",
2302
- timer_nightplug_active_timer_field_description_on_text: "Plug/stikdåse tænder om {0}",
2346
+ timer_nightplug_active_timer_field_description_on_text: "Plug/stikdåse tænder {0}",
2303
2347
  conflict_dialog_save_item_fixedtimecycle_answer_no_text: "Nej",
2304
2348
  conflict_dialog_save_item_fixedtimecycle_answer_yes_text: "Ja",
2305
2349
  conflict_dialog_save_item_fixedtimecycle_description: "Bemærk, at den faste tidscyklus er i konflikt med en eller flere funktioner. De modstridende funktioner vil blive deaktiveret.",
@@ -2637,7 +2681,18 @@ export default {
2637
2681
  strip_lights_mood_text41: "Neon world",
2638
2682
  strip_lights_mood_text42: "Dreamland",
2639
2683
  strip_lights_mood_text43: "Summer wind",
2640
- strip_lights_mood_text44: "Planet journey"
2684
+ strip_lights_mood_text44: "Planet journey",
2685
+ devicemusic_classical_text: "Classical music",
2686
+ devicemusic_techno_text: "Techno music",
2687
+ strip_lights_headline_text: "Screen Sync",
2688
+ strip_lights_top_strip_light_text: "Top strip light",
2689
+ strip_lights_bottom_strip_light_text: "Bottom strip light",
2690
+ strip_lights_left_strip_light_text: "Left strip light",
2691
+ strip_lights_right_strip_light_text: "Right strip light",
2692
+ strip_lights_start_sync_text: "Start synchronisation",
2693
+ strip_lights_await_sync_text: "Synchronising",
2694
+ cancel_dialog_exit_sync_title: "Exit synchronisation",
2695
+ cancel_dialog_exit_sync_description: "Are you sure you want to exit synchronising?"
2641
2696
  },
2642
2697
  de: {
2643
2698
  add_new_dynamic_mood_color_changing_mode_value: "Fließend",
@@ -3102,7 +3157,7 @@ export default {
3102
3157
  strip_lights_modes_rebound_text: "Schwingen",
3103
3158
  strip_lights_modes_shuttle_text: "Shuttle",
3104
3159
  strip_lights_modes_switch_text: "Wechseln",
3105
- strip_lights_modes_random_text: "Random",
3160
+ strip_lights_modes_random_text: "Zufällig",
3106
3161
  strip_lights_modes_breath_text: "Atmen",
3107
3162
  strip_lights_modes_flash_text: "Blitz",
3108
3163
  strip_lights_modes_flashing_text: "Blinken",
@@ -3113,59 +3168,70 @@ export default {
3113
3168
  string_lights_modes_blink_text: "Blinken",
3114
3169
  string_lights_modes_chase_text: "Verfolgen",
3115
3170
  string_lights_modes_dazzle_text: "Dazzle",
3116
- strip_lights_modes_magic_rebound_text: "Magic rebound",
3117
- strip_lights_modes_magic_meteor: "Magic meteor",
3118
- string_lights_set_bulbs_title: "Please set the number of bulbs according to the actual number of bulbs in the lamp string",
3119
- add_new_dynamic_mood_strip_lights_switch_tab_text3: "Paragraph",
3120
- add_new_dynamic_mood_strip_lights_switch_tab_text4: "Segmented",
3121
- add_new_dynamic_mood_strip_lights_switch_tab_text5: "Meanwhile",
3122
- add_new_dynamic_mood_strip_lights_switch_tab_text6: "Staggered",
3123
- add_new_dynamic_mood_strip_lights_schedule_switch_tab_combination_text: "Combination",
3124
- string_lights_set_bulbs_description_text: "Supports a maximum of 48 and a minimum of 5 bulbs",
3125
- strip_lights_mood_text1: "Iceland blue",
3126
- strip_lights_mood_text2: "Glacier express",
3127
- strip_lights_mood_text3: "Sea of clouds",
3128
- strip_lights_mood_text4: "Fireworks at sea",
3129
- strip_lights_mood_text5: "Hut in the snow",
3130
- strip_lights_mood_text6: "Firefly night",
3131
- strip_lights_mood_text7: "Northland",
3132
- strip_lights_mood_text8: "Grassland",
3133
- strip_lights_mood_text9: "Northern lights",
3134
- strip_lights_mood_text10: "Late autumn",
3135
- strip_lights_mood_text11: "Dream meteor",
3136
- strip_lights_mood_text12: "Early spring",
3137
- strip_lights_mood_text13: "Spring outing",
3138
- strip_lights_mood_text14: "Night service",
3139
- strip_lights_mood_text15: "Wind chime",
3140
- strip_lights_mood_text16: "City Lights",
3141
- strip_lights_mood_text17: "Color marbles",
3142
- strip_lights_mood_text18: "Summer train",
3143
- strip_lights_mood_text19: "Christmas Eve",
3144
- strip_lights_mood_text20: "Dream Sea",
3145
- strip_lights_mood_text21: "Game mood",
3146
- strip_lights_mood_text22: "Holiday mood",
3147
- strip_lights_mood_text23: "Work Mood",
3148
- strip_lights_mood_text24: "Party Mood",
3149
- strip_lights_mood_text25: "Trendy",
3150
- strip_lights_mood_text26: "Sporty Mood",
3151
- strip_lights_mood_text27: "Time for meditation",
3152
- strip_lights_mood_text28: "Dating Mood",
3153
- strip_lights_mood_text29: "Christmas Feeling",
3154
- strip_lights_mood_text30: "Valentine's Day",
3155
- strip_lights_mood_text31: "Halloween Day",
3156
- strip_lights_mood_text32: "Thanksgiving Day",
3157
- strip_lights_mood_text33: "Forest Day",
3158
- strip_lights_mood_text34: "Mother's Day",
3159
- strip_lights_mood_text35: "Father's Day",
3160
- strip_lights_mood_text36: "Football Day",
3161
- strip_lights_mood_text37: "Summer idyll",
3162
- strip_lights_mood_text38: "Dream of the sea",
3163
- strip_lights_mood_text39: "Love & Dream",
3164
- strip_lights_mood_text40: "Spring fishing",
3165
- strip_lights_mood_text41: "Neon world",
3166
- strip_lights_mood_text42: "Dreamland",
3167
- strip_lights_mood_text43: "Summer wind",
3168
- strip_lights_mood_text44: "Planet journey"
3171
+ strip_lights_modes_magic_rebound_text: "Magischer Rückprall",
3172
+ strip_lights_modes_magic_meteor: "Magischer Meteor",
3173
+ string_lights_set_bulbs_title: "Bitte stelle die Anzahl der LED Birnen entsprechend der tatsächlichen Anzahl in der Lichterkette ein",
3174
+ add_new_dynamic_mood_strip_lights_switch_tab_text3: "Im Ganzen",
3175
+ add_new_dynamic_mood_strip_lights_switch_tab_text4: "Segmentiert",
3176
+ add_new_dynamic_mood_strip_lights_switch_tab_text5: "Synchron",
3177
+ add_new_dynamic_mood_strip_lights_switch_tab_text6: "Versetzt",
3178
+ add_new_dynamic_mood_strip_lights_schedule_switch_tab_combination_text: "Kombination",
3179
+ string_lights_set_bulbs_description_text: "Unterstützt maximal 48 und mindestens 5 LED Birnen",
3180
+ strip_lights_mood_text1: "Islandblau",
3181
+ strip_lights_mood_text2: "Gletscherexpress",
3182
+ strip_lights_mood_text3: "Wolkenmeer",
3183
+ strip_lights_mood_text4: "Feuerwerk am See",
3184
+ strip_lights_mood_text5: "Hütte im Schnee",
3185
+ strip_lights_mood_text6: "Glühwürmchen-Nacht",
3186
+ strip_lights_mood_text7: "Nordland",
3187
+ strip_lights_mood_text8: "Grünland",
3188
+ strip_lights_mood_text9: "Nordlichter",
3189
+ strip_lights_mood_text10: "Spätherbst",
3190
+ strip_lights_mood_text11: "Meteortraum",
3191
+ strip_lights_mood_text12: "Vorfrühling",
3192
+ strip_lights_mood_text13: "Frühlingsausflug",
3193
+ strip_lights_mood_text14: "Nachtdienst",
3194
+ strip_lights_mood_text15: "Windspiel",
3195
+ strip_lights_mood_text16: "Lichter der Stadt",
3196
+ strip_lights_mood_text17: "Farbige Murmeln",
3197
+ strip_lights_mood_text18: "Sommerzug",
3198
+ strip_lights_mood_text19: "Heiligabend",
3199
+ strip_lights_mood_text20: "Traumhaftes Meer",
3200
+ strip_lights_mood_text21: "Spielstimmung",
3201
+ strip_lights_mood_text22: "Urlaubsstimmung",
3202
+ strip_lights_mood_text23: "Arbeitsstimmung",
3203
+ strip_lights_mood_text24: "Partystimmung",
3204
+ strip_lights_mood_text25: "Trendig",
3205
+ strip_lights_mood_text26: "Sportliche Stimmung",
3206
+ strip_lights_mood_text27: "Zeit für Meditation",
3207
+ strip_lights_mood_text28: "Dating-Stimmung",
3208
+ strip_lights_mood_text29: "Weihnachtsgefühl",
3209
+ strip_lights_mood_text30: "Valentinstag",
3210
+ strip_lights_mood_text31: "Halloweentag",
3211
+ strip_lights_mood_text32: "Erntedankfest",
3212
+ strip_lights_mood_text33: "Waldtag",
3213
+ strip_lights_mood_text34: "Muttertag",
3214
+ strip_lights_mood_text35: "Vatertag",
3215
+ strip_lights_mood_text36: "Fußballtag",
3216
+ strip_lights_mood_text37: "Sommeridylle",
3217
+ strip_lights_mood_text38: "Traum vom Meer",
3218
+ strip_lights_mood_text39: "Liebestraum",
3219
+ strip_lights_mood_text40: "Angeln im Frühling",
3220
+ strip_lights_mood_text41: "Neon-Welt",
3221
+ strip_lights_mood_text42: "Traumland",
3222
+ strip_lights_mood_text43: "Sommerwind",
3223
+ strip_lights_mood_text44: "Planetenreise",
3224
+ devicemusic_classical_text: "Klassische Musik",
3225
+ 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?"
3169
3235
  },
3170
3236
  el: {
3171
3237
  add_new_dynamic_mood_color_changing_mode_value: "Διαβάθμιση",
@@ -3693,7 +3759,18 @@ export default {
3693
3759
  strip_lights_mood_text41: "Neon world",
3694
3760
  strip_lights_mood_text42: "Dreamland",
3695
3761
  strip_lights_mood_text43: "Summer wind",
3696
- strip_lights_mood_text44: "Planet journey"
3762
+ strip_lights_mood_text44: "Planet journey",
3763
+ devicemusic_classical_text: "Classical music",
3764
+ devicemusic_techno_text: "Techno music",
3765
+ strip_lights_headline_text: "Screen Sync",
3766
+ strip_lights_top_strip_light_text: "Top strip light",
3767
+ strip_lights_bottom_strip_light_text: "Bottom strip light",
3768
+ strip_lights_left_strip_light_text: "Left strip light",
3769
+ strip_lights_right_strip_light_text: "Right strip light",
3770
+ strip_lights_start_sync_text: "Start synchronisation",
3771
+ strip_lights_await_sync_text: "Synchronising",
3772
+ cancel_dialog_exit_sync_title: "Exit synchronisation",
3773
+ cancel_dialog_exit_sync_description: "Are you sure you want to exit synchronising?"
3697
3774
  },
3698
3775
  es: {
3699
3776
  add_new_dynamic_mood_color_changing_mode_value: "Gradiente",
@@ -4221,7 +4298,18 @@ export default {
4221
4298
  strip_lights_mood_text41: "Neon world",
4222
4299
  strip_lights_mood_text42: "Dreamland",
4223
4300
  strip_lights_mood_text43: "Summer wind",
4224
- strip_lights_mood_text44: "Planet journey"
4301
+ strip_lights_mood_text44: "Planet journey",
4302
+ devicemusic_classical_text: "Classical music",
4303
+ devicemusic_techno_text: "Techno music",
4304
+ strip_lights_headline_text: "Screen Sync",
4305
+ strip_lights_top_strip_light_text: "Top strip light",
4306
+ strip_lights_bottom_strip_light_text: "Bottom strip light",
4307
+ strip_lights_left_strip_light_text: "Left strip light",
4308
+ strip_lights_right_strip_light_text: "Right strip light",
4309
+ strip_lights_start_sync_text: "Start synchronisation",
4310
+ strip_lights_await_sync_text: "Synchronising",
4311
+ cancel_dialog_exit_sync_title: "Exit synchronisation",
4312
+ cancel_dialog_exit_sync_description: "Are you sure you want to exit synchronising?"
4225
4313
  },
4226
4314
  et: {
4227
4315
  add_new_dynamic_mood_color_changing_mode_value: "Muutmisaste",
@@ -4749,7 +4837,18 @@ export default {
4749
4837
  strip_lights_mood_text41: "Neon world",
4750
4838
  strip_lights_mood_text42: "Dreamland",
4751
4839
  strip_lights_mood_text43: "Summer wind",
4752
- strip_lights_mood_text44: "Planet journey"
4840
+ strip_lights_mood_text44: "Planet journey",
4841
+ devicemusic_classical_text: "Classical music",
4842
+ devicemusic_techno_text: "Techno music",
4843
+ strip_lights_headline_text: "Screen Sync",
4844
+ strip_lights_top_strip_light_text: "Top strip light",
4845
+ strip_lights_bottom_strip_light_text: "Bottom strip light",
4846
+ strip_lights_left_strip_light_text: "Left strip light",
4847
+ strip_lights_right_strip_light_text: "Right strip light",
4848
+ strip_lights_start_sync_text: "Start synchronisation",
4849
+ strip_lights_await_sync_text: "Synchronising",
4850
+ cancel_dialog_exit_sync_title: "Exit synchronisation",
4851
+ cancel_dialog_exit_sync_description: "Are you sure you want to exit synchronising?"
4753
4852
  },
4754
4853
  fi: {
4755
4854
  add_new_dynamic_mood_color_changing_mode_value: "Liukuva",
@@ -5277,7 +5376,18 @@ export default {
5277
5376
  strip_lights_mood_text41: "Neon world",
5278
5377
  strip_lights_mood_text42: "Dreamland",
5279
5378
  strip_lights_mood_text43: "Summer wind",
5280
- strip_lights_mood_text44: "Planet journey"
5379
+ strip_lights_mood_text44: "Planet journey",
5380
+ devicemusic_classical_text: "Classical music",
5381
+ devicemusic_techno_text: "Techno music",
5382
+ strip_lights_headline_text: "Screen Sync",
5383
+ strip_lights_top_strip_light_text: "Top strip light",
5384
+ strip_lights_bottom_strip_light_text: "Bottom strip light",
5385
+ strip_lights_left_strip_light_text: "Left strip light",
5386
+ strip_lights_right_strip_light_text: "Right strip light",
5387
+ strip_lights_start_sync_text: "Start synchronisation",
5388
+ strip_lights_await_sync_text: "Synchronising",
5389
+ cancel_dialog_exit_sync_title: "Exit synchronisation",
5390
+ cancel_dialog_exit_sync_description: "Are you sure you want to exit synchronising?"
5281
5391
  },
5282
5392
  fr: {
5283
5393
  add_new_dynamic_mood_color_changing_mode_value: "Fluide",
@@ -5612,7 +5722,7 @@ export default {
5612
5722
  consumption_data_price_per_kwh_currency_value3: "£",
5613
5723
  consumption_data_price_per_kwh_currency_value4: "¥",
5614
5724
  add_fixedtimecycle_headline_text: "Ajoute un nouveau cycle de temps",
5615
- edit_fixedtimecycle_headline_text: "Edit the time cycle",
5725
+ edit_fixedtimecycle_headline_text: "Modifier le cycle de temps",
5616
5726
  manage_user_unsaved_changes_dialog_headline: "Voulez-vous vraiment partir ?",
5617
5727
  cancel_dialog_delete_item_bio_rhythm_titel: "Voulez-vous vraiment supprimer l'heure de déclenchement ?",
5618
5728
  string_light_pp_dialog_sm_add_headline_c: "Voulez-vous vraiment annuler l'ajout d'une nouvelle ambiance ?",
@@ -5711,7 +5821,7 @@ export default {
5711
5821
  matter_gradient_light_on_description_text: "Réglez une durée comprise entre 0 et 60 secondes pour augmenter progressivement la luminosité lors de l'allumage de la lampe",
5712
5822
  matter_gradient_light_off_title: "Fondu(s) à l'extinction",
5713
5823
  matter_gradient_light_off_description_text: "Réglez une durée comprise entre 0 et 60 secondes pour diminuer progressivement la luminosité lorsque vous éteignez la lampe",
5714
- edit_timeschedule_headline_text: "Edit the time schedule",
5824
+ edit_timeschedule_headline_text: "Modifier le calendrier",
5715
5825
  edit_wakeupschedule_headline_text: "Modifier l'horaire de réveil",
5716
5826
  edit_sleepschedule_headline_text: "Modifier l'horaire de coucher",
5717
5827
  edit_trigger_time_headline_text: "Modifier l'heure de déclenchement",
@@ -5742,7 +5852,7 @@ export default {
5742
5852
  strip_lights_modes_rebound_text: "Rebond",
5743
5853
  strip_lights_modes_shuttle_text: "Navette",
5744
5854
  strip_lights_modes_switch_text: "Interrupteur",
5745
- strip_lights_modes_random_text: "Random",
5855
+ strip_lights_modes_random_text: "Aléatoire",
5746
5856
  strip_lights_modes_breath_text: "Breath",
5747
5857
  strip_lights_modes_flash_text: "Clignotement",
5748
5858
  strip_lights_modes_flashing_text: "Clignotant",
@@ -5753,59 +5863,70 @@ export default {
5753
5863
  string_lights_modes_blink_text: "Blink",
5754
5864
  string_lights_modes_chase_text: "Chase",
5755
5865
  string_lights_modes_dazzle_text: "Dazzle",
5756
- strip_lights_modes_magic_rebound_text: "Magic rebound",
5757
- strip_lights_modes_magic_meteor: "Magic meteor",
5758
- string_lights_set_bulbs_title: "Please set the number of bulbs according to the actual number of bulbs in the lamp string",
5759
- add_new_dynamic_mood_strip_lights_switch_tab_text3: "Paragraph",
5760
- add_new_dynamic_mood_strip_lights_switch_tab_text4: "Segmented",
5761
- add_new_dynamic_mood_strip_lights_switch_tab_text5: "Meanwhile",
5762
- add_new_dynamic_mood_strip_lights_switch_tab_text6: "Staggered",
5763
- add_new_dynamic_mood_strip_lights_schedule_switch_tab_combination_text: "Combination",
5764
- string_lights_set_bulbs_description_text: "Supports a maximum of 48 and a minimum of 5 bulbs",
5765
- strip_lights_mood_text1: "Iceland blue",
5766
- strip_lights_mood_text2: "Glacier express",
5767
- strip_lights_mood_text3: "Sea of clouds",
5768
- strip_lights_mood_text4: "Fireworks at sea",
5769
- strip_lights_mood_text5: "Hut in the snow",
5770
- strip_lights_mood_text6: "Firefly night",
5771
- strip_lights_mood_text7: "Northland",
5772
- strip_lights_mood_text8: "Grassland",
5773
- strip_lights_mood_text9: "Northern lights",
5774
- strip_lights_mood_text10: "Late autumn",
5775
- strip_lights_mood_text11: "Dream meteor",
5776
- strip_lights_mood_text12: "Early spring",
5777
- strip_lights_mood_text13: "Spring outing",
5778
- strip_lights_mood_text14: "Night service",
5779
- strip_lights_mood_text15: "Wind chime",
5780
- strip_lights_mood_text16: "City Lights",
5781
- strip_lights_mood_text17: "Color marbles",
5782
- strip_lights_mood_text18: "Summer train",
5783
- strip_lights_mood_text19: "Christmas Eve",
5784
- strip_lights_mood_text20: "Dream Sea",
5785
- strip_lights_mood_text21: "Game mood",
5786
- strip_lights_mood_text22: "Holiday mood",
5787
- strip_lights_mood_text23: "Work Mood",
5788
- strip_lights_mood_text24: "Party Mood",
5789
- strip_lights_mood_text25: "Trendy",
5790
- strip_lights_mood_text26: "Sporty Mood",
5791
- strip_lights_mood_text27: "Time for meditation",
5792
- strip_lights_mood_text28: "Dating Mood",
5793
- strip_lights_mood_text29: "Christmas Feeling",
5794
- strip_lights_mood_text30: "Valentine's Day",
5795
- strip_lights_mood_text31: "Halloween Day",
5796
- strip_lights_mood_text32: "Thanksgiving Day",
5797
- strip_lights_mood_text33: "Forest Day",
5798
- strip_lights_mood_text34: "Mother's Day",
5799
- strip_lights_mood_text35: "Father's Day",
5800
- strip_lights_mood_text36: "Football Day",
5801
- strip_lights_mood_text37: "Summer idyll",
5802
- strip_lights_mood_text38: "Dream of the sea",
5803
- strip_lights_mood_text39: "Love & Dream",
5804
- strip_lights_mood_text40: "Spring fishing",
5805
- strip_lights_mood_text41: "Neon world",
5806
- strip_lights_mood_text42: "Dreamland",
5807
- strip_lights_mood_text43: "Summer wind",
5808
- strip_lights_mood_text44: "Planet journey"
5866
+ strip_lights_modes_magic_rebound_text: "Rebond magique",
5867
+ strip_lights_modes_magic_meteor: "Météore magique",
5868
+ string_lights_set_bulbs_title: "Veuillez régler le nombre d'ampoules en fonction du nombre réel d'ampoules dans la guirlande",
5869
+ add_new_dynamic_mood_strip_lights_switch_tab_text3: "Paragraphe",
5870
+ add_new_dynamic_mood_strip_lights_switch_tab_text4: "Segmenté",
5871
+ add_new_dynamic_mood_strip_lights_switch_tab_text5: "Pendant ce temps",
5872
+ add_new_dynamic_mood_strip_lights_switch_tab_text6: "Décalé",
5873
+ add_new_dynamic_mood_strip_lights_schedule_switch_tab_combination_text: "Combinaison",
5874
+ string_lights_set_bulbs_description_text: "Supporte un maximum de 48 ampoules et un minimum de 5 ampoules",
5875
+ strip_lights_mood_text1: "Bleu d'Islande",
5876
+ strip_lights_mood_text2: "Glacier Express",
5877
+ strip_lights_mood_text3: "Mer de nuages",
5878
+ strip_lights_mood_text4: "Feux d'artifice en mer",
5879
+ strip_lights_mood_text5: "Cabane dans la neige",
5880
+ strip_lights_mood_text6: "Nuit des lucioles",
5881
+ strip_lights_mood_text7: "Terre du Nord",
5882
+ strip_lights_mood_text8: "Prairie",
5883
+ strip_lights_mood_text9: "Aurores boréales",
5884
+ strip_lights_mood_text10: "Fin de l'automne",
5885
+ strip_lights_mood_text11: "Météore de rêve",
5886
+ strip_lights_mood_text12: "Début du printemps",
5887
+ strip_lights_mood_text13: "Sortie printanière",
5888
+ strip_lights_mood_text14: "Service de nuit",
5889
+ strip_lights_mood_text15: "Carillon éolien",
5890
+ strip_lights_mood_text16: "Lumières de ville",
5891
+ strip_lights_mood_text17: "Marbres de couleur",
5892
+ strip_lights_mood_text18: "Train d'été",
5893
+ strip_lights_mood_text19: "Veille de Noël",
5894
+ strip_lights_mood_text20: "Mer de rêve",
5895
+ strip_lights_mood_text21: "Ambiance de jeu",
5896
+ strip_lights_mood_text22: "Ambiance de vacances",
5897
+ strip_lights_mood_text23: "Ambiance de travail",
5898
+ strip_lights_mood_text24: "Ambiance de fête",
5899
+ strip_lights_mood_text25: "Tendance",
5900
+ strip_lights_mood_text26: "Ambiance sportive",
5901
+ strip_lights_mood_text27: "Temps de méditation",
5902
+ strip_lights_mood_text28: "Ambiance de rencontre",
5903
+ strip_lights_mood_text29: "Sensations de Noël",
5904
+ strip_lights_mood_text30: "Saint-Valentin",
5905
+ strip_lights_mood_text31: "Halloween",
5906
+ strip_lights_mood_text32: "Thanksgiving",
5907
+ strip_lights_mood_text33: "Journée de la forêt",
5908
+ strip_lights_mood_text34: "Fête des Mères",
5909
+ strip_lights_mood_text35: "Fête des Pères",
5910
+ strip_lights_mood_text36: "Journée du football",
5911
+ strip_lights_mood_text37: "Idylle d'été",
5912
+ strip_lights_mood_text38: "Rêve de mer",
5913
+ strip_lights_mood_text39: "Amour et rêve",
5914
+ strip_lights_mood_text40: "Pêche de printemps",
5915
+ strip_lights_mood_text41: "Le monde des néons",
5916
+ strip_lights_mood_text42: "Pays des rêves",
5917
+ strip_lights_mood_text43: "Vent d'été",
5918
+ strip_lights_mood_text44: "Voyage planétaire",
5919
+ devicemusic_classical_text: "Musique classique",
5920
+ devicemusic_techno_text: "Musique techno",
5921
+ strip_lights_headline_text: "Screen Sync",
5922
+ strip_lights_top_strip_light_text: "Top strip light",
5923
+ strip_lights_bottom_strip_light_text: "Bottom strip light",
5924
+ strip_lights_left_strip_light_text: "Left strip light",
5925
+ strip_lights_right_strip_light_text: "Right strip light",
5926
+ strip_lights_start_sync_text: "Start synchronisation",
5927
+ strip_lights_await_sync_text: "Synchronising",
5928
+ cancel_dialog_exit_sync_title: "Exit synchronisation",
5929
+ cancel_dialog_exit_sync_description: "Are you sure you want to exit synchronising?"
5809
5930
  },
5810
5931
  hr: {
5811
5932
  add_new_dynamic_mood_color_changing_mode_value: "Prijelaz",
@@ -6270,7 +6391,7 @@ export default {
6270
6391
  strip_lights_modes_rebound_text: "Odskok",
6271
6392
  strip_lights_modes_shuttle_text: "Shuttle",
6272
6393
  strip_lights_modes_switch_text: "Prekidač",
6273
- strip_lights_modes_random_text: "Random",
6394
+ strip_lights_modes_random_text: "Nasumično",
6274
6395
  strip_lights_modes_breath_text: "Dah",
6275
6396
  strip_lights_modes_flash_text: "Bljeskalica",
6276
6397
  strip_lights_modes_flashing_text: "Bljeskanje",
@@ -6281,32 +6402,32 @@ export default {
6281
6402
  string_lights_modes_blink_text: "Treptati",
6282
6403
  string_lights_modes_chase_text: "Potjera",
6283
6404
  string_lights_modes_dazzle_text: "Blistavo",
6284
- strip_lights_modes_magic_rebound_text: "Magic rebound",
6285
- strip_lights_modes_magic_meteor: "Magic meteor",
6405
+ strip_lights_modes_magic_rebound_text: "Čarobni odskok",
6406
+ strip_lights_modes_magic_meteor: "Čarobni meteor",
6286
6407
  string_lights_set_bulbs_title: "Please set the number of bulbs according to the actual number of bulbs in the lamp string",
6287
- add_new_dynamic_mood_strip_lights_switch_tab_text3: "Paragraph",
6288
- add_new_dynamic_mood_strip_lights_switch_tab_text4: "Segmented",
6289
- add_new_dynamic_mood_strip_lights_switch_tab_text5: "Meanwhile",
6290
- add_new_dynamic_mood_strip_lights_switch_tab_text6: "Staggered",
6291
- add_new_dynamic_mood_strip_lights_schedule_switch_tab_combination_text: "Combination",
6408
+ add_new_dynamic_mood_strip_lights_switch_tab_text3: "Paragraf",
6409
+ add_new_dynamic_mood_strip_lights_switch_tab_text4: "Segmentirano",
6410
+ add_new_dynamic_mood_strip_lights_switch_tab_text5: "U međuvremenu",
6411
+ add_new_dynamic_mood_strip_lights_switch_tab_text6: "Postepeno",
6412
+ add_new_dynamic_mood_strip_lights_schedule_switch_tab_combination_text: "Kombinacija",
6292
6413
  string_lights_set_bulbs_description_text: "Supports a maximum of 48 and a minimum of 5 bulbs",
6293
- strip_lights_mood_text1: "Iceland blue",
6294
- strip_lights_mood_text2: "Glacier express",
6295
- strip_lights_mood_text3: "Sea of clouds",
6296
- strip_lights_mood_text4: "Fireworks at sea",
6297
- strip_lights_mood_text5: "Hut in the snow",
6298
- strip_lights_mood_text6: "Firefly night",
6299
- strip_lights_mood_text7: "Northland",
6300
- strip_lights_mood_text8: "Grassland",
6301
- strip_lights_mood_text9: "Northern lights",
6302
- strip_lights_mood_text10: "Late autumn",
6303
- strip_lights_mood_text11: "Dream meteor",
6304
- strip_lights_mood_text12: "Early spring",
6305
- strip_lights_mood_text13: "Spring outing",
6306
- strip_lights_mood_text14: "Night service",
6307
- strip_lights_mood_text15: "Wind chime",
6308
- strip_lights_mood_text16: "City Lights",
6309
- strip_lights_mood_text17: "Color marbles",
6414
+ strip_lights_mood_text1: "Islandska plava",
6415
+ strip_lights_mood_text2: "Ledeni ekspres",
6416
+ strip_lights_mood_text3: "More oblaka",
6417
+ strip_lights_mood_text4: "Vatromet na moru",
6418
+ strip_lights_mood_text5: "Koliba u snijegu",
6419
+ strip_lights_mood_text6: "Noć krijesnica",
6420
+ strip_lights_mood_text7: "Sjeverna zemlja",
6421
+ strip_lights_mood_text8: "Travnjak",
6422
+ strip_lights_mood_text9: "Polarna svjetlost",
6423
+ strip_lights_mood_text10: "Kasna jesen",
6424
+ strip_lights_mood_text11: "Meteor iz snova",
6425
+ strip_lights_mood_text12: "Rano proljeće",
6426
+ strip_lights_mood_text13: "Proljetni izlet",
6427
+ strip_lights_mood_text14: "Noćna služba",
6428
+ strip_lights_mood_text15: "Zvono na vjetru",
6429
+ strip_lights_mood_text16: "Svjetla grada",
6430
+ strip_lights_mood_text17: "Kugle u boji",
6310
6431
  strip_lights_mood_text18: "Summer train",
6311
6432
  strip_lights_mood_text19: "Christmas Eve",
6312
6433
  strip_lights_mood_text20: "Dream Sea",
@@ -6333,7 +6454,18 @@ export default {
6333
6454
  strip_lights_mood_text41: "Neon world",
6334
6455
  strip_lights_mood_text42: "Dreamland",
6335
6456
  strip_lights_mood_text43: "Summer wind",
6336
- strip_lights_mood_text44: "Planet journey"
6457
+ strip_lights_mood_text44: "Planet journey",
6458
+ devicemusic_classical_text: "Classical music",
6459
+ devicemusic_techno_text: "Techno music",
6460
+ strip_lights_headline_text: "Screen Sync",
6461
+ strip_lights_top_strip_light_text: "Top strip light",
6462
+ strip_lights_bottom_strip_light_text: "Bottom strip light",
6463
+ strip_lights_left_strip_light_text: "Left strip light",
6464
+ strip_lights_right_strip_light_text: "Right strip light",
6465
+ strip_lights_start_sync_text: "Start synchronisation",
6466
+ strip_lights_await_sync_text: "Synchronising",
6467
+ cancel_dialog_exit_sync_title: "Exit synchronisation",
6468
+ cancel_dialog_exit_sync_description: "Are you sure you want to exit synchronising?"
6337
6469
  },
6338
6470
  hu: {
6339
6471
  add_new_dynamic_mood_color_changing_mode_value: "Átmenet",
@@ -6861,7 +6993,18 @@ export default {
6861
6993
  strip_lights_mood_text41: "Neon world",
6862
6994
  strip_lights_mood_text42: "Dreamland",
6863
6995
  strip_lights_mood_text43: "Summer wind",
6864
- strip_lights_mood_text44: "Planet journey"
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?"
6865
7008
  },
6866
7009
  it: {
6867
7010
  add_new_dynamic_mood_color_changing_mode_value: "Fluido",
@@ -7389,7 +7532,18 @@ export default {
7389
7532
  strip_lights_mood_text41: "Neon world",
7390
7533
  strip_lights_mood_text42: "Dreamland",
7391
7534
  strip_lights_mood_text43: "Summer wind",
7392
- strip_lights_mood_text44: "Planet journey"
7535
+ strip_lights_mood_text44: "Planet journey",
7536
+ devicemusic_classical_text: "Classical music",
7537
+ devicemusic_techno_text: "Techno music",
7538
+ strip_lights_headline_text: "Screen Sync",
7539
+ strip_lights_top_strip_light_text: "Top strip light",
7540
+ strip_lights_bottom_strip_light_text: "Bottom strip light",
7541
+ strip_lights_left_strip_light_text: "Left strip light",
7542
+ strip_lights_right_strip_light_text: "Right strip light",
7543
+ strip_lights_start_sync_text: "Start synchronisation",
7544
+ strip_lights_await_sync_text: "Synchronising",
7545
+ cancel_dialog_exit_sync_title: "Exit synchronisation",
7546
+ cancel_dialog_exit_sync_description: "Are you sure you want to exit synchronising?"
7393
7547
  },
7394
7548
  ko: {
7395
7549
  add_new_dynamic_mood_color_changing_mode_value: "그래디언트",
@@ -7917,7 +8071,18 @@ export default {
7917
8071
  strip_lights_mood_text41: "Neon world",
7918
8072
  strip_lights_mood_text42: "Dreamland",
7919
8073
  strip_lights_mood_text43: "Summer wind",
7920
- strip_lights_mood_text44: "Planet journey"
8074
+ strip_lights_mood_text44: "Planet journey",
8075
+ devicemusic_classical_text: "Classical music",
8076
+ devicemusic_techno_text: "Techno music",
8077
+ strip_lights_headline_text: "Screen Sync",
8078
+ strip_lights_top_strip_light_text: "Top strip light",
8079
+ strip_lights_bottom_strip_light_text: "Bottom strip light",
8080
+ strip_lights_left_strip_light_text: "Left strip light",
8081
+ strip_lights_right_strip_light_text: "Right strip light",
8082
+ strip_lights_start_sync_text: "Start synchronisation",
8083
+ strip_lights_await_sync_text: "Synchronising",
8084
+ cancel_dialog_exit_sync_title: "Exit synchronisation",
8085
+ cancel_dialog_exit_sync_description: "Are you sure you want to exit synchronising?"
7921
8086
  },
7922
8087
  lt: {
7923
8088
  add_new_dynamic_mood_color_changing_mode_value: "Gradientas",
@@ -8445,7 +8610,18 @@ export default {
8445
8610
  strip_lights_mood_text41: "Neon world",
8446
8611
  strip_lights_mood_text42: "Dreamland",
8447
8612
  strip_lights_mood_text43: "Summer wind",
8448
- strip_lights_mood_text44: "Planet journey"
8613
+ strip_lights_mood_text44: "Planet journey",
8614
+ devicemusic_classical_text: "Classical music",
8615
+ devicemusic_techno_text: "Techno music",
8616
+ strip_lights_headline_text: "Screen Sync",
8617
+ strip_lights_top_strip_light_text: "Top strip light",
8618
+ strip_lights_bottom_strip_light_text: "Bottom strip light",
8619
+ strip_lights_left_strip_light_text: "Left strip light",
8620
+ strip_lights_right_strip_light_text: "Right strip light",
8621
+ strip_lights_start_sync_text: "Start synchronisation",
8622
+ strip_lights_await_sync_text: "Synchronising",
8623
+ cancel_dialog_exit_sync_title: "Exit synchronisation",
8624
+ cancel_dialog_exit_sync_description: "Are you sure you want to exit synchronising?"
8449
8625
  },
8450
8626
  lv: {
8451
8627
  add_new_dynamic_mood_color_changing_mode_value: "Gradients",
@@ -8910,7 +9086,7 @@ export default {
8910
9086
  strip_lights_modes_rebound_text: "Atsitiens",
8911
9087
  strip_lights_modes_shuttle_text: "Shuttle",
8912
9088
  strip_lights_modes_switch_text: "Pārslēgties",
8913
- strip_lights_modes_random_text: "Random",
9089
+ strip_lights_modes_random_text: "Nejaušs",
8914
9090
  strip_lights_modes_breath_text: "Elpa",
8915
9091
  strip_lights_modes_flash_text: "Zibspuldze",
8916
9092
  strip_lights_modes_flashing_text: "Mirgojošs",
@@ -8921,59 +9097,70 @@ export default {
8921
9097
  string_lights_modes_blink_text: "Mirgo",
8922
9098
  string_lights_modes_chase_text: "Chase",
8923
9099
  string_lights_modes_dazzle_text: "Apžilbināt",
8924
- strip_lights_modes_magic_rebound_text: "Magic rebound",
8925
- strip_lights_modes_magic_meteor: "Magic meteor",
8926
- string_lights_set_bulbs_title: "Please set the number of bulbs according to the actual number of bulbs in the lamp string",
8927
- add_new_dynamic_mood_strip_lights_switch_tab_text3: "Paragraph",
8928
- add_new_dynamic_mood_strip_lights_switch_tab_text4: "Segmented",
8929
- add_new_dynamic_mood_strip_lights_switch_tab_text5: "Meanwhile",
8930
- add_new_dynamic_mood_strip_lights_switch_tab_text6: "Staggered",
8931
- add_new_dynamic_mood_strip_lights_schedule_switch_tab_combination_text: "Combination",
8932
- string_lights_set_bulbs_description_text: "Supports a maximum of 48 and a minimum of 5 bulbs",
8933
- strip_lights_mood_text1: "Iceland blue",
8934
- strip_lights_mood_text2: "Glacier express",
8935
- strip_lights_mood_text3: "Sea of clouds",
8936
- strip_lights_mood_text4: "Fireworks at sea",
8937
- strip_lights_mood_text5: "Hut in the snow",
8938
- strip_lights_mood_text6: "Firefly night",
8939
- strip_lights_mood_text7: "Northland",
8940
- strip_lights_mood_text8: "Grassland",
8941
- strip_lights_mood_text9: "Northern lights",
8942
- strip_lights_mood_text10: "Late autumn",
8943
- strip_lights_mood_text11: "Dream meteor",
8944
- strip_lights_mood_text12: "Early spring",
8945
- strip_lights_mood_text13: "Spring outing",
8946
- strip_lights_mood_text14: "Night service",
8947
- strip_lights_mood_text15: "Wind chime",
8948
- strip_lights_mood_text16: "City Lights",
8949
- strip_lights_mood_text17: "Color marbles",
8950
- strip_lights_mood_text18: "Summer train",
8951
- strip_lights_mood_text19: "Christmas Eve",
8952
- strip_lights_mood_text20: "Dream Sea",
8953
- strip_lights_mood_text21: "Game mood",
8954
- strip_lights_mood_text22: "Holiday mood",
8955
- strip_lights_mood_text23: "Work Mood",
8956
- strip_lights_mood_text24: "Party Mood",
8957
- strip_lights_mood_text25: "Trendy",
8958
- strip_lights_mood_text26: "Sporty Mood",
8959
- strip_lights_mood_text27: "Time for meditation",
8960
- strip_lights_mood_text28: "Dating Mood",
8961
- strip_lights_mood_text29: "Christmas Feeling",
8962
- strip_lights_mood_text30: "Valentine's Day",
8963
- strip_lights_mood_text31: "Halloween Day",
8964
- strip_lights_mood_text32: "Thanksgiving Day",
8965
- strip_lights_mood_text33: "Forest Day",
8966
- strip_lights_mood_text34: "Mother's Day",
8967
- strip_lights_mood_text35: "Father's Day",
8968
- strip_lights_mood_text36: "Football Day",
8969
- strip_lights_mood_text37: "Summer idyll",
8970
- strip_lights_mood_text38: "Dream of the sea",
8971
- strip_lights_mood_text39: "Love & Dream",
8972
- strip_lights_mood_text40: "Spring fishing",
8973
- strip_lights_mood_text41: "Neon world",
8974
- strip_lights_mood_text42: "Dreamland",
8975
- strip_lights_mood_text43: "Summer wind",
8976
- strip_lights_mood_text44: "Planet journey"
9100
+ strip_lights_modes_magic_rebound_text: "Maģiskais atrāviens",
9101
+ strip_lights_modes_magic_meteor: "Maģiskais meteors",
9102
+ string_lights_set_bulbs_title: "Lūdzu, iestatiet spuldžu skaitu atbilstoši faktiskajam spuldžu skaitam lampu virknē.",
9103
+ add_new_dynamic_mood_strip_lights_switch_tab_text3: "Paragrāfs",
9104
+ add_new_dynamic_mood_strip_lights_switch_tab_text4: "Segmentēts",
9105
+ add_new_dynamic_mood_strip_lights_switch_tab_text5: "Tikmēr",
9106
+ add_new_dynamic_mood_strip_lights_switch_tab_text6: "Pakāpeniski",
9107
+ add_new_dynamic_mood_strip_lights_schedule_switch_tab_combination_text: "Kombinācija",
9108
+ string_lights_set_bulbs_description_text: "Atbalsta ne vairāk 48 un vismaz 5 spuldzes",
9109
+ strip_lights_mood_text1: "Islandes zils",
9110
+ strip_lights_mood_text2: "Ledus ekspresis",
9111
+ strip_lights_mood_text3: "Mākoņu jūra",
9112
+ strip_lights_mood_text4: "Uguņošana jūrā",
9113
+ strip_lights_mood_text5: "Būda sniegā",
9114
+ strip_lights_mood_text6: "Ugunsputnu nakts",
9115
+ strip_lights_mood_text7: "Ziemeļzeme",
9116
+ strip_lights_mood_text8: "Zālājs",
9117
+ strip_lights_mood_text9: "Ziemeļblāzma",
9118
+ strip_lights_mood_text10: "Vēls rudens",
9119
+ strip_lights_mood_text11: "Sapņu meteors",
9120
+ strip_lights_mood_text12: "Agrs pavasaris",
9121
+ strip_lights_mood_text13: "Pavasara izbrauciens",
9122
+ strip_lights_mood_text14: "Nakts serviss",
9123
+ strip_lights_mood_text15: "Vēja zvans",
9124
+ strip_lights_mood_text16: "Pilsētas gaismas",
9125
+ strip_lights_mood_text17: "Krāsu bumbiņas",
9126
+ strip_lights_mood_text18: "Vasaras vilciens",
9127
+ strip_lights_mood_text19: "Ziemassvētku vakars",
9128
+ strip_lights_mood_text20: "Sapņu jūra",
9129
+ strip_lights_mood_text21: "Spēles noskaņa",
9130
+ strip_lights_mood_text22: "Svētku noskaņa",
9131
+ strip_lights_mood_text23: "Darba noskaņojums",
9132
+ strip_lights_mood_text24: "Ballīšu noskaņojums",
9133
+ strip_lights_mood_text25: "Moderns",
9134
+ strip_lights_mood_text26: "Sportisks noskaņojums",
9135
+ strip_lights_mood_text27: "Laiks meditācijai",
9136
+ strip_lights_mood_text28: "Iepazīšanās Noskaņojums",
9137
+ strip_lights_mood_text29: "Ziemassvētku sajūta",
9138
+ strip_lights_mood_text30: "Valentīndiena",
9139
+ strip_lights_mood_text31: "Helovīna diena",
9140
+ strip_lights_mood_text32: "Pateicības diena",
9141
+ strip_lights_mood_text33: "Meža diena",
9142
+ strip_lights_mood_text34: "Mātes diena",
9143
+ strip_lights_mood_text35: "Tēva diena",
9144
+ strip_lights_mood_text36: "Futbola diena",
9145
+ strip_lights_mood_text37: "Vasaras idille",
9146
+ strip_lights_mood_text38: "Sapnis par jūru",
9147
+ strip_lights_mood_text39: "Mīlestība un Sapnis",
9148
+ strip_lights_mood_text40: "Pavasara zveja",
9149
+ strip_lights_mood_text41: "Neona pasaule",
9150
+ strip_lights_mood_text42: "Sapņu zeme",
9151
+ strip_lights_mood_text43: "Vasaras vējš",
9152
+ strip_lights_mood_text44: "Planētas ceļojums",
9153
+ devicemusic_classical_text: "Classical music",
9154
+ devicemusic_techno_text: "Techno music",
9155
+ strip_lights_headline_text: "Screen Sync",
9156
+ strip_lights_top_strip_light_text: "Top strip light",
9157
+ strip_lights_bottom_strip_light_text: "Bottom strip light",
9158
+ strip_lights_left_strip_light_text: "Left strip light",
9159
+ strip_lights_right_strip_light_text: "Right strip light",
9160
+ strip_lights_start_sync_text: "Start synchronisation",
9161
+ strip_lights_await_sync_text: "Synchronising",
9162
+ cancel_dialog_exit_sync_title: "Exit synchronisation",
9163
+ cancel_dialog_exit_sync_description: "Are you sure you want to exit synchronising?"
8977
9164
  },
8978
9165
  nb: {
8979
9166
  add_new_dynamic_mood_color_changing_mode_value: "Gradient",
@@ -9501,7 +9688,18 @@ export default {
9501
9688
  strip_lights_mood_text41: "Neon world",
9502
9689
  strip_lights_mood_text42: "Dreamland",
9503
9690
  strip_lights_mood_text43: "Summer wind",
9504
- strip_lights_mood_text44: "Planet journey"
9691
+ strip_lights_mood_text44: "Planet journey",
9692
+ devicemusic_classical_text: "Classical music",
9693
+ devicemusic_techno_text: "Techno music",
9694
+ strip_lights_headline_text: "Screen Sync",
9695
+ strip_lights_top_strip_light_text: "Top strip light",
9696
+ strip_lights_bottom_strip_light_text: "Bottom strip light",
9697
+ strip_lights_left_strip_light_text: "Left strip light",
9698
+ strip_lights_right_strip_light_text: "Right strip light",
9699
+ strip_lights_start_sync_text: "Start synchronisation",
9700
+ strip_lights_await_sync_text: "Synchronising",
9701
+ cancel_dialog_exit_sync_title: "Exit synchronisation",
9702
+ cancel_dialog_exit_sync_description: "Are you sure you want to exit synchronising?"
9505
9703
  },
9506
9704
  nl: {
9507
9705
  add_new_dynamic_mood_color_changing_mode_value: "Verloop",
@@ -10029,7 +10227,18 @@ export default {
10029
10227
  strip_lights_mood_text41: "Neon world",
10030
10228
  strip_lights_mood_text42: "Dreamland",
10031
10229
  strip_lights_mood_text43: "Summer wind",
10032
- strip_lights_mood_text44: "Planet journey"
10230
+ strip_lights_mood_text44: "Planet journey",
10231
+ devicemusic_classical_text: "Classical music",
10232
+ devicemusic_techno_text: "Techno music",
10233
+ strip_lights_headline_text: "Screen Sync",
10234
+ strip_lights_top_strip_light_text: "Top strip light",
10235
+ strip_lights_bottom_strip_light_text: "Bottom strip light",
10236
+ strip_lights_left_strip_light_text: "Left strip light",
10237
+ strip_lights_right_strip_light_text: "Right strip light",
10238
+ strip_lights_start_sync_text: "Start synchronisation",
10239
+ strip_lights_await_sync_text: "Synchronising",
10240
+ cancel_dialog_exit_sync_title: "Exit synchronisation",
10241
+ cancel_dialog_exit_sync_description: "Are you sure you want to exit synchronising?"
10033
10242
  },
10034
10243
  pl: {
10035
10244
  add_new_dynamic_mood_color_changing_mode_value: "Gradient",
@@ -10557,7 +10766,18 @@ export default {
10557
10766
  strip_lights_mood_text41: "Neon world",
10558
10767
  strip_lights_mood_text42: "Dreamland",
10559
10768
  strip_lights_mood_text43: "Summer wind",
10560
- strip_lights_mood_text44: "Planet journey"
10769
+ strip_lights_mood_text44: "Planet journey",
10770
+ devicemusic_classical_text: "Classical music",
10771
+ devicemusic_techno_text: "Techno music",
10772
+ strip_lights_headline_text: "Screen Sync",
10773
+ strip_lights_top_strip_light_text: "Top strip light",
10774
+ strip_lights_bottom_strip_light_text: "Bottom strip light",
10775
+ strip_lights_left_strip_light_text: "Left strip light",
10776
+ strip_lights_right_strip_light_text: "Right strip light",
10777
+ strip_lights_start_sync_text: "Start synchronisation",
10778
+ strip_lights_await_sync_text: "Synchronising",
10779
+ cancel_dialog_exit_sync_title: "Exit synchronisation",
10780
+ cancel_dialog_exit_sync_description: "Are you sure you want to exit synchronising?"
10561
10781
  },
10562
10782
  'pt-BR': {
10563
10783
  add_new_dynamic_mood_color_changing_mode_value: "Gradiente",
@@ -11085,7 +11305,18 @@ export default {
11085
11305
  strip_lights_mood_text41: "Neon world",
11086
11306
  strip_lights_mood_text42: "Dreamland",
11087
11307
  strip_lights_mood_text43: "Summer wind",
11088
- strip_lights_mood_text44: "Planet journey"
11308
+ strip_lights_mood_text44: "Planet journey",
11309
+ devicemusic_classical_text: "Classical music",
11310
+ devicemusic_techno_text: "Techno music",
11311
+ strip_lights_headline_text: "Screen Sync",
11312
+ strip_lights_top_strip_light_text: "Top strip light",
11313
+ strip_lights_bottom_strip_light_text: "Bottom strip light",
11314
+ strip_lights_left_strip_light_text: "Left strip light",
11315
+ strip_lights_right_strip_light_text: "Right strip light",
11316
+ strip_lights_start_sync_text: "Start synchronisation",
11317
+ strip_lights_await_sync_text: "Synchronising",
11318
+ cancel_dialog_exit_sync_title: "Exit synchronisation",
11319
+ cancel_dialog_exit_sync_description: "Are you sure you want to exit synchronising?"
11089
11320
  },
11090
11321
  'pt_BR': {
11091
11322
  add_new_dynamic_mood_color_changing_mode_value: "Gradiente",
@@ -11613,7 +11844,18 @@ export default {
11613
11844
  strip_lights_mood_text41: "Neon world",
11614
11845
  strip_lights_mood_text42: "Dreamland",
11615
11846
  strip_lights_mood_text43: "Summer wind",
11616
- strip_lights_mood_text44: "Planet journey"
11847
+ strip_lights_mood_text44: "Planet journey",
11848
+ devicemusic_classical_text: "Classical music",
11849
+ devicemusic_techno_text: "Techno music",
11850
+ strip_lights_headline_text: "Screen Sync",
11851
+ strip_lights_top_strip_light_text: "Top strip light",
11852
+ strip_lights_bottom_strip_light_text: "Bottom strip light",
11853
+ strip_lights_left_strip_light_text: "Left strip light",
11854
+ strip_lights_right_strip_light_text: "Right strip light",
11855
+ strip_lights_start_sync_text: "Start synchronisation",
11856
+ strip_lights_await_sync_text: "Synchronising",
11857
+ cancel_dialog_exit_sync_title: "Exit synchronisation",
11858
+ cancel_dialog_exit_sync_description: "Are you sure you want to exit synchronising?"
11617
11859
  },
11618
11860
  ro: {
11619
11861
  add_new_dynamic_mood_color_changing_mode_value: "Gradient",
@@ -12141,7 +12383,18 @@ export default {
12141
12383
  strip_lights_mood_text41: "Neon world",
12142
12384
  strip_lights_mood_text42: "Dreamland",
12143
12385
  strip_lights_mood_text43: "Summer wind",
12144
- strip_lights_mood_text44: "Planet journey"
12386
+ strip_lights_mood_text44: "Planet journey",
12387
+ devicemusic_classical_text: "Classical music",
12388
+ devicemusic_techno_text: "Techno music",
12389
+ strip_lights_headline_text: "Screen Sync",
12390
+ strip_lights_top_strip_light_text: "Top strip light",
12391
+ strip_lights_bottom_strip_light_text: "Bottom strip light",
12392
+ strip_lights_left_strip_light_text: "Left strip light",
12393
+ strip_lights_right_strip_light_text: "Right strip light",
12394
+ strip_lights_start_sync_text: "Start synchronisation",
12395
+ strip_lights_await_sync_text: "Synchronising",
12396
+ cancel_dialog_exit_sync_title: "Exit synchronisation",
12397
+ cancel_dialog_exit_sync_description: "Are you sure you want to exit synchronising?"
12145
12398
  },
12146
12399
  ru: {
12147
12400
  add_new_dynamic_mood_color_changing_mode_value: "Градиент",
@@ -12669,7 +12922,18 @@ export default {
12669
12922
  strip_lights_mood_text41: "Neon world",
12670
12923
  strip_lights_mood_text42: "Dreamland",
12671
12924
  strip_lights_mood_text43: "Summer wind",
12672
- strip_lights_mood_text44: "Planet journey"
12925
+ strip_lights_mood_text44: "Planet journey",
12926
+ devicemusic_classical_text: "Classical music",
12927
+ devicemusic_techno_text: "Techno music",
12928
+ strip_lights_headline_text: "Screen Sync",
12929
+ strip_lights_top_strip_light_text: "Top strip light",
12930
+ strip_lights_bottom_strip_light_text: "Bottom strip light",
12931
+ strip_lights_left_strip_light_text: "Left strip light",
12932
+ strip_lights_right_strip_light_text: "Right strip light",
12933
+ strip_lights_start_sync_text: "Start synchronisation",
12934
+ strip_lights_await_sync_text: "Synchronising",
12935
+ cancel_dialog_exit_sync_title: "Exit synchronisation",
12936
+ cancel_dialog_exit_sync_description: "Are you sure you want to exit synchronising?"
12673
12937
  },
12674
12938
  sk: {
12675
12939
  add_new_dynamic_mood_color_changing_mode_value: "Prechod",
@@ -13197,7 +13461,18 @@ export default {
13197
13461
  strip_lights_mood_text41: "Neon world",
13198
13462
  strip_lights_mood_text42: "Dreamland",
13199
13463
  strip_lights_mood_text43: "Summer wind",
13200
- strip_lights_mood_text44: "Planet journey"
13464
+ strip_lights_mood_text44: "Planet journey",
13465
+ devicemusic_classical_text: "Classical music",
13466
+ devicemusic_techno_text: "Techno music",
13467
+ strip_lights_headline_text: "Screen Sync",
13468
+ strip_lights_top_strip_light_text: "Top strip light",
13469
+ strip_lights_bottom_strip_light_text: "Bottom strip light",
13470
+ strip_lights_left_strip_light_text: "Left strip light",
13471
+ strip_lights_right_strip_light_text: "Right strip light",
13472
+ strip_lights_start_sync_text: "Start synchronisation",
13473
+ strip_lights_await_sync_text: "Synchronising",
13474
+ cancel_dialog_exit_sync_title: "Exit synchronisation",
13475
+ cancel_dialog_exit_sync_description: "Are you sure you want to exit synchronising?"
13201
13476
  },
13202
13477
  sv: {
13203
13478
  add_new_dynamic_mood_color_changing_mode_value: "Toning",
@@ -13725,7 +14000,18 @@ export default {
13725
14000
  strip_lights_mood_text41: "Neon world",
13726
14001
  strip_lights_mood_text42: "Dreamland",
13727
14002
  strip_lights_mood_text43: "Summer wind",
13728
- strip_lights_mood_text44: "Planet journey"
14003
+ strip_lights_mood_text44: "Planet journey",
14004
+ devicemusic_classical_text: "Classical music",
14005
+ devicemusic_techno_text: "Techno music",
14006
+ strip_lights_headline_text: "Screen Sync",
14007
+ strip_lights_top_strip_light_text: "Top strip light",
14008
+ strip_lights_bottom_strip_light_text: "Bottom strip light",
14009
+ strip_lights_left_strip_light_text: "Left strip light",
14010
+ strip_lights_right_strip_light_text: "Right strip light",
14011
+ strip_lights_start_sync_text: "Start synchronisation",
14012
+ strip_lights_await_sync_text: "Synchronising",
14013
+ cancel_dialog_exit_sync_title: "Exit synchronisation",
14014
+ cancel_dialog_exit_sync_description: "Are you sure you want to exit synchronising?"
13729
14015
  },
13730
14016
  tr: {
13731
14017
  add_new_dynamic_mood_color_changing_mode_value: "Gradyan",
@@ -14253,7 +14539,18 @@ export default {
14253
14539
  strip_lights_mood_text41: "Neon world",
14254
14540
  strip_lights_mood_text42: "Dreamland",
14255
14541
  strip_lights_mood_text43: "Summer wind",
14256
- strip_lights_mood_text44: "Planet journey"
14542
+ strip_lights_mood_text44: "Planet journey",
14543
+ devicemusic_classical_text: "Classical music",
14544
+ devicemusic_techno_text: "Techno music",
14545
+ strip_lights_headline_text: "Screen Sync",
14546
+ strip_lights_top_strip_light_text: "Top strip light",
14547
+ strip_lights_bottom_strip_light_text: "Bottom strip light",
14548
+ strip_lights_left_strip_light_text: "Left strip light",
14549
+ strip_lights_right_strip_light_text: "Right strip light",
14550
+ strip_lights_start_sync_text: "Start synchronisation",
14551
+ strip_lights_await_sync_text: "Synchronising",
14552
+ cancel_dialog_exit_sync_title: "Exit synchronisation",
14553
+ cancel_dialog_exit_sync_description: "Are you sure you want to exit synchronising?"
14257
14554
  },
14258
14555
  uk: {
14259
14556
  add_new_dynamic_mood_color_changing_mode_value: "Градієнт",
@@ -14781,6 +15078,17 @@ export default {
14781
15078
  strip_lights_mood_text41: "Neon world",
14782
15079
  strip_lights_mood_text42: "Dreamland",
14783
15080
  strip_lights_mood_text43: "Summer wind",
14784
- strip_lights_mood_text44: "Planet journey"
15081
+ strip_lights_mood_text44: "Planet journey",
15082
+ devicemusic_classical_text: "Classical music",
15083
+ devicemusic_techno_text: "Techno music",
15084
+ strip_lights_headline_text: "Screen Sync",
15085
+ strip_lights_top_strip_light_text: "Top strip light",
15086
+ strip_lights_bottom_strip_light_text: "Bottom strip light",
15087
+ strip_lights_left_strip_light_text: "Left strip light",
15088
+ strip_lights_right_strip_light_text: "Right strip light",
15089
+ strip_lights_start_sync_text: "Start synchronisation",
15090
+ strip_lights_await_sync_text: "Synchronising",
15091
+ cancel_dialog_exit_sync_title: "Exit synchronisation",
15092
+ cancel_dialog_exit_sync_description: "Are you sure you want to exit synchronising?"
14785
15093
  }
14786
15094
  }