@ledvance/base 1.2.85 → 1.2.87

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "name": "@ledvance/base",
5
5
  "pid": [],
6
6
  "uiid": "",
7
- "version": "1.2.85",
7
+ "version": "1.2.87",
8
8
  "scripts": {
9
9
  "prepublishOnly": "python update-localazy.py"
10
10
  },
@@ -0,0 +1,87 @@
1
+ import React from 'react';
2
+ import Card from '@ledvance/base/src/components/Card';
3
+ import { Battery, Utils } from 'tuya-panel-kit';
4
+ import { View, Text, StyleSheet } from 'react-native';
5
+ import I18n from '@ledvance/base/src/i18n';
6
+ import Spacer from '@ledvance/base/src/components/Spacer';
7
+
8
+ const cx = Utils.RatioUtils.convertX;
9
+ type BatteryProps = {
10
+ batteryState: string;
11
+ };
12
+
13
+ enum BatteryState {
14
+ Low = 'low',
15
+ Middle = 'middle',
16
+ High = 'high',
17
+ }
18
+
19
+ const batteryLevels = {
20
+ [BatteryState.High]: 100,
21
+ [BatteryState.Middle]: 60,
22
+ [BatteryState.Low]: 30,
23
+ };
24
+
25
+ const getBatteryDisplayName = (value: string): string => {
26
+ switch (value) {
27
+ case BatteryState.High:
28
+ return I18n.getLang('contact_sensor_battery_state1');
29
+ case BatteryState.Middle:
30
+ return I18n.getLang('contact_sensor_battery_state2');
31
+ case BatteryState.Low:
32
+ default:
33
+ return I18n.getLang('contact_sensor_battery_state3');
34
+ }
35
+ };
36
+
37
+ export default function BatteryStateView(props: BatteryProps) {
38
+ const { batteryState } = props;
39
+ const calcColor = (_, highColor, middleColor, lowColor) => {
40
+ switch (batteryState) {
41
+ case BatteryState.High:
42
+ return highColor;
43
+ case BatteryState.Middle:
44
+ return middleColor;
45
+ default:
46
+ return lowColor;
47
+ }
48
+ };
49
+
50
+ const battery = batteryLevels[batteryState];
51
+ return (
52
+ <Card
53
+ style={{ marginHorizontal: cx(24) }}
54
+ containerStyle={{ flexDirection: 'row', alignItems: 'center' }}
55
+ >
56
+ <Text style={styles.title}>{I18n.getLang('motion_detector_battery__state4')}</Text>
57
+ <Spacer height={0} style={{ flex: 1 }} />
58
+ <View style={styles.batteryRotate}>
59
+ <Battery value={battery} onCalcColor={calcColor} size={cx(30)} middleColor="#999999" />
60
+ </View>
61
+ <Text style={styles.content}>{getBatteryDisplayName(batteryState)}</Text>
62
+ </Card>
63
+ );
64
+ }
65
+
66
+ const styles = StyleSheet.create({
67
+ title: {
68
+ marginStart: cx(16),
69
+ marginVertical: cx(18),
70
+ color: '#000',
71
+ fontSize: cx(16),
72
+ fontFamily: 'helvetica_neue_lt_std_bd',
73
+ },
74
+
75
+ batteryRotate: {
76
+ transform: [{ rotate: '90deg' }],
77
+ position: 'relative',
78
+ right: cx(30),
79
+ },
80
+
81
+ content: {
82
+ marginEnd: cx(16),
83
+ color: '#000',
84
+ fontSize: cx(14),
85
+ fontFamily: 'helvetica_neue_lt_std_roman',
86
+ },
87
+ });
@@ -14,17 +14,22 @@ interface Prop {
14
14
  enable: boolean
15
15
  setEnable: (enable: boolean) => void
16
16
  showSwitch?:boolean
17
+ description?: string
17
18
  }
18
19
 
19
20
  const LdvSwitch = (props: Prop) => {
20
- const {title, color, colorAlpha, enable, setEnable, showSwitch = true} = props
21
+ const {title, color, colorAlpha, enable, description, setEnable, showSwitch = true} = props
21
22
  return (
22
- <View style={styles.titleBGView}>
23
- <Text style={{...styles.title, color: props.theme.global.fontColor}}>{title}</Text>
24
- <View style={[styles.colorBlock, {backgroundColor: color, opacity: colorAlpha}]}/>
25
- <Spacer style={{flex: 1}} height={0} width={0}/>
26
- {showSwitch && <SwitchButton value={enable} onValueChange={setEnable}/>}
27
- </View>
23
+ <View style={styles.titleBGView}>
24
+ <View style={{flexDirection: 'column', flex: 1}}>
25
+ <View style={{flexDirection: 'row', alignItems: 'center'}}>
26
+ <Text style={{...styles.title, color: props.theme.global.fontColor}}>{title}</Text>
27
+ <View style={[styles.colorBlock, {backgroundColor: color, opacity: colorAlpha}]}/>
28
+ </View>
29
+ {description && <Text style={{color: props.theme.global.fontColor}}>{description}</Text>}
30
+ </View>
31
+ {showSwitch && <SwitchButton value={enable} onValueChange={setEnable}/>}
32
+ </View>
28
33
  )
29
34
  }
30
35
 
@@ -33,6 +38,7 @@ const styles = StyleSheet.create({
33
38
  flexDirection: 'row',
34
39
  alignItems: 'center',
35
40
  paddingHorizontal: cx(16),
41
+ paddingVertical: cx(16),
36
42
  },
37
43
  colorBlock: {
38
44
  width: cx(20),
@@ -44,8 +50,7 @@ const styles = StyleSheet.create({
44
50
  fontSize: cx(16),
45
51
  // fontFamily: 'helvetica_neue_lt_std_bd',
46
52
  fontWeight: 'bold',
47
- paddingVertical: cx(16),
48
- maxWidth: cx(220)
53
+ maxWidth: cx(220),
49
54
  },
50
55
  })
51
56
 
@@ -105,6 +105,7 @@ export default {
105
105
  "camera_feature_5_headline": "Grabaciones",
106
106
  "camera_human_body_filtering": "Human Body Filtering",
107
107
  "camera_human_private_mode": "Private mode",
108
+ "camera_local_recording": "Local Recording",
108
109
  "camera_mic_two_way_talking": "Calling.....",
109
110
  "camera_net_err": "Device connection is interrupted, please check the device and its network",
110
111
  "camera_private_mode_sleep": "Device in sleep mode",
@@ -925,6 +926,7 @@ export default {
925
926
  "camera_feature_5_headline": "التسجيلات",
926
927
  "camera_human_body_filtering": "تصفية جسم الإنسان",
927
928
  "camera_human_private_mode": "الوضع الخاص",
929
+ "camera_local_recording": "Local Recording",
928
930
  "camera_mic_two_way_talking": "جاري الاتصال...",
929
931
  "camera_net_err": "تم قطع اتصال الجهاز، يرجى التحقق من الجهاز وشبكته",
930
932
  "camera_private_mode_sleep": "الجهاز في وضع السكون",
@@ -1745,6 +1747,7 @@ export default {
1745
1747
  "camera_feature_5_headline": "Nahrávky",
1746
1748
  "camera_human_body_filtering": "Human Body Filtering",
1747
1749
  "camera_human_private_mode": "Private mode",
1750
+ "camera_local_recording": "Local Recording",
1748
1751
  "camera_mic_two_way_talking": "Calling.....",
1749
1752
  "camera_net_err": "Device connection is interrupted, please check the device and its network",
1750
1753
  "camera_private_mode_sleep": "Zařízení v režimu spánku",
@@ -2565,6 +2568,7 @@ export default {
2565
2568
  "camera_feature_5_headline": "Recordings",
2566
2569
  "camera_human_body_filtering": "Human Body Filtering",
2567
2570
  "camera_human_private_mode": "Private mode",
2571
+ "camera_local_recording": "Local Recording",
2568
2572
  "camera_mic_two_way_talking": "Calling.....",
2569
2573
  "camera_net_err": "Device connection is interrupted, please check the device and its network",
2570
2574
  "camera_private_mode_sleep": "Device in sleep mode",
@@ -3385,6 +3389,7 @@ export default {
3385
3389
  "camera_feature_5_headline": "Записи",
3386
3390
  "camera_human_body_filtering": "Филтриране на човешкото тяло",
3387
3391
  "camera_human_private_mode": "Частен режим",
3392
+ "camera_local_recording": "Local Recording",
3388
3393
  "camera_mic_two_way_talking": "Обаждане...",
3389
3394
  "camera_net_err": "Връзката на устройството е прекъсната, моля, проверете устройството и неговата мрежа",
3390
3395
  "camera_private_mode_sleep": "Устройство в режим на заспиване",
@@ -4205,6 +4210,7 @@ export default {
4205
4210
  "camera_feature_5_headline": "Optagelser",
4206
4211
  "camera_human_body_filtering": "Menneskekropfiltrering",
4207
4212
  "camera_human_private_mode": "Privat tilstand",
4213
+ "camera_local_recording": "Local Recording",
4208
4214
  "camera_mic_two_way_talking": "Ringer ...",
4209
4215
  "camera_net_err": "Enhedens forbindelse er afbrudt. Tjek venligst enheden og dens netværk",
4210
4216
  "camera_private_mode_sleep": "Enheden er i dvaletilstand",
@@ -4223,7 +4229,7 @@ export default {
4223
4229
  "camera_settings_recording_mode_firstbox_topic1": "Udløst af bevægelse",
4224
4230
  "camera_settings_recording_mode_firstbox_topic1_description": "Optager kun, hvis der registreres en bevægelse",
4225
4231
  "camera_settings_recording_mode_firstbox_topic2": "Fortsat",
4226
- "camera_settings_recording_mode_firstbox_topic2_description": "Vil altid optage",
4232
+ "camera_settings_recording_mode_firstbox_topic2_description": "Vil altid optage, uanset en bevægelse",
4227
4233
  "camera_settings_recording_mode_question_note": "Bemærk, at du skal aktivere notifikationer for bevægelsesregistrering for at kunne optage videoer.",
4228
4234
  "camera_settings_recording_mode_question_topic": "Er du sikker på, du vil aktivere bevægelsesudløste optagelser?",
4229
4235
  "camera_settings_sd_storage_firstbox_note": "Når loop-optagelse er aktiveret, overskrives ældre videoer, hvis SD-kortet er fuldt.",
@@ -5025,6 +5031,7 @@ export default {
5025
5031
  "camera_feature_5_headline": "Aufnahmen",
5026
5032
  "camera_human_body_filtering": "Filterung des menschlichen Körpers",
5027
5033
  "camera_human_private_mode": "Privatmodus",
5034
+ "camera_local_recording": "Lokale Aufnahme",
5028
5035
  "camera_mic_two_way_talking": "Anrufen…",
5029
5036
  "camera_net_err": "Die Geräteverbindung ist unterbrochen. Bitte überprüfe das Gerät und sein Netzwerk",
5030
5037
  "camera_private_mode_sleep": "Gerät im Ruhemodus",
@@ -5056,7 +5063,7 @@ export default {
5056
5063
  "camera_settings_talk_mode_firstbox_option2_topic": "Beidseitige Kommunikation",
5057
5064
  "camera_settings_talk_mode_secondtopic": "Die Sprache kann von der Umgebung beeinflusst werden. Je nach Situation empfehlen wir entweder ein- oder beidseitige-Kommunikation.",
5058
5065
  "camera_settings_talk_mode_topic": "Gesprächsmodus",
5059
- "camera_status_indicator": "Status indicator",
5066
+ "camera_status_indicator": "Statusanzeige",
5060
5067
  "camera_tile_camera_button_label_photo": "Foto aufnehmen",
5061
5068
  "camera_tile_camera_button_label_video": "Video aufzeichnen",
5062
5069
  "camera_tile_camera_headline": "Kamera",
@@ -5845,6 +5852,7 @@ export default {
5845
5852
  "camera_feature_5_headline": "Εγγραφές",
5846
5853
  "camera_human_body_filtering": "Φιλτράρισμα ανθρώπινου σώματος",
5847
5854
  "camera_human_private_mode": "Ιδιωτική λειτουργία",
5855
+ "camera_local_recording": "Local Recording",
5848
5856
  "camera_mic_two_way_talking": "Κλήση.....",
5849
5857
  "camera_net_err": "Η σύνδεση της συσκευής διακόπτεται, ελέγξτε τη συσκευή και το δίκτυό της",
5850
5858
  "camera_private_mode_sleep": "Συσκευή σε κατάσταση αναστολής λειτουργίας",
@@ -5863,7 +5871,7 @@ export default {
5863
5871
  "camera_settings_recording_mode_firstbox_topic1": "Ενεργοποίηση με κίνηση",
5864
5872
  "camera_settings_recording_mode_firstbox_topic1_description": "Θα εγγραφεί μόνο εάν εντοπιστεί κίνηση",
5865
5873
  "camera_settings_recording_mode_firstbox_topic2": "Συνεχής",
5866
- "camera_settings_recording_mode_firstbox_topic2_description": "Θα καταγράφει πάντα",
5874
+ "camera_settings_recording_mode_firstbox_topic2_description": "Θα καταγράφει πάντα, ανεξάρτητα από μια κίνηση",
5867
5875
  "camera_settings_recording_mode_question_note": "Σημειώστε ότι πρέπει να ενεργοποιήσετε τις ειδοποιήσεις για ανίχνευση κίνησης για να μπορείτε να εγγράψετε βίντεο.",
5868
5876
  "camera_settings_recording_mode_question_topic": "Θέλετε πραγματικά να ενεργοποιήσετε την εγγραφή που ενεργοποιείται από την κίνηση;",
5869
5877
  "camera_settings_sd_storage_firstbox_note": "Όταν ενεργοποιείται η συνεχής εγγραφή, τα παλαιότερα βίντεο αντικαθίστανται, εάν η κάρτα SD είναι πλήρης.",
@@ -6224,8 +6232,8 @@ export default {
6224
6232
  "flag_deletepopup": "Θέλετε πραγματικά να διαγράψετε τη σημαία;",
6225
6233
  "flag_edittheflag": "Επεξεργασία της σημαίας",
6226
6234
  "flag_leverkusen": "Λεβερκούζεν",
6227
- "flag_resetbutton": "Do you want to reset your flag data?",
6228
- "flag_resetdescription": "Note that all the customized flags will be resetted.",
6235
+ "flag_resetbutton": "Θέλετε να αρχικοποιήσετε τα δεδομένα σημαίας σας;",
6236
+ "flag_resetdescription": "Σημειώστε ότι όλες οι προσαρμοσμένες σημαίες θα αρχικοποιηθούν.",
6229
6237
  "flashing_fs_toggle_state1": "Γρήγορα",
6230
6238
  "flashing_fs_toggle_state2": "Αργά",
6231
6239
  "generation_data_description_text": "δείχνει την παραγόμενη ενέργεια",
@@ -6665,6 +6673,7 @@ export default {
6665
6673
  "camera_feature_5_headline": "Grabaciones",
6666
6674
  "camera_human_body_filtering": "Filtrado del cuerpo humano",
6667
6675
  "camera_human_private_mode": "Modo privado",
6676
+ "camera_local_recording": "Local Recording",
6668
6677
  "camera_mic_two_way_talking": "Llamando...",
6669
6678
  "camera_net_err": "Conexión del dipositivo interrumpida, por favor comprueba que está conectado",
6670
6679
  "camera_private_mode_sleep": "Dispositivo en modo de reposo",
@@ -7485,6 +7494,7 @@ export default {
7485
7494
  "camera_feature_5_headline": "Salvestised",
7486
7495
  "camera_human_body_filtering": "Inimkeha filtreerimine",
7487
7496
  "camera_human_private_mode": "Privaatne režiim",
7497
+ "camera_local_recording": "Local Recording",
7488
7498
  "camera_mic_two_way_talking": "Helistamine...",
7489
7499
  "camera_net_err": "Seadme ühendus on katkenud, palun kontrollige seadet ja selle võrku",
7490
7500
  "camera_private_mode_sleep": "Seade on puhkerežiimis",
@@ -7503,7 +7513,7 @@ export default {
7503
7513
  "camera_settings_recording_mode_firstbox_topic1": "Käivitub liikumise tuvastamisel",
7504
7514
  "camera_settings_recording_mode_firstbox_topic1_description": "Salvestab ainult siis, kui tuvastatakse liikumine",
7505
7515
  "camera_settings_recording_mode_firstbox_topic2": "Pidev",
7506
- "camera_settings_recording_mode_firstbox_topic2_description": "Salvestab alati",
7516
+ "camera_settings_recording_mode_firstbox_topic2_description": "Salvestab alati, olenemata liikumisest",
7507
7517
  "camera_settings_recording_mode_question_note": "Pane tähele, et videote salvestamiseks pead esmalt aktiveerima liikumise tuvastamise märguanded.",
7508
7518
  "camera_settings_recording_mode_question_topic": "Kas soovid tõesti aktiveerida liikumise tuvastamisel käivituva salvestamise?",
7509
7519
  "camera_settings_sd_storage_firstbox_note": "Kui silmussalvestuse funktsioon on aktiveeritud ja SD-kaart saab täis, kirjutatakse vanemad videofailid üle.",
@@ -8305,6 +8315,7 @@ export default {
8305
8315
  "camera_feature_5_headline": "Tallenteet",
8306
8316
  "camera_human_body_filtering": "Ihmiskehon suodatus",
8307
8317
  "camera_human_private_mode": "Yksityinen tila",
8318
+ "camera_local_recording": "Local Recording",
8308
8319
  "camera_mic_two_way_talking": "Soitetaan…",
8309
8320
  "camera_net_err": "Laitteen yhteys on katkennut, tarkista laite ja sen verkko.",
8310
8321
  "camera_private_mode_sleep": "Laite on lepotilassa",
@@ -8323,7 +8334,7 @@ export default {
8323
8334
  "camera_settings_recording_mode_firstbox_topic1": "Liikkeen käynnistämä",
8324
8335
  "camera_settings_recording_mode_firstbox_topic1_description": "Tallentaa vain, jos liike havaitaan",
8325
8336
  "camera_settings_recording_mode_firstbox_topic2": "Jatkuva",
8326
- "camera_settings_recording_mode_firstbox_topic2_description": "Tallentaa aina",
8337
+ "camera_settings_recording_mode_firstbox_topic2_description": "Tallentaa aina, liikkeestä riippumatta",
8327
8338
  "camera_settings_recording_mode_question_note": "Huomaa, että sinun on aktivoitava liiketunnistuksen ilmoitukset voidaksesi tallentaa videoita.",
8328
8339
  "camera_settings_recording_mode_question_topic": "Haluatko todella aktivoida liikkeen käynnistämän tallennuksen?",
8329
8340
  "camera_settings_sd_storage_firstbox_note": "Kun silmukkatallennus on aktivoitu, vanhemmat videot korvataan, jos SD-kortti on täynnä.",
@@ -8336,7 +8347,7 @@ export default {
8336
8347
  "camera_settings_talk_mode_firstbox_option2_topic": "Kaksisuuntainen viestintä",
8337
8348
  "camera_settings_talk_mode_secondtopic": "Ympäristö voi vaikuttaa puheeseen. Tilanteesta riippuen suosittelemme joko yksi- tai kaksisuuntaista viestintää.",
8338
8349
  "camera_settings_talk_mode_topic": "Puhetila",
8339
- "camera_status_indicator": "Status indicator",
8350
+ "camera_status_indicator": "Tilan ilmaisin",
8340
8351
  "camera_tile_camera_button_label_photo": "Ota kuva",
8341
8352
  "camera_tile_camera_button_label_video": "Tallenna video",
8342
8353
  "camera_tile_camera_headline": "Kamera",
@@ -8684,8 +8695,8 @@ export default {
8684
8695
  "flag_deletepopup": "Haluatko todella poistaa lipun?",
8685
8696
  "flag_edittheflag": "Muokkaa lippua",
8686
8697
  "flag_leverkusen": "Bayer Leverkusen",
8687
- "flag_resetbutton": "Do you want to reset your flag data?",
8688
- "flag_resetdescription": "Note that all the customized flags will be resetted.",
8698
+ "flag_resetbutton": "Haluatko nollata lipputietosi?",
8699
+ "flag_resetdescription": "Huomaa, että kaikki mukautetut liput nollataan.",
8689
8700
  "flashing_fs_toggle_state1": "Nopea animaatio",
8690
8701
  "flashing_fs_toggle_state2": "Hidas animaatio",
8691
8702
  "generation_data_description_text": "näyttää tuotetun energian",
@@ -9125,6 +9136,7 @@ export default {
9125
9136
  "camera_feature_5_headline": "Enregistrements",
9126
9137
  "camera_human_body_filtering": "Filtrage du corps humain",
9127
9138
  "camera_human_private_mode": "Mode privé",
9139
+ "camera_local_recording": "Local Recording",
9128
9140
  "camera_mic_two_way_talking": "Appel.....",
9129
9141
  "camera_net_err": "La connexion de l'appareil est interrompue, veuillez vérifier l'appareil et son réseau",
9130
9142
  "camera_private_mode_sleep": "Appareil en mode veille",
@@ -9143,7 +9155,7 @@ export default {
9143
9155
  "camera_settings_recording_mode_firstbox_topic1": "Déclenché par le mouvement",
9144
9156
  "camera_settings_recording_mode_firstbox_topic1_description": "N'enregistrera que si un mouvement est détecté",
9145
9157
  "camera_settings_recording_mode_firstbox_topic2": "Continu",
9146
- "camera_settings_recording_mode_firstbox_topic2_description": "Enregistrera toujours",
9158
+ "camera_settings_recording_mode_firstbox_topic2_description": "Il enregistrera toujours, quel que soit le mouvement",
9147
9159
  "camera_settings_recording_mode_question_note": "Notez que vous devez activer les notifications de détection de mouvement pour pouvoir enregistrer des vidéos.",
9148
9160
  "camera_settings_recording_mode_question_topic": "Voulez-vous vraiment activer l'enregistrement déclenché par le mouvement ?",
9149
9161
  "camera_settings_sd_storage_firstbox_note": "Lorsque l'enregistrement en boucle est activé, les anciennes vidéos sont remplacées si la carte SD est pleine.",
@@ -9156,7 +9168,7 @@ export default {
9156
9168
  "camera_settings_talk_mode_firstbox_option2_topic": "Communication bidirectionnelle",
9157
9169
  "camera_settings_talk_mode_secondtopic": "La parole peut être influencée par l'environnement. Selon la situation, nous recommandons une communication unidirectionnelle ou bidirectionnelle.",
9158
9170
  "camera_settings_talk_mode_topic": "Mode conversation",
9159
- "camera_status_indicator": "Status indicator",
9171
+ "camera_status_indicator": "Indicateur d'état",
9160
9172
  "camera_tile_camera_button_label_photo": "Prendre une photo",
9161
9173
  "camera_tile_camera_button_label_video": "Enregistrer une vidéo",
9162
9174
  "camera_tile_camera_headline": "Caméra",
@@ -9945,6 +9957,7 @@ export default {
9945
9957
  "camera_feature_5_headline": "Snimke",
9946
9958
  "camera_human_body_filtering": "Filtriranje ljudskog tijela",
9947
9959
  "camera_human_private_mode": "Privatni način rada",
9960
+ "camera_local_recording": "Local Recording",
9948
9961
  "camera_mic_two_way_talking": "Zovem...",
9949
9962
  "camera_net_err": "Veza s uređajem je prekinuta, provjerite uređaj i njegovu mrežu",
9950
9963
  "camera_private_mode_sleep": "Uređaj u stanju mirovanja",
@@ -9963,7 +9976,7 @@ export default {
9963
9976
  "camera_settings_recording_mode_firstbox_topic1": "Pokreće se pokretom",
9964
9977
  "camera_settings_recording_mode_firstbox_topic1_description": "Snimat će samo ako se detektira pokret",
9965
9978
  "camera_settings_recording_mode_firstbox_topic2": "Neprekidno",
9966
- "camera_settings_recording_mode_firstbox_topic2_description": "Uvijek će snimati",
9979
+ "camera_settings_recording_mode_firstbox_topic2_description": "Uvijek će snimati, bez obzira na pokret",
9967
9980
  "camera_settings_recording_mode_question_note": "Imajte na umu da morate aktivirati obavijesti za detekciju pokreta kako biste mogli snimati videozapise.",
9968
9981
  "camera_settings_recording_mode_question_topic": "Želite li stvarno aktivirati snimanje pokrenuto pokretom?",
9969
9982
  "camera_settings_sd_storage_firstbox_note": "Kada je aktivirano snimanje u petlji, stariji video zapisi prepisuju se kada je SD kartica puna.",
@@ -9976,7 +9989,7 @@ export default {
9976
9989
  "camera_settings_talk_mode_firstbox_option2_topic": "Dvosmjerna komunikacija",
9977
9990
  "camera_settings_talk_mode_secondtopic": "Na govor može utjecati okolina. Ovisno o situaciji, preporučamo jednosmjernu ili dvosmjernu komunikaciju.",
9978
9991
  "camera_settings_talk_mode_topic": "Način rada s razgovorom",
9979
- "camera_status_indicator": "Status indicator",
9992
+ "camera_status_indicator": "Pokazatelj statusa",
9980
9993
  "camera_tile_camera_button_label_photo": "Snimi fotografiju",
9981
9994
  "camera_tile_camera_button_label_video": "Snimi videozapis",
9982
9995
  "camera_tile_camera_headline": "Kamera",
@@ -10324,8 +10337,8 @@ export default {
10324
10337
  "flag_deletepopup": "Želite li zaista izbrisati zastavicu?",
10325
10338
  "flag_edittheflag": "Uređivanje zastavice",
10326
10339
  "flag_leverkusen": "Bayer Leverkusen",
10327
- "flag_resetbutton": "Do you want to reset your flag data?",
10328
- "flag_resetdescription": "Note that all the customized flags will be resetted.",
10340
+ "flag_resetbutton": "Želite li poništiti svoje podatke o zastavici?",
10341
+ "flag_resetdescription": "Imajte na umu da će sve prilagođene zastavice biti poništene.",
10329
10342
  "flashing_fs_toggle_state1": "Brzi bljesak",
10330
10343
  "flashing_fs_toggle_state2": "Spori bljesak",
10331
10344
  "generation_data_description_text": "pokazuje proizvedenu energiju",
@@ -10763,8 +10776,9 @@ export default {
10763
10776
  "camera_feature_1_headline": "Riasztósziréna",
10764
10777
  "camera_feature_2_headline": "Mikrofon",
10765
10778
  "camera_feature_5_headline": "Felvételek",
10766
- "camera_human_body_filtering": "Human Body Filtering",
10767
- "camera_human_private_mode": "Private mode",
10779
+ "camera_human_body_filtering": "Emberi test szűrése",
10780
+ "camera_human_private_mode": "Privát mód",
10781
+ "camera_local_recording": "Local Recording",
10768
10782
  "camera_mic_two_way_talking": "Hívás...",
10769
10783
  "camera_net_err": "Az eszközkapcsolat megszakad, kérjük, ellenőrizze az eszközt és annak hálózatát",
10770
10784
  "camera_private_mode_sleep": "A készülék alvó üzemmódban van",
@@ -10783,7 +10797,7 @@ export default {
10783
10797
  "camera_settings_recording_mode_firstbox_topic1": "Mozgásérzékelő bekapcsolt",
10784
10798
  "camera_settings_recording_mode_firstbox_topic1_description": "Csak akkor rögzít, ha mozgást észlel",
10785
10799
  "camera_settings_recording_mode_firstbox_topic2": "Folyamatos",
10786
- "camera_settings_recording_mode_firstbox_topic2_description": "Mindig rögzít",
10800
+ "camera_settings_recording_mode_firstbox_topic2_description": "Mozgástól függetlenül mindig rögzít",
10787
10801
  "camera_settings_recording_mode_question_note": "Ne feledje, hogy a videók rögzítéséhez aktiválnia kell a mozgásérzékelésre vonatkozó értesítéseket.",
10788
10802
  "camera_settings_recording_mode_question_topic": "Biztosan aktiválja a mozgás által kiváltott felvételt?",
10789
10803
  "camera_settings_sd_storage_firstbox_note": "Ha folyamatos felvételt választ akkor a régebbi videók felülíródnak, ha az SD-kártya megtelik.",
@@ -10796,7 +10810,7 @@ export default {
10796
10810
  "camera_settings_talk_mode_firstbox_option2_topic": "Kétirányú kommunikáció",
10797
10811
  "camera_settings_talk_mode_secondtopic": "A beszédet befolyásolhatja a környezet. A helyzettől függően egyirányú vagy kétirányú kommunikációt javasolunk.",
10798
10812
  "camera_settings_talk_mode_topic": "Beszélgetési mód",
10799
- "camera_status_indicator": "Status indicator",
10813
+ "camera_status_indicator": "Állapotjelző",
10800
10814
  "camera_tile_camera_button_label_photo": "Kép készítése",
10801
10815
  "camera_tile_camera_button_label_video": "Videó rögzítése",
10802
10816
  "camera_tile_camera_headline": "Kamera",
@@ -11030,14 +11044,14 @@ export default {
11030
11044
  "country_VE": "Venezuela",
11031
11045
  "country_VN": "Vietnám",
11032
11046
  "country_ZA": "Dél-Afrika",
11033
- "country_cu": "Cuba",
11047
+ "country_cu": "Kuba",
11034
11048
  "country_england": "Anglia",
11035
- "country_gb": "Great Britain",
11036
- "country_ir": "Iran",
11049
+ "country_gb": "Nagy-Britannia",
11050
+ "country_ir": "Irán",
11037
11051
  "country_pe": "Peru",
11038
11052
  "country_scotland": "Skócia",
11039
11053
  "country_selection_textfield_headline_search": "Keresés",
11040
- "country_sy": "Syria",
11054
+ "country_sy": "Szíria",
11041
11055
  "device_menu_camera_fourthbox_text2": "Rögzítési mód",
11042
11056
  "device_menu_camera_fourthbox_topic": "SD kártya felvételek",
11043
11057
  "device_menu_camera_secondbox_text3": "Kijelző megfordítása",
@@ -11144,8 +11158,8 @@ export default {
11144
11158
  "flag_deletepopup": "Tényleg törölni szeretné a zászlót?",
11145
11159
  "flag_edittheflag": "A zászló szerkesztése",
11146
11160
  "flag_leverkusen": "Bayer Leverkusen",
11147
- "flag_resetbutton": "Do you want to reset your flag data?",
11148
- "flag_resetdescription": "Note that all the customized flags will be resetted.",
11161
+ "flag_resetbutton": "Szeretné visszaállítani a zászló adatait?",
11162
+ "flag_resetdescription": "Ne feledje, hogy az összes testreszabott zászló visszaállításra kerül.",
11149
11163
  "flashing_fs_toggle_state1": "Gyors animáció",
11150
11164
  "flashing_fs_toggle_state2": "Lassú animáció",
11151
11165
  "generation_data_description_text": "megmutatja a generált energiát",
@@ -11210,16 +11224,16 @@ export default {
11210
11224
  "matter_gradient_light_on_title": "Fade-in (ek)",
11211
11225
  "matter_gradient_overview_headline_text": "Fade-In/Out",
11212
11226
  "matterplug_LED": "LED kijelző",
11213
- "matterplug_description": "Configuration of the LED indicator after being switched On/Off",
11214
- "matterplug_heading": "LED indicator status",
11215
- "matterplug_option1description": "The status of the switch corresponds to the LED indicator: Socket is switched on when the LED is on, and switched off when the LED is off.",
11216
- "matterplug_option1title": "Indicates On/Off status",
11217
- "matterplug_option2description": "The status of the switch is inversely indicated by the LED indicator: when the LED is off, the socket is on; when the LED is on, the socket is off.",
11218
- "matterplug_option2title": "Inverse On/Off status",
11219
- "matterplug_option3description": "The LED indicator remains switched OFF irrespective of the Plug status.",
11220
- "matterplug_option3title": "Always Off",
11221
- "matterplug_option4description": "The LED indicator remains switched ON irrespective of the socket status.",
11222
- "matterplug_option4title": "Always On",
11227
+ "matterplug_description": "A LED jelző konfigurálása be-/kikapcsolás után",
11228
+ "matterplug_heading": "LED kijelző állapota",
11229
+ "matterplug_option1description": "A kapcsoló állapota megfelel a LED-kijelzőnek: Ha a LED világít, az aljzat be van kapcsolva, ha a LED kialszik, ki van kapcsolva.",
11230
+ "matterplug_option1title": "Be/Ki állapotot jelez",
11231
+ "matterplug_option2description": "A kapcsoló állapotát fordítottan jelzi a LED-kijelző: ha a LED ki van kapcsolva, az aljzat be van kapcsolva; ha a LED világít, az aljzat ki van kapcsolva.",
11232
+ "matterplug_option2title": "Fordított be- és kikapcsolási állapot",
11233
+ "matterplug_option3description": "A LED-kijelző a dugalj állapotától függetlenül kikapcsolt állapotban marad.",
11234
+ "matterplug_option3title": "Mindig kikapcsolva",
11235
+ "matterplug_option4description": "A LED-kijelző az aljzat állapotától függetlenül bekapcsolva marad.",
11236
+ "matterplug_option4title": "Mindig bekapcsolva",
11223
11237
  "mesh_device_detail_lighting_color_mode": "Szín mód",
11224
11238
  "mesh_device_detail_lighting_goodnight": "Jó éjszakát",
11225
11239
  "mesh_device_detail_lighting_leisure": "Szabadidő",
@@ -11585,6 +11599,7 @@ export default {
11585
11599
  "camera_feature_5_headline": "Registrazioni",
11586
11600
  "camera_human_body_filtering": "Human Body Filtering",
11587
11601
  "camera_human_private_mode": "Modalità privata",
11602
+ "camera_local_recording": "Local Recording",
11588
11603
  "camera_mic_two_way_talking": "Chiamata...",
11589
11604
  "camera_net_err": "La connessione del dispositivo è interrotta, controlla il dispositivo e la sua rete",
11590
11605
  "camera_private_mode_sleep": "Dispositivo in modalità sospensione",
@@ -12405,6 +12420,7 @@ export default {
12405
12420
  "camera_feature_5_headline": "녹음",
12406
12421
  "camera_human_body_filtering": "Human Body Filtering",
12407
12422
  "camera_human_private_mode": "Private mode",
12423
+ "camera_local_recording": "Local Recording",
12408
12424
  "camera_mic_two_way_talking": "전화 중...",
12409
12425
  "camera_net_err": "장치 연결이 중단되었습니다. 장치와 네트워크를 확인하십시오.",
12410
12426
  "camera_private_mode_sleep": "절전 모드",
@@ -13225,6 +13241,7 @@ export default {
13225
13241
  "camera_feature_5_headline": "Įrašai",
13226
13242
  "camera_human_body_filtering": "Žmogaus kūno filtravimas",
13227
13243
  "camera_human_private_mode": "Privatus režimas",
13244
+ "camera_local_recording": "Local Recording",
13228
13245
  "camera_mic_two_way_talking": "Skambina......",
13229
13246
  "camera_net_err": "Įrenginio ryšys nutrūko, patikrinkite įrenginį ir jo tinklą",
13230
13247
  "camera_private_mode_sleep": "Prietaisas veikia miego režimu",
@@ -13243,7 +13260,7 @@ export default {
13243
13260
  "camera_settings_recording_mode_firstbox_topic1": "Suaktyvinamas aptikus judesį",
13244
13261
  "camera_settings_recording_mode_firstbox_topic1_description": "Įrašys tik tada, jei bus aptiktas judesys.",
13245
13262
  "camera_settings_recording_mode_firstbox_topic2": "Tęstinis",
13246
- "camera_settings_recording_mode_firstbox_topic2_description": "Visada įrašys",
13263
+ "camera_settings_recording_mode_firstbox_topic2_description": "Nuolat įrašynės, nepriklausomai nuo judesio fiksavimo",
13247
13264
  "camera_settings_recording_mode_question_note": "Atkreipkite dėmesį, kad norėdami įrašyti vaizdo įrašus, turite įjungti judesio aptikimo pranešimus.",
13248
13265
  "camera_settings_recording_mode_question_topic": "Ar tikrai norite suaktyvinti judesio suaktyvintą įrašymą?",
13249
13266
  "camera_settings_sd_storage_firstbox_note": "Kai įjungtas ciklo įrašymas, senesni vaizdo įrašai perrašomi naujais, kai SD kortelė pilna.",
@@ -13604,8 +13621,8 @@ export default {
13604
13621
  "flag_deletepopup": "Ar tikrai norite ištrinti vėliavėlę?",
13605
13622
  "flag_edittheflag": "Redaguoti vėliavą",
13606
13623
  "flag_leverkusen": "Leverkuzenas",
13607
- "flag_resetbutton": "Do you want to reset your flag data?",
13608
- "flag_resetdescription": "Note that all the customized flags will be resetted.",
13624
+ "flag_resetbutton": "Ar norite naujo nustatyti vėliavėlės duomenis?",
13625
+ "flag_resetdescription": "Atkreipkite dėmesį, kad visos pritaikytos vėliavos bus naujo nustatytos.",
13609
13626
  "flashing_fs_toggle_state1": "Greita animacija",
13610
13627
  "flashing_fs_toggle_state2": "Lėta animacija",
13611
13628
  "generation_data_description_text": "rodo pagamintą energiją",
@@ -14045,6 +14062,7 @@ export default {
14045
14062
  "camera_feature_5_headline": "Ieraksti",
14046
14063
  "camera_human_body_filtering": "Cilvēka ķermeņa filtrēšana",
14047
14064
  "camera_human_private_mode": "Privātais režīms",
14065
+ "camera_local_recording": "Local Recording",
14048
14066
  "camera_mic_two_way_talking": "Zvana......",
14049
14067
  "camera_net_err": "Ierīces savienojums ir pārtraukts, lūdzu, pārbaudiet ierīci un tās tīklu.",
14050
14068
  "camera_private_mode_sleep": "Ierīce atrodas miega režīmā",
@@ -14063,7 +14081,7 @@ export default {
14063
14081
  "camera_settings_recording_mode_firstbox_topic1": "Kustības izraisīts",
14064
14082
  "camera_settings_recording_mode_firstbox_topic1_description": "Tiks ierakstīts tikai tad, ja tiek konstatēta kustība",
14065
14083
  "camera_settings_recording_mode_firstbox_topic2": "Nepārtraukts",
14066
- "camera_settings_recording_mode_firstbox_topic2_description": "Vienmēr ierakstīs",
14084
+ "camera_settings_recording_mode_firstbox_topic2_description": "Vienmēr ierakstīs, neatkarīgi no kustības",
14067
14085
  "camera_settings_recording_mode_question_note": "Ņemiet vērā, ka, lai varētu ierakstīt video, ir jāaktivizē kustības noteikšanas paziņojumi.",
14068
14086
  "camera_settings_recording_mode_question_topic": "Vai tiešām vēlaties aktivizēt kustības izraisītu ierakstīšanu?",
14069
14087
  "camera_settings_sd_storage_firstbox_note": "Kad cilpas ierakstīšana ir aktivizēta, vecāki videoklipi tiek pārrakstīti, ja SD karte ir pilna.",
@@ -14076,7 +14094,7 @@ export default {
14076
14094
  "camera_settings_talk_mode_firstbox_option2_topic": "Divvirzienu komunikācija",
14077
14095
  "camera_settings_talk_mode_secondtopic": "Runu var ietekmēt vide. Atkarībā no situācijas mēs iesakām vai nu vienvirziena, vai divvirzienu saziņu.",
14078
14096
  "camera_settings_talk_mode_topic": "Sarunu režīms",
14079
- "camera_status_indicator": "Status indicator",
14097
+ "camera_status_indicator": "Statusa indikators",
14080
14098
  "camera_tile_camera_button_label_photo": "Uzņemt fotogrāfiju",
14081
14099
  "camera_tile_camera_button_label_video": "Ierakstīt video",
14082
14100
  "camera_tile_camera_headline": "Kamera",
@@ -14424,8 +14442,8 @@ export default {
14424
14442
  "flag_deletepopup": "Vai tiešām vēlaties dzēst karogu?",
14425
14443
  "flag_edittheflag": "Rediģēt karogu",
14426
14444
  "flag_leverkusen": "Leverkūzene",
14427
- "flag_resetbutton": "Do you want to reset your flag data?",
14428
- "flag_resetdescription": "Note that all the customized flags will be resetted.",
14445
+ "flag_resetbutton": "Vai vēlaties atiestatīt karoga datus?",
14446
+ "flag_resetdescription": "Ņemiet vērā, ka visi pielāgotie karodziņi tiks atiestatīti.",
14429
14447
  "flashing_fs_toggle_state1": "Ātra animācija",
14430
14448
  "flashing_fs_toggle_state2": "Lēna animācija",
14431
14449
  "generation_data_description_text": "rāda saražoto enerģiju",
@@ -14865,6 +14883,7 @@ export default {
14865
14883
  "camera_feature_5_headline": "Opptak",
14866
14884
  "camera_human_body_filtering": "Filtrering av menneskekroppen",
14867
14885
  "camera_human_private_mode": "Privat modus",
14886
+ "camera_local_recording": "Local Recording",
14868
14887
  "camera_mic_two_way_talking": "Ringer.....",
14869
14888
  "camera_net_err": "Enhetsforbindelsen er avbrutt, vennligst sjekk enheten og nettverket",
14870
14889
  "camera_private_mode_sleep": "Enhet i hvilemodus",
@@ -15685,6 +15704,7 @@ export default {
15685
15704
  "camera_feature_5_headline": "Opnamen",
15686
15705
  "camera_human_body_filtering": "Human Body Filtering",
15687
15706
  "camera_human_private_mode": "Private mode",
15707
+ "camera_local_recording": "Local Recording",
15688
15708
  "camera_mic_two_way_talking": "Bellen...",
15689
15709
  "camera_net_err": "De verbinding met het apparaat is onderbroken. Controleer het apparaat en het bijbehorende netwerk",
15690
15710
  "camera_private_mode_sleep": "Apparaat in slaapstand",
@@ -16130,12 +16150,12 @@ export default {
16130
16150
  "matter_gradient_light_on_title": "Fade-in (s)",
16131
16151
  "matter_gradient_overview_headline_text": "Fade-in/uit",
16132
16152
  "matterplug_LED": "LED-indicator",
16133
- "matterplug_description": "Configuration of the LED indicator after being switched On/Off",
16134
- "matterplug_heading": "LED indicator status",
16135
- "matterplug_option1description": "The status of the switch corresponds to the LED indicator: Socket is switched on when the LED is on, and switched off when the LED is off.",
16136
- "matterplug_option1title": "Indicates On/Off status",
16153
+ "matterplug_description": "Configuratie van de LED-indicator na in- en uitschakelen",
16154
+ "matterplug_heading": "Status van LED-indicator",
16155
+ "matterplug_option1description": "De status van de schakelaar komt overeen met de LED-indicator: het stopcontact is ingeschakeld als de LED brandt, en uitgeschakeld als de LED uit is.",
16156
+ "matterplug_option1title": "Geeft de status Aan/Uit aan",
16137
16157
  "matterplug_option2description": "The status of the switch is inversely indicated by the LED indicator: when the LED is off, the socket is on; when the LED is on, the socket is off.",
16138
- "matterplug_option2title": "Inverse On/Off status",
16158
+ "matterplug_option2title": "Omgekeerde aan/uit-status",
16139
16159
  "matterplug_option3description": "The LED indicator remains switched OFF irrespective of the Plug status.",
16140
16160
  "matterplug_option3title": "Always Off",
16141
16161
  "matterplug_option4description": "The LED indicator remains switched ON irrespective of the socket status.",
@@ -16505,6 +16525,7 @@ export default {
16505
16525
  "camera_feature_5_headline": "Nagrania",
16506
16526
  "camera_human_body_filtering": "Human Body Filtering",
16507
16527
  "camera_human_private_mode": "Private mode",
16528
+ "camera_local_recording": "Local Recording",
16508
16529
  "camera_mic_two_way_talking": "Calling.....",
16509
16530
  "camera_net_err": "Device connection is interrupted, please check the device and its network",
16510
16531
  "camera_private_mode_sleep": "Device in sleep mode",
@@ -17325,6 +17346,7 @@ export default {
17325
17346
  "camera_feature_5_headline": "Gravações",
17326
17347
  "camera_human_body_filtering": "Human Body Filtering",
17327
17348
  "camera_human_private_mode": "Private mode",
17349
+ "camera_local_recording": "Local Recording",
17328
17350
  "camera_mic_two_way_talking": "Ligando.....",
17329
17351
  "camera_net_err": "A conexão do dispositivo foi interrompida, verifique o dispositivo e sua rede",
17330
17352
  "camera_private_mode_sleep": "Dispositivo no modo de dormir",
@@ -18145,6 +18167,7 @@ export default {
18145
18167
  "camera_feature_5_headline": "Înregistrări",
18146
18168
  "camera_human_body_filtering": "Filtrarea corpului uman",
18147
18169
  "camera_human_private_mode": "Mod privat",
18170
+ "camera_local_recording": "Local Recording",
18148
18171
  "camera_mic_two_way_talking": "Se apelează…",
18149
18172
  "camera_net_err": "Conexiunea dispozitivului este întreruptă, vă rugăm să verificați dispozitivul și rețeaua acestuia",
18150
18173
  "camera_private_mode_sleep": "Dispozitiv în modul de repaus",
@@ -18965,6 +18988,7 @@ export default {
18965
18988
  "camera_feature_5_headline": "Записи",
18966
18989
  "camera_human_body_filtering": "Фильтрация человеческого тела",
18967
18990
  "camera_human_private_mode": "Приватный режим",
18991
+ "camera_local_recording": "Local Recording",
18968
18992
  "camera_mic_two_way_talking": "Вызов.....",
18969
18993
  "camera_net_err": "Соединение устройства прервано, проверьте устройство и его сеть",
18970
18994
  "camera_private_mode_sleep": "Устройство в спящем режиме",
@@ -19785,6 +19809,7 @@ export default {
19785
19809
  "camera_feature_5_headline": "Nahrávky",
19786
19810
  "camera_human_body_filtering": "Filtrovanie ľudského tela",
19787
19811
  "camera_human_private_mode": "Súkromný režim",
19812
+ "camera_local_recording": "Local Recording",
19788
19813
  "camera_mic_two_way_talking": "Volanie...",
19789
19814
  "camera_net_err": "Pripojenie zariadenia je prerušené, skontrolujte zariadenie a jeho sieť",
19790
19815
  "camera_private_mode_sleep": "Zariadenie v režime spánku",
@@ -20605,6 +20630,7 @@ export default {
20605
20630
  "camera_feature_5_headline": "Inspelningar",
20606
20631
  "camera_human_body_filtering": "Människokroppsfiltrering",
20607
20632
  "camera_human_private_mode": "Privat läge",
20633
+ "camera_local_recording": "Local Recording",
20608
20634
  "camera_mic_two_way_talking": "Ringer...",
20609
20635
  "camera_net_err": "Anslutningen avbröts, kontrollera enheten och nätverket",
20610
20636
  "camera_private_mode_sleep": "Enheten i viloläge",
@@ -21425,6 +21451,7 @@ export default {
21425
21451
  "camera_feature_5_headline": "Kayıtlar",
21426
21452
  "camera_human_body_filtering": "Human Body Filtering",
21427
21453
  "camera_human_private_mode": "Private mode",
21454
+ "camera_local_recording": "Local Recording",
21428
21455
  "camera_mic_two_way_talking": "Arıyorum...",
21429
21456
  "camera_net_err": "Cihaz bağlantısı kesildi, lütfen cihazı ve ağını kontrol edin",
21430
21457
  "camera_private_mode_sleep": "Cihaz uyku modunda",
@@ -22245,6 +22272,7 @@ export default {
22245
22272
  "camera_feature_5_headline": "Записи",
22246
22273
  "camera_human_body_filtering": "Орієнтування на людський організм",
22247
22274
  "camera_human_private_mode": "Приватний режим",
22275
+ "camera_local_recording": "Local Recording",
22248
22276
  "camera_mic_two_way_talking": "Виклик.....",
22249
22277
  "camera_net_err": "Підключення до пристрою перервано, будь ласка, перевірте пристрій та його мережу",
22250
22278
  "camera_private_mode_sleep": "Пристрій перебуває в режимі сну",
@@ -23065,6 +23093,7 @@ export default {
23065
23093
  "camera_feature_5_headline": "Gravações",
23066
23094
  "camera_human_body_filtering": "Human Body Filtering",
23067
23095
  "camera_human_private_mode": "Private mode",
23096
+ "camera_local_recording": "Local Recording",
23068
23097
  "camera_mic_two_way_talking": "Ligando.....",
23069
23098
  "camera_net_err": "A conexão do dispositivo foi interrompida, verifique o dispositivo e sua rede",
23070
23099
  "camera_private_mode_sleep": "Dispositivo no modo de dormir",
@@ -41,6 +41,7 @@ export interface UAGroupInfo {
41
41
  dps: any
42
42
  config: any
43
43
  groupDevices: GroupDeviceInfo[]
44
+ name: string
44
45
  }
45
46
 
46
47
  const initialState: NativeProps = {
@@ -56,7 +57,8 @@ const initialState: NativeProps = {
56
57
  pId: '',
57
58
  dps: {},
58
59
  config: {},
59
- groupDevices: []
60
+ groupDevices: [],
61
+ name: ''
60
62
  },
61
63
  timeSchedule: false,
62
64
  energieverbrauch: {},
@@ -101,6 +103,9 @@ const nativePropsSlice = createSlice({
101
103
  if (!!action.payload.familyName) {
102
104
  state.familyName = action.payload.familyName
103
105
  }
106
+ if (!!action.payload.uaGroupInfo.name) {
107
+ state.uaGroupInfo.name = action.payload.uaGroupInfo.name
108
+ }
104
109
  if (isNumber(action.payload.role)) {
105
110
  state.role = action.payload.role
106
111
  }