English2018-08-22.xml
62.2 KB
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
<?xml version="1.0" encoding="UTF-8"?>
<Language>
<APanel>
<cboVoteType_Text_0>Common Slide</cboVoteType_Text_0>
<cboVoteType_Text_1>Roll Call</cboVoteType_Text_1>
<cboVoteType_Text_2>Team Assignment</cboVoteType_Text_2>
<cboVoteType_Text_3>Single Choice</cboVoteType_Text_3>
<cboVoteType_Text_4>Multiple Choice</cboVoteType_Text_4>
<cboVoteType_Text_5>Judge</cboVoteType_Text_5>
<cboVoteType_Text_6>Priority Sorting</cboVoteType_Text_6>
<cboVoteType_Text_7>Numerical</cboVoteType_Text_7>
<cboVoteType_Text_8>Vote</cboVoteType_Text_8>
<cboVoteType_Text_9>Likert Scale</cboVoteType_Text_9>
<cboVoteType_Text_10>Score</cboVoteType_Text_10>
<cboVoteType_Text_11>Poll</cboVoteType_Text_11>
<lblInfo>No Slide is Selected</lblInfo>
<grpChartSlide>Relation Slide of Chart</grpChartSlide>
</APanel>
<ucChartPara>
<gbxChartSet>Chart Settings</gbxChartSet>
<lblChartType>Chart Type</lblChartType>
<lblChartLabel>Label</lblChartLabel>
<lblChartShow>Chart Display</lblChartShow>
<lblChartRate>Ratio</lblChartRate>
<cboChartType_Text_0>Vertical</cboChartType_Text_0>
<cboChartType_Enum_0>ctColumn</cboChartType_Enum_0>
<cboChartType_Text_1>Horizontal</cboChartType_Text_1>
<cboChartType_Enum_1>ctBar</cboChartType_Enum_1>
<cboChartType_Text_2>Vertical Rect</cboChartType_Text_2>
<cboChartType_Enum_2>ctColumnBox</cboChartType_Enum_2>
<cboChartType_Text_3>Horizontal Rect</cboChartType_Text_3>
<cboChartType_Enum_3>ctBarBox</cboChartType_Enum_3>
<cboChartType_Text_4>Pie</cboChartType_Text_4>
<cboChartType_Enum_4>ctPie</cboChartType_Enum_4>
<cboChartType_Text_5>Text</cboChartType_Text_5>
<cboChartType_Enum_5>ctText</cboChartType_Enum_5>
<cboChartLabel_Text_0>#</cboChartLabel_Text_0>
<cboChartLabel_Enum_0>ltNumberValue</cboChartLabel_Enum_0>
<cboChartLabel_Text_1>0.0%</cboChartLabel_Text_1>
<cboChartLabel_Enum_1>ltPercent</cboChartLabel_Enum_1>
<cboChartLabel_Text_2>#+0.0%</cboChartLabel_Text_2>
<cboChartLabel_Enum_2>ltNumberValueAndPercent</cboChartLabel_Enum_2>
<cboChartLabel_Text_3>No Label</cboChartLabel_Text_3>
<cboChartLabel_Enum_3>ltNone</cboChartLabel_Enum_3>
<cboChartShow_Text_0>At Vote Closing</cboChartShow_Text_0>
<cboChartShow_Enum_0>csStop</cboChartShow_Enum_0>
<cboChartShow_Text_1>At Vote Opening</cboChartShow_Text_1>
<cboChartShow_Enum_1>csStart</cboChartShow_Enum_1>
<cboChartShow_Text_2>Manual Operation</cboChartShow_Text_2>
<cboChartShow_Enum_2>csHandle</cboChartShow_Enum_2>
<cboChartShow_Text_3>Hide Chart</cboChartShow_Text_3>
<cboChartShow_Enum_3>csHide</cboChartShow_Enum_3>
<cboChartRate_Text_0>Divisor is Attendance</cboChartRate_Text_0>
<cboChartRate_Enum_0>crParticipant</cboChartRate_Enum_0>
<cboChartRate_Text_1>Divisor is Count</cboChartRate_Text_1>
<cboChartRate_Enum_1>crResponse</cboChartRate_Enum_1>
<cboChartRate_Text_2>Divisor is Yes/No</cboChartRate_Text_2>
<cboChartRate_Enum_2>crVoteYesNo</cboChartRate_Enum_2>
<cboChartRate_Text_ChoiceCount>Number of choosed</cboChartRate_Text_ChoiceCount>
<cboChartRate_Enum_3>crChoiceCount</cboChartRate_Enum_3>
<chk3D>3D Display</chk3D>
<chkShowWindow>Show Window Mode On Slide Showing</chkShowWindow>
<btnChartSetColor>Chart Colors</btnChartSetColor>
<lblChartOption>Option Format</lblChartOption>
<btnChartSet>Chart Setting</btnChartSet>
<lblDec>Decimals</lblDec>
<lblChartPointWidth>Point Width</lblChartPointWidth>
<chkShowItemText>Chart Label With Answer Text</chkShowItemText>
<btnChartRefresh>Refresh Chart</btnChartRefresh>
</ucChartPara>
<ucKeypadPara>
<gbxKeypadSet>Keypad Parameter</gbxKeypadSet>
<lblSubmitMode>Submit Mode</lblSubmitMode>
<lblModifyMode>Modify Mode</lblModifyMode>
<cboSubmitMode_Text_0>Press Ok To Submit</cboSubmitMode_Text_0>
<cboSubmitMode_Text_1>Auto-submit</cboSubmitMode_Text_1>
<cboModifyMode_Text_0>Revisable</cboModifyMode_Text_0>
<cboModifyMode_Text_1>Nonrevisable</cboModifyMode_Text_1>
<lblOptionMode>Option Format</lblOptionMode>
<lblSecrecyMode>Secrecy Mode</lblSecrecyMode>
<cboSecrecyMode_Text_0>Not Keep Secret</cboSecrecyMode_Text_0>
<cboSecrecyMode_Text_1>Keep Secret</cboSecrecyMode_Text_1>
<lblCheckUID>Check the ID</lblCheckUID>
<cboCheckUID_Text_0>Disabled</cboCheckUID_Text_0>
<cboCheckUID_Text_1>Last 4 digits</cboCheckUID_Text_1>
<cboCheckUID_Text_2>Last 6 digits</cboCheckUID_Text_2>
</ucKeypadPara>
<ucResponsePara>
<gbxNameAuthorize>Vote Settings</gbxNameAuthorize>
<rbtNameModeOn>Onymous</rbtNameModeOn>
<rbtNameModeOff>Anonymous</rbtNameModeOff>
<lblAuthorize>Voter</lblAuthorize>
<lblFieldVoteRate>Vote Weight</lblFieldVoteRate>
<cboCanVote_Text_0>All</cboCanVote_Text_0>
<cboCanVote_Enum_0>cvAll</cboCanVote_Enum_0>
<cboCanVote_Text_1>Specify Voter</cboCanVote_Text_1>
<cboCanVote_Enum_1>cvPerson</cboCanVote_Enum_1>
<cboCanVote_Text_2>Specify Choice</cboCanVote_Text_2>
<cboCanVote_Enum_2>cvTopic</cboCanVote_Enum_2>
</ucResponsePara>
<PanelChoise>
<gbxChoise>Option Settings</gbxChoise>
<lblChoiseOption>Option Number</lblChoiseOption>
<lblChoiseLimit>Choice Limit</lblChoiseLimit>
<chkIisN>Must Enter the Full Choice Limit In Order to Submit</chkIisN>
<gbxScoreType>Score Settings</gbxScoreType>
<rbtScoreAnswer>Score By Right Answer</rbtScoreAnswer>
<rbtScoreItem>Score by option Point Value</rbtScoreItem>
<rbtScoreAnswerTime>Score By Right Answer's Time</rbtScoreAnswerTime>
<lblScoreRight>Right</lblScoreRight>
<lblScoreWrong>Wrong</lblScoreWrong>
<lblCorrectAnswer>Correct Answer(0 Represents 10)</lblCorrectAnswer>
<clstAnswer_0>1/A</clstAnswer_0>
<clstAnswer_1>2/B</clstAnswer_1>
<clstAnswer_2>3/C</clstAnswer_2>
<clstAnswer_3>4/D</clstAnswer_3>
<clstAnswer_4>5/E</clstAnswer_4>
<clstAnswer_5>6/F</clstAnswer_5>
<clstAnswer_6>7/G</clstAnswer_6>
<clstAnswer_7>8/H</clstAnswer_7>
<clstAnswer_8>9/I</clstAnswer_8>
<clstAnswer_9>10/J</clstAnswer_9>
<dgvScore_0>No.</dgvScore_0>
<dgvScore_1>Score</dgvScore_1>
<chkZeroScore>Minus Score Counted as Zero</chkZeroScore>
<dgvScore_0>No.</dgvScore_0>
<dgvScore_1>Score</dgvScore_1>
<dgvScore_2>No.</dgvScore_2>
<dgvScore_3>Score</dgvScore_3>
<lblCorrectAnswer>Correct Answer</lblCorrectAnswer>
</PanelChoise>
<PanelGrade>
<gbxChoise>Likert Scale Settings</gbxChoise>
<lblChoiseOption>Option Number</lblChoiseOption>
</PanelGrade>
<PanelGroup>
<gbxChoise>Team Assignment Settings</gbxChoise>
<lblChoiseOption>Group Number</lblChoiseOption>
<lblGroupName>Group Name</lblGroupName>
</PanelGroup>
<PanelJudge>
<gbxScoreType>Score Settings</gbxScoreType>
<lblChoiseOption>Option Number</lblChoiseOption>
<rbtScoreAnswer>Score by Right Answer</rbtScoreAnswer>
<rbtScoreItem>Score by Option Point Value</rbtScoreItem>
<lblScoreRight>Right</lblScoreRight>
<lblScoreWrong>Wrong</lblScoreWrong>
<clstAnswer_0>1 Yes</clstAnswer_0>
<clstAnswer_1>2 No</clstAnswer_1>
<dgvScore_0>No.</dgvScore_0>
<dgvScore_1>Score</dgvScore_1>
<chkZeroScore>Minus Score Counted as Zero</chkZeroScore>
<lblCorrectAnswer>Correct Answer</lblCorrectAnswer>
</PanelJudge>
<PanelOrder>
<gbxChoise>Option Settings</gbxChoise>
<lblChoiseOption>Option Number</lblChoiseOption>
<lblChoiseLimit>Choice Limit</lblChoiseLimit>
<chkIisN>Must Enter the Full Choice Limit In Order to Submit</chkIisN>
<chkAABB>Allow duplicate options</chkAABB>
<dgvScore_0>No.</dgvScore_0>
<dgvScore_1>Score</dgvScore_1>
<dgvScore_2>No.</dgvScore_2>
<dgvScore_3>Score</dgvScore_3>
<gbxScoreType>Score Settings</gbxScoreType>
<rbtScoreAnswer>Score by Right Answer</rbtScoreAnswer>
<rbtScoreItem>Score by Order Point Value</rbtScoreItem>
<rbtScoreMatch>Score by correct options</rbtScoreMatch>
<lblCorrectAnswer>Correct Answer(0 Represents 10)</lblCorrectAnswer>
<lblScoreRight>Right</lblScoreRight>
<lblScoreWrong>Wrong</lblScoreWrong>
</PanelOrder>
<PanelPoll>
<gbxChoise>Poll Settings</gbxChoise>
<lblChoiseOption>Candidate</lblChoiseOption>
<lblChoiseLimit>Count Limit</lblChoiseLimit>
<chkCanRepeat>Allow Duplicates</chkCanRepeat>
<btnPollList>Candidate List</btnPollList>
</PanelPoll>
<PanelScore>
<gbxScore>Score Settings</gbxScore>
<lblMax>Max.</lblMax>
<lblMin>Min.</lblMin>
<lblDecimal>Decimal Places</lblDecimal>
<gbxScoreCount>Total Score Settings</gbxScoreCount>
<lblScoreRemoveMax>Remove High Score Number</lblScoreRemoveMax>
<lblScoreRemoveMin>Remove Low Score Number</lblScoreRemoveMin>
<lblScoreCountDec>Score Decimal Places</lblScoreCountDec>
<chkShowAvg>Average Score</chkShowAvg>
<chkShowTotal>Total Score</chkShowTotal>
<cboMax_Text_0>No Limit</cboMax_Text_0>
<cboMax_Text_1>10</cboMax_Text_1>
<cboMax_Text_2>100</cboMax_Text_2>
<cboMax_Text_3>1000</cboMax_Text_3>
<cboMax_Text_4>10000</cboMax_Text_4>
<cboMin_Text_0>No Limit</cboMin_Text_0>
<cboMin_Text_1>0</cboMin_Text_1>
<cboDec_Text_0>No Limit</cboDec_Text_0>
<cboDec_Text_1>0</cboDec_Text_1>
<cboDec_Text_2>1</cboDec_Text_2>
<cboDec_Text_3>2</cboDec_Text_3>
<cboDec_Text_4>3</cboDec_Text_4>
<Unrestricted>No Limit</Unrestricted>
<CheckMessage>Upper Limit Must be Higher Than Lower Limit</CheckMessage>
<lblJudgeRate>Judge Weights Field</lblJudgeRate>
<lblJudgeGroup>Judge Group Field</lblJudgeGroup>
<btnJudgeGroupRate>Judge Group Rate Setting</btnJudgeGroupRate>
<chkShowAvgGroup>Show Group Average Total Score</chkShowAvgGroup>
<chkShowAvgTableGroup>Show Group Average Score Table</chkShowAvgTableGroup>
<chkRunTimeShowScore>Show result in response</chkRunTimeShowScore>
</PanelScore>
<PanelSignIn>
<gbxSignIn>Roll Call Mode</gbxSignIn>
<rbtSignInModePress>Press a Key</rbtSignInModePress>
<rbtSignInModeCode>Input User ID</rbtSignInModeCode>
<rbtSignInModeRandom>Random UID</rbtSignInModeRandom>
<gbxItemText>Sign-In Status Text</gbxItemText>
<lblFieldSignInCode>User ID</lblFieldSignInCode>
<chkUID>Enabled UID</chkUID>
<SetSignInCode>Please Select UID Field</SetSignInCode>
<SetRoster>Not Set Participants</SetRoster>
<btnClearSignInData>Clear UID SignIn Data</btnClearSignInData>
<ClearSignInCode>This action will clear the keypad ID or SN of current participants, please confirm whether you want to continue?</ClearSignInCode>
<btnCreateUIDAsc>Create UID Continuously</btnCreateUIDAsc>
<btnCreateUIDRnd>Create UID Randomly</btnCreateUIDRnd>
<lblNumOnePage>Headcount Per Screen</lblNumOnePage>
<cboNumOnePage_Text_0>Full</cboNumOnePage_Text_0>
<cboNumOnePage_Text_1>20</cboNumOnePage_Text_1>
<cboNumOnePage_Text_2>30</cboNumOnePage_Text_2>
<lblAutoPageTime>Flip-Over Speed(s)</lblAutoPageTime>
</PanelSignIn>
<PanelVote>
<gbxVote>vote mode</gbxVote>
<rbtItem3>Yes/No/Abstain</rbtItem3>
<rbtItem2>Yes/No</rbtItem2>
<lblNoPress>Un-Submitted</lblNoPress>
<lblPassMode>Result Judge Condition</lblPassMode>
<rbtPassByRate>Percentage of Yes</rbtPassByRate>
<lblPassRate>Percentage counting</lblPassRate>
<rbtPassByCount>Number of Yes</rbtPassByCount>
<cboPassRateMode_Text_0>Divisor is Attendance</cboPassRateMode_Text_0>
<cboPassRateMode_Text_1>Divisor is Count</cboPassRateMode_Text_1>
<cboNoPress_Text_0>Un-Submitted</cboNoPress_Text_0>
<cboNoPress_Text_1>Yes</cboNoPress_Text_1>
<cboNoPress_Text_2>No</cboNoPress_Text_2>
<cboNoPress_Text_3>Abstain</cboNoPress_Text_3>
<VotePassResult>Results</VotePassResult>
<VotePass>Passed</VotePass>
<VoteNotPass>Not Passed</VoteNotPass>
</PanelVote>
<PanelNumber>
<gbxScore>Numerical Value Settings</gbxScore>
<lblMax>Upper Limit</lblMax>
<lblMin>Lower Limit</lblMin>
<lblDecimal>Decimal Places</lblDecimal>
<gbxScoreType>Score Settings</gbxScoreType>
<lblCorrectAnswer>Correct Answer</lblCorrectAnswer>
<lblScoreRight>Right</lblScoreRight>
<lblScoreWrong>Wrong</lblScoreWrong>
<cboMax_Text_0>No Limit</cboMax_Text_0>
<cboMax_Text_1>10</cboMax_Text_1>
<cboMax_Text_2>100</cboMax_Text_2>
<cboMax_Text_3>1000</cboMax_Text_3>
<cboMax_Text_4>10000</cboMax_Text_4>
<cboMin_Text_0>No Limit</cboMin_Text_0>
<cboMin_Text_1>0</cboMin_Text_1>
<cboDec_Text_0>No Limit</cboDec_Text_0>
<cboDec_Text_1>0</cboDec_Text_1>
<cboDec_Text_2>1</cboDec_Text_2>
<cboDec_Text_3>2</cboDec_Text_3>
<cboDec_Text_4>3</cboDec_Text_4>
<CheckMessage>Scores Lower Does Not Allow More Than Scores Cap</CheckMessage>
<Unrestricted>No Limit</Unrestricted>
</PanelNumber>
<PanelSlideCompGroup>
<cboChartType_Text_0>Use Stacked Chart</cboChartType_Text_0>
<cboChartType_Text_1>Use 100% Stacked Chart</cboChartType_Text_1>
<cboChartType_Text_2>Not Use Stacked Chart</cboChartType_Text_2>
</PanelSlideCompGroup>
<rbSunVoteARS>
<tabSunVoteARS>SunVote ARS PPT</tabSunVoteARS>
<grpHardware>Hardware</grpHardware>
<grpPPTEdit>Edit Slide</grpPPTEdit>
<grpVoter>Participant</grpVoter>
<grpReport>Analysis And Report</grpReport>
<grpData>Response Data</grpData>
<grpSystem>System Setup And Help</grpSystem>
<spbHardwareSet>Hardware Setup</spbHardwareSet>
<spbHardwareSet_Tip>Hardware Setup</spbHardwareSet_Tip>
<btnKeypadType>Keypad Type</btnKeypadType>
<btnKeypadCountSet>Keypad Number</btnKeypadCountSet>
<btnKeypadTest>Keypad Test</btnKeypadTest>
<btnKeypadReplace>Replace Keypad</btnKeypadReplace>
<btnChannelSet>Change Channel</btnChannelSet>
<btnDeviceSet>Hardware Setup</btnDeviceSet>
<chkKeypadOffNever>Forbid Auto Shut Off</chkKeypadOffNever>
<chkKeypadBeep>Keypad Beep</chkKeypadBeep>
<btnKeypadShutdown>Remote Power Off</btnKeypadShutdown>
<new>Insert</new>
<PPTSlide>Slide</PPTSlide>
<menuNewPPT_Tip>Insert Template Slides</menuNewPPT_Tip>
<btnSignIn>Roll Call</btnSignIn>
<menuGroup>Team Assignment</menuGroup>
<btnGroupSex>Gender</btnGroupSex>
<btnGroupCustom>... Custom</btnGroupCustom>
<btnGroup1>1 Team</btnGroup1>
<btnGroup2>2 Teams</btnGroup2>
<btnGroup3>3 Teams</btnGroup3>
<btnGroup4>4 Teams</btnGroup4>
<btnGroup5>5 Teams</btnGroup5>
<btnGroup6>6 Teams</btnGroup6>
<btnGroup7>7 Teams</btnGroup7>
<btnGroup8>8 Teams</btnGroup8>
<btnGroup9>9 Teams</btnGroup9>
<btnGroup10>10 Teams</btnGroup10>
<menuChoiseSingle>Single Choice</menuChoiseSingle>
<btnChoiceS1>1 Option</btnChoiceS1>
<btnChoiceS2>2 Options</btnChoiceS2>
<btnChoiceS3>3 Options</btnChoiceS3>
<btnChoiceS4>4 Options</btnChoiceS4>
<btnChoiceS5>5 Options</btnChoiceS5>
<btnChoiceS6>6 Options</btnChoiceS6>
<btnChoiceS7>7 Options</btnChoiceS7>
<btnChoiceS8>8 Options</btnChoiceS8>
<btnChoiceS9>9 Options</btnChoiceS9>
<btnChoiceS10>10 Options</btnChoiceS10>
<menuChoiseMulti>Multiple Choice</menuChoiseMulti>
<btnChoiceM2>2 Options</btnChoiceM2>
<btnChoiceM3>3 Options</btnChoiceM3>
<btnChoiceM4>4 Options</btnChoiceM4>
<btnChoiceM5>5 Options</btnChoiceM5>
<btnChoiceM6>6 Options</btnChoiceM6>
<btnChoiceM7>7 Options</btnChoiceM7>
<btnChoiceM8>8 Options</btnChoiceM8>
<btnChoiceM9>9 Options</btnChoiceM9>
<btnChoiceM10>10 Options</btnChoiceM10>
<menuJudge>Judge</menuJudge>
<btnJudgeYesNo>Yes/No</btnJudgeYesNo>
<btnJudgeTrueFalse>True/False</btnJudgeTrueFalse>
<btnJudgeRightWrong>Right/Wrong</btnJudgeRightWrong>
<menuOrder>Priority Sorting</menuOrder>
<btnOrder2>2 Options</btnOrder2>
<btnOrder3>3 Options</btnOrder3>
<btnOrder4>4 Options</btnOrder4>
<btnOrder5>5 Options</btnOrder5>
<btnOrder6>6 Options</btnOrder6>
<btnOrder7>7 Options</btnOrder7>
<btnOrder8>8 Options</btnOrder8>
<btnOrder9>9 Options</btnOrder9>
<btnOrder10>10 Options</btnOrder10>
<btnNumber>Numerical</btnNumber>
<btnText>Text</btnText>
<btnVote>Vote</btnVote>
<menuGrade>Likert Scale</menuGrade>
<btnGradeAgree2>A/B/C/D</btnGradeAgree2>
<btnGradeAgree31>A/B/C/D/E</btnGradeAgree31>
<btnGradeAgree32>Strongly Agree/Agree/Uncertain/Disagree/Strongly Disagree</btnGradeAgree32>
<btnGradeLevel3>High/Middle/Low</btnGradeLevel3>
<btnGradeNo3>+/0/-</btnGradeNo3>
<btnGradeNo5>++/+/0/-/--</btnGradeNo5>
<btnGradeGood4>Excellent/Good/Average/Poor</btnGradeGood4>
<btnGradeSatisfy4>Very Satisfactory/Satisfied/Neither/Dissatisfied/Very Dissatisfied</btnGradeSatisfy4>
<btnGradeCustom>Custom...</btnGradeCustom>
<btnScore>Score</btnScore>
<btnPoll>Poll</btnPoll>
<btnAutoTest>AutoTest</btnAutoTest>
<btnInport>Import Question List..</btnInport>
<btnInport2>Import Question List(EasyTest)..</btnInport2>
<menuInsertObject>Insert Object</menuInsertObject>
<menuInsertObject_Tip>Insert question</menuInsertObject_Tip>
<menuChart>Change or Restore Chart</menuChart>
<btnChartColumn>Vertical</btnChartColumn>
<btnChartBar>Horizontal</btnChartBar>
<btnChartPie>Pie</btnChartPie>
<btnChartColumn3D>3D Vertical</btnChartColumn3D>
<btnChartBar3D>3D Horizontal</btnChartBar3D>
<btnChartPie3D>3D Pie</btnChartPie3D>
<btnTime>Countdown Timer</btnTime>
<btnDueCount>Participant</btnDueCount>
<btnVoterCount>Voter</btnVoterCount>
<btnMean>Mean</btnMean>
<menuVoteCount>Response Counter(Voted)</menuVoteCount>
<menuVoteCountMen>Response Counter(Keypad Count)</menuVoteCountMen>
<btnVoteCountNum>Number</btnVoteCountNum>
<btnVoteCountRate>Percentage</btnVoteCountRate>
<btnVoteCountNumRate>Number+Percentage</btnVoteCountNumRate>
<menuCorrectAnswer>Correct Answer</menuCorrectAnswer>
<btnCorrectAnswer>Answer Text</btnCorrectAnswer>
<btnCorrectShape>Checkmark</btnCorrectShape>
<btnCorrectShapeFile>Checkmark Picture..</btnCorrectShapeFile>
<menuRigntCount>Right Count</menuRigntCount>
<btnRightCountNum>Number</btnRightCountNum>
<btnRightCountRate>Percentage</btnRightCountRate>
<btnRightCountNumRate>Number+Percentage</btnRightCountNumRate>
<btnScoreJudge>Judge Points</btnScoreJudge>
<btnScoreAvg>Average Score</btnScoreAvg>
<btnScoreSum>Total Score</btnScoreSum>
<spbtnClearData>Reset ,</spbtnClearData>
<spbtnClearData_Tip>Click to Clear Responses on Current Slide</spbtnClearData_Tip>
<btnClearCurrent>Current Slide</btnClearCurrent>
<btnClearAll>All Slides</btnClearAll>
<Hide>Hide</Hide>
<Panel>Settings Panel</Panel>
<Show>Show</Show>
<tgbShowPanel_Tip>Hide Panel</tgbShowPanel_Tip>
<btnSetVoterCount>Keypad Number-hardware</btnSetVoterCount>
<menuVoter>Participants</menuVoter>
<menuVoter_Tip>Voter Settings</menuVoter_Tip>
<btnVoterImport>Import a Participant List</btnVoterImport>
<btnVoterImportSQLServer>Import a Participant List(From SQL Server)</btnVoterImportSQLServer>
<btnVoterExport>Export the Participant List</btnVoterExport>
<btnVoterView>View the Participant List</btnVoterView>
<chkVoterEnabled>Use Participant List</chkVoterEnabled>
<menuAnalyze>Data Analysis</menuAnalyze>
<menuAnalyze_Tip>Excel Reports</menuAnalyze_Tip>
<btnRateCorrect>Correct Rate</btnRateCorrect>
<btnRateOption>Selection Rate</btnRateOption>
<btnAnalyzeSlideOption>Options Comparison</btnAnalyzeSlideOption>
<btnAnalyzeSlideCross>2 Slides Cross Comparison</btnAnalyzeSlideCross>
<btnAnalyzeSlideGroup>Demographic Comparison</btnAnalyzeSlideGroup>
<btnRankVoter>Participant Leaderboard</btnRankVoter>
<btnRankGroup>Team Leaderboard</btnRankGroup>
<btnRankScore>Score Ranking</btnRankScore>
<btnRankPoll>Poll Ranking</btnRankPoll>
<btnPollRank>Poll Ranking</btnPollRank>
<btnRankChartGroupMVP>Group MVP</btnRankChartGroupMVP>
<menuReport>Report</menuReport>
<menuReport_Tip>Excel Reports</menuReport_Tip>
<btnVoterDetail>Results by Participant</btnVoterDetail>
<btnSlideResult>Results by Question</btnSlideResult>
<btnReportCorrectRate>Correct Rate</btnReportCorrectRate>
<btnReportQuestion>Results by Questions</btnReportQuestion>
<btnReportVoter>Results by Participants</btnReportVoter>
<btnReportVoterDetail>Results by Participants(Detail)</btnReportVoterDetail>
<btnReportScore>Personal Achievement and Detail</btnReportScore>
<btnReportScore2>Report with postil</btnReportScore2>
<btnVoteResult>Vote Result</btnVoteResult>
<btnDataExport>Backup</btnDataExport>
<btnDataImport>Restore</btnDataImport>
<btnUpload>Data Upload</btnUpload>
<btnSystemSet>System Settings</btnSystemSet>
<btnSystemSet_Tip>System Settings</btnSystemSet_Tip>
<btnHelp>Help</btnHelp>
<btnHelp_Tip>Open Helpfile</btnHelp_Tip>
<btnAbout>About</btnAbout>
<btnAbout_Tip>About</btnAbout_Tip>
<Man>Male</Man>
<Woman>Female</Woman>
<WarningInfo1>This operation will clear current participant list, do you want to continue?</WarningInfo1>
<Warning>Warning</Warning>
<ShutWarning>System forbids auto shut off, forcible poweroff or not?</ShutWarning>
<ClearCurrWarning>It will clear current slide response data and save it ,do you want to continue?</ClearCurrWarning>
<ClearAllWarning>It will clear all slides response data and save them, do you want to continue?</ClearAllWarning>
<successisderiveds>Response data backup succeed!</successisderiveds>
<btnImportResponseMessage>This operation will cover current data, do you want to continue?</btnImportResponseMessage>
<prompt>Prompt</prompt>
<Documents>File is restored!</Documents>
<RestoreError>Data Loss Makes It Possible to Restore</RestoreError>
<btnSlideCompChart>Options Comparison</btnSlideCompChart>
<btnOperatorSlide>Operator Slide</btnOperatorSlide>
<btnSelectCountDetail>Total score by choosed options</btnSelectCountDetail>
<btnSelectCountVoter>Personal score by choosed options</btnSelectCountVoter>
<btnMedian>Median</btnMedian>
<btnRange>Range</btnRange>
<btnVoterDetailPV>Voter Detail</btnVoterDetailPV>
<btnSynthesis>Votes Synthesis</btnSynthesis>
<btnGroupSurvey>Group Survey</btnGroupSurvey>
<btnVoteCount>Voters In Number</btnVoteCount>
<btnResultDetailPic>Voter Details</btnResultDetailPic>
<btnCompVote>YNA Result</btnCompVote>
</rbSunVoteARS>
<FrmAboutUs>
<FrmAboutUs>About Us</FrmAboutUs>
<lblName>Soft Name:</lblName>
<lblSysSoftName>SunVote Audience Response System(Standard)</lblSysSoftName>
<lblVer>Version:</lblVer>
<lblSysVer>32bit(Beta)</lblSysVer>
<lblVerNo>Revision:</lblVerNo>
<lblVerNoInfo>1.2.3.0</lblVerNoInfo>
<lblEmail>Mail Box:</lblEmail>
<lblEmailInfo>support@sunvote.com.cn</lblEmailInfo>
<lblService>Sales Tel:</lblService>
<lblSEmail>Email:</lblSEmail>
<lblSupport>Support Tel:</lblSupport>
<lblSIEmailInfo>sales@sunvote.com.cn</lblSIEmailInfo>
<lblSite>Website:</lblSite>
<lblSiteInfo>http://www.sunvote.com.cn/</lblSiteInfo>
<lblCopyRight>Copyright@</lblCopyRight>
<lblCopyRightInfo>SunSky Corporation.All rights Reserved</lblCopyRightInfo>
</FrmAboutUs>
<FrmAnalyzeRateCorrect>
<FrmAnalyzeRateCorrect>Correct Rate</FrmAnalyzeRateCorrect>
<lvwSlide_0>No.</lvwSlide_0>
<lvwSlide_1>Question</lvwSlide_1>
<gbxChartLabel>Chart Label</gbxChartLabel>
<rbtChartDataLabel1>Number</rbtChartDataLabel1>
<rbtChartDataLabel2>Percentage</rbtChartDataLabel2>
<rbtChartDataLabel3>Number,Percentage</rbtChartDataLabel3>
<rbtChartDataLabel4>Hide</rbtChartDataLabel4>
<groupBox1>Chart Type</groupBox1>
<rbtChartType1>Pie</rbtChartType1>
<rbtChartType3D1>3D Pie</rbtChartType3D1>
<rbtChartType2>Vertical</rbtChartType2>
<rbtChartType3D2>3D Vertical</rbtChartType3D2>
<rbtChartType3>Horizontal</rbtChartType3>
<rbtChartType3D3>3D Horizontal</rbtChartType3D3>
<lblInfo>Note:Double Click on Chart For Full Screen Display</lblInfo>
<btnClose>Close</btnClose>
<btnShowFull>Full Screen Display (Double Click on Chart)</btnShowFull>
<lblLegentCorrect>Right</lblLegentCorrect>
<lblLegentWrong>Wrong</lblLegentWrong>
</FrmAnalyzeRateCorrect>
<FrmAnalyzeRateOption>
<FrmAnalyzeRateOption>Selection Rate</FrmAnalyzeRateOption>
<lvwSlide_0>No.</lvwSlide_0>
<lvwSlide_1>Question</lvwSlide_1>
<lvwOptionRate_0>Result Option</lvwOptionRate_0>
<lvwOptionRate_1>Count/Percent</lvwOptionRate_1>
<gbxChartLabel>Numerical Label</gbxChartLabel>
<rbtChartDataLabel1>Number</rbtChartDataLabel1>
<rbtChartDataLabel2>Percentage</rbtChartDataLabel2>
<rbtChartDataLabel3>Number,Percentage</rbtChartDataLabel3>
<rbtChartDataLabel4>Hide</rbtChartDataLabel4>
<groupBox1>Chart Type</groupBox1>
<rbtChartType1>Pie</rbtChartType1>
<rbtChartType3D1>3D Pie</rbtChartType3D1>
<rbtChartType2>Vertical</rbtChartType2>
<rbtChartType3D2>3D Vertical</rbtChartType3D2>
<rbtChartType3>Horizontal</rbtChartType3>
<rbtChartType3D3>3D Horizontal</rbtChartType3D3>
<lblInfo>Note: Double Click on Chart For Full Screen Display</lblInfo>
<btnClose>Close</btnClose>
<btnShowFull>Full Screen Display (Double Click on Chart)</btnShowFull>
</FrmAnalyzeRateOption>
<FrmAnalyzeSlide>
<FrmAnalyzeSlide>Options Comparison</FrmAnalyzeSlide>
<lblSlide>Please Choose Two Questions</lblSlide>
<lvwSlide_1>Question</lvwSlide_1>
<gbxChartLabel>Chart Label</gbxChartLabel>
<rbtChartDataLabel1>Number</rbtChartDataLabel1>
<rbtChartDataLabel2>Percentage</rbtChartDataLabel2>
<rbtChartDataLabel3>Number,Percentage</rbtChartDataLabel3>
<rbtChartDataLabel4>Hide</rbtChartDataLabel4>
<groupBox1>Chart Type</groupBox1>
<rbtChartType1>Pie</rbtChartType1>
<rbtChartType3D1>3D Pie</rbtChartType3D1>
<rbtChartType2>Vertical</rbtChartType2>
<rbtChartType3D2>3D Vertical</rbtChartType3D2>
<rbtChartType3>Horizontal</rbtChartType3>
<rbtChartType3D3>3D Horizontal</rbtChartType3D3>
<lblInfo>Note:Double Click on Chart For Full Screen Display</lblInfo>
<btnClose>Close</btnClose>
<btnShowFull>Full Screen Display (Double Click on Chart)</btnShowFull>
</FrmAnalyzeSlide>
<FrmAnalyzeSlideGroup>
<FrmAnalyzeSlideGroup>Demographic Comparison</FrmAnalyzeSlideGroup>
<lvwSlide_0>No.</lvwSlide_0>
<lvwSlide_1>Choose a Question Slide</lvwSlide_1>
<lvwGroup_0>No</lvwGroup_0>
<lvwGroup_1>Group Info</lvwGroup_1>
<lblGroup>Choose a Demographic</lblGroup>
<gbxChartLabel>Chart Label</gbxChartLabel>
<rbtChartDataLabel1>Number</rbtChartDataLabel1>
<rbtChartDataLabel2>Percentage</rbtChartDataLabel2>
<rbtChartDataLabel3>Number, Percentage</rbtChartDataLabel3>
<rbtChartDataLabel4>Hide</rbtChartDataLabel4>
<groupBox1>Chart Type</groupBox1>
<rbtChartType1>Pie</rbtChartType1>
<rbtChartType3D1>3D Pie</rbtChartType3D1>
<rbtChartType2>Vertical</rbtChartType2>
<rbtChartType3D2>3D Vertical</rbtChartType3D2>
<rbtChartType3>Horizontal</rbtChartType3>
<rbtChartType3D3>3D Horizontal</rbtChartType3D3>
<lblInfo>Note:Double Click on Chart For Full Screen Display</lblInfo>
<btnInvert>Reverse Contrast Option</btnInvert>
<btnClose>Close</btnClose>
<btnShowFull>Full Screen Display (Double Click on Chart)</btnShowFull>
</FrmAnalyzeSlideGroup>
<FrmRankScore>
<FrmRankScore>Score Ranking</FrmRankScore>
<dgvRank_0>Ranking</dgvRank_0>
<dgvRank_1>Rating Object</dgvRank_1>
<dgvRank_2>Average Score</dgvRank_2>
<dgvRank_3>Total Score</dgvRank_3>
<chkSelectAllSlide>Select All - Question</chkSelectAllSlide>
<lvwSlide_0/>
<lvwSlide_1>Question</lvwSlide_1>
<lblRankItem>Ranking Item</lblRankItem>
<clbRankItem_0>Average Score</clbRankItem_0>
<clbRankItem_1>Total Score</clbRankItem_1>
<gbxOrderBy>Statistics</gbxOrderBy>
<rbtByScoreAvg>Avg Score</rbtByScoreAvg>
<rbtByScoreSum>Total Score</rbtByScoreSum>
<rbtByScore>Score</rbtByScore>
<rbtByCorrectRate>Correct Rate</rbtByCorrectRate>
<chkBySpeed>Speed</chkBySpeed>
<btnShowFull>Full Screen Display</btnShowFull>
<btnExport>Excel Report</btnExport>
<btnClose>Close</btnClose>
</FrmRankScore>
<FrmRankVoter>
<FrmRankVoter>Participant Leaderboard</FrmRankVoter>
<dgvRank_0>Ranking</dgvRank_0>
<dgvRank_1>Keypad No.</dgvRank_1>
<dgvRank_2>Name</dgvRank_2>
<dgvRank_3>Score</dgvRank_3>
<ChkSelectAllSlide>Select All-question</ChkSelectAllSlide>
<lvwSlide_0>No.</lvwSlide_0>
<lvwSlide_1>Question</lvwSlide_1>
<lblVoterListField>Voter List Field</lblVoterListField>
<clbRosterField_0>Keypad</clbRosterField_0>
<clbRosterField_1>Name</clbRosterField_1>
<clbRosterField_2>Department</clbRosterField_2>
<lblRankItem>Ranking Item</lblRankItem>
<clbSortField_0>Score</clbSortField_0>
<clbSortField_1>Correctly Answered Questions</clbSortField_1>
<clbSortField_2>Answer Speed</clbSortField_2>
<gbxOrderBy>Statistics</gbxOrderBy>
<rbtByScore>Score</rbtByScore>
<rbtByCorrectRate>Correct Rate</rbtByCorrectRate>
<rbtByCorrectCount>Correct Count</rbtByCorrectCount>
<chkBySpeed>Speed</chkBySpeed>
<chkBySpeed2>Speed(Correct)</chkBySpeed2>
<chkByNoAnswered>Not attempted</chkByNoAnswered>
<btnShowFull>Full Screen Display</btnShowFull>
<btnExport>Excel Report</btnExport>
<btnClose>Close</btnClose>
<KeypadID>Keypad ID</KeypadID>
</FrmRankVoter>
<FrmCanVoteSlideResult>
<FrmCanVoteSlideResult>Voter-specified Option</FrmCanVoteSlideResult>
<lblSlide>Slide</lblSlide>
<lvwSlide_0>No.</lvwSlide_0>
<lvwSlide_1>Slide Subject</lvwSlide_1>
<lblOption>Only Allowed the Voter Who Selects the Ticked Option to Submit</lblOption>
<lvwOption_0>No.</lvwOption_0>
<lvwOption_1>Option</lvwOption_1>
<btnSelectAll>Select All</btnSelectAll>
<btnSelectCorrect>Select Correct Answer</btnSelectCorrect>
<btnOK>OK</btnOK>
<btnCancel>Cancel</btnCancel>
<Correct>Correct</Correct>
<CorrectAnswer>Correct Answer</CorrectAnswer>
<UpdatePrompt>Change voter info, it will clear responses on current slide, do you want to continue?</UpdatePrompt>
<UpdateSave>Voter authorization has been modified, would you like to save it?</UpdateSave>
<rbtOr>Contains Options</rbtOr>
<rbtAnd>Equal Options</rbtAnd>
</FrmCanVoteSlideResult>
<FrmCanVoteVoterGroup>
<FrmCanVoteVoterGroup>Voter-specified Name List</FrmCanVoteVoterGroup>
<lblSlide>Name List</lblSlide>
<lblGroup>Only Allowed the Voter Who Selects the Ticked Option to Submit</lblGroup>
<lvwOption_0>No.</lvwOption_0>
<lvwSlide_0>No.</lvwSlide_0>
<lvwSlide_1>Field Name</lvwSlide_1>
<lvwGroup_0>Field Values</lvwGroup_0>
<btnSelectAll>Select All</btnSelectAll>
<btnOK>OK</btnOK>
<btnCancel>Cancel</btnCancel>
<UpdatePrompt>Change voter info, it will clear responses on current slide, do you want to continue?</UpdatePrompt>
<UpdateSave>Voter authorization has been modified, would you like to save it?</UpdateSave>
<Correct>Correct</Correct>
<CorrectAnwser>Correct Anwser</CorrectAnwser>
</FrmCanVoteVoterGroup>
<FrmChannelReplace>
<FrmChannelReplace>Change Base Channel</FrmChannelReplace>
<lblChannelNowLB>Current Channel</lblChannelNowLB>
<lblKeypadNewLB>Change to</lblKeypadNewLB>
<btnOK>Change Channel</btnOK>
<btnCancel>Close</btnCancel>
<ChangeSuccess>Channel Changed</ChangeSuccess>
<prompt>Prompt</prompt>
</FrmChannelReplace>
<FrmDeviceSet>
<FrmDeviceSet>Hardware Settings</FrmDeviceSet>
<tpgBaseInfo>Base Station Settings</tpgBaseInfo>
<tpgKeypadInfo>Keypad Info</tpgKeypadInfo>
<dgvBaseList_0>Base Station List</dgvBaseList_0>
<dgvBaseList_1>ID</dgvBaseList_1>
<dgvBaseList_2>Channel</dgvBaseList_2>
<dgvBaseList_3>IP</dgvBaseList_3>
<dgvBaseList_4>Type</dgvBaseList_4>
<dgvBaseList_5>Serial No.</dgvBaseList_5>
<dgvBaseList_6>Working Mode</dgvBaseList_6>
<dgvBaseList_7>Connection State</dgvBaseList_7>
<lblBaseConnectType>Connection Type</lblBaseConnectType>
<rbxBaseConnectUSB>USB</rbxBaseConnectUSB>
<rbxBaseConnectTCP>TCP/IP</rbxBaseConnectTCP>
<chkMultiBase>Enable Multi Base Stations</chkMultiBase>
<btnBaseConnect>Reconnect</btnBaseConnect>
<btnBaseDisconnect>Disconnect</btnBaseDisconnect>
<btnClose>Close</btnClose>
<Succeed>Success</Succeed>
<CheckMessage>More Than 1 Base Station Should be Used in Multi Base Station Mode</CheckMessage>
<CheckChannelFormat>Channel Format Error</CheckChannelFormat>
<CheckChannelRange>channel Setting is Out of Range</CheckChannelRange>
<CheckChannelExist>Occupied channel, please use another one.</CheckChannelExist>
<CheckIPFormat>Incorrect IP Format</CheckIPFormat>
<CheckIPExist>Forbid Repeated IP.</CheckIPExist>
<gbxKeypadInfo>Keypad Info</gbxKeypadInfo>
<gbxKeypadID>Keypad ID</gbxKeypadID>
<gbxKeypadSN>Keypad Serial No.</gbxKeypadSN>
<gbxHelpKeypadInfoRead>Help</gbxHelpKeypadInfoRead>
<lblHelpKeypadInfoRead1>Function: Read Keypad Info</lblHelpKeypadInfoRead1>
<lblHelpKeypadInfoRead2>Step 1: Click "Start Read Keypad Info"</lblHelpKeypadInfoRead2>
<lblHelpKeypadInfoRead3>Step 2: Hold Down "Ok" Button on the Keypad Till the Successful Operation in the Software</lblHelpKeypadInfoRead3>
<btnKeypadInfoRead>Read Keypad Info</btnKeypadInfoRead>
<btnKeypadInfoRead_Start>Start To Read</btnKeypadInfoRead_Start>
<btnKeypadInfoRead_Stop>Stop Reading</btnKeypadInfoRead_Stop>
<MatchModeLab>Working Mode</MatchModeLab>
<MatchMode1>Match Mode</MatchMode1>
<MatchMode2>Free Mode</MatchMode2>
<MatchMode3>Auto Mode</MatchMode3>
<labKeyNoMode>Hardware identification</labKeyNoMode>
</FrmDeviceSet>
<FrmKeypadCountSet>
<FrmKeypadCountSet>Keypad Number</FrmKeypadCountSet>
<lblMemberNumber>Voter Number</lblMemberNumber>
<lblHelpKeypadZone1>Valid Keypad Range</lblHelpKeypadZone1>
<lblHelpKeypadZone2>Separate with ",", or continuous with"-", </lblHelpKeypadZone2>
<lblHelpKeypadZone3>E.G.:" 1, 2, 3, 11-20"</lblHelpKeypadZone3>
<btnOK>OK</btnOK>
<btnCancel>Cancel</btnCancel>
<Message1>Inputted range format error, please re-enter.</Message1>
<Message2>Out of range keypad ID.</Message2>
<Message3>Keypad no is smaller than voter number, please reset.</Message3>
<SaveKeypadCountSet>List of currently enabled, the operation will disable the list and wish to continue?</SaveKeypadCountSet>
</FrmKeypadCountSet>
<FrmKeypadReplace>
<FrmKeypadReplace>Replace Keypad</FrmKeypadReplace>
<lblKeypadIDOld>Keypad ID to be Replaced</lblKeypadIDOld>
<lblKeypadIDNew>Replace by</lblKeypadIDNew>
<btnOK>Replace Keypad</btnOK>
<btnCancel>Cancel</btnCancel>
<ReplaceSuccess>Keypad is Replaced</ReplaceSuccess>
<ReplaceMassage0>Replacement Keypad ID And the Original Keypad ID Should be Different</ReplaceMassage0>
<ReplaceMassage1>Invalid Replacement Keypad</ReplaceMassage1>
<ReplaceMassage2>Keypad in Use</ReplaceMassage2>
<prompt>Prompt</prompt>
</FrmKeypadReplace>
<FrmKeypadShutdown>
<FrmKeypadShutdown>Remote Power Off</FrmKeypadShutdown>
<btnKeypadShutdown>Start Power Off</btnKeypadShutdown>
<btnClose>Close</btnClose>
<txtInfo>Powering Off</txtInfo>
<txtInfo1>Powering Off</txtInfo1>
<txtInfo2>Remote Power Off Successful</txtInfo2>
</FrmKeypadShutdown>
<FrmKeypadTest>
<FrmKeypadTest>Keypad Test</FrmKeypadTest>
<lblOnline>Online:</lblOnline>
<lblOffline>Offline:</lblOffline>
<lblELV>Weak Current:</lblELV>
<lblBaseList>Base Station List</lblBaseList>
<lblTestType>Test Type</lblTestType>
<cobTestType_Text_0>On Line Power Test</cobTestType_Text_0>
<cobTestType_Text_1>Automatic Vote Test</cobTestType_Text_1>
<btnKeypadTest>Test</btnKeypadTest>
<btnKeypadTest_Start>Start Test</btnKeypadTest_Start>
<btnKeypadTest_Stop>Stop Test</btnKeypadTest_Stop>
<cobBaseList>All Base Stations</cobBaseList>
<labCount>Keypad Count: </labCount>
<btnExit>Exit</btnExit>
</FrmKeypadTest>
<FrmKeypadType>
<FrmKeypadType>Keypad Type</FrmKeypadType>
<lblKeypadType>Keypad Type</lblKeypadType>
<lblKeypadInfo_ET50>ET50 keypad: Credit card size, thin and light, multiple functions, and powered by two CR2032 button batteries-, easy to use and carry, ideal for interactive training, competition scoring, staff polling ,etc. in corporate</lblKeypadInfo_ET50>
<lblKeypadInfo_ET52>ET52 keypad: Credit card size, thin and light, multiple functions, and powered by two CR2032 button batteries-, easy to use and carry, ideal for interactive training, competition scoring, staff polling ,etc. in corporate</lblKeypadInfo_ET52>
<lblKeypadInfo_ET52Plus>ET52Plus keypad: Credit card size, thin and light, multiple functions, and powered by two CR2032 button batteries-, easy to use and carry, ideal for interactive training, competition scoring, staff polling ,etc. in corporate</lblKeypadInfo_ET52Plus>
<lblKeypadInfo_M50>M50 keypad: Credit card size, thin and light, multiple functions, and powered by two CR2032 button batteries-, easy to use and carry, ideal for interactive training, competition scoring, staff polling ,etc. in corporate</lblKeypadInfo_M50>
<lblKeypadInfo_M52>M52 keypad: Credit card size, thin and light, multiple functions, and powered by two CR2032 button batteries-, easy to use and carry, ideal for interactive training, competition scoring, staff polling ,etc. in corporate</lblKeypadInfo_M52>
<lblKeypadInfo_M52Plus>M52Plus keypad: Credit card size, thin and light, multiple functions, and powered by two CR2032 button batteries-, easy to use and carry, ideal for interactive training, competition scoring, staff polling ,etc. in corporate</lblKeypadInfo_M52Plus>
<lblKeypadInfo_F00>F00keypad: Easy to use, cost-effective, with built-in rechargeable lithium battery, waterproof membrane touch switches, wireless 2.4G digital communication design, long standby time. </lblKeypadInfo_F00>
<lblKeypadInfo_M40L>M40L keypad: 2x AA Battery Powered, with a led indicator on its top,easy to use, easy to carry, good for interactive quizzes, contests ratings, employee voting, etc.</lblKeypadInfo_M40L>
<btnOK>OK</btnOK>
<btnCancel>Cancel</btnCancel>
<txtInfo2>Successful Remote Power Off</txtInfo2>
<cboKeypadType_Text_0>M52</cboKeypadType_Text_0>
<cboKeypadType_Text_1>M50</cboKeypadType_Text_1>
</FrmKeypadType>
<FrmPollList>
<FrmPollList>Candidate List</FrmPollList>
<dgvVoterList_0>No.</dgvVoterList_0>
<dgvVoterList_1>Candidate</dgvVoterList_1>
<btnInsert>Insert</btnInsert>
<btnDelete>Delete</btnDelete>
<btnSave>Save</btnSave>
<btnImport>Import</btnImport>
<btnExport>Export</btnExport>
<btnClose>Close</btnClose>
<CheckMessage1>You can only enter a candidate ID in numbers, please modify the candidatelist</CheckMessage1>
<CheckMessage2>Candidate ID can not be empty, please modify the candidate list</CheckMessage2>
<CheckMessage3>Duplicate Candidate ID, please modify the candidate list</CheckMessage3>
<SavePollList>Do you want to save the Participant List?</SavePollList>
<ExcelTitle>Candidate List</ExcelTitle>
<ExportSucceed>Export Success</ExportSucceed>
<SaveSuccess>Save Ok</SaveSuccess>
<lblExcel>Note: Please make sure the first row is list head, and the first column is numerical.</lblExcel>
<ImportSuccess>Import Successful</ImportSuccess>
<ImportFail>Import Failed</ImportFail>
<ImportData>Data Import</ImportData>
</FrmPollList>
<FrmRankGroup>
<FrmRankGroup>Team Leaderboard</FrmRankGroup>
<dgvRank_0>Ranking</dgvRank_0>
<dgvRank_1>Group Name</dgvRank_1>
<dgvRank_2>Member Count</dgvRank_2>
<chkSelectAllSlide>Select All-question</chkSelectAllSlide>
<lvwSlide_0>No.</lvwSlide_0>
<lvwSlide_1>Question</lvwSlide_1>
<lblGroup>Team Assignment</lblGroup>
<lblRankItem>Rank Item</lblRankItem>
<clbSortField_AgvScore>Average Score</clbSortField_AgvScore>
<clbSortField_AgvCorrect>Average Corrects.</clbSortField_AgvCorrect>
<clbSortField_AgvSpeed>Average Answer Speed</clbSortField_AgvSpeed>
<clbSortField_TotalScore>Total Score</clbSortField_TotalScore>
<clbSortField_TotalCorrect>Total correct</clbSortField_TotalCorrect>
<clbSortField_TotalSpeed>Total Answer speed</clbSortField_TotalSpeed>
<lblGroupType>Group Type</lblGroupType>
<lblGroupItem>Group Info</lblGroupItem>
<gbxOrderBy>Statistics</gbxOrderBy>
<rbtByScore>Score(Average)</rbtByScore>
<rbtByCorrectRate>Correct Rate(Average)</rbtByCorrectRate>
<rbtByCorrectCount>Correct Count(Average)</rbtByCorrectCount>
<rbtByCorrectCountSum>Correct Count(Sum)</rbtByCorrectCountSum>
<chkBySpeed>Speed</chkBySpeed>
<cboRosterField>Keypad Type</cboRosterField>
<btnShowFull>Full Screen Display</btnShowFull>
<btnExport>Excel Report</btnExport>
<btnClose>Close</btnClose>
</FrmRankGroup>
<FrmRankPoll>
<FrmRankPoll>Poll Ranking</FrmRankPoll>
<dgvRank_0>Ranking</dgvRank_0>
<dgvRank_1>Number</dgvRank_1>
<dgvRank_2>Candidate</dgvRank_2>
<dgvRank_3>Count</dgvRank_3>
<btnShowFull>Full Screen Display</btnShowFull>
<btnExport>Excel Report</btnExport>
<btnClose>Close</btnClose>
<lvwSlide_0>No.</lvwSlide_0>
<lvwSlide_1>Question</lvwSlide_1>
</FrmRankPoll>
<FrmReport>
<FrmReport>Report</FrmReport>
<tpgVoteDetail>Results by Participant</tpgVoteDetail>
<dgvVoteDetail_T_Index>Slide No.</dgvVoteDetail_T_Index>
<dgvVoteDetail_TT_ID>Slide Type</dgvVoteDetail_TT_ID>
<dgvVoteDetail_T_Note>Question</dgvVoteDetail_T_Note>
<dgvVoteDetail_V_KeypadID>Keypad No.</dgvVoteDetail_V_KeypadID>
<dgvVoteDetail_R_Result>Response</dgvVoteDetail_R_Result>
<dgvVoteDetail_R_Score>Score</dgvVoteDetail_R_Score>
<dgvVoteDetail_R_Correct>Correct</dgvVoteDetail_R_Correct>
<dgvVoteDetail_R_Speed>Answer Speed</dgvVoteDetail_R_Speed>
<dgvVoteDetail_R_Time>Voting Time</dgvVoteDetail_R_Time>
<tpgVoteResult>Results by Question</tpgVoteResult>
<dgvVoteResult_T_Index>Slide No.</dgvVoteResult_T_Index>
<dgvVoteResult_TT_ID>Slide Type</dgvVoteResult_TT_ID>
<dgvVoteResult_T_Title>Title</dgvVoteResult_T_Title>
<dgvVoteResult_VoterCount>Voter</dgvVoteResult_VoterCount>
<dgvVoteResult_SubmitCount>Count</dgvVoteResult_SubmitCount>
<dgvVoteResult_VotedCount>Voted</dgvVoteResult_VotedCount>
<dgvVoteResult_T_Note>Question And Answers</dgvVoteResult_T_Note>
<btnExport>Export</btnExport>
<btnExit>Exit</btnExit>
</FrmReport>
<FrmSystemSet>
<FrmSystemSet>System Settings</FrmSystemSet>
<tpgSystemSet>Language</tpgSystemSet>
<gbxLanguage>System Language</gbxLanguage>
<labLanguage>Language</labLanguage>
<labFont>Font</labFont>
<tpgOprate>Operating</tpgOprate>
<gbxAutoPage>Automatically Change Slide</gbxAutoPage>
<chkTimeOut>End of Countdown Timer</chkTimeOut>
<chkAllVoted>When All Votes are Collected</chkAllVoted>
<lblDelayTime>Automatically Change Delay Time (Second)</lblDelayTime>
<gbxRemoteControl>PPT Remote Control Settings</gbxRemoteControl>
<chkRemoteControlEnabled>Enable 50R/40R Remote Control</chkRemoteControlEnabled>
<tpgSoundSet>Sound Settings</tpgSoundSet>
<lvwSound_0>Category</lvwSound_0>
<lvwSound_1>Path</lvwSound_1>
<lvwSound_Item_0>Background Music</lvwSound_Item_0>
<lvwSound_Item_1>Votes Collected</lvwSound_Item_1>
<btnSoundBrowse>Browse...</btnSoundBrowse>
<btnSoundPlay>Play</btnSoundPlay>
<btnSoundStop>Stop</btnSoundStop>
<btnOK>OK</btnOK>
<btnCancel>Cancel</btnCancel>
<gbAddinType>Addin Load Type Setting</gbAddinType>
<rbAuto>On Open PPT</rbAuto>
<rbShotcut>By Shotcut</rbShotcut>
<lblInfo>Only administrator account has permission to modify</lblInfo>
<lblChartShow>Chart Display</lblChartShow>
<cboChartShow_Text_0>At Vote Closing</cboChartShow_Text_0>
<cboChartShow_Enum_0>csStop</cboChartShow_Enum_0>
<cboChartShow_Text_1>At Vote Opening</cboChartShow_Text_1>
<cboChartShow_Enum_1>csStart</cboChartShow_Enum_1>
<cboChartShow_Text_2>Manual Operation</cboChartShow_Text_2>
<cboChartShow_Enum_2>csHandle</cboChartShow_Enum_2>
<cboChartShow_Text_3>Hide Chart</cboChartShow_Text_3>
<cboChartShow_Enum_3>csHide</cboChartShow_Enum_3>
<gbDemo>Demo Mode</gbDemo>
<chkDemo>Enable the demo mode</chkDemo>
<grbChart>Chart setting</grbChart>
<tpgSetAll>Global Setting</tpgSetAll>
<grbVoteSet>Vote Settings</grbVoteSet>
<chkNameMode>Onymous Type:</chkNameMode>
<cboNameMode_Text_0>Onymous</cboNameMode_Text_0>
<cboNameMode_Text_1>Anonymous</cboNameMode_Text_1>
<gbKeySet>Keypad Parameter</gbKeySet>
<chkSubmitMode>Submit Mode:</chkSubmitMode>
<cboSubmitMode_Text_0>Press Ok To Submit</cboSubmitMode_Text_0>
<cboSubmitMode_Text_1>Auto-submit</cboSubmitMode_Text_1>
<chkModifyMode>Modify Mode:</chkModifyMode>
<cboModifyMode_Text_0>Revisable</cboModifyMode_Text_0>
<cboModifyMode_Text_1>Nonrevisable</cboModifyMode_Text_1>
<chkOptionMode>Option Format:</chkOptionMode>
<cboOptionMode_Text_0>1234</cboOptionMode_Text_0>
<cboOptionMode_Text_1>ABCD</cboOptionMode_Text_1>
<gbChartSet>Chart Settings</gbChartSet>
<chkChartType>Chart Type:</chkChartType>
<chkLableType>Label:</chkLableType>
<chkChartShow>Chart Display:</chkChartShow>
<chkCharRate>Ratio:</chkCharRate>
<chk3DShow>Display Type:</chk3DShow>
<cboShowType_Text_0>2D Display</cboShowType_Text_0>
<cboShowType_Text_1>3D Display</cboShowType_Text_1>
<btnChartColor>Chart Colors</btnChartColor>
<cboChartType_Text_0>Vertical</cboChartType_Text_0>
<cboChartType_Enum_0>ctColumn</cboChartType_Enum_0>
<cboChartType_Text_1>Horizontal</cboChartType_Text_1>
<cboChartType_Enum_1>ctBar</cboChartType_Enum_1>
<cboChartType_Text_2>Vertical Rect</cboChartType_Text_2>
<cboChartType_Enum_2>ctColumnBox</cboChartType_Enum_2>
<cboChartType_Text_3>Horizontal Rect</cboChartType_Text_3>
<cboChartType_Enum_3>ctBarBox</cboChartType_Enum_3>
<cboChartType_Text_4>Pie</cboChartType_Text_4>
<cboChartType_Enum_4>ctPie</cboChartType_Enum_4>
<cboChartLabel_Text_0>#</cboChartLabel_Text_0>
<cboChartLabel_Enum_0>ltNumberValue</cboChartLabel_Enum_0>
<cboChartLabel_Text_1>0.0%</cboChartLabel_Text_1>
<cboChartLabel_Enum_1>ltPercent</cboChartLabel_Enum_1>
<cboChartLabel_Text_2>#+0.0%</cboChartLabel_Text_2>
<cboChartLabel_Enum_2>ltNumberValueAndPercent</cboChartLabel_Enum_2>
<cboChartLabel_Text_3>No Label</cboChartLabel_Text_3>
<cboChartLabel_Enum_3>ltNone</cboChartLabel_Enum_3>
<cboChartShow_Text_0>At Vote Closing</cboChartShow_Text_0>
<cboChartShow_Enum_0>csStop</cboChartShow_Enum_0>
<cboChartShow_Text_1>At Vote Opening</cboChartShow_Text_1>
<cboChartShow_Enum_1>csStart</cboChartShow_Enum_1>
<cboChartShow_Text_2>Manual Operation</cboChartShow_Text_2>
<cboChartShow_Enum_2>csHandle</cboChartShow_Enum_2>
<cboChartRate_Text_0>Divisor is Attendance</cboChartRate_Text_0>
<cboChartRate_Enum_0>crParticipant</cboChartRate_Enum_0>
<cboChartRate_Text_1>Divisor is Count</cboChartRate_Text_1>
<cboChartRate_Enum_1>crResponse</cboChartRate_Enum_1>
<cboChartRate_Text_2>Divisor is Yes/No</cboChartRate_Text_2>
<cboChartRate_Enum_2>crVoteYesNo</cboChartRate_Enum_2>
<cboChartRate_Text_ChoiceCount>Number of choosed</cboChartRate_Text_ChoiceCount>
<cboChartRate_Enum_3>crChoiceCount</cboChartRate_Enum_3>
<btnSetAll>Apply to all</btnSetAll>
<Prompt>Prompt</Prompt>
<GlobalSetSucceed>Setting updated</GlobalSetSucceed>
<chkDec>Decimals:</chkDec>
<gbxAutoVote>Automatically start polling</gbxAutoVote>
<chkAutoVote>Start polling automatically when slides are presented</chkAutoVote>
<tabEmailSet>Email Setting</tabEmailSet>
<grpEmailOut>Outbox Setting</grpEmailOut>
<labEmailOut>Please input a valid email account (make sure the account has been set and tested successfully in outlook at the computer installed SunVote software)</labEmailOut>
<labEmailPWD>Password</labEmailPWD>
<labEmailServer>Outgoing Mail Server</labEmailServer>
<labEmailPort>Port(Optional)</labEmailPort>
<gbxEmailIn>Inbox Setting</gbxEmailIn>
<labEmailInAdds>Please set the email address (will be send report automatically when PPT closing, seperate each email address with ';')</labEmailInAdds>
<gbxEmailReport>Please select the report to be sent automatically</gbxEmailReport>
<SendMsgAsk>Do you want to send the report mail?</SendMsgAsk>
<SendMsgAskTitle>Reports mail</SendMsgAskTitle>
<SendMsgSuccess>Mail sent successfully!</SendMsgSuccess>
<SendMsgFail>Failed to send mail! Error message:</SendMsgFail>
<gbxVoteStatus>Voting Status</gbxVoteStatus>
<chkShowVoteStatus>When hide vote bar, show voting status</chkShowVoteStatus>
<chkNotVotedScore>Not attempt get negative mark</chkNotVotedScore>
<gbxInsertSlideObject>Insert Object on All New Slides</gbxInsertSlideObject>
<chkChartShowWindow>The Chart Always Show With Window Mode On Slide Showing</chkChartShowWindow>
</FrmSystemSet>
<FrmVoteBar>
<tsbConnectState_Text>Base Station Connection State</tsbConnectState_Text>
<tsbConnectState_ToolTipText>Base Station Connection State</tsbConnectState_ToolTipText>
<ddbNewSlide_Text>Impromptu Slide</ddbNewSlide_Text>
<ddbNewSlide_ToolTipText>Create</ddbNewSlide_ToolTipText>
<ddbCanVote_Text>Authorize Keypad</ddbCanVote_Text>
<ddbCanVote_ToolTipText>Authorize Keypad</ddbCanVote_ToolTipText>
<tsbShowResult_Text_Show>Show Chart (G)</tsbShowResult_Text_Show>
<tsbShowResult_ToolTipText_Show>Show Chart (G)</tsbShowResult_ToolTipText_Show>
<tsbShowResult_Text_Hide>Hide Chart (G)</tsbShowResult_Text_Hide>
<tsbShowResult_ToolTipText_Hide>Hide Chart (G)</tsbShowResult_ToolTipText_Hide>
<tsbVoteStart_Text_Start>Start the Feedback (S)</tsbVoteStart_Text_Start>
<tsbVoteStart_ToolTipText_Start>Start the Feedback (S)</tsbVoteStart_ToolTipText_Start>
<tsbVoteStart_Text_Stop>Stop the Feedback (S)</tsbVoteStart_Text_Stop>
<tsbVoteStart_ToolTipText_Stop>Stop the Feedback (S)</tsbVoteStart_ToolTipText_Stop>
<tsbVoteClearStart_Text>Re-vote(Reset) (R)</tsbVoteClearStart_Text>
<tsbVoteClearStart_ToolTipText>Re-vote(Reset) (R)</tsbVoteClearStart_ToolTipText>
<tsbVoteClear_Text>Reset Current Slide (D)</tsbVoteClear_Text>
<tsbVoteClear_ToolTipText>Reset Current Slide (D)</tsbVoteClear_ToolTipText>
<tsbVoteDetail_Text>Response Details (K)</tsbVoteDetail_Text>
<tsbVoteDetail_ToolTipText>Response Details (K)</tsbVoteDetail_ToolTipText>
<tsbCorrectAnswer_Text_Show>Show Correct Answer (A)</tsbCorrectAnswer_Text_Show>
<tsbCorrectAnswer_ToolTipText_Show>Show Correct Answer (A)</tsbCorrectAnswer_ToolTipText_Show>
<tsbCorrectAnswer_Text_Hide>Hide Correct Answer (A)</tsbCorrectAnswer_Text_Hide>
<tsbCorrectAnswer_ToolTipText_Hide>Hide Correct Answer (A)</tsbCorrectAnswer_ToolTipText_Hide>
<tsbRushAnswer_Text>Start Fastest Response (Q)</tsbRushAnswer_Text>
<tsbRushAnswer_ToolTipText>Start Fastest Response (Q)</tsbRushAnswer_ToolTipText>
<tsbLuckyShow>Random Roll Call(U)</tsbLuckyShow>
<ddbAnalyzer_Text>Data Analysis</ddbAnalyzer_Text>
<ddbAnalyzer_ToolTipText>Data Analysis</ddbAnalyzer_ToolTipText>
<ddbDock_Text>Toolbar position</ddbDock_Text>
<ddbDock_ToolTipText>Toolbar position</ddbDock_ToolTipText>
<tsbAutoHide_Text>Auto-hide (H)</tsbAutoHide_Text>
<tsbAutoHide_ToolTipText>Auto-hide (H)</tsbAutoHide_ToolTipText>
<ConnectStatus>Base Station Connection State: </ConnectStatus>
<Connected>Base Station is Connected</Connected>
<UnConnected>Base Station Disconnected</UnConnected>
<AutoHide>Auto-hide</AutoHide>
<AutoHideCancel>Cancel Auto-hide</AutoHideCancel>
<tsmRateCorrect>Correct Rate</tsmRateCorrect>
<tsmRateOption>Selection Rate</tsmRateOption>
<tssAnalyzer1>-</tssAnalyzer1>
<tsmAnalyzeSlideOption>Options Comparison</tsmAnalyzeSlideOption>
<tsmAnalyzeSlideCross>2 Slides Cross Comparison</tsmAnalyzeSlideCross>
<tsmAnalyzeSlideGroup>Demographic Comparison</tsmAnalyzeSlideGroup>
<tsmRankVoter>Participant Leaderboard</tsmRankVoter>
<tsmRankGroup>Team Leaderboard</tsmRankGroup>
<tsmRankScore>Score Ranking</tsmRankScore>
<tsmRankPoll>Poll Ranking</tsmRankPoll>
<lblAutoHideMsg>Are you sure to hide the tool bar? After hiding, please press H or move the mouse to the tool bar to display.</lblAutoHideMsg>
</FrmVoteBar>
<FrmVoteDemoInfo>
<FrmVoteDemoInfo>Demo Mode</FrmVoteDemoInfo>
<lblInfo>Demo Mode</lblInfo>
</FrmVoteDemoInfo>
<FrmVoteDetail>
<FrmVoteDetail>Response Details</FrmVoteDetail>
<lblOnline>On Line: </lblOnline>
<lblWeak>Weak Current: </lblWeak>
<lblShowRoster>Show Participant List</lblShowRoster>
<lblShowData>Show Data</lblShowData>
<lblTotal_Participate>Participant: </lblTotal_Participate>
<lblTotal_Due>Participant</lblTotal_Due>
<lblVoted_Response>Submitted: </lblVoted_Response>
<lblVoted_Arrive>Arrived: </lblVoted_Arrive>
<lblNoPress_UnResponse>Not Submitted: </lblNoPress_UnResponse>
<lblVoted_UnArrive>Non-arrival: </lblVoted_UnArrive>
<cboShowData_Text_0>All keypad</cboShowData_Text_0>
<cboShowData_Text_1>Not feedback</cboShowData_Text_1>
<cboShowData_Text_2>Press value</cboShowData_Text_2>
<cboShowData_Text_3>Group by value</cboShowData_Text_3>
<lblSameCode>Repeated: </lblSameCode>
<SignCode>Sign Code</SignCode>
<FullScreen>Full Screen</FullScreen>
<NormalScreen>Exit Full Screen</NormalScreen>
<ShowKeypadNo>Keypad Number</ShowKeypadNo>
<ShowSN>SN</ShowSN>
<btnReportVote>Export Report</btnReportVote>
<LBYes>Yes: </LBYes>
<LBNo>No: </LBNo>
<LBAbs>Abs: </LBAbs>
<chkShowNoSignInOK>Show pending list</chkShowNoSignInOK>
<btnImportData>Import Data</btnImportData>
</FrmVoteDetail>
<FrmVoterList>
<FrmVoterList>Participant List</FrmVoterList>
<lblFieldSignInCode>Valid Registeration Code</lblFieldSignInCode>
<lblInfo>Prompt</lblInfo>
<btnInsert>Insert</btnInsert>
<btnDelete>Delete</btnDelete>
<btnSave>Save</btnSave>
<btnImport>Import</btnImport>
<btnExport>Export</btnExport>
<btnClose>Close</btnClose>
<dgvVoterList_0>Keypad ID</dgvVoterList_0>
<dgvVoterList_1>Name</dgvVoterList_1>
<dgvVoterList_2>Team Assignment</dgvVoterList_2>
<dgvVoterList_3>Registeration Code</dgvVoterList_3>
<ExcelTitle>Participant List</ExcelTitle>
<LoadSuccess>Load Data Finish</LoadSuccess>
<ImportStart>Start Importing Data</ImportStart>
<GetExcelData>Get Excel Data</GetExcelData>
<ImportSuccess>Import Successful, please set Show Name Field</ImportSuccess>
<SaveSuccess>Data Saved Successfully</SaveSuccess>
<KeypadFormat>Keypad ID Must be Between 1-9999</KeypadFormat>
<KeypadRepeat>Repeated Keypad ID</KeypadRepeat>
<lblFieldSignInCode>Sign-In Code Effective Field</lblFieldSignInCode>
<KeyIDFormat>Keyboard Number Must be Numeric</KeyIDFormat>
<KeyIDNull>Keyboard Number Can Not be Empty</KeyIDNull>
<KeyIDRep>Keyboard Number Does Not Allow Repeat</KeyIDRep>
<SignCodeFormat>Sign Code Must be Numeric</SignCodeFormat>
<SignCodeNull>Sign Code Can Not be Empty</SignCodeNull>
<SignCodeRep>Sign Code Does Not Allow Repeat</SignCodeRep>
<IsSave>Current data has been modified, whether to save?</IsSave>
<lblFieldVoteRate>Keyapd Vote Rate Field</lblFieldVoteRate>
<lblFieldShowName>Show Name Field</lblFieldShowName>
<Unsetting>Not set</Unsetting>
<lblFieldUID>UID or Student ID:</lblFieldUID>
<chkSelectShowCol>Show belowfield in report</chkSelectShowCol>
</FrmVoterList>
<FrmChartSet>
<FrmChartSet>Chart Setting</FrmChartSet>
<lblChartSetColor>Chart Colors</lblChartSetColor>
<lblColorSet>Click on Chart to Modify the Color</lblColorSet>
<lvwColorSet_0>No.</lvwColorSet_0>
<gbxFontSet>Font Setting</gbxFontSet>
<lblFontObject>Setting Object</lblFontObject>
<cboFontObject_Text_0>Option Label</cboFontObject_Text_0>
<cboFontObject_Text_1>Data Label</cboFontObject_Text_1>
<lblFontName>Font Name</lblFontName>
<lblFontSize>Font Size</lblFontSize>
<lblFontColor>Font Color</lblFontColor>
<chkFontBold>Font Bold</chkFontBold>
<chkFontItalic>Font Italic</chkFontItalic>
<btnOK>OK</btnOK>
<btnCancel>Cancel</btnCancel>
</FrmChartSet>
<FrmAllChartSet>
<FrmAllChartSet>Chart Setting</FrmAllChartSet>
<chkChartColor>Chart Colors</chkChartColor>
<lvwColorSet_0>No.</lvwColorSet_0>
<gbxFontSet>Font Setting</gbxFontSet>
<lblFontObject>Setting Object</lblFontObject>
<cboFontObject_Text_0>Option Label</cboFontObject_Text_0>
<cboFontObject_Text_1>Data Label</cboFontObject_Text_1>
<chkFontName>Font Name</chkFontName>
<chkFontSize>Font Size</chkFontSize>
<chkFontColor>Font Color</chkFontColor>
<chkFontType>Font Type</chkFontType>
<cboFontType_Text_0>Normal</cboFontType_Text_0>
<cboFontType_Text_1>Font Bold</cboFontType_Text_1>
<cboFontType_Text_2>Font Italic</cboFontType_Text_2>
<btnOK>Apply to all</btnOK>
<btnCancel>Cancel</btnCancel>
<Prompt>prompt</Prompt>
<GlobalSetSucceed>Setting secceed</GlobalSetSucceed>
<chkFontBold>Font Bold</chkFontBold>
<chkFontItalic>Font Italic</chkFontItalic>
<chkChartColorAll>Chart Use One Color</chkChartColorAll>
</FrmAllChartSet>
<PPTEdit>
<SignIn>Registered</SignIn>
<UnSignIn>Unregistered</UnSignIn>
</PPTEdit>
<PPTOper>
<SignIn>Roll Call</SignIn>
<Group>Team Assignment</Group>
<Choice>Choice</Choice>
<SingleChoice>Single Choice</SingleChoice>
<MultiChoice>Multi Choice</MultiChoice>
<Judge>Judge</Judge>
<Order>Sorting</Order>
<Number>Numerical</Number>
<Vote>Vote</Vote>
<Grade>Likert Scale</Grade>
<Score>Score</Score>
<Poll>Poll</Poll>
<Signed>Registered</Signed>
<UnSignIn>Unregistered</UnSignIn>
<SignFail>Sign Failed</SignFail>
<GroupOption>Team </GroupOption>
<ChoiceOption>Option </ChoiceOption>
<JudgeYes>Yes</JudgeYes>
<JudgeNo>No</JudgeNo>
<OrderOption>Option</OrderOption>
<VoteAgree>Yes</VoteAgree>
<VoteAgainst>No</VoteAgainst>
<VoteAbstain>Abstain</VoteAbstain>
<GradeOption>Option</GradeOption>
<LableExist>The data label already exists!</LableExist>
<prompt>Prompt</prompt>
<sumscore>Total Score</sumscore>
<avgscore>Average Score</avgscore>
<Shouldnumber>Participant</Shouldnumber>
<votingnumber>Voted</votingnumber>
<votingmean>Mean</votingmean>
<answer>Correct Answer</answer>
<correctno>Right Count</correctno>
<participate>Voter</participate>
<participate2>Voter</participate2>
<votingnumber2>Voted</votingnumber2>
<TitleSignIn>Please sign in.</TitleSignIn>
<TitleGroup>Please select team.</TitleGroup>
<TitleChoice>Please make your selection...</TitleChoice>
<TitleChoice_M>Please make your selection...</TitleChoice_M>
<TitleJudgeYesNo>Do you agree?</TitleJudgeYesNo>
<TitleJudgeTrueFalse>What is your opinion?</TitleJudgeTrueFalse>
<TitleJudgeRightWrong>What is your opinion?</TitleJudgeRightWrong>
<TitleOrder>Please make your sorting.</TitleOrder>
<TitleNumber>Please give your number.</TitleNumber>
<TitleVote>Do you agree?</TitleVote>
<TitleGrade>What is your opinion?</TitleGrade>
<TitleScore>Please give your score.</TitleScore>
<TitlePoll>Please make your polling.</TitlePoll>
<TitleText>Please input text</TitleText>
<VotingMiss>Not Voted</VotingMiss>
<VotingMiss2>Not Voted</VotingMiss2>
<OperatorSlide>To start the presentation please enter your name:</OperatorSlide>
<NotInputOperatorMsg>Please first insert a operator slide and then input operator's name to start vote.</NotInputOperatorMsg>
<groupAvgScore>Group Average</groupAvgScore>
<groupAvgScoreTableCol2>Score</groupAvgScoreTableCol2>
<GroupTitle>Group</GroupTitle>
<ScoreGroupAVG>AVG Score</ScoreGroupAVG>
<ScoreGroupDetailNo>Keypad No</ScoreGroupDetailNo>
<ScoreGroupDetailName>Name</ScoreGroupDetailName>
<ScoreGroupDetailScore>Score</ScoreGroupDetailScore>
<VoteMedian>Median</VoteMedian>
<VoteRange>Range</VoteRange>
</PPTOper>
<FrmScoreGroupRate>
<dgvRate_0>Group</dgvRate_0>
<dgvRate_1>Rate</dgvRate_1>
<dgvRate_2>Remove Max Count</dgvRate_2>
<dgvRate_3>Remove Min Count</dgvRate_3>
</FrmScoreGroupRate>
<Other>
<Unrestricted>No Limit</Unrestricted>
<PollNumber>ID</PollNumber>
<PollName>Name</PollName>
<PollCount>Count</PollCount>
<PollNumberStr>No.</PollNumberStr>
<PollCountStr>Ballot</PollCountStr>
<DogFailed>Dongle validation failure may disable the keypad response function.</DogFailed>
<AccessDBErr>Detected incomplete Microsoft Office Access, please try it again after reinstall the Access</AccessDBErr>
<BaseUsedByApp>Detected software has base station conflict with current use, please close other software first!</BaseUsedByApp>
<ChannelInterference>Detected channel interference, do you want to change your channel? Press "Y" to change the channel and "N" to stop prompt.</ChannelInterference>
<OrderGroupChartRank>Avg.\r\nRanking</OrderGroupChartRank>
<ToClosePresenter>1.Please tick off "Use Presenter View" before polling for office 2010 and above, otherwise it may cause interference in polling.
2.Please install the printer before export reports, otherwise it may cause error.</ToClosePresenter>
</Other>
<FrmOptionTextSelect>
<FrmOptionTextSelect>Option text setting</FrmOptionTextSelect>
<lblMsg>Please select option text to associate</lblMsg>
<dgvOptionText_0>Option</dgvOptionText_0>
<btnOK>OK</btnOK>
<btnCancel>Cancel</btnCancel>
</FrmOptionTextSelect>
<FrmRushAnswer>
<FrmRushAnswer>Rush Answer</FrmRushAnswer>
<lblTitle>Please prepare rush answer!</lblTitle>
<lblMsg1>In rush answer...</lblMsg1>
<lblMsg2>ID - responder success!</lblMsg2>
<lblMsg3>- responder success!</lblMsg3>
</FrmRushAnswer>
<FrmErrorMsg>
<FrmErrorMsg>Exception Tips</FrmErrorMsg>
<txtMsg>Program detects resource conflicts or exceptions.\r\n 1.Check to see if the other plug-ins by enabling conflicts caused\r\n 2.View Details\r\n 3.View the log, you can send the logs to technical support to help solve</txtMsg>
<btnShowDetail>Click here for more information</btnShowDetail>
<btnShowDetail_1>hide details</btnShowDetail_1>
<btnShowLog>View Log ...</btnShowLog>
<btnCancel>Cancel</btnCancel>
</FrmErrorMsg>
<FrmUploadServerXD>
<FrmUploadServerXD>Submit data to the server</FrmUploadServerXD>
<dgvQuestionPoint_0>No.</dgvQuestionPoint_0>
<dgvQuestionPoint_1>Slide Info</dgvQuestionPoint_1>
<dgvQuestionPoint_2>Knowledge Point</dgvQuestionPoint_2>
<lblSchool>School</lblSchool>
<lblTeacher>Teacher</lblTeacher>
<lblGrade>Grade</lblGrade>
<lblClass>Class</lblClass>
<lblCourse>Course</lblCourse>
<btnSubmit>Submit Data</btnSubmit>
<btnExit>Exit</btnExit>
<msgSubmitOK>Submit Success!</msgSubmitOK>
</FrmUploadServerXD>
<FrmVoteBarSmall>
<lblVoting>Voting..</lblVoting>
<lblStop>Stop</lblStop>
</FrmVoteBarSmall>
<PanelRankChart>
<gbxRankSet>Ranking Set</gbxRankSet>
<RankSetVoter>Participant Leaderboard Set</RankSetVoter>
<RankSetGroup>Team Leaderboard Set</RankSetGroup>
<RankSetMode1>Cumulative Forward</RankSetMode1>
<RankSetMode2>Previous Slide</RankSetMode2>
<RankSetMode3>Customize Selection</RankSetMode3>
<lblColShow>Rank By</lblColShow>
<lblRankCount>Show Top Count</lblRankCount>
<lblRankMode>Score Calculate</lblRankMode>
</PanelRankChart>
<FrmChartRankSet>
<FrmChartRankSet>Customize Selection Slide</FrmChartRankSet>
<lvwSlide_0>No.</lvwSlide_0>
<lvwSlide_1>Question</lvwSlide_1>
<btnOK>OK</btnOK>
<btnCancel>Cancel</btnCancel>
</FrmChartRankSet>
<FrmShowCol>
<FrmShowCol>Custom Display Fields</FrmShowCol>
<CustomCol>Custom..</CustomCol>
</FrmShowCol>
<ReportExcel>
<QuestionCount>Questions Count</QuestionCount>
<Votes>Votes</Votes>
<Others>Others</Others>
<OpratorHead>Operator:</OpratorHead>
<SynthesisNotExist>Synthesis is not available:</SynthesisNotExist>
</ReportExcel>
<PanelSlideCompChart>
<lblSlide1>Compare Slide 1</lblSlide1>
<lblSlide2>Compare Slide 2</lblSlide2>
</PanelSlideCompChart>
<PanelSlideCompVote>
<gbxSet>Vote Result</gbxSet>
<lblSlide1>Slide Yes</lblSlide1>
<lblSlide2>Slide No</lblSlide2>
<lblSlide3>Slide Abstain</lblSlide3>
<VoteYes>For</VoteYes>
<VoteNo>Against</VoteNo>
<VoteAbs>Abstain</VoteAbs>
<TableLine0> </TableLine0>
<TableLine1>Present</TableLine1>
<TableLine2> </TableLine2>
<TableLine3>Resolution No.</TableLine3>
<TableLine4>Not counted</TableLine4>
<TableLine5>Voted</TableLine5>
<TableLine6>For</TableLine6>
<TableLine7>Against</TableLine7>
<TableLine8>Abstain</TableLine8>
</PanelSlideCompVote>
<FrmImportSlideSelect>
<FrmImportSlideSelect>Import Question List</FrmImportSlideSelect>
<lblHelpZone1>Valid Number Range</lblHelpZone1>
<lblHelpZone2>Separate with ",", or continuous with"-", </lblHelpZone2>
<lblHelpZone3>E.G.:" 1, 2, 3, 11-20"</lblHelpZone3>
<btnOK>OK</btnOK>
<btnCancel>Cancel</btnCancel>
</FrmImportSlideSelect>
</Language>