@ledvance/base 1.3.58 → 1.3.59
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 +1 -1
- package/src/components/BatteryPercentageView.tsx +1 -1
- package/src/components/HybridSwitchView.tsx +118 -0
- package/src/composeLayout.tsx +6 -4
- package/src/i18n/strings.ts +157 -157
- package/src/models/GlobalParams.ts +5 -7
- package/src/res/Biological_Rhythm.png +0 -0
- package/src/res/Biological_Rhythm_12.png +0 -0
- package/src/res/Biological_Rhythm_new.png +0 -0
- package/src/res/Biological_Rhythm_new_12.png +0 -0
- package/src/res/index.ts +5 -5
- package/src/utils/common.ts +5 -1
package/package.json
CHANGED
|
@@ -67,7 +67,7 @@ const BatteryPercentageView = (props: BatteryProps) => {
|
|
|
67
67
|
theme={{batteryColor: props.theme?.global.secondFontColor || '#000'}}
|
|
68
68
|
/>
|
|
69
69
|
</View>
|
|
70
|
-
<Text style={[styles.content, value
|
|
70
|
+
<Text style={[styles.content, value <= middleValue ? styles.low : null]}>{value}%</Text>
|
|
71
71
|
</Card>
|
|
72
72
|
)
|
|
73
73
|
}
|
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
import React from 'react'
|
|
2
|
+
import { View, Text, TouchableOpacity, StyleSheet, StyleProp, ViewStyle, Platform } from 'react-native'
|
|
3
|
+
import { Utils } from 'tuya-panel-kit'
|
|
4
|
+
import LinearGradient from 'react-native-linear-gradient'
|
|
5
|
+
import Card from '@ledvance/base/src/components/Card'
|
|
6
|
+
import ThemeType from '@ledvance/base/src/config/themeType'
|
|
7
|
+
import Spacer from '@ledvance/base/src/components/Spacer'
|
|
8
|
+
|
|
9
|
+
const { convertX: cx } = Utils.RatioUtils
|
|
10
|
+
const { withTheme } = Utils.ThemeUtils
|
|
11
|
+
|
|
12
|
+
interface HybridSwitchViewProps {
|
|
13
|
+
theme?: ThemeType
|
|
14
|
+
style?: StyleProp<ViewStyle>
|
|
15
|
+
switchChannels: boolean[]
|
|
16
|
+
onSwitchChange?: (index: number, value: boolean) => void
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
const HybridSwitchView = (props: HybridSwitchViewProps) => {
|
|
20
|
+
|
|
21
|
+
const styles = StyleSheet.create({
|
|
22
|
+
root: {
|
|
23
|
+
paddingHorizontal: cx(16),
|
|
24
|
+
},
|
|
25
|
+
switchPanelContainer: {
|
|
26
|
+
flex: 1,
|
|
27
|
+
alignItems: 'center',
|
|
28
|
+
justifyContent: 'center',
|
|
29
|
+
},
|
|
30
|
+
switchPanelCardTitle: {
|
|
31
|
+
color: props.theme?.global.fontColor,
|
|
32
|
+
fontSize: cx(16),
|
|
33
|
+
fontWeight: 'bold',
|
|
34
|
+
fontFamily: 'helvetica_neue_lt_std_bd',
|
|
35
|
+
},
|
|
36
|
+
switchPanel: {
|
|
37
|
+
width: cx(120),
|
|
38
|
+
height: cx(120),
|
|
39
|
+
borderRadius: cx(6),
|
|
40
|
+
justifyContent: 'center',
|
|
41
|
+
alignItems: 'center',
|
|
42
|
+
borderWidth: cx(3),
|
|
43
|
+
borderColor: '#ECECEC',
|
|
44
|
+
overflow: 'hidden',
|
|
45
|
+
backgroundColor: '#F3F1F1',
|
|
46
|
+
},
|
|
47
|
+
container: {
|
|
48
|
+
width: cx(90),
|
|
49
|
+
height: cx(90),
|
|
50
|
+
flexDirection: 'row',
|
|
51
|
+
borderRadius: cx(6),
|
|
52
|
+
borderWidth: 1,
|
|
53
|
+
borderColor: '#B8B7B7',
|
|
54
|
+
overflow: 'hidden'
|
|
55
|
+
},
|
|
56
|
+
touchContainer: {
|
|
57
|
+
flex: 1,
|
|
58
|
+
borderRightWidth: 1,
|
|
59
|
+
borderColor: '#9E9E9E',
|
|
60
|
+
},
|
|
61
|
+
innerPanel: {
|
|
62
|
+
flex: 1,
|
|
63
|
+
backgroundColor: '#F8F8F8',
|
|
64
|
+
justifyContent: 'flex-end',
|
|
65
|
+
alignItems: 'center',
|
|
66
|
+
},
|
|
67
|
+
insertColor: {
|
|
68
|
+
width: '100%',
|
|
69
|
+
height: cx(10),
|
|
70
|
+
backgroundColor: '#FF6A00',
|
|
71
|
+
},
|
|
72
|
+
indicator: {
|
|
73
|
+
width: cx(20),
|
|
74
|
+
height: cx(2),
|
|
75
|
+
borderRadius: cx(1),
|
|
76
|
+
backgroundColor: '#F60',
|
|
77
|
+
marginBottom: cx(15),
|
|
78
|
+
},
|
|
79
|
+
})
|
|
80
|
+
|
|
81
|
+
return (
|
|
82
|
+
<Card style={[styles.root, props.style]}>
|
|
83
|
+
<Spacer width={cx(16)} />
|
|
84
|
+
<Text style={styles.switchPanelCardTitle}>Hybrid Switch</Text>
|
|
85
|
+
<Spacer />
|
|
86
|
+
<View style={styles.switchPanelContainer}>
|
|
87
|
+
<LinearGradient
|
|
88
|
+
colors={['#FFFFFF', '#F3F1F1']}
|
|
89
|
+
style={styles.switchPanel}
|
|
90
|
+
>
|
|
91
|
+
<View style={styles.container}>
|
|
92
|
+
{props.switchChannels.map((channel, index) => (
|
|
93
|
+
<TouchableOpacity
|
|
94
|
+
key={index}
|
|
95
|
+
activeOpacity={Platform.OS === 'ios' ? 0.5 : 0.9}
|
|
96
|
+
onPress={() => {
|
|
97
|
+
props.onSwitchChange?.(index, !channel)
|
|
98
|
+
}}
|
|
99
|
+
style={[styles.touchContainer, { borderRightWidth: index === props.switchChannels.length - 1 ? 0 : 1 }]}
|
|
100
|
+
>
|
|
101
|
+
<View style={styles.innerPanel}>
|
|
102
|
+
<View style={[styles.indicator, { backgroundColor: channel ? '#F60' : '#585858' }]} />
|
|
103
|
+
<LinearGradient
|
|
104
|
+
colors={['#DDDDDD', '#EBEBEB']}
|
|
105
|
+
style={styles.insertColor}
|
|
106
|
+
/>
|
|
107
|
+
</View>
|
|
108
|
+
</TouchableOpacity>
|
|
109
|
+
))}
|
|
110
|
+
</View>
|
|
111
|
+
</LinearGradient>
|
|
112
|
+
<Spacer height={cx(30)}/>
|
|
113
|
+
</View>
|
|
114
|
+
</Card>
|
|
115
|
+
)
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
export default withTheme(HybridSwitchView)
|
package/src/composeLayout.tsx
CHANGED
|
@@ -15,7 +15,7 @@ import {
|
|
|
15
15
|
setTimeZone,
|
|
16
16
|
UAGroupInfo,
|
|
17
17
|
} from './models/modules/NativePropsSlice'
|
|
18
|
-
import {
|
|
18
|
+
import { LdvDpSchema, GlobalParams } from './models/GlobalParams'
|
|
19
19
|
import Connect from './components/connect'
|
|
20
20
|
import darkTheme from "./config/dark-theme";
|
|
21
21
|
import lightTheme from "./config/light-theme";
|
|
@@ -204,17 +204,19 @@ const composeLayout = (component: React.ComponentType) => {
|
|
|
204
204
|
|
|
205
205
|
setDpSchemaMap(schema: string): any {
|
|
206
206
|
// 处理物模型协议和dps
|
|
207
|
-
const dpSchemaMap: Record<string,
|
|
207
|
+
const dpSchemaMap: Record<string, LdvDpSchema> = {}
|
|
208
208
|
const dps = {}
|
|
209
209
|
JSON.parse(schema || '[]')
|
|
210
210
|
.forEach((schemaItem: any) => {
|
|
211
|
-
|
|
211
|
+
const dpSchema = {
|
|
212
212
|
name: schemaItem.name,
|
|
213
213
|
dp: schemaItem.id,
|
|
214
214
|
type: schemaItem.type,
|
|
215
215
|
mode: schemaItem.mode,
|
|
216
216
|
property: schemaItem.property,
|
|
217
|
-
}
|
|
217
|
+
};
|
|
218
|
+
dpSchemaMap[schemaItem.code] = dpSchema
|
|
219
|
+
dpSchemaMap[schemaItem.id] = dpSchema
|
|
218
220
|
dps[schemaItem.id] = null
|
|
219
221
|
})
|
|
220
222
|
GlobalParams.dpSchemaMap = dpSchemaMap
|
package/src/i18n/strings.ts
CHANGED
|
@@ -1280,8 +1280,8 @@ export default {
|
|
|
1280
1280
|
"bt_shs_google_button_cancel_enabling": "Zrušit",
|
|
1281
1281
|
"btsolar_groups_inductionsync": "Synchronizace detekce pohybu",
|
|
1282
1282
|
"btsolar_groups_inductionsync_description": "Synchronizovat snímač pohybu všech svítidel tak, že pokud jedna z nich detekuje pohyb, rozsvítí se i ostatní.",
|
|
1283
|
-
"camera_calibration": "
|
|
1284
|
-
"camera_calibration_desc": "
|
|
1283
|
+
"camera_calibration": "Kalibrace kamery",
|
|
1284
|
+
"camera_calibration_desc": "Kalibrace fotoaparátu trvá přibližně 25 sekund. Chceš pokračovat?",
|
|
1285
1285
|
"camera_edit_site_name": "Upravit název místa",
|
|
1286
1286
|
"camera_errmsg_site_point_limit": "Nepodařilo se povolit hlídání míst, protože byly přidány méně než 2 místa.",
|
|
1287
1287
|
"camera_feature_1_headline": "Zvukový alarm",
|
|
@@ -1292,34 +1292,34 @@ export default {
|
|
|
1292
1292
|
"camera_local_recording": "Lokální nahrávání",
|
|
1293
1293
|
"camera_mic_two_way_talking": "Volání.....",
|
|
1294
1294
|
"camera_net_err": "Připojení zařízení je přerušeno, zkontrolujte zařízení a jeho síť",
|
|
1295
|
-
"camera_operation_site_error": "
|
|
1295
|
+
"camera_operation_site_error": "Nelze upravovat v režimu hlídky webu",
|
|
1296
1296
|
"camera_patrol": "Hlídání",
|
|
1297
1297
|
"camera_patrol_cruise_time": "Doba kamerového hlídání:{0} - {1}",
|
|
1298
|
-
"camera_patrol_enable": "
|
|
1299
|
-
"camera_preset_point": "
|
|
1298
|
+
"camera_patrol_enable": "Povolit hlídkování",
|
|
1299
|
+
"camera_preset_point": "Přednastavený bod",
|
|
1300
1300
|
"camera_private_mode_sleep": "Zařízení v režimu spánku",
|
|
1301
1301
|
"camera_private_mode_sleep_close": "Zapnout kameru",
|
|
1302
1302
|
"camera_re_connect_stream": "Opětovné připojení, počkejte prosím",
|
|
1303
|
-
"camera_restart_device_dialog_content": "
|
|
1304
|
-
"camera_select_patrol_mode": "
|
|
1305
|
-
"camera_select_patrol_mode_panoramic": "
|
|
1306
|
-
"camera_select_patrol_mode_panoramic_desc": "
|
|
1303
|
+
"camera_restart_device_dialog_content": "Jste si jisti, že chcete restartovat zařízení?",
|
|
1304
|
+
"camera_select_patrol_mode": "Vyberte režim hlídkování",
|
|
1305
|
+
"camera_select_patrol_mode_panoramic": "Panoramatické hlídkování",
|
|
1306
|
+
"camera_select_patrol_mode_panoramic_desc": "Kamera bude hlídat každý úhel",
|
|
1307
1307
|
"camera_select_patrol_mode_site": "Hlídání místa",
|
|
1308
1308
|
"camera_select_patrol_mode_site_desc": "Kamera bude hlídat všechna místa a zůstane na každém místě po dobu 10s",
|
|
1309
|
-
"camera_set_patrol_time": "
|
|
1310
|
-
"camera_set_patrol_time_all_day": "
|
|
1311
|
-
"camera_set_patrol_time_all_day_desc": "
|
|
1312
|
-
"camera_set_patrol_time_timed": "
|
|
1313
|
-
"camera_set_patrol_time_timed_desc": "
|
|
1314
|
-
"camera_settings_anti_dismantle_topic": "
|
|
1309
|
+
"camera_set_patrol_time": "Zvolte čas hlídkování",
|
|
1310
|
+
"camera_set_patrol_time_all_day": "Celodenní hlídkování",
|
|
1311
|
+
"camera_set_patrol_time_all_day_desc": "Hlídkování bude pokračovat 24x7 hodin",
|
|
1312
|
+
"camera_set_patrol_time_timed": "Časované hlídky",
|
|
1313
|
+
"camera_set_patrol_time_timed_desc": "Hlídkování vstoupí v platnost podle plánu",
|
|
1314
|
+
"camera_settings_anti_dismantle_topic": "Alarm proti demontáži",
|
|
1315
1315
|
"camera_settings_anti_flicker_50hz": "50 Hz",
|
|
1316
1316
|
"camera_settings_anti_flicker_60hz": "60 Hz",
|
|
1317
|
-
"camera_settings_anti_flicker_topic": "Anti-
|
|
1317
|
+
"camera_settings_anti_flicker_topic": "Anti-blikání",
|
|
1318
1318
|
"camera_settings_button_text": "Formátovat",
|
|
1319
|
-
"camera_settings_device_restart": "
|
|
1319
|
+
"camera_settings_device_restart": "Restartování zařízení",
|
|
1320
1320
|
"camera_settings_format_sd_card_note": "Mějte na paměti, že všechna vaše data budou smazána a nelze je obnovit",
|
|
1321
1321
|
"camera_settings_format_sd_card_topic": "Opravdu chcete SD kartu formátovat?",
|
|
1322
|
-
"camera_settings_humanoid_focus_topic": "
|
|
1322
|
+
"camera_settings_humanoid_focus_topic": "Humanoidní zaměření",
|
|
1323
1323
|
"camera_settings_night_vision_description": "Tato funkce umožňuje zachytit snímky v podmínkách slabého osvětlení nebo za tmy. Tato funkce zlepšuje dohled, bezpečnost a přehled o aktuální situaci v různých aplikacích.",
|
|
1324
1324
|
"camera_settings_night_vision_firstbox_topic1": "Auto",
|
|
1325
1325
|
"camera_settings_night_vision_firstbox_topic1_description": "Aktivuje noční vidění pouze v případě potřeby",
|
|
@@ -1333,13 +1333,13 @@ export default {
|
|
|
1333
1333
|
"camera_settings_night_vision_mode_topic": "Noční režim",
|
|
1334
1334
|
"camera_settings_night_vision_topic": "Noční vidění",
|
|
1335
1335
|
"camera_settings_onvif_ip_topic": "IP",
|
|
1336
|
-
"camera_settings_onvif_ip_type_dynamic": "
|
|
1337
|
-
"camera_settings_onvif_ip_type_static": "
|
|
1338
|
-
"camera_settings_onvif_ip_type_topic": "Onvif
|
|
1339
|
-
"camera_settings_onvif_set_password_tips": "
|
|
1340
|
-
"camera_settings_onvif_switch_topic": "Onvif
|
|
1336
|
+
"camera_settings_onvif_ip_type_dynamic": "Dynamická IP",
|
|
1337
|
+
"camera_settings_onvif_ip_type_static": "Statická IP",
|
|
1338
|
+
"camera_settings_onvif_ip_type_topic": "Režim Onvif",
|
|
1339
|
+
"camera_settings_onvif_set_password_tips": "Heslo zařízení podporuje 8-32 znaků a musí obsahovat velká a malá písmena i číslice.",
|
|
1340
|
+
"camera_settings_onvif_switch_topic": "Přepínač Onvif",
|
|
1341
1341
|
"camera_settings_onvif_topic": "Onvif",
|
|
1342
|
-
"camera_settings_power_management_settings_topic": "
|
|
1342
|
+
"camera_settings_power_management_settings_topic": "Nastavení správy napájení",
|
|
1343
1343
|
"camera_settings_recording_mode_firstbox_topic1": "Aktivace pohybem",
|
|
1344
1344
|
"camera_settings_recording_mode_firstbox_topic1_description": "Záznam probíhá pouze při detekci pohybu",
|
|
1345
1345
|
"camera_settings_recording_mode_firstbox_topic2": "Nepřetržitý",
|
|
@@ -1623,30 +1623,30 @@ export default {
|
|
|
1623
1623
|
"country_scotland": "Skotsko",
|
|
1624
1624
|
"country_selection_textfield_headline_search": "Vyhledávání",
|
|
1625
1625
|
"country_sy": "Sýrie",
|
|
1626
|
-
"curation_calibration_callibrate_btn_text": "
|
|
1627
|
-
"curation_calibration_nextbtn_text": "
|
|
1626
|
+
"curation_calibration_callibrate_btn_text": "Kalibrovat",
|
|
1627
|
+
"curation_calibration_nextbtn_text": "Další krok",
|
|
1628
1628
|
"current_temp_humidity": "Aktuální teplota a vlhkost půdy",
|
|
1629
|
-
"curtain_calibration_failed_text": "
|
|
1630
|
-
"curtain_calibration_progress_text": "
|
|
1631
|
-
"curtain_calibration_success_text": "
|
|
1629
|
+
"curtain_calibration_failed_text": "Kalibrační proces inteligentní opony selhal.",
|
|
1630
|
+
"curtain_calibration_progress_text": "Probíhá kalibrace...",
|
|
1631
|
+
"curtain_calibration_success_text": "Kalibrační proces inteligentní opony byl úspěšný.",
|
|
1632
1632
|
"curtain_calibration_tryagin_text": "Zkusit znovu",
|
|
1633
|
-
"curtain_control_headline_text": "
|
|
1634
|
-
"curtain_control_title": "
|
|
1635
|
-
"curtain_fast_calibration": "
|
|
1636
|
-
"curtain_fast_calibration_step1": "1.
|
|
1637
|
-
"curtain_fast_calibration_step2": "
|
|
1638
|
-
"curtain_fast_toast_text": "
|
|
1639
|
-
"curtain_intelligent_calibration": "
|
|
1640
|
-
"curtain_intelligent_calibration_step1": "
|
|
1641
|
-
"curtain_intelligent_calibration_step2": "1.
|
|
1642
|
-
"curtain_motor_steering": "
|
|
1643
|
-
"curtain_motor_steering1": "
|
|
1644
|
-
"curtain_motor_steering1_description": "
|
|
1645
|
-
"curtain_motor_steering2": "
|
|
1646
|
-
"curtain_motor_steering2_description": "
|
|
1647
|
-
"curtain_motor_steering_tip": "
|
|
1648
|
-
"curtain_summary_action_txt_1": "
|
|
1649
|
-
"curtain_summary_action_txt_2": "
|
|
1633
|
+
"curtain_control_headline_text": "Závěs",
|
|
1634
|
+
"curtain_control_title": "Ovládání závěsů",
|
|
1635
|
+
"curtain_fast_calibration": "Rychlá kalibrace",
|
|
1636
|
+
"curtain_fast_calibration_step1": "1. Zastavte se.\n\n2. Zavřete závěsy úplně.\n\n3. Plně otevřete závěsy a změřte čas s brzdovými hodinkami od úplného zavření k úplnému otevření.\n\n4. Klikněte na „Další krok“ a zadejte zaokrouhlené celé číslo sekund, které jste změřili pomocí stop watch.",
|
|
1637
|
+
"curtain_fast_calibration_step2": "Zadejte prosím čas potřebný závěsem od plně uzavřeného po plně otevřený.",
|
|
1638
|
+
"curtain_fast_toast_text": "Rychlá kalibrace je povolena pouze tehdy, když je závěs zcela uzavřen na 0%.",
|
|
1639
|
+
"curtain_intelligent_calibration": "Inteligentní kalibrace",
|
|
1640
|
+
"curtain_intelligent_calibration_step1": "Vezměte prosím na vědomí, že pro inteligentní kalibraci potřebujete nástěnný spínač pro úplné otevření/zavření závěsu. Pokud nepoužíváte nástěnný spínač, použijte režim rychlé kalibrace.\n\n1. Před kalibrací namontujte záclonový motor správně, aby bylo možné závěs úplně otevřít/zavřít.\n\n2. Klikněte na „Další krok“.",
|
|
1641
|
+
"curtain_intelligent_calibration_step2": "1. Stisknutím nástěnného spínače otevřete závěs, dokud nebude zcela otevřený.\n\n2. Stisknutím nástěnného spínače zavřete závěs, dokud není zcela zavřený.\n\n3. Po dokončení kroků v 1 a 2 klikněte na „Kalibrovat“.",
|
|
1642
|
+
"curtain_motor_steering": "Řízení motoru",
|
|
1643
|
+
"curtain_motor_steering1": "Směr vpřed",
|
|
1644
|
+
"curtain_motor_steering1_description": "Závěsný motor běží vpřed",
|
|
1645
|
+
"curtain_motor_steering2": "Směr dozadu",
|
|
1646
|
+
"curtain_motor_steering2_description": "Závěsný motor běží dozadu",
|
|
1647
|
+
"curtain_motor_steering_tip": "Konfigurace směru řízení motoru závěsu",
|
|
1648
|
+
"curtain_summary_action_txt_1": "Otevřeno",
|
|
1649
|
+
"curtain_summary_action_txt_2": "Zavřít",
|
|
1650
1650
|
"daily": "Denně",
|
|
1651
1651
|
"date": "Rande",
|
|
1652
1652
|
"date_type": "Typ data",
|
|
@@ -1789,13 +1789,13 @@ export default {
|
|
|
1789
1789
|
"history_socket_headline_text": "Historie",
|
|
1790
1790
|
"home_screen_home_dialog_yes_con": "Rozumím",
|
|
1791
1791
|
"humidity": "Vlhkost",
|
|
1792
|
-
"hybrid_headline_text": "
|
|
1793
|
-
"hybrid_switchstate_setting1": "
|
|
1794
|
-
"hybrid_switchstate_setting2": "
|
|
1795
|
-
"hybrid_switchstate_setting3": "
|
|
1796
|
-
"hybrid_switchstate_setting3_description": "
|
|
1797
|
-
"hybrid_switchstate_setting_text": "
|
|
1798
|
-
"hybrid_switchstate_title": "
|
|
1792
|
+
"hybrid_headline_text": "Hybridní spínač",
|
|
1793
|
+
"hybrid_switchstate_setting1": "Nastavení 1",
|
|
1794
|
+
"hybrid_switchstate_setting2": "Nastavení 2",
|
|
1795
|
+
"hybrid_switchstate_setting3": "Nastavení 3",
|
|
1796
|
+
"hybrid_switchstate_setting3_description": "Tlačítko přepínání",
|
|
1797
|
+
"hybrid_switchstate_setting_text": "Nastavení stavu spínače",
|
|
1798
|
+
"hybrid_switchstate_title": "Stav přepínače",
|
|
1799
1799
|
"infobutton_totalenergy": "Celková energie zobrazuje pouze údaje o celkové spotřebě/výrobě po posledním resetování.\nData byla zapnuta v následujících dnech:",
|
|
1800
1800
|
"intermittent_time": "Přerušovaný čas",
|
|
1801
1801
|
"irrigation": "Zavlažování",
|
|
@@ -1939,16 +1939,16 @@ export default {
|
|
|
1939
1939
|
"motion_detection_add_time_schedule_headline_text": "Přidat nový rozvrh",
|
|
1940
1940
|
"motion_detection_add_time_schedule_selectionfield_text": "Název",
|
|
1941
1941
|
"motion_detection_add_time_schedule_system_back_text": "Časový rozvrh",
|
|
1942
|
-
"motion_detection_alarm_interval": "
|
|
1942
|
+
"motion_detection_alarm_interval": "Interval alarmů",
|
|
1943
1943
|
"motion_detection_cloud_camera_settings_text": "Oblast aktivity",
|
|
1944
1944
|
"motion_detection_cloud_camera_settings_text2": "Změnit oblast aktivity",
|
|
1945
1945
|
"motion_detection_description_text": "Možnosti výběru při detekci pohybu.",
|
|
1946
|
-
"motion_detection_detect_baby_crying": "
|
|
1946
|
+
"motion_detection_detect_baby_crying": "Detekce dětského pláče",
|
|
1947
1947
|
"motion_detection_headline_text": "Detekce pohybu",
|
|
1948
1948
|
"motion_detection_no_safe_mode_text": "Spustit osvětlení",
|
|
1949
1949
|
"motion_detection_no_safe_mode_trigger_text": "Spustit notifikace",
|
|
1950
|
-
"motion_detection_pir": "
|
|
1951
|
-
"motion_detection_select_detection_sensitivity_level": "
|
|
1950
|
+
"motion_detection_pir": "Úroveň detekce pohybu",
|
|
1951
|
+
"motion_detection_select_detection_sensitivity_level": "Úroveň citlivosti detekce",
|
|
1952
1952
|
"motion_detection_selectionfield2_topic_text": "Hodnota luxů",
|
|
1953
1953
|
"motion_detection_selectionfield2_value2_text": "300 (soumrak)",
|
|
1954
1954
|
"motion_detection_selectionfield2_value3_text": "50 (večer)",
|
|
@@ -1956,7 +1956,7 @@ export default {
|
|
|
1956
1956
|
"motion_detection_selectionfield2_value5_text": "5 (tma)",
|
|
1957
1957
|
"motion_detection_selectionfield2_value_text": "2 000 (den)",
|
|
1958
1958
|
"motion_detection_selectionfield_topic_text": "Citlivost spouštěče",
|
|
1959
|
-
"motion_detection_sound_detection": "
|
|
1959
|
+
"motion_detection_sound_detection": "Detekce zvuku",
|
|
1960
1960
|
"motion_detection_standby_light_brightness_text": "Jas pohotovostního světla",
|
|
1961
1961
|
"motion_detection_standby_light_text1": "Pohotovostní světlo",
|
|
1962
1962
|
"motion_detection_standby_light_text2": "Vypnutí po určité době",
|
|
@@ -1967,7 +1967,7 @@ export default {
|
|
|
1967
1967
|
"motion_detection_time_schedule_notifications_field_weekdays_text4": "Každý den",
|
|
1968
1968
|
"motion_detection_time_schedule_notifications_warning_text": "Bylo dosaženo maximálního počtu časových rozvrhů.",
|
|
1969
1969
|
"motion_detection_trigger_text": "Spustit osvětlení",
|
|
1970
|
-
"motion_detection_video_recording_duration": "
|
|
1970
|
+
"motion_detection_video_recording_duration": "Doba záznamu videa",
|
|
1971
1971
|
"motion_detection_with_safe_mode_brightness_text": "Jas osvětlení",
|
|
1972
1972
|
"motion_detection_with_safe_mode_safetymode_sensing_text": "Snímací vzdálenost",
|
|
1973
1973
|
"motion_detection_with_safe_mode_safetymode_value4_text": "Uzpůsobeno",
|
|
@@ -1990,11 +1990,11 @@ export default {
|
|
|
1990
1990
|
"plug_energyconsumptionswitch": "Přepněte do režimu spotřeby energie",
|
|
1991
1991
|
"plug_energygenerationswitch": "Přepněte do režimu výroby energie",
|
|
1992
1992
|
"pos_mode_switching_fail_tips": "Nesprávné heslo. Zkontrolujte a zadejte správné heslo.",
|
|
1993
|
-
"power_management_battery_remaining": "
|
|
1994
|
-
"power_management_low_battery_alarm_threshold": "
|
|
1995
|
-
"power_management_power_source": "
|
|
1993
|
+
"power_management_battery_remaining": "Zbývající stav baterie",
|
|
1994
|
+
"power_management_low_battery_alarm_threshold": "Nastavte úroveň, kterou by měla mít baterie, aby se alarm spustil",
|
|
1995
|
+
"power_management_power_source": "Zdroj napájení",
|
|
1996
1996
|
"power_management_power_source_battery": "Baterie",
|
|
1997
|
-
"power_management_power_source_power_cable": "
|
|
1997
|
+
"power_management_power_source_power_cable": "Napájecí kabel",
|
|
1998
1998
|
"power_off_memory_customized_description": "Uživatelem definovaný výběr barvy a hodnoty jasu.",
|
|
1999
1999
|
"power_off_memory_default_state_description": "Vraťte se na výchozí hodnotu barvy a jasu.",
|
|
2000
2000
|
"power_off_memory_default_state_title": "Výchozí stav",
|
|
@@ -2006,10 +2006,10 @@ export default {
|
|
|
2006
2006
|
"power_strip_feature_2_socket_2_text_min_on": "Zapnutí zásuvky 2 za {0} min",
|
|
2007
2007
|
"power_strip_feature_2_socket_3_text_min_off": "Vypnutí zásuvky 3 za {0} min",
|
|
2008
2008
|
"power_strip_feature_2_socket_3_text_min_on": "Zapnutí zásuvky 3 za {0} min",
|
|
2009
|
-
"power_strip_feature_2_socket_4_text_min_off": "
|
|
2010
|
-
"power_strip_feature_2_socket_4_text_min_on": "
|
|
2011
|
-
"power_strip_feature_2_socket_5_text_min_off": "
|
|
2012
|
-
"power_strip_feature_2_socket_5_text_min_on": "
|
|
2009
|
+
"power_strip_feature_2_socket_4_text_min_off": "Zásuvka 4 bude vypnuta za {0} ",
|
|
2010
|
+
"power_strip_feature_2_socket_4_text_min_on": "Zásuvka 4 bude zapnuta za {0}",
|
|
2011
|
+
"power_strip_feature_2_socket_5_text_min_off": "Zásuvka 5 se vypne za {0}",
|
|
2012
|
+
"power_strip_feature_2_socket_5_text_min_on": "Zásuvka 5 se zapne za {0}",
|
|
2013
2013
|
"power_strip_feature_2_socket_usb_text_min_off": "Vypnutí zásuvky USB za {0} min",
|
|
2014
2014
|
"power_strip_feature_2_socket_usb_text_min_on": "Zapnutí zásuvky USB za {0} min",
|
|
2015
2015
|
"power_strip_specific_settings_desc_socket_1": "Zásuvka 1 Popis",
|
|
@@ -2065,16 +2065,16 @@ export default {
|
|
|
2065
2065
|
"smoke_alerteffect": "Zjištěn kouř",
|
|
2066
2066
|
"smoke_alertfree": "Nebyl zjištěn žádný kouř",
|
|
2067
2067
|
"smoke_equipmentselftest": "Autotest zařízení",
|
|
2068
|
-
"socket1_active_timer_field_small_off_text": "
|
|
2069
|
-
"socket1_active_timer_field_small_on_text": "Socket 1
|
|
2070
|
-
"socket2_active_timer_field_small_off_text": "
|
|
2071
|
-
"socket2_active_timer_field_small_on_text": "
|
|
2072
|
-
"socket3_active_timer_field_small_off_text": "
|
|
2073
|
-
"socket3_active_timer_field_small_on_text": "Socket 3
|
|
2074
|
-
"socket4_active_timer_field_small_off_text": "
|
|
2075
|
-
"socket4_active_timer_field_small_on_text": "
|
|
2076
|
-
"socket5_active_timer_field_small_off_text": "
|
|
2077
|
-
"socket5_active_timer_field_small_on_text": "
|
|
2068
|
+
"socket1_active_timer_field_small_off_text": "Zásuvka 1 vypnutá v {0}",
|
|
2069
|
+
"socket1_active_timer_field_small_on_text": "Socket 1 zapnut in {0}",
|
|
2070
|
+
"socket2_active_timer_field_small_off_text": "Zásuvka 2 vypnutá v {0}",
|
|
2071
|
+
"socket2_active_timer_field_small_on_text": "Zásuvka 2 zapnuta v {0}",
|
|
2072
|
+
"socket3_active_timer_field_small_off_text": "Zásuvka 3 vypnutá v {0}",
|
|
2073
|
+
"socket3_active_timer_field_small_on_text": "Socket 3 zapnut in {0}",
|
|
2074
|
+
"socket4_active_timer_field_small_off_text": "Zásuvka 4 vypnutá v {0}",
|
|
2075
|
+
"socket4_active_timer_field_small_on_text": "Zásuvka 4 zapnuta v {0}",
|
|
2076
|
+
"socket5_active_timer_field_small_off_text": "Zásuvka 5 vypnuta v {0}",
|
|
2077
|
+
"socket5_active_timer_field_small_on_text": "Zásuvka 5 zapnuta v {0}",
|
|
2078
2078
|
"socket_settings_firstbox_status1_description": "Zařízení zůstává vypnuté",
|
|
2079
2079
|
"socket_settings_firstbox_status2_description": "Zařízení zůstává zapnuté",
|
|
2080
2080
|
"socket_settings_firstbox_status3_description": "Návrat do předchozího stavu před odpojením napájení",
|
|
@@ -2092,7 +2092,7 @@ export default {
|
|
|
2092
2092
|
"sockets_specific_settings_relay_status_remember": "Zapamatovat si poslední stav",
|
|
2093
2093
|
"sockets_specific_settings_switch_inching": "Automatické vypnutí ",
|
|
2094
2094
|
"socketusb_active_timer_field_small_off_text": "USB vypnuto za {0}",
|
|
2095
|
-
"socketusb_active_timer_field_small_on_text": "USB
|
|
2095
|
+
"socketusb_active_timer_field_small_on_text": "USB zapnuto v {0}",
|
|
2096
2096
|
"software_update_found_failed_update_error_5012": "Zařízení je off-line.",
|
|
2097
2097
|
"solar_bt_pp_battery_headline": "Baterie",
|
|
2098
2098
|
"solar_bt_pp_field_dm": "Dynamická nálada",
|
|
@@ -2184,48 +2184,48 @@ export default {
|
|
|
2184
2184
|
"striplight_adaptbutton": "Přizpůsobit",
|
|
2185
2185
|
"striplight_lengthadaptationtext": "Pokud bylo světlo proužku oříznuto, můžete upravit délku v aplikaci a přizpůsobit ji.",
|
|
2186
2186
|
"striplight_lengthtitle": "Délka světelného pásu",
|
|
2187
|
-
"switch1_active_timer_field_small_off_text": "
|
|
2188
|
-
"switch1_active_timer_field_small_on_text": "
|
|
2189
|
-
"switch2_active_timer_field_small_off_text": "
|
|
2190
|
-
"switch2_active_timer_field_small_on_text": "
|
|
2187
|
+
"switch1_active_timer_field_small_off_text": "Vypněte 1 na {0}",
|
|
2188
|
+
"switch1_active_timer_field_small_on_text": "Zapněte 1 na {0}",
|
|
2189
|
+
"switch2_active_timer_field_small_off_text": "Vypněte 2 v {0}",
|
|
2190
|
+
"switch2_active_timer_field_small_on_text": "Zapněte 2 v {0}",
|
|
2191
2191
|
"switch_4channelfunctions1": "Přepínač 1",
|
|
2192
2192
|
"switch_4channelfunctions2": "Přepínač 2",
|
|
2193
|
-
"switch_4channelfunctions3": "
|
|
2194
|
-
"switch_4channelfunctions4": "
|
|
2195
|
-
"switch_4channels1setting": "
|
|
2196
|
-
"switch_4channels2setting": "
|
|
2197
|
-
"switch_4channels3setting": "
|
|
2198
|
-
"switch_4channels4setting": "
|
|
2199
|
-
"switch_active_timer_field_small_off_text": "
|
|
2200
|
-
"switch_active_timer_field_small_on_text": "
|
|
2201
|
-
"switch_doublepress": "
|
|
2193
|
+
"switch_4channelfunctions3": "Přepínač 3",
|
|
2194
|
+
"switch_4channelfunctions4": "Přepínač 4",
|
|
2195
|
+
"switch_4channels1setting": "Nastavení přepínače 1",
|
|
2196
|
+
"switch_4channels2setting": "Nastavení přepínače 2",
|
|
2197
|
+
"switch_4channels3setting": "Nastavení přepínače 3",
|
|
2198
|
+
"switch_4channels4setting": "Nastavení přepínače 4",
|
|
2199
|
+
"switch_active_timer_field_small_off_text": "Vypnout {0}",
|
|
2200
|
+
"switch_active_timer_field_small_on_text": "Zapnout {0}",
|
|
2201
|
+
"switch_doublepress": "Dvojitý tisk",
|
|
2202
2202
|
"switch_interlock": "Blokování",
|
|
2203
2203
|
"switch_interlock_addbtn_text": "Přidat blokování",
|
|
2204
2204
|
"switch_interlock_addtitle": "Přidat nové blokování",
|
|
2205
2205
|
"switch_interlock_delete_popup_topic": "Opravdu chcete odstranit blokování?",
|
|
2206
2206
|
"switch_interlock_editbtn_text": "Odstranit blokování",
|
|
2207
2207
|
"switch_interlock_edittitle": "Úprava blokování",
|
|
2208
|
-
"switch_interlockingdescription": "
|
|
2209
|
-
"switch_longpress": "
|
|
2208
|
+
"switch_interlockingdescription": "Umožňuje zapnutí pouze jednoho přepínače najednou",
|
|
2209
|
+
"switch_longpress": "Dlouhé stisknutí",
|
|
2210
2210
|
"switch_overcharge_headline_description": "Tato funkce automaticky vypne nabíjení mobilních zařízení, včetně mobilních telefonů a napájecích bank, když jsou plně nabitá, aby se zabránilo přebíjení a prodloužila životnost baterie.",
|
|
2211
2211
|
"switch_overcharge_headline_text": "Ochrana proti přebíjení",
|
|
2212
|
-
"switch_singlepress": "
|
|
2212
|
+
"switch_singlepress": "Jednorázový tisk",
|
|
2213
2213
|
"switchdescription_energy": "Mějte na paměti, že údaje o celkové energii budou vynulovány a nelze je znovu obnovit.",
|
|
2214
2214
|
"switchinching_overview_description_text": "Automatické vypnutí zařízení po určité době.",
|
|
2215
2215
|
"switchmodule_switch1description": "Popis přepínače 1",
|
|
2216
2216
|
"switchmodule_switch1title": "Přepínač 1",
|
|
2217
|
-
"switchmodule_switch2description": "
|
|
2217
|
+
"switchmodule_switch2description": "Popis přepínače 2",
|
|
2218
2218
|
"switchmodule_switch2title": "Přepínač 2",
|
|
2219
2219
|
"switchmodule_switchdescription": "Popis přepínače",
|
|
2220
2220
|
"switchmodule_switchtitle": "Přepnutí",
|
|
2221
|
-
"switchmodule_typesetting": "
|
|
2222
|
-
"switchmodule_typesetting1": "
|
|
2223
|
-
"switchmodule_typesetting2": "
|
|
2221
|
+
"switchmodule_typesetting": "Stav přepínače",
|
|
2222
|
+
"switchmodule_typesetting1": "Otočením změníte stav přepínače",
|
|
2223
|
+
"switchmodule_typesetting2": "Synchronní s aktuálním stavem přepínače",
|
|
2224
2224
|
"switchmodule_typesetting3": "Obnovení do nového stavu",
|
|
2225
|
-
"switchmodule_typesettingdescription": "
|
|
2226
|
-
"switchname_1channel": "
|
|
2227
|
-
"switchname_2channel": "
|
|
2228
|
-
"switchname_4channel": "
|
|
2225
|
+
"switchmodule_typesettingdescription": "Konfigurace nastavení stavu přepínače",
|
|
2226
|
+
"switchname_1channel": "Inteligentní přepínač 1 kanál",
|
|
2227
|
+
"switchname_2channel": "Inteligentní přepínač 2 kanál",
|
|
2228
|
+
"switchname_4channel": "Inteligentní přepínač 4 kanál",
|
|
2229
2229
|
"switchonlyonce": "Přepnutí režimu je povoleno pouze jednou denně.",
|
|
2230
2230
|
"switchtitle_energyconsumption": "Opravdu chcete přejít na spotřebu energie?",
|
|
2231
2231
|
"switchtitle_energygeneration": "Opravdu chcete přejít na výrobu energie?",
|
|
@@ -2290,12 +2290,12 @@ export default {
|
|
|
2290
2290
|
"timer_powerstrip_socket1_switched_off_text": "Zásuvka 1 bude vypnuta přibližně v {0}",
|
|
2291
2291
|
"timer_powerstrip_socket1_switched_on_text": "Zásuvka 1 bude zapnuta přibližně v {0}",
|
|
2292
2292
|
"timer_sockets_button_text": "Začít",
|
|
2293
|
-
"timer_switch1_active_timer_field_description_off_text": "
|
|
2294
|
-
"timer_switch1_active_timer_field_description_on_text": "
|
|
2295
|
-
"timer_switch2_active_timer_field_description_off_text": "
|
|
2296
|
-
"timer_switch2_active_timer_field_description_on_text": "
|
|
2297
|
-
"timer_switch_active_timer_field_description_off_text": "
|
|
2298
|
-
"timer_switch_active_timer_field_description_on_text": "
|
|
2293
|
+
"timer_switch1_active_timer_field_description_off_text": "Spínač 1 se vypne přibližně v čase {0}",
|
|
2294
|
+
"timer_switch1_active_timer_field_description_on_text": "Spínač 1 se zapne přibližně v čase {0}",
|
|
2295
|
+
"timer_switch2_active_timer_field_description_off_text": "Spínač 2 se vypne přibližně v {0}",
|
|
2296
|
+
"timer_switch2_active_timer_field_description_on_text": "Spínač 2 se zapne přibližně v čase {0}",
|
|
2297
|
+
"timer_switch_active_timer_field_description_off_text": "Spínač se vypne přibližně v čase {0}",
|
|
2298
|
+
"timer_switch_active_timer_field_description_on_text": "Spínač se zapne přibližně v čase {0}",
|
|
2299
2299
|
"timeschedule_add_schedule_Lighting_applyfor_selection2_text": "Sekundární osvětlení",
|
|
2300
2300
|
"timeschedule_add_schedule_Lighting_applyfor_selection_text": "Hlavní osvětlení",
|
|
2301
2301
|
"timeschedule_add_schedule_ceiling_fan_selectionfield_text": "Osvětlení",
|
|
@@ -3618,8 +3618,8 @@ export default {
|
|
|
3618
3618
|
"bt_shs_google_button_cancel_enabling": "Отказ",
|
|
3619
3619
|
"btsolar_groups_inductionsync": "Синхронизация за откриване на движение",
|
|
3620
3620
|
"btsolar_groups_inductionsync_description": "За синхронизиране на сензора за движение на всички лампи, така че ако една от тях открие движение, тогава и другите да се включат.",
|
|
3621
|
-
"camera_calibration": "
|
|
3622
|
-
"camera_calibration_desc": "
|
|
3621
|
+
"camera_calibration": "Калибриране на камерата",
|
|
3622
|
+
"camera_calibration_desc": "Калибрирането на камерата отнема около 25 секунди. Искаш ли да продължиш?",
|
|
3623
3623
|
"camera_edit_site_name": "Редактиране на името на обекта",
|
|
3624
3624
|
"camera_errmsg_site_point_limit": "Активирането на патрула на обекта не бе успешно, защото бяха добавени по-малко от 2 обекта.",
|
|
3625
3625
|
"camera_feature_1_headline": "Сирена",
|
|
@@ -3630,7 +3630,7 @@ export default {
|
|
|
3630
3630
|
"camera_local_recording": "Локален запис",
|
|
3631
3631
|
"camera_mic_two_way_talking": "Обаждане...",
|
|
3632
3632
|
"camera_net_err": "Връзката на устройството е прекъсната, моля, проверете устройството и неговата мрежа",
|
|
3633
|
-
"camera_operation_site_error": "
|
|
3633
|
+
"camera_operation_site_error": "Не може да се редактира в режим на патрулиране на сайта",
|
|
3634
3634
|
"camera_patrol": "Патрулиране",
|
|
3635
3635
|
"camera_patrol_cruise_time": "Време на круиза:{0} - {1}",
|
|
3636
3636
|
"camera_patrol_enable": "Активиране на патрулиране",
|
|
@@ -4787,8 +4787,8 @@ export default {
|
|
|
4787
4787
|
"bt_shs_google_button_cancel_enabling": "Annuller",
|
|
4788
4788
|
"btsolar_groups_inductionsync": "Synkronisering af bevægelsesdetektion",
|
|
4789
4789
|
"btsolar_groups_inductionsync_description": "For at synkronisere bevægelsessensoren på alle lygterne, så hvis en af dem registrerer en bevægelse, tændes også de andre.",
|
|
4790
|
-
"camera_calibration": "
|
|
4791
|
-
"camera_calibration_desc": "
|
|
4790
|
+
"camera_calibration": "Kamerakalibrering",
|
|
4791
|
+
"camera_calibration_desc": "Kamerakalibrering tager cirka 25 sekunder. Vil du fortsætte?",
|
|
4792
4792
|
"camera_edit_site_name": "Rediger positionsnavn",
|
|
4793
4793
|
"camera_errmsg_site_point_limit": "Kunne ikke aktivere patruljering – der skal mindst tilføjes 2 positioner.",
|
|
4794
4794
|
"camera_feature_1_headline": "Sirene",
|
|
@@ -4799,7 +4799,7 @@ export default {
|
|
|
4799
4799
|
"camera_local_recording": "Lokal optagelse",
|
|
4800
4800
|
"camera_mic_two_way_talking": "Ringer ...",
|
|
4801
4801
|
"camera_net_err": "Enhedens forbindelse er afbrudt. Tjek venligst enheden og dens netværk",
|
|
4802
|
-
"camera_operation_site_error": "
|
|
4802
|
+
"camera_operation_site_error": "Kan ikke redigeres i webstedspatruljetilstand",
|
|
4803
4803
|
"camera_patrol": "Patruljering",
|
|
4804
4804
|
"camera_patrol_cruise_time": "Patruljetid:{0} - {1}",
|
|
4805
4805
|
"camera_patrol_enable": "Aktivér patruljering",
|
|
@@ -9463,8 +9463,8 @@ export default {
|
|
|
9463
9463
|
"bt_shs_google_button_cancel_enabling": "Loobu",
|
|
9464
9464
|
"btsolar_groups_inductionsync": "Liikumise tuvastamise sünkroonimine",
|
|
9465
9465
|
"btsolar_groups_inductionsync_description": "Sünkroniseerida kõigi lampide liikumisandur nii, et kui üks neist tuvastab liikumise, lülituvad sisse ka teised.",
|
|
9466
|
-
"camera_calibration": "
|
|
9467
|
-
"camera_calibration_desc": "
|
|
9466
|
+
"camera_calibration": "Kaamera kalibreerimine",
|
|
9467
|
+
"camera_calibration_desc": "Kaamera kalibreerimine võtab umbes 25 sekundit. Kas soovite jätkata?",
|
|
9468
9468
|
"camera_edit_site_name": "Muuda saidi nime",
|
|
9469
9469
|
"camera_errmsg_site_point_limit": "Saidi patrulli lubamine ebaõnnestus, kuna lisatud oli vähem kui 2 saiti.",
|
|
9470
9470
|
"camera_feature_1_headline": "Sireen",
|
|
@@ -9475,7 +9475,7 @@ export default {
|
|
|
9475
9475
|
"camera_local_recording": "Kohalik salvestamine",
|
|
9476
9476
|
"camera_mic_two_way_talking": "Helistamine...",
|
|
9477
9477
|
"camera_net_err": "Seadme ühendus on katkenud, palun kontrollige seadet ja selle võrku",
|
|
9478
|
-
"camera_operation_site_error": "
|
|
9478
|
+
"camera_operation_site_error": "Ei saa saidi patrullirežiimis redigeerida",
|
|
9479
9479
|
"camera_patrol": "Patrullimine",
|
|
9480
9480
|
"camera_patrol_cruise_time": "Kruiisi aeg: {0} -{1}",
|
|
9481
9481
|
"camera_patrol_enable": "Luba patrullimine",
|
|
@@ -12970,8 +12970,8 @@ export default {
|
|
|
12970
12970
|
"bt_shs_google_button_cancel_enabling": "Odustani",
|
|
12971
12971
|
"btsolar_groups_inductionsync": "Sinkronizacija detekcije pokreta",
|
|
12972
12972
|
"btsolar_groups_inductionsync_description": "Sinkronizirati senzor pokreta svih svjetiljki tako da ako jedna od njih detektira pokret, uključit će se i ostale.",
|
|
12973
|
-
"camera_calibration": "
|
|
12974
|
-
"camera_calibration_desc": "
|
|
12973
|
+
"camera_calibration": "Kalibracija kamere",
|
|
12974
|
+
"camera_calibration_desc": "Kalibracija kamere traje oko 25 sekundi. Želite li nastaviti?",
|
|
12975
12975
|
"camera_edit_site_name": "Uredi naziv lokacije",
|
|
12976
12976
|
"camera_errmsg_site_point_limit": "Omogućavanje patrole lokacije nije uspjelo jer je dodano manje od 2 lokacije.",
|
|
12977
12977
|
"camera_feature_1_headline": "Sirena",
|
|
@@ -12982,7 +12982,7 @@ export default {
|
|
|
12982
12982
|
"camera_local_recording": "Lokalno snimanje",
|
|
12983
12983
|
"camera_mic_two_way_talking": "Zovem...",
|
|
12984
12984
|
"camera_net_err": "Veza s uređajem je prekinuta, provjerite uređaj i njegovu mrežu",
|
|
12985
|
-
"camera_operation_site_error": "
|
|
12985
|
+
"camera_operation_site_error": "Nije moguće uređivati u načinu patrole na lokaciji",
|
|
12986
12986
|
"camera_patrol": "Patroliranje",
|
|
12987
12987
|
"camera_patrol_cruise_time": "Vrijeme krstarenja: {0} - {1}",
|
|
12988
12988
|
"camera_patrol_enable": "Omogući patroliranje",
|
|
@@ -15661,11 +15661,11 @@ export default {
|
|
|
15661
15661
|
"curtain_control_headline_text": "Tenda",
|
|
15662
15662
|
"curtain_control_title": "Controllo delle tende",
|
|
15663
15663
|
"curtain_fast_calibration": "Calibrazione rapida",
|
|
15664
|
-
"curtain_fast_calibration_step1": "1.
|
|
15665
|
-
"curtain_fast_calibration_step2": "Inserisci il tempo necessario
|
|
15666
|
-
"curtain_fast_toast_text": "La calibrazione rapida
|
|
15664
|
+
"curtain_fast_calibration_step1": "1. Prendi un cronometro.\n\n2. Chiudi completamente le tende.\n\n3. Apri le tende completamente e misura il tempo con il cronometro da quando sono completamente chiuse a quando sono completamente aperte.\n\n4. Clicca su \"Passaggio successivo\" e inserisci il numero, misurato con il cronometro, intero arrotondato dei secondi.",
|
|
15665
|
+
"curtain_fast_calibration_step2": "Inserisci il tempo necessario affinché la tenda passi dalla completa chiusura alla completa apertura.",
|
|
15666
|
+
"curtain_fast_toast_text": "La calibrazione rapida è consentita solo quando la tenda è completamente chiusa allo 0%.",
|
|
15667
15667
|
"curtain_intelligent_calibration": "Calibrazione intelligente",
|
|
15668
|
-
"curtain_intelligent_calibration_step1": "
|
|
15668
|
+
"curtain_intelligent_calibration_step1": "Si prega di notare che per una calibrazione intelligente è necessario un interruttore a parete per aprire/chiudere completamente la tenda. Se non si utilizza un interruttore a parete, utilizzare la modalità di calibrazione rapida.\n\n1. Installare correttamente il motore della tenda prima della calibrazione in modo che la tenda possa essere completamente aperta/chiusa.\n\n2. Fare clic su \"Passaggio successivo\".",
|
|
15669
15669
|
"curtain_intelligent_calibration_step2": "1. Sposta la tenda in modo che sia completamente «aperta».\n\n2. Sposta la tenda fino a «chiuderla» completamente.\n\n3. Una volta completati i passaggi 1 e 2, fai clic su «Calibra».",
|
|
15670
15670
|
"curtain_motor_steering": "Guida del motore",
|
|
15671
15671
|
"curtain_motor_steering1": "Direzione in avanti",
|
|
@@ -16233,7 +16233,7 @@ export default {
|
|
|
16233
16233
|
"switch_interlock_delete_popup_topic": "Vuoi davvero eliminare il blocco?",
|
|
16234
16234
|
"switch_interlock_editbtn_text": "Elimina blocco",
|
|
16235
16235
|
"switch_interlock_edittitle": "Modifica il blocco",
|
|
16236
|
-
"switch_interlockingdescription": "
|
|
16236
|
+
"switch_interlockingdescription": "Consente di accendere un solo interruttore alla volta",
|
|
16237
16237
|
"switch_longpress": "Pressione prolungata",
|
|
16238
16238
|
"switch_overcharge_headline_description": "La funzione disattiva automaticamente la ricarica dei dispositivi mobili, inclusi telefoni cellulari e power bank, quando sono completamente carichi per evitare il sovraccarico e prolungare la durata della batteria.",
|
|
16239
16239
|
"switch_overcharge_headline_text": "Protezione da sovraccarico",
|
|
@@ -17648,8 +17648,8 @@ export default {
|
|
|
17648
17648
|
"btsolar_groups_inductionsync_description": "Sinchronizuoti visų lempų judesio jutiklį, kad vienai iš jų aptikus judesį įsijungtų ir kitos.",
|
|
17649
17649
|
"camera_calibration": "Camera calibration",
|
|
17650
17650
|
"camera_calibration_desc": "Camera calibration takes about 25 seconds. Do you want to continue?",
|
|
17651
|
-
"camera_edit_site_name": "
|
|
17652
|
-
"camera_errmsg_site_point_limit": "
|
|
17651
|
+
"camera_edit_site_name": "Redaguoti patalpos pavadinimą",
|
|
17652
|
+
"camera_errmsg_site_point_limit": "Nepavyko įjungti patalpos patruliavimo, nes pridėta mažiau nei 2 patalpos.",
|
|
17653
17653
|
"camera_feature_1_headline": "Sirena",
|
|
17654
17654
|
"camera_feature_2_headline": "Mikrofonas",
|
|
17655
17655
|
"camera_feature_5_headline": "Įrašai",
|
|
@@ -17658,11 +17658,11 @@ export default {
|
|
|
17658
17658
|
"camera_local_recording": "Vietinis įrašymas",
|
|
17659
17659
|
"camera_mic_two_way_talking": "Skambina......",
|
|
17660
17660
|
"camera_net_err": "Įrenginio ryšys nutrūko, patikrinkite įrenginį ir jo tinklą",
|
|
17661
|
-
"camera_operation_site_error": "
|
|
17661
|
+
"camera_operation_site_error": "Negalima redaguoti patalpos patruliavimo režimu",
|
|
17662
17662
|
"camera_patrol": "Patruliavimas",
|
|
17663
17663
|
"camera_patrol_cruise_time": "Kruizo laikas:{0} - {1}",
|
|
17664
17664
|
"camera_patrol_enable": "Įgalinti patruliavimą",
|
|
17665
|
-
"camera_preset_point": "
|
|
17665
|
+
"camera_preset_point": "Iš anksto nustatytas taškas",
|
|
17666
17666
|
"camera_private_mode_sleep": "Prietaisas veikia miego režimu",
|
|
17667
17667
|
"camera_private_mode_sleep_close": "Įjunkite kamerą",
|
|
17668
17668
|
"camera_re_connect_stream": "Prisijungiama iš naujo, palaukite",
|
|
@@ -17705,7 +17705,7 @@ export default {
|
|
|
17705
17705
|
"camera_settings_onvif_set_password_tips": "Įrenginio slaptažodis palaiko 8–32 simbolius ir turi būti sudarytas iš didžiųjų ir mažųjų raidžių bei skaitmenų.",
|
|
17706
17706
|
"camera_settings_onvif_switch_topic": "Onvif jungiklis",
|
|
17707
17707
|
"camera_settings_onvif_topic": "Onvif",
|
|
17708
|
-
"camera_settings_power_management_settings_topic": "
|
|
17708
|
+
"camera_settings_power_management_settings_topic": "Energijos valdymo nustatymai",
|
|
17709
17709
|
"camera_settings_recording_mode_firstbox_topic1": "Suaktyvinamas aptikus judesį",
|
|
17710
17710
|
"camera_settings_recording_mode_firstbox_topic1_description": "Įrašys tik tada, jei bus aptiktas judesys.",
|
|
17711
17711
|
"camera_settings_recording_mode_firstbox_topic2": "Tęstinis",
|
|
@@ -17722,12 +17722,12 @@ export default {
|
|
|
17722
17722
|
"camera_settings_talk_mode_firstbox_option2_topic": "Dvipusis bendravimas",
|
|
17723
17723
|
"camera_settings_talk_mode_secondtopic": "Kalbai gali turėti įtakos aplinka. Priklausomai nuo situacijos, rekomenduojame arba vienpusį, arba abipusį ryšį.",
|
|
17724
17724
|
"camera_settings_talk_mode_topic": "Pokalbio režimas",
|
|
17725
|
-
"camera_site": "
|
|
17726
|
-
"camera_site_delete_dialog_title": "
|
|
17727
|
-
"camera_site_name": "
|
|
17728
|
-
"camera_site_overview_empty_button_add_text": "
|
|
17729
|
-
"camera_site_overview_empty_information_text": "
|
|
17730
|
-
"camera_site_overview_warning_max_number_text": "
|
|
17725
|
+
"camera_site": "Svetainė",
|
|
17726
|
+
"camera_site_delete_dialog_title": "Ar tikrai norite ištrinti patalpą?",
|
|
17727
|
+
"camera_site_name": "Patalpos pavadinimas",
|
|
17728
|
+
"camera_site_overview_empty_button_add_text": "Pridėti patalpą",
|
|
17729
|
+
"camera_site_overview_empty_information_text": "Jūs dar nepridėjote patalpos",
|
|
17730
|
+
"camera_site_overview_warning_max_number_text": "Pasiektas maksimalus patalpų skaičius",
|
|
17731
17731
|
"camera_status_indicator": "Būsenos indikatorius",
|
|
17732
17732
|
"camera_tile_camera_button_label_photo": "Fotografuoti",
|
|
17733
17733
|
"camera_tile_camera_button_label_video": "Įrašyti vaizdo įrašą",
|
|
@@ -17999,12 +17999,12 @@ export default {
|
|
|
17999
17999
|
"curtain_control_headline_text": "Užuolaidos",
|
|
18000
18000
|
"curtain_control_title": "Užuolaidų valdymas",
|
|
18001
18001
|
"curtain_fast_calibration": "Greitas kalibravimas",
|
|
18002
|
-
"curtain_fast_calibration_step1": "1. Visiškai uždarykite užuolaidas.\n\
|
|
18003
|
-
"curtain_fast_calibration_step2": "Įveskite laiką, kurio reikia užuolaidai
|
|
18004
|
-
"curtain_fast_toast_text": "Greitas kalibravimas
|
|
18002
|
+
"curtain_fast_calibration_step1": "1. Paimkite laikmatį.\n\n2. Visiškai uždarykite užuolaidas.\n\n3. Visiškai atidarykite užuolaidas ir išmatuokite laiką su laikmačiu nuo visiško uždarymo iki visiško atsidarymo.\n\n4. Spustelėkite “Kitas žingsnis” ir įveskite suapvalintą sekundžių skaičių išmatuotą su laikmačiu.",
|
|
18003
|
+
"curtain_fast_calibration_step2": "Įveskite laiką, kurio reikia užuolaidai pilnai atsidaryti",
|
|
18004
|
+
"curtain_fast_toast_text": "Greitas kalibravimas yra leidžiamas tik tuomet, kai užuolaida yra 0% atidarymo lygyje.",
|
|
18005
18005
|
"curtain_intelligent_calibration": "Išmanus kalibravimas",
|
|
18006
|
-
"curtain_intelligent_calibration_step1": "
|
|
18007
|
-
"curtain_intelligent_calibration_step2": "1.
|
|
18006
|
+
"curtain_intelligent_calibration_step1": "Atkreipkite dėmesį, kad norint atlikti išmanųjį kalibravimą, jums reikės sieninio jungiklio, kad užuolaida būtų visiškai atidaryta / uždaryta. Jei nenaudojate sieninio jungiklio, naudokite greitojo kalibravimo režimą. \n\n1. Prieš kalibravimą teisingai sumontuokite užuolaidos variklį, kad užuolaidą būtų galima visiškai atidaryti / uždaryti. \n\n2. Spustelėkite „Kitas žingsnis“.",
|
|
18007
|
+
"curtain_intelligent_calibration_step2": "1. Paspauskite sieninį jungiklį, kad atidarytumėte užuolaidą, kol ji bus visiškai atidaryta.\n\n2. Paspauskite sieninį jungiklį, kad uždarytumėte užuolaidą, kol ji bus visiškai uždaryta.\n\n3. Atlikę 1 ir 2 veiksmus, spustelėkite “Kalibruoti”.",
|
|
18008
18008
|
"curtain_motor_steering": "Variklio valdymas",
|
|
18009
18009
|
"curtain_motor_steering1": "Į priekį",
|
|
18010
18010
|
"curtain_motor_steering1_description": "Užuolaidų variklis sukasi į priekį",
|
|
@@ -18305,7 +18305,7 @@ export default {
|
|
|
18305
18305
|
"motion_detection_add_time_schedule_headline_text": "Pridėti naują grafiką",
|
|
18306
18306
|
"motion_detection_add_time_schedule_selectionfield_text": "Pavadinimas",
|
|
18307
18307
|
"motion_detection_add_time_schedule_system_back_text": "Laiko grafikas",
|
|
18308
|
-
"motion_detection_alarm_interval": "
|
|
18308
|
+
"motion_detection_alarm_interval": "Signalizacijos intervalas",
|
|
18309
18309
|
"motion_detection_cloud_camera_settings_text": "Veiklos sritis",
|
|
18310
18310
|
"motion_detection_cloud_camera_settings_text2": "Keisti veiklos sritį",
|
|
18311
18311
|
"motion_detection_description_text": "Pasirenkami variantai, kai aptinkamas judesys.",
|
|
@@ -19168,12 +19168,12 @@ export default {
|
|
|
19168
19168
|
"curtain_control_headline_text": "Aizkars",
|
|
19169
19169
|
"curtain_control_title": "Aizkaru vadība",
|
|
19170
19170
|
"curtain_fast_calibration": "Ātra kalibrēšana",
|
|
19171
|
-
"curtain_fast_calibration_step1": "1. Pilnībā
|
|
19172
|
-
"curtain_fast_calibration_step2": "Lūdzu, ievadiet laiku, kas nepieciešams
|
|
19173
|
-
"curtain_fast_toast_text": "Ātrā kalibrēšana
|
|
19171
|
+
"curtain_fast_calibration_step1": "1. Veiciet apstāšanās pulksteni.\n\n2. Aizveriet aizkarus pilnībā.\n\n3. Pilnībā atveriet aizkarus un izmēriet laiku ar apstāšanās pulksteni no pilnīgi tuvu līdz pilnībā atvērtam.\n\n4. Noklikšķiniet uz “Nākamais solis” un ievadiet noapaļotu skaitli sekunžu skaitli, kurus izmērījāt ar stop watch.",
|
|
19172
|
+
"curtain_fast_calibration_step2": "Lūdzu, ievadiet laiku, kas nepieciešams aizkaram no pilnīgas aizvēršanas līdz pilnīgai atvēršanai.",
|
|
19173
|
+
"curtain_fast_toast_text": "Ātrā kalibrēšana ir atļauta tikai tad, ja aizkars ir pilnībā aizvērts 0 %.",
|
|
19174
19174
|
"curtain_intelligent_calibration": "Viedā kalibrēšana",
|
|
19175
|
-
"curtain_intelligent_calibration_step1": "
|
|
19176
|
-
"curtain_intelligent_calibration_step2": "1.
|
|
19175
|
+
"curtain_intelligent_calibration_step1": "Lūdzu, ņemiet vērā, ka inteliģentai kalibrēšanai ir nepieciešams sienas slēdzis, lai pilnībā atvērtu / aizvērtu aizkaru. Ja neizmantojat sienas slēdzi, lūdzu, izmantojiet ātrās kalibrēšanas režīmu.\n\n1. Pirms kalibrēšanas pareizi uzstādiet aizkaru motoru, lai aizkaru varētu pilnībā atvērt/aizvērt.\n\n2. Noklikšķiniet uz \"Nākamais solis\".",
|
|
19176
|
+
"curtain_intelligent_calibration_step2": "1. Nospiediet sienas slēdzi, lai atvērtu aizkaru, līdz tas ir pilnībā atvērts.\n\n2. Nospiediet sienas slēdzi, lai aizkaru aizvērtu, līdz tas ir pilnībā aizvērts.\n\n3. Kad 1. un 2. darbība ir pabeigta, noklikšķiniet uz \"Kalibrēt\".",
|
|
19177
19177
|
"curtain_motor_steering": "Motora vadīšana",
|
|
19178
19178
|
"curtain_motor_steering1": "Virziens uz priekšu",
|
|
19179
19179
|
"curtain_motor_steering1_description": "Aizkaru motors darbojas virzienā uz priekšu",
|
|
@@ -23491,8 +23491,8 @@ export default {
|
|
|
23491
23491
|
"bt_shs_google_button_cancel_enabling": "Cancelar",
|
|
23492
23492
|
"btsolar_groups_inductionsync": "Sincronização de detecção de movimento",
|
|
23493
23493
|
"btsolar_groups_inductionsync_description": "Para sincronizar o sensor de movimento de todas as lâmpadas para que, se uma delas detetar um movimento, as outras também se liguem.",
|
|
23494
|
-
"camera_calibration": "
|
|
23495
|
-
"camera_calibration_desc": "
|
|
23494
|
+
"camera_calibration": "Calibração da câmera",
|
|
23495
|
+
"camera_calibration_desc": "A calibração da câmera leva cerca de 25 segundos. Você quer continuar?",
|
|
23496
23496
|
"camera_edit_site_name": "Editar nome do site",
|
|
23497
23497
|
"camera_errmsg_site_point_limit": "Falha ao ativar a patrulha do site porque menos de 2 sites foram adicionados.",
|
|
23498
23498
|
"camera_feature_1_headline": "Sirene",
|
|
@@ -23503,9 +23503,9 @@ export default {
|
|
|
23503
23503
|
"camera_local_recording": "Gravação local",
|
|
23504
23504
|
"camera_mic_two_way_talking": "Ligando.....",
|
|
23505
23505
|
"camera_net_err": "A conexão do dispositivo foi interrompida, verifique o dispositivo e sua rede",
|
|
23506
|
-
"camera_operation_site_error": "
|
|
23506
|
+
"camera_operation_site_error": "Não editável no modo de patrulha do site",
|
|
23507
23507
|
"camera_patrol": "Patrulhamento",
|
|
23508
|
-
"camera_patrol_cruise_time": "
|
|
23508
|
+
"camera_patrol_cruise_time": "Tempo de cruzeiro:{0} - {1}",
|
|
23509
23509
|
"camera_patrol_enable": "Habilitar patrulhamento",
|
|
23510
23510
|
"camera_preset_point": "Ponto predefinido",
|
|
23511
23511
|
"camera_private_mode_sleep": "Dispositivo no modo de dormir",
|
|
@@ -24502,7 +24502,7 @@ export default {
|
|
|
24502
24502
|
"timer_powerstrip_socket1_switched_on_text": "O soquete1 será ligado por volta de {0}",
|
|
24503
24503
|
"timer_sockets_button_text": "Começar",
|
|
24504
24504
|
"timer_switch1_active_timer_field_description_off_text": "O interruptor 1 será desligado aproximadamente em {0}",
|
|
24505
|
-
"timer_switch1_active_timer_field_description_on_text": "
|
|
24505
|
+
"timer_switch1_active_timer_field_description_on_text": "O interruptor 1 será ligado a cerca de {0}",
|
|
24506
24506
|
"timer_switch2_active_timer_field_description_off_text": "O interruptor 2 será desligado aproximadamente em {0}",
|
|
24507
24507
|
"timer_switch2_active_timer_field_description_on_text": "O interruptor 2 será ligado por volta de {0}",
|
|
24508
24508
|
"timer_switch_active_timer_field_description_off_text": "O interruptor será desligado aproximadamente em {0}",
|
|
@@ -31674,8 +31674,8 @@ export default {
|
|
|
31674
31674
|
"bt_shs_google_button_cancel_enabling": "Cancelar",
|
|
31675
31675
|
"btsolar_groups_inductionsync": "Sincronização de detecção de movimento",
|
|
31676
31676
|
"btsolar_groups_inductionsync_description": "Para sincronizar o sensor de movimento de todas as lâmpadas para que, se uma delas detetar um movimento, as outras também se liguem.",
|
|
31677
|
-
"camera_calibration": "
|
|
31678
|
-
"camera_calibration_desc": "
|
|
31677
|
+
"camera_calibration": "Calibração da câmera",
|
|
31678
|
+
"camera_calibration_desc": "A calibração da câmera leva cerca de 25 segundos. Você quer continuar?",
|
|
31679
31679
|
"camera_edit_site_name": "Editar nome do site",
|
|
31680
31680
|
"camera_errmsg_site_point_limit": "Falha ao ativar a patrulha do site porque menos de 2 sites foram adicionados.",
|
|
31681
31681
|
"camera_feature_1_headline": "Sirene",
|
|
@@ -31686,9 +31686,9 @@ export default {
|
|
|
31686
31686
|
"camera_local_recording": "Gravação local",
|
|
31687
31687
|
"camera_mic_two_way_talking": "Ligando.....",
|
|
31688
31688
|
"camera_net_err": "A conexão do dispositivo foi interrompida, verifique o dispositivo e sua rede",
|
|
31689
|
-
"camera_operation_site_error": "
|
|
31689
|
+
"camera_operation_site_error": "Não editável no modo de patrulha do site",
|
|
31690
31690
|
"camera_patrol": "Patrulhamento",
|
|
31691
|
-
"camera_patrol_cruise_time": "
|
|
31691
|
+
"camera_patrol_cruise_time": "Tempo de cruzeiro:{0} - {1}",
|
|
31692
31692
|
"camera_patrol_enable": "Habilitar patrulhamento",
|
|
31693
31693
|
"camera_preset_point": "Ponto predefinido",
|
|
31694
31694
|
"camera_private_mode_sleep": "Dispositivo no modo de dormir",
|
|
@@ -32685,7 +32685,7 @@ export default {
|
|
|
32685
32685
|
"timer_powerstrip_socket1_switched_on_text": "O soquete1 será ligado por volta de {0}",
|
|
32686
32686
|
"timer_sockets_button_text": "Começar",
|
|
32687
32687
|
"timer_switch1_active_timer_field_description_off_text": "O interruptor 1 será desligado aproximadamente em {0}",
|
|
32688
|
-
"timer_switch1_active_timer_field_description_on_text": "
|
|
32688
|
+
"timer_switch1_active_timer_field_description_on_text": "O interruptor 1 será ligado a cerca de {0}",
|
|
32689
32689
|
"timer_switch2_active_timer_field_description_off_text": "O interruptor 2 será desligado aproximadamente em {0}",
|
|
32690
32690
|
"timer_switch2_active_timer_field_description_on_text": "O interruptor 2 será ligado por volta de {0}",
|
|
32691
32691
|
"timer_switch_active_timer_field_description_off_text": "O interruptor será desligado aproximadamente em {0}",
|
|
@@ -1,15 +1,13 @@
|
|
|
1
|
-
|
|
2
|
-
type: string
|
|
3
|
-
}
|
|
1
|
+
import {DpSchema} from "tuya-panel-kit";
|
|
4
2
|
|
|
5
|
-
export interface
|
|
3
|
+
export interface LdvDpSchema {
|
|
6
4
|
name: string
|
|
7
5
|
dp: number
|
|
8
6
|
type: string
|
|
9
7
|
mode: string
|
|
10
|
-
property:
|
|
8
|
+
property: DpSchema
|
|
11
9
|
}
|
|
12
10
|
|
|
13
11
|
export class GlobalParams {
|
|
14
|
-
static dpSchemaMap: Record<string,
|
|
15
|
-
}
|
|
12
|
+
static dpSchemaMap: Record<string, LdvDpSchema> = {}
|
|
13
|
+
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/src/res/index.ts
CHANGED
|
@@ -106,10 +106,10 @@ export default {
|
|
|
106
106
|
like: 'src_res_like',
|
|
107
107
|
cycle: 'src_res_cycle',
|
|
108
108
|
minus: 'src_res_minus',
|
|
109
|
-
ic_warning_amber_sun: '
|
|
110
|
-
ic_warning_amber_sun_12: '
|
|
111
|
-
ic_warning_amber_new: '
|
|
112
|
-
ic_warning_amber_new_12: '
|
|
109
|
+
ic_warning_amber_sun: require('./Biological_Rhythm.png'),
|
|
110
|
+
ic_warning_amber_sun_12: require('./Biological_Rhythm_12.png'),
|
|
111
|
+
ic_warning_amber_new: require('./Biological_Rhythm_new.png'),
|
|
112
|
+
ic_warning_amber_new_12: require('./Biological_Rhythm_new_12.png'),
|
|
113
113
|
biorhythom_add: 'icons_material_outlined_arrows_nav_add',
|
|
114
114
|
biorhythom_select_right_icon: 'icons_material_outlined_arrows_nav_arrow_forward_ios',
|
|
115
115
|
biorhythom_icon1: 'icons_material_outlined_wheather_wb_twilight',
|
|
@@ -157,7 +157,7 @@ export default {
|
|
|
157
157
|
delay_48h: 'delay_48h_unselect',
|
|
158
158
|
delay_72h: 'delay_72h_unselect',
|
|
159
159
|
start: 'button_start',
|
|
160
|
-
stop: '
|
|
160
|
+
stop: 'button_start',
|
|
161
161
|
take_photo: 'icon_take_photo',
|
|
162
162
|
record_video: 'icon_record_video',
|
|
163
163
|
clarity_hd: 'icon_clarity_hd',
|
package/src/utils/common.ts
CHANGED
|
@@ -4,7 +4,7 @@ import { formatNumber, openDownloadFile } from 'api/native'
|
|
|
4
4
|
import dayjs from 'dayjs'
|
|
5
5
|
import RNFetchBlob from 'rn-fetch-blob'
|
|
6
6
|
import { cloneDeep, isEqual } from 'lodash'
|
|
7
|
-
import {Dialog, DialogElse, Utils} from 'tuya-panel-kit'
|
|
7
|
+
import {Dialog, DialogElse, DpSchema, Utils} from 'tuya-panel-kit'
|
|
8
8
|
import {GlobalParams} from "../models/GlobalParams";
|
|
9
9
|
|
|
10
10
|
const { toFixedString } = Utils.NumberUtils
|
|
@@ -315,6 +315,10 @@ export function getGlobalParamsDp(key: string) {
|
|
|
315
315
|
return GlobalParams.dpSchemaMap[key] && GlobalParams.dpSchemaMap[key].dp.toString()
|
|
316
316
|
}
|
|
317
317
|
|
|
318
|
+
export function getGlobalParamsProperty(keyOrCode: string): DpSchema | undefined {
|
|
319
|
+
return GlobalParams.dpSchemaMap[keyOrCode] && GlobalParams.dpSchemaMap[keyOrCode].property
|
|
320
|
+
}
|
|
321
|
+
|
|
318
322
|
export function isSupportFunctions(...keys: string[]) {
|
|
319
323
|
return keys.every(key => key in GlobalParams.dpSchemaMap)
|
|
320
324
|
}
|