@ledvance/base 1.2.37 → 1.2.38
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/api/nativeEventEmitter.ts +23 -5
- package/src/i18n/strings.ts +145 -29
package/package.json
CHANGED
|
@@ -2,11 +2,13 @@ import {EmitterSubscription, NativeEventEmitter, NativeModules} from 'react-nati
|
|
|
2
2
|
import {
|
|
3
3
|
DeviceInfo,
|
|
4
4
|
NativeProps,
|
|
5
|
+
setGroupDevices,
|
|
5
6
|
setGroupNativeProps,
|
|
6
7
|
setNativeProps,
|
|
7
8
|
UAGroupInfo,
|
|
8
9
|
} from '../models/modules/NativePropsSlice'
|
|
9
10
|
import {actions} from '@models'
|
|
11
|
+
import { cloneDeep } from 'lodash'
|
|
10
12
|
|
|
11
13
|
const nativeModule = NativeModules.LDVDeviceEventEmitter
|
|
12
14
|
|
|
@@ -14,7 +16,7 @@ export const nativeEventEmitter = new NativeEventEmitter(nativeModule)
|
|
|
14
16
|
|
|
15
17
|
let deviceDPListener: EmitterSubscription | null
|
|
16
18
|
let groupFeatureListener: EmitterSubscription | null
|
|
17
|
-
let
|
|
19
|
+
let groupDeviceListener: EmitterSubscription | null
|
|
18
20
|
|
|
19
21
|
interface GroupFeatureEvent {
|
|
20
22
|
tyGroupId: number
|
|
@@ -28,6 +30,11 @@ interface DeviceEvent {
|
|
|
28
30
|
pId: string
|
|
29
31
|
}
|
|
30
32
|
|
|
33
|
+
interface TYInfoUpdateType {
|
|
34
|
+
devId: string
|
|
35
|
+
online: boolean
|
|
36
|
+
}
|
|
37
|
+
|
|
31
38
|
export const addListener = (store) => {
|
|
32
39
|
deviceDPListener = nativeEventEmitter.addListener('TYDataUpdate', (event: DeviceEvent) => {
|
|
33
40
|
// device info
|
|
@@ -67,8 +74,19 @@ export const addListener = (store) => {
|
|
|
67
74
|
}
|
|
68
75
|
})
|
|
69
76
|
|
|
70
|
-
|
|
71
|
-
console.log(event, '
|
|
77
|
+
groupDeviceListener = nativeEventEmitter.addListener('TYInfoUpdate', (event: TYInfoUpdateType) =>{
|
|
78
|
+
console.log(event, 'event')
|
|
79
|
+
const groupDevices = store.getState().ldvModules.uaGroupInfo.groupDevices
|
|
80
|
+
const newGroupDevices = cloneDeep(groupDevices).map(device => {
|
|
81
|
+
if(device.deviceId.indexOf(event.devId) !== -1){
|
|
82
|
+
return{
|
|
83
|
+
...device,
|
|
84
|
+
status: event.online ? 1 : 0
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
return device
|
|
88
|
+
})
|
|
89
|
+
store.dispatch(setGroupDevices(newGroupDevices))
|
|
72
90
|
})
|
|
73
91
|
}
|
|
74
92
|
|
|
@@ -79,6 +97,6 @@ export const removeListener = () => {
|
|
|
79
97
|
groupFeatureListener && groupFeatureListener.remove()
|
|
80
98
|
groupFeatureListener = null
|
|
81
99
|
|
|
82
|
-
|
|
83
|
-
|
|
100
|
+
groupDeviceListener && groupDeviceListener.remove()
|
|
101
|
+
groupDeviceListener = null
|
|
84
102
|
}
|
package/src/i18n/strings.ts
CHANGED
|
@@ -601,7 +601,11 @@ export default {
|
|
|
601
601
|
contact_sensor_battery_state3: "Bajo",
|
|
602
602
|
ldv_pir_sensitivity: "PIR Sensitivity",
|
|
603
603
|
ldv_pir_delay: "PIR Delay",
|
|
604
|
-
ldv_second: "Second"
|
|
604
|
+
ldv_second: "Second",
|
|
605
|
+
conflict_dialog_active_item_timeschedule_titel: "¿Realmente quieres activar este horario?",
|
|
606
|
+
group_conflict_feature: "Note that all the conflicting schedules (if any) will be deactivated.",
|
|
607
|
+
registration_dialog_button_yes: "Sí",
|
|
608
|
+
registration_dialog_button_no: "No"
|
|
605
609
|
},
|
|
606
610
|
ar: {
|
|
607
611
|
add_new_dynamic_mood_color_changing_mode_value: "التدرج",
|
|
@@ -1205,7 +1209,11 @@ export default {
|
|
|
1205
1209
|
contact_sensor_battery_state3: "منخفض",
|
|
1206
1210
|
ldv_pir_sensitivity: "PIR Sensitivity",
|
|
1207
1211
|
ldv_pir_delay: "PIR Delay",
|
|
1208
|
-
ldv_second: "Second"
|
|
1212
|
+
ldv_second: "Second",
|
|
1213
|
+
conflict_dialog_active_item_timeschedule_titel: "هل تريد حقًا تفعيل هذا الجدول الزمني؟",
|
|
1214
|
+
group_conflict_feature: "Note that all the conflicting schedules (if any) will be deactivated.",
|
|
1215
|
+
registration_dialog_button_yes: "نعم",
|
|
1216
|
+
registration_dialog_button_no: "لا"
|
|
1209
1217
|
},
|
|
1210
1218
|
cs: {
|
|
1211
1219
|
add_new_dynamic_mood_color_changing_mode_value: "Gradient",
|
|
@@ -1809,7 +1817,11 @@ export default {
|
|
|
1809
1817
|
contact_sensor_battery_state3: "Nízká",
|
|
1810
1818
|
ldv_pir_sensitivity: "PIR Sensitivity",
|
|
1811
1819
|
ldv_pir_delay: "PIR Delay",
|
|
1812
|
-
ldv_second: "Second"
|
|
1820
|
+
ldv_second: "Second",
|
|
1821
|
+
conflict_dialog_active_item_timeschedule_titel: "Opravdu chcete tento časový rozvrh aktivovat?",
|
|
1822
|
+
group_conflict_feature: "Note that all the conflicting schedules (if any) will be deactivated.",
|
|
1823
|
+
registration_dialog_button_yes: "Ano",
|
|
1824
|
+
registration_dialog_button_no: "Ne"
|
|
1813
1825
|
},
|
|
1814
1826
|
en: {
|
|
1815
1827
|
add_new_dynamic_mood_color_changing_mode_value: "Gradient",
|
|
@@ -2413,7 +2425,11 @@ export default {
|
|
|
2413
2425
|
contact_sensor_battery_state3: "Low",
|
|
2414
2426
|
ldv_pir_sensitivity: "PIR Sensitivity",
|
|
2415
2427
|
ldv_pir_delay: "PIR Delay",
|
|
2416
|
-
ldv_second: "Second"
|
|
2428
|
+
ldv_second: "Second",
|
|
2429
|
+
conflict_dialog_active_item_timeschedule_titel: "Do you really want to activate this time schedule?",
|
|
2430
|
+
group_conflict_feature: "Note that all the conflicting schedules (if any) will be deactivated.",
|
|
2431
|
+
registration_dialog_button_yes: "Yes",
|
|
2432
|
+
registration_dialog_button_no: "No"
|
|
2417
2433
|
},
|
|
2418
2434
|
bg: {
|
|
2419
2435
|
add_new_dynamic_mood_color_changing_mode_value: "Градиент",
|
|
@@ -3017,7 +3033,11 @@ export default {
|
|
|
3017
3033
|
contact_sensor_battery_state3: "Нисък",
|
|
3018
3034
|
ldv_pir_sensitivity: "PIR Sensitivity",
|
|
3019
3035
|
ldv_pir_delay: "PIR Delay",
|
|
3020
|
-
ldv_second: "Second"
|
|
3036
|
+
ldv_second: "Second",
|
|
3037
|
+
conflict_dialog_active_item_timeschedule_titel: "Наистина ли искате да активирате този часови график?",
|
|
3038
|
+
group_conflict_feature: "Note that all the conflicting schedules (if any) will be deactivated.",
|
|
3039
|
+
registration_dialog_button_yes: "Да",
|
|
3040
|
+
registration_dialog_button_no: "Не"
|
|
3021
3041
|
},
|
|
3022
3042
|
da: {
|
|
3023
3043
|
add_new_dynamic_mood_color_changing_mode_value: "Gradvist",
|
|
@@ -3621,7 +3641,11 @@ export default {
|
|
|
3621
3641
|
contact_sensor_battery_state3: "Lav",
|
|
3622
3642
|
ldv_pir_sensitivity: "PIR Sensitivity",
|
|
3623
3643
|
ldv_pir_delay: "PIR Delay",
|
|
3624
|
-
ldv_second: "Second"
|
|
3644
|
+
ldv_second: "Second",
|
|
3645
|
+
conflict_dialog_active_item_timeschedule_titel: "Ønsker du at aktivere denne tidsplan?",
|
|
3646
|
+
group_conflict_feature: "Note that all the conflicting schedules (if any) will be deactivated.",
|
|
3647
|
+
registration_dialog_button_yes: "Ja",
|
|
3648
|
+
registration_dialog_button_no: "Nej"
|
|
3625
3649
|
},
|
|
3626
3650
|
de: {
|
|
3627
3651
|
add_new_dynamic_mood_color_changing_mode_value: "Fließend",
|
|
@@ -4225,7 +4249,11 @@ export default {
|
|
|
4225
4249
|
contact_sensor_battery_state3: "Niedrig",
|
|
4226
4250
|
ldv_pir_sensitivity: "PIR Sensitivity",
|
|
4227
4251
|
ldv_pir_delay: "PIR Delay",
|
|
4228
|
-
ldv_second: "Second"
|
|
4252
|
+
ldv_second: "Second",
|
|
4253
|
+
conflict_dialog_active_item_timeschedule_titel: "Möchtest Du diesen Zeitplan wirklich aktivieren?",
|
|
4254
|
+
group_conflict_feature: "Note that all the conflicting schedules (if any) will be deactivated.",
|
|
4255
|
+
registration_dialog_button_yes: "Ja",
|
|
4256
|
+
registration_dialog_button_no: "Nein"
|
|
4229
4257
|
},
|
|
4230
4258
|
el: {
|
|
4231
4259
|
add_new_dynamic_mood_color_changing_mode_value: "Διαβάθμιση",
|
|
@@ -4829,7 +4857,11 @@ export default {
|
|
|
4829
4857
|
contact_sensor_battery_state3: "Χαμηλή",
|
|
4830
4858
|
ldv_pir_sensitivity: "PIR Sensitivity",
|
|
4831
4859
|
ldv_pir_delay: "PIR Delay",
|
|
4832
|
-
ldv_second: "Second"
|
|
4860
|
+
ldv_second: "Second",
|
|
4861
|
+
conflict_dialog_active_item_timeschedule_titel: "Θέλετε πραγματικά να ενεργοποιήσετε αυτό το χρονοδιάγραμμα;",
|
|
4862
|
+
group_conflict_feature: "Note that all the conflicting schedules (if any) will be deactivated.",
|
|
4863
|
+
registration_dialog_button_yes: "Ναι",
|
|
4864
|
+
registration_dialog_button_no: "Οχι"
|
|
4833
4865
|
},
|
|
4834
4866
|
es: {
|
|
4835
4867
|
add_new_dynamic_mood_color_changing_mode_value: "Gradiente",
|
|
@@ -5433,7 +5465,11 @@ export default {
|
|
|
5433
5465
|
contact_sensor_battery_state3: "Bajo",
|
|
5434
5466
|
ldv_pir_sensitivity: "PIR Sensitivity",
|
|
5435
5467
|
ldv_pir_delay: "PIR Delay",
|
|
5436
|
-
ldv_second: "Second"
|
|
5468
|
+
ldv_second: "Second",
|
|
5469
|
+
conflict_dialog_active_item_timeschedule_titel: "¿Realmente quieres activar este horario?",
|
|
5470
|
+
group_conflict_feature: "Note that all the conflicting schedules (if any) will be deactivated.",
|
|
5471
|
+
registration_dialog_button_yes: "Sí",
|
|
5472
|
+
registration_dialog_button_no: "No"
|
|
5437
5473
|
},
|
|
5438
5474
|
et: {
|
|
5439
5475
|
add_new_dynamic_mood_color_changing_mode_value: "Muutmisaste",
|
|
@@ -6037,7 +6073,11 @@ export default {
|
|
|
6037
6073
|
contact_sensor_battery_state3: "Madal",
|
|
6038
6074
|
ldv_pir_sensitivity: "PIR Sensitivity",
|
|
6039
6075
|
ldv_pir_delay: "PIR Delay",
|
|
6040
|
-
ldv_second: "Second"
|
|
6076
|
+
ldv_second: "Second",
|
|
6077
|
+
conflict_dialog_active_item_timeschedule_titel: "Kas soovid tõesti selle ajakava aktiveerida?",
|
|
6078
|
+
group_conflict_feature: "Note that all the conflicting schedules (if any) will be deactivated.",
|
|
6079
|
+
registration_dialog_button_yes: "Jah",
|
|
6080
|
+
registration_dialog_button_no: "Ei"
|
|
6041
6081
|
},
|
|
6042
6082
|
fi: {
|
|
6043
6083
|
add_new_dynamic_mood_color_changing_mode_value: "Liukuva",
|
|
@@ -6641,7 +6681,11 @@ export default {
|
|
|
6641
6681
|
contact_sensor_battery_state3: "Matala",
|
|
6642
6682
|
ldv_pir_sensitivity: "PIR Sensitivity",
|
|
6643
6683
|
ldv_pir_delay: "PIR Delay",
|
|
6644
|
-
ldv_second: "Second"
|
|
6684
|
+
ldv_second: "Second",
|
|
6685
|
+
conflict_dialog_active_item_timeschedule_titel: "Haluatko todella aktivoida tämän aikataulun?",
|
|
6686
|
+
group_conflict_feature: "Note that all the conflicting schedules (if any) will be deactivated.",
|
|
6687
|
+
registration_dialog_button_yes: "Kyllä",
|
|
6688
|
+
registration_dialog_button_no: "Ei"
|
|
6645
6689
|
},
|
|
6646
6690
|
fr: {
|
|
6647
6691
|
add_new_dynamic_mood_color_changing_mode_value: "Fluide",
|
|
@@ -7245,7 +7289,11 @@ export default {
|
|
|
7245
7289
|
contact_sensor_battery_state3: "Faible",
|
|
7246
7290
|
ldv_pir_sensitivity: "PIR Sensitivity",
|
|
7247
7291
|
ldv_pir_delay: "PIR Delay",
|
|
7248
|
-
ldv_second: "Second"
|
|
7292
|
+
ldv_second: "Second",
|
|
7293
|
+
conflict_dialog_active_item_timeschedule_titel: "Voulez-vous vraiment activer ce calendrier ?",
|
|
7294
|
+
group_conflict_feature: "Note that all the conflicting schedules (if any) will be deactivated.",
|
|
7295
|
+
registration_dialog_button_yes: "Oui",
|
|
7296
|
+
registration_dialog_button_no: "Non"
|
|
7249
7297
|
},
|
|
7250
7298
|
hr: {
|
|
7251
7299
|
add_new_dynamic_mood_color_changing_mode_value: "Prijelaz",
|
|
@@ -7849,7 +7897,11 @@ export default {
|
|
|
7849
7897
|
contact_sensor_battery_state3: "Nisko",
|
|
7850
7898
|
ldv_pir_sensitivity: "PIR Sensitivity",
|
|
7851
7899
|
ldv_pir_delay: "PIR Delay",
|
|
7852
|
-
ldv_second: "Second"
|
|
7900
|
+
ldv_second: "Second",
|
|
7901
|
+
conflict_dialog_active_item_timeschedule_titel: "Želite li stvarno aktivirati ovaj vremenski raspored?",
|
|
7902
|
+
group_conflict_feature: "Note that all the conflicting schedules (if any) will be deactivated.",
|
|
7903
|
+
registration_dialog_button_yes: "Da",
|
|
7904
|
+
registration_dialog_button_no: "Ne"
|
|
7853
7905
|
},
|
|
7854
7906
|
hu: {
|
|
7855
7907
|
add_new_dynamic_mood_color_changing_mode_value: "Átmenet",
|
|
@@ -8453,7 +8505,11 @@ export default {
|
|
|
8453
8505
|
contact_sensor_battery_state3: "Alacsony",
|
|
8454
8506
|
ldv_pir_sensitivity: "PIR Sensitivity",
|
|
8455
8507
|
ldv_pir_delay: "PIR Delay",
|
|
8456
|
-
ldv_second: "Second"
|
|
8508
|
+
ldv_second: "Second",
|
|
8509
|
+
conflict_dialog_active_item_timeschedule_titel: "Biztosan aktiválni szeretné ezt az ütemezést?",
|
|
8510
|
+
group_conflict_feature: "Note that all the conflicting schedules (if any) will be deactivated.",
|
|
8511
|
+
registration_dialog_button_yes: "Igen",
|
|
8512
|
+
registration_dialog_button_no: "Nem"
|
|
8457
8513
|
},
|
|
8458
8514
|
it: {
|
|
8459
8515
|
add_new_dynamic_mood_color_changing_mode_value: "Fluido",
|
|
@@ -9057,7 +9113,11 @@ export default {
|
|
|
9057
9113
|
contact_sensor_battery_state3: "Basso",
|
|
9058
9114
|
ldv_pir_sensitivity: "PIR Sensitivity",
|
|
9059
9115
|
ldv_pir_delay: "PIR Delay",
|
|
9060
|
-
ldv_second: "Second"
|
|
9116
|
+
ldv_second: "Second",
|
|
9117
|
+
conflict_dialog_active_item_timeschedule_titel: "Stai per attivare questo programma orario. Confermi?",
|
|
9118
|
+
group_conflict_feature: "Note that all the conflicting schedules (if any) will be deactivated.",
|
|
9119
|
+
registration_dialog_button_yes: "Sì",
|
|
9120
|
+
registration_dialog_button_no: "No"
|
|
9061
9121
|
},
|
|
9062
9122
|
ko: {
|
|
9063
9123
|
add_new_dynamic_mood_color_changing_mode_value: "그래디언트",
|
|
@@ -9661,7 +9721,11 @@ export default {
|
|
|
9661
9721
|
contact_sensor_battery_state3: "낮음",
|
|
9662
9722
|
ldv_pir_sensitivity: "PIR Sensitivity",
|
|
9663
9723
|
ldv_pir_delay: "PIR Delay",
|
|
9664
|
-
ldv_second: "Second"
|
|
9724
|
+
ldv_second: "Second",
|
|
9725
|
+
conflict_dialog_active_item_timeschedule_titel: "이 일정을 활성화하시겠습니까?",
|
|
9726
|
+
group_conflict_feature: "Note that all the conflicting schedules (if any) will be deactivated.",
|
|
9727
|
+
registration_dialog_button_yes: "예",
|
|
9728
|
+
registration_dialog_button_no: "아니오"
|
|
9665
9729
|
},
|
|
9666
9730
|
lt: {
|
|
9667
9731
|
add_new_dynamic_mood_color_changing_mode_value: "Gradientas",
|
|
@@ -10265,7 +10329,11 @@ export default {
|
|
|
10265
10329
|
contact_sensor_battery_state3: "Žema",
|
|
10266
10330
|
ldv_pir_sensitivity: "PIR Sensitivity",
|
|
10267
10331
|
ldv_pir_delay: "PIR Delay",
|
|
10268
|
-
ldv_second: "Second"
|
|
10332
|
+
ldv_second: "Second",
|
|
10333
|
+
conflict_dialog_active_item_timeschedule_titel: "Ar tikrai norite įjungti šį grafiką?",
|
|
10334
|
+
group_conflict_feature: "Note that all the conflicting schedules (if any) will be deactivated.",
|
|
10335
|
+
registration_dialog_button_yes: "Taip",
|
|
10336
|
+
registration_dialog_button_no: "Ne"
|
|
10269
10337
|
},
|
|
10270
10338
|
lv: {
|
|
10271
10339
|
add_new_dynamic_mood_color_changing_mode_value: "Gradients",
|
|
@@ -10869,7 +10937,11 @@ export default {
|
|
|
10869
10937
|
contact_sensor_battery_state3: "Zema",
|
|
10870
10938
|
ldv_pir_sensitivity: "PIR Sensitivity",
|
|
10871
10939
|
ldv_pir_delay: "PIR Delay",
|
|
10872
|
-
ldv_second: "Second"
|
|
10940
|
+
ldv_second: "Second",
|
|
10941
|
+
conflict_dialog_active_item_timeschedule_titel: "Vai tiešām vēlaties aktivizēt šo laika grafiku?",
|
|
10942
|
+
group_conflict_feature: "Note that all the conflicting schedules (if any) will be deactivated.",
|
|
10943
|
+
registration_dialog_button_yes: "Jā",
|
|
10944
|
+
registration_dialog_button_no: "Nē"
|
|
10873
10945
|
},
|
|
10874
10946
|
nb: {
|
|
10875
10947
|
add_new_dynamic_mood_color_changing_mode_value: "Gradient",
|
|
@@ -11473,7 +11545,11 @@ export default {
|
|
|
11473
11545
|
contact_sensor_battery_state3: "Lav",
|
|
11474
11546
|
ldv_pir_sensitivity: "PIR Sensitivity",
|
|
11475
11547
|
ldv_pir_delay: "PIR Delay",
|
|
11476
|
-
ldv_second: "Second"
|
|
11548
|
+
ldv_second: "Second",
|
|
11549
|
+
conflict_dialog_active_item_timeschedule_titel: "Vil du virkelig aktivere denne tidsplanen?",
|
|
11550
|
+
group_conflict_feature: "Note that all the conflicting schedules (if any) will be deactivated.",
|
|
11551
|
+
registration_dialog_button_yes: "Ja",
|
|
11552
|
+
registration_dialog_button_no: "Nei"
|
|
11477
11553
|
},
|
|
11478
11554
|
nl: {
|
|
11479
11555
|
add_new_dynamic_mood_color_changing_mode_value: "Verloop",
|
|
@@ -12077,7 +12153,11 @@ export default {
|
|
|
12077
12153
|
contact_sensor_battery_state3: "Laag",
|
|
12078
12154
|
ldv_pir_sensitivity: "PIR Sensitivity",
|
|
12079
12155
|
ldv_pir_delay: "PIR Delay",
|
|
12080
|
-
ldv_second: "Second"
|
|
12156
|
+
ldv_second: "Second",
|
|
12157
|
+
conflict_dialog_active_item_timeschedule_titel: "Wilt u dit tijdschema echt activeren?",
|
|
12158
|
+
group_conflict_feature: "Note that all the conflicting schedules (if any) will be deactivated.",
|
|
12159
|
+
registration_dialog_button_yes: "Ja",
|
|
12160
|
+
registration_dialog_button_no: "Nee"
|
|
12081
12161
|
},
|
|
12082
12162
|
pl: {
|
|
12083
12163
|
add_new_dynamic_mood_color_changing_mode_value: "Gradient",
|
|
@@ -12681,7 +12761,11 @@ export default {
|
|
|
12681
12761
|
contact_sensor_battery_state3: "Niski",
|
|
12682
12762
|
ldv_pir_sensitivity: "PIR Sensitivity",
|
|
12683
12763
|
ldv_pir_delay: "PIR Delay",
|
|
12684
|
-
ldv_second: "Second"
|
|
12764
|
+
ldv_second: "Second",
|
|
12765
|
+
conflict_dialog_active_item_timeschedule_titel: "Czy naprawdę chcesz aktywować ten harmonogram?",
|
|
12766
|
+
group_conflict_feature: "Note that all the conflicting schedules (if any) will be deactivated.",
|
|
12767
|
+
registration_dialog_button_yes: "Tak",
|
|
12768
|
+
registration_dialog_button_no: "Nie"
|
|
12685
12769
|
},
|
|
12686
12770
|
'pt-BR': {
|
|
12687
12771
|
add_new_dynamic_mood_color_changing_mode_value: "Gradiente",
|
|
@@ -13285,7 +13369,11 @@ export default {
|
|
|
13285
13369
|
contact_sensor_battery_state3: "Baixo",
|
|
13286
13370
|
ldv_pir_sensitivity: "PIR Sensitivity",
|
|
13287
13371
|
ldv_pir_delay: "PIR Delay",
|
|
13288
|
-
ldv_second: "Second"
|
|
13372
|
+
ldv_second: "Second",
|
|
13373
|
+
conflict_dialog_active_item_timeschedule_titel: "Você realmente deseja ativar esse cronograma?",
|
|
13374
|
+
group_conflict_feature: "Note that all the conflicting schedules (if any) will be deactivated.",
|
|
13375
|
+
registration_dialog_button_yes: "Sim",
|
|
13376
|
+
registration_dialog_button_no: "Não"
|
|
13289
13377
|
},
|
|
13290
13378
|
'pt_BR': {
|
|
13291
13379
|
add_new_dynamic_mood_color_changing_mode_value: "Gradiente",
|
|
@@ -13889,7 +13977,11 @@ export default {
|
|
|
13889
13977
|
contact_sensor_battery_state3: "Baixo",
|
|
13890
13978
|
ldv_pir_sensitivity: "PIR Sensitivity",
|
|
13891
13979
|
ldv_pir_delay: "PIR Delay",
|
|
13892
|
-
ldv_second: "Second"
|
|
13980
|
+
ldv_second: "Second",
|
|
13981
|
+
conflict_dialog_active_item_timeschedule_titel: "Você realmente deseja ativar esse cronograma?",
|
|
13982
|
+
group_conflict_feature: "Note that all the conflicting schedules (if any) will be deactivated.",
|
|
13983
|
+
registration_dialog_button_yes: "Sim",
|
|
13984
|
+
registration_dialog_button_no: "Não"
|
|
13893
13985
|
},
|
|
13894
13986
|
ro: {
|
|
13895
13987
|
add_new_dynamic_mood_color_changing_mode_value: "Gradient",
|
|
@@ -14493,7 +14585,11 @@ export default {
|
|
|
14493
14585
|
contact_sensor_battery_state3: "Redus",
|
|
14494
14586
|
ldv_pir_sensitivity: "PIR Sensitivity",
|
|
14495
14587
|
ldv_pir_delay: "PIR Delay",
|
|
14496
|
-
ldv_second: "Second"
|
|
14588
|
+
ldv_second: "Second",
|
|
14589
|
+
conflict_dialog_active_item_timeschedule_titel: "Sigur doriți să activați acest program?",
|
|
14590
|
+
group_conflict_feature: "Note that all the conflicting schedules (if any) will be deactivated.",
|
|
14591
|
+
registration_dialog_button_yes: "Da",
|
|
14592
|
+
registration_dialog_button_no: "Nu"
|
|
14497
14593
|
},
|
|
14498
14594
|
ru: {
|
|
14499
14595
|
add_new_dynamic_mood_color_changing_mode_value: "Градиент",
|
|
@@ -15097,7 +15193,11 @@ export default {
|
|
|
15097
15193
|
contact_sensor_battery_state3: "Низкий",
|
|
15098
15194
|
ldv_pir_sensitivity: "PIR Sensitivity",
|
|
15099
15195
|
ldv_pir_delay: "PIR Delay",
|
|
15100
|
-
ldv_second: "Second"
|
|
15196
|
+
ldv_second: "Second",
|
|
15197
|
+
conflict_dialog_active_item_timeschedule_titel: "Вы действительно хотите активировать это расписание?",
|
|
15198
|
+
group_conflict_feature: "Note that all the conflicting schedules (if any) will be deactivated.",
|
|
15199
|
+
registration_dialog_button_yes: "Да",
|
|
15200
|
+
registration_dialog_button_no: "Нет"
|
|
15101
15201
|
},
|
|
15102
15202
|
sk: {
|
|
15103
15203
|
add_new_dynamic_mood_color_changing_mode_value: "Prechod",
|
|
@@ -15701,7 +15801,11 @@ export default {
|
|
|
15701
15801
|
contact_sensor_battery_state3: "Nízke",
|
|
15702
15802
|
ldv_pir_sensitivity: "PIR Sensitivity",
|
|
15703
15803
|
ldv_pir_delay: "PIR Delay",
|
|
15704
|
-
ldv_second: "Second"
|
|
15804
|
+
ldv_second: "Second",
|
|
15805
|
+
conflict_dialog_active_item_timeschedule_titel: "Naozaj chcete aktivovať tento časový plán?",
|
|
15806
|
+
group_conflict_feature: "Note that all the conflicting schedules (if any) will be deactivated.",
|
|
15807
|
+
registration_dialog_button_yes: "Áno",
|
|
15808
|
+
registration_dialog_button_no: "Nie"
|
|
15705
15809
|
},
|
|
15706
15810
|
sv: {
|
|
15707
15811
|
add_new_dynamic_mood_color_changing_mode_value: "Toning",
|
|
@@ -16305,7 +16409,11 @@ export default {
|
|
|
16305
16409
|
contact_sensor_battery_state3: "Låg",
|
|
16306
16410
|
ldv_pir_sensitivity: "PIR Sensitivity",
|
|
16307
16411
|
ldv_pir_delay: "PIR Delay",
|
|
16308
|
-
ldv_second: "Second"
|
|
16412
|
+
ldv_second: "Second",
|
|
16413
|
+
conflict_dialog_active_item_timeschedule_titel: "Vill du verkligen aktivera detta tidsschema?",
|
|
16414
|
+
group_conflict_feature: "Note that all the conflicting schedules (if any) will be deactivated.",
|
|
16415
|
+
registration_dialog_button_yes: "Ja",
|
|
16416
|
+
registration_dialog_button_no: "Nej"
|
|
16309
16417
|
},
|
|
16310
16418
|
tr: {
|
|
16311
16419
|
add_new_dynamic_mood_color_changing_mode_value: "Gradyan",
|
|
@@ -16909,7 +17017,11 @@ export default {
|
|
|
16909
17017
|
contact_sensor_battery_state3: "Düşük",
|
|
16910
17018
|
ldv_pir_sensitivity: "PIR Sensitivity",
|
|
16911
17019
|
ldv_pir_delay: "PIR Delay",
|
|
16912
|
-
ldv_second: "Second"
|
|
17020
|
+
ldv_second: "Second",
|
|
17021
|
+
conflict_dialog_active_item_timeschedule_titel: "Bu zaman çizelgesini gerçekten etkinleştirmek istiyor musunuz?",
|
|
17022
|
+
group_conflict_feature: "Note that all the conflicting schedules (if any) will be deactivated.",
|
|
17023
|
+
registration_dialog_button_yes: "Evet",
|
|
17024
|
+
registration_dialog_button_no: "Hayır"
|
|
16913
17025
|
},
|
|
16914
17026
|
uk: {
|
|
16915
17027
|
add_new_dynamic_mood_color_changing_mode_value: "Градієнт",
|
|
@@ -17513,6 +17625,10 @@ export default {
|
|
|
17513
17625
|
contact_sensor_battery_state3: "Низький",
|
|
17514
17626
|
ldv_pir_sensitivity: "PIR Sensitivity",
|
|
17515
17627
|
ldv_pir_delay: "PIR Delay",
|
|
17516
|
-
ldv_second: "Second"
|
|
17628
|
+
ldv_second: "Second",
|
|
17629
|
+
conflict_dialog_active_item_timeschedule_titel: "Ви дійсно хочете активувати цей розклад?",
|
|
17630
|
+
group_conflict_feature: "Зверніть увагу, що всі конфліктні графіки (якщо такі є) будуть деактивовані.",
|
|
17631
|
+
registration_dialog_button_yes: "Так",
|
|
17632
|
+
registration_dialog_button_no: "Ні"
|
|
17517
17633
|
}
|
|
17518
17634
|
}
|