-
Notifications
You must be signed in to change notification settings - Fork 301
/
Copy pathi18n.yaml
23573 lines (23573 loc) · 885 KB
/
i18n.yaml
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
000999codefortheinstallersmenues:
de: 000-999; code for the installer's menues
en: 000-999; code for the installer's menues
first: 000-999; code for the installer's menues
locations:
- vaillant/15.700.csv::r_1,w_1::0x76,0:value
- vaillant/15.ctlv2.csv::r_1,w_1::0x76,0:value
0frostprotconfiglow1frostprotconfigpumpkick:
de: 0 = _FrostProtConfig_Low, 1 = _FrostProtConfig_PumpKick
en: 0 = _FrostProtConfig_Low, 1 = _FrostProtConfig_PumpKick
first: 0 = _FrostProtConfig_Low, 1 = _FrostProtConfig_PumpKick
locations:
- vaillant/50.v61.mc.csv::r::0x4f,0
0monday1tue6sunday7legioprotectoff8everyday:
de: 0=Montag1 = Dienstag..6 = Sonntag7 = Legionellenschutz aus8 = täglich
en: 0=Monday, 1=Tue, … 6=Sunday, 7=LegioProtect off, 8=every day
first: 0=Monday, 1=Tue, … 6=Sunday, 7=LegioProtect off, 8=every day
locations:
- vaillant/0a.pmw.hwc.csv::r::0x10,0:value
0offconfigoff1offconfiglow:
de: 0 = _OffConfig_Off, 1 = _OffConfig_Low
en: 0 = _OffConfig_Off, 1 = _OffConfig_Low
first: 0 = _OffConfig_Off, 1 = _OffConfig_Low
locations:
- vaillant/50.v61.mc.csv::r::0x4e,0
26offwhentheoutsidetemperaturefallsbelowthisthresholdtemperaturethecontinuousheatingfunctionisstartedofffunctionisdisabled:
de: >-
-26=off, when the outside temperature falls below this threshold temperature
the continuous heating function is started (off <=> function is disabled)
en: >-
-26=off, when the outside temperature falls below this threshold temperature
the continuous heating function is started (off <=> function is disabled)
first: >-
-26=off, when the outside temperature falls below this threshold temperature
the continuous heating function is started (off <=> function is disabled)
locations:
- vaillant/15.700.csv::r_1,w_1::0x2,0:value
- vaillant/15.ctlv2.csv::r_1,w_1::0x2,0:value
3wvschaltspielenumberoftimes3wvvalueoperated:
de: '3WV Schaltspiele: Anzahl der 3WV Umschaltungen'
en: '3WV Schaltspiele: Number of times 3WV value operated'
first: '3WV Schaltspiele: Number of times 3WV value operated'
locations:
- vaillant/bai.0010015600.inc::r::0x1a,0
- vaillant/bai.0010021961.inc::r::0x1a,0
3zoneshwcccconstantvaluegeneralconfiguration:
de: (3Zonen;HWC&CC = konstanter Wert. Generelle Konfiguration?)
en: (3Zones;HWC&CC = constant value. General configuration?)
first: (3Zones;HWC&CC = constant value. General configuration?)
locations:
- vaillant/15.ctlv2.csv::r::MF,0x55,0xa0
aauchcnames10nameofheatingcircuitno10:
de: 'Name HK10: Name für den 2. Heizkreis'
en: 'aaucHcNames_10: name of heating circuit No 10'
first: 'aaucHcNames_10: name of heating circuit No 10'
locations:
- vaillant/15.ui.csv::r,w::0x41,0x48
aauchcnames11nameofheatingcircuitno11:
de: 'Name HK11: Name für den 11. Heizkreis'
en: 'aaucHcNames_11: name of heating circuit No 11'
first: 'aaucHcNames_11: name of heating circuit No 11'
locations:
- vaillant/15.ui.csv::r,w::0x41,0x50
aauchcnames12nameofheatingcircuitno12:
de: 'Name HK12: Name für den 12. Heizkreis'
en: 'aaucHcNames_12: name of heating circuit No 12'
first: 'aaucHcNames_12: name of heating circuit No 12'
locations:
- vaillant/15.ui.csv::r,w::0x41,0x58
aauchcnames13nameofheatingcircuitno13:
de: 'Name HK13: Name für den 13. Heizkreis'
en: 'aaucHcNames_13: name of heating circuit No 13'
first: 'aaucHcNames_13: name of heating circuit No 13'
locations:
- vaillant/15.ui.csv::r,w::0x41,0x60
aauchcnames14nameofheatingcircuitno14:
de: 'Name HK14: Name für den 14. Heizkreis'
en: 'aaucHcNames_14: name of heating circuit No 14'
first: 'aaucHcNames_14: name of heating circuit No 14'
locations:
- vaillant/15.ui.csv::r,w::0x41,0x68
aauchcnames15nameofheatingcircuitno15:
de: 'Name HK15: Name für den 15. Heizkreis'
en: 'aaucHcNames_15: name of heating circuit No 15'
first: 'aaucHcNames_15: name of heating circuit No 15'
locations:
- vaillant/15.ui.csv::r,w::0x41,0x70
aauchcnames1nameofheatingcircuitno1:
de: 'Name HK1: Name für den 1. Heizkreis'
en: 'aaucHcNames_1: name of heating circuit No 1'
first: 'aaucHcNames_1: name of heating circuit No 1'
locations:
- vaillant/15.ui.csv::r,w::0x41,0
aauchcnames2nameofheatingcircuitno2:
de: 'Name HK2: Name für den 2. Heizkreis'
en: 'aaucHcNames_2: name of heating circuit No 2'
first: 'aaucHcNames_2: name of heating circuit No 2'
locations:
- vaillant/15.ui.csv::r,w::0x41,0x8
aauchcnames3nameofheatingcircuitno3:
de: 'Name HK3: Name für den 3. Heizkreis'
en: 'aaucHcNames_3: name of heating circuit No 3'
first: 'aaucHcNames_3: name of heating circuit No 3'
locations:
- vaillant/15.ui.csv::r,w::0x41,0x10
aauchcnames4nameofheatingcircuitno4:
de: 'Name HK4: Name für den 4. Heizkreis'
en: 'aaucHcNames_4: name of heating circuit No 4'
first: 'aaucHcNames_4: name of heating circuit No 4'
locations:
- vaillant/15.ui.csv::r,w::0x41,0x18
aauchcnames5nameofheatingcircuitno5:
de: 'Name HK5: Name für den 5. Heizkreis'
en: 'aaucHcNames_5: name of heating circuit No 5'
first: 'aaucHcNames_5: name of heating circuit No 5'
locations:
- vaillant/15.ui.csv::r,w::0x41,0x20
aauchcnames6nameofheatingcircuitno6:
de: 'Name HK6: Name für den 6. Heizkreis'
en: 'aaucHcNames_6: name of heating circuit No 6'
first: 'aaucHcNames_6: name of heating circuit No 6'
locations:
- vaillant/15.ui.csv::r,w::0x41,0x28
aauchcnames7nameofheatingcircuitno7:
de: 'Name HK7: Name für den 8. Heizkreis'
en: 'aaucHcNames_7: name of heating circuit No 7'
first: 'aaucHcNames_7: name of heating circuit No 7'
locations:
- vaillant/15.ui.csv::r,w::0x41,0x30
aauchcnames8nameofheatingcircuitno8:
de: 'Name HK8: Name für den 8. Heizkreis'
en: 'aaucHcNames_8: name of heating circuit No 8'
first: 'aaucHcNames_8: name of heating circuit No 8'
locations:
- vaillant/15.ui.csv::r,w::0x41,0x38
aauchcnames9nameofheatingcircuitno9:
de: 'Name HK9: Name für den 9. Heizkreis'
en: 'aaucHcNames_9: name of heating circuit No 9'
first: 'aaucHcNames_9: name of heating circuit No 9'
locations:
- vaillant/15.ui.csv::r,w::0x41,0x40
aauchcnamesch10nameofch10:
de: 'Name HK10: Name für HK10'
en: 'aaucHcNames CH10: name of CH10'
first: 'aaucHcNames CH10: name of CH10'
locations:
- vaillant/15.uih.csv::r,w::0x41,0x48
aauchcnamesch11nameofch11:
de: 'Name HK11: Name für HK11'
en: 'aaucHcNames CH11: name of CH11'
first: 'aaucHcNames CH11: name of CH11'
locations:
- vaillant/15.uih.csv::r,w::0x41,0x50
aauchcnamesch12nameofch12:
de: 'Name HK12: Name für HK12'
en: 'aaucHcNames CH12: name of CH12'
first: 'aaucHcNames CH12: name of CH12'
locations:
- vaillant/15.uih.csv::r,w::0x41,0x58
aauchcnamesch13nameofch13:
de: 'Name HK13: Name für HK13'
en: 'aaucHcNames CH13: name of CH13'
first: 'aaucHcNames CH13: name of CH13'
locations:
- vaillant/15.uih.csv::r,w::0x41,0x60
aauchcnamesch14nameofch14:
de: 'Name HK14: Name für HK14'
en: 'aaucHcNames CH14: name of CH14'
first: 'aaucHcNames CH14: name of CH14'
locations:
- vaillant/15.uih.csv::r,w::0x41,0x68
aauchcnamesch15nameofch15:
de: 'Name HK15: Name für HK15'
en: 'aaucHcNames CH15: name of CH15'
first: 'aaucHcNames CH15: name of CH15'
locations:
- vaillant/15.uih.csv::r,w::0x41,0x70
aauchcnamesch16nameofch16:
de: 'Name HK16: Name für HK16'
en: 'aaucHcNames CH16: name of CH16'
first: 'aaucHcNames CH16: name of CH16'
locations:
- vaillant/15.uih.csv::r,w::0x41,0x78
aauchcnamesch2nameofch2:
de: 'Name HK2: Name für HK2'
en: 'aaucHcNames CH2: name of CH2'
first: 'aaucHcNames CH2: name of CH2'
locations:
- vaillant/15.uih.csv::r,w::0x41,0x8
aauchcnamesch3nameofch3:
de: 'Name HK3: Name für HK3'
en: 'aaucHcNames CH3: name of CH3'
first: 'aaucHcNames CH3: name of CH3'
locations:
- vaillant/15.uih.csv::r,w::0x41,0x10
aauchcnamesch4nameofch4:
de: 'Name HK4: Name für HK4'
en: 'aaucHcNames CH4: name of CH4'
first: 'aaucHcNames CH4: name of CH4'
locations:
- vaillant/15.uih.csv::r,w::0x41,0x18
aauchcnamesch5nameofch5:
de: 'Name HK5: Name für HK5'
en: 'aaucHcNames CH5: name of CH5'
first: 'aaucHcNames CH5: name of CH5'
locations:
- vaillant/15.uih.csv::r,w::0x41,0x20
aauchcnamesch6nameofch6:
de: 'Name HK6: Name für HK6'
en: 'aaucHcNames CH6: name of CH6'
first: 'aaucHcNames CH6: name of CH6'
locations:
- vaillant/15.uih.csv::r,w::0x41,0x28
aauchcnamesch7nameofch7:
de: 'Name HK7: Name für HK7'
en: 'aaucHcNames CH7: name of CH7'
first: 'aaucHcNames CH7: name of CH7'
locations:
- vaillant/15.uih.csv::r,w::0x41,0x30
aauchcnamesch8nameofch8:
de: 'Name HK8: Name für HK8'
en: 'aaucHcNames CH8: name of CH8'
first: 'aaucHcNames CH8: name of CH8'
locations:
- vaillant/15.uih.csv::r,w::0x41,0x38
aauchcnamesch9nameofch9:
de: 'Name HK9: Name für HK9'
en: 'aaucHcNames CH9: name of CH9'
first: 'aaucHcNames CH9: name of CH9'
locations:
- vaillant/15.uih.csv::r,w::0x41,0x40
aauchcnameshk1labellingofthefirstheatingcircuitonlyaz09blank:
de: >-
Heizkreisname HK1: labelling of the first heating circuit (only
A-Z,0-9,blank)
en: 'aaucHcNames_HK1: labelling of the first heating circuit (only A-Z,0-9,blank)'
first: 'aaucHcNames_HK1: labelling of the first heating circuit (only A-Z,0-9,blank)'
locations:
- vaillant/15.370.csv::r,w::0x3f,0
- vaillant/15.470.csv::r,w::0x3f,0
- vaillant/15.f37.csv::r,w::0x3f,0
- vaillant/15.f47.csv::r,w::0x3f,0
aauchcnameshk2labellingofthesecondheatingcircuitonlyaz09blank:
de: >-
Heizkreisname HK2: labelling of the second heating circuit (only
A-Z,0-9,blank)
en: >-
aaucHcNames_HK2: labelling of the second heating circuit (only
A-Z,0-9,blank)
first: >-
aaucHcNames_HK2: labelling of the second heating circuit (only
A-Z,0-9,blank)
locations:
- vaillant/15.470.csv::r,w::0x3f,0x8
- vaillant/15.f47.csv::r,w::0x3f,0x8
abschaltungwegenspeicherladung:
de: Abschaltung wegen Speicherladung
en: Abschaltung wegen Speicherladung
first: Abschaltung wegen Speicherladung
locations:
- vaillant/26.vr630.hc.csv::r::0x47,0
absenktemperatur:
de: Absenktemperatur
en: Absenktemperatur
first: Absenktemperatur
locations:
- vaillant/26.vr630.hc.csv::r,w::0x33,0
- vaillant/50.vr630.mc.csv::r,w::0x33,0
- vaillant/51.vr630.mc.3.csv::r,w::0x33,0
absenktemperaturzone1:
de: Absenktemperatur Zone 1
en: Absenktemperatur Zone 1
first: Absenktemperatur Zone 1
locations:
- vaillant/15.ctlv2.csv::r_6,w_6::0x9,0
absenktemperaturzone2:
de: Absenktemperatur Zone 2
en: Absenktemperatur Zone 2
first: Absenktemperatur Zone 2
locations:
- vaillant/15.ctlv2.csv::r_7,w_7::0x9,0
absenktemperaturzone3:
de: Absenktemperatur Zone 3
en: Absenktemperatur Zone 3
first: Absenktemperatur Zone 3
locations:
- vaillant/15.ctlv2.csv::r_8,w_8::0x9,0
accelerationtestmodeinitiatesindicatesaccelerationofseveralinternaltimings:
de: >-
Schnelltest. Bei Servicezeit AN werden die Zeitschritte für das
Energiebilanz-Integral von 1 min auf 1 sec umgestellt und damit die
Energiebilanzierung um den Faktor 60 beschleunigt. Die Mindestlaufzeiten des
Kompressors werden nicht verändert.
en: >-
Acceleration_Test_Mode: initiates/indicates acceleration of several internal
timings
first: >-
Acceleration_Test_Mode: initiates/indicates acceleration of several internal
timings
locations:
- vaillant/08.ehp.csv::r,wi,u::0x66,0
accesoryrelay1function:
de: Funktion des Zubehörrelais 1
en: Accesory relay 1 function
first: Accesory relay 1 function
locations:
- vaillant/bai.0010002315.inc::r,wi::0x4b,0x4:value
- vaillant/bai.0010002465.inc::r,wi::0x4b,0x4:value
- vaillant/bai.0010003857.inc::r,wi::0x4b,0x4:value
- vaillant/bai.0010003886.inc::r,wi::0x4b,0x4:value
- vaillant/bai.0010004121.inc::r,wi::0x4b,0x4:value
- vaillant/bai.0010004150.inc::r,wi::0x4b,0x4:value
- vaillant/bai.0010005400.inc::r,wi::0xb9,0:value
- vaillant/bai.0010006101.inc::r,wi::0x4b,0x4:value
- vaillant/bai.0010006341.inc::r,wi::0xb9,0:value
- vaillant/bai.0010007508.inc::r,wi::0xb9,0:value
- vaillant/bai.0010008045.inc::r,wi::0xb9,0:value
- vaillant/bai.0010010674.inc::r,wi::0xb9,0:value
- vaillant/bai.308523.inc::r,wi::0x4b,0x4:value
accesoryrelay2function:
de: Funktion des Zubehörrelais 2
en: Accesory relay 2 function
first: Accesory relay 2 function
locations:
- vaillant/bai.0010002315.inc::r,wi::0x4c,0x4:value
- vaillant/bai.0010002465.inc::r,wi::0x4c,0x4:value
- vaillant/bai.0010003857.inc::r,wi::0x4c,0x4:value
- vaillant/bai.0010003886.inc::r,wi::0x4c,0x4:value
- vaillant/bai.0010004121.inc::r,wi::0x4c,0x4:value
- vaillant/bai.0010004150.inc::r,wi::0x4c,0x4:value
- vaillant/bai.0010005400.inc::r,wi::0xba,0:value
- vaillant/bai.0010006101.inc::r,wi::0x4c,0x4:value
- vaillant/bai.0010006341.inc::r,wi::0xba,0:value
- vaillant/bai.0010007508.inc::r,wi::0xba,0:value
- vaillant/bai.0010008045.inc::r,wi::0xba,0:value
- vaillant/bai.0010010674.inc::r,wi::0xba,0:value
- vaillant/bai.308523.inc::r,wi::0x4c,0x4:value
activatedspecialfunctionoffirstheatingcircuit:
de: activated special function of first heating circuit
en: activated special function of first heating circuit
first: activated special function of first heating circuit
locations:
- vaillant/15.370.csv::r::0x5d,0:value
- vaillant/15.470.csv::r::0x5d,0:value
- vaillant/15.f37.csv::r::0x5d,0:value
- vaillant/15.f47.csv::r,w::0x5d,0:value
activatedspecialfunctionofsecondheatingcircuit:
de: activated special function of second heating circuit
en: activated special function of second heating circuit
first: activated special function of second heating circuit
locations:
- vaillant/15.470.csv::r::0x1c,0:value
- vaillant/15.f47.csv::r,w::0x1c,0:value
activationofthereturncontrol:
de: Aktivierung der Rücklaufregelung
en: Activation of the return control
first: Activation of the return control
locations:
- vaillant/bai.0010015600.inc::r,wi_1::0xb3,0:value
- vaillant/bai.0010021961.inc::r,wi_1::0xb3,0:value
actorfernsteuerungtrueremotecontrolofactors:
de: 'ActorFernsteuerung: TRUE -> RemoteControl of actors'
en: 'ActorFernsteuerung: TRUE -> RemoteControl of actors'
first: 'ActorFernsteuerung: TRUE -> RemoteControl of actors'
locations:
- vaillant/0a.pmw.hwc.csv::r::0x1b,0
actostordetectedindicatesthatanactostorhasbeendetected:
de: 'ACTOstorDetected: indicates that an ACTOstor has been detected'
en: 'ACTOstorDetected: indicates that an ACTOstor has been detected'
first: 'ACTOstorDetected: indicates that an ACTOstor has been detected'
locations:
- vaillant/15.370.csv::r::0x6f,0
- vaillant/15.392.csv::r::0x6f,0
- vaillant/15.430.csv::r::0x6f,0
- vaillant/15.470.csv::r::0x6f,0
- vaillant/15.f37.csv::r::0x6f,0
- vaillant/15.f43.csv::r::0x6f,0
- vaillant/15.f47.csv::r::0x6f,0
actostoreepreventivecounterdk:
de: actoSTOR_EE_PreventiveCounter_DK
en: actoSTOR_EE_PreventiveCounter_DK
first: actoSTOR_EE_PreventiveCounter_DK
locations:
- vaillant/bai.0010006341.inc::r::0xec,0
- vaillant/bai.0010007508.inc::r::0xec,0
- vaillant/bai.0010010674.inc::r::0xec,0
actostormoduldetecteddetectedvlrbitcounted:
de: 'ActoStorModulDetected: detected VLR (bit counted)'
en: 'ActoStorModulDetected: detected VLR (bit counted)'
first: 'ActoStorModulDetected: detected VLR (bit counted)'
locations:
- vaillant/15.ui.csv::r::0x5a,0
actostoropmodestatediagramactostorcontrol:
de: 'actoSTOR_OPMode: state diagram actoSTOR control'
en: 'actoSTOR_OPMode: state diagram actoSTOR control'
first: 'actoSTOR_OPMode: state diagram actoSTOR control'
locations:
- vaillant/15.370.csv::r::0x94,0
- vaillant/15.470.csv::r::0x94,0
- vaillant/15.f37.csv::r::0x94,0
- vaillant/15.f47.csv::r::0x94,0
actostoropmodezustandsautomatactstoransteuerung:
de: 'actoSTOR_OPMode: Zustands-Automat actSTOR Ansteuerung'
en: 'actoSTOR_OPMode: Zustands-Automat actSTOR Ansteuerung'
first: 'actoSTOR_OPMode: Zustands-Automat actSTOR Ansteuerung'
locations:
- vaillant/15.430.csv::r::0x94,0
- vaillant/15.f43.csv::r::0x94,0
actostorstatestateoftheactostorcontrol0off1dhwreleased2dhwloading3pumpoverrun4stoppumpoverrun:
de: >-
actostorstate: state of the actoSTOR control (0 = off; 1 = DHW released; 2 =
DHW loading; 3 = Pump overrun; 4 = stop pump overrun)
en: >-
actostorstate: state of the actoSTOR control (0 = off; 1 = DHW released; 2 =
DHW loading; 3 = Pump overrun; 4 = stop pump overrun)
first: >-
actostorstate: state of the actoSTOR control (0 = off; 1 = DHW released; 2 =
DHW loading; 3 = Pump overrun; 4 = stop pump overrun)
locations:
- vaillant/15.430.csv:sw_ge126:r::0xa4,0
- vaillant/15.f43.csv::r::0xa4,0
actoutsidetemperaturecsensorstate:
de: Außentemperatur [°C]
en: act. outside temperature [°C/sensor state]
first: act. outside temperature [°C/sensor state]
locations:
- vaillant/15.350.csv::r,wi::0x12,0
actualcosensorresistance:
de: Aktueller Widderstand des CO-Sensors
en: actual CO-sensor resistance
first: actual CO-sensor resistance
locations:
- vaillant/bai.0010004121.inc::r::0x5,1:value
actualdate:
de: Aktuelles Datum
en: Actual Date
first: Actual Date
locations:
- vaillant/08.ehp.csv::r::0x29,0
actualdesiredtemp12cauflsung:
de: 'Akt. Solltemperatur: 1/2°C Auflösung'
en: 'ActualDesiredTemp: 1/2°C Auflösung'
first: 'ActualDesiredTemp: 1/2°C Auflösung'
locations:
- vaillant/23.zeo.cc.csv::r::0x33,0x2
- vaillant/25.zeo.hwc.csv::r::0x33,0
- vaillant/50.zeo.mc.csv::r::0x33,0x4
actualdesiredtempcurrentsetpointforthesecondheatingcircuitconsideringallbasicconditionspassedtothecontrolalgorithms:
de: >-
Akt. Solltemperatur: current setpoint for the second heating circuit
considering all basic conditions passed to the control algorithms
en: >-
ActualDesiredTemp: current setpoint for the second heating circuit
considering all basic conditions passed to the control algorithms
first: >-
ActualDesiredTemp: current setpoint for the second heating circuit
considering all basic conditions passed to the control algorithms
locations:
- vaillant/50.v61.mc.csv::r::0x2f,0
actualdesiredtempcurrenttanksetpointdependsontheprogrammedperiodandcurrenttimeoperatingmode:
de: >-
Akt. Solltemperatur: Current tank setpoint. Depends on the programmed period
and current time, operating mode …
en: >-
ActualDesiredTemp: Current tank setpoint. Depends on the programmed period
and current time, operating mode …
first: >-
ActualDesiredTemp: Current tank setpoint. Depends on the programmed period
and current time, operating mode …
locations:
- vaillant/a0.sol.hwc.csv::r::0x1f,0
actualdevicepowerinkw:
de: 'ActualDevicePower: in kW'
en: 'ActualDevicePower: in kW'
first: 'ActualDevicePower: in kW'
locations:
- vaillant/84.zeo.csv::r::0xb9,0
actualenergybalancingintegral:
de: >-
Das Energie-Integral ist die aufsummierte Differenz zwischen
Vorlauftemperatur IST und Vorlauftemperatur SOLL pro Minute. Bei einem
bestimmten Wärmedefizit startet die Wärmepumpe.
en: actual energy balancing integral
first: actual energy balancing integral
locations:
- vaillant/08.ehp.csv::r::0x80,0
actualenvironmentalpowerinkwnherungswert:
de: 'ActualEnvironmentalPower: in kW (Näherungswert)'
en: 'ActualEnvironmentalPower: in kW (Näherungswert)'
first: 'ActualEnvironmentalPower: in kW (Näherungswert)'
locations:
- vaillant/84.zeo.csv::r::0x8a,0
actualenvironmentpowerfine:
de: ActualEnvironmentPowerFine
en: ActualEnvironmentPowerFine
first: ActualEnvironmentPowerFine
locations:
- vaillant/08.ehp.csv:sw_ge414:r,u::0xe2,1
actualenvironmentpoweronlyforgraphicdisplaytheenvironmentalpowerthatisactuallydisplayedinkw:
de: >-
ActualEnvironmentPower: only for graphic display: the environmental power
that is actually displayed in kW
en: >-
ActualEnvironmentPower: only for graphic display: the environmental power
that is actually displayed in kW
first: >-
ActualEnvironmentPower: only for graphic display: the environmental power
that is actually displayed in kW
locations:
- vaillant/08.ehp.csv::r,u::0xba,0
actualenvironmentpowerpercentageonlyforgraphicdisplayamountoffillingofthebigenergyarrow:
de: >-
ActualEnvironmentPowerPercentage: only for graphic display: amount of
filling of the big energy arrow
en: >-
ActualEnvironmentPowerPercentage: only for graphic display: amount of
filling of the big energy arrow
first: >-
ActualEnvironmentPowerPercentage: only for graphic display: amount of
filling of the big energy arrow
locations:
- vaillant/08.ehp.csv::r,u::0xbb,0
actualfanspeed:
de: actual fan speed
en: actual fan speed
first: actual fan speed
locations:
- vaillant/e0.omu.csv::r::0x39,0:value
actualflowtempdesiredheatingcircuit1:
de: ActualFlowTempDesired Heizkreis 1
en: ActualFlowTempDesired heating circuit 1
first: ActualFlowTempDesired heating circuit 1
locations:
- vaillant/15.700.csv::r_3::0x7,0
actualflowtempdesiredheatingcircuit2:
de: ActualFlowTempDesired Heizkreis 2
en: ActualFlowTempDesired heating circuit 2
first: ActualFlowTempDesired heating circuit 2
locations:
- vaillant/15.700.csv::r_4::0x7,0
actualflowtempdesiredheatingcircuit3:
de: ActualFlowTempDesired Heizkreis 3
en: ActualFlowTempDesired heating circuit 3
first: ActualFlowTempDesired heating circuit 3
locations:
- vaillant/15.700.csv::r_5::0x7,0
actualflowtempdesiredheizkreis1:
de: ActualFlowTempDesired Heizkreis 1
en: ActualFlowTempDesired Heizkreis 1
first: ActualFlowTempDesired Heizkreis 1
locations:
- vaillant/15.ctlv2.csv::r_3::0x7,0
actualflowtempdesiredheizkreis2:
de: ActualFlowTempDesired Heizkreis 2
en: ActualFlowTempDesired Heizkreis 2
first: ActualFlowTempDesired Heizkreis 2
locations:
- vaillant/15.ctlv2.csv::r_4::0x7,0
actualflowtempdesiredheizkreis3:
de: ActualFlowTempDesired Heizkreis 3
en: ActualFlowTempDesired Heizkreis 3
first: ActualFlowTempDesired Heizkreis 3
locations:
- vaillant/15.ctlv2.csv::r_5::0x7,0
actualgsmgprsprovider:
de: Aktueller GSM/GPRS Provider
en: Actual GSM/GPRS provider
first: Actual GSM/GPRS provider
locations:
- vaillant/05.vd4.csv::r,wi::0x1b,0
actualkrm:
de: Actual_Krm
en: Actual_Krm
first: Actual_Krm
locations:
- vaillant/0a.pmw.hwc.csv:sw_ge113:r::0x4c,0
actualroomtemperaturecsensorstate:
de: Aktuelle Raumtemperatur
en: actual room temperature [°C/Sensor state]
first: actual room temperature [°C/Sensor state]
locations:
- vaillant/15.350.csv:sw_le140:r,wi::0xf,0
actualroomtemperaturesetpointc:
de: Aktueller Raumsollwert[°C]
en: Actual roomtemperature setpoint [°C]
first: Actual roomtemperature setpoint [°C]
locations:
- vaillant/15.350.csv::r,wi::0x57,0
actualroomtempsetpointhc1currentroomsetpointconsideringallbasicconditionspassedtothecontrolalgorithms:
de: >-
Raumsolltemp. HK1: current room setpoint considering all basic conditions
passed to the control algorithms
en: >-
ActualRoomTempSetpointHC1: current room setpoint considering all basic
conditions passed to the control algorithms
first: >-
ActualRoomTempSetpointHC1: current room setpoint considering all basic
conditions passed to the control algorithms
locations:
- vaillant/15.370.csv::r::0x63,0
- vaillant/15.392.csv::r::0x63,0
- vaillant/15.430.csv::r::0x63,0
- vaillant/15.470.csv::r::0x63,0
- vaillant/15.f37.csv::r::0x63,0
- vaillant/15.f43.csv::r::0x63,0
- vaillant/15.f47.csv::r::0x63,0
actualtappingsetpoint:
de: Aktueller Zapfsollwert
en: ActualTappingSetpoint
first: ActualTappingSetpoint
locations:
- vaillant/0a.pmw.hwc.csv::r::0xe,0
actualtime:
de: Aktuelle Zeit
en: Actual Time
first: Actual Time
locations:
- vaillant/08.ehp.csv::r::0x28,0
actualtnm:
de: Actual_Tnm
en: Actual_Tnm
first: Actual_Tnm
locations:
- vaillant/0a.pmw.hwc.csv:sw_ge113:r::0x4d,0
actualweekday:
de: Aktueller Wochentag
en: Actual Weekday
first: Actual Weekday
locations:
- vaillant/08.ehp.csv::r::0x2a,0
actualweekdaycurrentdayofweek:
de: Aktueller Wochentag
en: 'ActualWeekday: current day of week'
first: 'ActualWeekday: current day of week'
locations:
- vaillant/15.370.csv::r::0x5f,0
- vaillant/15.392.csv::r,w::0x5f,0
- vaillant/15.430.csv::r,w::0x5f,0
- vaillant/15.470.csv::r::0x5f,0
- vaillant/15.e7f.csv::r,w::0x6,0
- vaillant/15.f37.csv::r::0x5f,0
- vaillant/15.f43.csv::r,w::0x5f,0
- vaillant/15.f47.csv::r::0x5f,0
adaptionappliedtoheatingcurveofhc1:
de: adaption applied to heating curve of Hc1
en: adaption applied to heating curve of Hc1
first: adaption applied to heating curve of Hc1
locations:
- vaillant/15.700.csv::r_3::0x1c,0:value
- vaillant/15.ctlv2.csv::r_3::0x1c,0:value
adaptionappliedtoheatingcurveofhc2:
de: adaption applied to heating curve of Hc2
en: adaption applied to heating curve of Hc2
first: adaption applied to heating curve of Hc2
locations:
- vaillant/15.700.csv::r_4::0x1c,0:value
- vaillant/15.ctlv2.csv::r_4::0x1c,0:value
adaptionappliedtoheatingcurveofhc3:
de: adaption applied to heating curve of Hc3
en: adaption applied to heating curve of Hc3
first: adaption applied to heating curve of Hc3
locations:
- vaillant/15.700.csv::r_5::0x1c,0:value
- vaillant/15.ctlv2.csv::r_5::0x1c,0:value
adaptiveheatcurve:
de: Adaptive Heizkurve
en: adaptive heat curve
first: adaptive heat curve
locations:
- vaillant/15.700.csv::r_1,w_1::0x14,0
- vaillant/15.ctlv2.csv::r_1,w_1::0x14,0
adcvaluetabove:
de: ADCValue_T_above
en: ADCValue_T_above
first: ADCValue_T_above
locations:
- vaillant/15.f37.csv::r::0x2d,0
- vaillant/15.f47.csv::r::0x2d,0
adcvaluetbelow:
de: ADCValue_T_below
en: ADCValue_T_below
first: ADCValue_T_below
locations:
- vaillant/15.f37.csv::r::0x4e,0
- vaillant/15.f47.csv::r::0x4e,0
adcvaluetbelowlowerroomtempsensoradcvalue:
de: 'ADCValue_T_below: lower room temp sensor ADC value'
en: 'ADCValue_T_below: lower room temp sensor ADC value'
first: 'ADCValue_T_below: lower room temp sensor ADC value'
locations:
- vaillant/15.370.csv::r::0x4e,0
- vaillant/15.470.csv::r::0x4e,0
adpprehactive:
de: adpPreH_Active
en: adpPreH_Active
first: adpPreH_Active
locations:
- vaillant/15.430.csv::r::0xbe,0
adpprehcurrentroomtemp:
de: adpPreH_CurrentRoomTemp
en: adpPreH_CurrentRoomTemp
first: adpPreH_CurrentRoomTemp
locations:
- vaillant/15.430.csv::r::0xb5,0
adpprehinsidetw:
de: adpPreH_InSideTW
en: adpPreH_InSideTW
first: adpPreH_InSideTW
locations:
- vaillant/15.430.csv::r::0xb9,0
adpprehminutesbeforefirsttw:
de: adpPreH_MinutesBeforeFirstTW
en: adpPreH_MinutesBeforeFirstTW
first: adpPreH_MinutesBeforeFirstTW
locations:
- vaillant/15.430.csv::r::0xb6,0
adpprehoutdoortemp:
de: adpPreH_OutdoorTemp
en: adpPreH_OutdoorTemp
first: adpPreH_OutdoorTemp
locations:
- vaillant/15.430.csv::r::0xb8,0
adpprehoutdoortempstart:
de: adpPreH_OutdoorTempStart
en: adpPreH_OutdoorTempStart
first: adpPreH_OutdoorTempStart
locations:
- vaillant/15.430.csv::r::0xba,0
adpprehpreheatingtime:
de: adpPreH_PreheatingTime
en: adpPreH_PreheatingTime
first: adpPreH_PreheatingTime
locations:
- vaillant/15.430.csv::r::0xb7,0
adpprehramp:
de: adpPreH_Ramp
en: adpPreH_Ramp
first: adpPreH_Ramp
locations:
- vaillant/15.430.csv::r::0xbb,0
adpprehroomsetpoint:
de: adpPreH_RoomSetpoint
en: adpPreH_RoomSetpoint
first: adpPreH_RoomSetpoint
locations:
- vaillant/15.430.csv::r::0xb4,0
adpprehroomtempstart:
de: adpPreH_RoomTempStart
en: adpPreH_RoomTempStart
first: adpPreH_RoomTempStart
locations:
- vaillant/15.430.csv::r::0xbd,0
adpprehstarttime:
de: adpPreH_Starttime
en: adpPreH_Starttime
first: adpPreH_Starttime
locations:
- vaillant/15.430.csv::r::0xbc,0
advancedpowervaluesdk:
de: AdvancedPowerValues_DK
en: AdvancedPowerValues_DK
first: AdvancedPowerValues_DK
locations:
- vaillant/bai.0010005400.inc::r::0xae,0
- vaillant/bai.0010006341.inc::r::0xae,0
- vaillant/bai.0010007508.inc::r::0xae,0
- vaillant/bai.0010010674.inc::r::0xae,0
airearthcollectoravailable:
de: Luft-Erdkollektor vorhanden
en: Air-earth collector available
first: Air-earth collector available
locations:
- vaillant/08.recov.csv::r,w::0x28,0xe
airinletsensoroffsetcalibrationvalueforairinletsensor:
de: 'AirInletSensor_Offset: calibration value for air inlet sensor'
en: 'AirInletSensor_Offset: calibration value for air inlet sensor'
first: 'AirInletSensor_Offset: calibration value for air inlet sensor'
locations:
- vaillant/e0.omu.csv:sw_ge104:r,wi::0x4a,0
airoutletheatsourceoutlettemperatureforairtowatermachines:
de: Fortlufttemperatur
en: 'AirOutlet: heat source outlet temperature for air to water machines'
first: 'AirOutlet: heat source outlet temperature for air to water machines'
locations:
- vaillant/08.ehp.csv:airtowater:r,u::0x8,0
- vaillant/08.recov.csv::r::0xd,0xe
airoutletoffsetforairoutlettemperaturesensor:
de: >-
Fortlufttemperatur: Manuelle Anpassung der angezeigten
Temperaturen.Kalibrier-VerstellbereichAußentemperatur: +/- 5 K, Schrittweite
1,0 K.alle anderen: +/- 3 K, Schrittweite 0,5 K.
en: 'AirOutlet: Offset for air outlet temperature sensor'
first: 'AirOutlet: Offset for air outlet temperature sensor'
locations:
- vaillant/08.ehp.csv:airtowater:r,wi::0xc9,0
airqualitysensornumber:
de: Luftqualitätssensor Anzahl
en: Air quality sensor number
first: Air quality sensor number
locations:
- vaillant/08.recov.csv::r,w::0x2d,0xe
aktiviertdeaktiviertdieshufunktionalitt:
de: aktiviert/deaktiviert die SHU-Funktionalität
en: aktiviert/deaktiviert die SHU-Funktionalität
first: aktiviert/deaktiviert die SHU-Funktionalität
locations:
- vaillant/84.zeo.csv::r::0x6,1
aktuelleraumtemperaturinzone1:
de: aktuelle Raumtemperatur in Zone 1
en: aktuelle Raumtemperatur in Zone 1
first: aktuelle Raumtemperatur in Zone 1
locations:
- vaillant/15.ctlv2.csv::r_6::0xf,0:value
aktuelleraumtemperaturinzone2:
de: aktuelle Raumtemperatur in Zone 2
en: aktuelle Raumtemperatur in Zone 2
first: aktuelle Raumtemperatur in Zone 2
locations:
- vaillant/15.ctlv2.csv::r_7::0xf,0:value
aktuelleraumtemperaturinzone3:
de: aktuelle Raumtemperatur in Zone 3
en: aktuelle Raumtemperatur in Zone 3
first: aktuelle Raumtemperatur in Zone 3
locations:
- vaillant/15.ctlv2.csv::r_8::0xf,0:value
aktuellermonatbrennstoffverbrauchheizung:
de: Aktueller Monat Brennstoffverbrauch Heizung
en: Aktueller Monat Brennstoffverbrauch Heizung
first: Aktueller Monat Brennstoffverbrauch Heizung
locations:
- vaillant/15.700.csv::r_1,w_1::0x4e,0:value
aktuellermonatbrennstoffverbrauchhotwater:
de: Aktueller Monat Brennstoffverbrauch Warmwasser
en: Aktueller Monat Brennstoffverbrauch hot water
first: Aktueller Monat Brennstoffverbrauch hot water
locations:
- vaillant/15.700.csv::r_1,w_1::0x51,0:value
aktuellermonatstromverbrauchheizung:
de: Aktueller Monat Stromverbrauch Heizung
en: Aktueller Monat Stromverbrauch Heizung
first: Aktueller Monat Stromverbrauch Heizung
locations:
- vaillant/15.700.csv::r_1,w_1::0x4f,0:value
aktuellermonatstromverbrauchhotwater:
de: Aktueller Monat Stromverbrauch Warmwasser
en: Aktueller Monat Stromverbrauch hot water
first: Aktueller Monat Stromverbrauch hot water
locations:
- vaillant/15.700.csv::r_1,w_1::0x50,0:value
aktuellesdatum:
de: Aktuelles Datum
en: Aktuelles Datum
first: Aktuelles Datum
locations:
- vaillant/15.700.csv::r_1,w_1::0x34,0:value
aktuelleuhrzeit:
de: Aktuelle Uhrzeit
en: Aktuelle Uhrzeit
first: Aktuelle Uhrzeit
locations:
- vaillant/15.700.csv::r_1,w_1::0x35,0:value
amountofconfiguredslotsperweekday:
de: Anzahl der eingestellten Slots pro Wochentag
en: Amount of configured slots per weekday
first: Amount of configured slots per weekday
locations:
- vaillant/15.ctlv2.csv::r::MF,0x55,0xa4,0,0x2:value
- vaillant/15.ctlv2.csv::r::MF,0x55,0xa4,0,0x3:value
- vaillant/15.ctlv2.csv::r::MF,0x55,0xa4,0,0:value
- vaillant/15.ctlv2.csv::r::MF,0x55,0xa4,1,0:value
- vaillant/15.ctlv2.csv::r::MF,0x55,0xa4,0x2,0:value
analoginputsactualvalues:
de: Aktueller Wert 24V Eingänge
en: Analog inputs actual values
first: Analog inputs actual values
locations:
- vaillant/05.vd4.csv::r,wi::0x3b,0
anlegethermostat:
de: Anlegethermostat
en: Anlegethermostat
first: Anlegethermostat
locations:
- vaillant/84.zeo.csv::r::0xa1,0
anodeinfeedbackdkfeedbacksignaloftheanode:
de: 'Anode_IN_Feedback_DK: feedback signal of the anode'
en: 'Anode_IN_Feedback_DK: feedback signal of the anode'
first: 'Anode_IN_Feedback_DK: feedback signal of the anode'
locations:
- vaillant/bai.0010005400.inc::r::0x7e,0
- vaillant/bai.0010006341.inc::r::0x7e,0
- vaillant/bai.0010007508.inc::r::0x7e,0
- vaillant/bai.0010010674.inc::r::0x7e,0
anpassungheizkurveheizkreis1:
de: Anpassung Heizkurve Heizkreis 1
en: Anpassung Heizkurve Heizkreis 1
first: Anpassung Heizkurve Heizkreis 1
locations:
- vaillant/15.ctlv2.csv::r_3::0x1c,0
anpassungheizkurveheizkreis2:
de: Anpassung Heizkurve Heizkreis 2
en: Anpassung Heizkurve Heizkreis 2
first: Anpassung Heizkurve Heizkreis 2
locations:
- vaillant/15.ctlv2.csv::r_4::0x1c,0
anpassungheizkurveheizkreis3:
de: Anpassung Heizkurve Heizkreis 3
en: Anpassung Heizkurve Heizkreis 3
first: Anpassung Heizkurve Heizkreis 3
locations:
- vaillant/15.ctlv2.csv::r_5::0x1c,0
appliancecode:
de: Wärmepumpen Typ
en: Appliance_Code
first: Appliance_Code
locations:
- vaillant/84.zeo.csv::r::0x58,0
appliancecodeappliancecode:
de: 'Wärmepumpen Typ: appliance code'
en: 'Appliance_Code: appliance code'
first: 'Appliance_Code: appliance code'
locations:
- vaillant/08.ehp.csv::r,wi,u::0x43,1
arrayindexforthezonesarrayindexstartat0forthefirstelement:
de: Index eines Zeitslots. Start by 0 für den ersten Zeitslot.
en: array index for the zones. Array Index start at 0 for the first element
first: array index for the zones. Array Index start at 0 for the first element
locations:
- vaillant/_templates.csv:slotIndex
ascbigmoduldetecteddetectedvpmsbitcounted:
de: 'AscBigModulDetected: detected VPM-S (bit counted)'
en: 'AscBigModulDetected: detected VPM-S (bit counted)'
first: 'AscBigModulDetected: detected VPM-S (bit counted)'
locations:
- vaillant/15.ui.csv::r::0x7f,0
ascdetectedindicatesthatavmshasbeendetected:
de: 'ASCDetected: indicates that a VMS has been detected'
en: 'ASCDetected: indicates that a VMS has been detected'
first: 'ASCDetected: indicates that a VMS has been detected'
locations:
- vaillant/15.470.csv::r::0xbb,0
- vaillant/15.f47.csv::r::0xbb,0
ascoff0ascch1ascdhw2:
de: ASC_OFF=0, ASC_CH=1, ASC_DHW=2
en: ASC_OFF=0, ASC_CH=1, ASC_DHW=2
first: ASC_OFF=0, ASC_CH=1, ASC_DHW=2
locations:
- vaillant/15.ui.csv::r::0x7a,0:value
ascsmallmoduldetecteddetectedvmsbitcounted:
de: 'AscSmallModulDetected: detected VMS (bit counted)'
en: 'AscSmallModulDetected: detected VMS (bit counted)'
first: 'AscSmallModulDetected: detected VMS (bit counted)'
locations:
- vaillant/15.ui.csv::r::0x80,0
ascstatus:
de: ASC_Status
en: ASC_Status
first: ASC_Status
locations:
- vaillant/15.ui.csv::r::0x7a,0
asidetected:
de: ASIDetected
en: ASIDetected
first: ASIDetected
locations:
- vaillant/06.pms.csv::r::0x38,0
- vaillant/06.vms.csv::r::0x38,0
assertfilename:
de: AssertFileName
en: AssertFileName
first: AssertFileName
locations:
- vaillant/15.392.csv:sw_ge126:r::0xa0,0
- vaillant/15.430.csv:sw_ge126:r::0xa0,0
- vaillant/15.f43.csv::r::0xa0,0
assertlinenumberassertfailoccuredinthisline:
de: 'AssertLineNumber: assert fail occured in this line'
en: 'AssertLineNumber: assert fail occured in this line'
first: 'AssertLineNumber: assert fail occured in this line'
locations:
- vaillant/15.392.csv:sw_ge126:r::0xa1,0
- vaillant/15.430.csv:sw_ge126:r::0xa1,0
- vaillant/15.f43.csv::r::0xa1,0
atabschaltgrenze:
de: AT-Abschaltgrenze
en: AT-Abschaltgrenze
first: AT-Abschaltgrenze
locations:
- vaillant/26.vr630.hc.csv::r,w::0x36,0
- vaillant/50.vr630.mc.csv::r,w::0x36,0
- vaillant/51.vr630.mc.3.csv::r,w::0x36,0
atabschaltgrenzeheizkreis1:
de: AT-Abschaltgrenze Heizkreis 1
en: AT-Abschaltgrenze Heizkreis 1
first: AT-Abschaltgrenze Heizkreis 1
locations:
- vaillant/15.ctlv2.csv::r_3,w_3::0x14,0
atabschaltgrenzeheizkreis2:
de: AT-Abschaltgrenze Heizkreis 2
en: AT-Abschaltgrenze Heizkreis 2
first: AT-Abschaltgrenze Heizkreis 2