-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathio-package.json
1148 lines (1148 loc) · 41.6 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": "octoprint",
"version": "6.0.0",
"news": {
"6.0.0": {
"en": "NodeJS >= 20.x and js-controller >= 6 is required\n\nTested with OctoPrint 1.10.3",
"de": "NodeJS >= 20.x und js-Controller >= 6 ist erforderlich\n\nGetestet mit OctoPrint 1.10.3",
"ru": "NodeJS >= 20.x и js-controller >= 6 требуется\n\nПроверено 1.10.3",
"pt": "NodeJS >= 20.x e js-controller >= 6 é necessário\n\nTestado com OctoPrint 1.10.3",
"nl": "Van niet-gelegeerd staal 6 is vereist\n\nGetest met OctoPrint 1.10.3",
"fr": "NodeJS >= 20.x et js-controller >= 6 est nécessaire\n\nTesté avec OctoPrint 1.10.3",
"it": "NodeJS >= 20.x e js-controller >= 6 è richiesto\n\nTestato con OctoPrint 1.10.3",
"es": "NodeJS ю= 20.x y js-controller Se requiere 6\n\nProbada con OctoPrint 1.10.3",
"pl": "NodeJS > = 20 x i kontroler js- > = 6 jest wymagane\n\nTestowane z OctoPrint 1.10.3",
"uk": "NodeJS >= 20.x та js-controller >= 6 обов'язковий\n\nВипробувано з OctoPrint 1.10.3",
"zh-cn": "节点JS20x和js控制器QQ 需要6个\n\n用Octoprint 1.10.3试验"
},
"5.1.0": {
"en": "NodeJS 16.x is required\n\nTested with OctoPrint 1.9.3\n\n* Added admin icons",
"de": "NodeJS 16.x ist erforderlich\n\nGetestet mit OctoPrint 1.9.3\n\n* Admin-Symbole hinzugefügt",
"ru": "NodeJS 16.x требуется\n\nПроверено с OctoPrint 1.9.3\n\n* Добавлены иконки админ",
"pt": "NodeJS 16.x é necessário\n\nTestado com OctoPrint 1.9.3\n\n* Adicionado ícones de administrador",
"nl": "NodeJS 16.x is vereist\n\nTest met OctoPrint 1.9.3\n\n♪ Added admin icons ♪",
"fr": "NodeJS 16.x est nécessaire\n\nTesté avec OctoPrint 1.9.3\n\n* Ajout des icônes d'administration",
"it": "NodeJS 16.x è richiesto\n\nTestato con OctoPrint 1.9.3\n\n* Aggiunte icone di amministratore",
"es": "NodeJS 16.x es necesario\n\nPruebas con OctoPrint 1.9.3\n\n* iconos de administración añadidos",
"pl": "NodeJS 16 (ang.)\n\nTesty w wersji 1.9.3\n\n* Added admin icon",
"uk": "NodeJS 16.x обов'язковий\n\nВипробувано з OctoPrint 1.9.3\n\n* Додано іконки адміністратора",
"zh-cn": "不需要16.JS16x。\n\n与Octo Print1.9.3 进行试验\n\n* 增加说明"
},
"5.0.1": {
"en": "Allow self-signed certificates",
"de": "Selbstsignierte Zertifikate zulassen",
"ru": "Разрешить самоподписанные сертификаты",
"pt": "Permitir certificados auto-assinados",
"nl": "Vertaling:",
"fr": "Autoriser les certificats autosignés",
"it": "Consentire certificati autofirmati",
"es": "Permitir certificados autosignificados",
"pl": "Statystyki samoobrony",
"uk": "Довідкові сертифікати",
"zh-cn": "允许自发证书"
},
"5.0.0": {
"en": "Tested with OctoPrint 1.9.0\n\n* Removed binary states (deprecated)\n* Allow self-signed certificates\n* Added Ukrainian language",
"de": "Getestet mit OctoPrint 1.9.0\n\n* Entfernte binäre Zustände (deprecated)\n* Selbstsignierte Zertifikate zulassen\n* Hinzugefügt Ukrainische Sprache",
"ru": "Проверено с OctoPrint 1.9.0\n\n* Удаленные бинарные государства (deprecated)\n* Разрешить самоподписанные сертификаты\n* Добавлен украинский язык",
"pt": "Testado com OctoPrint 1.9.0\n\n* estados binários removidos (deprecated)\n* Permitir certificados auto-assinados\n* Adicionado idioma ucraniano",
"nl": "Vertaling:\n\nVerwijderde binaire staten\n♪ Allow self-signed certificaat ♪\n♪ Added Oekraïense taal",
"fr": "Testé avec OctoPrint 1.9.0\n\n* États binaires supprimés (dépréciés)\n* Permettre des certificats autosignés\n* Ajout de la langue ukrainienne",
"it": "Testato con OctoPrint 1.9.0\n\n* Stati binari rimossi (deprecato)\n* Consentire certificati autofirmati\n* Aggiunto lingua ucraina",
"es": "Probada con OctoPrint 1.9.0\n\n* estados binarios eliminados (dependidos)\n* Permitir certificados autofirmados\n* Lenguado ucraniano añadido",
"pl": "Testy w wersji 1.9.0\n\n* Removed binary states (deprecated) (ang.)\n* Zautomatyzowane certyfikaty\nJęzyk ukraiński",
"uk": "Випробувано з OctoPrint 1.9.0\n\n* Вилучені двійкові стани (викрадені)\n* Дозволені сертифікати\n* Додано українську мову",
"zh-cn": "与Octo Print1.9.0进行试验。\n\n* 卸任本州(提名)\n* 允许自发证书\n* 增加乌克兰语"
},
"4.1.0": {
"en": "Tested with OctoPrint 1.8.6\n\n* Dropped Admin 5 support\n* Added Ukrainian language",
"de": "Getestet mit OctoPrint 1.8.6\n\n* Dropped Admin 5 Unterstützung\n* Hinzugefügt Ukrainische Sprache",
"ru": "Проверено с OctoPrint 1.8.6\n\n* Dropped Admin 5 поддержка\n* Добавлен украинский язык",
"pt": "Testado com OctoPrint 1.8.6\n\n* Suporte de Admin 5 Dropped\n* Adicionado idioma ucraniano",
"nl": "Vertaling:\n\n♪ Dropped Admin 5 support\n♪ Added Oekraïense taal",
"fr": "Testé avec OctoPrint 1.8.6\n\n* Soutien Dropped Admin 5\n* Ajout de la langue ukrainienne",
"it": "Testato con OctoPrint 1.8.6\n\n* Sostegno di amministrazione goccia 5\n* Aggiunto lingua ucraina",
"es": "Probada con OctoPrint 1.8.6\n\n* Soporte de Admin 5\n* Lenguado ucraniano añadido",
"pl": "Testy w wersji 1.8.6\n\n* Dropped Admin 5 support\nJęzyk ukraiński",
"uk": "Випробувано з OctoPrint 1.8.6\n\n* Підтримка Dropped Admin 5\n* Додано українську мову",
"zh-cn": "与Octo Print的试验1.8.6\n\n* Dro Admin 5支助\n* 增加乌克兰语"
},
"4.0.1": {
"en": "Tested with OctoPrint 1.8.4\n\n* Just download every thumbnail once (requires plugin Slicer Thumbnails)",
"de": "Getestet mit OctoPrint 1.8.4\n\n* Einfach alle Miniaturansichten einmal herunterladen (erfordert Plugin Slicer Thumbnails)",
"ru": "Проверено с OctoPrint 1.8.4\n\n* Просто скачайте каждый миниатюрный раз (требуется плагин Slicer Thumbnails)",
"pt": "Testado com OctoPrint 1.8.4\n\n* Basta baixar cada miniatura uma vez (requer plugin Slicer Thumbnails)",
"nl": "Vertaling:\n\n♪ download elke duimnagel eens (requires plugin Slicer Thumbnails)",
"fr": "Testé avec OctoPrint 1.8.4\n\n* Il suffit de télécharger chaque miniature une fois (requis plugin Slicer Thumbnails)",
"it": "Testato con OctoPrint 1.8.4\n\n# Basta scaricare ogni miniatura una volta (richiede plugin Slicer Thumbnails)",
"es": "Probada con OctoPrint 1.8.4\n\n* Sólo descarga cada miniatura una vez (requiere plugin Slicer Thumbnails)",
"pl": "Testy w wersji 1.8.4\n\n* Just download every thumbnail once (ang.)",
"uk": "Випробувано з OctoPrint 1.8.4\n\nІм'я * Просто завантажте кожну мініатюру один раз (обов'язково плагін Slicer Thumbnails)",
"zh-cn": "与Octo Print的试验1.8.4\n\n* A/64/50。 仅每一次挖掘一次(Requires plugin Slicer Thumbnails)"
},
"4.0.0": {
"en": "NodeJS 14.x is required (NodeJS 12.x is EOL)\n\nTested with OctoPrint 1.8.0\n\n* Added last and average layer duration (requires plugin Display Layer Progress)\n* Moved thumbnail information of files to new structure **(BREAKING CHANGE - CHECK YOUR SCRIPTS AND VIS)**\n* Improved handling of thumbnails and states for plugins",
"de": "NodeJS 14.x ist erforderlich (NodeJS 12.x ist EOL)\n\nGetestet mit OctoPrint 1.8.0\n\n* Letzte und durchschnittliche Layerdauer hinzugefügt (erfordert Plugin Display Layer Progress)\n* Thumbnail-Informationen von Dateien in neue Struktur verschoben **(BREAKING CHANGE – ÜBERPRÜFEN SIE IHRE SCRIPTS UND VIS)**\n* Verbesserte Handhabung von Thumbnails und Zuständen für Plugins",
"ru": "Требуется NodeJS 14.x (NodeJS 12.x является EOL)\n\nПротестировано с OctoPrint 1.8.0\n\n* Добавлена продолжительность последнего и среднего слоя (требуется плагин Display Layer Progress)\n* Информация о миниатюрах файлов перемещена в новую структуру **(СЕРЬЕЗНОЕ ИЗМЕНЕНИЕ - ПРОВЕРЬТЕ СКРИПТЫ И ВИЗУ)**\n* Улучшена обработка миниатюр и состояний для плагинов.",
"pt": "NodeJS 14.x é necessário (NodeJS 12.x é EOL)\n\nTestado com OctoPrint 1.8.0\n\n* Adicionado a última e média duração da camada (requer plugin Display Layer Progress)\n* Informações em miniatura movidas de arquivos para nova estrutura **(BREAKING CHANGE - CHECK YOUR SCRIPTS AND VIS)**\n* Manipulação aprimorada de miniaturas e estados para plugins",
"nl": "NodeJS 14.x is vereist (NodeJS 12.x is EOL)\n\nGetest met OctoPrint 1.8.0\n\n* Laatste en gemiddelde laagduur toegevoegd (vereist plug-in Display Layer Progress)\n* Miniatuurinformatie van bestanden verplaatst naar een nieuwe structuur **(BREKENDE WIJZIGING - CONTROLEER UW SCRIPTS EN VIS)**\n* Verbeterde verwerking van miniaturen en statussen voor plug-ins",
"fr": "NodeJS 14.x est requis (NodeJS 12.x est EOL)\n\nTesté avec OctoPrint 1.8.0\n\n* Ajout de la durée moyenne et de la dernière couche (nécessite le plugin Display Layer Progress)\n* Déplacement des informations sur les vignettes des fichiers vers une nouvelle structure **(CHANGEMENT RUPTURE - VÉRIFIEZ VOS SCRIPTS ET VIS)** \n* Amélioration de la gestion des vignettes et des états des plugins",
"it": "NodeJS 14.x è richiesto (NodeJS 12.x è EOL)\n\nTestato con OctoPrint 1.8.0\n\n* Aggiunta la durata dell'ultimo livello e quella media (richiede il plug-in Display Layer Progress)\n* Spostate le informazioni in miniatura dei file nella nuova struttura **(BREAKING CHANGE - CONTROLLA I TUOI SCRIPT E VIS)**\n* Migliorata la gestione delle miniature e degli stati per i plugin",
"es": "Se requiere NodeJS 14.x (NodeJS 12.x es EOL)\n\nProbado con OctoPrint 1.8.0\n\n* Se agregó la duración de la última capa y el promedio (requiere el complemento Mostrar progreso de la capa)\n* Se movió la información en miniatura de los archivos a una nueva estructura **(CAMBIO IMPORTANTE - REVISE SUS SCRIPTS Y VIS)**\n* Manejo mejorado de miniaturas y estados para complementos",
"pl": "NodeJS 14.x jest wymagany (NodeJS 12.x to EOL)\n\nTestowane z OctoPrint 1.8.0\n\n* Dodano ostatni i średni czas trwania warstwy (wymaga postępu wyświetlania warstwy wtyczki)\n* Przeniesiono informacje o miniaturach plików do nowej struktury **(NAŁADZAJĄCA ZMIANA - SPRAWDŹ SWOJE SKRYPTY I VIS)**\n* Ulepszona obsługa miniatur i stanów wtyczek",
"uk": "Потрібен NodeJS 14.x (NodeJS 12.x є EOL)\n\nПротестовано з OctoPrint 1.8.0\n\n* Додано останню та середню тривалість шару (потрібен плагін Display Layer Progress)\n* Інформацію про мініатюри файлів переміщено до нової структури **(ГРУЗОВА ЗМІНА - ПЕРЕВІРТЕ СВОЇ СЦЕНАРІЇ ТА VIS)**\n* Покращена обробка ескізів і станів для плагінів",
"zh-cn": "需要 NodeJS 14.x(NodeJS 12.x 已停产)\n\n使用 OctoPrint 1.8.0 测试\n\n* 添加最后一层和平均层持续时间(需要插件显示层进度)\n* 将文件的缩略图信息移至新结构 **(重大更改 - 检查您的脚本和 VIS)**\n* 改进了插件缩略图和状态的处理"
}
},
"titleLang": {
"en": "OctoPrint",
"de": "OctoPrint",
"ru": "OctoPrint",
"pt": "OctoPrint",
"nl": "OctoPrint",
"fr": "OctoPrint",
"it": "OctoPrint",
"es": "OctoPrint",
"pl": "Ośmiodruk",
"uk": "OctoPrint",
"zh-cn": "八印"
},
"desc": {
"en": "Manage your OctoPrint instance",
"de": "Verwalte Deine OctoPrint-Instanz",
"ru": "Управляйте своим экземпляром OctoPrint",
"pt": "Gerenciar sua instância OctoPrint",
"nl": "Beheer uw OctoPrint-instantie",
"fr": "Gérez votre instance OctoPrint",
"it": "Gestisci la tua istanza OctoPrint",
"es": "Administre su instancia de OctoPrint",
"pl": "Zarządzaj instancją OctoPrint",
"uk": "Керуйте своїм екземпляром OctoPrint",
"zh-cn": "管理您的 OctoPrint 实例"
},
"authors": [
"Matthias Kleine <[email protected]>"
],
"keywords": [
"octoprint",
"3d printing",
"hardware",
"drucker",
"gcode"
],
"tier": 3,
"licenseInformation": {
"license": "MIT",
"type": "free"
},
"platform": "Javascript/Node.js",
"icon": "octoprint.png",
"extIcon": "https://raw.githubusercontent.com/klein0r/ioBroker.octoprint/master/admin/octoprint.png",
"enabled": false,
"readme": "https://github.com/klein0r/ioBroker.octoprint/blob/master/README.md",
"loglevel": "info",
"mode": "daemon",
"type": "hardware",
"compact": true,
"connectionType": "local",
"dataSource": "poll",
"adminUI": {
"config": "json"
},
"docs": {
"en": "docs/en/README.md",
"de": "docs/de/README.md"
},
"dependencies": [
{
"js-controller": ">=6.0.0"
}
],
"globalDependencies": [
{
"admin": ">=6.0.0"
}
],
"plugins": {
"sentry": {
"dsn": "https://[email protected]/101"
}
}
},
"protectedNative": [
"octoprintApiKey"
],
"encryptedNative": [
"octoprintApiKey"
],
"native": {
"octoprintIp": "",
"octoprintPort": "80",
"customName": "My 3D printer",
"octoprintApiKey": "",
"apiTimeoutSek": 2,
"useHttps": false,
"allowSelfSignedCertificates": false,
"pluginDisplayLayerProgress": false,
"pluginSlicerThumbnails": false,
"apiRefreshInterval": 60,
"apiRefreshIntervalOperational": 30,
"apiRefreshIntervalPrinting": 10
},
"objects": [],
"instanceObjects": [
{
"_id": "",
"type": "meta",
"common": {
"name": {
"en": "Meta storage for user files",
"de": "Meta-Speicher für Benutzerdateien",
"ru": "Meta Storage для файлов пользователей",
"pt": "Meta de armazenamento para arquivos de usuário",
"nl": "Meta opslag voor gebruikersbestanden",
"fr": "Stockage Meta pour les fichiers utilisateur",
"it": "Meta storage per i file utente",
"es": "Meta almacenamiento para archivos de usuario",
"pl": "Meta storage for user files",
"uk": "Зберігання мета для файлів користувачів",
"zh-cn": "用户档案的储存"
},
"type": "meta.user"
},
"native": {}
},
{
"_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 OctoPrint",
"de": "Mit OctoPrint verbunden",
"ru": "При подключении к OctoPrint",
"pt": "Se conectado ao OctoPrint",
"nl": "Indien verbonden met OctoPrint",
"fr": "Si connecté à OctoPrint",
"it": "Se connesso a OctoPrint",
"es": "Si está conectado a OctoPrint",
"pl": "W przypadku połączenia z OctoPrint",
"uk": "Підключення до OctoPrint",
"zh-cn": "如果连接到 OctoPrint"
},
"type": "boolean",
"role": "indicator.reachable",
"read": true,
"write": false,
"def": false
},
"native": {}
},
{
"_id": "name",
"type": "state",
"common": {
"name": {
"en": "Custom printer name",
"de": "Benutzerdefinierter Druckername",
"ru": "Пользовательское имя принтера",
"pt": "Nome de impressora personalizado",
"nl": "Aangepaste printernaam",
"fr": "Nom d'imprimante personnalisé",
"it": "Nome stampante personalizzato",
"es": "Nombre de impresora personalizado",
"pl": "Niestandardowa nazwa drukarki",
"uk": "Назва принтера",
"zh-cn": "自定义打印机名称"
},
"type": "string",
"role": "text",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "printer_status",
"type": "state",
"common": {
"name": {
"en": "Printer Status",
"de": "Druckerstatus",
"ru": "Состояние принтера",
"pt": "Status da impressora",
"nl": "Printerstatus",
"fr": "État de l'imprimante",
"it": "Stato della stampante",
"es": "Estado de la impresora",
"pl": "Stan drukarki",
"uk": "Статус на сервери",
"zh-cn": "打印机状态"
},
"type": "string",
"role": "state",
"read": true,
"write": false,
"def": "API not connected"
},
"native": {}
},
{
"_id": "operational",
"type": "state",
"common": {
"name": {
"en": "Printer Operational",
"de": "Drucker betriebsbereit",
"ru": "Принтер работает",
"pt": "Impressora Operacional",
"nl": "Printer operationeel",
"fr": "Imprimante opérationnelle",
"it": "Stampante operativa",
"es": "Impresora operativa",
"pl": "Drukarka działa",
"uk": "Операція принтера",
"zh-cn": "打印机操作"
},
"type": "boolean",
"role": "state",
"read": true,
"write": false,
"def": false
},
"native": {}
},
{
"_id": "printing",
"type": "state",
"common": {
"name": {
"en": "Is Printing",
"de": "Druckt",
"ru": "печатает",
"pt": "Está Imprimindo",
"nl": "Is aan het afdrukken",
"fr": "Est en train d'imprimer",
"it": "sta stampando",
"es": "está imprimiendo",
"pl": "Czy drukowanie",
"uk": "Є друк",
"zh-cn": "正在打印"
},
"type": "boolean",
"role": "state",
"read": true,
"write": false,
"def": false
},
"native": {}
},
{
"_id": "command",
"type": "channel",
"common": {
"name": {
"en": "Command",
"de": "Befehl",
"ru": "Командование",
"pt": "Comando",
"nl": "Opdracht",
"fr": "Commander",
"it": "Comando",
"es": "Mando",
"pl": "Komenda",
"uk": "Про компанію",
"zh-cn": "命令"
}
},
"native": {}
},
{
"_id": "command.printer",
"type": "state",
"common": {
"name": {
"en": "Printer command",
"de": "Drucker-Befehl",
"ru": "Команда принтера",
"pt": "Comando da impressora",
"nl": "Printeropdracht",
"fr": "Commande d'imprimante",
"it": "Comando stampante",
"es": "Comando de impresora",
"pl": "Polecenie drukarki",
"uk": "Команда принтера",
"zh-cn": "打印机命令"
},
"type": "string",
"role": "command",
"read": false,
"write": true
},
"native": {}
},
{
"_id": "command.printjob",
"type": "state",
"common": {
"name": {
"en": "Print job command",
"de": "Druckauftragsbefehl",
"ru": "Команда задания на печать",
"pt": "Comando de trabalho de impressão",
"nl": "Opdracht afdruktaak",
"fr": "Commande de travail d'impression",
"it": "Comando lavoro di stampa",
"es": "Comando de trabajo de impresión",
"pl": "Polecenie drukowania zadania",
"uk": "Друк команди",
"zh-cn": "打印作业命令"
},
"type": "string",
"role": "command",
"read": false,
"write": true
},
"native": {}
},
{
"_id": "command.sd",
"type": "state",
"common": {
"name": {
"en": "SD card command",
"de": "SD-Karten-Befehl",
"ru": "Команда SD-карты",
"pt": "Comando do cartão SD",
"nl": "SD-kaartopdracht",
"fr": "Commande de carte SD",
"it": "Comando della scheda SD",
"es": "Comando de la tarjeta SD",
"pl": "Polecenie karty SD",
"uk": "Команда SD-карт",
"zh-cn": "SD卡指令"
},
"type": "string",
"role": "command",
"read": false,
"write": true
},
"native": {}
},
{
"_id": "command.custom",
"type": "state",
"common": {
"name": {
"en": "Custom printer command",
"de": "Benutzerdefinierter Drucker-Befehl",
"ru": "Пользовательская команда принтера",
"pt": "Comando de impressora personalizado",
"nl": "Aangepaste printeropdracht",
"fr": "Commande d'imprimante personnalisée",
"it": "Comando stampante personalizzata",
"es": "Comando de impresora personalizado",
"pl": "Niestandardowe polecenie drukarki",
"uk": "Спеціальна команда принтера",
"zh-cn": "自定义打印机命令"
},
"type": "string",
"role": "command",
"read": false,
"write": true
},
"native": {}
},
{
"_id": "command.system",
"type": "state",
"common": {
"name": {
"en": "Execute system command",
"de": "Systembefehl ausführen",
"ru": "Выполнить системную команду",
"pt": "Execute o comando do sistema",
"nl": "Systeemopdracht uitvoeren",
"fr": "Exécuter la commande système",
"it": "Esegui comando di sistema",
"es": "Ejecutar comando del sistema",
"pl": "Wykonaj polecenie systemowe",
"uk": "Командування системи виконання",
"zh-cn": "执行系统命令"
},
"type": "string",
"role": "command",
"read": false,
"write": true
},
"native": {}
},
{
"_id": "command.jog",
"type": "channel",
"common": {
"name": {
"en": "Jog Commands",
"de": "Jog-Befehle",
"ru": "Команды бега трусцой",
"pt": "Comandos Jog",
"nl": "Jog-opdrachten",
"fr": "Commandes de jogging",
"it": "Comandi Jog",
"es": "Comandos de jog",
"pl": "Polecenia impulsowania",
"uk": "Джог Команди",
"zh-cn": "点动命令"
}
},
"native": {}
},
{
"_id": "command.jog.x",
"type": "state",
"common": {
"name": {
"en": "Jog X axis",
"de": "Jog-X-Achse",
"ru": "Ось X Jog",
"pt": "Eixo Jog X",
"nl": "Jog X-as",
"fr": "Jogger l'axe X",
"it": "Spostamento asse X",
"es": "Eje Jog X",
"pl": "Skok osi X",
"uk": "Йог Ось X",
"zh-cn": "点动 X 轴"
},
"type": "number",
"role": "value",
"read": false,
"write": true,
"def": 0
},
"native": {}
},
{
"_id": "command.jog.y",
"type": "state",
"common": {
"name": {
"en": "Jog Y axis",
"de": "Jog-Y-Achse",
"ru": "Перемещение по оси Y",
"pt": "Eixo Y de jog",
"nl": "Jog Y-as",
"fr": "Jogger l'axe Y",
"it": "Jog asse Y",
"es": "Eje Jog Y",
"pl": "Jog oś Y",
"uk": "Йог Ось Y",
"zh-cn": "点动 Y 轴"
},
"type": "number",
"role": "value",
"read": false,
"write": true,
"def": 0
},
"native": {}
},
{
"_id": "command.jog.z",
"type": "state",
"common": {
"name": {
"en": "Jog Z axis",
"de": "Jog-Z-Achse",
"ru": "Перемещение оси Z",
"pt": "Eixo Z jog",
"nl": "Jog Z-as",
"fr": "Jogger l'axe Z",
"it": "Avanzamento dell'asse Z",
"es": "Eje Jog Z",
"pl": "Jog oś Z",
"uk": "Йог Ось Z",
"zh-cn": "点动 Z 轴"
},
"type": "number",
"role": "value",
"read": false,
"write": true,
"def": 0
},
"native": {}
},
{
"_id": "meta",
"type": "channel",
"common": {
"role": "",
"name": {
"en": "Meta information",
"de": "Meta-Informationen",
"ru": "Мета информация",
"pt": "Meta informação",
"nl": "Meta informatie",
"fr": "Méta-information",
"it": "Meta informazioni",
"es": "Meta informacion",
"pl": "Metainformacje",
"uk": "Мета",
"zh-cn": "元信息"
}
},
"native": {}
},
{
"_id": "meta.version",
"type": "state",
"common": {
"name": {
"en": "Version",
"de": "Version",
"ru": "Версия",
"pt": "Versão",
"nl": "Versie",
"fr": "Version",
"it": "Versione",
"es": "Versión",
"pl": "Wersja",
"uk": "Редагування",
"zh-cn": "版本"
},
"type": "string",
"role": "text",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "meta.api_version",
"type": "state",
"common": {
"name": {
"en": "API Version",
"de": "API-Version",
"ru": "Версия API",
"pt": "Versão API",
"nl": "API-versie",
"fr": "Version API",
"it": "Versione API",
"es": "Versión API",
"pl": "Wersja API",
"uk": "Версія API",
"zh-cn": "接口版本"
},
"type": "string",
"role": "text",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "tools",
"type": "channel",
"common": {
"name": {
"en": "Tool information",
"de": "Werkzeuginformationen",
"ru": "Информация об инструменте",
"pt": "Informação da ferramenta",
"nl": "Gereedschapsinformatie",
"fr": "Informations sur l'outil",
"it": "Informazioni sullo strumento",
"es": "Información de la herramienta",
"pl": "Informacje o narzędziu",
"uk": "Інформація",
"zh-cn": "刀具信息"
}
},
"native": {}
},
{
"_id": "printjob",
"type": "channel",
"common": {
"name": {
"en": "Print job",
"de": "Druckauftrag",
"ru": "Распечатать задание",
"pt": "Trabalho de impressão",
"nl": "Afdruktaak",
"fr": "Travail d'impression",
"it": "Lavoro di stampa",
"es": "Trabajo de impresión",
"pl": "Zadanie drukowania",
"uk": "Друк вакансії",
"zh-cn": "打印作业"
}
},
"native": {}
},
{
"_id": "printjob.file",
"type": "channel",
"common": {
"name": {
"en": "Print job file information",
"de": "Informationen zur Druckauftragsdatei",
"ru": "Информация о файле задания на печать",
"pt": "Informações do arquivo de trabalho de impressão",
"nl": "Informatie over taakbestand afdrukken",
"fr": "Imprimer les informations du fichier de travail",
"it": "Informazioni sul file di lavoro di stampa",
"es": "Imprimir información del archivo del trabajo",
"pl": "Drukuj informacje o pliku zadania",
"uk": "Друк інформації про роботу",
"zh-cn": "打印作业文件信息"
}
},
"native": {}
},
{
"_id": "printjob.file.name",
"type": "state",
"common": {
"name": {
"en": "File name",
"de": "Dateiname",
"ru": "Имя файла",
"pt": "Nome do arquivo",
"nl": "Bestandsnaam",
"fr": "Nom de fichier",
"it": "Nome del file",
"es": "Nombre del archivo",
"pl": "Nazwa pliku",
"uk": "Ім'я файла",
"zh-cn": "文档名称"
},
"type": "string",
"role": "text",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "printjob.file.origin",
"type": "state",
"common": {
"name": {
"en": "File origin",
"de": "Dateiursprung",
"ru": "Источник файла",
"pt": "Origem do arquivo",
"nl": "Oorsprong van bestand",
"fr": "Origine du fichier",
"it": "Origine del file",
"es": "Origen del archivo",
"pl": "Pochodzenie pliku",
"uk": "Походження файлів",
"zh-cn": "文件来源"
},
"type": "string",
"role": "text",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "printjob.file.size",
"type": "state",
"common": {
"name": {
"en": "File size",
"de": "Dateigröße",
"ru": "Размер файла",
"pt": "Tamanho do arquivo",
"nl": "Bestandsgrootte",
"fr": "Taille du fichier",
"it": "Dimensione del file",
"es": "Tamaño del archivo",
"pl": "Rozmiar pliku",
"uk": "Розмір файлу",
"zh-cn": "文件大小"
},
"type": "number",
"unit": "KiB",
"role": "value",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "printjob.file.date",
"type": "state",
"common": {
"name": {
"en": "File date",
"de": "Dateidatum",
"ru": "Дата файла",
"pt": "Data do arquivo",
"nl": "Bestandsdatum",
"fr": "Date du fichier",
"it": "Data file",
"es": "Fecha de archivo",
"pl": "Data pliku",
"uk": "Дата файлу",
"zh-cn": "文件日期"
},
"type": "number",
"role": "date",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "printjob.filament",
"type": "channel",
"common": {
"name": {
"en": "Print job filament information",
"de": "Filamentinformationen für Druckaufträge",
"ru": "Информация о нити для задания на печать",
"pt": "Informações de filamento do trabalho de impressão",
"nl": "Informatie over afdruktaak filament",
"fr": "Imprimer les informations sur le filament de travail",
"it": "Informazioni sul filamento del lavoro di stampa",
"es": "Imprimir información sobre el filamento del trabajo",
"pl": "Drukowanie informacji o filamentach",
"uk": "Друк інформації про роботу",
"zh-cn": "打印作业耗材信息"
}
},
"native": {}
},
{
"_id": "printjob.filament.length",
"type": "state",
"common": {
"name": {
"en": "Filament length",
"de": "Filamentlänge",
"ru": "Длина нити",
"pt": "Comprimento do filamento",
"nl": "filament lengte",
"fr": "Longueur des filaments",
"it": "Lunghezza del filamento",
"es": "Longitud del filamento",
"pl": "Długość żarnika",
"uk": "Довжина нитки",
"zh-cn": "灯丝长度"
},
"type": "number",
"role": "value",
"unit": "m",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "printjob.filament.volume",
"type": "state",
"common": {
"name": {
"en": "Filament volume",
"de": "Filamentvolumen",
"ru": "Объем нити",
"pt": "Volume do filamento",
"nl": "Filamentvolume",
"fr": "Volume de filament",
"it": "Volume del filamento",
"es": "Volumen de filamento",
"pl": "Objętość żarnika",
"uk": "Об'єм нитки",
"zh-cn": "灯丝体积"
},
"type": "number",
"role": "value",
"unit": "cm³",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "printjob.progress",
"type": "channel",
"common": {
"name": {
"en": "Print job progress",
"de": "Fortschritt des Druckauftrags",
"ru": "Ход выполнения задания на печать",
"pt": "Progresso do trabalho de impressão",
"nl": "Voortgang afdruktaak",
"fr": "Progression du travail d'impression",
"it": "Avanzamento del lavoro di stampa",
"es": "Progreso del trabajo de impresión",
"pl": "Postęp zadania drukowania",
"uk": "Розробка сайтів",
"zh-cn": "打印作业进度"
}
},
"native": {}
},
{
"_id": "printjob.progress.completion",
"type": "state",
"common": {
"name": {
"en": "Progress",
"de": "Fortschritt",
"ru": "Прогресс",
"pt": "Progresso",
"nl": "Voortgang",
"fr": "Le progrès",
"it": "Progresso",
"es": "Progreso",
"pl": "Postęp",
"uk": "Прогрес",
"zh-cn": "进步"
},
"type": "number",
"role": "value",
"unit": "%",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "printjob.progress.filepos",
"type": "state",
"common": {
"name": {
"en": "File position",
"de": "Dateiposition",
"ru": "Положение файла",
"pt": "Posição do arquivo",
"nl": "Bestandspositie",
"fr": "Emplacement du fichier",
"it": "Posizione file",
"es": "Posición de archivo",
"pl": "Pozycja pliku",
"uk": "Положення про файли",
"zh-cn": "文件位置"
},
"type": "number",
"role": "value",
"unit": "KiB",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "printjob.progress.printtime",
"type": "state",
"common": {
"name": {
"en": "Print time",
"de": "Druckzeit",
"ru": "Время печати",
"pt": "Tempo de impressão",
"nl": "Afdruktijd",
"fr": "Temps d'impression",
"it": "Tempo di stampa",
"es": "Tiempo de impresión",
"pl": "Czas drukowania",
"uk": "Час друку",
"zh-cn": "打印时间"
},
"type": "number",
"role": "value",
"unit": "s",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "printjob.progress.printtimeFormat",
"type": "state",
"common": {
"name": {
"en": "Print time (formatted)",
"de": "Druckzeit (formatiert)",
"ru": "Время печати (отформатировано)",
"pt": "Tempo de impressão (formatado)",
"nl": "Afdruktijd (opgemaakt)",
"fr": "Temps d'impression (formaté)",
"it": "Tempo di stampa (formattato)",
"es": "Hora de impresión (formateada)",
"pl": "Czas drukowania (sformatowany)",
"uk": "Час друку (форматований)",