@ledvance/base 1.2.20 → 1.2.22
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/.temp/uaDevInfo.txt +51 -0
- package/package.json +1 -1
- package/src/components/AdvanceCard.tsx +2 -2
- package/src/components/SocketItem.d.ts +13 -0
- package/src/components/SocketItem.tsx +88 -0
- package/src/components/StripAdjustView.d.ts +16 -0
- package/src/i18n/strings.d.ts +550 -0
- package/src/utils/interface.d.ts +6 -0
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
@ColumnInfo(name = "device_id")
|
|
2
|
+
val deviceId: String,
|
|
3
|
+
@ColumnInfo(name = "device_name")
|
|
4
|
+
val deviceName: String,
|
|
5
|
+
@ColumnInfo(name = "cat_id")
|
|
6
|
+
val catId: String,
|
|
7
|
+
@ColumnInfo(name = "channel_no")
|
|
8
|
+
val channelNo: Int,
|
|
9
|
+
@ColumnInfo(name = "device_category")
|
|
10
|
+
val deviceCategory: String,
|
|
11
|
+
@ColumnInfo(name = "device_image")
|
|
12
|
+
val deviceImage: String,
|
|
13
|
+
@ColumnInfo(name = "tuya_device_id")
|
|
14
|
+
val tuyaDeviceId: String,
|
|
15
|
+
// deviceType 对应 ProductInfo 的 productId
|
|
16
|
+
@ColumnInfo(name = "device_type")
|
|
17
|
+
val deviceType: String,
|
|
18
|
+
@ColumnInfo(name = "offline_time")
|
|
19
|
+
val offlineTime: String,
|
|
20
|
+
@ColumnInfo(name = "rn_package")
|
|
21
|
+
val rnPackage: String?,
|
|
22
|
+
@ColumnInfo(name = "status")
|
|
23
|
+
val status: Int,
|
|
24
|
+
@ColumnInfo(name = "create_time")
|
|
25
|
+
val createTime: String,
|
|
26
|
+
@ColumnInfo(name = "version")
|
|
27
|
+
val version: String,
|
|
28
|
+
@ColumnInfo(name = "user_id")
|
|
29
|
+
val userId: String,
|
|
30
|
+
@ColumnInfo(name = "family_id")
|
|
31
|
+
val familyId: Long,
|
|
32
|
+
@ColumnInfo(name = "room_id")
|
|
33
|
+
val roomId: Long,
|
|
34
|
+
@ColumnInfo(name = "room_name")
|
|
35
|
+
val roomName: String,
|
|
36
|
+
@ColumnInfo(name = "is_shared")
|
|
37
|
+
val isShared: Int,
|
|
38
|
+
@ColumnInfo(name = "local_index")
|
|
39
|
+
val localIndex: String,
|
|
40
|
+
@ColumnInfo(name = "resource_category")
|
|
41
|
+
val resourceCategory: String,
|
|
42
|
+
@ColumnInfo(name = "resource_id")
|
|
43
|
+
val resourceId: String,
|
|
44
|
+
@ColumnInfo(name = "resource_identifier")
|
|
45
|
+
val resourceIdentifier: String,
|
|
46
|
+
@ColumnInfo(name = "resource_type")
|
|
47
|
+
val resourceType: Int,
|
|
48
|
+
@ColumnInfo(name = "index")
|
|
49
|
+
val index: Int = 0,
|
|
50
|
+
@ColumnInfo(name = "switch_state")
|
|
51
|
+
val switchState: Boolean = true
|
package/package.json
CHANGED
|
@@ -57,8 +57,8 @@ const AdvanceCard = (props: AdvanceCardProps) => {
|
|
|
57
57
|
<Text style={styles.title}>{props.data.title}</Text>
|
|
58
58
|
<Spacer height={cx(8)}/>
|
|
59
59
|
{
|
|
60
|
-
(!!props.data.subtitles) && props.data.subtitles.map(subtitle => (
|
|
61
|
-
<Text style={styles.subtitle} key={subtitle}>{subtitle}</Text>
|
|
60
|
+
(!!props.data.subtitles) && props.data.subtitles.map((subtitle, index) => (
|
|
61
|
+
<Text style={styles.subtitle} key={`${subtitle}_${index}`}>{subtitle}</Text>
|
|
62
62
|
))
|
|
63
63
|
}
|
|
64
64
|
</View>
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { PropsWithChildren } from "react";
|
|
2
|
+
import { ViewProps } from "react-native";
|
|
3
|
+
interface SocketItemProps extends PropsWithChildren<ViewProps> {
|
|
4
|
+
title: string;
|
|
5
|
+
name: string;
|
|
6
|
+
icon: any;
|
|
7
|
+
disabledEdit?: boolean;
|
|
8
|
+
onNameChange: (value: string) => void;
|
|
9
|
+
enabled: boolean;
|
|
10
|
+
onSwitchChange: (value: boolean) => void;
|
|
11
|
+
}
|
|
12
|
+
declare function SocketItem(props: SocketItemProps): JSX.Element;
|
|
13
|
+
export default SocketItem;
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
import React, { PropsWithChildren } from "react";
|
|
2
|
+
import { View, Image, StyleSheet, Text, TouchableOpacity, ViewProps } from "react-native";
|
|
3
|
+
import Card from "@ledvance/base/src/components/Card";
|
|
4
|
+
import Spacer from "@ledvance/base/src/components/Spacer";
|
|
5
|
+
import { Dialog, SwitchButton, Utils } from "tuya-panel-kit";
|
|
6
|
+
import I18n from "@ledvance/base/src/i18n";
|
|
7
|
+
|
|
8
|
+
const cx = Utils.RatioUtils.convertX
|
|
9
|
+
|
|
10
|
+
interface SocketItemProps extends PropsWithChildren<ViewProps>{
|
|
11
|
+
title: string
|
|
12
|
+
name: string
|
|
13
|
+
icon: any
|
|
14
|
+
disabledEdit?: boolean
|
|
15
|
+
onNameChange: (value: string) => void
|
|
16
|
+
enabled: boolean
|
|
17
|
+
onSwitchChange: (value: boolean) => void
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
function SocketItem(props: SocketItemProps) {
|
|
21
|
+
return (
|
|
22
|
+
<Card style={{ marginHorizontal: cx(24) }}>
|
|
23
|
+
<View>
|
|
24
|
+
<Spacer />
|
|
25
|
+
<View style={styles.switchLine}>
|
|
26
|
+
<Text style={styles.title}>{props.title}</Text>
|
|
27
|
+
<Spacer height={0} width={cx(12)} />
|
|
28
|
+
<Image style={styles.icon} source={props.icon} />
|
|
29
|
+
<Spacer style={{ flex: 1 }} />
|
|
30
|
+
<SwitchButton
|
|
31
|
+
value={props.enabled}
|
|
32
|
+
onValueChange={props.onSwitchChange} />
|
|
33
|
+
</View>
|
|
34
|
+
<TouchableOpacity
|
|
35
|
+
style={styles.nameLine}
|
|
36
|
+
onPress={() => {
|
|
37
|
+
if(props.disabledEdit) return
|
|
38
|
+
Dialog.prompt({
|
|
39
|
+
title: I18n.getLang('routines_add_edit_name'),
|
|
40
|
+
value: props.name,
|
|
41
|
+
cancelText: I18n.getLang('auto_scan_system_cancel'),
|
|
42
|
+
confirmText: I18n.getLang('auto_scan_system_wifi_confirm'),
|
|
43
|
+
onChangeText: text => {
|
|
44
|
+
return text.length <= 32 ? text : text.slice(0, 32)
|
|
45
|
+
},
|
|
46
|
+
onConfirm: (text, { close }) => {
|
|
47
|
+
props.onNameChange(text)
|
|
48
|
+
close()
|
|
49
|
+
},
|
|
50
|
+
})
|
|
51
|
+
}}>
|
|
52
|
+
<Text style={styles.name}>{props.name}</Text>
|
|
53
|
+
</TouchableOpacity>
|
|
54
|
+
<Spacer height={cx(16)} />
|
|
55
|
+
{props.children}
|
|
56
|
+
</View>
|
|
57
|
+
</Card>
|
|
58
|
+
)
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
const styles = StyleSheet.create({
|
|
62
|
+
switchLine: {
|
|
63
|
+
flexDirection: 'row',
|
|
64
|
+
alignItems: 'center',
|
|
65
|
+
marginHorizontal: cx(16),
|
|
66
|
+
},
|
|
67
|
+
title: {
|
|
68
|
+
fontSize: cx(16),
|
|
69
|
+
color: '#000',
|
|
70
|
+
fontFamily: 'helvetica_neue_lt_std_bd',
|
|
71
|
+
fontWeight: 'bold',
|
|
72
|
+
},
|
|
73
|
+
icon: {
|
|
74
|
+
width: cx(60),
|
|
75
|
+
height: cx(20),
|
|
76
|
+
},
|
|
77
|
+
nameLine: {
|
|
78
|
+
flex: 1,
|
|
79
|
+
marginHorizontal: cx(16),
|
|
80
|
+
},
|
|
81
|
+
name: {
|
|
82
|
+
fontSize: cx(14),
|
|
83
|
+
color: '#000',
|
|
84
|
+
fontFamily: 'helvetica_neue_lt_std_roman',
|
|
85
|
+
},
|
|
86
|
+
})
|
|
87
|
+
|
|
88
|
+
export default SocketItem
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { ColorAdjustViewProps } from "@ledvance/base/src/components/ColorAdjustView";
|
|
2
|
+
import { ColorTempAdjustViewProps } from "@ledvance/base/src/components/ColorTempAdjustView";
|
|
3
|
+
declare type TabsNode = {
|
|
4
|
+
key: number | string;
|
|
5
|
+
title: string;
|
|
6
|
+
};
|
|
7
|
+
interface StripAdjustViewProps extends ColorAdjustViewProps, ColorTempAdjustViewProps {
|
|
8
|
+
lampTabs: TabsNode[];
|
|
9
|
+
activeKey: number | string;
|
|
10
|
+
onActiveKeyChange: (key: number | string) => void;
|
|
11
|
+
colorDiskActiveKey?: number | undefined;
|
|
12
|
+
onColorDiskChange?: (color: string[], idx: number) => void;
|
|
13
|
+
}
|
|
14
|
+
declare const StripAdjustView: (props: StripAdjustViewProps) => JSX.Element;
|
|
15
|
+
export default StripAdjustView;
|
|
16
|
+
export declare const ColorList: string[][];
|
package/src/i18n/strings.d.ts
CHANGED
|
@@ -12099,6 +12099,556 @@ declare const _default: {
|
|
|
12099
12099
|
striplight_actuallength: string;
|
|
12100
12100
|
add_sleepschedule_one_source_subheadline4_text: string;
|
|
12101
12101
|
};
|
|
12102
|
+
pt_BR: {
|
|
12103
|
+
add_new_dynamic_mood_color_changing_mode_value: string;
|
|
12104
|
+
power_off_memory_default_state_title: string;
|
|
12105
|
+
sockets_ce: string;
|
|
12106
|
+
history_overview_empty_information_text: string;
|
|
12107
|
+
history_powerstrip_field1_text: string;
|
|
12108
|
+
history_powerstrip_field1_text2: string;
|
|
12109
|
+
history_contact_sensor_description_text: string;
|
|
12110
|
+
power_off_memory_default_state_description: string;
|
|
12111
|
+
power_off_memory_restore_memory_title: string;
|
|
12112
|
+
power_off_memory_restore_memory_description: string;
|
|
12113
|
+
power_off_memory_customized_description: string;
|
|
12114
|
+
feature_summary_action_txt_1: string;
|
|
12115
|
+
sockets_specific_settings_relay_status: string;
|
|
12116
|
+
light_sources_specific_settings_power_off: string;
|
|
12117
|
+
add_new_dynamic_mood_color_changing_mode_value2: string;
|
|
12118
|
+
add_new_dynamic_mood_lights_field_headline2_text: string;
|
|
12119
|
+
add_new_dynamic_mood_lights_field_saturation_text: string;
|
|
12120
|
+
add_new_static_mood_headline_text: string;
|
|
12121
|
+
add_new_static_mood_lights_field_brightness_text: string;
|
|
12122
|
+
add_new_static_mood_lights_field_saturation_text: string;
|
|
12123
|
+
add_new_static_mood_lights_field_text: string;
|
|
12124
|
+
add_new_static_mood_lights_schedule_switch_tab_color_text: string;
|
|
12125
|
+
add_new_static_mood_lights_schedule_switch_tab_white_text: string;
|
|
12126
|
+
add_new_static_mood_system_back: string;
|
|
12127
|
+
add_new_trigger_time_field_brightness_text: string;
|
|
12128
|
+
add_new_trigger_time_field_headline_text3: string;
|
|
12129
|
+
add_new_trigger_time_field_text: string;
|
|
12130
|
+
add_new_trigger_time_inputfield_value_text: string;
|
|
12131
|
+
add_new_trigger_time_subheadline_text: string;
|
|
12132
|
+
add_new_trigger_time_system_back_text: string;
|
|
12133
|
+
add_randomtimecycle_timestart_topic: string;
|
|
12134
|
+
add_randomtimecycle_timeend_topic: string;
|
|
12135
|
+
add_sleepschedule_one_source_switch_tab_color_text: string;
|
|
12136
|
+
add_sleepschedule_one_source_switch_tab_white_text: string;
|
|
12137
|
+
add_sleepschedule_one_source_system_back_text: string;
|
|
12138
|
+
add_sleepschedule_two_source_field_text: string;
|
|
12139
|
+
add_sleepschedule_two_source_field_text3: string;
|
|
12140
|
+
feature_summary_action_txt_10: string;
|
|
12141
|
+
feature_summary_action_txt_11: string;
|
|
12142
|
+
auto_scan_button_Device_a: string;
|
|
12143
|
+
auto_scan_system_cancel: string;
|
|
12144
|
+
auto_scan_system_wifi_confirm: string;
|
|
12145
|
+
bio_ryhthm_default_button_reset_text: string;
|
|
12146
|
+
bio_ryhthm_default_field_field_brightness_text: string;
|
|
12147
|
+
bio_ryhthm_default_field_text2: string;
|
|
12148
|
+
bio_ryhthm_default_field_text3: string;
|
|
12149
|
+
bio_ryhthm_default_field_text4: string;
|
|
12150
|
+
bio_ryhthm_default_field_text5: string;
|
|
12151
|
+
bio_ryhthm_default_selectionfield_topic_text: string;
|
|
12152
|
+
bio_ryhthm_default_weekday1_text: string;
|
|
12153
|
+
bio_ryhthm_default_weekday2_text: string;
|
|
12154
|
+
bio_ryhthm_default_weekday3_text: string;
|
|
12155
|
+
bio_ryhthm_default_weekday4_text: string;
|
|
12156
|
+
bio_ryhthm_default_weekday5_text: string;
|
|
12157
|
+
bio_ryhthm_default_weekday6_text: string;
|
|
12158
|
+
bio_ryhthm_default_weekday7_text: string;
|
|
12159
|
+
camera_tile_dim_lighting_headline: string;
|
|
12160
|
+
devicemusic_headline_text: string;
|
|
12161
|
+
edit_device_textfield_name: string;
|
|
12162
|
+
flashing_fs_toggle_state1: string;
|
|
12163
|
+
flashing_fs_toggle_state2: string;
|
|
12164
|
+
light_sources_tile_dim_lighting_brightness: string;
|
|
12165
|
+
light_sources_tile_main_lighting_headline: string;
|
|
12166
|
+
light_sources_tile_main_lighting_shade: string;
|
|
12167
|
+
light_sources_tile_rgb_lighting_brightness: string;
|
|
12168
|
+
light_sources_tile_rgb_lighting_headline: string;
|
|
12169
|
+
light_sources_tile_rgb_lighting_saturation: string;
|
|
12170
|
+
light_sources_tile_rgb_lighting_shade: string;
|
|
12171
|
+
light_sources_tile_rgb_lighting_tab_color: string;
|
|
12172
|
+
light_sources_tile_rgb_lighting_tab_white: string;
|
|
12173
|
+
light_sources_tile_sec_lighting_headline: string;
|
|
12174
|
+
light_sources_tile_sec_lighting_shade: string;
|
|
12175
|
+
light_sources_tile_tw_lighting_brightness: string;
|
|
12176
|
+
light_sources_tile_tw_lighting_headline: string;
|
|
12177
|
+
mesh_device_detail_lighting_color_mode: string;
|
|
12178
|
+
mesh_device_detail_lighting_goodnight: string;
|
|
12179
|
+
mesh_device_detail_lighting_leisure: string;
|
|
12180
|
+
mesh_device_detail_lighting_read: string;
|
|
12181
|
+
mesh_device_detail_lighting_white_mode: string;
|
|
12182
|
+
mesh_device_detail_lighting_work: string;
|
|
12183
|
+
mesh_device_detail_mode: string;
|
|
12184
|
+
mesh_device_seting_delete: string;
|
|
12185
|
+
mood_overview_add_mood_text: string;
|
|
12186
|
+
mood_overview_add_mood_text2: string;
|
|
12187
|
+
mood_overview_field_chip_2: string;
|
|
12188
|
+
mood_overview_field_chip_text: string;
|
|
12189
|
+
mood_overview_filter_name_text1: string;
|
|
12190
|
+
mood_overview_filter_name_text2: string;
|
|
12191
|
+
mood_overview_headline_text: string;
|
|
12192
|
+
mood_overview_information_text: string;
|
|
12193
|
+
motion_detection_add_time_schedule_headline_text: string;
|
|
12194
|
+
motion_detection_add_time_schedule_selectionfield_text: string;
|
|
12195
|
+
motion_detection_add_time_schedule_system_back_text: string;
|
|
12196
|
+
motion_detection_time_schedule_notifications_field_weekdays_text2: string;
|
|
12197
|
+
timeschedule_add_schedule_text: string;
|
|
12198
|
+
motion_detection_time_schedule_notifications_field_weekdays_text4: string;
|
|
12199
|
+
other_lights_modes_gradient_text: string;
|
|
12200
|
+
other_lights_modes_jump_text: string;
|
|
12201
|
+
solar_bt_pp_field_dm: string;
|
|
12202
|
+
timer_ceiling_fan_headline_text: string;
|
|
12203
|
+
timer_nightplug_headline_text: string;
|
|
12204
|
+
timer_ceiling_fan_lighting_switched_off_text: string;
|
|
12205
|
+
timer_ceiling_fan_lighting_switched_on_text: string;
|
|
12206
|
+
timer_sockets_button_text: string;
|
|
12207
|
+
timeschedule_add_schedule_nightlight_plug_selectionfield_text2: string;
|
|
12208
|
+
timeschedule_add_schedule_subheadline2_text: string;
|
|
12209
|
+
timeschedule_add_schedule_subheadline4_text: string;
|
|
12210
|
+
timeschedule_add_schedule_subheadline_text: string;
|
|
12211
|
+
timeschedule_add_schedule_switch_tab_manual_text: string;
|
|
12212
|
+
timeschedule_add_schedule_switch_tab_mood_text: string;
|
|
12213
|
+
timeschedule_add_schedule_system_back_text: string;
|
|
12214
|
+
timeschedule_add_schedule_text2: string;
|
|
12215
|
+
timeschedule_add_schedule_weekday1_text: string;
|
|
12216
|
+
timeschedule_add_schedule_weekday2_text: string;
|
|
12217
|
+
timeschedule_add_schedule_weekday3_text: string;
|
|
12218
|
+
timeschedule_add_schedule_weekday4_text: string;
|
|
12219
|
+
timeschedule_add_schedule_weekday5_text: string;
|
|
12220
|
+
timeschedule_add_schedule_weekday6_text: string;
|
|
12221
|
+
timeschedule_add_schedule_weekday7_text: string;
|
|
12222
|
+
timeschedule_overview_empty_information_text: string;
|
|
12223
|
+
timeschedule_overview_headline_text: string;
|
|
12224
|
+
timeschedule_overview_description_text: string;
|
|
12225
|
+
timeschedule_overview_empty_button_add_text: string;
|
|
12226
|
+
ceiling_fan_feature_2_light_text_min_off: string;
|
|
12227
|
+
ceiling_fan_feature_2_light_text_min_on: string;
|
|
12228
|
+
add_new_dynamic_mood_color_changing_mode_headline: string;
|
|
12229
|
+
add_new_dynamic_mood_lights_field_speed_topic_text: string;
|
|
12230
|
+
add_new_dynamic_mood_lights_field_headline_text1: string;
|
|
12231
|
+
add_new_dynamic_mood_system_back: string;
|
|
12232
|
+
edit_static_mood_inputfield_topic_text: string;
|
|
12233
|
+
add_new_static_mood_lights_inputfield_text: string;
|
|
12234
|
+
feature_summary_action_txt_2: string;
|
|
12235
|
+
sleepwakeschedule_empty_information_text: string;
|
|
12236
|
+
sleepwakeschedule_field_3_Times_chips2_text: string;
|
|
12237
|
+
sleepwakeschedule_field_3_Times_chips_text: string;
|
|
12238
|
+
sleepwakeschedule_field_speed_text: string;
|
|
12239
|
+
cancel_dialog_delete_item_timeschedule_titel: string;
|
|
12240
|
+
cancel_dialog_delete_item_sleepschedule_titel: string;
|
|
12241
|
+
cancel_dialog_delete_item_wakeupschedule_titel: string;
|
|
12242
|
+
fixedTimeCycle_socket_headline: string;
|
|
12243
|
+
randomtimecycle_sockets_headline_text: string;
|
|
12244
|
+
history_socket_headline_text: string;
|
|
12245
|
+
feature_summary_action_component_5: string;
|
|
12246
|
+
feature_summary_action_component_6: string;
|
|
12247
|
+
feature_summary_action_component_7: string;
|
|
12248
|
+
feature_summary_action_component_8: string;
|
|
12249
|
+
feature_summary_action_component_9: string;
|
|
12250
|
+
sockets_feature_2_socket_text_min_off: string;
|
|
12251
|
+
sockets_feature_2_socket_text_min_on: string;
|
|
12252
|
+
timer_powerstrip_socket1_switched_off_text: string;
|
|
12253
|
+
timer_powerstrip_socket1_switched_on_text: string;
|
|
12254
|
+
set_pw_button_save: string;
|
|
12255
|
+
consumption_data_field2_value_text1: string;
|
|
12256
|
+
consumption_data_field2_value_text2: string;
|
|
12257
|
+
consumption_data_field2_value_text3: string;
|
|
12258
|
+
timer_nightplug_active_timer_subheadline2_text: string;
|
|
12259
|
+
addTimeCycle_settings_sec_text: string;
|
|
12260
|
+
addTimeCycle_settings_sec_text2: string;
|
|
12261
|
+
power_strip_tile_socket_4_headline: string;
|
|
12262
|
+
conflict_dialog_active_item_fixedtimecycle_description: string;
|
|
12263
|
+
conflict_dialog_active_item_randomtimecycle_description: string;
|
|
12264
|
+
timeschedule_add_schedule_Lighting_applyfor_selection2_text: string;
|
|
12265
|
+
timeschedule_add_schedule_Lighting_applyfor_selection_text: string;
|
|
12266
|
+
light_sources_specific_settings_remote_control: string;
|
|
12267
|
+
conflict_dialog_save_item_bio_rhythm_answer_no_text: string;
|
|
12268
|
+
conflict_dialog_save_item_bio_rhythm_answer_yes_text: string;
|
|
12269
|
+
conflict_dialog_save_item_randomtimecycle_answer_no_text: string;
|
|
12270
|
+
conflict_dialog_save_item_randomtimecycle_answer_yes_text: string;
|
|
12271
|
+
conflict_dialog_save_item_randomtimecycle_description: string;
|
|
12272
|
+
conflict_dialog_save_item_randomtimecycle_titel: string;
|
|
12273
|
+
conflict_dialog_save_item_bio_rhythm_description: string;
|
|
12274
|
+
conflict_dialog_save_item_bio_rhythm_titel: string;
|
|
12275
|
+
conflict_dialog_save_item_sleepschedule_answer_no_text: string;
|
|
12276
|
+
conflict_dialog_save_item_sleepschedule_answer_yes_text: string;
|
|
12277
|
+
conflict_dialog_save_item_sleepschedule_description: string;
|
|
12278
|
+
conflict_dialog_save_item_sleepschedule_titel: string;
|
|
12279
|
+
conflict_dialog_save_item_wakeupschedule_answer_no_text: string;
|
|
12280
|
+
conflict_dialog_save_item_wakeupschedule_answer_yes_text: string;
|
|
12281
|
+
conflict_dialog_save_item_wakeupschedule_description: string;
|
|
12282
|
+
conflict_dialog_save_item_wakeupschedule_titel: string;
|
|
12283
|
+
sockets_specific_settings_relay_status_remember: string;
|
|
12284
|
+
motion_detection_with_safe_mode_safetymode_value4_text: string;
|
|
12285
|
+
consumption_data_annual_bar_chart_system_back_text: string;
|
|
12286
|
+
motion_detection_time_schedule_notifications_field_weekdays_text3: string;
|
|
12287
|
+
sleepwakeschedule_empty_filtering_information_text: string;
|
|
12288
|
+
timer_ceiling_fan_selectionfield_no_components_text: string;
|
|
12289
|
+
timer_nightplug_active_timer_field_description_off_text: string;
|
|
12290
|
+
timer_nightplug_active_timer_field_description_on_text: string;
|
|
12291
|
+
conflict_dialog_save_item_fixedtimecycle_answer_no_text: string;
|
|
12292
|
+
conflict_dialog_save_item_fixedtimecycle_answer_yes_text: string;
|
|
12293
|
+
conflict_dialog_save_item_fixedtimecycle_description: string;
|
|
12294
|
+
conflict_dialog_save_item_fixedtimecycle_titel: string;
|
|
12295
|
+
bio_ryhthm_default_field_text: string;
|
|
12296
|
+
timeschedule_add_schedule_no_device_warning_text: string;
|
|
12297
|
+
add_new_dynamic_mood_alert_text: string;
|
|
12298
|
+
add_new_trigger_time_information_text: string;
|
|
12299
|
+
sleepwakeschedule_warning_max_number_both_text: string;
|
|
12300
|
+
sleepwakeschedule_warning_max_number_sleep_text: string;
|
|
12301
|
+
sleepwakeschedule_warning_max_number_wakeup_text: string;
|
|
12302
|
+
fixedTimeCycle_information_text: string;
|
|
12303
|
+
fixedTimeCycle_bttn_text: string;
|
|
12304
|
+
addTimeCycle_warning_text: string;
|
|
12305
|
+
cancel_dialog_delete_item_timeschedule_description: string;
|
|
12306
|
+
cancel_dialog_delete_item_timeschedule_answer_no_text: string;
|
|
12307
|
+
cancel_dialog_delete_item_timeschedule_answer_yes_text: string;
|
|
12308
|
+
cancel_dialog_delete_item_fixedtimecycle_titel: string;
|
|
12309
|
+
cancel_dialog_delete_item_fixedtimecycle_description: string;
|
|
12310
|
+
cancel_dialog_delete_item_fixedtimecycle_answer_yes_text: string;
|
|
12311
|
+
cancel_dialog_delete_item_fixedtimecycle_answer_no_text: string;
|
|
12312
|
+
cancel_dialog_delete_item_randomtimecycle_titel: string;
|
|
12313
|
+
cancel_dialog_delete_item_randomtimecycle_description: string;
|
|
12314
|
+
cancel_dialog_delete_item_sleepschedule_answer_yes_text: string;
|
|
12315
|
+
cancel_dialog_delete_item_sleepschedule_answer_no_text: string;
|
|
12316
|
+
fixedtimecycle_warning_max_number_text: string;
|
|
12317
|
+
randomtimecycle_warning_max_number_text: string;
|
|
12318
|
+
sockets_specific_settings_child_lock: string;
|
|
12319
|
+
sockets_specific_settings_switch_inching: string;
|
|
12320
|
+
switchinching_overview_description_text: string;
|
|
12321
|
+
childlock_overview_description_text: string;
|
|
12322
|
+
conflict_dialog_save_item_timer_titel: string;
|
|
12323
|
+
conflict_dialog_save_item_timer_description: string;
|
|
12324
|
+
conflict_dialog_save_item_timer_answer_no_text: string;
|
|
12325
|
+
conflict_dialog_save_item_timer_answer_yes_text: string;
|
|
12326
|
+
conflict_dialog_save_item_inching_titel: string;
|
|
12327
|
+
conflict_dialog_save_item_inching_description: string;
|
|
12328
|
+
conflict_dialog_save_item_inching_answer_no_text: string;
|
|
12329
|
+
conflict_dialog_save_item_inching_answer_yes_text: string;
|
|
12330
|
+
cancel_dialog_delete_item_sleepschedule_description: string;
|
|
12331
|
+
cancel_dialog_delete_item_wakeupschedule_answer_no_text: string;
|
|
12332
|
+
cancel_dialog_delete_item_wakeupschedule_answer_yes_text: string;
|
|
12333
|
+
cancel_dialog_delete_item_wakeupschedule_description: string;
|
|
12334
|
+
randomtimecycle_empty_bttn_text: string;
|
|
12335
|
+
randomtimecycle_empty_information_text: string;
|
|
12336
|
+
conflict_dialog_save_item_randomtimecycle_tips: string;
|
|
12337
|
+
conflict_dialog_save_item_randomtimecycle_interval_description: string;
|
|
12338
|
+
conflict_dialog_save_item_randomtimecycle_answer_confirm_text: string;
|
|
12339
|
+
light_sources_specific_settings_do_not_disturb_title: string;
|
|
12340
|
+
light_sources_specific_settings_do_not_disturb_introduce: string;
|
|
12341
|
+
devicemusic_ball_game_text: string;
|
|
12342
|
+
devicemusic_game_text: string;
|
|
12343
|
+
devicemusic_romantic_text: string;
|
|
12344
|
+
devicemusic_music_text: string;
|
|
12345
|
+
light_sources_feature_2_text_min_off: string;
|
|
12346
|
+
light_sources_feature_2_text_min_on: string;
|
|
12347
|
+
light_sources_feature_2_switched_off_text: string;
|
|
12348
|
+
light_sources_feature_2_switched_on_text: string;
|
|
12349
|
+
switch_overcharge_headline_text: string;
|
|
12350
|
+
switch_overcharge_headline_description: string;
|
|
12351
|
+
conflict_dialog_save_item_timeschedule_titel: string;
|
|
12352
|
+
conflict_dialog_active_item_timeschedule_description: string;
|
|
12353
|
+
conflict_dialog_save_item_timeschedule_answer_no_text: string;
|
|
12354
|
+
conflict_dialog_save_item_timeschedule_answer_yes_text: string;
|
|
12355
|
+
light_sources_feature_4_text_name: string;
|
|
12356
|
+
bio_ryhthm_non_sun_home_products_description_text: string;
|
|
12357
|
+
bio_ryhthm_default_description_text: string;
|
|
12358
|
+
bio_ryhthm_default_subheadline_text: string;
|
|
12359
|
+
add_new_trigger_time_warning_max_number_text: string;
|
|
12360
|
+
devicemusic_subheadline_text: string;
|
|
12361
|
+
biorhythm_product_link: string;
|
|
12362
|
+
devicemusic_description_text: string;
|
|
12363
|
+
sleepwakeschedule_add_button_text1: string;
|
|
12364
|
+
sleepwakeschedule_add_button_text2: string;
|
|
12365
|
+
add_sleepschedule_one_source_headline_text: string;
|
|
12366
|
+
add_wakeupschedule_one_source_headline_text: string;
|
|
12367
|
+
add_sleepschedule_one_source_settings_text: string;
|
|
12368
|
+
add_sleepschedule_one_source_settings_text2: string;
|
|
12369
|
+
add_wakeupschedule_settings_text: string;
|
|
12370
|
+
add_wakeupschedule_settings_text2: string;
|
|
12371
|
+
add_wakeupschedule_settings_text3: string;
|
|
12372
|
+
add_wakeupschedule_settings_text4: string;
|
|
12373
|
+
add_wakeupschedule_settings_text5: string;
|
|
12374
|
+
feature_summary_frequency_headline: string;
|
|
12375
|
+
feature_summary_time_headline: string;
|
|
12376
|
+
motion_detection_add_time_schedule_actions_text1: string;
|
|
12377
|
+
add_new_static_mood_field_headline_text1: string;
|
|
12378
|
+
add_new_static_mood_field_headline_text2: string;
|
|
12379
|
+
add_new_static_mood_field_headline_text3: string;
|
|
12380
|
+
add_new_static_mood_field_headline_text4: string;
|
|
12381
|
+
add_new_static_mood_description_text: string;
|
|
12382
|
+
add_new_dynamic_mood_description_text: string;
|
|
12383
|
+
add_new_dynamic_mood_headline_text: string;
|
|
12384
|
+
add_new_dynamic_mood_field_headline_text1: string;
|
|
12385
|
+
add_new_dynamic_mood_field_headline_text2: string;
|
|
12386
|
+
add_new_dynamic_mood_field_headline_text3: string;
|
|
12387
|
+
add_new_dynamic_mood_field_headline_text4: string;
|
|
12388
|
+
feature_summary_action_txt_12: string;
|
|
12389
|
+
add_randomtimecycle_subheadline_text: string;
|
|
12390
|
+
feature_summary_action_txt_4: string;
|
|
12391
|
+
feature_summary_action_txt_6: string;
|
|
12392
|
+
edit_fixedtimecycle_bttn_text: string;
|
|
12393
|
+
sockets_headline_power: string;
|
|
12394
|
+
edit_static_mood_button_delete_text: string;
|
|
12395
|
+
edit_static_mood_headline_text: string;
|
|
12396
|
+
mood_overview_warning_max_number_text: string;
|
|
12397
|
+
music_reactivate_dialog_text: string;
|
|
12398
|
+
add_new_trigger_time_text: string;
|
|
12399
|
+
feature_summary_frequency_txt_1: string;
|
|
12400
|
+
feature_summary_frequency_txt_2: string;
|
|
12401
|
+
feature_summary_frequency_txt_3: string;
|
|
12402
|
+
feature_summary_frequency_txt_4: string;
|
|
12403
|
+
add_new_trigger_time_headline_text: string;
|
|
12404
|
+
consumption_data_field4_month10_value_text: string;
|
|
12405
|
+
consumption_data_field4_month11_value_text: string;
|
|
12406
|
+
consumption_data_field4_month12_value_text: string;
|
|
12407
|
+
consumption_data_field4_month1_value_text: string;
|
|
12408
|
+
consumption_data_field4_month2_value_text: string;
|
|
12409
|
+
consumption_data_field4_month3_value_text: string;
|
|
12410
|
+
consumption_data_field4_month4_value_text: string;
|
|
12411
|
+
consumption_data_field4_month5_value_text: string;
|
|
12412
|
+
consumption_data_field4_month6_value_text: string;
|
|
12413
|
+
consumption_data_field4_month7_value_text: string;
|
|
12414
|
+
consumption_data_field4_month8_value_text: string;
|
|
12415
|
+
consumption_data_field4_month9_value_text: string;
|
|
12416
|
+
consumption_data_field1_headline_text: string;
|
|
12417
|
+
consumption_data_field2_headline_text: string;
|
|
12418
|
+
consumption_data_field3_headline_text: string;
|
|
12419
|
+
consumption_data_field3_value_text2: string;
|
|
12420
|
+
consumption_data_field4_headline_text: string;
|
|
12421
|
+
consumption_data_field3_button_text: string;
|
|
12422
|
+
consumption_data_description_text: string;
|
|
12423
|
+
consumption_data_price_per_kwh_currency_headline_text: string;
|
|
12424
|
+
consumption_data_field3_co2_topic_text: string;
|
|
12425
|
+
consumption_data_field3_co2_topic_headline: string;
|
|
12426
|
+
consumption_data_monthly_overview_field1_text2: string;
|
|
12427
|
+
consumption_data_price_per_kwh_headline_text: string;
|
|
12428
|
+
consumption_data_price_per_kwh_description_text: string;
|
|
12429
|
+
consumption_data_monthly_overview_field2_headline_text: string;
|
|
12430
|
+
consumption_data_price_per_kwh_currency_value1: string;
|
|
12431
|
+
consumption_data_price_per_kwh_currency_value2: string;
|
|
12432
|
+
consumption_data_price_per_kwh_currency_value3: string;
|
|
12433
|
+
consumption_data_price_per_kwh_currency_value4: string;
|
|
12434
|
+
add_fixedtimecycle_headline_text: string;
|
|
12435
|
+
edit_fixedtimecycle_headline_text: string;
|
|
12436
|
+
manage_user_unsaved_changes_dialog_headline: string;
|
|
12437
|
+
cancel_dialog_delete_item_bio_rhythm_titel: string;
|
|
12438
|
+
string_light_pp_dialog_sm_add_headline_c: string;
|
|
12439
|
+
strip_light_static_mood_add_step_2_dialog_text: string;
|
|
12440
|
+
strip_light_static_mood_editor_step_2_dialog_text: string;
|
|
12441
|
+
cancel_dialog_leave_unsaved_bio_rhythm_note: string;
|
|
12442
|
+
power_strip_specific_settings_desc_socket_1: string;
|
|
12443
|
+
power_strip_specific_settings_desc_socket_2: string;
|
|
12444
|
+
power_strip_specific_settings_desc_socket_3: string;
|
|
12445
|
+
power_strip_specific_settings_desc_socket_usb: string;
|
|
12446
|
+
consumption_data_field3_co2_inforamtion_decription_text: string;
|
|
12447
|
+
home_screen_home_dialog_yes_con: string;
|
|
12448
|
+
add_new_dynamic_mood_ceiling_fan_field_headline: string;
|
|
12449
|
+
timer_ceiling_fan_switched_off_text: string;
|
|
12450
|
+
timer_ceiling_fan_switched_on_text: string;
|
|
12451
|
+
timeschedule_add_schedule_ceiling_fan_selectionfield_text: string;
|
|
12452
|
+
timeschedule_add_schedule_ceiling_fan_selectionfield_text2: string;
|
|
12453
|
+
ceiling_fan_tile_uvc_fan_speed: string;
|
|
12454
|
+
routines_add_edit_name: string;
|
|
12455
|
+
string_light_pp_dialog_sm_ed_headline_d: string;
|
|
12456
|
+
strip_light_static_mood_edit_dialog_text: string;
|
|
12457
|
+
power_strip_feature_2_socket_1_text_min_on: string;
|
|
12458
|
+
power_strip_feature_2_socket_1_text_min_off: string;
|
|
12459
|
+
power_strip_feature_2_socket_2_text_min_on: string;
|
|
12460
|
+
power_strip_feature_2_socket_2_text_min_off: string;
|
|
12461
|
+
power_strip_feature_2_socket_3_text_min_on: string;
|
|
12462
|
+
power_strip_feature_2_socket_3_text_min_off: string;
|
|
12463
|
+
power_strip_feature_2_socket_usb_text_min_off: string;
|
|
12464
|
+
power_strip_feature_2_socket_usb_text_min_on: string;
|
|
12465
|
+
generation_data_description_text: string;
|
|
12466
|
+
add_new_dynamic_mood_ceiling_fan_field_text: string;
|
|
12467
|
+
cancel_dialog_leave_unsaved_titel: string;
|
|
12468
|
+
cancel_dialog_leave_unsaved_randomtimecycle_note: string;
|
|
12469
|
+
cancel_dialog_leave_unsaved_fixedtimecycle_note: string;
|
|
12470
|
+
cancel_dialog_leave_unsaved_sleepschedule_note: string;
|
|
12471
|
+
cancel_dialog_leave_unsaved_timeschedule_note: string;
|
|
12472
|
+
cancel_dialog_leave_unsaved_wakeupschedule_note: string;
|
|
12473
|
+
string_light_pp_field_sm_add_error1: string;
|
|
12474
|
+
feature_activate_dialog_text: string;
|
|
12475
|
+
edit_timeschedule_bttn_text: string;
|
|
12476
|
+
edit_wakeupschedule_bttn_text: string;
|
|
12477
|
+
edit_sleepschedule_bttn_text: string;
|
|
12478
|
+
ceiling_fan_direction_info_option_1_headline: string;
|
|
12479
|
+
ceiling_fan_direction_info_option_2_headline: string;
|
|
12480
|
+
ceiling_fan_direction_info_description_text: string;
|
|
12481
|
+
ceiling_fan_direction_info_headline: string;
|
|
12482
|
+
ceiling_fan_direction_info_option_1_text: string;
|
|
12483
|
+
ceiling_fan_direction_info_option_2_text: string;
|
|
12484
|
+
ceiling_fan_feature_2_fan_text_hour_off: string;
|
|
12485
|
+
ceiling_fan_feature_2_fan_text_hour_on: string;
|
|
12486
|
+
ceiling_fan_feature_2_fan_text_min_off: string;
|
|
12487
|
+
ceiling_fan_feature_2_fan_text_min_on: string;
|
|
12488
|
+
ceiling_fan_mode_info_headline: string;
|
|
12489
|
+
ceiling_fan_mode_info_option_1_headline: string;
|
|
12490
|
+
ceiling_fan_mode_info_option_2_headline: string;
|
|
12491
|
+
ceiling_fan_tile_uvc_fan_direction: string;
|
|
12492
|
+
ceiling_fan_direction_info_button_label: string;
|
|
12493
|
+
ceiling_fan_mode_info_description_text: string;
|
|
12494
|
+
ceiling_fan_mode_info_option_1_text: string;
|
|
12495
|
+
ceiling_fan_mode_info_option_2_text: string;
|
|
12496
|
+
ceiling_fan_tile_uvc_fan_disinfect: string;
|
|
12497
|
+
ceiling_fan_tile_uvc_fan_mode: string;
|
|
12498
|
+
history_contact_sensor_headline_text: string;
|
|
12499
|
+
history_overview_contact_motion_field1_text: string;
|
|
12500
|
+
history_overview_contact_motion_field2_text: string;
|
|
12501
|
+
history_sensors_automation_empty_headline_text: string;
|
|
12502
|
+
motion_detector_battery__state4: string;
|
|
12503
|
+
contact_sensor_tile_headline: string;
|
|
12504
|
+
contact_sensor_tile_status_1: string;
|
|
12505
|
+
contact_sensor_tile_status_2: string;
|
|
12506
|
+
motion_detector_tile_headline: string;
|
|
12507
|
+
motion_detector_tile_status_1: string;
|
|
12508
|
+
motion_detector_tile_status_2: string;
|
|
12509
|
+
solar_bt_pp_battery_headline: string;
|
|
12510
|
+
history_contact_sensor_field2_text: string;
|
|
12511
|
+
history_contact_sensor_field2_text2: string;
|
|
12512
|
+
ceiling_fan_feature_2_light_text_hour_off: string;
|
|
12513
|
+
ceiling_fan_feature_2_light_text_hour_on: string;
|
|
12514
|
+
ceiling_fan_tile_uvc_fan_direction_opt_1: string;
|
|
12515
|
+
ceiling_fan_tile_uvc_fan_direction_opt_2: string;
|
|
12516
|
+
ceiling_fan_tile_uvc_fan_mode_opt_1: string;
|
|
12517
|
+
ceiling_fan_tile_uvc_fan_mode_opt_2: string;
|
|
12518
|
+
groups_settings_power_on_behavior_secondbox_topic: string;
|
|
12519
|
+
light_settings_default_secondtopic: string;
|
|
12520
|
+
light_settings_default_secondbox_text: string;
|
|
12521
|
+
groups_settings_power_on_behavior_secondbox_status_value1_topic: string;
|
|
12522
|
+
groups_settings_power_on_behavior_secondbox_status_value1_description: string;
|
|
12523
|
+
groups_settings_power_on_behavior_secondbox_status_value3_description: string;
|
|
12524
|
+
groups_settings_power_on_behavior_secondbox_status_value3_topic: string;
|
|
12525
|
+
groups_settings_power_on_behavior_disturbbox_note: string;
|
|
12526
|
+
groups_settings_power_on_behavior_secondbox_status_value2_topic: string;
|
|
12527
|
+
groups_settings_power_on_behavior_secondbox_status_value2_description: string;
|
|
12528
|
+
add_matter_to_fabric_box4_text2: string;
|
|
12529
|
+
matter_gradient_overview_headline_text: string;
|
|
12530
|
+
matter_gradient_light_on_title: string;
|
|
12531
|
+
matter_gradient_light_on_description_text: string;
|
|
12532
|
+
matter_gradient_light_off_title: string;
|
|
12533
|
+
matter_gradient_light_off_description_text: string;
|
|
12534
|
+
edit_timeschedule_headline_text: string;
|
|
12535
|
+
edit_wakeupschedule_headline_text: string;
|
|
12536
|
+
edit_sleepschedule_headline_text: string;
|
|
12537
|
+
edit_trigger_time_headline_text: string;
|
|
12538
|
+
edit_trigger_time_button_delete_text: string;
|
|
12539
|
+
motion_detection_time_schedule_notifications_warning_text: string;
|
|
12540
|
+
bio_ryhthm_reset_description_text: string;
|
|
12541
|
+
timeschedule_add_schedule_devicestate_sec_warning_text: string;
|
|
12542
|
+
device_menu_contact_sensors_secondbox_text1: string;
|
|
12543
|
+
device_menu_contact_sensors_secondbox_text2: string;
|
|
12544
|
+
device_menu_contact_sensors_secondbox_text3: string;
|
|
12545
|
+
device_menu_motion_sensors_secondbox_text1: string;
|
|
12546
|
+
device_menu_motion_sensors_secondbox_text2: string;
|
|
12547
|
+
device_menu_motion_sensors_secondbox_text3: string;
|
|
12548
|
+
contact_sensor_specific_settings: string;
|
|
12549
|
+
add_new_dynamic_mood_strip_lights_field_topic_text: string;
|
|
12550
|
+
add_new_dynamic_mood_strip_lights_switch_tab_text1: string;
|
|
12551
|
+
add_new_dynamic_mood_strip_lights_switch_tab_text2: string;
|
|
12552
|
+
add_new_dynamic_mood_strip_lights_selectionfield2_topic_text: string;
|
|
12553
|
+
add_new_dynamic_mood_strip_lights_selectionfield_value_text: string;
|
|
12554
|
+
add_new_dynamic_mood_strip_lights_selectionfield2_value_text: string;
|
|
12555
|
+
group_feature_music_secondsection_note: string;
|
|
12556
|
+
devicemusic_switch_tab_device: string;
|
|
12557
|
+
devicemusic_switch_tab_smartphone: string;
|
|
12558
|
+
devicemusic_switch_tab_device_sensitivity: string;
|
|
12559
|
+
strip_lights_modes_meteor_text: string;
|
|
12560
|
+
strip_lights_modes_pileup_text: string;
|
|
12561
|
+
strip_lights_modes_rainbow_text: string;
|
|
12562
|
+
strip_lights_modes_rebound_text: string;
|
|
12563
|
+
strip_lights_modes_shuttle_text: string;
|
|
12564
|
+
strip_lights_modes_switch_text: string;
|
|
12565
|
+
strip_lights_modes_random_text: string;
|
|
12566
|
+
strip_lights_modes_breath_text: string;
|
|
12567
|
+
strip_lights_modes_flash_text: string;
|
|
12568
|
+
strip_lights_modes_flashing_text: string;
|
|
12569
|
+
strip_lights_modes_flow_text: string;
|
|
12570
|
+
strip_lights_modes_flutter_text: string;
|
|
12571
|
+
strip_lights_modes_follow_text: string;
|
|
12572
|
+
strip_lights_modes_fall_text: string;
|
|
12573
|
+
string_lights_modes_blink_text: string;
|
|
12574
|
+
string_lights_modes_chase_text: string;
|
|
12575
|
+
string_lights_modes_dazzle_text: string;
|
|
12576
|
+
devicemusic_devicemic_description_text: string;
|
|
12577
|
+
strip_lights_modes_magic_rebound_text: string;
|
|
12578
|
+
strip_lights_modes_magic_meteor: string;
|
|
12579
|
+
string_lights_set_bulbs_title: string;
|
|
12580
|
+
add_new_dynamic_mood_strip_lights_switch_tab_text3: string;
|
|
12581
|
+
add_new_dynamic_mood_strip_lights_switch_tab_text4: string;
|
|
12582
|
+
add_new_dynamic_mood_strip_lights_switch_tab_text5: string;
|
|
12583
|
+
add_new_dynamic_mood_strip_lights_switch_tab_text6: string;
|
|
12584
|
+
add_new_dynamic_mood_strip_lights_schedule_switch_tab_combination_text: string;
|
|
12585
|
+
string_lights_set_bulbs_description_text: string;
|
|
12586
|
+
strip_lights_mood_text1: string;
|
|
12587
|
+
strip_lights_mood_text2: string;
|
|
12588
|
+
strip_lights_mood_text3: string;
|
|
12589
|
+
strip_lights_mood_text4: string;
|
|
12590
|
+
strip_lights_mood_text5: string;
|
|
12591
|
+
strip_lights_mood_text6: string;
|
|
12592
|
+
strip_lights_mood_text7: string;
|
|
12593
|
+
strip_lights_mood_text8: string;
|
|
12594
|
+
strip_lights_mood_text9: string;
|
|
12595
|
+
strip_lights_mood_text10: string;
|
|
12596
|
+
strip_lights_mood_text11: string;
|
|
12597
|
+
strip_lights_mood_text12: string;
|
|
12598
|
+
strip_lights_mood_text13: string;
|
|
12599
|
+
strip_lights_mood_text14: string;
|
|
12600
|
+
strip_lights_mood_text15: string;
|
|
12601
|
+
strip_lights_mood_text16: string;
|
|
12602
|
+
strip_lights_mood_text17: string;
|
|
12603
|
+
strip_lights_mood_text18: string;
|
|
12604
|
+
strip_lights_mood_text19: string;
|
|
12605
|
+
strip_lights_mood_text20: string;
|
|
12606
|
+
strip_lights_mood_text21: string;
|
|
12607
|
+
strip_lights_mood_text22: string;
|
|
12608
|
+
strip_lights_mood_text23: string;
|
|
12609
|
+
strip_lights_mood_text24: string;
|
|
12610
|
+
strip_lights_mood_text25: string;
|
|
12611
|
+
strip_lights_mood_text26: string;
|
|
12612
|
+
strip_lights_mood_text27: string;
|
|
12613
|
+
strip_lights_mood_text28: string;
|
|
12614
|
+
strip_lights_mood_text29: string;
|
|
12615
|
+
strip_lights_mood_text30: string;
|
|
12616
|
+
strip_lights_mood_text31: string;
|
|
12617
|
+
strip_lights_mood_text32: string;
|
|
12618
|
+
strip_lights_mood_text33: string;
|
|
12619
|
+
strip_lights_mood_text34: string;
|
|
12620
|
+
strip_lights_mood_text35: string;
|
|
12621
|
+
strip_lights_mood_text36: string;
|
|
12622
|
+
strip_lights_mood_text37: string;
|
|
12623
|
+
strip_lights_mood_text38: string;
|
|
12624
|
+
strip_lights_mood_text39: string;
|
|
12625
|
+
strip_lights_mood_text40: string;
|
|
12626
|
+
strip_lights_mood_text41: string;
|
|
12627
|
+
strip_lights_mood_text42: string;
|
|
12628
|
+
strip_lights_mood_text43: string;
|
|
12629
|
+
strip_lights_mood_text44: string;
|
|
12630
|
+
devicemusic_classical_text: string;
|
|
12631
|
+
devicemusic_techno_text: string;
|
|
12632
|
+
strip_lights_headline_text: string;
|
|
12633
|
+
strip_lights_top_strip_light_text: string;
|
|
12634
|
+
strip_lights_bottom_strip_light_text: string;
|
|
12635
|
+
strip_lights_left_strip_light_text: string;
|
|
12636
|
+
strip_lights_right_strip_light_text: string;
|
|
12637
|
+
strip_lights_start_sync_text: string;
|
|
12638
|
+
strip_lights_await_sync_text: string;
|
|
12639
|
+
cancel_dialog_exit_sync_title: string;
|
|
12640
|
+
cancel_dialog_exit_sync_description: string;
|
|
12641
|
+
socket_settings_firstbox_topic: string;
|
|
12642
|
+
socket_settings_firstbox_status1_description: string;
|
|
12643
|
+
socket_settings_firstbox_status2_description: string;
|
|
12644
|
+
socket_settings_firstbox_status3_description: string;
|
|
12645
|
+
striplight_lengthadaptationtext: string;
|
|
12646
|
+
bt_shs_google_button_cancel_enabling: string;
|
|
12647
|
+
striplight_adaptbutton: string;
|
|
12648
|
+
striplight_lengthtitle: string;
|
|
12649
|
+
striplight_actuallength: string;
|
|
12650
|
+
add_sleepschedule_one_source_subheadline4_text: string;
|
|
12651
|
+
};
|
|
12102
12652
|
ro: {
|
|
12103
12653
|
add_new_dynamic_mood_color_changing_mode_value: string;
|
|
12104
12654
|
power_off_memory_default_state_title: string;
|