-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
io-package.json
2166 lines (2166 loc) · 64.1 KB
/
io-package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"common": {
"name": "awtrix-light",
"version": "1.4.1",
"news": {
"1.4.1": {
"en": "NodeJS >= 20.x and js-controller >= 6 is required",
"de": "NodeJS >= 20.x und js-Controller >= 6 ist erforderlich",
"ru": "NodeJS >= 20.x и js-controller >= 6 требуется",
"pt": "NodeJS >= 20.x e js-controller >= 6 é necessário",
"nl": "Van niet-gelegeerd staal 6 is vereist",
"fr": "NodeJS >= 20.x et js-controller >= 6 est nécessaire",
"it": "NodeJS >= 20.x e js-controller >= 6 è richiesto",
"es": "NodeJS ю= 20.x y js-controller Se requiere 6",
"pl": "NodeJS > = 20 x i kontroler js- > = 6 jest wymagane",
"uk": "NodeJS >= 20.x та js-controller >= 6 обов'язковий",
"zh-cn": "节点JS20x和js控制器QQ 需要6个"
},
"1.3.0": {
"en": "Added sentry plugin for error reporting",
"de": "Das Plugin für die Fehlermeldung hinzugefügt",
"ru": "Добавлен плагин для отчетов об ошибках",
"pt": "Adicionado plugin sentinela para relatórios de erro",
"nl": "Toegevoegd wachtwoord plugin voor foutmelding",
"fr": "Ajout du plugin sentiry pour rapport d'erreur",
"it": "Aggiunto plugin per la segnalazione di errore",
"es": "Añadido plugin de centry para reportar errores",
"pl": "Dodano wtyczkę do zgłaszania błędów",
"uk": "Додано плагін відправки для повідомлення про помилку",
"zh-cn": "为错误报告添加了哨兵插件"
},
"1.2.1": {
"en": "Fixed Blockly definitions (removed warnings)\nUpdated dependencies",
"de": "Feste blockweise Definitionen (entfernte Warnungen)\nAktualisierte Abhängigkeiten",
"ru": "Fixed Blockly definitions (removed warnings)\nОбновленные зависимости",
"pt": "Definições bloqueadas fixas (avisões remotas)\nDependências atualizadas",
"nl": "Vaste blokdefinities (verwijderde waarschuwingen)\nBijgewerkte afhankelijkheden",
"fr": "Définition fixe par blocs (avertissements supprimés)\nDépendances actualisées",
"it": "Definizioni Bloccate Fisse (avviso rimosso)\nDipendenze aggiornate",
"es": "Definiciones limitadas (removidas advertencias)\nDependencias actualizadas",
"pl": "Poprawione definicje blokady (usunięte ostrzeżenia)\nAktualizacja zależności",
"uk": "Виправлені помилкові визначення (видалення попередження)\nОновлені залежності",
"zh-cn": "固定块定义(撤消警告)\n更新的依赖关系"
},
"1.2.0": {
"en": "Fixed wrong translations ins expert apps (duration)\nAdded progress bar for expert apps",
"de": "Behobene falsche Übersetzungen in Experten-Apps (Dauer)\nFortschrittsleiste für Experten-Apps hinzugefügt",
"ru": "Исправленные неправильные переводы в экспертных приложениях (продление)\nДобавить панель прогресса для экспертных приложений",
"pt": "Traduções erradas corrigidas em aplicações especializadas (duração)\nBarra de progresso adicionada para aplicações especializadas",
"nl": "Onjuiste vertalingen ins expert apps (duur)\nVoortgangsbalk toegevoegd voor expert-apps",
"fr": "Correction de traductions incorrectes dans des applications expertes (durée)\nAjout d'une barre de progression pour les applications expertes",
"it": "Risolto traduzioni sbagliate ins app di esperti (durata)\nBarra di avanzamento aggiuntiva per applicazioni di esperti",
"es": "Traducción incorrecta fija en aplicaciones expertas (duración)\nAñadido barra de progreso para aplicaciones expertas",
"pl": "Naprawiono niewłaściwe tłumaczenia w aplikacji ekspertów (czas trwania)\nDodano pasek postępu dla aplikacji eksperckich",
"uk": "Виправлено неправильні переклади в експертних додатках (визначення)\nДодана панель прогресу для експертних додатків",
"zh-cn": "固定错误的翻译 专家应用程序( 期限)\n为专家应用程序添加进度栏"
},
"1.1.0": {
"en": "Sync app activations (if enabled)",
"de": "Sync app Aktivierungen (falls aktiviert)",
"ru": "Активация приложений Sync (если включена)",
"pt": "Ativações de aplicativos de sincronização (se ativado)",
"nl": "App-activeringen synchroniseren (indien ingeschakeld)",
"fr": "Synchronisation des activations de l'application (si activé)",
"it": "Attivazioni di app Sync (se abilitate)",
"es": "Activaciones de aplicaciones de sincronización (si está habilitado)",
"pl": "Synchronizacja aktywacji aplikacji (jeśli włączona)",
"uk": "Sync активації програми (включено)",
"zh-cn": "同步应用程序激活( 如果启用)"
},
"1.0.1": {
"en": "Keep text case of expert apps (ignore system settings)",
"de": "Behalten Sie den Textfall von Experten-Apps (ignore Systemeinstellungen)",
"ru": "Сохранить текстовый случай экспертных приложений (настройки системы воспламенения)",
"pt": "Mantenha o caso de texto de aplicativos especializados (configurações do sistema de ignição)",
"nl": "Tekst geval van deskundige apps houden (systeeminstellingen negeren)",
"fr": "Garder le cas texte des applications expertes (ignorer les paramètres du système)",
"it": "Mantenere il caso di testo di app di esperti (ignorare le impostazioni del sistema)",
"es": "Mantenga el caso de texto de aplicaciones expertas (configuración del sistema ignorante)",
"pl": "Zachowaj tekst aplikacji ekspertów (ignoruj ustawienia systemu)",
"uk": "Зберігати текстовий випадок експертних додатків (інтеграційні налаштування системи)",
"zh-cn": "保留专家应用程序的文本大小写( 信息系统设置)"
}
},
"titleLang": {
"en": "Awtrix 3 (Awtrix Light)",
"de": "Awtrix 3 (Awtrix Light)",
"ru": "Awtrix 3 (Awtrix Light)",
"pt": "Awtrix 3 (Awtrix Light)",
"nl": "Awtrix 3 (Awtrix Light)",
"fr": "Awtrix 3 (Awtrix Light)",
"it": "Awtrix 3 (Awtrix Light)",
"es": "Awtrix 3 (Awtrix Light)",
"pl": "Awtrix 3 (Awtrix Light)",
"uk": "Awtrix 3 (Awtrix Light)",
"zh-cn": "Awtrix 3 (Awtrix Light)"
},
"desc": {
"en": "Integrates your Awtrix 3 via HTTP",
"de": "Integriert Ihr Awtrix 3 über HTTP",
"ru": "Интегрирует ваш Awtrix 3 через HTTP",
"pt": "Integra seu Awtrix 3 via HTTP",
"nl": "Integreert uw Awtrix 3 via HTTP",
"fr": "Intègre votre Awtrix 3 via HTTP",
"it": "Integra il tuo Awtrix 3 tramite HTTP",
"es": "Integra tu Awtrix 3 vía HTTP",
"pl": "Integruje twój Awtrix 3 przez HTTP",
"uk": "Інтегрує ваш Awtrix 3 через HTTP",
"zh-cn": "通过 HTTP 集成您的乌兰子 Awtrix 3"
},
"authors": [
"Matthias Kleine <[email protected]>"
],
"keywords": [
"hardware",
"clock",
"message",
"notification",
"awtrix",
"ulanzi",
"tc001"
],
"tier": 3,
"licenseInformation": {
"license": "MIT",
"type": "free"
},
"platform": "Javascript/Node.js",
"icon": "awtrix-light.png",
"enabled": true,
"extIcon": "https://raw.githubusercontent.com/klein0r/ioBroker.awtrix-light/master/admin/awtrix-light.png",
"readme": "https://github.com/klein0r/ioBroker.awtrix-light/blob/master/README.md",
"loglevel": "info",
"mode": "daemon",
"type": "iot-systems",
"compact": true,
"connectionType": "local",
"dataSource": "poll",
"blockly": true,
"supportedMessages": {
"custom": true,
"notifications": true
},
"plugins": {
"sentry": {
"dsn": "https://[email protected]/247"
}
},
"adminUI": {
"config": "json"
},
"docs": {
"en": [
"docs/en/README.md",
"docs/en/weather-app.md"
],
"de": [
"docs/de/README.md",
"docs/de/weather-app.md"
]
},
"dependencies": [
{
"js-controller": ">=6.0.0"
}
],
"globalDependencies": [
{
"admin": ">=6.6.0"
}
]
},
"notifications": [
{
"scope": "awtrix-light",
"name": {
"en": "Awtrix 3 (Awtrix Light)",
"de": "Awtrix 3 (Awtrix Light)",
"ru": "Awtrix 3 (Awtrix Light)",
"pt": "Awtrix 3 (Awtrix Light)",
"nl": "Awtrix 3 (Awtrix Light)",
"fr": "Awtrix 3 (Awtrix Light)",
"it": "Awtrix 3 (Awtrix Light)",
"es": "Awtrix 3 (Awtrix Light)",
"pl": "Awtrix 3 (Awtrix Light)",
"uk": "Awtrix 3 (Awtrix Light)",
"zh-cn": "Awtrix 3 (Awtrix Light)"
},
"description": {
"en": "These notifications represent news of connected devices.",
"de": "Diese Benachrichtigungen stellen Neuigkeiten über angeschlossene Geräte dar.",
"ru": "Эти уведомления представляют собой новости о подключенных устройствах.",
"pt": "Essas notificações representam notícias de dispositivos conectados.",
"nl": "Deze meldingen vertegenwoordigen nieuws van aangesloten apparaten.",
"fr": "Ces notifications représentent des nouvelles d'appareils connectés.",
"it": "Queste notifiche rappresentano notizie di dispositivi collegati.",
"es": "Estas notificaciones representan noticias de dispositivos conectados.",
"pl": "Powiadomienia te stanowią wiadomości o podłączonych urządzeniach.",
"uk": "Ці повідомлення представляють новини підключених пристроїв.",
"zh-cn": "这些通知代表了连接设备的消息."
},
"categories": [
{
"category": "deviceUpdate",
"name": {
"en": "Firmware update available",
"de": "Firmware-Update verfügbar",
"ru": "Доступное обновление прошивки",
"pt": "Atualização de firmware disponível",
"nl": "Firmware-update beschikbaar",
"fr": "Mise à jour du firmware disponible",
"it": "Aggiornamento firmware disponibile",
"es": "Actualización de firmware disponible",
"pl": "Dostępna aktualizacja oprogramowania firmowego",
"uk": "Оновлення прошивки",
"zh-cn": "可更新的固件"
},
"severity": "notify",
"description": {
"en": "New firmware update is available for your device.",
"de": "Neues Firmware-Update ist für dein Gerät verfügbar.",
"ru": "Новое обновление прошивки доступно для вашего устройства.",
"pt": "Nova atualização de firmware está disponível para o seu dispositivo.",
"nl": "Nieuwe firmware update is beschikbaar voor uw apparaat.",
"fr": "Une nouvelle mise à jour firmware est disponible pour votre appareil.",
"it": "Nuovo aggiornamento firmware è disponibile per il dispositivo.",
"es": "Nueva actualización de firmware está disponible para su dispositivo.",
"pl": "Dla Twojego urządzenia dostępna jest nowa aktualizacja oprogramowania firmowego.",
"uk": "Нові оновлення прошивки доступні для вашого пристрою.",
"zh-cn": "您的设备有新的固件更新 ."
},
"regex": [],
"limit": 1
}
]
}
],
"protectedNative": [
"userName",
"userPassword"
],
"encryptedNative": [
"userPassword"
],
"native": {
"awtrixIp": "192.168.0.123",
"userName": "",
"userPassword": "",
"downloadScreenContent": false,
"downloadScreenContentInterval": 10,
"foreignSettingsInstance": "",
"foreignSettingsInstanceActivateApps": false,
"customApps": [],
"ignoreNewValueForAppInTimeRange": 3,
"historyApps": [],
"historyAppsBackgroundColor": "#000000",
"historyAppsRefreshInterval": 300,
"autoDeleteForeignApps": false,
"removeAppsOnStop": true,
"httpTimeout": 3,
"numberFormat": "system",
"customPositions": false,
"expertApps": []
},
"objects": [],
"instanceObjects": [
{
"_id": "info",
"type": "channel",
"common": {
"name": {
"en": "Information",
"de": "Information",
"ru": "Информация",
"pt": "Em formação",
"nl": "Informatie",
"fr": "Informations",
"it": "Informazione",
"es": "Información",
"pl": "Informacja",
"uk": "Інформація",
"zh-cn": "信息"
}
},
"native": {}
},
{
"_id": "info.connection",
"type": "state",
"common": {
"name": {
"en": "Connected to Awtrix",
"de": "Verbindung mit Awtrix",
"ru": "При подключении к Awtrix",
"pt": "Se conectado ao Awtrix",
"nl": "Indien verbonden met Awtrix",
"fr": "Si connecté à Awtrix",
"it": "Se connesso a Awtrix",
"es": "Si está conectado a Awtrix",
"pl": "W przypadku połączenia z Awtrix",
"uk": "Підключення до Awtrix",
"zh-cn": "如果连接到 Awtrix"
},
"type": "boolean",
"role": "indicator.reachable",
"read": true,
"write": false,
"def": false
},
"native": {}
},
{
"_id": "settings",
"type": "channel",
"common": {
"name": {
"en": "Settings",
"de": "Einstellungen",
"ru": "Настройки",
"pt": "Configurações",
"nl": "Setting",
"fr": "Réglages",
"it": "Impostazioni impostazioni",
"es": "Ajustes",
"pl": "Setting",
"uk": "Налаштування",
"zh-cn": "确定"
}
},
"native": {}
},
{
"_id": "settings.appDisplayTime",
"type": "state",
"common": {
"name": {
"en": "App display duration",
"de": "Anzeigedauer der Apps",
"ru": "Продолжительность дисплея приложения",
"pt": "Duração da exposição do aplicativo",
"nl": "Vertaling:",
"fr": "Durée de l'affichage",
"it": "Durata dell'esposizione dell'app",
"es": "Duración de la pantalla",
"pl": "Czas trwania",
"uk": "Тривалість відображення додатка",
"zh-cn": "延长期限"
},
"type": "number",
"role": "value",
"unit": "sec",
"read": true,
"write": true,
"def": 7
},
"native": {
"settingsKey": "ATIME"
}
},
{
"_id": "settings.transitionSpeed",
"type": "state",
"common": {
"name": {
"en": "Transition speed to the next app",
"de": "Übergangsgeschwindigkeit zur nächsten App",
"ru": "Скорость перехода к следующему приложению",
"pt": "Velocidade de transição para o próximo aplicativo",
"nl": "Vervoersnelheid naar de volgende app",
"fr": "Vitesse de transition vers la prochaine application",
"it": "Velocità di transizione alla prossima app",
"es": "Velocidad de transición a la próxima aplicación",
"pl": "Łączna prędkość do następnej aplikacji",
"uk": "Швидкість переходу на наступний додаток",
"zh-cn": "二. 向下一份报告过渡速度"
},
"type": "number",
"role": "value",
"unit": "ms",
"read": true,
"write": true,
"def": 500
},
"native": {
"settingsKey": "TSPEED"
}
},
{
"_id": "settings.textColor",
"type": "state",
"common": {
"name": {
"en": "Text color",
"de": "Textfarbe",
"ru": "Цвет текста",
"pt": "Cor do texto",
"nl": "Vertaling:",
"fr": "Couleur du texte",
"it": "Colore del testo",
"es": "Color de texto",
"pl": "Kolor tekstowy",
"uk": "Колір тексту",
"zh-cn": "案文"
},
"type": "string",
"role": "level.color.rgb",
"read": true,
"write": true
},
"native": {
"settingsKey": "TCOL"
}
},
{
"_id": "settings.displayWeekday",
"type": "state",
"common": {
"name": {
"en": "Display weekday",
"de": "Anzeige Wochentag",
"ru": "Показать день недели",
"pt": "Exibir dia da semana",
"nl": "Vertaling:",
"fr": "Afficher semaine",
"it": "Visualizza giorno della settimana",
"es": "Mostrar semanario",
"pl": "Tygodnik dyskretny",
"uk": "Показати тиждень",
"zh-cn": "B. 日 失"
},
"type": "boolean",
"role": "state",
"read": true,
"write": true,
"def": true
},
"native": {
"settingsKey": "WD"
}
},
{
"_id": "settings.weekdayColorActive",
"type": "state",
"common": {
"name": {
"en": "Color for active week day",
"de": "Farbe für aktiven Wochentag",
"ru": "Цвет для активного дня недели",
"pt": "Cor para o dia da semana ativa",
"nl": "Kleur voor actieve weekdag",
"fr": "Couleur pour une semaine active",
"it": "Colore per il giorno della settimana attiva",
"es": "Color para el día de semana activo",
"pl": "Współzałożycielka tygodniowo",
"uk": "Колір для активного тижня",
"zh-cn": "积极周"
},
"type": "string",
"role": "level.color.rgb",
"read": true,
"write": true
},
"native": {
"settingsKey": "WDCA"
}
},
{
"_id": "settings.weekdayColorInactive",
"type": "state",
"common": {
"name": {
"en": "Color for inactive week days",
"de": "Farbe für inaktive Wochentage",
"ru": "Цвет для неактивных дней недели",
"pt": "Cor para dias semanais inativos",
"nl": "Kleur voor inactieve weken",
"fr": "Couleur pour les jours de semaine inactifs",
"it": "Colore per giorni settimanali inattivi",
"es": "Color para días de semana inactivos",
"pl": "Współzałożyciel w nieczynny tydzień",
"uk": "Колір для неактивних днів тижня",
"zh-cn": "B. 活周"
},
"type": "string",
"role": "level.color.rgb",
"read": true,
"write": true
},
"native": {
"settingsKey": "WDCI"
}
},
{
"_id": "settings.brightness",
"type": "state",
"common": {
"name": {
"en": "Brightness",
"de": "Helligkeit",
"ru": "Яркость",
"pt": "Brilho",
"nl": "Brightness",
"fr": "Luminosité",
"it": "Luminosità",
"es": "Brillo",
"pl": "Brightness",
"uk": "Яскравість",
"zh-cn": "B. 权利"
},
"type": "number",
"role": "value",
"read": true,
"write": true,
"min": 0,
"max": 255
},
"native": {
"settingsKey": "BRI"
}
},
{
"_id": "settings.brightnessAuto",
"type": "state",
"common": {
"name": {
"en": "Automatic brightness",
"de": "Automatische Helligkeit",
"ru": "Автоматическая яркость",
"pt": "Brilho automático",
"nl": "Automatische helderheid",
"fr": "Eclairage automatique",
"it": "Luminosità automatica",
"es": "Luminosidad automática",
"pl": "Jasność automatyczna",
"uk": "Автоматична яскравість",
"zh-cn": "光明"
},
"type": "boolean",
"role": "state",
"read": true,
"write": true
},
"native": {
"settingsKey": "ABRI"
}
},
{
"_id": "settings.appSwitchAuto",
"type": "state",
"common": {
"name": {
"en": "Automatic app switching",
"de": "Automatischer App-Wechsel",
"ru": "Автоматический переключатель приложений",
"pt": "Comutação automática de aplicativos",
"nl": "Automatische app wisselen",
"fr": "Interrupteur automatique d'application",
"it": "Interruttore automatico dell'app",
"es": "Interruptor automático de aplicaciones",
"pl": "Automatyczne aplikacje przełączają",
"uk": "Автоматичне перемикання додатків",
"zh-cn": "自动转换"
},
"type": "boolean",
"role": "state",
"read": true,
"write": true
},
"native": {
"settingsKey": "ATRANS"
}
},
{
"_id": "settings.appTransitionEffect",
"type": "state",
"common": {
"name": {
"en": "App transition effect",
"de": "Effekt bei App-Wechsel",
"ru": "Эффект перехода приложения",
"pt": "Aplicação efeito de transição",
"nl": "Veranderings effect",
"fr": "Effet de transition",
"it": "Effetto di transizione dell'app",
"es": "Efecto de transición de la aplicación",
"pl": "Efekty przejściowe",
"uk": "Ефект переходу додатку",
"zh-cn": "过渡效果"
},
"type": "number",
"role": "value",
"read": true,
"write": true,
"def": 0
},
"native": {
"settingsKey": "TEFF"
}
},
{
"_id": "settings.timeStyle",
"type": "state",
"common": {
"name": {
"en": "Style of time app",
"de": "Stil der Zeit App",
"ru": "Стиль приложения времени",
"pt": "Estilo de aplicativo de tempo",
"nl": "Style tijd app",
"fr": "Style de l'application temps",
"it": "Stile di applicazione del tempo",
"es": "Estilo de aplicación de tiempo",
"pl": "Styl czasu",
"uk": "Стиль додатка часу",
"zh-cn": "时间的选择"
},
"type": "number",
"role": "value",
"read": true,
"write": true,
"def": 1
},
"native": {
"settingsKey": "TMODE"
}
},
{
"_id": "settings.calendarHeaderColor",
"type": "state",
"common": {
"name": {
"en": "Calendar header color",
"de": "Kalender Kopffarbe",
"ru": "Календарь header color",
"pt": "Cor do cabeçalho do calendário",
"nl": "Calendar hoofdkleur",
"fr": "Calendrier header color",
"it": "Colore dell'intestazione del calendario",
"es": "Calendario de encabezado color",
"pl": "Kalendarz",
"uk": "Колір головки календаря",
"zh-cn": "加德·曼"
},
"type": "string",
"role": "level.color.rgb",
"read": true,
"write": true,
"def": "#FF0000"
},
"native": {
"settingsKey": "CHCOL"
}
},
{
"_id": "settings.calendarBodyColor",
"type": "state",
"common": {
"name": {
"en": "Calendar body color",
"de": "Kalender Körperfarbe",
"ru": "Календарь Цвет тела",
"pt": "Cor do corpo do calendário",
"nl": "Calendar kleur",
"fr": "Calendrier couleur du corps",
"it": "Colore del corpo del calendario",
"es": "Color del cuerpo del calendario",
"pl": "Koloru ciała",
"uk": "Колір тіла календаря",
"zh-cn": "统计院"
},
"type": "string",
"role": "level.color.rgb",
"read": true,
"write": true,
"def": "#FFFFFF"
},
"native": {
"settingsKey": "CBCOL"
}
},
{
"_id": "settings.calendarTextColor",
"type": "state",
"common": {
"name": {
"en": "Calendar text color",
"de": "Kalender Textfarbe",
"ru": "Календарь текст цвет",
"pt": "Cor do texto do calendário",
"nl": "Calendar sms kleur",
"fr": "Calendrier texte couleur",
"it": "Colore del testo del calendario",
"es": "Color de texto del calendario",
"pl": "Kalendarz",
"uk": "Календар текстового кольору",
"zh-cn": "订正案文"
},
"type": "string",
"role": "level.color.rgb",
"read": true,
"write": true,
"def": "#000000"
},
"native": {
"settingsKey": "CTCOL"
}
},
{
"_id": "settings.formatTime",
"type": "state",
"common": {
"name": {
"en": "Time format",
"de": "Zeitformat",
"ru": "Формат времени",
"pt": "Formato de hora",
"nl": "Tijd formaat",
"fr": "Format temporel",
"it": "Formato del tempo",
"es": "Formato del tiempo",
"pl": "Format Time",
"uk": "Формат",
"zh-cn": "时间格式"
},
"type": "string",
"role": "text",
"read": true,
"write": true
},
"native": {
"settingsKey": "TFORMAT"
}
},
{
"_id": "settings.formatDate",
"type": "state",
"common": {
"name": {
"en": "Date format",
"de": "Datumsformat",
"ru": "Формат даты",
"pt": "Formato de data",
"nl": "Datum formaat",
"fr": "Date format",
"it": "Formato della data",
"es": "Formato de fecha",
"pl": "Format",
"uk": "Дата формат",
"zh-cn": "日期"
},
"type": "string",
"role": "text",
"read": true,
"write": true
},
"native": {
"settingsKey": "DFORMAT"
}
},
{
"_id": "settings.weekStartMonday",
"type": "state",
"common": {
"name": {
"en": "Week starts with monday",
"de": "Woche beginnt mit Montag",
"ru": "Неделя начинается с понедельника",
"pt": "A semana começa com a segunda-feira",
"nl": "Week begint met maandag",
"fr": "La semaine commence avec le lundi",
"it": "La settimana inizia con lunedì",
"es": "La semana comienza con el lunes",
"pl": "Tydzień zaczyna się od monday'u",
"uk": "Тиждень починається з понеділка",
"zh-cn": "每周开始开会"
},
"type": "boolean",
"role": "state",
"read": true,
"write": true,
"def": true
},
"native": {
"settingsKey": "SOM"
}
},
{
"_id": "settings.blockButtons",
"type": "state",
"common": {
"name": {
"en": "Disable physical buttons",
"de": "Physische Tasten deaktivieren",
"ru": "Отключить физические кнопки",
"pt": "Desativar botões físicos",
"nl": "Disable fysieke knoppen",
"fr": "Désactiver les boutons physiques",
"it": "Disattivare i pulsanti fisici",
"es": "Desactivar botones físicos",
"pl": "Nieodpowiednie przycisk fizyczny",
"uk": "Відключені фізичні кнопки",
"zh-cn": "A. 有形但顿"
},
"type": "boolean",
"role": "state",
"read": true,
"write": true,
"def": false
},
"native": {
"settingsKey": "BLOCKN"
}
},
{
"_id": "settings.textUppercase",
"type": "state",
"common": {
"name": {
"en": "Show texts in uppercase",
"de": "Texte in Großbuchstaben anzeigen",
"ru": "Показать тексты в верхнем регистре",
"pt": "Mostrar textos em maiúscula",
"nl": "Toon sms'jes in Uppercase",
"fr": "Afficher les textes dans la majuscule",
"it": "Mostra testi in maiuscolo",
"es": "Mostrar textos en mayúscula",
"pl": "Teksty w wyższych walizkach",
"uk": "Показати тексти у верхньому регістру",
"zh-cn": "评 注"
},
"type": "boolean",
"role": "state",
"read": true,
"write": true,
"def": true
},
"native": {
"settingsKey": "UPPERCASE"
}
},
{
"_id": "settings.appColorTime",
"type": "state",
"common": {
"name": {
"en": "App color (time)",
"de": "App-Farbe (Zeit)",
"ru": "Цвет приложения (время)",
"pt": "Cor da aplicação (tempo)",
"nl": "App kleur (tijd)",
"fr": "App couleur (heure)",
"it": "Colore dell'app (tempo)",
"es": "Color de aplicación (tiempo)",
"pl": "W kolorze (czasem)",
"uk": "Колір додатка (час)",
"zh-cn": "附录(时)"
},
"type": "string",
"role": "level.color.rgb",
"read": true,
"write": true
},
"native": {
"settingsKey": "TIME_COL"
}
},
{
"_id": "settings.appColorDate",
"type": "state",
"common": {
"name": {
"en": "App color (date)",
"de": "App-Farbe (Datum)",
"ru": "Цвет приложения (дата)",
"pt": "Cor do aplicativo (data)",
"nl": "App kleur (date)",
"fr": "App couleur (date)",
"it": "Colore dell'app (data)",
"es": "Color de la aplicación (fecha)",
"pl": "Apparent (ang.)",
"uk": "Колір додатка (дата)",
"zh-cn": "原件:英文"
},
"type": "string",
"role": "level.color.rgb",
"read": true,
"write": true
},
"native": {
"settingsKey": "DATE_COL"
}
},
{
"_id": "settings.appColorTemperature",
"type": "state",
"common": {
"name": {
"en": "App color (temperature)",
"de": "App-Farbe (Temperatur)",
"ru": "Цвет приложения (температура)",
"pt": "Cor da aplicação (temperatura)",
"nl": "App kleur (temperature)",
"fr": "App couleur (température)",
"it": "Colore dell'app (temperatura)",
"es": "Color de aplicación (temperatura)",
"pl": "Ubarwienie (temperatura)",
"uk": "Колір додатка (температура)",
"zh-cn": "评 注"
},
"type": "string",
"role": "level.color.rgb",
"read": true,
"write": true
},
"native": {
"settingsKey": "TEMP_COL"
}
},
{
"_id": "settings.appColorHumidity",
"type": "state",
"common": {
"name": {
"en": "App color (humidity)",
"de": "App-Farbe (Feuchtigkeit)",
"ru": "Цвет приложения (влажность)",
"pt": "Cor do aplicativo (humidity)",
"nl": "App kleur (humidity)",
"fr": "App couleur (humidité)",
"it": "Colore dell'app (umidità)",
"es": "Color de aplicación (humididad)",
"pl": "Umiejętność (ang.)",
"uk": "Колір додатка (гумідність)",
"zh-cn": "评 注"
},
"type": "string",
"role": "level.color.rgb",
"read": true,
"write": true
},
"native": {
"settingsKey": "HUM_COL"
}
},
{
"_id": "settings.appColorBattery",
"type": "state",
"common": {
"name": {
"en": "App color (battery)",
"de": "App-Farbe (Batterie)",
"ru": "Цвет приложения (батареи)",
"pt": "Cor do aplicativo (bateria)",
"nl": "App kleur (battery)",
"fr": "App couleur (batterie)",
"it": "Colore dell'app (batteria)",
"es": "Color de la aplicación (batería)",
"pl": "Ubarwienie (pol.)",
"uk": "Колір додатка (баттерія)",
"zh-cn": "附录"
},
"type": "string",
"role": "level.color.rgb",
"read": true,
"write": true
},
"native": {
"settingsKey": "BAT_COL"
}
},
{
"_id": "settings.textScrollSpeed",
"type": "state",
"common": {
"name": {
"en": "Text scrolling speed",
"de": "Textlaufgeschwindigkeit",
"ru": "Скорость прокрутки текста",
"pt": "Velocidade de rolagem de texto",
"nl": "Vertaling:",
"fr": "Vitesse de défilement du texte",
"it": "Velocità di scorrimento del testo",
"es": "Velocidad de desplazamiento de texto",
"pl": "Szybkość",
"uk": "Швидкість прокручування тексту",
"zh-cn": "案文加速"
},
"type": "number",
"role": "value",
"read": true,
"write": true,
"min": 1,
"max": 100
},
"native": {
"settingsKey": "SSPEED"
}
},
{
"_id": "settings.volume",