Italian.xml
67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
<?xml version="1.0" encoding="UTF-8"?>
<Language>
<APanel>
<cboVoteType_Text_0>Diapositiva Semplice</cboVoteType_Text_0>
<cboVoteType_Text_1>Appello</cboVoteType_Text_1>
<cboVoteType_Text_2>Assegnazione Squadra</cboVoteType_Text_2>
<cboVoteType_Text_3>Scelta Singola</cboVoteType_Text_3>
<cboVoteType_Text_4>Scelta Multipla</cboVoteType_Text_4>
<cboVoteType_Text_5>Giudizio</cboVoteType_Text_5>
<cboVoteType_Text_6>Ordinamento Per Priorità</cboVoteType_Text_6>
<cboVoteType_Text_7>Numerica</cboVoteType_Text_7>
<cboVoteType_Text_8>Voto</cboVoteType_Text_8>
<cboVoteType_Text_9>Indice Di Gradimento</cboVoteType_Text_9>
<cboVoteType_Text_10>Punteggio</cboVoteType_Text_10>
<cboVoteType_Text_11>Sondaggio</cboVoteType_Text_11>
<lblInfo>Nessuna Slide Selezionata</lblInfo>
<grpChartSlide>Relation Slide of Chart</grpChartSlide>
</APanel>
<ucChartPara>
<gbxChartSet>Impostazioni Grafico</gbxChartSet>
<lblChartType>Tipo Di Grafico</lblChartType>
<lblChartLabel>Etichetta</lblChartLabel>
<lblChartShow>Visualizzazione Grafico</lblChartShow>
<lblChartRate>Proporzione</lblChartRate>
<cboChartType_Text_0>Verticale</cboChartType_Text_0>
<cboChartType_Enum_0>ctColumn</cboChartType_Enum_0>
<cboChartType_Text_1>Orizzontale</cboChartType_Text_1>
<cboChartType_Enum_1>ctBar</cboChartType_Enum_1>
<cboChartType_Text_2>Rettangolo Verticale</cboChartType_Text_2>
<cboChartType_Enum_2>ctColumnBox</cboChartType_Enum_2>
<cboChartType_Text_3>Rettangolo Orizzontale</cboChartType_Text_3>
<cboChartType_Enum_3>ctBarBox</cboChartType_Enum_3>
<cboChartType_Text_4>Torta</cboChartType_Text_4>
<cboChartType_Enum_4>ctPie</cboChartType_Enum_4>
<cboChartType_Text_5>Testo</cboChartType_Text_5>
<cboChartType_Enum_5>ctText</cboChartType_Enum_5>
<cboChartLabel_Text_0>N°</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>N°+0.0%</cboChartLabel_Text_2>
<cboChartLabel_Enum_2>ltNumberValueAndPercent</cboChartLabel_Enum_2>
<cboChartLabel_Text_3>Nessuna Etichetta</cboChartLabel_Text_3>
<cboChartLabel_Enum_3>ltNone</cboChartLabel_Enum_3>
<cboChartShow_Text_0>A Chiusura Votazione</cboChartShow_Text_0>
<cboChartShow_Enum_0>csStop</cboChartShow_Enum_0>
<cboChartShow_Text_1>Ad Apertura Votazione</cboChartShow_Text_1>
<cboChartShow_Enum_1>csStart</cboChartShow_Enum_1>
<cboChartShow_Text_2>Operazione Manuale</cboChartShow_Text_2>
<cboChartShow_Enum_2>csHandle</cboChartShow_Enum_2>
<cboChartShow_Text_3>Nascondi Grafico</cboChartShow_Text_3>
<cboChartShow_Enum_3>csHide</cboChartShow_Enum_3>
<cboChartRate_Text_0>Avanzamento Manuale</cboChartRate_Text_0>
<cboChartRate_Enum_0>crParticipant</cboChartRate_Enum_0>
<cboChartRate_Text_1>Avanzamento Automatico</cboChartRate_Text_1>
<cboChartRate_Enum_1>crResponse</cboChartRate_Enum_1>
<cboChartRate_Text_2>Avanzamento con Si/No</cboChartRate_Text_2>
<cboChartRate_Enum_2>crVoteYesNo</cboChartRate_Enum_2>
<cboChartRate_Text_ChoiceCount>Number of choosed</cboChartRate_Text_ChoiceCount>
<cboChartRate_Enum_3>crChoiceCount</cboChartRate_Enum_3>
<chk3D>Visualizza 3D</chk3D>
<chkShowWindow>Show Window Mode On Slide Showing</chkShowWindow>
<btnChartSetColor>Colori Grafico</btnChartSetColor>
<lblChartOption>Opzioni Formato</lblChartOption>
<btnChartSet>Impostazioni Grafico</btnChartSet>
<lblDec>Decimali</lblDec>
<lblChartPointWidth>Larghezza In Punti</lblChartPointWidth>
<chkShowItemText>Etichetta Con Testo Di Risposta</chkShowItemText>
<btnChartRefresh>Ricarica Grafico</btnChartRefresh>
<chkChartValueIsVotedCount>Mostra le tastiere votate nel grafico</chkChartValueIsVotedCount>
</ucChartPara>
<ucKeypadPara>
<gbxKeypadSet>Parametri Votatore</gbxKeypadSet>
<lblSubmitMode>Modalità Invio</lblSubmitMode>
<lblModifyMode>Modalità Modifica</lblModifyMode>
<cboSubmitMode_Text_0>Premere OK Per Inviare</cboSubmitMode_Text_0>
<cboSubmitMode_Text_1>Invio Automatico</cboSubmitMode_Text_1>
<cboModifyMode_Text_0>Correggibile</cboModifyMode_Text_0>
<cboModifyMode_Text_1>Non Correggibile</cboModifyMode_Text_1>
<lblOptionMode>Opzioni Formato</lblOptionMode>
<lblSecrecyMode>Secrecy Mode</lblSecrecyMode>
<cboSecrecyMode_Text_0>Not Keep Secret</cboSecrecyMode_Text_0>
<cboSecrecyMode_Text_1>Keep Secret</cboSecrecyMode_Text_1>
<lblCheckUID>Controllare ID</lblCheckUID>
<cboCheckUID_Text_0>Disabilitato</cboCheckUID_Text_0>
<cboCheckUID_Text_1>Ultime 4 Cifre</cboCheckUID_Text_1>
<cboCheckUID_Text_2>Ultime 6 Cifre</cboCheckUID_Text_2>
</ucKeypadPara>
<ucResponsePara>
<gbxNameAuthorize>Impostazioni Votazione</gbxNameAuthorize>
<rbtNameModeOn>Palese</rbtNameModeOn>
<rbtNameModeOff>Anonimo</rbtNameModeOff>
<lblAuthorize>Votante</lblAuthorize>
<lblFieldVoteRate>Peso dei voti</lblFieldVoteRate>
<cboCanVote_Text_0>Tutto</cboCanVote_Text_0>
<cboCanVote_Enum_0>cvAll</cboCanVote_Enum_0>
<cboCanVote_Text_1>Specificare Votante</cboCanVote_Text_1>
<cboCanVote_Enum_1>cvPerson</cboCanVote_Enum_1>
<cboCanVote_Text_2>Specificare Scelta</cboCanVote_Text_2>
<cboCanVote_Enum_2>cvTopic</cboCanVote_Enum_2>
</ucResponsePara>
<PanelChoise>
<gbxChoise>Impostazione Opzioni</gbxChoise>
<lblChoiseOption>Numero Opzioni</lblChoiseOption>
<lblChoiseLimit>Limite Di Scelte</lblChoiseLimit>
<chkIisN> Indicare Il Limite Di Scelte Per Inviare</chkIisN>
<gbxScoreType>Impostazioni Punteggio</gbxScoreType>
<rbtScoreAnswer>Punteggio Da Risposta Giusta</rbtScoreAnswer>
<rbtScoreItem>Punteggio Da Opzione Valore Punto</rbtScoreItem>
<rbtScoreAnswerTime>Punto per tempo di risposta</rbtScoreAnswerTime>
<lblScoreRight>Giusto</lblScoreRight>
<lblScoreWrong>Sbagliato</lblScoreWrong>
<lblCorrectAnswer>Risposta Corretta(0 Rappresenta 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>N°</dgvScore_0>
<dgvScore_1>Punteggio</dgvScore_1>
<chkZeroScore>Punteggi Negativi Sono Considerati Zero</chkZeroScore>
<dgvScore_0>N°</dgvScore_0>
<dgvScore_1>Punteggio</dgvScore_1>
<dgvScore_2>N°</dgvScore_2>
<dgvScore_3>Punteggio</dgvScore_3>
<lblCorrectAnswer>Risposta Corretta</lblCorrectAnswer>
</PanelChoise>
<PanelGrade>
<gbxChoise>Impostazioni Indice Gradimento</gbxChoise>
<lblChoiseOption>Numero Opzioni</lblChoiseOption>
</PanelGrade>
<PanelGroup>
<gbxChoise>Impostazioni Assegnazione Squadra</gbxChoise>
<lblChoiseOption>Numero Del Gruppo</lblChoiseOption>
<lblGroupName>Nome Del Gruppo</lblGroupName>
</PanelGroup>
<PanelJudge>
<gbxScoreType>Impostazioni Punteggio</gbxScoreType>
<lblChoiseOption>Numero Opzioni</lblChoiseOption>
<rbtScoreAnswer>Punteggio Da Risposta Giusta</rbtScoreAnswer>
<rbtScoreItem>Punteggio Da Opzione Valore Punto</rbtScoreItem>
<lblScoreRight>Giusto</lblScoreRight>
<lblScoreWrong>Sbagliato</lblScoreWrong>
<clstAnswer_0>1 Si</clstAnswer_0>
<clstAnswer_1>2 No</clstAnswer_1>
<dgvScore_0>N°</dgvScore_0>
<dgvScore_1>Punteggio</dgvScore_1>
<chkZeroScore>Punteggi Negativi Sono Considerati Zero</chkZeroScore>
<lblCorrectAnswer>Risposta Corretta</lblCorrectAnswer>
</PanelJudge>
<PanelOrder>
<gbxChoise>Impostazioni Delle Opzioni</gbxChoise>
<lblChoiseOption>Numero Opzioni</lblChoiseOption>
<lblChoiseLimit>Limite Numero Di Scelte</lblChoiseLimit>
<chkIisN>Necessario Indicare Il Limite Di Scelte Per Inviare</chkIisN>
<chkAABB>Consenti Opzioni Duplicate</chkAABB>
<dgvScore_0>N°</dgvScore_0>
<dgvScore_1>Punteggio</dgvScore_1>
<dgvScore_2>N°</dgvScore_2>
<dgvScore_3>Punteggio</dgvScore_3>
<gbxScoreType>Impostazioni Punteggio</gbxScoreType>
<rbtScoreAnswer>Punteggio Da Risposta Giusta</rbtScoreAnswer>
<rbtScoreItem>Punteggio Da Opzione Valore Punto</rbtScoreItem>
<rbtScoreMatch>Score by correct options</rbtScoreMatch>
<lblCorrectAnswer>Risposta Corretta(0 Rappresenta 10)</lblCorrectAnswer>
<lblScoreRight>Giusto</lblScoreRight>
<lblScoreWrong>Sbagliato</lblScoreWrong>
</PanelOrder>
<PanelPoll>
<gbxChoise>Impostazioni Sondaggio</gbxChoise>
<lblChoiseOption>Candidato</lblChoiseOption>
<lblChoiseLimit>Limite Di Conteggio</lblChoiseLimit>
<chkCanRepeat>Consenti Duplicati</chkCanRepeat>
<btnPollList>Elenco Dei Candidati</btnPollList>
</PanelPoll>
<PanelScore>
<gbxScore>Impostazioni punteggio</gbxScore>
<lblMax>Max.</lblMax>
<lblMin>Min.</lblMin>
<lblDecimal>Decimali</lblDecimal>
<gbxScoreCount>Impostazioni punteggio totale</gbxScoreCount>
<lblScoreRemoveMax>Eliminazione punteggio più alto</lblScoreRemoveMax>
<lblScoreRemoveMin>Eliminazione punteggio più basso</lblScoreRemoveMin>
<lblScoreCountDec>Posizioni Decimali Punteggio</lblScoreCountDec>
<chkShowAvg>Punteggio medio</chkShowAvg>
<chkShowTotal>Totele</chkShowTotal>
<cboMax_Text_0>Nessun 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>Nessun Limite</cboMin_Text_0>
<cboMin_Text_1>0</cboMin_Text_1>
<cboDec_Text_0>Nessun 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>
<Unrestricted>Nessun Limite</Unrestricted>
<CheckMessage> Il Limite Superiore Deve Essere Maggiore Del Limite Inferiore</CheckMessage>
<lblJudgeRate>Campo Pesi Giudizio</lblJudgeRate>
<lblJudgeGroup>Campo Gruppo Giudizio</lblJudgeGroup>
<btnJudgeGroupRate>Impostazioni Percentuale Gruppo Giudizio</btnJudgeGroupRate>
<chkShowAvgGroup>Mostra Punteggio Medio Totale Gruppo</chkShowAvgGroup>
<chkShowAvgTableGroup>Mostra Tabella Punteggio Medio Gruppo</chkShowAvgTableGroup>
<chkRunTimeShowScore>Mostra risultati dei rispondenti</chkRunTimeShowScore>
</PanelScore>
<PanelSignIn>
<gbxSignIn>Modalità Appello</gbxSignIn>
<rbtSignInModePress>Premere Un Tasto</rbtSignInModePress>
<rbtSignInModeCode>Input ID Utente</rbtSignInModeCode>
<rbtSignInModeRandom>Random UID</rbtSignInModeRandom>
<gbxItemText>Status Registrazione</gbxItemText>
<lblFieldSignInCode>ID Utente</lblFieldSignInCode>
<chkUID>ID Utente Abilitato</chkUID>
<SetSignInCode>Selezionare Campo ID Utente</SetSignInCode>
<SetRoster>Partecipanti Non Registrati</SetRoster>
<btnClearSignInData>Cancellare Dati Registrazione Utente</btnClearSignInData>
<ClearSignInCode>Questa Azione Cancellerà L’id Tastiera o il SN Dei Partecipanti, Si Prega Di Confermare Se Si Desidera Continuare?</ClearSignInCode>
<btnCreateUIDAsc>Create UID Continuously</btnCreateUIDAsc>
<btnCreateUIDRnd>Create UID Randomly</btnCreateUIDRnd>
<lblNumOnePage>Headcount Per Screen</lblNumOnePage>
<cboNumOnePage_Text_0>Full</cboNumOnePage_Text_0>
<cboNumOnePage_Text_1>20</cboNumOnePage_Text_1>
<cboNumOnePage_Text_2>30</cboNumOnePage_Text_2>
<lblAutoPageTime>Flip-Over Speed(s)</lblAutoPageTime>
</PanelSignIn>
<PanelVote>
<gbxVote>Modalità Voto</gbxVote>
<rbtItem3>Sì / No / Astenuto</rbtItem3>
<rbtItem2>Sì / No</rbtItem2>
<lblNoPress>Non inviato</lblNoPress>
<lblPassMode>Risultato soggetto ad approvazione</lblPassMode>
<rbtPassByRate>Percentuale di Sì</rbtPassByRate>
<lblPassRate>Calcolo della percentuale</lblPassRate>
<rbtPassByCount>Numero di Si</rbtPassByCount>
<cboPassRateMode_Text_0>Partecipanti</cboPassRateMode_Text_0>
<cboPassRateMode_Text_1>Votanti</cboPassRateMode_Text_1>
<cboNoPress_Text_0>Non inviato</cboNoPress_Text_0>
<cboNoPress_Text_1>Sì</cboNoPress_Text_1>
<cboNoPress_Text_2>No</cboNoPress_Text_2>
<cboNoPress_Text_3>Astenuto</cboNoPress_Text_3>
<VotePassResult>Risultato della votazione</VotePassResult>
<VotePass>Risultato approvato</VotePass>
<VoteNotPass>Risultato non approvato</VoteNotPass>
</PanelVote>
<PanelNumber>
<gbxScore>Impostazioni Valore Numerico</gbxScore>
<lblMax>Limite Superiore</lblMax>
<lblMin>Limite Inferiore</lblMin>
<lblDecimal>Posizioni Decimali</lblDecimal>
<gbxScoreType>Impostazioni Punteggio</gbxScoreType>
<lblCorrectAnswer>Risposta Corretta</lblCorrectAnswer>
<lblScoreRight>Giusto</lblScoreRight>
<lblScoreWrong>Sbagliato</lblScoreWrong>
<cboMax_Text_0>Nessun 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>Nessun Limite</cboMin_Text_0>
<cboMin_Text_1>0</cboMin_Text_1>
<cboDec_Text_0>Nessun 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>Scores Lower Does Not Allow More Than Scores Cap</CheckMessage>
<Unrestricted>Nessun Limite</Unrestricted>
</PanelNumber>
<PanelSlideCompGroup>
<cboChartType_Text_0>Use Stacked Chart</cboChartType_Text_0>
<cboChartType_Text_1>Use 100% Stacked Chart</cboChartType_Text_1>
<cboChartType_Text_2>Not Use Stacked Chart</cboChartType_Text_2>
</PanelSlideCompGroup>
<rbSunVoteARS>
<tabSunVoteARS>SunVote ARS PPT</tabSunVoteARS>
<grpHardware>Hardware</grpHardware>
<grpPPTEdit>Modifica Diapositiva</grpPPTEdit>
<grpVoter>Partecipante</grpVoter>
<grpReport>Analisi E Relazione</grpReport>
<grpData>Dati Di Risposta</grpData>
<grpSystem>Configurazione Del Sistema E Guida</grpSystem>
<spbHardwareSet>Configurazione Hardware</spbHardwareSet>
<spbHardwareSet_Tip>Configurazione Hardware</spbHardwareSet_Tip>
<btnKeypadType>Tipo Di Tastiera</btnKeypadType>
<btnKeypadCountSet>Numero Della Tastiera</btnKeypadCountSet>
<btnKeypadTest>Prova Tastiera</btnKeypadTest>
<btnKeypadReplace>Sostituzione Tastiera</btnKeypadReplace>
<btnChannelSet>Cambiare Canale</btnChannelSet>
<btnDeviceSet>Configurazione Hardware</btnDeviceSet>
<chkKeypadOffNever>Impedire Spegnimento Automatico</chkKeypadOffNever>
<chkKeypadBeep>Bip Tastiera</chkKeypadBeep>
<btnKeypadShutdown>Spegnimento Remoto</btnKeypadShutdown>
<new>Inserire</new>
<PPTSlide>Diapositiva</PPTSlide>
<menuNewPPT_Tip>Inserire Diapositive Modello</menuNewPPT_Tip>
<btnSignIn>Appello</btnSignIn>
<menuGroup>Assegnazione Squadra</menuGroup>
<btnGroupSex>Sesso</btnGroupSex>
<btnGroupCustom>Personalizza…</btnGroupCustom>
<btnGroup1>1 Squadra</btnGroup1>
<btnGroup2>2 Squadre</btnGroup2>
<btnGroup3>3 Squadre</btnGroup3>
<btnGroup4>4 Squadre</btnGroup4>
<btnGroup5>5 Squadre</btnGroup5>
<btnGroup6>6 Squadre</btnGroup6>
<btnGroup7>7 Squadre</btnGroup7>
<btnGroup8>8 Squadre</btnGroup8>
<btnGroup9>9 Squadre</btnGroup9>
<btnGroup10>10 Squadre</btnGroup10>
<menuChoiseSingle>Scelta Singola</menuChoiseSingle>
<btnChoiceS1>1 Opzione</btnChoiceS1>
<btnChoiceS2>2 Opzioni</btnChoiceS2>
<btnChoiceS3>3 Opzioni</btnChoiceS3>
<btnChoiceS4>4 Opzioni</btnChoiceS4>
<btnChoiceS5>5 Opzioni</btnChoiceS5>
<btnChoiceS6>6 Opzioni</btnChoiceS6>
<btnChoiceS7>7 Opzioni</btnChoiceS7>
<btnChoiceS8>8 Opzioni</btnChoiceS8>
<btnChoiceS9>9 Opzioni</btnChoiceS9>
<btnChoiceS10>10 Opzioni</btnChoiceS10>
<menuChoiseMulti>Scelta Multipla</menuChoiseMulti>
<btnChoiceM2>2 Opzioni</btnChoiceM2>
<btnChoiceM3>3 Opzioni</btnChoiceM3>
<btnChoiceM4>4 Opzioni</btnChoiceM4>
<btnChoiceM5>5 Opzioni</btnChoiceM5>
<btnChoiceM6>6 Opzioni</btnChoiceM6>
<btnChoiceM7>7 Opzioni</btnChoiceM7>
<btnChoiceM8>8 Opzioni</btnChoiceM8>
<btnChoiceM9>9 Opzioni</btnChoiceM9>
<btnChoiceM10>10 Opzioni</btnChoiceM10>
<menuJudge>Giudizio</menuJudge>
<btnJudgeYesNo>Sì/No</btnJudgeYesNo>
<btnJudgeTrueFalse>Vero/Falso</btnJudgeTrueFalse>
<btnJudgeRightWrong>Giusto/Sbagliato</btnJudgeRightWrong>
<menuOrder>Ordinamento Priorità </menuOrder>
<btnOrder2>2 Opzioni</btnOrder2>
<btnOrder3>3 Opzioni</btnOrder3>
<btnOrder4>4 Opzioni</btnOrder4>
<btnOrder5>5 Opzioni</btnOrder5>
<btnOrder6>6 Opzioni</btnOrder6>
<btnOrder7>7 Opzioni</btnOrder7>
<btnOrder8>8 Opzioni</btnOrder8>
<btnOrder9>9 Opzioni</btnOrder9>
<btnOrder10>10 Opzioni</btnOrder10>
<btnNumber>Numerico</btnNumber>
<btnText>Testo</btnText>
<btnVote>Voto</btnVote>
<menuGrade>Scala Gradimento</menuGrade>
<btnGradeAgree2>A/B/C/D</btnGradeAgree2>
<btnGradeAgree31>A/B/C/D/E</btnGradeAgree31>
<btnGradeAgree32>Assolutamente D'accordo/D'Accordo/Incerto/Non D'Accordo/Assolutamente Non D’accordo</btnGradeAgree32>
<btnGradeLevel3>Alto/Medio/Basso</btnGradeLevel3>
<btnGradeNo3>+/0/-</btnGradeNo3>
<btnGradeNo5>++/+/0/-/--</btnGradeNo5>
<btnGradeGood4>Ottimo/Buono/Medio/Scarso</btnGradeGood4>
<btnGradeSatisfy4>Molto Soddisfatto/Soddisfatto/Indifferente/Insoddisfatto/Molto Insoddisfatto</btnGradeSatisfy4>
<btnGradeCustom>Personalizzate…</btnGradeCustom>
<btnScore>Punteggio</btnScore>
<btnPoll>Sondaggio</btnPoll>
<btnAutoTest>Autotest</btnAutoTest>
<btnInport>Importazione Elenco Domande…</btnInport>
<btnInport2>Importa Lista Domande(EasyTest)..</btnInport2>
<menuInsertObject>Inserisci Oggetto</menuInsertObject>
<menuInsertObject_Tip>Inserisci Domanda</menuInsertObject_Tip>
<menuChart>Grafico</menuChart>
<btnChartColumn>Verticale</btnChartColumn>
<btnChartBar>Orizzontale</btnChartBar>
<btnChartPie>Torta</btnChartPie>
<btnChartColumn3D>Verticale 3D</btnChartColumn3D>
<btnChartBar3D>Orizzontale 3D</btnChartBar3D>
<btnChartPie3D>Torta 3D</btnChartPie3D>
<btnTime>Conto Alla Rovescia</btnTime>
<btnDueCount>Partecipante</btnDueCount>
<btnVoterCount>Votanti</btnVoterCount>
<btnMean>Media</btnMean>
<menuVoteCount>Numero di voti</menuVoteCount>
<menuVoteCount>Conteggio delle risposte (Votate)</menuVoteCount>
<btnVoteCountNum>Numero</btnVoteCountNum>
<btnVoteCountRate>Percentuale</btnVoteCountRate>
<btnVoteCountNumRate>Numero+Percentuale</btnVoteCountNumRate>
<btnCorrectAnswer>Correct Answer</btnCorrectAnswer>
<menuCorrectAnswer>Risposta Corretta</menuCorrectAnswer>
<btnCorrectAnswer>Testo Della Risposta</btnCorrectAnswer>
<btnCorrectShape>Spunta</btnCorrectShape>
<btnCorrectShapeFile>Spunta Foto..</btnCorrectShapeFile>
<menuRigntCount>Conteggio Giusto</menuRigntCount>
<btnRightCountNum>Numero</btnRightCountNum>
<btnRightCountRate>Percentuale</btnRightCountRate>
<btnRightCountNumRate>Numero+Percentuale</btnRightCountNumRate>
<btnScoreJudge>Indici Gradimento</btnScoreJudge>
<btnScoreAvg>Punteggio Medio</btnScoreAvg>
<btnScoreSum>Punteggio Totale</btnScoreSum>
<spbtnClearData>Reimposta</spbtnClearData>
<spbtnClearData_Tip>Fare Clic Per Cancellare Le Risposte Sulla Diapositiva Corrente</spbtnClearData_Tip>
<btnClearCurrent>Diapositiva Corrente</btnClearCurrent>
<btnClearAll>Tutti Le Diapositive</btnClearAll>
<Hide>Nascondi</Hide>
<Panel>Pannello Impostazioni</Panel>
<Show>Mostra</Show>
<tgbShowPanel_Tip>Nascondi Pannello</tgbShowPanel_Tip>
<btnSetVoterCount>Numero Della Tastiera - Hardware</btnSetVoterCount>
<menuVoter>Partecipanti</menuVoter>
<menuVoter_Tip>Impostazioni Votanti</menuVoter_Tip>
<btnVoterImport>Importa Elenco Dei Partecipanti</btnVoterImport>
<btnVoterImportSQLServer>Import a Participant List(From SQL Server)</btnVoterImportSQLServer>
<btnVoterExport>Esporta Elenco Dei Partecipanti</btnVoterExport>
<btnVoterView>Visualizza Elenco Dei Partecipanti</btnVoterView>
<chkVoterEnabled>Utilizza Elenco Dei Partecipanti</chkVoterEnabled>
<menuAnalyze>Analisi Dei Dati</menuAnalyze>
<menuAnalyze_Tip>Report In Formato Excel</menuAnalyze_Tip>
<btnRateCorrect>Percentuale Corretta</btnRateCorrect>
<btnRateOption>Percentuale Selezione</btnRateOption>
<btnAnalyzeSlideOption>Confronto Tra Le Opzioni</btnAnalyzeSlideOption>
<btnAnalyzeSlideCross>Confronta 2 Diapositive</btnAnalyzeSlideCross>
<btnAnalyzeSlideGroup>Confronto Demografico</btnAnalyzeSlideGroup>
<btnRankVoter>La Classifica Dei Partecipanti</btnRankVoter>
<btnRankGroup>Classifica Team</btnRankGroup>
<btnRankScore>Classifica Punteggi</btnRankScore>
<btnRankPoll>Classifica Elezione</btnRankPoll>
<btnPollRank>Classifica Elezione</btnPollRank>
<btnRankChartGroupMVP>Grruppo MVP</btnRankChartGroupMVP>
<menuReport>Report</menuReport>
<menuReport_Tip>Report In Formato Excel</menuReport_Tip>
<btnVoterDetail>Risultati Per Partecipante</btnVoterDetail>
<btnSlideResult>Risultati Per Domanda</btnSlideResult>
<btnReportCorrectRate>Percentuale Corretta</btnReportCorrectRate>
<btnReportQuestion>Risultati Per Domanda</btnReportQuestion>
<btnReportVoter>Risultati Per Partecipante</btnReportVoter>
<btnReportVoterDetail>Risultati Per Partecipante(Dettaglio)</btnReportVoterDetail>
<btnReportScore>Risultati Personali E Dettaglio</btnReportScore>
<btnReportScore2>Report with postil</btnReportScore2>
<btnVoteResult>Vote Result</btnVoteResult>
<btnDataExport>Backup</btnDataExport>
<btnDataImport>Ripristina</btnDataImport>
<btnUpload>Caricamento Dei Dati</btnUpload>
<btnSystemSet>Impostazioni Di Sistema</btnSystemSet>
<btnSystemSet_Tip>Impostazioni Di Sistema</btnSystemSet_Tip>
<btnHelp>Help</btnHelp>
<btnHelp_Tip>Aprire File Della Guida</btnHelp_Tip>
<btnAbout>Circa</btnAbout>
<btnAbout_Tip>Circa</btnAbout_Tip>
<Man>Maschio</Man>
<Woman>Femmina</Woman>
<WarningInfo1>Questa Operazione Cancellerà L'attuale Elenco Dei Partecipanti, Vuoi Continuare?</WarningInfo1>
<Warning>Avvertenza</Warning>
<ShutWarning>Il Sistema Impedisce Lo Spegnimento Automatico, Forzare Il Power off Oppure No?</ShutWarning>
<ClearCurrWarning>Salvare E Cancellare I Dati Di Risposta Della Diapositiva Corrente. Si Desidera Continuare?</ClearCurrWarning>
<ClearAllWarning>Salvare E Cancellare I Dati Di Risposta Di Tutte Le Diapositive. Si Desidera Continuare?</ClearAllWarning>
<successisderiveds>Backup Dei Dati Di Risposta Effettuato Con Successo!</successisderiveds>
<btnImportResponseMessage>Questa Operazione Sovrascriverà I Dati Attuali, Vuoi Continuare?</btnImportResponseMessage>
<prompt>Prompt</prompt>
<Documents>File Ripristinato!</Documents>
<RestoreError>La Perdita Di Dati Permette Il Ripristino</RestoreError>
<btnSlideCompChart>Confronto Tra Le Opzioni</btnSlideCompChart>
<btnOperatorSlide>Diapositiva Operatore</btnOperatorSlide>
<btnSelectCountDetail>Total score by choosed options</btnSelectCountDetail>
<btnSelectCountVoter>Personal score by choosed options</btnSelectCountVoter>
<btnMedian>Median</btnMedian>
<btnRange>Range</btnRange>
<btnVoterDetailPV>Voter Detail</btnVoterDetailPV>
<btnSynthesis>Votes Synthesis</btnSynthesis>
<btnGroupSurvey>Group Survey</btnGroupSurvey>
<btnVoteCount>Voters In Number</btnVoteCount>
<btnResultDetailPic>Voter Details</btnResultDetailPic>
<btnCompVote>Risultato della risoluzione</btnCompVote>
</rbSunVoteARS>
<FrmAboutUs>
<FrmAboutUs>Chi Siamo</FrmAboutUs>
<lblName>Soft Name:</lblName>
<lblSysSoftName>SunVote Audience Response System(Standard)</lblSysSoftName>
<lblVer>Version:</lblVer>
<lblSysVer>32bit(Beta)</lblSysVer>
<lblVerNo>Revision:</lblVerNo>
<lblVerNoInfo>1.2.3.0</lblVerNoInfo>
<lblEmail>Casella Di Posta Elettronica:</lblEmail>
<lblEmailInfo>sales@logosav.com</lblEmailInfo>
<lblService>Vendite Tel. 340 341 0080</lblService>
<lblSEmail>E-Mail:</lblSEmail>
<lblSupport>Supporto Tel. 342 701 8104</lblSupport>
<lblSIEmailInfo>sales@logosav.com</lblSIEmailInfo>
<lblSite>Website:</lblSite>
<lblSiteInfo>http://www.logosav.com</lblSiteInfo>
<lblCopyRight>Copyright@</lblCopyRight>
<lblCopyRightInfo>Changsha SunVote Limited.All rights Reserved</lblCopyRightInfo>
</FrmAboutUs>
<FrmAnalyzeRateCorrect>
<FrmAnalyzeRateCorrect>Percentuale Corretta</FrmAnalyzeRateCorrect>
<lvwSlide_0>N°</lvwSlide_0>
<lvwSlide_1>Domanda</lvwSlide_1>
<gbxChartLabel>Etichetta Grafico</gbxChartLabel>
<rbtChartDataLabel1>Numero</rbtChartDataLabel1>
<rbtChartDataLabel2>Percentuale</rbtChartDataLabel2>
<rbtChartDataLabel3>Numero E Percentuale</rbtChartDataLabel3>
<rbtChartDataLabel4>Nascondi</rbtChartDataLabel4>
<groupBox1>Tipo Di Grafico</groupBox1>
<rbtChartType1>Torta</rbtChartType1>
<rbtChartType3D1>Torta 3D</rbtChartType3D1>
<rbtChartType2>Verticale</rbtChartType2>
<rbtChartType3D2>Verticale 3D</rbtChartType3D2>
<rbtChartType3>Orizzontale</rbtChartType3>
<rbtChartType3D3>Orizzontale 3D</rbtChartType3D3>
<lblInfo>Nota: Fare Doppio Clic Sul Grafico Per La Visualizzazione A Schermo Intero</lblInfo>
<btnClose>Chiudi</btnClose>
<btnShowFull>Visualizzazione A Schermo Intero (Doppio Clic Sul Grafico)</btnShowFull>
<lblLegentCorrect>Giusto</lblLegentCorrect>
<lblLegentWrong>Sbagliato</lblLegentWrong>
</FrmAnalyzeRateCorrect>
<FrmAnalyzeRateOption>
<FrmAnalyzeRateOption>Percentuale Di Selezione</FrmAnalyzeRateOption>
<lvwSlide_0>N°</lvwSlide_0>
<lvwSlide_1>Domanda</lvwSlide_1>
<lvwOptionRate_0>Opzioni Risultato</lvwOptionRate_0>
<lvwOptionRate_1>Somma/Pecentuale</lvwOptionRate_1>
<gbxChartLabel>Etichetta Numerica</gbxChartLabel>
<rbtChartDataLabel1>Numero</rbtChartDataLabel1>
<rbtChartDataLabel2>Percentuale</rbtChartDataLabel2>
<rbtChartDataLabel3>Numero E Percentuale</rbtChartDataLabel3>
<rbtChartDataLabel4>Nascondi</rbtChartDataLabel4>
<groupBox1>Tipo Di Grafico</groupBox1>
<rbtChartType1>Torta</rbtChartType1>
<rbtChartType3D1>Torta 3D</rbtChartType3D1>
<rbtChartType2>Verticale</rbtChartType2>
<rbtChartType3D2>Verticale 3D</rbtChartType3D2>
<rbtChartType3>Orizzontale</rbtChartType3>
<rbtChartType3D3>Orizzontale 3D</rbtChartType3D3>
<lblInfo>Nota: Fare Doppio Clic Sul Grafico Per La Visualizzazione A Schermo Intero</lblInfo>
<btnClose>Chiudi</btnClose>
<btnShowFull>Visualizzazione A Schermo Intero (Doppio Clic Sul Grafico)</btnShowFull>
</FrmAnalyzeRateOption>
<FrmAnalyzeSlide>
<FrmAnalyzeSlide>Confronto Tra Le Opzioni</FrmAnalyzeSlide>
<lblSlide>Scegliere Due Domande</lblSlide>
<lvwSlide_1>Domanda</lvwSlide_1>
<gbxChartLabel>Etichetta Grafico</gbxChartLabel>
<rbtChartDataLabel1>Numero</rbtChartDataLabel1>
<rbtChartDataLabel2>Percentuale</rbtChartDataLabel2>
<rbtChartDataLabel3>Numero E Percentuale</rbtChartDataLabel3>
<rbtChartDataLabel4>Nascondi</rbtChartDataLabel4>
<groupBox1>Tipo Di Grafico</groupBox1>
<rbtChartType1>Torta</rbtChartType1>
<rbtChartType3D1>Torta 3D</rbtChartType3D1>
<rbtChartType2>Verticale</rbtChartType2>
<rbtChartType3D2>Verticale 3D</rbtChartType3D2>
<rbtChartType3>Orizzontale</rbtChartType3>
<rbtChartType3D3>Orizzontale 3D</rbtChartType3D3>
<lblInfo>Nota: Fare Doppio Clic Sul Grafico Per La Visualizzazione A Schermo Intero</lblInfo>
<btnClose>Chiudi</btnClose>
<btnShowFull>Visualizzazione A Schermo Intero (Doppio Clic Sul Grafico)</btnShowFull>
</FrmAnalyzeSlide>
<FrmAnalyzeSlideGroup>
<FrmAnalyzeSlideGroup>Confronto Demografico</FrmAnalyzeSlideGroup>
<lvwSlide_0>N°</lvwSlide_0>
<lvwSlide_1>Scegli Una Diapositiva Di Domanda</lvwSlide_1>
<lvwGroup_0>No</lvwGroup_0>
<lvwGroup_1>Informazioni Sul Gruppo</lvwGroup_1>
<lblGroup>Scegli un Gruppo</lblGroup>
<gbxChartLabel>Etichetta Grafico</gbxChartLabel>
<rbtChartDataLabel1>Numero</rbtChartDataLabel1>
<rbtChartDataLabel2>Percentuale</rbtChartDataLabel2>
<rbtChartDataLabel3>Numero E Percentuale</rbtChartDataLabel3>
<rbtChartDataLabel4>Nascondi</rbtChartDataLabel4>
<groupBox1>Tipo Di Grafico</groupBox1>
<rbtChartType1>Torta</rbtChartType1>
<rbtChartType3D1>Torta 3D</rbtChartType3D1>
<rbtChartType2>Verticale</rbtChartType2>
<rbtChartType3D2>Verticale 3D</rbtChartType3D2>
<rbtChartType3>Orizzontale</rbtChartType3>
<rbtChartType3D3>Orizzontale 3D</rbtChartType3D3>
<lblInfo>Nota: Fare Doppio Clic Sul Grafico Per La Visualizzazione A Schermo Intero</lblInfo>
<btnInvert>Opzione Di Contrasto Invertito</btnInvert>
<btnClose>Chiudi</btnClose>
<btnShowFull>Visualizzazione A Schermo Intero (Doppio Clic Sul Grafico)</btnShowFull>
</FrmAnalyzeSlideGroup>
<FrmRankScore>
<FrmRankScore>Punteggi</FrmRankScore>
<dgvRank_0>Classifica</dgvRank_0>
<dgvRank_1>Valutazione Oggetto</dgvRank_1>
<dgvRank_2>Punteggio Medio</dgvRank_2>
<dgvRank_3>Punteggio Totale</dgvRank_3>
<chkSelectAllSlide>Seleziona Tutto - Domanda</chkSelectAllSlide>
<lvwSlide_0/>
<lvwSlide_1>Domanda</lvwSlide_1>
<lblRankItem>Elemento Graduatoria</lblRankItem>
<clbRankItem_0>Punteggio Medio</clbRankItem_0>
<clbRankItem_1>Punteggio Totale</clbRankItem_1>
<gbxOrderBy>Statistiche</gbxOrderBy>
<rbtByScoreAvg> Punteggio Medio</rbtByScoreAvg>
<rbtByScoreSum>Punteggio Totale</rbtByScoreSum>
<rbtByScore>Punteggio</rbtByScore>
<rbtByCorrectRate>Percentuale Corretta</rbtByCorrectRate>
<chkBySpeed>Velocità</chkBySpeed>
<btnShowFull>Visualizzazione A Schermo Intero</btnShowFull>
<btnExport>Report Excel</btnExport>
<btnClose>Chiudi</btnClose>
</FrmRankScore>
<FrmRankVoter>
<FrmRankVoter>Classifica Dei Partecipanti</FrmRankVoter>
<dgvRank_0>Classifica</dgvRank_0>
<dgvRank_1>Tastiera N.</dgvRank_1>
<dgvRank_2>Nome</dgvRank_2>
<dgvRank_3>Punteggio</dgvRank_3>
<ChkSelectAllSlide>Selezionare Tutte Le Domande</ChkSelectAllSlide>
<lvwSlide_0>N°</lvwSlide_0>
<lvwSlide_1>Domanda</lvwSlide_1>
<lblVoterListField>Campo Dell'elenco Votanti</lblVoterListField>
<clbRosterField_0>Tastiera</clbRosterField_0>
<clbRosterField_1>Nome</clbRosterField_1>
<clbRosterField_2>Dipartimento</clbRosterField_2>
<lblRankItem>Elemento Graduatoria</lblRankItem>
<clbSortField_0>Punteggio</clbSortField_0>
<clbSortField_1>Domande Risposte Correttamente</clbSortField_1>
<clbSortField_2>Velocita Di Risposta</clbSortField_2>
<gbxOrderBy>Statistiche</gbxOrderBy>
<rbtByScore>Punteggio</rbtByScore>
<rbtByCorrectRate>Percentuale Corretta</rbtByCorrectRate>
<rbtByCorrectCount>Conteggio Corretto</rbtByCorrectCount>
<chkBySpeed>Velocità</chkBySpeed>
<chkBySpeed2>Velocità (Corretto)</chkBySpeed2>
<chkByNoAnswered>Non Eseguito</chkByNoAnswered>
<btnShowFull>Visualizzazione A Schermo Intero</btnShowFull>
<btnExport>Report Excel</btnExport>
<btnClose>Chiudi</btnClose>
<KeypadID>ID Tastiera</KeypadID>
</FrmRankVoter>
<FrmCanVoteSlideResult>
<FrmCanVoteSlideResult>Opzioni Specifiche Votante</FrmCanVoteSlideResult>
<lblSlide>Diapositiva</lblSlide>
<lvwSlide_0>N°</lvwSlide_0>
<lvwSlide_1>Soggetto Diapositiva</lvwSlide_1>
<lblOption>Consentito Solo Il Votante Che Invia L'opzione Selezionata</lblOption>
<lvwOption_0>N°</lvwOption_0>
<lvwOption_1>Opzione</lvwOption_1>
<btnSelectAll>Seleziona Tutto</btnSelectAll>
<btnSelectCorrect>Selezionare La Risposta Corretta</btnSelectCorrect>
<btnOK>OK</btnOK>
<btnCancel>Annulla</btnCancel>
<Correct>Corretto</Correct>
<CorrectAnswer>Risposta Corretta</CorrectAnswer>
<UpdatePrompt>Modificare Info Votante (Cancellerà Le Risposte Della Diapositiva Corrente) Continuare</UpdatePrompt>
<UpdateSave>Le Autorizzazioni Di Voto Sono State Modificate, Volete Salvarle?</UpdateSave>
<rbtOr>Contiene Opzioni</rbtOr>
<rbtAnd>Opzioni Pari</rbtAnd>
</FrmCanVoteSlideResult>
<FrmCanVoteVoterGroup>
<FrmCanVoteVoterGroup>Elenco Specifico Nomi Votanti </FrmCanVoteVoterGroup>
<lblSlide>Elenco Nomi</lblSlide>
<lblGroup>Consentito Solo Il Votante Che Sceglie L'opzione Selezionata Per Votare</lblGroup>
<lvwOption_0>N°</lvwOption_0>
<lvwSlide_0>N°</lvwSlide_0>
<lvwSlide_1>Nome Campo</lvwSlide_1>
<lvwGroup_0>Valori Campo</lvwGroup_0>
<btnSelectAll>Seleziona Tutto</btnSelectAll>
<btnOK>OK</btnOK>
<btnCancel>Annulla</btnCancel>
<UpdatePrompt>Modificare Info Votante (Cancellerà Le Risposte Della Diapositiva Corrente) Continuare?</UpdatePrompt>
<UpdateSave>Le Autorizzazioni Dei Votanti Sono State Modificate, Volete Salvarle?</UpdateSave>
<Correct>Corretto</Correct>
<CorrectAnwser> Risposta Corretta</CorrectAnwser>
</FrmCanVoteVoterGroup>
<FrmChannelReplace>
<FrmChannelReplace>Cambiare Canale Della Base</FrmChannelReplace>
<lblChannelNowLB>Canale Corrente</lblChannelNowLB>
<lblKeypadNewLB>Modificare</lblKeypadNewLB>
<btnOK>Cambiare Canale</btnOK>
<btnCancel>Chiudi</btnCancel>
<ChangeSuccess>Canale Modificato</ChangeSuccess>
<prompt>Prompt</prompt>
</FrmChannelReplace>
<FrmDeviceSet>
<FrmDeviceSet>Impostazioni Hardware</FrmDeviceSet>
<tpgBaseInfo>Impostazioni Della Stazione Base</tpgBaseInfo>
<tpgKeypadInfo>Info Tastiera</tpgKeypadInfo>
<dgvBaseList_0>Elenco Delle Base Station</dgvBaseList_0>
<dgvBaseList_1>ID</dgvBaseList_1>
<dgvBaseList_2>Canale</dgvBaseList_2>
<dgvBaseList_3>IP</dgvBaseList_3>
<dgvBaseList_4>Tipo</dgvBaseList_4>
<dgvBaseList_5>N° Di Serie</dgvBaseList_5>
<dgvBaseList_6>Modalità di Lavoro</dgvBaseList_6>
<dgvBaseList_7>Stato Della Connessione</dgvBaseList_7>
<lblBaseConnectType>Tipo Di Connessione</lblBaseConnectType>
<rbxBaseConnectUSB>USB</rbxBaseConnectUSB>
<rbxBaseConnectTCP>TCP/IP</rbxBaseConnectTCP>
<chkMultiBase>Abilita Più Stazioni Base</chkMultiBase>
<btnBaseConnect>Ricollegare</btnBaseConnect>
<btnBaseDisconnect>Scollegare</btnBaseDisconnect>
<btnClose>Chiudi</btnClose>
<Succeed>Operazione Riuscita</Succeed>
<CheckMessage>Più Di 1 Stazione Base Devono Essere Utilizzate In Modalità Multi Base</CheckMessage>
<CheckChannelFormat>Errore Formato Di Canale</CheckChannelFormat>
<CheckChannelRange>L'impostazione Del Canale È Fuori Gamma</CheckChannelRange>
<CheckChannelExist>Canale Occupato, Si Prega Di Utilizzarne Un Altro.</CheckChannelExist>
<CheckIPFormat>Formato IP Errato</CheckIPFormat>
<CheckIPExist>Gli IP Ripetuti Sono Vietati</CheckIPExist>
<gbxKeypadInfo>Info Tastiera</gbxKeypadInfo>
<gbxKeypadID>ID Tastiera </gbxKeypadID>
<gbxKeypadSN>N° Serie Tastiera </gbxKeypadSN>
<gbxHelpKeypadInfoRead>Help</gbxHelpKeypadInfoRead>
<lblHelpKeypadInfoRead1>Funzione: Lettura Info Tastiera </lblHelpKeypadInfoRead1>
<lblHelpKeypadInfoRead2>Fase 1: Fare Clic Su "Leggere Info Tastiera"</lblHelpKeypadInfoRead2>
<lblHelpKeypadInfoRead3>Fase 2: Tenere Premuto Il Tasto "Ok" Sulla Tastiera Fino Al Riscontro Del Software</lblHelpKeypadInfoRead3>
<btnKeypadInfoRead>Lettura Info Tastiera</btnKeypadInfoRead>
<btnKeypadInfoRead_Start>Inizio Lettura</btnKeypadInfoRead_Start>
<btnKeypadInfoRead_Stop>Lettura Terminata</btnKeypadInfoRead_Stop>
<MatchModeLab>Modalità di Lavoro</MatchModeLab>
<MatchMode1>Modalità Partita</MatchMode1>
<MatchMode2>Modalità Libera</MatchMode2>
<MatchMode3>Modalità Automatica</MatchMode3>
<labKeyNoMode>Identificazione Hardware</labKeyNoMode>
</FrmDeviceSet>
<FrmKeypadCountSet>
<FrmKeypadCountSet>Numero Della Tastiera</FrmKeypadCountSet>
<lblMemberNumber>Numero Dei Votanti</lblMemberNumber>
<lblHelpKeypadZone1>Intervallo Tastiere Valido</lblHelpKeypadZone1>
<lblHelpKeypadZone2>Separare Con " , ", O Indicare Una Serie Con " - ",</lblHelpKeypadZone2>
<lblHelpKeypadZone3>Esempio:" 1, 2, 3, 11-20"</lblHelpKeypadZone3>
<btnOK>OK</btnOK>
<btnCancel>Annulla</btnCancel>
<Message1>Errore Di Formato Per La Gamma Inserita, Immettere Nuovamente.</Message1>
<Message2>ID Tastiera Fuori Gamma.</Message2>
<Message3>Il Numero Di Tastiere È Inferiore Al Numero Dei Votanti, Ripetere.</Message3>
<SaveKeypadCountSet>Lista Abilitati, L'operazione Disattiverà L'elenco. Si Desidera Continuare?</SaveKeypadCountSet>
</FrmKeypadCountSet>
<FrmKeypadReplace>
<FrmKeypadReplace>Sostituzione Tastiera</FrmKeypadReplace>
<lblKeypadIDOld>ID Tastiera Da Sostituire</lblKeypadIDOld>
<lblKeypadIDNew>Sostituire Con</lblKeypadIDNew>
<btnOK>Sostituzione Tastiera</btnOK>
<btnCancel>Annulla</btnCancel>
<ReplaceSuccess>Tastiera Sostituita</ReplaceSuccess>
<ReplaceMassage0> L'ID Tastiera Da Sostituire Deve Essere Diverso Dall'ID Originale </ReplaceMassage0>
<ReplaceMassage1>Sostituzione Tastiera Non Valida</ReplaceMassage1>
<ReplaceMassage2>Tastiera In Uso</ReplaceMassage2>
<prompt>Prompt</prompt>
</FrmKeypadReplace>
<FrmKeypadShutdown>
<FrmKeypadShutdown>Spegnimento Remoto</FrmKeypadShutdown>
<btnKeypadShutdown>Avviare Lo Spegnimento Remoto</btnKeypadShutdown>
<btnClose>Chiudi</btnClose>
<txtInfo>Spegnimento In Corso</txtInfo>
<txtInfo1>Spegnimento In Corso</txtInfo1>
<txtInfo2>Spegnimento Remoto Avvenuto</txtInfo2>
</FrmKeypadShutdown>
<FrmKeypadTest>
<FrmKeypadTest>Test Tastiere</FrmKeypadTest>
<lblOnline>Online:</lblOnline>
<lblOffline>Offline:</lblOffline>
<lblELV>Carica Batterie Debole:</lblELV>
<lblBaseList>Lista Delle Stazioni Base </lblBaseList>
<lblTestType>Tipo Di Test</lblTestType>
<cobTestType_Text_0>Test Di Carica Batterie On Line</cobTestType_Text_0>
<cobTestType_Text_1> Test Di Votazione Automatico</cobTestType_Text_1>
<btnKeypadTest>Test</btnKeypadTest>
<btnKeypadTest_Start>Inizio Test</btnKeypadTest_Start>
<btnKeypadTest_Stop>Stop Test</btnKeypadTest_Stop>
<cobBaseList>Tutte Le Stazioni Base</cobBaseList>
<labCount>N° Tastiere:</labCount>
<btnExit>Uscita</btnExit>
</FrmKeypadTest>
<FrmKeypadType>
<FrmKeypadType>Tipo Di Tastiera</FrmKeypadType>
<lblKeypadType>Tipo Di Tastiera</lblKeypadType>
<lblKeypadInfo_ET50>ET50 tastiera: formato carta di credito, sottili e leggere, più funzioni, ed equipaggiata con due batterie- CR2032, facile da usare e trasportare, ideale per la formazione interattiva, competizione di punteggio, staff polling, ecc. aziendale</lblKeypadInfo_ET50>
<lblKeypadInfo_ET52>ET52 tastiera: formato carta di credito, sottili e leggere, più funzioni, ed equipaggiata con due batterie- CR2032, facile da usare e trasportare, ideale per la formazione interattiva, competizione di punteggio, staff polling, ecc. aziendale</lblKeypadInfo_ET52>
<lblKeypadInfo_ET52Plus>ET52Plus tastiera: formato carta di credito, sottili e leggere, più funzioni, ed equipaggiata con due batterie- CR2032, facile da usare e trasportare, ideale per la formazione interattiva, competizione di punteggio, staff polling, ecc. aziendale</lblKeypadInfo_ET52Plus>
<lblKeypadInfo_M50>Tastiera M50 Dimensioni Di Una Carta Di Credito, Sottile E Leggera, Più Funzioni, Alimentata Da Due Batterie A Bottone CR2032. Facile Da Usare E Da Trasportare, Ideale Per Formazione Interattiva, Punteggio Personale, Polling, Ecc. In Corporate</lblKeypadInfo_M50>
<lblKeypadInfo_M52>M52 Tastiera: Dimensioni Di Una Carta Di Credito, Sottile E Leggera, Più Funzioni, Alimentata Da Due Batterie A Bottone CR2032, Facile Da Usare E Da Trasportare, Ideale Per Formazione Interattiva, Punteggio Personale, Polling, Ecc. In Corporate</lblKeypadInfo_M52>
<lblKeypadInfo_M52Plus>M52Plus Keypad: Formato Carta Di Credito, Sottile E Leggera, Più Funzioni, Alimentata Da Due Batterie A Bottone CR2032, Facile Da Usare E Da Trasportare, Ideale Per Formazione Interattiva, Punteggio Personale, Polling, Ecc. In Corporate</lblKeypadInfo_M52Plus>
<lblKeypadInfo_F00>F00tastiera: Facile Da Usare, Conveniente Ed Efficace, Con Batteria Al Litio Ricaricabile Incorporata, Membrana Impermeabile Interruttori A Membrana, 2,4GHz, Wireless Digital Design Della Comunicazione, A Lungo Attesa.</lblKeypadInfo_F00>
<lblKeypadInfo_M40L>M40L Tastiera: 2x Batterie Tipo AA, Con Un Indicatore A Led Sulla Sua Sommità , Facile Da Usare , Facile Da Trasportare, Buona Per Quiz Interattivi, Concorsi Valutazioni, Voto Dei Dipendenti, Ecc.</lblKeypadInfo_M40L>
<btnOK>OK</btnOK>
<btnCancel>Annulla</btnCancel>
<txtInfo2>Spegnimento Remoto Effettuato</txtInfo2>
<cboKeypadType_Text_0>M52</cboKeypadType_Text_0>
<cboKeypadType_Text_1>M50</cboKeypadType_Text_1>
</FrmKeypadType>
<FrmPollList>
<FrmPollList>Elenco Dei Candidati</FrmPollList>
<dgvVoterList_0>N°</dgvVoterList_0>
<dgvVoterList_1>Candidato</dgvVoterList_1>
<btnInsert>Inserisci</btnInsert>
<btnDelete>Elimina</btnDelete>
<btnSave>Salva</btnSave>
<btnImport>Importa</btnImport>
<btnExport>Esporta</btnExport>
<btnClose>Chiudi</btnClose>
<CheckMessage1>È Possibile Immettere Solo Un ID Candidato, Modificare La Lista Candidati</CheckMessage1>
<CheckMessage2>ID Candidato Non Può Essere Vuoto , Modificare La Lista Candidati</CheckMessage2>
<CheckMessage3>ID Candidato Duplicato, Modificare La Lista Candidati</CheckMessage3>
<SavePollList>Si Desidera Salvare L'elenco Dei Partecipanti?</SavePollList>
<ExcelTitle>Elenco Dei Candidati</ExcelTitle>
<ExportSucceed>Esportazione Riuscita</ExportSucceed>
<SaveSuccess>Salvataggio Ok</SaveSuccess>
<lblExcel>Nota: Assicurarsi Che La Prima Riga Sia L'elenco, E La Prima Colonna Sia Numerica.</lblExcel>
<ImportSuccess>Importazione Completata</ImportSuccess>
<ImportFail>Importazione Non Riuscita</ImportFail>
<ImportData>Importazione Di Dati</ImportData>
</FrmPollList>
<FrmRankGroup>
<FrmRankGroup>Classifica Team</FrmRankGroup>
<dgvRank_0>Classifica</dgvRank_0>
<dgvRank_1>Nome Del Gruppo</dgvRank_1>
<dgvRank_2>Conteggio Membri</dgvRank_2>
<chkSelectAllSlide>Selezionare Tutte Le Domande</chkSelectAllSlide>
<lvwSlide_0>N°</lvwSlide_0>
<lvwSlide_1>Domanda</lvwSlide_1>
<lblGroup>Assegnazione Squadra</lblGroup>
<lblRankItem>Voce Di Classifica</lblRankItem>
<clbSortField_AgvScore>Punteggio Medio</clbSortField_AgvScore>
<clbSortField_AgvCorrect>Media Risposte Corrette</clbSortField_AgvCorrect>
<clbSortField_AgvSpeed>Velocità Media Di Risposta</clbSortField_AgvSpeed>
<clbSortField_TotalScore>Punteggio Totale</clbSortField_TotalScore>
<clbSortField_TotalCorrect>Totale Risposte Corrette</clbSortField_TotalCorrect>
<clbSortField_TotalSpeed>Velocità Totale Risposte</clbSortField_TotalSpeed>
<lblGroupType>Tipo Di Gruppo</lblGroupType>
<lblGroupItem>Informazioni Sul Gruppo</lblGroupItem>
<gbxOrderBy>Statistiche</gbxOrderBy>
<rbtByScore>Punteggio(Media)</rbtByScore>
<rbtByCorrectRate>Tasso Corretto(Media)</rbtByCorrectRate>
<rbtByCorrectCount>Conteggio Corretto(Media)</rbtByCorrectCount>
<rbtByCorrectCountSum>Conteggio Corretto(Somma)</rbtByCorrectCountSum>
<chkBySpeed>Velocità</chkBySpeed>
<cboRosterField>Tipo Di Tastiera</cboRosterField>
<btnShowFull>Visualizzazione A Schermo Intero</btnShowFull>
<btnExport>Report Excel</btnExport>
<btnClose>Chiudi</btnClose>
</FrmRankGroup>
<FrmRankPoll>
<FrmRankPoll>Classifica Sondaggio</FrmRankPoll>
<dgvRank_0>Classifica</dgvRank_0>
<dgvRank_1>Numero</dgvRank_1>
<dgvRank_2>Candidato</dgvRank_2>
<dgvRank_3>Conteggio</dgvRank_3>
<btnShowFull>Visualizzazione A Schermo Intero</btnShowFull>
<btnExport>Report Excel</btnExport>
<btnClose>Chiudi</btnClose>
<lvwSlide_0>N°</lvwSlide_0>
<lvwSlide_1>Domanda</lvwSlide_1>
</FrmRankPoll>
<FrmReport>
<FrmReport>Report</FrmReport>
<tpgVoteDetail>Risultati Per Partecipante</tpgVoteDetail>
<dgvVoteDetail_T_Index>Diapositiva N°</dgvVoteDetail_T_Index>
<dgvVoteDetail_TT_ID>Tipo Di Diapositiva</dgvVoteDetail_TT_ID>
<dgvVoteDetail_T_Note>Domanda</dgvVoteDetail_T_Note>
<dgvVoteDetail_V_KeypadID>Tastiera N°</dgvVoteDetail_V_KeypadID>
<dgvVoteDetail_R_Result>Risposta</dgvVoteDetail_R_Result>
<dgvVoteDetail_R_Score>Punteggio</dgvVoteDetail_R_Score>
<dgvVoteDetail_R_Correct>Corretto</dgvVoteDetail_R_Correct>
<dgvVoteDetail_R_Speed>Velocita Di Risposta</dgvVoteDetail_R_Speed>
<dgvVoteDetail_R_Time>Tempo Di Votazione</dgvVoteDetail_R_Time>
<tpgVoteResult>Risultati Per Domanda</tpgVoteResult>
<dgvVoteResult_T_Index>Diapositiva N°</dgvVoteResult_T_Index>
<dgvVoteResult_TT_ID>Tipo Di Diapositiva</dgvVoteResult_TT_ID>
<dgvVoteResult_T_Title>Titolo</dgvVoteResult_T_Title>
<dgvVoteResult_VoterCount>Votanti</dgvVoteResult_VoterCount>
<dgvVoteResult_SubmitCount>Conteggio</dgvVoteResult_SubmitCount>
<dgvVoteResult_VotedCount>Votati</dgvVoteResult_VotedCount>
<dgvVoteResult_T_Note>Domande E Risposte</dgvVoteResult_T_Note>
<btnExport>Esportazione</btnExport>
<btnExit>Uscita</btnExit>
</FrmReport>
<FrmSystemSet>
<FrmSystemSet>Impostazioni Di Sistema</FrmSystemSet>
<tpgSystemSet>Lingua</tpgSystemSet>
<gbxLanguage>Lingua di Sistema</gbxLanguage>
<labLanguage>Lingua</labLanguage>
<labFont>Font</labFont>
<tpgOprate>Funzionamento</tpgOprate>
<gbxAutoPage>Cambio Automatico Diapositiva</gbxAutoPage>
<chkTimeOut>Fine Del Conto Alla Rovescia</chkTimeOut>
<chkAllVoted>Quando Tutti I Voti Sono Raccolti</chkAllVoted>
<lblDelayTime>Cambiare Automaticamente Tempo Di Ritardo (Secondo)</lblDelayTime>
<gbxRemoteControl>Impostazioni Di Controllo Remoto PPT </gbxRemoteControl>
<chkRemoteControlEnabled>Abilitare Telecomandi 50R/ 40R </chkRemoteControlEnabled>
<tpgSoundSet>Impostazioni Audio</tpgSoundSet>
<lvwSound_0>Categoria</lvwSound_0>
<lvwSound_1>Percorso</lvwSound_1>
<lvwSound_Item_0>Musica di sottofondo</lvwSound_Item_0>
<lvwSound_Item_1>Voti Raccolti</lvwSound_Item_1>
<lvwSound_Item_2>Mostra risultato risposta</lvwSound_Item_2>
<lvwSound_Item_3>Mostra la risposta corretta</lvwSound_Item_3>
<btnSoundBrowse>Sfoglia...</btnSoundBrowse>
<btnSoundPlay>Play</btnSoundPlay>
<btnSoundStop>Stop</btnSoundStop>
<btnOK>OK</btnOK>
<btnCancel>Annulla</btnCancel>
<gbAddinType> Impostazione Caricamento Del Tipo Di Addin</gbAddinType>
<rbAuto>All'apertura del PPT</rbAuto>
<rbShotcut>Da Shortcut</rbShotcut>
<lblInfo>Solo L'account Amministratore È Autorizzato A Modificare</lblInfo>
<lblChartShow>Display Grafico</lblChartShow>
<cboChartShow_Text_0>A Chiusura Di Votazione</cboChartShow_Text_0>
<cboChartShow_Enum_0>csStop</cboChartShow_Enum_0>
<cboChartShow_Text_1>Ad Apertura Voto</cboChartShow_Text_1>
<cboChartShow_Enum_1>csStart</cboChartShow_Enum_1>
<cboChartShow_Text_2>Funzionamento Manuale</cboChartShow_Text_2>
<cboChartShow_Enum_2>csHandle</cboChartShow_Enum_2>
<cboChartShow_Text_3>Nascondi Grafico</cboChartShow_Text_3>
<cboChartShow_Enum_3>csHide</cboChartShow_Enum_3>
<gbDemo>Modalità Demo</gbDemo>
<chkDemo>Attivare La Modalità Demo</chkDemo>
<grbChart>Impostazione Grafico</grbChart>
<tpgSetAll>Impostazione Globale</tpgSetAll>
<grbVoteSet>Impostazioni Votazione</grbVoteSet>
<chkNameMode>Visibilità Votanti:</chkNameMode>
<cboNameMode_Text_0>Palese</cboNameMode_Text_0>
<cboNameMode_Text_1>Anonima</cboNameMode_Text_1>
<gbKeySet>Parametro Tastiera</gbKeySet>
<chkSubmitMode>Modalità Invio:</chkSubmitMode>
<cboSubmitMode_Text_0>Premere Ok Per Inviare</cboSubmitMode_Text_0>
<cboSubmitMode_Text_1>Invio Automatico</cboSubmitMode_Text_1>
<chkModifyMode>Modalità Di Modifica:</chkModifyMode>
<cboModifyMode_Text_0>Modificabile</cboModifyMode_Text_0>
<cboModifyMode_Text_1>Non Modificabile</cboModifyMode_Text_1>
<chkOptionMode>Opzione Formato:</chkOptionMode>
<cboOptionMode_Text_0>1234</cboOptionMode_Text_0>
<cboOptionMode_Text_1>ABCD</cboOptionMode_Text_1>
<gbChartSet>Impostazioni Grafico</gbChartSet>
<chkChartType>Tipo Di Grafico:</chkChartType>
<chkLableType>Etichetta:</chkLableType>
<chkChartShow>Visualizzazione Grafico:</chkChartShow>
<chkCharRate>Rapporto:</chkCharRate>
<chk3DShow>Tipo Di Visualizzazione:</chk3DShow>
<cboShowType_Text_0>Visualizzazione 2D</cboShowType_Text_0>
<cboShowType_Text_1>Visualizzazione 3D</cboShowType_Text_1>
<btnChartColor>Tabella Colori</btnChartColor>
<cboChartType_Text_0>Verticale</cboChartType_Text_0>
<cboChartType_Enum_0>ctColumn</cboChartType_Enum_0>
<cboChartType_Text_1>Orizzontale</cboChartType_Text_1>
<cboChartType_Enum_1>ctBar</cboChartType_Enum_1>
<cboChartType_Text_2> Rettangolo Verticale</cboChartType_Text_2>
<cboChartType_Enum_2>ctColumnBox</cboChartType_Enum_2>
<cboChartType_Text_3> Rettangolo Orizzontale</cboChartType_Text_3>
<cboChartType_Enum_3>ctBarBox</cboChartType_Enum_3>
<cboChartType_Text_4>Torta</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>Senza Etichetta</cboChartLabel_Text_3>
<cboChartLabel_Enum_3>ltNone</cboChartLabel_Enum_3>
<cboChartShow_Text_0>A Chiusura Di Votazione</cboChartShow_Text_0>
<cboChartShow_Enum_0>csStop</cboChartShow_Enum_0>
<cboChartShow_Text_1>Ad Apertura Votazione</cboChartShow_Text_1>
<cboChartShow_Enum_1>csStart</cboChartShow_Enum_1>
<cboChartShow_Text_2>Funzionamento Manuale</cboChartShow_Text_2>
<cboChartShow_Enum_2>csHandle</cboChartShow_Enum_2>
<cboChartRate_Text_0>Slide Successiva Manuale</cboChartRate_Text_0>
<cboChartRate_Enum_0>crParticipant</cboChartRate_Enum_0>
<cboChartRate_Text_1>Slide Successiva Automatica</cboChartRate_Text_1>
<cboChartRate_Enum_1>crResponse</cboChartRate_Enum_1>
<cboChartRate_Text_2>Slide Successiva con Si/No</cboChartRate_Text_2>
<cboChartRate_Enum_2>crVoteYesNo</cboChartRate_Enum_2>
<cboChartRate_Text_ChoiceCount>Number of choosed</cboChartRate_Text_ChoiceCount>
<cboChartRate_Enum_3>crChoiceCount</cboChartRate_Enum_3>
<btnSetAll>Si Applica A Tutto</btnSetAll>
<Prompt>prompt</Prompt>
<GlobalSetSucceed>Impostazione Riuscita</GlobalSetSucceed>
<chkDec>Decimali:</chkDec>
<gbxAutoVote>Avvia Automaticamente L'interrogazione</gbxAutoVote>
<chkAutoVote>Avvia L'interrogazione Automaticamente Quando Le Diapositive Sono Presentate</chkAutoVote>
<tabEmailSet>Impostazioni E-Mail</tabEmailSet>
<grpEmailOut>Impostazione Posta In Uscita</grpEmailOut>
<labEmailOut>Inserire Un Account Di Posta Elettronica Valido (Accertarsi Che L'account Sia Stato Impostato E Testato Con Successo In Outlook Sul Computer Dove E'Installato ARS PPT)</labEmailOut>
<labEmailPWD>Password</labEmailPWD>
<labEmailServer>Server Di Posta In Uscita</labEmailServer>
<labEmailPort>Porta (Opzionale)</labEmailPort>
<gbxEmailIn>Impostazione Posta In Arrivo</gbxEmailIn>
<labEmailInAdds>Please set the email address (will be send report automatically when PPT closing, seperate each email address with ';')</labEmailInAdds>
<gbxEmailReport>Selezionare La Relazione Che Sarà Inviata Automaticamente</gbxEmailReport>
<SendMsgAsk>Vuoi Inviare La Relazione Via Posta?</SendMsgAsk>
<SendMsgAskTitle>Relazioni Mail</SendMsgAskTitle>
<SendMsgSuccess>Mail Inviata Correttamente!</SendMsgSuccess>
<SendMsgFail>Impossibile Inviare Mail! Messaggio Di Errore:</SendMsgFail>
<gbxVoteStatus>Status Votazione</gbxVoteStatus>
<chkShowVoteStatus>Quando Nascondi Barra Votazione, Mostra Status Votazione</chkShowVoteStatus>
<chkNotVotedScore>Nessun Tentativo Riceve Un Segno Negativo</chkNotVotedScore>
<gbxInsertSlideObject>Inserisci Oggetto In Tutte Le Nuove Diapositive</gbxInsertSlideObject>
<chkChartShowWindow>The Chart Always Show With Window Mode On Slide Showing</chkChartShowWindow>
<chkStopShowCorrectAsw>Visualizza la risposta corretta al termine del voto</chkStopShowCorrectAsw>
</FrmSystemSet>
<FrmVoteBar>
<tsbConnectState_Text>Stato Di Connessione Della Stazione Base</tsbConnectState_Text>
<tsbConnectState_ToolTipText>Stato Di Connessione Della Stazione Base</tsbConnectState_ToolTipText>
<ddbNewSlide_Text>Diapositiva Estemporanea</ddbNewSlide_Text>
<ddbNewSlide_ToolTipText>Creare</ddbNewSlide_ToolTipText>
<ddbCanVote_Text>Autorizzare Tastiera</ddbCanVote_Text>
<ddbCanVote_ToolTipText>Autorizzare Tastiera</ddbCanVote_ToolTipText>
<tsbShowResult_Text_Show>Mostra Grafico (G)</tsbShowResult_Text_Show>
<tsbShowResult_ToolTipText_Show>Mostra Grafico (G)</tsbShowResult_ToolTipText_Show>
<tsbShowResult_Text_Hide>Nascondi Grafico (G)</tsbShowResult_Text_Hide>
<tsbShowResult_ToolTipText_Hide>Nascondi Grafico (G)</tsbShowResult_ToolTipText_Hide>
<tsbVoteStart_Text_Start>Avviare Il Feedback (S)</tsbVoteStart_Text_Start>
<tsbVoteStart_ToolTipText_Start>Avviare Il Feedback (S)</tsbVoteStart_ToolTipText_Start>
<tsbVoteStart_Text_Stop>Arrestare Il Feedback (S)</tsbVoteStart_Text_Stop>
<tsbVoteStart_ToolTipText_Stop>Arrestare Il Feedback (S)</tsbVoteStart_ToolTipText_Stop>
<tsbVoteClearStart_Text>Rivotare (Reset) (R)</tsbVoteClearStart_Text>
<tsbVoteClearStart_ToolTipText>Rivotare (Reset) (R)</tsbVoteClearStart_ToolTipText>
<tsbVoteClear_Text>Reset Diapositiva Corrente(D)</tsbVoteClear_Text>
<tsbVoteClear_ToolTipText>Reset Diapositiva Corrente(D)</tsbVoteClear_ToolTipText>
<tsbVoteDetail_Text>Dettagli Risposta (K)</tsbVoteDetail_Text>
<tsbVoteDetail_ToolTipText>Dettagli Risposta (K)</tsbVoteDetail_ToolTipText>
<tsbCorrectAnswer_Text_Show>Mostra Risposta Corretta (A)</tsbCorrectAnswer_Text_Show>
<tsbCorrectAnswer_ToolTipText_Show>Mostra Risposta Corretta (A)</tsbCorrectAnswer_ToolTipText_Show>
<tsbCorrectAnswer_Text_Hide>Nascondi Risposta Corretta (A)</tsbCorrectAnswer_Text_Hide>
<tsbCorrectAnswer_ToolTipText_Hide>Nascondi Risposta Corretta (A)</tsbCorrectAnswer_ToolTipText_Hide>
<tsbRushAnswer_Text>Avvio Risposta Più Veloce (Q)</tsbRushAnswer_Text>
<tsbRushAnswer_ToolTipText>Avvio Risposta Più Veloce (Q)</tsbRushAnswer_ToolTipText>
<tsbLuckyShow>Appello Casuale (U)</tsbLuckyShow>
<ddbAnalyzer_Text>Analisi Dei Dati</ddbAnalyzer_Text>
<ddbAnalyzer_ToolTipText>Analisi Dei Dati</ddbAnalyzer_ToolTipText>
<ddbDock_Text>Posizione Barra Degli Strumenti</ddbDock_Text>
<ddbDock_ToolTipText>Posizione Barra Degli Strumenti</ddbDock_ToolTipText>
<tsbAutoHide_Text>Nascondi Automaticamente(H)</tsbAutoHide_Text>
<tsbAutoHide_ToolTipText>Nascondi Automaticamente(H)</tsbAutoHide_ToolTipText>
<ConnectStatus> Stato Di Connessione Della Stazione Base:</ConnectStatus>
<Connected>Stazione Base Collegata</Connected>
<UnConnected>Stazione Base Collegata</UnConnected>
<AutoHide>Nascondi Automaticamente</AutoHide>
<AutoHideCancel>Annulla La Funzione Auto-Hide</AutoHideCancel>
<tsmRateCorrect>Percentuale Corretta</tsmRateCorrect>
<tsmRateOption>Percentuale Di Selezione</tsmRateOption>
<tssAnalyzer1>-</tssAnalyzer1>
<tsmAnalyzeSlideOption>Confronto Tra Le Opzioni</tsmAnalyzeSlideOption>
<tsmAnalyzeSlideCross>Confronto di 2 Diapositive</tsmAnalyzeSlideCross>
<tsmAnalyzeSlideGroup>Confronto Demografico</tsmAnalyzeSlideGroup>
<tsmRankVoter>Classifica Dei Partecipanti</tsmRankVoter>
<tsmRankGroup>Classifica Team</tsmRankGroup>
<tsmRankScore>Classifica Punteggi</tsmRankScore>
<tsmRankPoll>Classifica Polling</tsmRankPoll>
<lblAutoHideMsg>Sei Sicuro Di Voler Nascondere La Barra Degli Strumenti? Dopo Averla Nascosta, Premere H Oppure Spostare Il Mouse Sulla Barra Degli Strumenti Per Visualizzarla.</lblAutoHideMsg>
</FrmVoteBar>
<FrmVoteDemoInfo>
<FrmVoteDemoInfo>Modalità Demo</FrmVoteDemoInfo>
<lblInfo>Modalità Demo</lblInfo>
</FrmVoteDemoInfo>
<FrmVoteDetail>
<FrmVoteDetail>Dettagli Risposta</FrmVoteDetail>
<lblOnline>On Line:</lblOnline>
<lblWeak>Corrente Debole :</lblWeak>
<lblShowRoster>Mostra Elenco Partecipanti</lblShowRoster>
<lblShowData>Mostra Dati</lblShowData>
<lblTotal_Participate>Partecipante:</lblTotal_Participate>
<lblTotal_Due>Partecipante</lblTotal_Due>
<lblVoted_Response>Inviato:</lblVoted_Response>
<lblVoted_Arrive>Arrivato:</lblVoted_Arrive>
<lblNoPress_UnResponse>Non Inviato:</lblNoPress_UnResponse>
<lblVoted_UnArrive>Mancato Arrivo:</lblVoted_UnArrive>
<cboShowData_Text_0>Tutte Le Tastiere</cboShowData_Text_0>
<cboShowData_Text_1>Nessun Feedback</cboShowData_Text_1>
<cboShowData_Text_2>Premere Valore</cboShowData_Text_2>
<cboShowData_Text_3>Raggruppare per Valore</cboShowData_Text_3>
<lblSameCode>Codice D'accesso Ripetuto</lblSameCode>
<SignCode>Codice D'accesso</SignCode>
<FullScreen>Schermo Intero</FullScreen>
<NormalScreen>Uscire Dalla Modalità A Tutto Schermo</NormalScreen>
<ShowKeypadNo>Numero Della Tastiera</ShowKeypadNo>
<ShowSN>Serial N°</ShowSN>
<btnReportVote>Esporta Report</btnReportVote>
<LBYes>Si: </LBYes>
<LBNo>No: </LBNo>
<LBAbs>Astenuto: </LBAbs>
<chkShowNoSignInOK>Show pending list</chkShowNoSignInOK>
<btnImportData>Import Data</btnImportData>
</FrmVoteDetail>
<FrmVoterList>
<FrmVoterList>Elenco Dei Partecipanti</FrmVoterList>
<lblFieldSignInCode>Codice Di Registrazione Valido</lblFieldSignInCode>
<lblInfo>Prompt</lblInfo>
<btnInsert>Inserisci</btnInsert>
<btnDelete>Elimina</btnDelete>
<btnSave>Salva</btnSave>
<btnImport>Importa</btnImport>
<btnExport>Esporta</btnExport>
<btnClose>Chiudi</btnClose>
<dgvVoterList_0>ID Tastiera</dgvVoterList_0>
<dgvVoterList_1>Nome</dgvVoterList_1>
<dgvVoterList_2>Assegnazione Squadra</dgvVoterList_2>
<dgvVoterList_3> Codice Registrazione</dgvVoterList_3>
<ExcelTitle>Elenco Dei Partecipanti</ExcelTitle>
<LoadSuccess>Fine Caricamento Dati</LoadSuccess>
<ImportStart>Avviare L'importazione Dei Dati</ImportStart>
<GetExcelData>Ottieni Dati Excel</GetExcelData>
<ImportSuccess>Importazione Completata, Impostare Mostra Nome Campo</ImportSuccess>
<SaveSuccess>Dati Salvati Correttamente.</SaveSuccess>
<KeypadFormat>L'ID Tastiera Deve Essere Compreso Tra 1 e 9999</KeypadFormat>
<KeypadRepeat>ID Tastiera Ripetuto</KeypadRepeat>
<lblFieldSignInCode>Campo Del Codice Di Accesso</lblFieldSignInCode>
<KeyIDFormat>Il Numero Tastiera Deve Essere Numerico</KeyIDFormat>
<KeyIDNull>Il Numero Tastiera Non Può Essere Vuoto</KeyIDNull>
<KeyIDRep>Il Numero Tastiera Non Permettere La Ripetizione</KeyIDRep>
<SignCodeFormat>Il Codice D'accesso Deve Essere Numerico</SignCodeFormat>
<SignCodeNull>Il Codice D'accesso Non Può Essere Vuoto</SignCodeNull>
<SignCodeRep>Il Codice D'accesso Non Permettere La Ripetizione</SignCodeRep>
<IsSave>I Dati Attuali Sono Stati Modificati. Salvare Comunque?</IsSave>
<lblFieldVoteRate>Campo Percentuale Di Voti </lblFieldVoteRate>
<lblFieldShowName>Mostra Nome Campo</lblFieldShowName>
<Unsetting>Non Impostato</Unsetting>
<lblFieldUID>UID or Student ID:</lblFieldUID>
<chkSelectShowCol>Show belowfield in report</chkSelectShowCol>
</FrmVoterList>
<FrmChartSet>
<FrmChartSet>Impostazione Grafico</FrmChartSet>
<lblChartSetColor>Tabella Colori</lblChartSetColor>
<lblColorSet>Fare Clic Sul Grafico Per Modificare Il Colore</lblColorSet>
<lvwColorSet_0>N°</lvwColorSet_0>
<gbxFontSet>Impostazioni Carattere</gbxFontSet>
<lblFontObject>Impostazioni Oggetto</lblFontObject>
<cboFontObject_Text_0>Opzioni Etichetta</cboFontObject_Text_0>
<cboFontObject_Text_1>Dati Etichetta</cboFontObject_Text_1>
<lblFontName>Carattere</lblFontName>
<lblFontSize>DimensioneFont</lblFontSize>
<lblFontColor>Colore Font</lblFontColor>
<chkFontBold>Font Grassetto</chkFontBold>
<chkFontItalic>Font Corsivo</chkFontItalic>
<btnOK>OK</btnOK>
<btnCancel>Annulla</btnCancel>
</FrmChartSet>
<FrmAllChartSet>
<FrmAllChartSet>Impostazioni Grafico</FrmAllChartSet>
<chkChartColor>Tabella Colori</chkChartColor>
<lvwColorSet_0>N°</lvwColorSet_0>
<gbxFontSet>Impostazioni Carattere</gbxFontSet>
<lblFontObject>Impostazioni Oggetto</lblFontObject>
<cboFontObject_Text_0>Opzioni Etichetta</cboFontObject_Text_0>
<cboFontObject_Text_1>Dati Etichetta</cboFontObject_Text_1>
<chkFontName>Nome Font</chkFontName>
<chkFontSize>Dimensione Font</chkFontSize>
<chkFontColor>Colore Font</chkFontColor>
<chkFontType>Carattere</chkFontType>
<cboFontType_Text_0>Normale</cboFontType_Text_0>
<cboFontType_Text_1>Font Grassetto</cboFontType_Text_1>
<cboFontType_Text_2>Font Corsivo</cboFontType_Text_2>
<btnOK>Applica A Tutti</btnOK>
<btnCancel>Annulla</btnCancel>
<Prompt>prompt</Prompt>
<GlobalSetSucceed>Impostazioni Riuscite</GlobalSetSucceed>
<chkFontBold>Font Grassetto</chkFontBold>
<chkFontItalic>Font Corsivo</chkFontItalic>
<chkChartColorAll>Il Grafico Usa Un Colore</chkChartColorAll>
</FrmAllChartSet>
<PPTEdit>
<SignIn>Registrati</SignIn>
<UnSignIn>Non Registrati</UnSignIn>
</PPTEdit>
<PPTOper>
<SignIn>Appello</SignIn>
<Group>Assegnazione Squadra</Group>
<Choice>Scelta</Choice>
<SingleChoice>Scelta Singola</SingleChoice>
<MultiChoice>Scelta Multipla</MultiChoice>
<Judge>Giudizio</Judge>
<Order>Ordinamento</Order>
<Number>Numerico</Number>
<Vote>Voto</Vote>
<Grade>Scala Gradimento</Grade>
<Score>Punteggio</Score>
<Poll>Interrogazione</Poll>
<Signed>Registrat</Signed>
<UnSignIn>Non Registrato</UnSignIn>
<SignFail>Accesso Non Riuscito</SignFail>
<GroupOption>Team </GroupOption>
<ChoiceOption>Opzione</ChoiceOption>
<JudgeYes>Sì</JudgeYes>
<JudgeNo>No</JudgeNo>
<OrderOption>Opzione</OrderOption>
<VoteAgree>Yes</VoteAgree>
<VoteAgainst>No</VoteAgainst>
<VoteAbstain>Astenuto</VoteAbstain>
<GradeOption>Opzione</GradeOption>
<LableExist>L'etichetta Dei Dati Esiste Già!</LableExist>
<prompt>Prompt</prompt>
<sumscore>Punteggio Totale</sumscore>
<avgscore>Punteggio Medio</avgscore>
<Shouldnumber>Partecipante</Shouldnumber>
<votingnumber>Votato</votingnumber>
<votingmean>Media</votingmean>
<answer>Risposta Corretta</answer>
<correctno>Conteggio Corretto</correctno>
<participate>Votante</participate>
<participate2>Votante</participate2>
<votingnumber2>Votato</votingnumber2>
<TitleSignIn>Prego, Registrarsi</TitleSignIn>
<TitleGroup>Selezionare Team.</TitleGroup>
<TitleChoice>Fai La Tua Scelta...</TitleChoice>
<TitleChoice_M>Fai La Tua Scelta...</TitleChoice_M>
<TitleJudgeYesNo>Siete D'accordo?</TitleJudgeYesNo>
<TitleJudgeTrueFalse>Qual È Il Vostro Parere?</TitleJudgeTrueFalse>
<TitleJudgeRightWrong>Qual È Il Vostro Parere?</TitleJudgeRightWrong>
<TitleOrder>Fate La Vostra classifica.</TitleOrder>
<TitleNumber>Si Prega Di Fornire Il Vostro Numero.</TitleNumber>
<TitleVote>Siete D'accordo?</TitleVote>
<TitleGrade>Qual È Il Vostro Parere?</TitleGrade>
<TitleScore>Si Prega Di Fornire Il Proprio Punteggio.</TitleScore>
<TitlePoll>Fate La Vostra Interrogazione.</TitlePoll>
<TitleText>Inserire Testo</TitleText>
<VotingMiss>Non votanti</VotingMiss>
<VotingMiss2>Non votanti</VotingMiss2>
<OperatorSlide>Per avviare la presentazione inserisci il tuo nome:</OperatorSlide>
<NotInputOperatorMsg>Per favore prima inserire una diapositiva operatore e quindi il nome dell'operatore per iniziare a votare.</NotInputOperatorMsg>
<groupAvgScore>Media Gruppo</groupAvgScore>
<groupAvgScoreTableCol2>Punteggio</groupAvgScoreTableCol2>
<GroupTitle>Group</GroupTitle>
<ScoreGroupAVG>AVG Score</ScoreGroupAVG>
<ScoreGroupDetailNo>Keypad No</ScoreGroupDetailNo>
<ScoreGroupDetailName>Name</ScoreGroupDetailName>
<ScoreGroupDetailScore>Score</ScoreGroupDetailScore>
<VoteMedian>Median</VoteMedian>
<VoteRange>Range</VoteRange>
</PPTOper>
<FrmScoreGroupRate>
<dgvRate_0>Gruppo</dgvRate_0>
<dgvRate_1>Percentuale</dgvRate_1>
<dgvRate_2>Remove Max Count</dgvRate_2>
<dgvRate_3>Remove Min Count</dgvRate_3>
</FrmScoreGroupRate>
<Other>
<Unrestricted>Nessun Limite</Unrestricted>
<PollNumber>ID</PollNumber>
<PollName>Nome</PollName>
<PollCount>Conteggio</PollCount>
<PollNumberStr>N°</PollNumberStr>
<PollCountStr>Scrutinio</PollCountStr>
<DogFailed>Un Errore Di Convalida Dongle Può Disattivare La Funzione Di Risposta Del Tastierino Numerico.</DogFailed>
<AccessDBErr>Detected incomplete Microsoft Office Access, please try it again after reinstall the Access</AccessDBErr>
<BaseUsedByApp>Detected software has base station conflict with current use, please close other software first!</BaseUsedByApp>
<ChannelInterference>Detected channel interference, do you want to change your channel? Press "Y" to change the channel and "N" to stop prompt.</ChannelInterference>
<OrderGroupChartRank>Avg.\r\nRanking</OrderGroupChartRank>
<ToClosePresenter>1.Please tick off "Use Presenter View" before polling for office 2010 and above, otherwise it may cause interference in polling.
2.Please install the printer before export reports, otherwise it may cause error.</ToClosePresenter>
</Other>
<FrmOptionTextSelect>
<FrmOptionTextSelect>Opzione Impostazione Del Testo</FrmOptionTextSelect>
<lblMsg>Per Favore Selezionare L'opzione Testo Da Associare</lblMsg>
<dgvOptionText_0>Opzione</dgvOptionText_0>
<btnOK>OK</btnOK>
<btnCancel>Annulla</btnCancel>
</FrmOptionTextSelect>
<FrmRushAnswer>
<FrmRushAnswer>Risposta Veloce</FrmRushAnswer>
<lblTitle>Preaparate Risposta Veloce!</lblTitle>
<lblMsg1>Rispondere Velocemente ...</lblMsg1>
<lblMsg2>ID - Risponditore Ok!</lblMsg2>
<lblMsg3>- - Risponditore Ok!</lblMsg3>
</FrmRushAnswer>
<FrmErrorMsg>
<FrmErrorMsg>Suggerimenti per Eccezioni</FrmErrorMsg>
<txtMsg>Il Programma Rileva Conflitti Di Risorse O Eccezioni \R \N \N 1) Verificare Se Gli Altri Plug-In, Consentendo I Conflitti Causati \R \N 2. Visualizza Dettagli \R \N 3. Visualizzare Il Log, È Possibile Inviare I Registri Per Il Supporto Tecnico Per Risolvere Il Problema</txtMsg>
<btnShowDetail>Fare Clic Qui Per Ulteriori Informazioni</btnShowDetail>
<btnShowDetail_1>Nascondere I Dettagli</btnShowDetail_1>
<btnShowLog>Visualizza Registro...</btnShowLog>
<btnCancel>Annulla</btnCancel>
</FrmErrorMsg>
<FrmUploadServerXD>
<FrmUploadServerXD>Inviare I Dati Al Server</FrmUploadServerXD>
<dgvQuestionPoint_0>N°</dgvQuestionPoint_0>
<dgvQuestionPoint_1>Info Diapositiva</dgvQuestionPoint_1>
<dgvQuestionPoint_2>Livello di Apprendimento</dgvQuestionPoint_2>
<lblSchool>Scuola</lblSchool>
<lblTeacher>Insegnante</lblTeacher>
<lblGrade>Grado</lblGrade>
<lblClass>Classe</lblClass>
<lblCourse>Corso</lblCourse>
<btnSubmit>Inviare I Dati</btnSubmit>
<btnExit>Uscita</btnExit>
<msgSubmitOK>Invio Effettuato!</msgSubmitOK>
</FrmUploadServerXD>
<FrmVoteBarSmall>
<lblVoting>Votare..</lblVoting>
<lblStop>Stop</lblStop>
</FrmVoteBarSmall>
<PanelRankChart>
<gbxRankSet>Impostazione Classifica</gbxRankSet>
<RankSetVoter>Impostazione Classifica Partecipanti</RankSetVoter>
<RankSetGroup>Impostazione Classifica Team</RankSetGroup>
<RankSetMode1>Inoltro Cumulativo</RankSetMode1>
<RankSetMode2>Diapositiva Precedente</RankSetMode2>
<RankSetMode3>Personalizza Selezione</RankSetMode3>
<lblColShow>Graduatoria Da</lblColShow>
<lblRankCount>Mostra Top Count</lblRankCount>
<lblRankMode>Calcolo Punteggio</lblRankMode>
</PanelRankChart>
<FrmChartRankSet>
<FrmChartRankSet>Personalizzare Diapositiva Selezione</FrmChartRankSet>
<lvwSlide_0>N°</lvwSlide_0>
<lvwSlide_1>Domanda</lvwSlide_1>
<btnOK>OK</btnOK>
<btnCancel>Annulla</btnCancel>
</FrmChartRankSet>
<FrmShowCol>
<FrmShowCol>Campi Personalizzati Visualizzazione</FrmShowCol>
<CustomCol>Personalizza..</CustomCol>
</FrmShowCol>
<ReportExcel>
<QuestionCount>Numero Di Domande</QuestionCount>
<Votes>Voti</Votes>
<Others>Altri</Others>
<OpratorHead>Operator:</OpratorHead>
<SynthesisNotExist>Synthesis is not available:</SynthesisNotExist>
</ReportExcel>
<PanelSlideCompChart>
<lblSlide1>Confronta Diapositiva 1</lblSlide1>
<lblSlide2>Confronta Diapositiva 2</lblSlide2>
</PanelSlideCompChart>
<PanelSlideCompVote>
<gbxSet>Risultato della votazione (in numeri)</gbxSet>
<lblSlide1>Slide favorevoli</lblSlide1>
<lblSlide2>Slide contrari</lblSlide2>
<lblSlide3>Slide astenuti</lblSlide3>
<VoteYes>Per</VoteYes>
<VoteNo>Contrari</VoteNo>
<VoteAbs>Astenuti</VoteAbs>
<TableLine0> </TableLine0>
<TableLine1>Presenti</TableLine1>
<TableLine2> </TableLine2>
<TableLine3>Risoluzione</TableLine3>
<TableLine4>Non votanti</TableLine4>
<TableLine5>Votanti</TableLine5>
<TableLine6>Per</TableLine6>
<TableLine7>Contrari</TableLine7>
<TableLine8>Astenuti</TableLine8>
</PanelSlideCompVote>
<FrmImportSlideSelect>
<FrmImportSlideSelect>Importa Elenco Domande</FrmImportSlideSelect>
<lblHelpZone1>Gamma Numerica Valida</lblHelpZone1>
<lblHelpZone2>Separare Con " , ", O Indicare Una Serie Con " - ", </lblHelpZone2>
<lblHelpZone3>Esempio:" 1, 2, 3, 11-20"</lblHelpZone3>
<btnOK>OK</btnOK>
<btnCancel>Annulla</btnCancel>
</FrmImportSlideSelect>
</Language>