-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsimecg_es.ts
1092 lines (1092 loc) · 48.7 KB
/
simecg_es.ts
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
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.0" language="es_ES">
<context>
<name>AboutDialog</name>
<message>
<location filename="aboutdialog.ui" line="42"/>
<source>&Close</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="aboutdialog.ui" line="59"/>
<source>About</source>
<comment>Tab separator in about dialog</comment>
<translation type="unfinished"></translation>
</message>
<message utf8="true">
<location filename="aboutdialog.ui" line="90"/>
<source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;">
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt; font-weight:600;">Developers :</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt; font-weight:600;">Scientific Contents &amp; Layout : </span><span style=" font-size:9pt;">Paulo Dias Costa ([email protected])</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt; font-weight:600;">Graphics &amp; Design : </span><span style=" font-size:9pt;">João Silva Marques ([email protected])</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt; font-weight:600;">Programming &amp; Development:</span><span style=" font-size:9pt;"> Antonio Cardoso Martins ([email protected])</span></p>
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:9pt;"></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt; font-weight:600;">Acknowledgements:</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">ECG simulation:</span> R. Karthik ([email protected])</p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt; font-weight:600;">Mathematics: </span><span style=" font-size:9pt;">Sandra Vilas Boas Jardim ([email protected])</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt; font-weight:600;">Splash Screen Design:</span><span style=" font-size:9pt;"> Ernesto Aranda ([email protected])</span></p></body></html></source>
<translation type="unfinished"></translation>
</message>
<message utf8="true">
<location filename="aboutdialog.ui" line="137"/>
<source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;">
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">Developed as an assignment for the course</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://wikicts.med.up.pt/index.php/Sistemas_de_Informa%C3%A7%C3%A3o_em_Sa%C3%BAde_I"><span style=" text-decoration: underline; color:#0000ff;">Sistemas de Informação em Saúde - 1</span></a></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">under the coordination of</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">Ricardo Correia ([email protected])</span></p></body></html></source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="aboutdialog.ui" line="153"/>
<source>Disclaimer</source>
<comment>Tab separator in about dialog</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="aboutdialog.ui" line="165"/>
<source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
</style></head>
<body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;">
<p>1. Although simECG takes all possible care to ensure the correctness of published information, no warranty can be accepted regarding the correctness, accuracy, uptodateness, reliability and completeness of the content of this information.</p>
<p>2. Information on this training tool is intended only to provide general information. It is not intended to be complete or definitive. Further professional advice should be sought before any action is taken in relation to matters contained on this program. </p>
<p>3. You accept all risks and responsibility for loss, damage, costs and other consequences resulting from using this tool and any web sites linked to it. You are also responsible for assessing the relevance and accuracy of any information or material available from this tool.</p>
<p>4. No warranty is made as to the accuracy or reliability of the information contained herein and simECG disclaims all liability and responsibility for any direct or indirect loss or damage which may be suffered by any recipient through relying on anything contained in or omitted from simECG.</p>
<p>5. Although this is an open source software, authors acknowledge the citation of their work.</p>
</body>
</html></source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="aboutdialog.ui" line="188"/>
<source>License</source>
<comment>Tab separator in about dialog</comment>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>AssessmentFrame</name>
<message>
<location filename="assessmentframe.cpp" line="71"/>
<source>Start assessment</source>
<comment>Dialog title</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="assessmentframe.cpp" line="72"/>
<source>You are about to start an ECG assessment. You will be asked %1 questions during %2 seconds. </source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="assessmentframe.cpp" line="74"/>
<source>Each question will have an ECG signal displayed, and three possible answers. </source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="assessmentframe.cpp" line="75"/>
<source>You need to choose the correct one. After answering all the questions, you will get a final score. </source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="assessmentframe.cpp" line="76"/>
<source>Good luck!</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="assessmentframe.cpp" line="77"/>
<source>Ready to start?</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="assessmentframe.cpp" line="115"/>
<source>Assessment finished</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="assessmentframe.cpp" line="118"/>
<source>Sorry. You took %1 seconds to complete the assessment, but your score was a lousy 0 points.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="assessmentframe.cpp" line="121"/>
<source>Congratulations! Your score was %1 points.
You took %2 seconds to complete the assessment.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="assessmentframe.cpp" line="125"/>
<source>Sorry your assessment time has expired.
Your score was %1 points.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="assessmentframe.ui" line="54"/>
<source>Time</source>
<comment>Assessment group box</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="assessmentframe.ui" line="72"/>
<source>Counts the remaining time you have to accomplish the assessment</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="assessmentframe.ui" line="106"/>
<source>Go to the next question</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="assessmentframe.ui" line="109"/>
<source>Next</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="assessmentframe.ui" line="136"/>
<source>Controls</source>
<comment>Assessment group box</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="assessmentframe.ui" line="163"/>
<source>Starts a new assessment. You will need to answer 10 questions.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="assessmentframe.ui" line="166"/>
<source>Begin</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="assessmentframe.ui" line="223"/>
<source>Complete</source>
<comment>Complete (percentage) in progress bar</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="assessmentframe.ui" line="259"/>
<source>Select answer</source>
<comment>Assessment group box</comment>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>ECGplotter</name>
<message>
<location filename="ecgplotter.cpp" line="71"/>
<source>Sinus Rhythm</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="ecgplotter.cpp" line="75"/>
<source>Junctional Rhythm</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="ecgplotter.cpp" line="79"/>
<source>Isolated PAC</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="ecgplotter.cpp" line="83"/>
<source>1st degree AV block</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="ecgplotter.cpp" line="87"/>
<source>Isolated monomorphic PVC</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="ecgplotter.cpp" line="91"/>
<source>Sinus Bradycardia</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="ecgplotter.cpp" line="95"/>
<source>Accel. Junctional Rhythm</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="ecgplotter.cpp" line="99"/>
<source>Paired PAC</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="ecgplotter.cpp" line="103"/>
<source>Type I 2nd degree AV block</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="ecgplotter.cpp" line="107"/>
<source>Isolated polymorphic PVC</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="ecgplotter.cpp" line="111"/>
<source>Sinus Tachycardia</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="ecgplotter.cpp" line="115"/>
<source>Idioventricular Rhythm</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="ecgplotter.cpp" line="119"/>
<source>Supraventricular Tachycardia</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="ecgplotter.cpp" line="123"/>
<source>Type II 2nd degree AV block</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="ecgplotter.cpp" line="127"/>
<source>Monomorphic VT</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="ecgplotter.cpp" line="131"/>
<source>Atrial Fibrillation</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="ecgplotter.cpp" line="135"/>
<source>Accel. Idiovent. Rhythm</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="ecgplotter.cpp" line="139"/>
<source>Sinus Pause</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="ecgplotter.cpp" line="143"/>
<source>2nd degree AV block (2:1)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="ecgplotter.cpp" line="147"/>
<source>Polymorphic VT</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="ecgplotter.cpp" line="151"/>
<source>Fast Atrial Fibrillation</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="ecgplotter.cpp" line="155"/>
<source>Type II 2nd degree SA block</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="ecgplotter.cpp" line="159"/>
<source>AV dissociation</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="ecgplotter.cpp" line="163"/>
<source>Ventricular Fibrillation</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>myMainWindow</name>
<message>
<location filename="mymainwindow.cpp" line="174"/>
<source>About simECG - version </source>
<comment>in about dialog title will show version number</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.cpp" line="184"/>
<source>You are currently answering an assessment.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.cpp" line="185"/>
<source>Are you sure you want to abort the assessment ?</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>myMainWindowClass</name>
<message>
<location filename="mymainwindow.ui" line="26"/>
<source>simECG - The OpenSource ECG simulator</source>
<comment>Application title name</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="66"/>
<source>&File</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="76"/>
<source>&Help</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="82"/>
<source>&Preferences</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="86"/>
<source>&Calibration</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="90"/>
<source>&Amplitude</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="97"/>
<source>&Speed</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="107"/>
<source>&Filters</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="114"/>
<source>&Display</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="121"/>
<source>&Background</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="199"/>
<source>Presets</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="222"/>
<source>Displays a sinus rythm strip</source>
<comment>Toottip</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="225"/>
<source>Sinus Rhythm</source>
<comment> (must be exactly the same as in ECGPlotter)</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="231"/>
<location filename="mymainwindow.ui" line="252"/>
<location filename="mymainwindow.ui" line="276"/>
<location filename="mymainwindow.ui" line="297"/>
<location filename="mymainwindow.ui" line="321"/>
<location filename="mymainwindow.ui" line="342"/>
<location filename="mymainwindow.ui" line="363"/>
<location filename="mymainwindow.ui" line="387"/>
<location filename="mymainwindow.ui" line="411"/>
<location filename="mymainwindow.ui" line="435"/>
<location filename="mymainwindow.ui" line="456"/>
<location filename="mymainwindow.ui" line="477"/>
<location filename="mymainwindow.ui" line="498"/>
<location filename="mymainwindow.ui" line="522"/>
<location filename="mymainwindow.ui" line="543"/>
<location filename="mymainwindow.ui" line="567"/>
<location filename="mymainwindow.ui" line="588"/>
<location filename="mymainwindow.ui" line="612"/>
<location filename="mymainwindow.ui" line="636"/>
<location filename="mymainwindow.ui" line="660"/>
<location filename="mymainwindow.ui" line="684"/>
<location filename="mymainwindow.ui" line="708"/>
<location filename="mymainwindow.ui" line="732"/>
<location filename="mymainwindow.ui" line="756"/>
<source>presetsButtonGroup</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="246"/>
<source>Displays a junctional rhythm strip</source>
<comment>Toottip</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="249"/>
<source>Junctional Rhythm</source>
<comment> (must be exactly the same as in ECGPlotter)</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="270"/>
<source>Displays a sinus rythm strip with isolated premature atrial contraction</source>
<comment>Toottip</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="273"/>
<source>Isolated PAC</source>
<comment> (must be exactly the same as in ECGPlotter)</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="291"/>
<source>Displays a sinus rhythm strip with a 1st degree atrio-ventricular block</source>
<comment>Toottip</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="294"/>
<source>1st degree AV block</source>
<comment> (must be exactly the same as in ECGPlotter)</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="315"/>
<source>Displays a sinus rythm strip with isolated premature ventricular contractions (single form)</source>
<comment>Toottip</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="318"/>
<source>Isolated monomorphic PVC</source>
<comment> (must be exactly the same as in ECGPlotter)</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="336"/>
<location filename="mymainwindow.ui" line="450"/>
<source>Displays a sinus bradycardia strip</source>
<comment>Toottip</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="339"/>
<source>Sinus Bradycardia</source>
<comment> (must be exactly the same as in ECGPlotter)</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="357"/>
<source>Displays an accelerated junctional rhythm strip</source>
<comment>Toottip</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="360"/>
<source>Accel. Junctional Rhythm</source>
<comment> (must be exactly the same as in ECGPlotter)</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="381"/>
<source>Displays a sinus rythm strip with paired premature atrial contractions</source>
<comment>Toottip</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="384"/>
<source>Paired PAC</source>
<comment> (must be exactly the same as in ECGPlotter)</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="405"/>
<source>Displays a strip in sinus rhythm with a type I 2nd degree atrio-ventricular block</source>
<comment>Toottip</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="408"/>
<source>Type I 2nd degree AV block</source>
<comment> (must be exactly the same as in ECGPlotter)</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="429"/>
<source>Displays a sinus rythm strip with isolated premature ventricular contractions (multiple forms)</source>
<comment>Toottip</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="432"/>
<source>Isolated polymorphic PVC</source>
<comment> (must be exactly the same as in ECGPlotter)</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="453"/>
<source>Sinus Tachycardia</source>
<comment> (must be exactly the same as in ECGPlotter)</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="471"/>
<source>Displays an idioventricular rhythm strip</source>
<comment>Toottip</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="474"/>
<source>Idioventricular Rhythm</source>
<comment> (must be exactly the same as in ECGPlotter)</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="492"/>
<source>Displays a supraventricular tachycardia strip</source>
<comment>Toottip</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="495"/>
<source>Supraventricular Tachycardia</source>
<comment> (must be exactly the same as in ECGPlotter)</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="516"/>
<source>Displays a sinus rhythm strip with a type II 2nd degree atrio-ventricular block</source>
<comment>Toottip</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="519"/>
<source>Type II 2nd degree AV block</source>
<comment> (must be exactly the same as in ECGPlotter)</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="537"/>
<source>Displays a monomorphic ventricular tachycardia strip</source>
<comment>Toottip</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="540"/>
<source>Monomorphic VT</source>
<comment> (must be exactly the same as in ECGPlotter)</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="561"/>
<source>Displays an atrial fibrillation strip</source>
<comment>Toottip</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="564"/>
<source>Atrial Fibrillation</source>
<comment> (must be exactly the same as in ECGPlotter)</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="582"/>
<source>Displays an accelerated idioventricular rhythm strip</source>
<comment>Toottip</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="585"/>
<source>Accel. Idiovent. Rhythm</source>
<comment> (must be exactly the same as in ECGPlotter)</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="606"/>
<source>Displays a sinus pause strip</source>
<comment>Toottip</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="609"/>
<source>Sinus Pause</source>
<comment> (must be exactly the same as in ECGPlotter)</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="630"/>
<source>Displays a 2nd degree atrio-ventricular block (2:1) strip</source>
<comment>Toottip</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="633"/>
<source>2nd degree AV block (2:1)</source>
<comment> (must be exactly the same as in ECGPlotter)</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="654"/>
<source>Displays a polymorphic ventricular tachycardia strip</source>
<comment>Toottip</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="657"/>
<source>Polymorphic VT</source>
<comment> (must be exactly the same as in ECGPlotter)</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="678"/>
<source>Displays an atrial fibrillation with fast ventricular response strip</source>
<comment>Toottip</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="681"/>
<source>Fast Atrial Fibrillation</source>
<comment> (must be exactly the same as in ECGPlotter)</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="702"/>
<source>Displays a type I 2nd degree sino-atrial block</source>
<comment>Toottip</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="705"/>
<source>Type II 2nd degree SA block</source>
<comment> (must be exactly the same as in ECGPlotter)</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="726"/>
<source>Displays a strip with atrio-ventricular dissociation</source>
<comment>Toottip</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="729"/>
<source>AV dissociation</source>
<comment> (must be exactly the same as in ECGPlotter)</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="750"/>
<source>Displays a ventricular fibrillation strip</source>
<comment>Toottip</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="753"/>
<source>Ventricular Fibrillation</source>
<comment> (must be exactly the same as in ECGPlotter)</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="765"/>
<source>Custom settings</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="783"/>
<source>Special Conditions</source>
<comment>Group box title</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="805"/>
<source>This simulates advanced atrio-ventricular conduction disturbances, such as 2nd a 3rd degree atrio-ventricular blocks.
When AF is checked, this option is turned off.</source>
<comment>Tooltip for special conditions</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="813"/>
<source>1st degree AV block</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="818"/>
<source>Type I 2nd degree AV block</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="823"/>
<source>Type II 2nd degree AV block</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="828"/>
<source>AV dissociation</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="849"/>
<source>Other Conditions</source>
<comment>Other signal conditions group box with AF button inside</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="872"/>
<source>When checked this option simulates an atrial fibrillation.
When checked turns inactive PR and P wave characteristics, as well as special conditions.</source>
<comment>Tooltip</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="876"/>
<source>AF</source>
<comment>AF means Atrial Fibrilation (in a check box)</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="896"/>
<source>Premature Beats</source>
<comment>Group box title</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="922"/>
<source>Activates the presence of premature atrial contractions.
Inactive when AF is checked.</source>
<comment>Tooltip</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="926"/>
<source>PAC</source>
<comment>PAC = Premature Atrial Contractions (check box)</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="947"/>
<location filename="mymainwindow.ui" line="1061"/>
<source>Defines the number of premature beats. Ranges from 1 to 99.</source>
<comment>Tooltip</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="983"/>
<location filename="mymainwindow.ui" line="1097"/>
<source>Defines the coupling of premature beats. Ranges from 100 ms to 600 ms. You can only define a fixed coupling interval.</source>
<comment>Tooltip</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="989"/>
<location filename="mymainwindow.ui" line="1103"/>
<source> ms</source>
<comment>miliseconds</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="1034"/>
<source>Activates the presence of premature ventricular contractions.</source>
<comment>Tooltip</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="1037"/>
<source>PVC</source>
<comment>PVC = Premature Ventricular Contractions (check box)</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="1135"/>
<source>Defines the morphology of the intraventricular conduction disturbance. Can be set as intraventricular conduction disturbance with RBBB or as intraventricular conduction disturbance with LBBB.</source>
<comment>Morphology of the intraventricular conduction disturbance</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="1139"/>
<location filename="mymainwindow.ui" line="1561"/>
<source>RBBB</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="1144"/>
<location filename="mymainwindow.ui" line="1566"/>
<source>LBBB</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="1171"/>
<source>PR</source>
<comment>Do not translate</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="1204"/>
<source>Defines the duration of the PR interval. Ranges from 0.08 s to 0.30 s. Inactive when AF is checked.</source>
<comment>PR Interval (do not translate PR)</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="1207"/>
<location filename="mymainwindow.ui" line="1331"/>
<location filename="mymainwindow.ui" line="1498"/>
<location filename="mymainwindow.ui" line="1764"/>
<source> s</source>
<comment>seconds</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="1247"/>
<source>P Wave</source>
<comment>Do not translate P</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="1283"/>
<source>Defines the amplitude of the P wave. Ranges from 0.05 mV to 0.40 mV. Inactive when AF is checked.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="1286"/>
<location filename="mymainwindow.ui" line="1447"/>
<location filename="mymainwindow.ui" line="1713"/>
<source> mV</source>
<comment>milivolts</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="1328"/>
<source>Defines the duration of the P wave. Ranges from 0.04 s to 0.14 s. Inactive when AF is checked</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="1379"/>
<source>Defines the orientation of the P wave. Can be set as positive or negative. Inactive when AF is checked.</source>
<comment>Tooltip</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="1383"/>
<location filename="mymainwindow.ui" line="1816"/>
<source>Positive</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="1388"/>
<location filename="mymainwindow.ui" line="1821"/>
<source>Negative</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="1414"/>
<source>QRS </source>
<comment>Do not translate QRS</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="1444"/>
<source>Defines the amplitude of the QRS complex. Can range from 0.50 mV to 2.00 mV. </source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="1495"/>
<source>Defines the duration of the QRS complex. Can range from 0.08 s to 0.16 s. </source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="1549"/>
<source>Defines the morphology of the QRS complex. Can be set as normal intarventricular conduction, intraventricular conduction disturbance with RBBB or as intraventricular conduction disturbance with LBBB. </source>
<comment>Tooltip</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="1556"/>
<source>Normal</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="1592"/>
<source>Heart Rate</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="1631"/>
<source>Defines the heart rate. Ranges from 30 bpm to 200 bpm.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="1640"/>
<source> bpm</source>
<comment>bpm = beats per minute</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="1674"/>
<source>T Wave</source>
<comment>Do not translate T</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="1710"/>
<source>Defines the amplitude of the T wave. Ranges from 0.10 mV to 0.50 mV. </source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="1761"/>
<source>Defines the duration of the T wave. Ranges from 0.10 s to 0.40 s</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="1812"/>
<source>Defines the orientation of the T wave. Can be set as positive or negative</source>
<comment>List box can be Positive or Negative T Wave value</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="1839"/>
<source>Assessment</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="1849"/>
<source>E&xit</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="1852"/>
<source>Exit simECG</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="1860"/>
<source>&About ...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="1863"/>
<source>About simECG</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="1877"/>
<source>&On</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="1880"/>
<source>Turn noise filter ON</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="1891"/>
<source>O&ff</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="1894"/>
<source>Turn noise filter OFF</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="1908"/>
<source>&Static</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mymainwindow.ui" line="1911"/>
<source>Static signal display</source>
<translation type="unfinished"></translation>
</message>