Portuguese.xml
57.1 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
<?xml version="1.0" encoding="UTF-8"?>
<Language>
<APanel>
<cboVoteType_Text_0>Slide Comum</cboVoteType_Text_0>
<cboVoteType_Text_1>Registro</cboVoteType_Text_1>
<cboVoteType_Text_2>Agrupamento</cboVoteType_Text_2>
<cboVoteType_Text_3>Escolha Única</cboVoteType_Text_3>
<cboVoteType_Text_4>Múltipla Escolha</cboVoteType_Text_4>
<cboVoteType_Text_5>Crítica</cboVoteType_Text_5>
<cboVoteType_Text_6>Classificação de Prioridade</cboVoteType_Text_6>
<cboVoteType_Text_7>Numérico</cboVoteType_Text_7>
<cboVoteType_Text_8>Votar</cboVoteType_Text_8>
<cboVoteType_Text_9>Escala de Likert</cboVoteType_Text_9>
<cboVoteType_Text_10>Pontuação</cboVoteType_Text_10>
<cboVoteType_Text_11>Apuração</cboVoteType_Text_11>
<lblInfo>Nenhum Slide Selecionado</lblInfo>
</APanel>
<ucChartPara>
<gbxChartSet>Configurações do gráfico</gbxChartSet>
<lblChartType>Tipo do Gráfico</lblChartType>
<lblChartLabel>Rótulo</lblChartLabel>
<lblChartShow>Quadro</lblChartShow>
<lblChartRate>Coeficiente</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>Retang Vertical</cboChartType_Text_2>
<cboChartType_Enum_2>ctColumnBox</cboChartType_Enum_2>
<cboChartType_Text_3>Retang Horizontal</cboChartType_Text_3>
<cboChartType_Enum_3>ctBarBox</cboChartType_Enum_3>
<cboChartType_Text_4>Pizza</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>Sem Rótulo</cboChartLabel_Text_3>
<cboChartLabel_Enum_3>ltNone</cboChartLabel_Enum_3>
<cboChartShow_Text_0>At Encerramento da votação</cboChartShow_Text_0>
<cboChartShow_Enum_0>csStop</cboChartShow_Enum_0>
<cboChartShow_Text_1>At Abertura da Votação</cboChartShow_Text_1>
<cboChartShow_Enum_1>csStart</cboChartShow_Enum_1>
<cboChartShow_Text_2>Operação Manual</cboChartShow_Text_2>
<cboChartShow_Enum_2>csHandle</cboChartShow_Enum_2>
<cboChartShow_Text_3>Ocultar Chart</cboChartShow_Text_3>
<cboChartShow_Enum_3>csHide</cboChartShow_Enum_3>
<cboChartRate_Text_0>Divisor é o atendimento</cboChartRate_Text_0>
<cboChartRate_Enum_0>crParticipant</cboChartRate_Enum_0>
<cboChartRate_Text_1>Divisor é contagem</cboChartRate_Text_1>
<cboChartRate_Enum_1>crResponse</cboChartRate_Enum_1>
<chk3D>Visualização 3D</chk3D>
<btnChartSetColor>Cores do Gráfico</btnChartSetColor>
<lblChartOption>Opção de Formato</lblChartOption>
<btnChartSet>Configurações de Gráfico</btnChartSet>
<lblDec>Decimais</lblDec>
<lblChartPointWidth>Ponto Largura</lblChartPointWidth>
<chkChartValueIsVotedCount>Mostrar os keypads votados no gráfico</chkChartValueIsVotedCount>
</ucChartPara>
<ucKeypadPara>
<gbxKeypadSet>Parâmetro do Keypad</gbxKeypadSet>
<lblSubmitMode>Modo Submeter</lblSubmitMode>
<lblModifyMode>Modo Modificar</lblModifyMode>
<cboSubmitMode_Text_0>Pressione Ok Para Submeter</cboSubmitMode_Text_0>
<cboSubmitMode_Text_1>Enviar automaticamente</cboSubmitMode_Text_1>
<cboModifyMode_Text_0>Passível de Revisão</cboModifyMode_Text_0>
<cboModifyMode_Text_1>Não Passível de Revisão</cboModifyMode_Text_1>
<lblOptionMode>Opção de Formatação</lblOptionMode>
</ucKeypadPara>
<ucResponsePara>
<gbxNameAuthorize>Configurações de Votação</gbxNameAuthorize>
<rbtNameModeOn>Nomeado</rbtNameModeOn>
<rbtNameModeOff>Anônimo</rbtNameModeOff>
<lblAuthorize>Votante</lblAuthorize>
<cboCanVote_Text_0>Todos</cboCanVote_Text_0>
<cboCanVote_Enum_0>cvAll</cboCanVote_Enum_0>
<cboCanVote_Text_1>Especificar o Votante</cboCanVote_Text_1>
<cboCanVote_Enum_1>cvPerson</cboCanVote_Enum_1>
<cboCanVote_Text_2>Especificar Escolha</cboCanVote_Text_2>
<cboCanVote_Enum_2>cvTopic</cboCanVote_Enum_2>
</ucResponsePara>
<PanelChoise>
<gbxChoise>Configurações de Opção</gbxChoise>
<lblChoiseOption>Número de Opção</lblChoiseOption>
<lblChoiseLimit>Limite de Respostas</lblChoiseLimit>
<chkIisN>Obrigatório Informar o Limite de Resposta Completa para Enviar</chkIisN>
<gbxScoreType>Configurações de Pontuação</gbxScoreType>
<rbtScoreAnswer>Pontuação por Resposta Correta</rbtScoreAnswer>
<rbtScoreItem>Pontuação por opção Valor do Ponto</rbtScoreItem>
<lblScoreRight>Correto</lblScoreRight>
<lblScoreWrong>Errado</lblScoreWrong>
<lblCorrectAnswer>Resposta Correta (0 Representa 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>Pontuação</dgvScore_1>
<chkZeroScore>Pontuação Menos Contada como Zero</chkZeroScore>
<dgvScore_0>No.</dgvScore_0>
<dgvScore_1>Pontuação</dgvScore_1>
<dgvScore_2>No.</dgvScore_2>
<dgvScore_3>Pontuação</dgvScore_3>
<lblCorrectAnswer>Resposta Correta</lblCorrectAnswer>
</PanelChoise>
<PanelGrade>
<gbxChoise>Configurações de Avaliação</gbxChoise>
<lblChoiseOption>Número de Opção</lblChoiseOption>
</PanelGrade>
<PanelGroup>
<gbxChoise>Configurações de Agrupamento</gbxChoise>
<lblChoiseOption>Número de Grupo</lblChoiseOption>
</PanelGroup>
<PanelJudge>
<gbxScoreType>Configurações de Pontuação</gbxScoreType>
<lblChoiseOption>Número de opção</lblChoiseOption>
<rbtScoreAnswer>Pontuação por Resposta Correta</rbtScoreAnswer>
<rbtScoreItem>Pontuação por Valor do Ponto</rbtScoreItem>
<lblScoreRight>Correto</lblScoreRight>
<lblScoreWrong>Errado</lblScoreWrong>
<clstAnswer_0>1 Sim</clstAnswer_0>
<clstAnswer_1>2 Não</clstAnswer_1>
<dgvScore_0>No.</dgvScore_0>
<dgvScore_1>Pontuação</dgvScore_1>
<chkZeroScore>Pontuação Menos Contada como Zero</chkZeroScore>
<lblCorrectAnswer>Resposta Correta</lblCorrectAnswer>
</PanelJudge>
<PanelOrder>
<gbxChoise>Configurações de Opção</gbxChoise>
<lblChoiseOption>Número de Opção</lblChoiseOption>
<lblChoiseLimit>Limite de Resposta</lblChoiseLimit>
<chkIisN>Obrigatório Informar o Limite de Resposta Completa para Enviar</chkIisN>
<chkAABB>Permitir Opções Duplicadas</chkAABB>
<dgvScore_0>No.</dgvScore_0>
<dgvScore_1>Pontuação</dgvScore_1>
<dgvScore_2>No.</dgvScore_2>
<dgvScore_3>Pontuação</dgvScore_3>
<gbxScoreType>Configurações de Pontuação</gbxScoreType>
<rbtScoreAnswer>Pontuação por Resposta Correta</rbtScoreAnswer>
<rbtScoreItem>Pontuação por Valor de Ponto</rbtScoreItem>
<lblCorrectAnswer>Resposta Correta(0 Representa 10)</lblCorrectAnswer>
<lblScoreRight>Correto</lblScoreRight>
<lblScoreWrong>Errado</lblScoreWrong>
</PanelOrder>
<PanelPoll>
<gbxChoise>Configurações da Enquete</gbxChoise>
<lblChoiseOption>Candidato</lblChoiseOption>
<lblChoiseLimit>Limite de Contagem</lblChoiseLimit>
<chkCanRepeat>Permitir Duplicação</chkCanRepeat>
<btnPollList>Lista de Candidatos</btnPollList>
</PanelPoll>
<PanelScore>
<gbxScore>Configurações de Pontuação</gbxScore>
<lblMax>Máx.</lblMax>
<lblMin>Min.</lblMin>
<lblDecimal>Casas Decimais</lblDecimal>
<gbxScoreCount>Configurações de Pontuação Total</gbxScoreCount>
<lblScoreRemoveMax>Remover Número de Alta Pontuação</lblScoreRemoveMax>
<lblScoreRemoveMin>Remover Número de Baixa Pontuação</lblScoreRemoveMin>
<lblScoreCountDec>Pontuação de Decimais</lblScoreCountDec>
<chkShowAvg>Pontuação Média</chkShowAvg>
<chkShowTotal>Pontuação Total</chkShowTotal>
<cboMax_Text_0>Sem Limites</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>Sem Limites</cboMin_Text_0>
<cboMin_Text_1>0</cboMin_Text_1>
<cboDec_Text_0>Sem Limites</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>Sem Limites</Unrestricted>
<CheckMessage>Limite Superior Deve Ser Maior do Que o Limite Inferior</CheckMessage>
<lblJudgeRate>Juiz Pesos Campo</lblJudgeRate>
</PanelScore>
<PanelSignIn>
<gbxSignIn>modo de registro</gbxSignIn>
<rbtSignInModePress>pressione uma tecla</rbtSignInModePress>
<rbtSignInModeCode>código de entrada</rbtSignInModeCode>
<gbxItemText>Texto de status de Entrada</gbxItemText>
</PanelSignIn>
<PanelVote>
<gbxVote>modo de votação</gbxVote>
<rbtItem3>Sim/Não/Abster-se</rbtItem3>
<rbtItem2>Sim/Nâo</rbtItem2>
</PanelVote>
<PanelNumber>
<gbxScore>Configurações de Valor Numérico</gbxScore>
<lblMax>Limite Superior</lblMax>
<lblMin>Limite Inferior</lblMin>
<lblDecimal>Casas Decimais</lblDecimal>
<gbxScoreType>Configurações de Pontuação</gbxScoreType>
<lblCorrectAnswer>Resposta Correta</lblCorrectAnswer>
<lblScoreRight>Correto</lblScoreRight>
<lblScoreWrong>Errado</lblScoreWrong>
<cboMax_Text_0>Sem 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>Sem Limite</cboMin_Text_0>
<cboMin_Text_1>0</cboMin_Text_1>
<cboDec_Text_0>Sem Limite</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>Pontuações Mais Baixas Não Permitem Mais do Que Pontuações Cap</CheckMessage>
<Unrestricted>Sem Limite</Unrestricted>
</PanelNumber>
<rbSunVoteARS>
<tabSunVoteARS>SunVote ARS PPT</tabSunVoteARS>
<grpHardware>Hardware</grpHardware>
<grpPPTEdit>Editar Slide</grpPPTEdit>
<grpVoter>Participante</grpVoter>
<grpReport>Análise E Relatório</grpReport>
<grpData>Dados de Resposta</grpData>
<grpSystem>Configuração do sistema e Ajuda</grpSystem>
<spbHardwareSet>Configuração do Hardware</spbHardwareSet>
<spbHardwareSet_Tip>Configuração do Hardware</spbHardwareSet_Tip>
<btnKeypadType>Tipo do Keypad</btnKeypadType>
<btnKeypadCountSet>Número do Keypad</btnKeypadCountSet>
<btnKeypadTest>Teste do Keypad</btnKeypadTest>
<btnKeypadReplace>Trocar o Keypad</btnKeypadReplace>
<btnChannelSet>Alterar o Canal</btnChannelSet>
<btnDeviceSet>Configturação do Hardware</btnDeviceSet>
<chkKeypadOffNever>Proibir Desligamento Automático</chkKeypadOffNever>
<chkKeypadBeep>Bip do Keypad</chkKeypadBeep>
<btnKeypadShutdown>Desligamento Remoto</btnKeypadShutdown>
<new>Inserir</new>
<PPTSlide>Slide</PPTSlide>
<menuNewPPT_Tip>Inserir Slides Modelo</menuNewPPT_Tip>
<btnSignIn>Registro</btnSignIn>
<menuGroup>Agrupamento</menuGroup>
<btnGroupSex>Sexo</btnGroupSex>
<btnGroupCustom>... Personalizado</btnGroupCustom>
<btnGroup1>1 Time</btnGroup1>
<btnGroup2>2 Times</btnGroup2>
<btnGroup3>3 Times</btnGroup3>
<btnGroup4>4 Times</btnGroup4>
<btnGroup5>5 Times</btnGroup5>
<btnGroup6>6 Times</btnGroup6>
<btnGroup7>7 Times</btnGroup7>
<btnGroup8>8 Times</btnGroup8>
<btnGroup9>9 Times</btnGroup9>
<btnGroup10>10 Times</btnGroup10>
<menuChoiseSingle>Escolha Simples</menuChoiseSingle>
<btnChoiceS1>1 Opção</btnChoiceS1>
<btnChoiceS2>2 Opções</btnChoiceS2>
<btnChoiceS3>3 Opções</btnChoiceS3>
<btnChoiceS4>4 Opções</btnChoiceS4>
<btnChoiceS5>5 Opções</btnChoiceS5>
<btnChoiceS6>6 Opções</btnChoiceS6>
<btnChoiceS7>7 Opções</btnChoiceS7>
<btnChoiceS8>8 Opções</btnChoiceS8>
<btnChoiceS9>9 Opções</btnChoiceS9>
<btnChoiceS10>10 Opções</btnChoiceS10>
<menuChoiseMulti>Múltipla Escolha</menuChoiseMulti>
<btnChoiceM2>2 Opções</btnChoiceM2>
<btnChoiceM3>3 Opções</btnChoiceM3>
<btnChoiceM4>4 Opções</btnChoiceM4>
<btnChoiceM5>5 Opções</btnChoiceM5>
<btnChoiceM6>6 Opções</btnChoiceM6>
<btnChoiceM7>7 Opções</btnChoiceM7>
<btnChoiceM8>8 Opções</btnChoiceM8>
<btnChoiceM9>9 Opções</btnChoiceM9>
<btnChoiceM10>10 Opções</btnChoiceM10>
<menuJudge>Julgar</menuJudge>
<btnJudgeYesNo>Sim/Não</btnJudgeYesNo>
<btnJudgeTrueFalse>Verdadeiro/Falso</btnJudgeTrueFalse>
<btnJudgeRightWrong>Correto/Errado</btnJudgeRightWrong>
<menuOrder>Classificação de Prioridade</menuOrder>
<btnOrder2>2 Opções</btnOrder2>
<btnOrder3>3 Opções</btnOrder3>
<btnOrder4>4 Opções</btnOrder4>
<btnOrder5>5 Opções</btnOrder5>
<btnOrder6>6 Opções</btnOrder6>
<btnOrder7>7 Opções</btnOrder7>
<btnOrder8>8 Opções</btnOrder8>
<btnOrder9>9 Opções</btnOrder9>
<btnOrder10>10 Opções</btnOrder10>
<btnNumber>Numérico</btnNumber>
<btnVote>Votação</btnVote>
<menuGrade>Escala de Likert</menuGrade>
<btnGradeAgree2>A/B/C/D</btnGradeAgree2>
<btnGradeAgree31>A/B/C/D/E</btnGradeAgree31>
<btnGradeAgree32>Concordo totalmente/concordo/incerto/Discordo/Discordo totalmente</btnGradeAgree32>
<btnGradeLevel3>Alto/Médio/Baixo</btnGradeLevel3>
<btnGradeNo3>+/0/-</btnGradeNo3>
<btnGradeNo5>++/+/0/-/--</btnGradeNo5>
<btnGradeGood4>Excelente/bom/médio/Pobre</btnGradeGood4>
<btnGradeSatisfy4>Muito satisfatório/Satisfeito/Nem/Insatisfeito/Muito Insatisfeito</btnGradeSatisfy4>
<btnGradeCustom>Personalizado...</btnGradeCustom>
<btnScore>Pontuação</btnScore>
<btnPoll>Enquete</btnPoll>
<btnAutoTest>AutoTeste</btnAutoTest>
<btnInport>Importar Lista de Questões..</btnInport>
<menuInsertObject>Inserir Objeto</menuInsertObject>
<menuInsertObject_Tip>Inserir Pergunta</menuInsertObject_Tip>
<menuChart>Gráfico</menuChart>
<btnChartColumn>Vertical</btnChartColumn>
<btnChartBar>Horizontal</btnChartBar>
<btnChartPie>Pizza</btnChartPie>
<btnChartColumn3D>3D Vertical</btnChartColumn3D>
<btnChartBar3D>3D Horizontal</btnChartBar3D>
<btnChartPie3D>Pizza 3D</btnChartPie3D>
<btnTime>Temporizador</btnTime>
<btnDueCount>Participante</btnDueCount>
<btnVoterCount>Votante</btnVoterCount>
<btnMean>Significado</btnMean>
<menuVoteCount>Contador de Respostas (Votados)</menuVoteCount>
<btnVoteCountNum>Número</btnVoteCountNum>
<btnVoteCountRate>Percentagem</btnVoteCountRate>
<btnVoteCountNumRate>Número+Percentagem</btnVoteCountNumRate>
<btnCorrectAnswer>Resposta Correta</btnCorrectAnswer>
<menuRigntCount>Contagem Direita</menuRigntCount>
<btnRightCountNum>Número</btnRightCountNum>
<btnRightCountRate>Percentagem</btnRightCountRate>
<btnRightCountNumRate>Número+Percentagem</btnRightCountNumRate>
<btnScoreJudge>Pontos do Julgamento</btnScoreJudge>
<btnScoreAvg>Pontuação Média</btnScoreAvg>
<btnScoreSum>Pontuação Total</btnScoreSum>
<spbtnClearData>Redefinir ,</spbtnClearData>
<spbtnClearData_Tip>Clique para Desmarcar Respostas no Slide Atual</spbtnClearData_Tip>
<btnClearCurrent>Slide Atual</btnClearCurrent>
<btnClearAll>Todos os Slides</btnClearAll>
<Hide>Ocultar</Hide>
<Panel>Painel de Configurações</Panel>
<Show>Mostrar</Show>
<tgbShowPanel_Tip>Ocultar Painel</tgbShowPanel_Tip>
<btnSetVoterCount>Número do Keypad-hardware</btnSetVoterCount>
<menuVoter>Participantes</menuVoter>
<menuVoter_Tip>Configurações do votante</menuVoter_Tip>
<btnVoterImport>Importar a Lista de Participantes</btnVoterImport>
<btnVoterExport>Exportar a Lista de Participantes</btnVoterExport>
<btnVoterView>Ver a Lista de Participantes</btnVoterView>
<chkVoterEnabled>Usar a Lista de Participantes</chkVoterEnabled>
<menuAnalyze>Análise dos Dados</menuAnalyze>
<menuAnalyze_Tip>Relatórios Excel</menuAnalyze_Tip>
<btnRateCorrect>Taxa Correta</btnRateCorrect>
<btnRateOption>Taxa de Seleção</btnRateOption>
<btnAnalyzeSlideOption>Opções de Comparação</btnAnalyzeSlideOption>
<btnAnalyzeSlideCross>Comparação Cruzada de 2 Slides</btnAnalyzeSlideCross>
<btnAnalyzeSlideGroup>Comparação Demográfica</btnAnalyzeSlideGroup>
<btnRankVoter>Tabela de Classificação dos Participantes</btnRankVoter>
<btnRankGroup>Tabela de Classificação dos Times</btnRankGroup>
<btnRankScore>Ranking de Pontuação</btnRankScore>
<btnRankPoll>Ranking da Enquete</btnRankPoll>
<btnPollRank>Ranking da Enquete</btnPollRank>
<menuReport>Relatório</menuReport>
<menuReport_Tip>Relatórios Excel</menuReport_Tip>
<btnVoterDetail>Resultados por Participante</btnVoterDetail>
<btnSlideResult>Resultados por Pergunta</btnSlideResult>
<btnReportCorrectRate>Taxa correta</btnReportCorrectRate>
<btnReportQuestion>Resultados por Perguntas</btnReportQuestion>
<btnReportVoter>Resultados por participantes</btnReportVoter>
<btnReportVoterDetail>Resultados Detalhe</btnReportVoterDetail>
<btnReportScore>Realização Pessoal e Detalhe</btnReportScore>
<btnDataExport>Backup</btnDataExport>
<btnDataImport>Restaurar</btnDataImport>
<btnUpload>Upload de Dados</btnUpload>
<btnSystemSet>Configurações do Sistema</btnSystemSet>
<btnSystemSet_Tip>Configurações do Sistema</btnSystemSet_Tip>
<btnHelp>Ajuda</btnHelp>
<btnHelp_Tip>Abrir Arquivo de Ajuda</btnHelp_Tip>
<btnAbout>Sobre</btnAbout>
<btnAbout_Tip>Sobre</btnAbout_Tip>
<Man>Masculino</Man>
<Woman>Feminino</Woman>
<WarningInfo1>Esta operação irá limpar lista de participantes atual, você quer continuar?</WarningInfo1>
<Warning>Aviso</Warning>
<ShutWarning>Sistema proíbe desligamento automático, forçado ou não?</ShutWarning>
<ClearCurrWarning>Isto vai limpar dados de resposta do slide atual e salvá-lo, você quer continuar?</ClearCurrWarning>
<ClearAllWarning>Isto irá limpar todos os dados de resposta dos slides e salvá-los, você quer continuar?</ClearAllWarning>
<successisderiveds>Backup de dados de resposta feito com sucesso!</successisderiveds>
<btnImportResponseMessage>Esta operação irá abranger os dados atuais, você quer continuar?</btnImportResponseMessage>
<prompt>Aviso</prompt>
<Documents>Arquivo restaurado!</Documents>
<RestoreError>Perda de Dados Torna Possível a Restauração</RestoreError>
<btnSlideCompChart>opções Comparação</btnSlideCompChart>
</rbSunVoteARS>
<FrmAboutUs>
<FrmAboutUs>Sobre</FrmAboutUs>
<lblName>Nome do Software:</lblName>
<lblSysSoftName>SunVote Audience Response System(Standard)</lblSysSoftName>
<lblVer>Versão:</lblVer>
<lblSysVer>32bit(Beta)</lblSysVer>
<lblVerNo>Revisão:</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>Changsha SunVote Limited.All rights Reserved</lblCopyRightInfo>
</FrmAboutUs>
<FrmAnalyzeRateCorrect>
<FrmAnalyzeRateCorrect>Taxa Correta</FrmAnalyzeRateCorrect>
<lvwSlide_0>No.</lvwSlide_0>
<lvwSlide_1>Pergunta</lvwSlide_1>
<gbxChartLabel>Rótulo de gráfico</gbxChartLabel>
<rbtChartDataLabel1>Número</rbtChartDataLabel1>
<rbtChartDataLabel2>Percentagem</rbtChartDataLabel2>
<rbtChartDataLabel3>Número,Percentagem</rbtChartDataLabel3>
<rbtChartDataLabel4>Ocultar</rbtChartDataLabel4>
<groupBox1>Tipo de Gráfico</groupBox1>
<rbtChartType1>Pizza</rbtChartType1>
<rbtChartType3D1>Pizza 3D</rbtChartType3D1>
<rbtChartType2>Vertical</rbtChartType2>
<rbtChartType3D2>Vertical 3D</rbtChartType3D2>
<rbtChartType3>Horizontal</rbtChartType3>
<rbtChartType3D3>Horizontal 3D</rbtChartType3D3>
<lblInfo>Nota: Clique Duas Vezes no Gráfico para Exibição em Tela Cheia</lblInfo>
<btnClose>Fechar</btnClose>
<btnShowFull>Exibição em Tela Cheia (Duplo Clique no Gráfico)</btnShowFull>
<lblLegentCorrect>Correto</lblLegentCorrect>
<lblLegentWrong>Errado</lblLegentWrong>
</FrmAnalyzeRateCorrect>
<FrmAnalyzeRateOption>
<FrmAnalyzeRateOption>Taxa de Seleção</FrmAnalyzeRateOption>
<lvwSlide_0>No.</lvwSlide_0>
<lvwSlide_1>Pergunta</lvwSlide_1>
<lvwOptionRate_0>Opção de Resultado</lvwOptionRate_0>
<lvwOptionRate_1>Contagem/Percentual</lvwOptionRate_1>
<gbxChartLabel>Rótulo Numérico</gbxChartLabel>
<rbtChartDataLabel1>Número</rbtChartDataLabel1>
<rbtChartDataLabel2>Percentagem</rbtChartDataLabel2>
<rbtChartDataLabel3>Número,Percentagem</rbtChartDataLabel3>
<rbtChartDataLabel4>Ocultar</rbtChartDataLabel4>
<groupBox1>Tipo de Gráfico</groupBox1>
<rbtChartType1>Pizza</rbtChartType1>
<rbtChartType3D1>Pizza 3D</rbtChartType3D1>
<rbtChartType2>Vertical</rbtChartType2>
<rbtChartType3D2>Vertical 3D</rbtChartType3D2>
<rbtChartType3>Horizontal</rbtChartType3>
<rbtChartType3D3>Horizontal 3D</rbtChartType3D3>
<lblInfo>Nota: Clique Duas Vezes no Gráfico para Exibição em Tela Cheia</lblInfo>
<btnClose>Fechar</btnClose>
<btnShowFull>Exibição em Tela Cheia (Duplo Clique no Gráfico)</btnShowFull>
</FrmAnalyzeRateOption>
<FrmAnalyzeSlide>
<FrmAnalyzeSlide>Opções de Comparação</FrmAnalyzeSlide>
<lblSlide>Por Favor Escolha Duas Questeões</lblSlide>
<lvwSlide_1>Pergunta</lvwSlide_1>
<gbxChartLabel>Rótulo do Gráfico</gbxChartLabel>
<rbtChartDataLabel1>Número</rbtChartDataLabel1>
<rbtChartDataLabel2>Percentagem</rbtChartDataLabel2>
<rbtChartDataLabel3>Número,Percentagem</rbtChartDataLabel3>
<rbtChartDataLabel4>Ocultar</rbtChartDataLabel4>
<groupBox1>Tipo de Gráfico</groupBox1>
<rbtChartType1>Pizza</rbtChartType1>
<rbtChartType3D1>Pizza 3D</rbtChartType3D1>
<rbtChartType2>Vertical</rbtChartType2>
<rbtChartType3D2>Vertical 3D</rbtChartType3D2>
<rbtChartType3>Horizontal</rbtChartType3>
<rbtChartType3D3>Horizontal 3D</rbtChartType3D3>
<lblInfo>Nota: Clique Duas Vezes no Gráfico para Exibição em Tela Cheia</lblInfo>
<btnClose>Fechar</btnClose>
<btnShowFull>Exibição em Tela Cheia (Duplo Clique no Gráfico)</btnShowFull>
</FrmAnalyzeSlide>
<FrmAnalyzeSlideGroup>
<FrmAnalyzeSlideGroup>Comparação Demográfica</FrmAnalyzeSlideGroup>
<lvwSlide_0>No.</lvwSlide_0>
<lvwSlide_1>Escolha um Slide de Pergunta</lvwSlide_1>
<lvwGroup_0>No</lvwGroup_0>
<lvwGroup_1>Informação do Grupo</lvwGroup_1>
<lblGroup>Escolha um Grupo Demográfico</lblGroup>
<gbxChartLabel>Rótulo do Gráfico</gbxChartLabel>
<rbtChartDataLabel1>Número</rbtChartDataLabel1>
<rbtChartDataLabel2>Percentagem</rbtChartDataLabel2>
<rbtChartDataLabel3>Número, Percentagem</rbtChartDataLabel3>
<rbtChartDataLabel4>Ocultar</rbtChartDataLabel4>
<groupBox1>Tipo do Gráfico</groupBox1>
<rbtChartType1>Pizza</rbtChartType1>
<rbtChartType3D1>Pizza 3D</rbtChartType3D1>
<rbtChartType2>Vertical</rbtChartType2>
<rbtChartType3D2>Vertical 3D</rbtChartType3D2>
<rbtChartType3>Horizontal</rbtChartType3>
<rbtChartType3D3>Horizontal 3D</rbtChartType3D3>
<lblInfo>Nota: Clique Duas Vezes no Gráfico para Exibição em Tela Cheia</lblInfo>
<btnInvert>Opção de Contraste Reverso</btnInvert>
<btnClose>Fechar</btnClose>
<btnShowFull>Exibição em Tela Cheia (Duplo Clique no Gráfico)</btnShowFull>
</FrmAnalyzeSlideGroup>
<FrmRankScore>
<FrmRankScore>Ranking de Pontuação</FrmRankScore>
<dgvRank_0>Ranking</dgvRank_0>
<dgvRank_1>Objeto de Avaliação</dgvRank_1>
<dgvRank_2>Pontuação Média</dgvRank_2>
<dgvRank_3>Pontuação Total</dgvRank_3>
<chkSelectAllSlide>Selecionar Tudo - Pergunta</chkSelectAllSlide>
<lvwSlide_0/>
<lvwSlide_1>Pergunta</lvwSlide_1>
<lblRankItem>Classificação do Item</lblRankItem>
<clbRankItem_0>Pontuação Média</clbRankItem_0>
<clbRankItem_1>Pontuação Total</clbRankItem_1>
<gbxOrderBy>Estatísticas</gbxOrderBy>
<rbtByScoreAvg>Pontuação Média</rbtByScoreAvg>
<rbtByScoreSum>Pontuação Total</rbtByScoreSum>
<rbtByScore>Pontuação</rbtByScore>
<rbtByCorrectRate>Taxa Correta</rbtByCorrectRate>
<chkBySpeed>Velocidade</chkBySpeed>
<btnShowFull>Exibição em Tela Cheia</btnShowFull>
<btnExport>Relatório Excel</btnExport>
<btnClose>Fechar</btnClose>
</FrmRankScore>
<FrmRankVoter>
<FrmRankVoter>Tabela de Classificação dos Participantes</FrmRankVoter>
<dgvRank_0>Ranking</dgvRank_0>
<dgvRank_1>No. do Keypad</dgvRank_1>
<dgvRank_2>Nome</dgvRank_2>
<dgvRank_3>Pontuação</dgvRank_3>
<ChkSelectAllSlide>Selecionar Tudo-Pergunta</ChkSelectAllSlide>
<lvwSlide_0>No.</lvwSlide_0>
<lvwSlide_1>Pergunta</lvwSlide_1>
<lblVoterListField>Campo de Lista de Votantes</lblVoterListField>
<clbRosterField_0>Keypad</clbRosterField_0>
<clbRosterField_1>Nome</clbRosterField_1>
<clbRosterField_2>Departamento</clbRosterField_2>
<lblRankItem>Ranking do Item</lblRankItem>
<clbSortField_0>Pontuação</clbSortField_0>
<clbSortField_1>Questões Respondidas Corretamente</clbSortField_1>
<clbSortField_2>Velocidade de Resposta</clbSortField_2>
<gbxOrderBy>Estatísticas</gbxOrderBy>
<rbtByScore>Pontuação</rbtByScore>
<rbtByCorrectRate>Taxa Correta</rbtByCorrectRate>
<rbtByCorrectCount>Contagem Correta</rbtByCorrectCount>
<chkBySpeed>Velocidade</chkBySpeed>
<chkBySpeed2>Velocidade(correto)</chkBySpeed2>
<chkByNoAnswered>não tentado</chkByNoAnswered>
<btnShowFull>Exibição em Tela Cheia</btnShowFull>
<btnExport>Relatório do Excel</btnExport>
<btnClose>Fechar</btnClose>
<KeypadID>Keypad</KeypadID>
</FrmRankVoter>
<FrmCanVoteSlideResult>
<FrmCanVoteSlideResult>Votante - Opção Especificada</FrmCanVoteSlideResult>
<lblSlide>Slide</lblSlide>
<lvwSlide_0>No.</lvwSlide_0>
<lvwSlide_1>Assunto do Slide</lvwSlide_1>
<lblOption>Apenas Permitido ao Votante que seleciona a opção assinalada para Enviar</lblOption>
<lvwOption_0>No.</lvwOption_0>
<lvwOption_1>Opção</lvwOption_1>
<btnSelectAll>Selecionar Tudo</btnSelectAll>
<btnSelectCorrect>Selecione a Resposta Correta</btnSelectCorrect>
<btnOK>OK</btnOK>
<btnCancel>Cancelar</btnCancel>
<Correct>Correta</Correct>
<CorrectAnswer>Resposta Correta</CorrectAnswer>
<UpdatePrompt>Alterando as informações do votante, irá limpar as respostas no slide atual, você quer continuar?</UpdatePrompt>
<UpdateSave>A Autorização do Votante foi modificada, gostaria de salvá-la?</UpdateSave>
<rbtOr>Contém Opções</rbtOr>
<rbtAnd>Igualdade de Opções</rbtAnd>
</FrmCanVoteSlideResult>
<FrmCanVoteVoterGroup>
<FrmCanVoteVoterGroup>Lista de nomes especificada pelo votante</FrmCanVoteVoterGroup>
<lblSlide>Lista de Nomes</lblSlide>
<lblGroup>Apenas Permitido ao Votante que seleciona a opção assinalada para Enviar</lblGroup>
<lvwOption_0>No.</lvwOption_0>
<lvwSlide_0>No.</lvwSlide_0>
<lvwSlide_1>Campo Nomes</lvwSlide_1>
<lvwGroup_0>Campo Valores</lvwGroup_0>
<btnSelectAll>Selecionar Tudo</btnSelectAll>
<btnOK>OK</btnOK>
<btnCancel>Cancelar</btnCancel>
<UpdatePrompt>Alterando as informações do votante, irá limpar as respostas no slide atual, você quer continuar?</UpdatePrompt>
<UpdateSave>A Autorização do Votante foi modificada, gostaria de salvá-la?</UpdateSave>
<Correct>Correta</Correct>
<CorrectAnwser>Resposta Correta</CorrectAnwser>
</FrmCanVoteVoterGroup>
<FrmChannelReplace>
<FrmChannelReplace>Alterar o Canal da Base</FrmChannelReplace>
<lblChannelNowLB>Canal Atual</lblChannelNowLB>
<lblKeypadNewLB>Alterar Para</lblKeypadNewLB>
<btnOK>Alterar Canal</btnOK>
<btnCancel>Fechar</btnCancel>
<ChangeSuccess>Canal Alterado</ChangeSuccess>
<prompt>Aviso</prompt>
</FrmChannelReplace>
<FrmDeviceSet>
<FrmDeviceSet>Configurações de Hardware</FrmDeviceSet>
<tpgBaseInfo>Configurações da Estação Base</tpgBaseInfo>
<tpgKeypadInfo>Informações do Keypad</tpgKeypadInfo>
<dgvBaseList_0>Lista da Estação Base</dgvBaseList_0>
<dgvBaseList_1>ID</dgvBaseList_1>
<dgvBaseList_2>Canal</dgvBaseList_2>
<dgvBaseList_3>IP</dgvBaseList_3>
<dgvBaseList_4>Tipo</dgvBaseList_4>
<dgvBaseList_5>Serial No.</dgvBaseList_5>
<dgvBaseList_6>Modo de Trabalho</dgvBaseList_6>
<dgvBaseList_7>Estado da Conexão</dgvBaseList_7>
<lblBaseConnectType>Tipo da Conexão</lblBaseConnectType>
<rbxBaseConnectUSB>USB</rbxBaseConnectUSB>
<rbxBaseConnectTCP>TCP/IP</rbxBaseConnectTCP>
<chkMultiBase>Ativar Múltiplas Estações Base</chkMultiBase>
<btnBaseConnect>Reconectar</btnBaseConnect>
<btnBaseDisconnect>Desconectar</btnBaseDisconnect>
<btnClose>Fechar</btnClose>
<Succeed>Sucesso</Succeed>
<CheckMessage>Mais do Que Uma Estação Base Deve Ser UsadA no modo de Múltiplas Estações Base</CheckMessage>
<CheckChannelFormat>Erro de Formato de Canal</CheckChannelFormat>
<CheckChannelRange>canal de Configuração Está Fora de Alcance</CheckChannelRange>
<CheckChannelExist>Canal Ocupado, por favor utilize outro.</CheckChannelExist>
<CheckIPFormat>Formato de IP Incorreto</CheckIPFormat>
<CheckIPExist>Proibir IP Repetido.</CheckIPExist>
<gbxKeypadInfo>Informação do Keypad</gbxKeypadInfo>
<gbxKeypadID>ID do Keypad ID</gbxKeypadID>
<gbxKeypadSN>No. de Série do Keypad</gbxKeypadSN>
<gbxHelpKeypadInfoRead>Ajuda</gbxHelpKeypadInfoRead>
<lblHelpKeypadInfoRead1>Função: Ler Informação do Keypad</lblHelpKeypadInfoRead1>
<lblHelpKeypadInfoRead2>Passo 1: Clique em "Iniciar Leitura das Informações do Keypad"</lblHelpKeypadInfoRead2>
<lblHelpKeypadInfoRead3>Passo 2: Mantenha Pressionado o Botão "Ok" no Keypad Até o Sucesso da Operação no Software</lblHelpKeypadInfoRead3>
<btnKeypadInfoRead>Ler Informações do Keypad</btnKeypadInfoRead>
<btnKeypadInfoRead_Start>Iniciar a Leitura</btnKeypadInfoRead_Start>
<btnKeypadInfoRead_Stop>Parar a Leitura</btnKeypadInfoRead_Stop>
<MatchModeLab>Modo de Trabalho</MatchModeLab>
<MatchMode1>Modo de Jogo</MatchMode1>
<MatchMode2>Modo Livre</MatchMode2>
<MatchMode3>Modo Automático</MatchMode3>
</FrmDeviceSet>
<FrmKeypadCountSet>
<FrmKeypadCountSet>Número do Keypad</FrmKeypadCountSet>
<lblMemberNumber>Número do Votante</lblMemberNumber>
<lblHelpKeypadZone1>Intervalo Válido do Keypad</lblHelpKeypadZone1>
<lblHelpKeypadZone2>Separado com ",", ou contínuo com"-", </lblHelpKeypadZone2>
<lblHelpKeypadZone3>P.E.:" 1, 2, 3, 11-20"</lblHelpKeypadZone3>
<btnOK>OK</btnOK>
<btnCancel>Cancelar</btnCancel>
<Message1>Erro de formato de intervalo de entrada, por favor repita.</Message1>
<Message2>ID do keypad fora de alcance.</Message2>
<Message3>Número de Keypads é menor do que o número de votantes, por favor repita.</Message3>
<SaveKeypadCountSet>Lista atual habilitada, a operação irá desativar a lista, deseja continuar?</SaveKeypadCountSet>
</FrmKeypadCountSet>
<FrmKeypadReplace>
<FrmKeypadReplace>Substitua o Keypad</FrmKeypadReplace>
<lblKeypadIDOld>ID do Keypad ID a ser substituído</lblKeypadIDOld>
<lblKeypadIDNew>Substituir por</lblKeypadIDNew>
<btnOK>Substituir o Keypad</btnOK>
<btnCancel>Cancelar</btnCancel>
<ReplaceSuccess>Keypad foi Substituído</ReplaceSuccess>
<ReplaceMassage0>O ID do Keypad Substituto e o ID do Keypad Original ID devem ser diferentes</ReplaceMassage0>
<ReplaceMassage1>Keypad Substituto Inválido</ReplaceMassage1>
<ReplaceMassage2>Keypad em Uso</ReplaceMassage2>
<prompt>Aviso</prompt>
</FrmKeypadReplace>
<FrmKeypadShutdown>
<FrmKeypadShutdown>Desligamento Remoto</FrmKeypadShutdown>
<btnKeypadShutdown>Iniciar Desligamento</btnKeypadShutdown>
<btnClose>Fechar</btnClose>
<txtInfo>Desligando</txtInfo>
<txtInfo1>Desligando</txtInfo1>
<txtInfo2>Desligamento Semont ocorreu com sucesso</txtInfo2>
</FrmKeypadShutdown>
<FrmKeypadTest>
<FrmKeypadTest>Teste de Keypad</FrmKeypadTest>
<lblOnline>Online:</lblOnline>
<lblOffline>Offline:</lblOffline>
<lblELV>Corrente Fraca:</lblELV>
<lblBaseList>Lista de Estação Base</lblBaseList>
<lblTestType>Tipo de Teste</lblTestType>
<cobTestType_Text_0>Teste de Alimentação On Line</cobTestType_Text_0>
<cobTestType_Text_1>Teste de Votação Automática</cobTestType_Text_1>
<btnKeypadTest>Teste</btnKeypadTest>
<btnKeypadTest_Start>Iniciar Teste</btnKeypadTest_Start>
<btnKeypadTest_Stop>Parar Teste</btnKeypadTest_Stop>
<cobBaseList>Todas as Estações Base</cobBaseList>
<btnExit>Sair</btnExit>
</FrmKeypadTest>
<FrmKeypadType>
<FrmKeypadType>Tipo do Keypad</FrmKeypadType>
<lblKeypadType>Tipo do Keypad</lblKeypadType>
<lblKeypadInfo_M50>keypad M50: Tamanho de cartão de crédito, múltiplas funções, fino e leve, e alimentado por duas pilhas-botão CR2032, fácil de usar e de transportar, ideal para treinamento interativo, marcando a concorrência, membros das mesas, etc uso corporativo</lblKeypadInfo_M50>
<lblKeypadInfo_M52>keypad M52: Tamanho de cartão de crédito, múltiplas funções, fino e leve, e alimentado por duas pilhas-botão CR2032, fácil de usar e de transportar, ideal para treinamento interativo, marcando a concorrência, membros das mesas, etc uso corporativo</lblKeypadInfo_M52>
<lblKeypadInfo_M52Plus>keypad M52Plus: Tamanho de cartão de crédito, múltiplas funções, fino e leve, e alimentado por duas pilhas-botão CR2032, fácil de usar e de transportar, ideal para treinamento interativo, marcando a concorrência, membros das mesas, etc uso corporativo</lblKeypadInfo_M52Plus>
<lblKeypadInfo_F00>keypad F00: Fácil de usar, ótimo custo-benefício, com bateria embutida recarregável de lítio, interruptores de toque, membrana impermeável, design de comunicação digital sem fio 2.4G, longo tempo em standby. </lblKeypadInfo_F00>
<lblKeypadInfo_M40L>keypad M40L: 2 pilhas x AA, com um led indicador em seu topo, fácil de usar, fácil de transportar, bom para testes interativos, concursos votos, votação de empregados, etc.</lblKeypadInfo_M40L>
<btnOK>OK</btnOK>
<btnCancel>Cancelar</btnCancel>
<txtInfo2>Desligamento Remoto Bem Sucedido</txtInfo2>
<cboKeypadType_Text_0>M52</cboKeypadType_Text_0>
<cboKeypadType_Text_1>M50</cboKeypadType_Text_1>
</FrmKeypadType>
<FrmPollList>
<FrmPollList>Lista de Candidatos</FrmPollList>
<dgvVoterList_0>No.</dgvVoterList_0>
<dgvVoterList_1>Candidato</dgvVoterList_1>
<btnInsert>Inserir</btnInsert>
<btnDelete>Apagar</btnDelete>
<btnSave>Salvar</btnSave>
<btnImport>Importar</btnImport>
<btnExport>Exportar</btnExport>
<btnClose>Fechar</btnClose>
<CheckMessage1>Você somente pode entrar um ID de candidato numérico, por favor modifique a Lista de Candidatos</CheckMessage1>
<CheckMessage2>O ID do Candidato não pode estar vazio, por favor modifique a Lista de Candidatos</CheckMessage2>
<CheckMessage3>ID de Candidato Duplicado, por favor modifique a Lista de Candidatos</CheckMessage3>
<SavePollList>Você quer salvar a Lista de Participantes?</SavePollList>
<ExcelTitle>Lista de Candidatos</ExcelTitle>
<ExportSucceed>Exportação Bem Sucedida</ExportSucceed>
<SaveSuccess>Salvar Ok</SaveSuccess>
<lblExcel>Nota: Por favor, certifique-se de que a primeira linha é a cabeça da lista, e a primeira coluna é numérica.</lblExcel>
<ImportSuccess>Importação Bem Sucedida</ImportSuccess>
<ImportFail>Importação Falhou</ImportFail>
<ImportData>Importação de Dados</ImportData>
</FrmPollList>
<FrmRankGroup>
<FrmRankGroup>Tabela de Classificação dos Participantes</FrmRankGroup>
<dgvRank_0>Ranking</dgvRank_0>
<dgvRank_1>Nome do Grupo</dgvRank_1>
<dgvRank_2>Contagem de Membros</dgvRank_2>
<chkSelectAllSlide>Selecionar Todas-as-perguntas</chkSelectAllSlide>
<lvwSlide_0>No.</lvwSlide_0>
<lvwSlide_1>Pergunta</lvwSlide_1>
<lblGroup>Agrupamento</lblGroup>
<lblRankItem>Posição do Item</lblRankItem>
<clbSortField_AgvScore>Pontuação Média</clbSortField_AgvScore>
<clbSortField_AgvCorrect>Média Corretos.</clbSortField_AgvCorrect>
<clbSortField_AgvSpeed>Velocidade Média de Resposta</clbSortField_AgvSpeed>
<clbSortField_TotalScore>Pontuação Total</clbSortField_TotalScore>
<clbSortField_TotalCorrect>Total corretos</clbSortField_TotalCorrect>
<clbSortField_TotalSpeed>Velocidade Total de Respostas</clbSortField_TotalSpeed>
<lblGroupType>Tipo de Grupo</lblGroupType>
<lblGroupItem>Informação do Grupo</lblGroupItem>
<gbxOrderBy>Estatísticas</gbxOrderBy>
<rbtByScore>Pontuação(Média)</rbtByScore>
<rbtByCorrectRate>Taxa Correta(Média)</rbtByCorrectRate>
<rbtByCorrectCount>Contagem Correta(Média)</rbtByCorrectCount>
<rbtByCorrectCountSum>Contagem Correta(Soma)</rbtByCorrectCountSum>
<chkBySpeed>Velocidade</chkBySpeed>
<cboRosterField>Tipo do Keypad</cboRosterField>
<btnShowFull>Exibição em Tela Cheia</btnShowFull>
<btnExport>Relatório Excel</btnExport>
<btnClose>Fechar</btnClose>
</FrmRankGroup>
<FrmRankPoll>
<FrmRankPoll>Ranking da Enquete</FrmRankPoll>
<dgvRank_0>Ranking</dgvRank_0>
<dgvRank_1>Número</dgvRank_1>
<dgvRank_2>Candidato</dgvRank_2>
<dgvRank_3>Contagem</dgvRank_3>
<btnShowFull>Exibição em Tela Cheia</btnShowFull>
<btnExport>Relatório Excel</btnExport>
<btnClose>Fechar</btnClose>
<lvwSlide_0>No.</lvwSlide_0>
<lvwSlide_1>Pergunta</lvwSlide_1>
</FrmRankPoll>
<FrmReport>
<FrmReport>Relatório</FrmReport>
<tpgVoteDetail>Resultados por Participante</tpgVoteDetail>
<dgvVoteDetail_T_Index>No. do Slide</dgvVoteDetail_T_Index>
<dgvVoteDetail_TT_ID>Tipo do Slide</dgvVoteDetail_TT_ID>
<dgvVoteDetail_T_Note>Pergunta</dgvVoteDetail_T_Note>
<dgvVoteDetail_V_KeypadID>No. do Keypad</dgvVoteDetail_V_KeypadID>
<dgvVoteDetail_R_Result>Resposta</dgvVoteDetail_R_Result>
<dgvVoteDetail_R_Score>Pontuação</dgvVoteDetail_R_Score>
<dgvVoteDetail_R_Correct>Correto</dgvVoteDetail_R_Correct>
<dgvVoteDetail_R_Speed>Velocidade da Resposta</dgvVoteDetail_R_Speed>
<dgvVoteDetail_R_Time>Período de Votação</dgvVoteDetail_R_Time>
<tpgVoteResult>Resultados por Pergunta</tpgVoteResult>
<dgvVoteResult_T_Index>No. do Slide</dgvVoteResult_T_Index>
<dgvVoteResult_TT_ID>Tipo do Slide</dgvVoteResult_TT_ID>
<dgvVoteResult_T_Title>Título</dgvVoteResult_T_Title>
<dgvVoteResult_VoterCount>Votante</dgvVoteResult_VoterCount>
<dgvVoteResult_SubmitCount>Contagem</dgvVoteResult_SubmitCount>
<dgvVoteResult_VotedCount>Contagem votado</dgvVoteResult_VotedCount>
<dgvVoteResult_T_Note>Pergunta e Respostas</dgvVoteResult_T_Note>
<btnExport>Exportar</btnExport>
<btnExit>Sair</btnExit>
</FrmReport>
<FrmSystemSet>
<FrmSystemSet>Configurações do Sistema</FrmSystemSet>
<tpgSystemSet>Linguagem</tpgSystemSet>
<gbxLanguage>Linguagem do Sistema</gbxLanguage>
<tpgOprate>Funcionamento</tpgOprate>
<gbxAutoPage>Alterar Automaticamente o Slide</gbxAutoPage>
<chkTimeOut>Fim da Contagem Regressiva</chkTimeOut>
<chkAllVoted>Quando Todos os Votos São Coletados</chkAllVoted>
<lblDelayTime>Automaticamente Alterar Delay Time (Segunda)</lblDelayTime>
<gbxRemoteControl>Configurações do Controle Remoto do PPT</gbxRemoteControl>
<chkRemoteControlEnabled>Permitir o Controle Remoto 50R/40R</chkRemoteControlEnabled>
<tpgSoundSet>Configurações de Som</tpgSoundSet>
<lvwSound_0>Categoria</lvwSound_0>
<lvwSound_1>Caminho</lvwSound_1>
<lvwSound_Item_0>Informações da Votação</lvwSound_Item_0>
<lvwSound_Item_1>Votos Coletados</lvwSound_Item_1>
<lvwSound_Item_2>Mostrar resultado da resposta</lvwSound_Item_2>
<lvwSound_Item_3>Mostrar Resposta Correta</lvwSound_Item_3>
<btnSoundBrowse>Procurar...</btnSoundBrowse>
<btnSoundPlay>Reproduzir</btnSoundPlay>
<btnSoundStop>Parar</btnSoundStop>
<btnOK>OK</btnOK>
<btnCancel>Cancelar</btnCancel>
<gbAddinType>Suplemento Configuração de Tipo de Carga</gbAddinType>
<rbAuto>Em um PPT Aberto</rbAuto>
<rbShotcut>Por Atalho</rbShotcut>
<lblInfo>Apenas a Conta de Administrador Tem Permissão para Modificar</lblInfo>
<lblChartShow>Exibir Gráfico</lblChartShow>
<cboChartShow_Text_0>No Encerramento da Votação</cboChartShow_Text_0>
<cboChartShow_Enum_0>csStop</cboChartShow_Enum_0>
<cboChartShow_Text_1>Na Abertura da Votação</cboChartShow_Text_1>
<cboChartShow_Enum_1>csStart</cboChartShow_Enum_1>
<cboChartShow_Text_2>Operação Manual</cboChartShow_Text_2>
<cboChartShow_Enum_2>csHandle</cboChartShow_Enum_2>
<cboChartShow_Text_3>Ocultar Chart</cboChartShow_Text_3>
<cboChartShow_Enum_3>csHide</cboChartShow_Enum_3>
<gbDemo>Modo Demonstração</gbDemo>
<chkDemo>Ativar o modo de demonstração</chkDemo>
<grbChart>Configuração de Gráfico</grbChart>
<tpgSetAll>Configurações Globais</tpgSetAll>
<grbVoteSet>Configurações de Votação</grbVoteSet>
<chkNameMode>Tipo Aberto:</chkNameMode>
<cboNameMode_Text_0>Nomeado</cboNameMode_Text_0>
<cboNameMode_Text_1>Anônimo</cboNameMode_Text_1>
<gbKeySet>Parâmetro do Keypad</gbKeySet>
<chkSubmitMode>Modo de Envio:</chkSubmitMode>
<cboSubmitMode_Text_0>Pressione Ok Para Enviar</cboSubmitMode_Text_0>
<cboSubmitMode_Text_1>Auto-enviar</cboSubmitMode_Text_1>
<chkModifyMode>Modo de Modificação:</chkModifyMode>
<cboModifyMode_Text_0>Suscetível de revisão</cboModifyMode_Text_0>
<cboModifyMode_Text_1>Não Suscetível de revisão</cboModifyMode_Text_1>
<chkOptionMode>Optção de Formatação:</chkOptionMode>
<cboOptionMode_Text_0>1234</cboOptionMode_Text_0>
<cboOptionMode_Text_1>ABCD</cboOptionMode_Text_1>
<gbChartSet>Configurações de Gráfico</gbChartSet>
<chkChartType>Tipo de Gráfico:</chkChartType>
<chkLableType>Rótulo:</chkLableType>
<chkChartShow>Exibição do Gráfico:</chkChartShow>
<chkCharRate>Taxa:</chkCharRate>
<chk3DShow>Tipo de Exibição:</chk3DShow>
<cboShowType_Text_0>Exibição 2D</cboShowType_Text_0>
<cboShowType_Text_1>Exibição 3D</cboShowType_Text_1>
<btnChartColor>Cores do Gráfico</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>Retângulo Vertical</cboChartType_Text_2>
<cboChartType_Enum_2>ctColumnBox</cboChartType_Enum_2>
<cboChartType_Text_3>Retângulo Horizontal</cboChartType_Text_3>
<cboChartType_Enum_3>ctBarBox</cboChartType_Enum_3>
<cboChartType_Text_4>Pizza</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>Sem Rótulo</cboChartLabel_Text_3>
<cboChartLabel_Enum_3>ltNone</cboChartLabel_Enum_3>
<cboChartShow_Text_0>At Finalização da Votação</cboChartShow_Text_0>
<cboChartShow_Enum_0>csStop</cboChartShow_Enum_0>
<cboChartShow_Text_1>At Abertura da Votação</cboChartShow_Text_1>
<cboChartShow_Enum_1>csStart</cboChartShow_Enum_1>
<cboChartShow_Text_2>Operação Manual</cboChartShow_Text_2>
<cboChartShow_Enum_2>csHandle</cboChartShow_Enum_2>
<cboChartRate_Text_0>Divisor é o Atendimento</cboChartRate_Text_0>
<cboChartRate_Enum_0>crParticipant</cboChartRate_Enum_0>
<cboChartRate_Text_1>Divisor é Contagem</cboChartRate_Text_1>
<cboChartRate_Enum_1>crResponse</cboChartRate_Enum_1>
<btnSetAll>Aplicar a todos</btnSetAll>
<Prompt>aviso</Prompt>
<GlobalSetSucceed>Configuração bem-sucedida</GlobalSetSucceed>
<chkDec>Decimais:</chkDec>
<gbxAutoVote>Iniciar automaticamente votação</gbxAutoVote>
<chkAutoVote>Comece votação automaticamente quando as lâminas são apresentados</chkAutoVote>
<tabEmailSet>Email Ambiente</tabEmailSet>
<grpEmailOut>Caixa de saída Ambiente</grpEmailOut>
<labEmailOut>Email</labEmailOut>
<labEmailPWD>senha</labEmailPWD>
<labEmailServer>Outgoing Mail Server</labEmailServer>
<labEmailPort>porto(opcional)</labEmailPort>
<gbxEmailIn>Inbox Ambiente</gbxEmailIn>
<labEmailInAdds>Por favor, defina o endereço de e-mail (será enviar relatório ao PPT fechamento, separar cada endereço de e-mail com automaticamente ';')</labEmailInAdds>
<gbxEmailReport>Por favor, selecione o relatório a ser enviado automaticamente</gbxEmailReport>
<SendMsgAsk>Você quer enviar o e-mail relatório?</SendMsgAsk>
<SendMsgAskTitle>relatórios de correio</SendMsgAskTitle>
<SendMsgSuccess>E-mail enviado com sucesso!</SendMsgSuccess>
<SendMsgFail>Falha ao enviar e-mail! Mensagem de erro:</SendMsgFail>
</FrmSystemSet>
<FrmVoteBar>
<tsbConnectState_Text>Estado de Conexão com a Estação Base</tsbConnectState_Text>
<tsbConnectState_ToolTipText>Estado de Conexão com a Estação Base</tsbConnectState_ToolTipText>
<ddbNewSlide_Text>Slide Improvisado</ddbNewSlide_Text>
<ddbNewSlide_ToolTipText>Criar</ddbNewSlide_ToolTipText>
<ddbCanVote_Text>Keypad Autorizado</ddbCanVote_Text>
<ddbCanVote_ToolTipText>Keypad Autorizado</ddbCanVote_ToolTipText>
<tsbShowResult_Text_Show>Mostrar Gráfico (G)</tsbShowResult_Text_Show>
<tsbShowResult_ToolTipText_Show>Mostrar Gráfico (G)</tsbShowResult_ToolTipText_Show>
<tsbShowResult_Text_Hide>Ocultar Gráfico (G)</tsbShowResult_Text_Hide>
<tsbShowResult_ToolTipText_Hide>Ocultar Gráfico (G)</tsbShowResult_ToolTipText_Hide>
<tsbVoteStart_Text_Start>Iniciar a Realimentação (S)</tsbVoteStart_Text_Start>
<tsbVoteStart_ToolTipText_Start>Iniciar a Realimentação (S)</tsbVoteStart_ToolTipText_Start>
<tsbVoteStart_Text_Stop>Parar a Realimentação (S)</tsbVoteStart_Text_Stop>
<tsbVoteStart_ToolTipText_Stop>Parar a Realimentação (S)</tsbVoteStart_ToolTipText_Stop>
<tsbVoteClearStart_Text>Nova-votação(Redefinir) (R)</tsbVoteClearStart_Text>
<tsbVoteClearStart_ToolTipText>Nova-votação(Redefinir) (R)</tsbVoteClearStart_ToolTipText>
<tsbVoteClear_Text>Redefinir Slide Atual (D)</tsbVoteClear_Text>
<tsbVoteClear_ToolTipText>Redefinir Slide Atual (D)</tsbVoteClear_ToolTipText>
<tsbVoteDetail_Text>Detalhes da Resposta (K)</tsbVoteDetail_Text>
<tsbVoteDetail_ToolTipText>Detalhes da Resposta (K)</tsbVoteDetail_ToolTipText>
<tsbCorrectAnswer_Text_Show>Mostrar Resposta Correta (A)</tsbCorrectAnswer_Text_Show>
<tsbCorrectAnswer_ToolTipText_Show>Mostrar Resposta Correta (A)</tsbCorrectAnswer_ToolTipText_Show>
<tsbCorrectAnswer_Text_Hide>Ocultar Resposta Correta (A)</tsbCorrectAnswer_Text_Hide>
<tsbCorrectAnswer_ToolTipText_Hide>Ocultar Resposta Correta (A)</tsbCorrectAnswer_ToolTipText_Hide>
<tsbRushAnswer_Text>Começar a Resposta Mais Rápida (Q)</tsbRushAnswer_Text>
<tsbRushAnswer_ToolTipText>Começar a Resposta Mais Rápida (Q)</tsbRushAnswer_ToolTipText>
<tsbLuckyShow>Aleatório Roll Call(U)</tsbLuckyShow>
<ddbAnalyzer_Text>Análise dos Dados</ddbAnalyzer_Text>
<ddbAnalyzer_ToolTipText>Análise dos Dados</ddbAnalyzer_ToolTipText>
<ddbDock_Text>Posição da Barra de Ferramentas</ddbDock_Text>
<ddbDock_ToolTipText>Posição da Barra de Ferramentas</ddbDock_ToolTipText>
<tsbAutoHide_Text>Auto-ocultar (H)</tsbAutoHide_Text>
<tsbAutoHide_ToolTipText>Auto-ocultar (H)</tsbAutoHide_ToolTipText>
<ConnectStatus>Estado da Conexão com a Estação Base: </ConnectStatus>
<Connected>Estação Base está Conectada</Connected>
<UnConnected>Estação Base está Desconectada</UnConnected>
<AutoHide>Auto-ocultar</AutoHide>
<AutoHideCancel>Cancelar Auto-ocultar</AutoHideCancel>
<tsmRateCorrect>Taxa Correta</tsmRateCorrect>
<tsmRateOption>Taxa de Seleção</tsmRateOption>
<tssAnalyzer1>-</tssAnalyzer1>
<tsmAnalyzeSlideOption>Opções de Comparação</tsmAnalyzeSlideOption>
<tsmAnalyzeSlideCross>Comparação cruzada de 2 Slides</tsmAnalyzeSlideCross>
<tsmAnalyzeSlideGroup>Comparação Demográfica</tsmAnalyzeSlideGroup>
<tsmRankVoter>Tabela de Classificação dos Participantes</tsmRankVoter>
<tsmRankGroup>Tabela de Classificação do Grupo</tsmRankGroup>
<tsmRankScore>Ranking de Pontuação</tsmRankScore>
<tsmRankPoll>Ranking da Enquete</tsmRankPoll>
<lblAutoHideMsg>Tem certeza que deseja ocultar a barra de ferramentas? Depois de se esconder, por favor, pressione H ou mover o mouse para a barra de ferramentas para exibir.</lblAutoHideMsg>
</FrmVoteBar>
<FrmVoteDemoInfo>
<FrmVoteDemoInfo>Modo de Demonstração</FrmVoteDemoInfo>
<lblInfo>Modo de Demonstração</lblInfo>
</FrmVoteDemoInfo>
<FrmVoteDetail>
<FrmVoteDetail>Detalhes da Resposta</FrmVoteDetail>
<lblOnline>Em Tempo Real: </lblOnline>
<lblWeak>Corrente Fraca: </lblWeak>
<lblShowRoster>Mostrar Lista dos Participantes</lblShowRoster>
<lblShowData>Mostrar Dados</lblShowData>
<lblTotal_Participate>Participante: </lblTotal_Participate>
<lblTotal_Due>Participante</lblTotal_Due>
<lblVoted_Response>Enviado: </lblVoted_Response>
<lblVoted_Arrive>Recebido: </lblVoted_Arrive>
<lblNoPress_UnResponse>Não Enviado: </lblNoPress_UnResponse>
<lblVoted_UnArrive>Não-recebido: </lblVoted_UnArrive>
<cboShowData_Text_0>Todos os keypad</cboShowData_Text_0>
<cboShowData_Text_1>Não comentado</cboShowData_Text_1>
<cboShowData_Text_2>Pressione valor</cboShowData_Text_2>
<lblSameCode>Código de sinal repetido</lblSameCode>
<SignCode>Código de Sinal</SignCode>
<FullScreen>Tela Cheia</FullScreen>
<NormalScreen>Sair da Tela Cheia</NormalScreen>
<ShowKeypadNo>Número do Keypad</ShowKeypadNo>
</FrmVoteDetail>
<FrmVoterList>
<FrmVoterList>Lista dos Participantes</FrmVoterList>
<lblFieldSignInCode>Código de Registro Válido</lblFieldSignInCode>
<lblInfo>Aviso</lblInfo>
<btnInsert>Inserir</btnInsert>
<btnDelete>Excluir</btnDelete>
<btnSave>Salvar</btnSave>
<btnImport>Importar</btnImport>
<btnExport>Exportar</btnExport>
<btnClose>Fechar</btnClose>
<dgvVoterList_0>ID do Keypad</dgvVoterList_0>
<dgvVoterList_1>Nome</dgvVoterList_1>
<dgvVoterList_2>Agrupamento</dgvVoterList_2>
<dgvVoterList_3>Código de Registro</dgvVoterList_3>
<ExcelTitle>Lista de Participantes</ExcelTitle>
<LoadSuccess>Finalizar Carga de Dados</LoadSuccess>
<ImportStart>Iniciar Importação de Dados</ImportStart>
<GetExcelData>Obter Dados do Excel</GetExcelData>
<ImportSuccess>Importação Bem Sucedida. Por favor, defina Mostrar Nome do campo</ImportSuccess>
<SaveSuccess>Dados Salvos com Sucesso</SaveSuccess>
<KeypadFormat>ID do Keypad Deve Estar Entre 1-9999</KeypadFormat>
<KeypadRepeat>ID de Keypad Repetido</KeypadRepeat>
<lblFieldSignInCode>Campo de Código de Entrada Eficaz</lblFieldSignInCode>
<KeyIDFormat>Número do Keyboard deve ser numérico</KeyIDFormat>
<KeyIDNull>Número do Keyboard Number Não Pode Estar Vazio</KeyIDNull>
<KeyIDRep>Número do Keyboard Não Permite Repetição</KeyIDRep>
<SignCodeFormat>Código de Sinal Deve Ser Numérico</SignCodeFormat>
<SignCodeNull>Código de Sinal Não Pode Estar Vazio</SignCodeNull>
<SignCodeRep>Código de Sinal Não Permite Repetição</SignCodeRep>
<IsSave>Dados Atuais foram modificados, deseja salvar?</IsSave>
<lblFieldVoteRate>Campos de Taxa de Votação do Keypad</lblFieldVoteRate>
<lblFieldShowName>Mostrar Nome do Campo</lblFieldShowName>
<Unsetting>Não configurado</Unsetting>
</FrmVoterList>
<FrmChartSet>
<FrmChartSet>Configuração do Gráfico</FrmChartSet>
<lblChartSetColor>Cores do Gráfico</lblChartSetColor>
<lblColorSet>Clique no Gráfico para Modificar a Cor</lblColorSet>
<lvwColorSet_0>No.</lvwColorSet_0>
<gbxFontSet>Configuração da Fonte</gbxFontSet>
<lblFontObject>Configuração do Objeto</lblFontObject>
<cboFontObject_Text_0>Rótulo de Opção</cboFontObject_Text_0>
<cboFontObject_Text_1>Rótulo de Dados</cboFontObject_Text_1>
<lblFontName>Nome da Fonte</lblFontName>
<lblFontSize>Tamanho da Fonte</lblFontSize>
<lblFontColor>Cor da Fonte</lblFontColor>
<chkFontBold>Negrito</chkFontBold>
<chkFontItalic>Itálico</chkFontItalic>
<btnOK>OK</btnOK>
<btnCancel>Cancelar</btnCancel>
</FrmChartSet>
<FrmAllChartSet>
<FrmAllChartSet>Configuração do Gráfic</FrmAllChartSet>
<chkChartColor>Cores do Gráfico</chkChartColor>
<lvwColorSet_0>No.</lvwColorSet_0>
<gbxFontSet>Configuração da Fonte</gbxFontSet>
<lblFontObject>Configuração do Objeto</lblFontObject>
<cboFontObject_Text_0>Rótulo das opções</cboFontObject_Text_0>
<cboFontObject_Text_1>Rótulo dos Dados</cboFontObject_Text_1>
<chkFontName>Nome da Fonte</chkFontName>
<chkFontSize>Tamanho da Fonte</chkFontSize>
<chkFontColor>Cor da Fonte</chkFontColor>
<chkFontType>Tipo da Fonte</chkFontType>
<cboFontType_Text_0>Normal</cboFontType_Text_0>
<cboFontType_Text_1>Negrito</cboFontType_Text_1>
<cboFontType_Text_2>Itálico</cboFontType_Text_2>
<btnOK>Aplicar a todos</btnOK>
<btnCancel>Cancelar</btnCancel>
<Prompt>aviso</Prompt>
<GlobalSetSucceed>Configuração com sucesso</GlobalSetSucceed>
<chkFontBold>Negrito</chkFontBold>
<chkFontItalic>Itálico</chkFontItalic>
</FrmAllChartSet>
<PPTEdit>
<SignIn>Registrado</SignIn>
<UnSignIn>Nâo-Registrado</UnSignIn>
</PPTEdit>
<PPTOper>
<SignIn>Registro</SignIn>
<Group>Agrupamento</Group>
<Choice>Escolha</Choice>
<SingleChoice>Escolha Simples</SingleChoice>
<MultiChoice>Múltipla Escolha</MultiChoice>
<Judge>Julgar</Judge>
<Order>Ordenação</Order>
<Number>Numérico</Number>
<Vote>Votação</Vote>
<Grade>Avaliação</Grade>
<Score>Pontuação</Score>
<Poll>Enquete</Poll>
<Signed>Registrado</Signed>
<UnSignIn>Não-Registrado</UnSignIn>
<SignFail>Sinal Falhou</SignFail>
<GroupOption>Equipe </GroupOption>
<ChoiceOption>Opção </ChoiceOption>
<JudgeYes>Sim</JudgeYes>
<JudgeNo>Não</JudgeNo>
<OrderOption>Opção</OrderOption>
<VoteAgree>Sim</VoteAgree>
<VoteAgainst>Não</VoteAgainst>
<VoteAbstain>Abstenção</VoteAbstain>
<GradeOption>Opção</GradeOption>
<LableExist>O rótulo do Dado Já Existe!</LableExist>
<prompt>Aviso</prompt>
<sumscore>Pontuação Total</sumscore>
<avgscore>Pontuação Média</avgscore>
<Shouldnumber>Participante</Shouldnumber>
<votingnumber>Votado</votingnumber>
<votingmean>Significado</votingmean>
<answer>Resposta Correta</answer>
<correctno>Contagem Correta</correctno>
<participate>Votante</participate>
<participate2>Votante</participate2>
<votingnumber2>Votado</votingnumber2>
<TitleSignIn>Por favor inicie sessão.</TitleSignIn>
<TitleGroup>Por favor selecione um grupo.</TitleGroup>
<TitleChoice>Por favor faça a sua seleção...</TitleChoice>
<TitleChoice_M>Por favor faça a sua seleção...</TitleChoice_M>
<TitleJudgeYesNo>Você concorda?</TitleJudgeYesNo>
<TitleJudgeTrueFalse>Qual a sua opinião?</TitleJudgeTrueFalse>
<TitleJudgeRightWrong>Qual a sua opinião?</TitleJudgeRightWrong>
<TitleOrder>Por favor faça a sua classificação.</TitleOrder>
<TitleNumber>Por favor dê o seu número.</TitleNumber>
<TitleVote>Você concorda?</TitleVote>
<TitleGrade>Qual é a sua opinião?</TitleGrade>
<TitleScore>Por favor dê a sua pontuação.</TitleScore>
<TitlePoll>Por favor, faça a sua votação.</TitlePoll>
</PPTOper>
<Other>
<Unrestricted>Sem Limite</Unrestricted>
<PollNumber>ID</PollNumber>
<PollName>Nome</PollName>
<PollCount>Contagem</PollCount>
<PollNumberStr>No.</PollNumberStr>
<PollCountStr>Cédula</PollCountStr>
</Other>
<FrmOptionTextSelect>
<FrmOptionTextSelect>Configuração de opção de texto</FrmOptionTextSelect>
<lblMsg>Por favor selecione a opção de texto para associar</lblMsg>
<dgvOptionText_0>Opção</dgvOptionText_0>
<btnOK>OK</btnOK>
<btnCancel>Cancelar</btnCancel>
</FrmOptionTextSelect>
<FrmRushAnswer>
<FrmRushAnswer>Arremetida Resposta</FrmRushAnswer>
<lblTitle>Por favor, prepare resposta pressa!</lblTitle>
<lblMsg1>Em resposta pressa ...</lblMsg1>
<lblMsg2>ID - sucesso responder!</lblMsg2>
<lblMsg3>- sucesso responder!</lblMsg3>
</FrmRushAnswer>
<FrmErrorMsg>
<FrmErrorMsg>Dicas de exceção</FrmErrorMsg>
<txtMsg>os conflitos causados \r\n 2.Rever detalhes \r\n 3.Ver o log, você pode enviar os logs para suporte técnico para ajudar a resolver</txtMsg>
<btnShowDetail>Clique aqui para mais informações</btnShowDetail>
<btnShowDetail_1>ocultar detalhes</btnShowDetail_1>
<btnShowLog>Ver Log ...</btnShowLog>
<btnCancel>Cancelar</btnCancel>
</FrmErrorMsg>
<FrmUploadServerXD>
<FrmUploadServerXD>Enviar dados para o servidor</FrmUploadServerXD>
<dgvQuestionPoint_0>No.</dgvQuestionPoint_0>
<dgvQuestionPoint_1>Deslize Informações</dgvQuestionPoint_1>
<dgvQuestionPoint_2>Conhecimento Ponto</dgvQuestionPoint_2>
<lblSchool>Escola</lblSchool>
<lblTeacher>Professor</lblTeacher>
<lblGrade>Grau</lblGrade>
<lblClass>Class</lblClass>
<lblCourse>Curso</lblCourse>
<btnSubmit>Enviar dados</btnSubmit>
<btnExit>Sair</btnExit>
<msgSubmitOK>Enviar Sucesso!</msgSubmitOK>
</FrmUploadServerXD>
<FrmVoteBarSmall>
<lblVoting>Votação..</lblVoting>
<lblStop>Pare</lblStop>
</FrmVoteBarSmall>
<PanelRankChart>
<gbxRankSet>Ranking Set</gbxRankSet>
<RankSetVoter>Participante Leaderboard Set</RankSetVoter>
<RankSetGroup>Team Leaderboard Set</RankSetGroup>
<RankSetMode1>cumulativa Atacante</RankSetMode1>
<RankSetMode2>Slide anterior</RankSetMode2>
<RankSetMode3>Personalizar Seleção</RankSetMode3>
<lblColShow>Posição por</lblColShow>
<lblRankCount>Show Top Contagem</lblRankCount>
<lblRankMode>Pontuação Calcular</lblRankMode>
</PanelRankChart>
<FrmChartRankSet>
<FrmChartRankSet>Personalizar seleção dos slides</FrmChartRankSet>
<lvwSlide_0>n º.</lvwSlide_0>
<lvwSlide_1>Pergunta</lvwSlide_1>
<btnOk>OK</btnOk>
<btnCancel>Cancelar</btnCancel>
</FrmChartRankSet>
<FrmShowCol>
<FrmShowCol>Campos de exibição personalizada</FrmShowCol>
<CustomCol>Personalizado..</CustomCol>
</FrmShowCol>
<PanelSlideCompChart>
<lblSlide1>Compare Slide 1</lblSlide1>
<lblSlide2>Compare Slide 2</lblSlide2>
</PanelSlideCompChart>
</Language>