Francais_0.xml
58.3 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
<?xml version="1.0" encoding="UTF-8"?>
<Language>
<APanel>
<cboVoteType_Text_0>Diapositive standard</cboVoteType_Text_0>
<cboVoteType_Text_1>Intégration de boîtiers</cboVoteType_Text_1>
<cboVoteType_Text_2>Assignation d'équipe</cboVoteType_Text_2>
<cboVoteType_Text_3>Choix simple</cboVoteType_Text_3>
<cboVoteType_Text_4>Choix multiple</cboVoteType_Text_4>
<cboVoteType_Text_5>Oui-Non</cboVoteType_Text_5>
<cboVoteType_Text_6>Hiérarchisation</cboVoteType_Text_6>
<cboVoteType_Text_7>Réponse chiffrée</cboVoteType_Text_7>
<cboVoteType_Text_8>Résolution</cboVoteType_Text_8>
<cboVoteType_Text_9>Echelle de satisfaction</cboVoteType_Text_9>
<cboVoteType_Text_10>Score</cboVoteType_Text_10>
<cboVoteType_Text_11>Sondage</cboVoteType_Text_11>
<lblInfo>Pas de diapositive sélectionnée</lblInfo>
</APanel>
<ucChartPara>
<gbxChartSet>HISTOGRAMMES</gbxChartSet>
<lblChartType>Type</lblChartType>
<lblChartLabel>Valeurs</lblChartLabel>
<lblChartShow>Affichage</lblChartShow>
<lblChartRate>Calcul %</lblChartRate>
<cboChartType_Text_0>Colonnes verticales</cboChartType_Text_0>
<cboChartType_Enum_0>ctColumn</cboChartType_Enum_0>
<cboChartType_Text_1>Colonnes horizont.</cboChartType_Text_1>
<cboChartType_Enum_1>ctBar</cboChartType_Enum_1>
<cboChartType_Text_2>Barres verticales</cboChartType_Text_2>
<cboChartType_Enum_2>ctColumnBox</cboChartType_Enum_2>
<cboChartType_Text_3>Barres horizontales</cboChartType_Text_3>
<cboChartType_Enum_3>ctBarBox</cboChartType_Enum_3>
<cboChartType_Text_4>Camenbert</cboChartType_Text_4>
<cboChartType_Enum_4>ctPie</cboChartType_Enum_4>
<cboChartType_Text_5>Texte</cboChartType_Text_5>
<cboChartType_Enum_5>ctText</cboChartType_Enum_5>
<cboChartLabel_Text_0>#</cboChartLabel_Text_0>
<cboChartLabel_Enum_0>En nombre</cboChartLabel_Enum_0>
<cboChartLabel_Text_1>0.0%</cboChartLabel_Text_1>
<cboChartLabel_Enum_1>En pourcentage</cboChartLabel_Enum_1>
<cboChartLabel_Text_2>#+0.0%</cboChartLabel_Text_2>
<cboChartLabel_Enum_2>Nombre + %</cboChartLabel_Enum_2>
<cboChartLabel_Text_3>Sans libellé</cboChartLabel_Text_3>
<cboChartLabel_Enum_3>ltNone</cboChartLabel_Enum_3>
<cboChartShow_Text_0>Fermeture du vote</cboChartShow_Text_0>
<cboChartShow_Enum_0>csStop</cboChartShow_Enum_0>
<cboChartShow_Text_1>Ouverture du vote</cboChartShow_Text_1>
<cboChartShow_Enum_1>csStart</cboChartShow_Enum_1>
<cboChartShow_Text_2>Manuel</cboChartShow_Text_2>
<cboChartShow_Enum_2>csHandle</cboChartShow_Enum_2>
<cboChartShow_Text_3>Masquer l'histogramme</cboChartShow_Text_3>
<cboChartShow_Enum_3>csHide</cboChartShow_Enum_3>
<cboChartRate_Text_0>Participants</cboChartRate_Text_0>
<cboChartRate_Enum_0>crParticipant</cboChartRate_Enum_0>
<cboChartRate_Text_1>Votants</cboChartRate_Text_1>
<cboChartRate_Enum_1>crResponse</cboChartRate_Enum_1>
<cboChartRate_Text_2>Nb de Oui-Non</cboChartRate_Text_2>
<cboChartRate_Enum_2>crVoteYesNo</cboChartRate_Enum_2>
<chk3D>Affichage 3D</chk3D>
<btnChartSetColor>Couleur des histogrammes</btnChartSetColor>
<lblChartOption>Format des histogrammes</lblChartOption>
<btnChartSet>Couleurs et polices</btnChartSet>
<lblDec>Décimales</lblDec>
<lblChartPointWidth>Epaisseur</lblChartPointWidth>
<chkShowItemText>Afficher le texte de la réponse</chkShowItemText>
<btnChartRefresh>Mettre à jour les histogrammes</btnChartRefresh>
</ucChartPara>
<ucKeypadPara>
<gbxKeypadSet>BOITIERS</gbxKeypadSet>
<lblSubmitMode>Mode définitif</lblSubmitMode>
<lblModifyMode>Mode "Revote"</lblModifyMode>
<cboSubmitMode_Text_0>Appui sur OK pour voter</cboSubmitMode_Text_0>
<cboSubmitMode_Text_1>Vote immédiat sans OK</cboSubmitMode_Text_1>
<cboModifyMode_Text_0>Possible</cboModifyMode_Text_0>
<cboModifyMode_Text_1>Impossible</cboModifyMode_Text_1>
<lblOptionMode>123 ou ABC</lblOptionMode>
<lblCheckUID>Vérification de l'ID :</lblCheckUID>
<cboCheckUID_Text_0>Désactivé</cboCheckUID_Text_0>
<cboCheckUID_Text_1>4 derniers car.</cboCheckUID_Text_1>
<cboCheckUID_Text_2>6 derniers car.</cboCheckUID_Text_2>
</ucKeypadPara>
<ucResponsePara>
<gbxNameAuthorize>VOTE</gbxNameAuthorize>
<rbtNameModeOn>Nominatif</rbtNameModeOn>
<rbtNameModeOff>Anonyme</rbtNameModeOff>
<lblAuthorize>Vote</lblAuthorize>
<lblFieldVoteRate>Poids des boîtiers</lblFieldVoteRate>
<cboCanVote_Text_0>Tous</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>REPONSES</gbxChoise>
<lblChoiseOption>Nombre de réponses</lblChoiseOption>
<lblChoiseLimit>Nombre de votes maxi.</lblChoiseLimit>
<chkIisN>Le participants doit voter le nombre maximum de choix </chkIisN>
<gbxScoreType>SCORES</gbxScoreType>
<rbtScoreAnswer>Bonne réponse</rbtScoreAnswer>
<rbtScoreItem>Points par réponse</rbtScoreItem>
<lblScoreRight>Vrai</lblScoreRight>
<lblScoreWrong>Faux</lblScoreWrong>
<lblCorrectAnswer>Bonne réponse(0 -> 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>Le plus petit score est zéro</chkZeroScore>
<dgvScore_0>No.</dgvScore_0>
<dgvScore_1>Score</dgvScore_1>
<dgvScore_2>No.</dgvScore_2>
<dgvScore_3>Score</dgvScore_3>
<lblCorrectAnswer>Bonne réponse</lblCorrectAnswer>
</PanelChoise>
<PanelGrade>
<gbxChoise>Réglages échelle de satisfaction</gbxChoise>
<lblChoiseOption>Nombre de réponses</lblChoiseOption>
</PanelGrade>
<PanelGroup>
<gbxChoise>Affecter à une équipe</gbxChoise>
<lblChoiseOption>Nombre d'équipes</lblChoiseOption>
<lblGroupName>Noms des équipes</lblGroupName>
</PanelGroup>
<PanelJudge>
<gbxScoreType>Calcul de Scores</gbxScoreType>
<lblChoiseOption>Nombre de réponses</lblChoiseOption>
<rbtScoreAnswer>Score by Right Answer</rbtScoreAnswer>
<rbtScoreItem>Score by Option Point Value</rbtScoreItem>
<lblScoreRight>Vrai</lblScoreRight>
<lblScoreWrong>Faux</lblScoreWrong>
<clstAnswer_0>1 Oui</clstAnswer_0>
<clstAnswer_1>2 Non</clstAnswer_1>
<dgvScore_0>No.</dgvScore_0>
<dgvScore_1>Score</dgvScore_1>
<chkZeroScore>Score inférieur compté zero</chkZeroScore>
<lblCorrectAnswer>Bonne Réponse</lblCorrectAnswer>
</PanelJudge>
<PanelOrder>
<gbxChoise>Réglage des réponses</gbxChoise>
<lblChoiseOption>Nombre</lblChoiseOption>
<lblChoiseLimit>Maximum autorisées</lblChoiseLimit>
<chkIisN>Le maximum est obligatoire pour que le vote soit valable</chkIisN>
<chkAABB>Autorise deux choix identiques</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>
<lblCorrectAnswer>Bonne réponse(0 Represents 10)</lblCorrectAnswer>
<lblScoreRight>Vrai</lblScoreRight>
<lblScoreWrong>Faux</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>
</PanelScore>
<PanelSignIn>
<gbxSignIn>Mode intégration</gbxSignIn>
<rbtSignInModePress>Appuyez sur une touche</rbtSignInModePress>
<rbtSignInModeCode>Input User ID</rbtSignInModeCode>
<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>Cette action supprimera les ID de boîtiers ou les numéros de série des participants, vous confirmez ?</ClearSignInCode>
</PanelSignIn>
<PanelVote>
<gbxVote>Type de vote</gbxVote>
<rbtItem3>Oui/Non/Abstention</rbtItem3>
<rbtItem2>Oui/Non</rbtItem2>
</PanelVote>
<PanelNumber>
<gbxScore>Réglages du mode numérique</gbxScore>
<lblMax>Limite maxi.</lblMax>
<lblMin>Limite mini.</lblMin>
<lblDecimal>Décimales</lblDecimal>
<gbxScoreType>Scores</gbxScoreType>
<lblCorrectAnswer>Bonne réponse</lblCorrectAnswer>
<lblScoreRight>Vrai</lblScoreRight>
<lblScoreWrong>Faux</lblScoreWrong>
<cboMax_Text_0>Sans limite</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>
<rbSunVoteARS>
<tabSunVoteARS>PowerVote PPT</tabSunVoteARS>
<grpHardware>Matériel</grpHardware>
<grpPPTEdit>Modifier la diapositive</grpPPTEdit>
<grpVoter>Participant</grpVoter>
<grpReport>Analyse et rapports</grpReport>
<grpData>Response Data</grpData>
<grpSystem>Réglages système et Aide</grpSystem>
<spbHardwareSet>Réglages du matériel</spbHardwareSet>
<spbHardwareSet_Tip>Matériel</spbHardwareSet_Tip>
<btnKeypadType>Types de boîtiers</btnKeypadType>
<btnKeypadCountSet>Numéro des boîtiers</btnKeypadCountSet>
<btnKeypadTest>Tester les boîtiers</btnKeypadTest>
<btnKeypadReplace>Remplacer un boîtier</btnKeypadReplace>
<btnChannelSet>Changer de canal</btnChannelSet>
<btnDeviceSet>Réglages du matériel</btnDeviceSet>
<chkKeypadOffNever>Interdit l'extinction</chkKeypadOffNever>
<chkKeypadBeep>Bip boîtier</chkKeypadBeep>
<btnKeypadShutdown>Eteindre la télécommande</btnKeypadShutdown>
<new>Ajouter une</new>
<PPTSlide>diapositive votante</PPTSlide>
<menuNewPPT_Tip>Ajouter une diapositive votante</menuNewPPT_Tip>
<btnSignIn>Intégration boîtiers</btnSignIn>
<menuGroup>Assigner à une équipe</menuGroup>
<btnGroupSex>Genre</btnGroupSex>
<btnGroupCustom>... Custom</btnGroupCustom>
<btnGroup1>1 Equipe</btnGroup1>
<btnGroup2>2 Equipes</btnGroup2>
<btnGroup3>3 Equipes</btnGroup3>
<btnGroup4>4 Equipes</btnGroup4>
<btnGroup5>5 Equipes</btnGroup5>
<btnGroup6>6 Equipes</btnGroup6>
<btnGroup7>7 Equipes</btnGroup7>
<btnGroup8>8 Equipes</btnGroup8>
<btnGroup9>9 Equipes</btnGroup9>
<btnGroup10>10 Equipes</btnGroup10>
<menuChoiseSingle>Choix simple</menuChoiseSingle>
<btnChoiceS1>1 Réponse</btnChoiceS1>
<btnChoiceS2>2 Réponses</btnChoiceS2>
<btnChoiceS3>3 Réponses</btnChoiceS3>
<btnChoiceS4>4 Réponses</btnChoiceS4>
<btnChoiceS5>5 Réponses</btnChoiceS5>
<btnChoiceS6>6 Réponses</btnChoiceS6>
<btnChoiceS7>7 Réponses</btnChoiceS7>
<btnChoiceS8>8 Réponses</btnChoiceS8>
<btnChoiceS9>9 Réponses</btnChoiceS9>
<btnChoiceS10>10 Réponses</btnChoiceS10>
<menuChoiseMulti>Choix Multiples</menuChoiseMulti>
<btnChoiceM2>2 Réponse</btnChoiceM2>
<btnChoiceM3>3 Réponses</btnChoiceM3>
<btnChoiceM4>4 Réponses</btnChoiceM4>
<btnChoiceM5>5 Réponses</btnChoiceM5>
<btnChoiceM6>6 Réponses</btnChoiceM6>
<btnChoiceM7>7 Réponses</btnChoiceM7>
<btnChoiceM8>8 Réponses</btnChoiceM8>
<btnChoiceM9>9 Réponses</btnChoiceM9>
<btnChoiceM10>10 Réponses</btnChoiceM10>
<menuJudge>Oui-Non</menuJudge>
<btnJudgeYesNo>Oui/non</btnJudgeYesNo>
<btnJudgeTrueFalse>Vrai/Faux</btnJudgeTrueFalse>
<btnJudgeRightWrong>Bon/mauvais</btnJudgeRightWrong>
<menuOrder>Hiérarchisation</menuOrder>
<btnOrder2>2 Réponses</btnOrder2>
<btnOrder3>3 Réponses</btnOrder3>
<btnOrder4>4 Réponses</btnOrder4>
<btnOrder5>5 Réponses</btnOrder5>
<btnOrder6>6 Réponses</btnOrder6>
<btnOrder7>7 Réponses</btnOrder7>
<btnOrder8>8 Réponses</btnOrder8>
<btnOrder9>9 Réponses</btnOrder9>
<btnOrder10>10 Réponses</btnOrder10>
<btnNumber>Numérique</btnNumber>
<btnText>Texte</btnText>
<btnVote>Vote</btnVote>
<menuGrade>Echelle de satisfaction</menuGrade>
<btnGradeAgree2>A/B/C/D</btnGradeAgree2>
<btnGradeAgree31>A/B/C/D/E</btnGradeAgree31>
<btnGradeAgree32>Tout à fait d'accord/D'accord/Ne sait pas/Pas d'accord/Pas du tout d'accord</btnGradeAgree32>
<btnGradeLevel3>Fort/Moyen/Faible</btnGradeLevel3>
<btnGradeNo3>+/0/-</btnGradeNo3>
<btnGradeNo5>++/+/0/-/--</btnGradeNo5>
<btnGradeGood4>Excellent/Bon/Moyen/Mauvais</btnGradeGood4>
<btnGradeSatisfy4>Très satisfait/Satisfait/Egal/Insatisfait/Très insatisfait</btnGradeSatisfy4>
<btnGradeCustom>Customisation</btnGradeCustom>
<btnScore>Score</btnScore>
<btnPoll>Interrogation</btnPoll>
<btnAutoTest>AutoTest</btnAutoTest>
<btnInport>Importer une liste de Questions</btnInport>
<btnInport2>Importer une liste de Questions</btnInport2>
<menuInsertObject>Inserer un objet</menuInsertObject>
<menuInsertObject_Tip>Inserer une question</menuInsertObject_Tip>
<menuChart>Graphe</menuChart>
<btnChartColumn>Vertical/colonne</btnChartColumn>
<btnChartBar>Horizontal/barre</btnChartBar>
<btnChartCamenbert>Camenbert</btnChartCamenbert>
<btnChartColumn3D>Vertical/colonne</btnChartColumn3D>
<btnChartBar3D>Horizontal</btnChartBar3D>
<btnChartCamenbert3D>3D Camenbert</btnChartCamenbert3D>
<btnTime>Compte à rebours (secondes)</btnTime>
<btnDueCount>Participants</btnDueCount>
<btnVoterCount>Votes</btnVoterCount>
<btnMean>Mean</btnMean>
<menuVoteCount>Compteur de votes</menuVoteCount>
<btnVoteCountNum>Number</btnVoteCountNum>
<btnVoteCountRate>Percentage</btnVoteCountRate>
<btnVoteCountNumRate>Numer+Percentage</btnVoteCountNumRate>
<menuCorrectAnswer>Bonne réponse</menuCorrectAnswer>
<btnCorrectAnswer>Answer Text</btnCorrectAnswer>
<btnCorrectShape>Checkmark</btnCorrectShape>
<btnCorrectShapeFile>Checkmark Picture..</btnCorrectShapeFile>
<menuRigntCount>Right Count</menuRigntCount>
<btnRightCountNum>Number</btnRightCountNum>
<btnRightCountRate>Percentage</btnRightCountRate>
<btnRightCountNumRate>Numer+Percentage</btnRightCountNumRate>
<btnScoreJudge>Judge Points</btnScoreJudge>
<btnScoreAvg>Average Score</btnScoreAvg>
<btnScoreSum>Total Score</btnScoreSum>
<spbtnClearData>Effacer les votes ,</spbtnClearData>
<spbtnClearData_Tip>Cliquer pour effacer les votes sur la diapositive</spbtnClearData_Tip>
<btnClearCurrent>Diapositive sélectionnée</btnClearCurrent>
<btnClearAll>Toutes les diapositives</btnClearAll>
<Hide>Masquer</Hide>
<Panel>Onglet Paramètres</Panel>
<Show>Afficher</Show>
<tgbShowPanel_Tip>Masquer</tgbShowPanel_Tip>
<btnSetVoterCount>Type et numéros de boitiers </btnSetVoterCount>
<menuVoter>Participants</menuVoter>
<menuVoter_Tip>Voter Settings</menuVoter_Tip>
<btnVoterImport>Importer une liste de participants</btnVoterImport>
<btnVoterExport>Exporter la liste de participants</btnVoterExport>
<btnVoterView>Voir la liste de participants</btnVoterView>
<chkVoterEnabled>Utiliser la liste de participants</chkVoterEnabled>
<menuAnalyze>Analyse des votes</menuAnalyze>
<menuAnalyze_Tip>Rapports Excel</menuAnalyze_Tip>
<btnRateCorrect>Taux de réussite</btnRateCorrect>
<btnRateOption>Selection Rate</btnRateOption>
<btnAnalyzeSlideOption>Comparaison des réponses</btnAnalyzeSlideOption>
<btnAnalyzeSlideCross>Croisement de 2 questions</btnAnalyzeSlideCross>
<btnAnalyzeSlideGroup>Tri par populations</btnAnalyzeSlideGroup>
<btnRankVoter>Podium des Participants</btnRankVoter>
<btnRankGroup>Podium des Equipes</btnRankGroup>
<btnRankScore>Classement par scores</btnRankScore>
<btnRankPoll>Poll Ranking</btnRankPoll>
<btnPollRank>Poll Ranking</btnPollRank>
<btnRankChartGroupMVP>Group MVP</btnRankChartGroupMVP>
<menuReport>Rapports</menuReport>
<menuReport_Tip>Rapport Excel</menuReport_Tip>
<btnVoterDetail>Par Participant</btnVoterDetail>
<btnSlideResult>Par Question</btnSlideResult>
<btnReportCorrectRate>Taux de bonnes réponses</btnReportCorrectRate>
<btnReportQuestion>Résultats par Question</btnReportQuestion>
<btnReportVoter>Résultats par Participant</btnReportVoter>
<btnReportVoterDetail>Résultats détaillés par Participant</btnReportVoterDetail>
<btnReportScore>Résultat personnel détaillé</btnReportScore>
<btnDataExport>Sauvegarder</btnDataExport>
<btnDataImport>Restaurer</btnDataImport>
<btnUpload>Data Upload</btnUpload>
<btnSystemSet>Réglages</btnSystemSet>
<btnSystemSet_Tip>Réglages</btnSystemSet_Tip>
<btnHelp>Aide</btnHelp>
<btnHelp_Tip>Ouvrir l'aide</btnHelp_Tip>
<btnAbout>A propos</btnAbout>
<btnAbout_Tip>A propos</btnAbout_Tip>
<Man>Homme</Man>
<Woman>Femme</Woman>
<WarningInfo1>cette opération va effacer la liste en cours, vous confirmez ?</WarningInfo1>
<Warning>Attention</Warning>
<ShutWarning>System forbids auto shut off, forcible poweroff or not?</ShutWarning>
<ClearCurrWarning>Cette opération va sauvegarder et effacer les votes de la diapositive sélectionnée; vous confirmez ?</ClearCurrWarning>
<ClearAllWarning>Cette opération va sauvegarder et effacer les votes de toutes les diapositives; vous confirmez ?</ClearAllWarning>
<successisderiveds>Sauvegarde des votes réussie</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>
</rbSunVoteARS>
<FrmAboutUs>
<FrmAboutUs>About Us</FrmAboutUs>
<lblName>Soft Name:</lblName>
<lblSysSoftName>PowerVote for PPT</lblSysSoftName>
<lblVer>Version:</lblVer>
<lblSysVer>32bit(Beta)</lblSysVer>
<lblVerNo>Revision:</lblVerNo>
<lblVerNoInfo>1.2.3.0</lblVerNoInfo>
<lblEmail>Mail Box:</lblEmail>
<lblEmailInfo>support@powervote.com</lblEmailInfo>
<lblService>Sales Tel: +33 1 55 90 00 90</lblService>
<lblSEmail>Email:</lblSEmail>
<lblSupport>Support Tel: +33 1 55 90 00 90</lblSupport>
<lblSIEmailInfo>sales@powervote.com</lblSIEmailInfo>
<lblSite>Website:</lblSite>
<lblSiteInfo>http://www.powervote.com</lblSiteInfo>
<lblCopyRight>Copyright@</lblCopyRight>
<lblCopyRightInfo>la generale multimedia - PowerVote.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>Nombre</rbtChartDataLabel1>
<rbtChartDataLabel2>Pourcentage</rbtChartDataLabel2>
<rbtChartDataLabel3>Numer,Pourcentage</rbtChartDataLabel3>
<rbtChartDataLabel4>Cacher</rbtChartDataLabel4>
<groupBox1>Type</groupBox1>
<rbtChartType1>Camenbert</rbtChartType1>
<rbtChartType3D1>Camenbert 3D</rbtChartType3D1>
<rbtChartType2>Vertical</rbtChartType2>
<rbtChartType3D2>Vertical 3D</rbtChartType3D2>
<rbtChartType3>Horizontal</rbtChartType3>
<rbtChartType3D3>Horizontal 3D</rbtChartType3D3>
<lblInfo>Note:Double-cliquez dans le graphe pour afficher plein écran</lblInfo>
<btnClose>Close</btnClose>
<btnShowFull>Full Screen Display (Double Click on Chart)</btnShowFull>
<lblLegentCorrect>Vrai</lblLegentCorrect>
<lblLegentWrong>Faux</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>Aspect</groupBox1>
<rbtChartType1>Camenbert</rbtChartType1>
<rbtChartType3D1>3D Camenbert</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>Miroir</FrmAnalyzeSlide>
<lblSlide>Veuillez sélectionner deux questions</lblSlide>
<lvwSlide_1>Question</lvwSlide_1>
<gbxChartLabel>Libellé réponse</gbxChartLabel>
<rbtChartDataLabel1>Quantité</rbtChartDataLabel1>
<rbtChartDataLabel2>Pourcentage</rbtChartDataLabel2>
<rbtChartDataLabel3>Qté,Percentage</rbtChartDataLabel3>
<rbtChartDataLabel4>Masquer</rbtChartDataLabel4>
<groupBox1>Aspect</groupBox1>
<rbtChartType1>Camenbert</rbtChartType1>
<rbtChartType3D1>Camenbert 3D</rbtChartType3D1>
<rbtChartType2>Vertical-Cylind.</rbtChartType2>
<rbtChartType3D2>Vertical-Rectang.</rbtChartType3D2>
<rbtChartType3>Horizontal-Cylind.</rbtChartType3>
<rbtChartType3D3>Horizontal-Rectan.</rbtChartType3D3>
<lblInfo>Note:Double-cliquez dans le graphe pour afficher plein écran</lblInfo>
<btnClose>Fermer</btnClose>
<btnShowFull>Affichage plein écran (Double-cliquez dans le graphe)</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>Aspect</groupBox1>
<rbtChartType1>Camenbert</rbtChartType1>
<rbtChartType3D1>3D Camenbert</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 Bonne réponse</btnSelectCorrect>
<btnOK>OK</btnOK>
<btnCancel>Cancel</btnCancel>
<Correct>Correct</Correct>
<CorrectAnswer>Bonne réponse</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>Réglages du matériel</FrmDeviceSet>
<tpgBaseInfo>Réglages de la base</tpgBaseInfo>
<tpgKeypadInfo>Info boîtier</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>Match 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>OccuCamenbertd 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>Match Mode</MatchModeLab>
<MatchMode1>Match Mode</MatchMode1>
<MatchMode2>Free Mode</MatchMode2>
<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>Test boîtier</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>Modèle de boîtier</FrmKeypadType>
<lblKeypadType>Modèle de boîtier</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>Rapports</FrmReport>
<tpgVoteDetail>Par Participant</tpgVoteDetail>
<dgvVoteDetail_T_Index>Diapositive n°</dgvVoteDetail_T_Index>
<dgvVoteDetail_TT_ID>Type de diapositive</dgvVoteDetail_TT_ID>
<dgvVoteDetail_T_Note>Question</dgvVoteDetail_T_Note>
<dgvVoteDetail_V_KeypadID>Boîtier n°</dgvVoteDetail_V_KeypadID>
<dgvVoteDetail_R_Result>Reponse</dgvVoteDetail_R_Result>
<dgvVoteDetail_R_Score>Score</dgvVoteDetail_R_Score>
<dgvVoteDetail_R_Correct>Correct</dgvVoteDetail_R_Correct>
<dgvVoteDetail_R_Speed>Vitesse de réponse</dgvVoteDetail_R_Speed>
<dgvVoteDetail_R_Time>Temps de réponse</dgvVoteDetail_R_Time>
<tpgVoteResult>Par Question</tpgVoteResult>
<dgvVoteResult_T_Index>Diapositive n°</dgvVoteResult_T_Index>
<dgvVoteResult_TT_ID>Type de diapositive</dgvVoteResult_TT_ID>
<dgvVoteResult_T_Title>Titre</dgvVoteResult_T_Title>
<dgvVoteResult_VoterCount>Votes</dgvVoteResult_VoterCount>
<dgvVoteResult_SubmitCount>Compteur</dgvVoteResult_SubmitCount>
<dgvVoteResult_VotedCount>Votes reçus</dgvVoteResult_VotedCount>
<dgvVoteResult_T_Note>Question et réponses</dgvVoteResult_T_Note>
<btnExport>Export</btnExport>
<btnExit>Sortir</btnExit>
</FrmReport>
<FrmSystemSet>
<FrmSystemSet>Réglages système</FrmSystemSet>
<tpgSystemSet>Langue</tpgSystemSet>
<gbxLanguage>System Language</gbxLanguage>
<labLanguage>Language</labLanguage>
<labFont>Polices</labFont>
<tpgOprate>Contrôle du vote</tpgOprate>
<gbxAutoPage>Afficher automatiquement les histogrammes</gbxAutoPage>
<chkTimeOut>A la fin du compte à rebours</chkTimeOut>
<chkAllVoted>Quand tous les votes sont reçus</chkAllVoted>
<lblDelayTime>Limiter la durée du vote (secondes)</lblDelayTime>
<gbxRemoteControl>Télécommande de contrôle</gbxRemoteControl>
<chkRemoteControlEnabled>Activer la télécommande 50R/40R </chkRemoteControlEnabled>
<tpgSoundSet>Sons</tpgSoundSet>
<lvwSound_0>Action</lvwSound_0>
<lvwSound_1>Fichier</lvwSound_1>
<lvwSound_Item_0>Pendant le vote</lvwSound_Item_0>
<lvwSound_Item_1>A chaque vote reçu</lvwSound_Item_1>
<btnSoundBrowse>Browse...</btnSoundBrowse>
<btnSoundPlay>Ecouter</btnSoundPlay>
<btnSoundStop>Stop</btnSoundStop>
<btnOK>OK</btnOK>
<btnCancel>Annuler</btnCancel>
<gbAddinType>Mode de lancement de PowerVote pour PPT</gbAddinType>
<rbAuto>Dans PowerPoint</rbAuto>
<rbShotcut>Par raccourci</rbShotcut>
<lblInfo>Permission Administrateur pour modifier</lblInfo>
<lblChartShow>Affichage</lblChartShow>
<cboChartShow_Text_0>Fermeture du vote</cboChartShow_Text_0>
<cboChartShow_Enum_0>csStop</cboChartShow_Enum_0>
<cboChartShow_Text_1>Ouverture du vote</cboChartShow_Text_1>
<cboChartShow_Enum_1>csStart</cboChartShow_Enum_1>
<cboChartShow_Text_2>Manuel</cboChartShow_Text_2>
<cboChartShow_Enum_2>csHandle</cboChartShow_Enum_2>
<cboChartShow_Text_3>Cacher les histogrammes</cboChartShow_Text_3>
<cboChartShow_Enum_3>csHide</cboChartShow_Enum_3>
<gbDemo>Demo Mode</gbDemo>
<chkDemo>Activer le mode Demo</chkDemo>
<grbChart>HISTOGRAMMES</grbChart>
<tpgSetAll>Réglages par défaut</tpgSetAll>
<grbVoteSet>VOTE</grbVoteSet>
<chkNameMode>Noms</chkNameMode>
<cboNameMode_Text_0>Nominatif</cboNameMode_Text_0>
<cboNameMode_Text_1>Anonyme</cboNameMode_Text_1>
<gbKeySet>BOITIERS</gbKeySet>
<chkSubmitMode>Submit Mode:</chkSubmitMode>
<cboSubmitMode_Text_0>Press Ok To Submit</cboSubmitMode_Text_0>
<cboSubmitMode_Text_1>Auto-submit</cboSubmitMode_Text_1>
<chkModifyMode>Mode "Revote"</chkModifyMode>
<cboModifyMode_Text_0>Possible</cboModifyMode_Text_0>
<cboModifyMode_Text_1>Impossible</cboModifyMode_Text_1>
<chkOptionMode>123 ou ABC</chkOptionMode>
<cboOptionMode_Text_0>1234</cboOptionMode_Text_0>
<cboOptionMode_Text_1>ABCD</cboOptionMode_Text_1>
<gbChartSet>HISTOGRAMMES</gbChartSet>
<chkChartType>Type:</chkChartType>
<chkLableType>Valeur:</chkLableType>
<chkChartShow>Affichage:</chkChartShow>
<chkCharRate>Calcul % :</chkCharRate>
<chk3DShow>Aspect:</chk3DShow>
<cboShowType_Text_0>2D</cboShowType_Text_0>
<cboShowType_Text_1>3D</cboShowType_Text_1>
<btnChartColor>Couleurs et polices</btnChartColor>
<cboChartType_Text_0>Colonnes verticales</cboChartType_Text_0>
<cboChartType_Enum_0>ctColumn</cboChartType_Enum_0>
<cboChartType_Text_1>Colonnes Horizont.</cboChartType_Text_1>
<cboChartType_Enum_1>ctBar</cboChartType_Enum_1>
<cboChartType_Text_2>Barres Verticales</cboChartType_Text_2>
<cboChartType_Enum_2>ctColumnBox</cboChartType_Enum_2>
<cboChartType_Text_3>Barres Horizontales</cboChartType_Text_3>
<cboChartType_Enum_3>ctBarBox</cboChartType_Enum_3>
<cboChartType_Text_4>Camenbert</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>Sans libellé</cboChartLabel_Text_3>
<cboChartLabel_Enum_3>ltNone</cboChartLabel_Enum_3>
<cboChartShow_Text_0>Fermeture du vote</cboChartShow_Text_0>
<cboChartShow_Enum_0>csStop</cboChartShow_Enum_0>
<cboChartShow_Text_1>Ouverture du vote</cboChartShow_Text_1>
<cboChartShow_Enum_1>csStart</cboChartShow_Enum_1>
<cboChartShow_Text_2>Manuel</cboChartShow_Text_2>
<cboChartShow_Enum_2>csHandle</cboChartShow_Enum_2>
<cboChartRate_Text_0>Participants</cboChartRate_Text_0>
<cboChartRate_Enum_0>crParticipant</cboChartRate_Enum_0>
<cboChartRate_Text_1>Votants</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>
<btnSetAll>Appliquer</btnSetAll>
<Prompt>prompt</Prompt>
<GlobalSetSucceed>Changement des réglages effectué</GlobalSetSucceed>
<chkDec>Décimales:</chkDec>
<gbxAutoVote>Lancement automatique du vote</gbxAutoVote>
<chkAutoVote>Dès l'affichage de la diapositive</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>Insertions sur les diapositives votantes</gbxInsertSlideObject>
</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>Montre la Bonne réponse (A)</tsbCorrectAnswer_Text_Show>
<tsbCorrectAnswer_ToolTipText_Show>Montre la Bonne réponse (A)</tsbCorrectAnswer_ToolTipText_Show>
<tsbCorrectAnswer_Text_Hide>Masque Bonne réponse (A)</tsbCorrectAnswer_Text_Hide>
<tsbCorrectAnswer_ToolTipText_Hide>Masque Bonne réponse (A)</tsbCorrectAnswer_ToolTipText_Hide>
<tsbRushAnswer_Text>Lance la réponse la plus rapide (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>Podium participants</tsmRankVoter>
<tsmRankGroup>Podium équipes</tsmRankGroup>
<tsmRankScore>Classement selon les scores</tsmRankScore>
<tsmRankPoll>Classement selon les votes</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>Mode Demo</FrmVoteDemoInfo>
<lblInfo>Mode Demo</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>Sign code 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>
</FrmVoteDetail>
<FrmVoterList>
<FrmVoterList>Liste des Participants</FrmVoterList>
<lblFieldSignInCode>Code d'enregistrement valide</lblFieldSignInCode>
<lblInfo>Prompt</lblInfo>
<btnInsert>Insert</btnInsert>
<btnDelete>Delete</btnDelete>
<btnSave>Enregistrer</btnSave>
<btnImport>Importer</btnImport>
<btnExport>Exporter</btnExport>
<btnClose>Fermer</btnClose>
<dgvVoterList_0>ID boîtiers</dgvVoterList_0>
<dgvVoterList_1>Nom</dgvVoterList_1>
<dgvVoterList_2>Affectation à une équipe</dgvVoterList_2>
<dgvVoterList_3>Code d'enregistrement</dgvVoterList_3>
<ExcelTitle>Liste de Participants</ExcelTitle>
<LoadSuccess>Fin du chrgement des données</LoadSuccess>
<ImportStart>Début de l'importation des données</ImportStart>
<GetExcelData>Récuérer les données Excel</GetExcelData>
<ImportSuccess>Import terminé, please set Show Name Field</ImportSuccess>
<SaveSuccess>Enregistrement terminé</SaveSuccess>
<KeypadFormat>L'ID du boîtier doit être situé entre 1 et 9999</KeypadFormat>
<KeypadRepeat>Cet ID a déjà été utilisé</KeypadRepeat>
<lblFieldSignInCode>Sign-In Code Effective Field</lblFieldSignInCode>
<KeyIDFormat>Le numéro du boîtier doit être un chiffre</KeyIDFormat>
<KeyIDNull>Le numéro du boîtier ne peut être vide</KeyIDNull>
<KeyIDRep>Le numéro du boîtier doit être unique (numéro dèjà utilisé)</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>Keypad Vote Rate Field</lblFieldVoteRate>
<lblFieldShowName>Show Name Field</lblFieldShowName>
<Unsetting>Not set</Unsetting>
</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>Réglage des histogrammes</FrmAllChartSet>
<chkChartColor>Couleur des barres</chkChartColor>
<lvwColorSet_0>No.</lvwColorSet_0>
<gbxFontSet>Polices</gbxFontSet>
<lblFontObject>Paramètres de :</lblFontObject>
<cboFontObject_Text_0>Libellé des réponses</cboFontObject_Text_0>
<cboFontObject_Text_1>Data Label</cboFontObject_Text_1>
<chkFontName>Police</chkFontName>
<chkFontSize>Taille</chkFontSize>
<chkFontColor>Couleur</chkFontColor>
<chkFontType>Type</chkFontType>
<cboFontType_Text_0>Normal</cboFontType_Text_0>
<cboFontType_Text_1>Gras</cboFontType_Text_1>
<cboFontType_Text_2>Italique</cboFontType_Text_2>
<btnOK>Appliquer à tout</btnOK>
<btnCancel>Annuler</btnCancel>
<Prompt>prompt</Prompt>
<GlobalSetSucceed>Réglages mis à jour</GlobalSetSucceed>
<chkFontBold>Gras</chkFontBold>
<chkFontItalic>Italique</chkFontItalic>
<chkChartColorAll>Couleur unique</chkChartColorAll>
</FrmAllChartSet>
<PPTEdit>
<SignIn>Enregistré</SignIn>
<UnSignIn>Non-enregistré</UnSignIn>
</PPTEdit>
<PPTOper>
<SignIn>Roll Call</SignIn>
<Group>Team Assignment</Group>
<Choice>Choice</Choice>
<SingleChoice>Single Choice</SingleChoice>
<MultiChoice>Multi Choice</MultiChoice>
<Judge>Avis</Judge>
<Order>Sorting</Order>
<Number>Numerical</Number>
<Vote>Vote</Vote>
<Grade>Likert Scale</Grade>
<Score>Score</Score>
<Poll>Poll</Poll>
<Signed>Enregistrés</Signed>
<UnSignIn>Libres</UnSignIn>
<SignFail>Sign Failed</SignFail>
<GroupOption>Equipe </GroupOption>
<ChoiceOption>Option </ChoiceOption>
<JudgeYes>Oui</JudgeYes>
<JudgeNo>Non</JudgeNo>
<OrderOption>Option</OrderOption>
<VoteAgree>Oui</VoteAgree>
<VoteAgainst>Non</VoteAgainst>
<VoteAbstain>Abstention</VoteAbstain>
<GradeOption>Option</GradeOption>
<LableExist>Le libellé existe déjà</LableExist>
<prompt>Prompt</prompt>
<sumscore>Score total</sumscore>
<avgscore>Score moyen</avgscore>
<Shouldnumber>Participant</Shouldnumber>
<votingnumber>Voted</votingnumber>
<votingmean>Mean</votingmean>
<answer>Bonne réponse</answer>
<correctno>Right Count</correctno>
<participate>Votes</participate>
<participate2>Votes</participate2>
<votingnumber2>Voted</votingnumber2>
<TitleSignIn>Veuillez vous enregistrer</TitleSignIn>
<TitleGroup>Choisissez votre équipe</TitleGroup>
<TitleChoice>Question...</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>
</PPTOper>
<FrmScoreGroupRate>
<dgvRate_0>Group</dgvRate_0>
<dgvRate_1>Rate</dgvRate_1>
</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>
</Other>
<FrmOptionTextSelect>
<FrmOptionTextSelect>Option text setting</FrmOptionTextSelect>
<lblMsg>Please select option text to associate</lblMsg>
<dgvOptionText_0>Réponse</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>
</ReportExcel>
<PanelSlideCompChart>
<lblSlide1>Compare Slide 1</lblSlide1>
<lblSlide2>Compare Slide 2</lblSlide2>
</PanelSlideCompChart>
<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>