@ledvance/base 1.2.36 → 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 +321 -31
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
|
@@ -595,7 +595,17 @@ export default {
|
|
|
595
595
|
flag_canceladding: "Do you really want to cancel adding a new flag?",
|
|
596
596
|
flag_cancelinfo: "Note that your input will be lost if you cancel adding a new flag.",
|
|
597
597
|
flag_canceledit: "Note that your changes will be lost if you leave edit the flag.",
|
|
598
|
-
flag_leverkusen: "Leverkusen"
|
|
598
|
+
flag_leverkusen: "Leverkusen",
|
|
599
|
+
contact_sensor_battery_state1: "Alto",
|
|
600
|
+
contact_sensor_battery_state2: "Medio",
|
|
601
|
+
contact_sensor_battery_state3: "Bajo",
|
|
602
|
+
ldv_pir_sensitivity: "PIR Sensitivity",
|
|
603
|
+
ldv_pir_delay: "PIR Delay",
|
|
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"
|
|
599
609
|
},
|
|
600
610
|
ar: {
|
|
601
611
|
add_new_dynamic_mood_color_changing_mode_value: "التدرج",
|
|
@@ -1193,7 +1203,17 @@ export default {
|
|
|
1193
1203
|
flag_canceladding: "Do you really want to cancel adding a new flag?",
|
|
1194
1204
|
flag_cancelinfo: "Note that your input will be lost if you cancel adding a new flag.",
|
|
1195
1205
|
flag_canceledit: "Note that your changes will be lost if you leave edit the flag.",
|
|
1196
|
-
flag_leverkusen: "Leverkusen"
|
|
1206
|
+
flag_leverkusen: "Leverkusen",
|
|
1207
|
+
contact_sensor_battery_state1: "مرتفع",
|
|
1208
|
+
contact_sensor_battery_state2: "وسط",
|
|
1209
|
+
contact_sensor_battery_state3: "منخفض",
|
|
1210
|
+
ldv_pir_sensitivity: "PIR Sensitivity",
|
|
1211
|
+
ldv_pir_delay: "PIR Delay",
|
|
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: "لا"
|
|
1197
1217
|
},
|
|
1198
1218
|
cs: {
|
|
1199
1219
|
add_new_dynamic_mood_color_changing_mode_value: "Gradient",
|
|
@@ -1791,7 +1811,17 @@ export default {
|
|
|
1791
1811
|
flag_canceladding: "Do you really want to cancel adding a new flag?",
|
|
1792
1812
|
flag_cancelinfo: "Note that your input will be lost if you cancel adding a new flag.",
|
|
1793
1813
|
flag_canceledit: "Note that your changes will be lost if you leave edit the flag.",
|
|
1794
|
-
flag_leverkusen: "Leverkusen"
|
|
1814
|
+
flag_leverkusen: "Leverkusen",
|
|
1815
|
+
contact_sensor_battery_state1: "Vysoká",
|
|
1816
|
+
contact_sensor_battery_state2: "Střední",
|
|
1817
|
+
contact_sensor_battery_state3: "Nízká",
|
|
1818
|
+
ldv_pir_sensitivity: "PIR Sensitivity",
|
|
1819
|
+
ldv_pir_delay: "PIR Delay",
|
|
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"
|
|
1795
1825
|
},
|
|
1796
1826
|
en: {
|
|
1797
1827
|
add_new_dynamic_mood_color_changing_mode_value: "Gradient",
|
|
@@ -2389,7 +2419,17 @@ export default {
|
|
|
2389
2419
|
flag_canceladding: "Do you really want to cancel adding a new flag?",
|
|
2390
2420
|
flag_cancelinfo: "Note that your input will be lost if you cancel adding a new flag.",
|
|
2391
2421
|
flag_canceledit: "Note that your changes will be lost if you leave edit the flag.",
|
|
2392
|
-
flag_leverkusen: "Leverkusen"
|
|
2422
|
+
flag_leverkusen: "Leverkusen",
|
|
2423
|
+
contact_sensor_battery_state1: "High",
|
|
2424
|
+
contact_sensor_battery_state2: "Middle",
|
|
2425
|
+
contact_sensor_battery_state3: "Low",
|
|
2426
|
+
ldv_pir_sensitivity: "PIR Sensitivity",
|
|
2427
|
+
ldv_pir_delay: "PIR Delay",
|
|
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"
|
|
2393
2433
|
},
|
|
2394
2434
|
bg: {
|
|
2395
2435
|
add_new_dynamic_mood_color_changing_mode_value: "Градиент",
|
|
@@ -2987,7 +3027,17 @@ export default {
|
|
|
2987
3027
|
flag_canceladding: "Do you really want to cancel adding a new flag?",
|
|
2988
3028
|
flag_cancelinfo: "Note that your input will be lost if you cancel adding a new flag.",
|
|
2989
3029
|
flag_canceledit: "Note that your changes will be lost if you leave edit the flag.",
|
|
2990
|
-
flag_leverkusen: "Leverkusen"
|
|
3030
|
+
flag_leverkusen: "Leverkusen",
|
|
3031
|
+
contact_sensor_battery_state1: "Висок",
|
|
3032
|
+
contact_sensor_battery_state2: "Среден",
|
|
3033
|
+
contact_sensor_battery_state3: "Нисък",
|
|
3034
|
+
ldv_pir_sensitivity: "PIR Sensitivity",
|
|
3035
|
+
ldv_pir_delay: "PIR Delay",
|
|
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: "Не"
|
|
2991
3041
|
},
|
|
2992
3042
|
da: {
|
|
2993
3043
|
add_new_dynamic_mood_color_changing_mode_value: "Gradvist",
|
|
@@ -3585,7 +3635,17 @@ export default {
|
|
|
3585
3635
|
flag_canceladding: "Do you really want to cancel adding a new flag?",
|
|
3586
3636
|
flag_cancelinfo: "Note that your input will be lost if you cancel adding a new flag.",
|
|
3587
3637
|
flag_canceledit: "Note that your changes will be lost if you leave edit the flag.",
|
|
3588
|
-
flag_leverkusen: "Leverkusen"
|
|
3638
|
+
flag_leverkusen: "Leverkusen",
|
|
3639
|
+
contact_sensor_battery_state1: "Høj",
|
|
3640
|
+
contact_sensor_battery_state2: "Mellem",
|
|
3641
|
+
contact_sensor_battery_state3: "Lav",
|
|
3642
|
+
ldv_pir_sensitivity: "PIR Sensitivity",
|
|
3643
|
+
ldv_pir_delay: "PIR Delay",
|
|
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"
|
|
3589
3649
|
},
|
|
3590
3650
|
de: {
|
|
3591
3651
|
add_new_dynamic_mood_color_changing_mode_value: "Fließend",
|
|
@@ -4176,14 +4236,24 @@ export default {
|
|
|
4176
4236
|
month_short_october: "Okt",
|
|
4177
4237
|
month_short_september: "Sep",
|
|
4178
4238
|
consumption_data_annual_bar_chart_text: "Einheit: kWh",
|
|
4179
|
-
flag_addanewflag: "
|
|
4180
|
-
flag_edittheflag: "
|
|
4239
|
+
flag_addanewflag: "Neue Flagge hinzufügen",
|
|
4240
|
+
flag_edittheflag: "Bearbeiten der Flagge",
|
|
4181
4241
|
flag_deleteflag: "Delete flag",
|
|
4182
4242
|
flag_deletepopup: "Do you really want to delete the flag?",
|
|
4183
4243
|
flag_canceladding: "Do you really want to cancel adding a new flag?",
|
|
4184
4244
|
flag_cancelinfo: "Note that your input will be lost if you cancel adding a new flag.",
|
|
4185
4245
|
flag_canceledit: "Note that your changes will be lost if you leave edit the flag.",
|
|
4186
|
-
flag_leverkusen: "Leverkusen"
|
|
4246
|
+
flag_leverkusen: "Leverkusen",
|
|
4247
|
+
contact_sensor_battery_state1: "Hoch",
|
|
4248
|
+
contact_sensor_battery_state2: "Mittel",
|
|
4249
|
+
contact_sensor_battery_state3: "Niedrig",
|
|
4250
|
+
ldv_pir_sensitivity: "PIR Sensitivity",
|
|
4251
|
+
ldv_pir_delay: "PIR Delay",
|
|
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"
|
|
4187
4257
|
},
|
|
4188
4258
|
el: {
|
|
4189
4259
|
add_new_dynamic_mood_color_changing_mode_value: "Διαβάθμιση",
|
|
@@ -4781,7 +4851,17 @@ export default {
|
|
|
4781
4851
|
flag_canceladding: "Do you really want to cancel adding a new flag?",
|
|
4782
4852
|
flag_cancelinfo: "Note that your input will be lost if you cancel adding a new flag.",
|
|
4783
4853
|
flag_canceledit: "Note that your changes will be lost if you leave edit the flag.",
|
|
4784
|
-
flag_leverkusen: "Leverkusen"
|
|
4854
|
+
flag_leverkusen: "Leverkusen",
|
|
4855
|
+
contact_sensor_battery_state1: "Υψηλή",
|
|
4856
|
+
contact_sensor_battery_state2: "Μεσαία",
|
|
4857
|
+
contact_sensor_battery_state3: "Χαμηλή",
|
|
4858
|
+
ldv_pir_sensitivity: "PIR Sensitivity",
|
|
4859
|
+
ldv_pir_delay: "PIR Delay",
|
|
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: "Οχι"
|
|
4785
4865
|
},
|
|
4786
4866
|
es: {
|
|
4787
4867
|
add_new_dynamic_mood_color_changing_mode_value: "Gradiente",
|
|
@@ -5379,7 +5459,17 @@ export default {
|
|
|
5379
5459
|
flag_canceladding: "Do you really want to cancel adding a new flag?",
|
|
5380
5460
|
flag_cancelinfo: "Note that your input will be lost if you cancel adding a new flag.",
|
|
5381
5461
|
flag_canceledit: "Note that your changes will be lost if you leave edit the flag.",
|
|
5382
|
-
flag_leverkusen: "Leverkusen"
|
|
5462
|
+
flag_leverkusen: "Leverkusen",
|
|
5463
|
+
contact_sensor_battery_state1: "Alto",
|
|
5464
|
+
contact_sensor_battery_state2: "Medio",
|
|
5465
|
+
contact_sensor_battery_state3: "Bajo",
|
|
5466
|
+
ldv_pir_sensitivity: "PIR Sensitivity",
|
|
5467
|
+
ldv_pir_delay: "PIR Delay",
|
|
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"
|
|
5383
5473
|
},
|
|
5384
5474
|
et: {
|
|
5385
5475
|
add_new_dynamic_mood_color_changing_mode_value: "Muutmisaste",
|
|
@@ -5977,7 +6067,17 @@ export default {
|
|
|
5977
6067
|
flag_canceladding: "Do you really want to cancel adding a new flag?",
|
|
5978
6068
|
flag_cancelinfo: "Note that your input will be lost if you cancel adding a new flag.",
|
|
5979
6069
|
flag_canceledit: "Note that your changes will be lost if you leave edit the flag.",
|
|
5980
|
-
flag_leverkusen: "Leverkusen"
|
|
6070
|
+
flag_leverkusen: "Leverkusen",
|
|
6071
|
+
contact_sensor_battery_state1: "Kõrge",
|
|
6072
|
+
contact_sensor_battery_state2: "Keskmine",
|
|
6073
|
+
contact_sensor_battery_state3: "Madal",
|
|
6074
|
+
ldv_pir_sensitivity: "PIR Sensitivity",
|
|
6075
|
+
ldv_pir_delay: "PIR Delay",
|
|
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"
|
|
5981
6081
|
},
|
|
5982
6082
|
fi: {
|
|
5983
6083
|
add_new_dynamic_mood_color_changing_mode_value: "Liukuva",
|
|
@@ -6575,7 +6675,17 @@ export default {
|
|
|
6575
6675
|
flag_canceladding: "Do you really want to cancel adding a new flag?",
|
|
6576
6676
|
flag_cancelinfo: "Note that your input will be lost if you cancel adding a new flag.",
|
|
6577
6677
|
flag_canceledit: "Note that your changes will be lost if you leave edit the flag.",
|
|
6578
|
-
flag_leverkusen: "Leverkusen"
|
|
6678
|
+
flag_leverkusen: "Leverkusen",
|
|
6679
|
+
contact_sensor_battery_state1: "Korkea",
|
|
6680
|
+
contact_sensor_battery_state2: "Keskellä",
|
|
6681
|
+
contact_sensor_battery_state3: "Matala",
|
|
6682
|
+
ldv_pir_sensitivity: "PIR Sensitivity",
|
|
6683
|
+
ldv_pir_delay: "PIR Delay",
|
|
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"
|
|
6579
6689
|
},
|
|
6580
6690
|
fr: {
|
|
6581
6691
|
add_new_dynamic_mood_color_changing_mode_value: "Fluide",
|
|
@@ -7173,7 +7283,17 @@ export default {
|
|
|
7173
7283
|
flag_canceladding: "Voulez-vous vraiment annuler l'ajout d'un nouveau drapeau ?",
|
|
7174
7284
|
flag_cancelinfo: "Notez que votre saisie sera perdue si vous annulez l'ajout d'un nouveau drapeau.",
|
|
7175
7285
|
flag_canceledit: "Note que tes modifications seront perdues si tu quittes l'édition du drapeau.",
|
|
7176
|
-
flag_leverkusen: "Leverkusen"
|
|
7286
|
+
flag_leverkusen: "Leverkusen",
|
|
7287
|
+
contact_sensor_battery_state1: "Élevé",
|
|
7288
|
+
contact_sensor_battery_state2: "Moyen",
|
|
7289
|
+
contact_sensor_battery_state3: "Faible",
|
|
7290
|
+
ldv_pir_sensitivity: "PIR Sensitivity",
|
|
7291
|
+
ldv_pir_delay: "PIR Delay",
|
|
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"
|
|
7177
7297
|
},
|
|
7178
7298
|
hr: {
|
|
7179
7299
|
add_new_dynamic_mood_color_changing_mode_value: "Prijelaz",
|
|
@@ -7771,7 +7891,17 @@ export default {
|
|
|
7771
7891
|
flag_canceladding: "Do you really want to cancel adding a new flag?",
|
|
7772
7892
|
flag_cancelinfo: "Note that your input will be lost if you cancel adding a new flag.",
|
|
7773
7893
|
flag_canceledit: "Note that your changes will be lost if you leave edit the flag.",
|
|
7774
|
-
flag_leverkusen: "Leverkusen"
|
|
7894
|
+
flag_leverkusen: "Leverkusen",
|
|
7895
|
+
contact_sensor_battery_state1: "Visoko",
|
|
7896
|
+
contact_sensor_battery_state2: "Sredina",
|
|
7897
|
+
contact_sensor_battery_state3: "Nisko",
|
|
7898
|
+
ldv_pir_sensitivity: "PIR Sensitivity",
|
|
7899
|
+
ldv_pir_delay: "PIR Delay",
|
|
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"
|
|
7775
7905
|
},
|
|
7776
7906
|
hu: {
|
|
7777
7907
|
add_new_dynamic_mood_color_changing_mode_value: "Átmenet",
|
|
@@ -8369,7 +8499,17 @@ export default {
|
|
|
8369
8499
|
flag_canceladding: "Do you really want to cancel adding a new flag?",
|
|
8370
8500
|
flag_cancelinfo: "Note that your input will be lost if you cancel adding a new flag.",
|
|
8371
8501
|
flag_canceledit: "Note that your changes will be lost if you leave edit the flag.",
|
|
8372
|
-
flag_leverkusen: "Leverkusen"
|
|
8502
|
+
flag_leverkusen: "Leverkusen",
|
|
8503
|
+
contact_sensor_battery_state1: "Magas",
|
|
8504
|
+
contact_sensor_battery_state2: "Közepes",
|
|
8505
|
+
contact_sensor_battery_state3: "Alacsony",
|
|
8506
|
+
ldv_pir_sensitivity: "PIR Sensitivity",
|
|
8507
|
+
ldv_pir_delay: "PIR Delay",
|
|
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"
|
|
8373
8513
|
},
|
|
8374
8514
|
it: {
|
|
8375
8515
|
add_new_dynamic_mood_color_changing_mode_value: "Fluido",
|
|
@@ -8967,7 +9107,17 @@ export default {
|
|
|
8967
9107
|
flag_canceladding: "Do you really want to cancel adding a new flag?",
|
|
8968
9108
|
flag_cancelinfo: "Note that your input will be lost if you cancel adding a new flag.",
|
|
8969
9109
|
flag_canceledit: "Note that your changes will be lost if you leave edit the flag.",
|
|
8970
|
-
flag_leverkusen: "Leverkusen"
|
|
9110
|
+
flag_leverkusen: "Leverkusen",
|
|
9111
|
+
contact_sensor_battery_state1: "Alto",
|
|
9112
|
+
contact_sensor_battery_state2: "Medio",
|
|
9113
|
+
contact_sensor_battery_state3: "Basso",
|
|
9114
|
+
ldv_pir_sensitivity: "PIR Sensitivity",
|
|
9115
|
+
ldv_pir_delay: "PIR Delay",
|
|
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"
|
|
8971
9121
|
},
|
|
8972
9122
|
ko: {
|
|
8973
9123
|
add_new_dynamic_mood_color_changing_mode_value: "그래디언트",
|
|
@@ -9565,7 +9715,17 @@ export default {
|
|
|
9565
9715
|
flag_canceladding: "Do you really want to cancel adding a new flag?",
|
|
9566
9716
|
flag_cancelinfo: "Note that your input will be lost if you cancel adding a new flag.",
|
|
9567
9717
|
flag_canceledit: "Note that your changes will be lost if you leave edit the flag.",
|
|
9568
|
-
flag_leverkusen: "Leverkusen"
|
|
9718
|
+
flag_leverkusen: "Leverkusen",
|
|
9719
|
+
contact_sensor_battery_state1: "높음",
|
|
9720
|
+
contact_sensor_battery_state2: "중간",
|
|
9721
|
+
contact_sensor_battery_state3: "낮음",
|
|
9722
|
+
ldv_pir_sensitivity: "PIR Sensitivity",
|
|
9723
|
+
ldv_pir_delay: "PIR Delay",
|
|
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: "아니오"
|
|
9569
9729
|
},
|
|
9570
9730
|
lt: {
|
|
9571
9731
|
add_new_dynamic_mood_color_changing_mode_value: "Gradientas",
|
|
@@ -10163,7 +10323,17 @@ export default {
|
|
|
10163
10323
|
flag_canceladding: "Do you really want to cancel adding a new flag?",
|
|
10164
10324
|
flag_cancelinfo: "Note that your input will be lost if you cancel adding a new flag.",
|
|
10165
10325
|
flag_canceledit: "Note that your changes will be lost if you leave edit the flag.",
|
|
10166
|
-
flag_leverkusen: "Leverkusen"
|
|
10326
|
+
flag_leverkusen: "Leverkusen",
|
|
10327
|
+
contact_sensor_battery_state1: "Aukšta",
|
|
10328
|
+
contact_sensor_battery_state2: "Vidutiniška",
|
|
10329
|
+
contact_sensor_battery_state3: "Žema",
|
|
10330
|
+
ldv_pir_sensitivity: "PIR Sensitivity",
|
|
10331
|
+
ldv_pir_delay: "PIR Delay",
|
|
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"
|
|
10167
10337
|
},
|
|
10168
10338
|
lv: {
|
|
10169
10339
|
add_new_dynamic_mood_color_changing_mode_value: "Gradients",
|
|
@@ -10761,7 +10931,17 @@ export default {
|
|
|
10761
10931
|
flag_canceladding: "Do you really want to cancel adding a new flag?",
|
|
10762
10932
|
flag_cancelinfo: "Note that your input will be lost if you cancel adding a new flag.",
|
|
10763
10933
|
flag_canceledit: "Note that your changes will be lost if you leave edit the flag.",
|
|
10764
|
-
flag_leverkusen: "Leverkusen"
|
|
10934
|
+
flag_leverkusen: "Leverkusen",
|
|
10935
|
+
contact_sensor_battery_state1: "Augsta",
|
|
10936
|
+
contact_sensor_battery_state2: "Vidēja",
|
|
10937
|
+
contact_sensor_battery_state3: "Zema",
|
|
10938
|
+
ldv_pir_sensitivity: "PIR Sensitivity",
|
|
10939
|
+
ldv_pir_delay: "PIR Delay",
|
|
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ē"
|
|
10765
10945
|
},
|
|
10766
10946
|
nb: {
|
|
10767
10947
|
add_new_dynamic_mood_color_changing_mode_value: "Gradient",
|
|
@@ -11359,7 +11539,17 @@ export default {
|
|
|
11359
11539
|
flag_canceladding: "Do you really want to cancel adding a new flag?",
|
|
11360
11540
|
flag_cancelinfo: "Note that your input will be lost if you cancel adding a new flag.",
|
|
11361
11541
|
flag_canceledit: "Note that your changes will be lost if you leave edit the flag.",
|
|
11362
|
-
flag_leverkusen: "Leverkusen"
|
|
11542
|
+
flag_leverkusen: "Leverkusen",
|
|
11543
|
+
contact_sensor_battery_state1: "Høy",
|
|
11544
|
+
contact_sensor_battery_state2: "Midten",
|
|
11545
|
+
contact_sensor_battery_state3: "Lav",
|
|
11546
|
+
ldv_pir_sensitivity: "PIR Sensitivity",
|
|
11547
|
+
ldv_pir_delay: "PIR Delay",
|
|
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"
|
|
11363
11553
|
},
|
|
11364
11554
|
nl: {
|
|
11365
11555
|
add_new_dynamic_mood_color_changing_mode_value: "Verloop",
|
|
@@ -11957,7 +12147,17 @@ export default {
|
|
|
11957
12147
|
flag_canceladding: "Do you really want to cancel adding a new flag?",
|
|
11958
12148
|
flag_cancelinfo: "Note that your input will be lost if you cancel adding a new flag.",
|
|
11959
12149
|
flag_canceledit: "Note that your changes will be lost if you leave edit the flag.",
|
|
11960
|
-
flag_leverkusen: "Leverkusen"
|
|
12150
|
+
flag_leverkusen: "Leverkusen",
|
|
12151
|
+
contact_sensor_battery_state1: "Hoog",
|
|
12152
|
+
contact_sensor_battery_state2: "Midden",
|
|
12153
|
+
contact_sensor_battery_state3: "Laag",
|
|
12154
|
+
ldv_pir_sensitivity: "PIR Sensitivity",
|
|
12155
|
+
ldv_pir_delay: "PIR Delay",
|
|
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"
|
|
11961
12161
|
},
|
|
11962
12162
|
pl: {
|
|
11963
12163
|
add_new_dynamic_mood_color_changing_mode_value: "Gradient",
|
|
@@ -12555,7 +12755,17 @@ export default {
|
|
|
12555
12755
|
flag_canceladding: "Do you really want to cancel adding a new flag?",
|
|
12556
12756
|
flag_cancelinfo: "Note that your input will be lost if you cancel adding a new flag.",
|
|
12557
12757
|
flag_canceledit: "Note that your changes will be lost if you leave edit the flag.",
|
|
12558
|
-
flag_leverkusen: "Leverkusen"
|
|
12758
|
+
flag_leverkusen: "Leverkusen",
|
|
12759
|
+
contact_sensor_battery_state1: "Wysoki",
|
|
12760
|
+
contact_sensor_battery_state2: "Średni",
|
|
12761
|
+
contact_sensor_battery_state3: "Niski",
|
|
12762
|
+
ldv_pir_sensitivity: "PIR Sensitivity",
|
|
12763
|
+
ldv_pir_delay: "PIR Delay",
|
|
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"
|
|
12559
12769
|
},
|
|
12560
12770
|
'pt-BR': {
|
|
12561
12771
|
add_new_dynamic_mood_color_changing_mode_value: "Gradiente",
|
|
@@ -13153,7 +13363,17 @@ export default {
|
|
|
13153
13363
|
flag_canceladding: "Você realmente quer cancelar a adição de uma nova bandeira?",
|
|
13154
13364
|
flag_cancelinfo: "Observe que sua entrada será perdida se você cancelar a adição de uma nova bandeira.",
|
|
13155
13365
|
flag_canceledit: "Observe que suas alterações serão perdidas se você deixar de editar a bandeira.",
|
|
13156
|
-
flag_leverkusen: "Leverkusen"
|
|
13366
|
+
flag_leverkusen: "Leverkusen",
|
|
13367
|
+
contact_sensor_battery_state1: "Alta",
|
|
13368
|
+
contact_sensor_battery_state2: "Meio",
|
|
13369
|
+
contact_sensor_battery_state3: "Baixo",
|
|
13370
|
+
ldv_pir_sensitivity: "PIR Sensitivity",
|
|
13371
|
+
ldv_pir_delay: "PIR Delay",
|
|
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"
|
|
13157
13377
|
},
|
|
13158
13378
|
'pt_BR': {
|
|
13159
13379
|
add_new_dynamic_mood_color_changing_mode_value: "Gradiente",
|
|
@@ -13751,7 +13971,17 @@ export default {
|
|
|
13751
13971
|
flag_canceladding: "Você realmente quer cancelar a adição de uma nova bandeira?",
|
|
13752
13972
|
flag_cancelinfo: "Observe que sua entrada será perdida se você cancelar a adição de uma nova bandeira.",
|
|
13753
13973
|
flag_canceledit: "Observe que suas alterações serão perdidas se você deixar de editar a bandeira.",
|
|
13754
|
-
flag_leverkusen: "Leverkusen"
|
|
13974
|
+
flag_leverkusen: "Leverkusen",
|
|
13975
|
+
contact_sensor_battery_state1: "Alta",
|
|
13976
|
+
contact_sensor_battery_state2: "Meio",
|
|
13977
|
+
contact_sensor_battery_state3: "Baixo",
|
|
13978
|
+
ldv_pir_sensitivity: "PIR Sensitivity",
|
|
13979
|
+
ldv_pir_delay: "PIR Delay",
|
|
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"
|
|
13755
13985
|
},
|
|
13756
13986
|
ro: {
|
|
13757
13987
|
add_new_dynamic_mood_color_changing_mode_value: "Gradient",
|
|
@@ -14349,7 +14579,17 @@ export default {
|
|
|
14349
14579
|
flag_canceladding: "Do you really want to cancel adding a new flag?",
|
|
14350
14580
|
flag_cancelinfo: "Note that your input will be lost if you cancel adding a new flag.",
|
|
14351
14581
|
flag_canceledit: "Note that your changes will be lost if you leave edit the flag.",
|
|
14352
|
-
flag_leverkusen: "Leverkusen"
|
|
14582
|
+
flag_leverkusen: "Leverkusen",
|
|
14583
|
+
contact_sensor_battery_state1: "Înalt",
|
|
14584
|
+
contact_sensor_battery_state2: "Mediu",
|
|
14585
|
+
contact_sensor_battery_state3: "Redus",
|
|
14586
|
+
ldv_pir_sensitivity: "PIR Sensitivity",
|
|
14587
|
+
ldv_pir_delay: "PIR Delay",
|
|
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"
|
|
14353
14593
|
},
|
|
14354
14594
|
ru: {
|
|
14355
14595
|
add_new_dynamic_mood_color_changing_mode_value: "Градиент",
|
|
@@ -14947,7 +15187,17 @@ export default {
|
|
|
14947
15187
|
flag_canceladding: "Do you really want to cancel adding a new flag?",
|
|
14948
15188
|
flag_cancelinfo: "Note that your input will be lost if you cancel adding a new flag.",
|
|
14949
15189
|
flag_canceledit: "Note that your changes will be lost if you leave edit the flag.",
|
|
14950
|
-
flag_leverkusen: "Leverkusen"
|
|
15190
|
+
flag_leverkusen: "Leverkusen",
|
|
15191
|
+
contact_sensor_battery_state1: "Высокий",
|
|
15192
|
+
contact_sensor_battery_state2: "Средний",
|
|
15193
|
+
contact_sensor_battery_state3: "Низкий",
|
|
15194
|
+
ldv_pir_sensitivity: "PIR Sensitivity",
|
|
15195
|
+
ldv_pir_delay: "PIR Delay",
|
|
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: "Нет"
|
|
14951
15201
|
},
|
|
14952
15202
|
sk: {
|
|
14953
15203
|
add_new_dynamic_mood_color_changing_mode_value: "Prechod",
|
|
@@ -15545,7 +15795,17 @@ export default {
|
|
|
15545
15795
|
flag_canceladding: "Do you really want to cancel adding a new flag?",
|
|
15546
15796
|
flag_cancelinfo: "Note that your input will be lost if you cancel adding a new flag.",
|
|
15547
15797
|
flag_canceledit: "Note that your changes will be lost if you leave edit the flag.",
|
|
15548
|
-
flag_leverkusen: "Leverkusen"
|
|
15798
|
+
flag_leverkusen: "Leverkusen",
|
|
15799
|
+
contact_sensor_battery_state1: "Vysoké",
|
|
15800
|
+
contact_sensor_battery_state2: "Stredné",
|
|
15801
|
+
contact_sensor_battery_state3: "Nízke",
|
|
15802
|
+
ldv_pir_sensitivity: "PIR Sensitivity",
|
|
15803
|
+
ldv_pir_delay: "PIR Delay",
|
|
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"
|
|
15549
15809
|
},
|
|
15550
15810
|
sv: {
|
|
15551
15811
|
add_new_dynamic_mood_color_changing_mode_value: "Toning",
|
|
@@ -16143,7 +16403,17 @@ export default {
|
|
|
16143
16403
|
flag_canceladding: "Do you really want to cancel adding a new flag?",
|
|
16144
16404
|
flag_cancelinfo: "Note that your input will be lost if you cancel adding a new flag.",
|
|
16145
16405
|
flag_canceledit: "Note that your changes will be lost if you leave edit the flag.",
|
|
16146
|
-
flag_leverkusen: "Leverkusen"
|
|
16406
|
+
flag_leverkusen: "Leverkusen",
|
|
16407
|
+
contact_sensor_battery_state1: "Hög",
|
|
16408
|
+
contact_sensor_battery_state2: "Medel",
|
|
16409
|
+
contact_sensor_battery_state3: "Låg",
|
|
16410
|
+
ldv_pir_sensitivity: "PIR Sensitivity",
|
|
16411
|
+
ldv_pir_delay: "PIR Delay",
|
|
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"
|
|
16147
16417
|
},
|
|
16148
16418
|
tr: {
|
|
16149
16419
|
add_new_dynamic_mood_color_changing_mode_value: "Gradyan",
|
|
@@ -16741,7 +17011,17 @@ export default {
|
|
|
16741
17011
|
flag_canceladding: "Do you really want to cancel adding a new flag?",
|
|
16742
17012
|
flag_cancelinfo: "Note that your input will be lost if you cancel adding a new flag.",
|
|
16743
17013
|
flag_canceledit: "Note that your changes will be lost if you leave edit the flag.",
|
|
16744
|
-
flag_leverkusen: "Leverkusen"
|
|
17014
|
+
flag_leverkusen: "Leverkusen",
|
|
17015
|
+
contact_sensor_battery_state1: "Yüksek",
|
|
17016
|
+
contact_sensor_battery_state2: "Orta",
|
|
17017
|
+
contact_sensor_battery_state3: "Düşük",
|
|
17018
|
+
ldv_pir_sensitivity: "PIR Sensitivity",
|
|
17019
|
+
ldv_pir_delay: "PIR Delay",
|
|
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"
|
|
16745
17025
|
},
|
|
16746
17026
|
uk: {
|
|
16747
17027
|
add_new_dynamic_mood_color_changing_mode_value: "Градієнт",
|
|
@@ -17339,6 +17619,16 @@ export default {
|
|
|
17339
17619
|
flag_canceladding: "Ви дійсно хочете скасувати додавання нового прапора?",
|
|
17340
17620
|
flag_cancelinfo: "Зверніть увагу, що ваші вхідні дані будуть втрачені, якщо ви скасуєте додавання нового прапорця.",
|
|
17341
17621
|
flag_canceledit: "Зверніть увагу, що ваші зміни будуть втрачені, якщо ви залишите редагування прапорця.",
|
|
17342
|
-
flag_leverkusen: "Leverkusen"
|
|
17622
|
+
flag_leverkusen: "Leverkusen",
|
|
17623
|
+
contact_sensor_battery_state1: "Високий",
|
|
17624
|
+
contact_sensor_battery_state2: "Середній",
|
|
17625
|
+
contact_sensor_battery_state3: "Низький",
|
|
17626
|
+
ldv_pir_sensitivity: "PIR Sensitivity",
|
|
17627
|
+
ldv_pir_delay: "PIR Delay",
|
|
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: "Ні"
|
|
17343
17633
|
}
|
|
17344
17634
|
}
|