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
|
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: IT VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-11-26 22:26+0000\n"
"PO-Revision-Date: 2013-04-28 10:27+0100\n"
"Last-Translator: Maci <macibro@gmail.com>\n"
"Language-Team: \n"
"Language: Italiano\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 1.5.5\n"
#: src/wx/subtitle_panel.cc:48 src/wx/subtitle_panel.cc:57
msgid "%"
msgstr "%"
#: src/wx/about_dialog.cc:78
msgid ""
"(C) 2012-2013 Carl Hetherington, Terrence Meiczinger, Paul Davis, Ole Laursen"
msgstr ""
#: src/wx/config_dialog.cc:105
msgid "(restart DCP-o-matic to see language changes)"
msgstr "(riavviare DCP-o-matic per vedere i cambiamenti di lingua)"
#: src/wx/colour_conversion_editor.cc:83
msgid "1 / "
msgstr ""
#: src/wx/audio_panel.cc:237
msgid "1 channel"
msgstr "1 canale"
#: src/wx/video_panel.cc:200
msgid "2D"
msgstr ""
#: src/wx/film_editor.cc:215
msgid "2K"
msgstr ""
#: src/wx/film_editor.cc:163
msgid "3D"
msgstr ""
#: src/wx/video_panel.cc:201
msgid "3D left/right"
msgstr ""
#: src/wx/film_editor.cc:216
msgid "4K"
msgstr ""
#: src/wx/about_dialog.cc:30
#, fuzzy
msgid "About DCP-o-matic"
msgstr "DCP-o-matic"
#: src/wx/kdm_dialog.cc:66
msgid "Add Cinema..."
msgstr ""
#: src/wx/kdm_dialog.cc:73
msgid "Add Screen..."
msgstr ""
#: src/wx/film_editor.cc:268
msgid "Add file(s)..."
msgstr ""
#: src/wx/film_editor.cc:270
msgid "Add folder..."
msgstr ""
#: src/wx/audio_dialog.cc:33 src/wx/audio_panel.cc:40
msgid "Audio"
msgstr "Audio"
#: src/wx/audio_panel.cc:67
msgid "Audio Delay"
msgstr "Ritardo dell'audio"
#: src/wx/audio_panel.cc:52
msgid "Audio Gain"
msgstr "Guadagno dell'audio"
#: src/wx/dci_metadata_dialog.cc:39
msgid "Audio Language (e.g. EN)"
msgstr "Lingua dell'audio (es. EN)"
#: src/wx/audio_panel.cc:81
#, fuzzy
msgid "Audio Stream"
msgstr "Ritardo dell'audio"
#: src/wx/film_editor.cc:158
#, fuzzy
msgid "Audio channels"
msgstr "canali"
#: src/wx/job_wrapper.cc:38
#, c-format
msgid "Bad setting for %s (%s)"
msgstr "Valore sbagliato per %s (%s)"
#: src/wx/video_panel.cc:123
msgid "Bottom crop"
msgstr "Taglio in basso"
#: src/wx/dir_picker_ctrl.cc:38
msgid "Browse..."
msgstr "Sfoglia..."
#: src/wx/gain_calculator_dialog.cc:36
msgid "But I have to use fader"
msgstr "Ma dovrò riprodurre con il fader a"
#: src/wx/audio_mapping_view.cc:191
msgid "C"
msgstr ""
#: src/wx/audio_panel.cc:63
msgid "Calculate..."
msgstr "Calcola..."
#: src/wx/job_manager_view.cc:66
msgid "Cancel"
msgstr "Annulla"
#: src/wx/audio_dialog.cc:44
msgid "Channels"
msgstr "Canali"
#: src/wx/content_menu.cc:137
#, fuzzy
msgid "Choose a file"
msgstr "Crea nella cartella"
#: src/wx/film_editor.cc:737
msgid "Choose a file or files"
msgstr ""
#: src/wx/content_menu.cc:130 src/wx/film_editor.cc:760
#, fuzzy
msgid "Choose a folder"
msgstr "Crea nella cartella"
#: src/wx/content_colour_conversion_dialog.cc:33
#: src/wx/preset_colour_conversion_dialog.cc:30 src/wx/video_panel.cc:164
msgid "Colour conversion"
msgstr ""
#: src/wx/config_dialog.cc:63
msgid "Colour conversions"
msgstr ""
#: src/wx/film_editor.cc:133
#, fuzzy
msgid "Container"
msgstr "Contenuto"
#: src/wx/film_editor.cc:86
msgid "Content"
msgstr "Contenuto"
#: src/wx/film_editor.cc:138
msgid "Content Type"
msgstr "Tipo di contenuto"
#: src/wx/audio_mapping_view.cc:180
#, fuzzy
msgid "Content channel"
msgstr "1 canale"
#: src/wx/video_panel.cc:333
#, c-format
msgid "Content frame rate %.4f\n"
msgstr ""
#: src/wx/dci_metadata_dialog.cc:35
#, fuzzy
msgid "Content version"
msgstr "Tipo di contenuto"
#: src/wx/video_panel.cc:291
#, fuzzy, c-format
msgid "Content video is %dx%d (%.2f:1)\n"
msgstr "Il video originale è %dx%d (%.2f:1)\n"
#: src/wx/audio_dialog.cc:136
msgid "Could not analyse audio."
msgstr ""
#: src/wx/film_viewer.cc:336
#, c-format
msgid "Could not decode video for view (%s)"
msgstr "Non posso decodificare il video per guardarlo (%s)"
#: src/wx/job_wrapper.cc:40
#, c-format
msgid "Could not make DCP: %s"
msgstr "Non posso creare il DCP: %s"
#: src/wx/new_film_dialog.cc:48
msgid "Create in folder"
msgstr "Crea nella cartella"
#: src/wx/config_dialog.cc:284
#, fuzzy
msgid "Creator"
msgstr "Crea nella cartella"
#: src/wx/video_panel.cc:303
#, c-format
msgid "Cropped to %dx%d (%.2f:1)\n"
msgstr "Tagliato da %dx%d (%.2f:1)\n"
#: src/wx/video_panel.cc:242
msgid "Custom"
msgstr ""
#: src/wx/dci_metadata_dialog.cc:30
msgid "DCI name"
msgstr "Nome del DCP"
#: src/wx/film_editor.cc:88 src/wx/kdm_dialog.cc:102
msgid "DCP"
msgstr ""
#: src/wx/film_editor.cc:117
msgid "DCP Name"
msgstr "Nome del DCP"
#: src/wx/about_dialog.cc:45 src/wx/wx_util.cc:87 src/wx/wx_util.cc:95
msgid "DCP-o-matic"
msgstr "DCP-o-matic"
#: src/wx/config_dialog.cc:52
msgid "DCP-o-matic Preferences"
msgstr "Preferenze DCP-o-matic"
#: src/wx/audio_dialog.cc:98
#, c-format
msgid "DCP-o-matic audio - %s"
msgstr "Audio DCP-o-matic - %s"
#: src/wx/config_dialog.cc:141
msgid "Default DCI name details"
msgstr "Dettagli del nome di default DCI"
#: src/wx/config_dialog.cc:154
#, fuzzy
msgid "Default JPEG2000 bandwidth"
msgstr "Banda passante JPEG2000"
#: src/wx/config_dialog.cc:145
#, fuzzy
msgid "Default container"
msgstr "Tipo di contenuto"
#: src/wx/config_dialog.cc:149
#, fuzzy
msgid "Default content type"
msgstr "Tipo di contenuto"
#: src/wx/config_dialog.cc:133
msgid "Default directory for new films"
msgstr "Directory di default per i nuovi films"
#: src/wx/config_dialog.cc:125
#, fuzzy
msgid "Default duration of still images"
msgstr "Directory di default per i nuovi films"
#: src/wx/film_editor.cc:129 src/wx/job_manager_view.cc:78
msgid "Details..."
msgstr "Dettagli"
#: src/wx/properties_dialog.cc:45
msgid "Disk space required"
msgstr "Spazio su disco rischiesto"
#: src/wx/kdm_dialog.cc:68
#, fuzzy
msgid "Edit Cinema..."
msgstr "Modifica..."
#: src/wx/kdm_dialog.cc:75
#, fuzzy
msgid "Edit Screen..."
msgstr "Modifica..."
#: src/wx/config_dialog.cc:142 src/wx/video_panel.cc:157
#: src/wx/video_panel.cc:174
msgid "Edit..."
msgstr "Modifica..."
#: src/wx/servers_list_dialog.cc:30
#, fuzzy
msgid "Encoding Servers"
msgstr "Servers di codifica"
#: src/wx/config_dialog.cc:61
#, fuzzy
msgid "Encoding servers"
msgstr "Servers di codifica"
#: src/wx/film_editor.cc:154
msgid "Encrypted"
msgstr ""
#: src/wx/dci_metadata_dialog.cc:59
msgid "Facility (e.g. DLA)"
msgstr "Facility (es. DLA)"
#: src/wx/properties_dialog.cc:36
msgid "Film Properties"
msgstr "Proprietà del film"
#: src/wx/new_film_dialog.cc:44
msgid "Film name"
msgstr "Nome del film"
#: src/wx/filter_dialog.cc:32 src/wx/video_panel.cc:148
msgid "Filters"
msgstr "Filtri"
#: src/wx/content_menu.cc:49
msgid "Find missing..."
msgstr ""
#: src/wx/film_editor.cc:144
#, fuzzy
msgid "Frame Rate"
msgstr "Frequenza fotogrammi del DCP"
#: src/wx/properties_dialog.cc:41
msgid "Frames"
msgstr "Fotogrammi"
#: src/wx/properties_dialog.cc:49
msgid "Frames already encoded"
msgstr "Fotogrammi già codificati"
#: src/wx/about_dialog.cc:61
msgid "Free, open-source DCP generation from almost anything."
msgstr ""
#: src/wx/kdm_dialog.cc:85
msgid "From"
msgstr ""
#: src/wx/config_dialog.cc:120
msgid "From address for KDM emails"
msgstr ""
#: src/wx/gain_calculator_dialog.cc:27
msgid "Gain Calculator"
msgstr "Calcolatore del guadagno audio"
#: src/wx/properties_dialog.cc:57
msgid "Gb"
msgstr "Gb"
#: src/wx/hints_dialog.cc:26
msgid "Hints"
msgstr ""
#: src/wx/servers_list_dialog.cc:40
msgid "Host"
msgstr ""
#: src/wx/server_dialog.cc:41
msgid "Host name or IP address"
msgstr "Nome dell'Host o indirizzo IP"
#: src/wx/audio_panel.cc:241
msgid "Hz"
msgstr "Hz"
#: src/wx/gain_calculator_dialog.cc:32
msgid "I want to play this back at fader"
msgstr "Sto usando il fader a"
#: src/wx/config_dialog.cc:241
msgid "IP address"
msgstr "Indirizzo IP"
#: src/wx/config_dialog.cc:313
#, fuzzy
msgid "IP address / host name"
msgstr "Indirizzo IP"
#: src/wx/colour_conversion_editor.cc:44
msgid "Input gamma"
msgstr ""
#: src/wx/film_editor.cc:219
msgid "Interop"
msgstr ""
#: src/wx/config_dialog.cc:280
msgid "Issuer"
msgstr ""
#: src/wx/film_editor.cc:173
msgid "JPEG2000 bandwidth"
msgstr "Banda passante JPEG2000"
#: src/wx/config_dialog.cc:69
msgid "KDM email"
msgstr ""
#: src/wx/film_editor.cc:286
msgid "Keep video in sequence"
msgstr ""
#: src/wx/audio_mapping_view.cc:183
msgid "L"
msgstr ""
#: src/wx/video_panel.cc:90
msgid "Left crop"
msgstr "Taglio a sinistra"
#: src/wx/timing_panel.cc:40
msgid "Length"
msgstr "Lunghezza"
#: src/wx/audio_mapping_view.cc:195
msgid "Lfe"
msgstr ""
#: src/wx/colour_conversion_editor.cc:49
msgid "Linearise input gamma curve for low values"
msgstr ""
#: src/wx/audio_mapping_view.cc:199
#, fuzzy
msgid "Ls"
msgstr "s"
#: src/wx/config_dialog.cc:158 src/wx/film_editor.cc:177
msgid "MBps"
msgstr "MBps"
#: src/wx/film_editor.cc:711
msgid "MISSING: "
msgstr ""
#: src/wx/kdm_dialog.cc:47
msgid "Make KDMs"
msgstr ""
#: src/wx/colour_conversion_editor.cc:67
msgid "Matrix"
msgstr ""
#: src/wx/config_dialog.cc:65
msgid "Metadata"
msgstr ""
#: src/wx/config_dialog.cc:59
msgid "Miscellaneous"
msgstr ""
#: src/wx/video_panel.cc:279
#, fuzzy
msgid "Multiple content selected"
msgstr "Tipo di contenuto"
#: src/wx/dir_picker_ctrl.cc:52
msgid "My Documents"
msgstr "Documenti"
#: src/wx/config_dialog.cc:470 src/wx/film_editor.cc:112
#: src/wx/preset_colour_conversion_dialog.cc:38
msgid "Name"
msgstr "Nome"
#: src/wx/new_film_dialog.cc:35
msgid "New Film"
msgstr "Nuovo Film"
#: src/wx/video_panel.cc:198
msgid "No stretch"
msgstr ""
#: src/wx/video_panel.cc:155 src/wx/video_panel.cc:247
msgid "None"
msgstr "Nessuno"
#: src/wx/config_dialog.cc:116
#, fuzzy
msgid "Outgoing mail server"
msgstr "Servers di codifica"
#: src/wx/colour_conversion_editor.cc:78
msgid "Output gamma"
msgstr ""
#: src/wx/dci_metadata_dialog.cc:63
msgid "Package Type (e.g. OV)"
msgstr "Tipo di Package (es. OV)"
#: src/wx/video_panel.cc:326
#, c-format
msgid "Padded with black to %dx%d (%.2f:1)\n"
msgstr "Riempito con nero a %dx%d (%.2f:1)\n"
#: src/wx/config_dialog.cc:253
#, fuzzy
msgid "Password"
msgstr "Password del TMS"
#: src/wx/job_manager_view.cc:72 src/wx/job_manager_view.cc:164
msgid "Pause"
msgstr ""
#: src/wx/audio_dialog.cc:60
msgid "Peak"
msgstr "Picco"
#: src/wx/film_viewer.cc:64
msgid "Play"
msgstr "Riproduci"
#: src/wx/audio_plot.cc:43
msgid "Please wait; audio is being analysed..."
msgstr "Attendere prego; sto analizzando l'audio..."
#: src/wx/timing_panel.cc:37
msgid "Position"
msgstr ""
#: src/wx/audio_mapping_view.cc:187
msgid "R"
msgstr ""
#: src/wx/audio_dialog.cc:61
msgid "RMS"
msgstr "RMS"
#: src/wx/dci_metadata_dialog.cc:51
msgid "Rating (e.g. 15)"
msgstr "Classificazione (es. 15)"
#: src/wx/content_menu.cc:51 src/wx/film_editor.cc:272
msgid "Remove"
msgstr "Rimuovi"
#: src/wx/kdm_dialog.cc:70
#, fuzzy
msgid "Remove Cinema"
msgstr "Rimuovi"
#: src/wx/kdm_dialog.cc:77
#, fuzzy
msgid "Remove Screen"
msgstr "Rimuovi"
#: src/wx/repeat_dialog.cc:33
msgid "Repeat"
msgstr ""
#: src/wx/repeat_dialog.cc:24
#, fuzzy
msgid "Repeat Content"
msgstr "Seleziona il file con il contenuto"
#: src/wx/content_menu.cc:48
msgid "Repeat..."
msgstr ""
#: src/wx/film_editor.cc:167
msgid "Resolution"
msgstr ""
#: src/wx/job_manager_view.cc:167
msgid "Resume"
msgstr ""
#: src/wx/video_panel.cc:101
msgid "Right crop"
msgstr "Taglio a destra"
#: src/wx/audio_mapping_view.cc:203
#, fuzzy
msgid "Rs"
msgstr "s"
#: src/wx/film_editor.cc:218
msgid "SMPTE"
msgstr ""
#: src/wx/video_panel.cc:134
#, fuzzy
msgid "Scale to"
msgstr "Scaler"
#: src/wx/video_panel.cc:318
#, c-format
msgid "Scaled to %dx%d (%.2f:1)\n"
msgstr "Scalato a %dx%d (%.2f:1)\n"
#: src/wx/film_editor.cc:187
msgid "Scaler"
msgstr "Scaler"
#: src/wx/screen_dialog.cc:88
#, fuzzy
msgid "Select Certificate File"
msgstr "Seleziona il file con il contenuto"
#: src/wx/kdm_dialog.cc:136
msgid "Send by email"
msgstr ""
#: src/wx/server_dialog.cc:28
msgid "Server"
msgstr "Server"
#: src/wx/timecode.cc:65
msgid "Set"
msgstr ""
#: src/wx/config_dialog.cc:95
msgid "Set language"
msgstr "Seleziona la lingua"
#: src/wx/audio_panel.cc:48
msgid "Show Audio..."
msgstr "Mostra Audio..."
#: src/wx/audio_dialog.cc:71
msgid "Smoothing"
msgstr "Levigatura"
#: src/wx/timeline_dialog.cc:38
msgid "Snap"
msgstr ""
#: src/wx/film_editor.cc:182
msgid "Standard"
msgstr ""
#: src/wx/dci_metadata_dialog.cc:55
msgid "Studio (e.g. TCF)"
msgstr "Studio (es. TCF)"
#: src/wx/dci_metadata_dialog.cc:43
msgid "Subtitle Language (e.g. FR)"
msgstr "Lingua dei Sottotitoli (es. FR)"
#: src/wx/subtitle_panel.cc:44
msgid "Subtitle Offset"
msgstr "Sfalsamento dei Sottotitoli"
#: src/wx/subtitle_panel.cc:53
msgid "Subtitle Scale"
msgstr "Scala dei Sottotitoli"
#: src/wx/subtitle_panel.cc:61
#, fuzzy
msgid "Subtitle Stream"
msgstr "Scala dei Sottotitoli"
#: src/wx/subtitle_panel.cc:34
msgid "Subtitles"
msgstr "Sottotitoli"
#: src/wx/about_dialog.cc:128
msgid "Supported by"
msgstr ""
#: src/wx/config_dialog.cc:67
#, fuzzy
msgid "TMS"
msgstr "RMS"
#: src/wx/config_dialog.cc:245
#, fuzzy
msgid "Target path"
msgstr "Percorso di destinazione del TMS"
#: src/wx/dci_metadata_dialog.cc:47
msgid "Territory (e.g. UK)"
msgstr "Nazione (es. UK)"
#: src/wx/content_menu.cc:178
msgid ""
"The content file(s) you specified are not the same as those that are "
"missing. Either try again with the correct content file or remove the "
"missing content."
msgstr ""
#: src/wx/hints_dialog.cc:97
msgid "There are no hints: everything looks good!"
msgstr ""
#: src/wx/servers_list_dialog.cc:48
msgid "Threads"
msgstr "Threads"
#: src/wx/config_dialog.cc:112
msgid "Threads to use for encoding on this host"
msgstr "Threads da usare per codificare su questo host"
#: src/wx/audio_plot.cc:148
msgid "Time"
msgstr "Tempo"
#: src/wx/timeline_dialog.cc:32
#, fuzzy
msgid "Timeline"
msgstr "Tempo"
#: src/wx/film_editor.cc:278
msgid "Timeline..."
msgstr ""
#: src/wx/timing_panel.cc:32
msgid "Timing"
msgstr ""
#: src/wx/video_panel.cc:112
msgid "Top crop"
msgstr "Taglio in alto"
#: src/wx/about_dialog.cc:100
msgid "Translated by"
msgstr ""
#: src/wx/timing_panel.cc:46
#, fuzzy
msgid "Trim from end"
msgstr "Taglia fotogrammi"
#: src/wx/timing_panel.cc:43
#, fuzzy
msgid "Trim from start"
msgstr "Taglia fotogrammi"
#: src/wx/audio_dialog.cc:55 src/wx/video_panel.cc:77
msgid "Type"
msgstr "Tipo"
#: src/wx/kdm_dialog.cc:91
msgid "Until"
msgstr ""
#: src/wx/film_editor.cc:127
msgid "Use DCI name"
msgstr "Usa nome DCI"
#: src/wx/config_dialog.cc:309
msgid "Use all servers"
msgstr ""
#: src/wx/film_editor.cc:148
msgid "Use best"
msgstr "Usa la migliore"
#: src/wx/content_colour_conversion_dialog.cc:41
#, fuzzy
msgid "Use preset"
msgstr "Usa la migliore"
#: src/wx/config_dialog.cc:249
#, fuzzy
msgid "User name"
msgstr "Usa nome DCI"
#: src/wx/video_panel.cc:70
msgid "Video"
msgstr "Video"
#: src/wx/subtitle_panel.cc:39
msgid "With Subtitles"
msgstr "Con sottotitoli"
#: src/wx/kdm_dialog.cc:122
msgid "Write to"
msgstr ""
#: src/wx/about_dialog.cc:91
msgid "Written by"
msgstr ""
#: src/wx/hints_dialog.cc:90
#, c-format
msgid ""
"You have %d files that look like they are VOB files from DVD. You should "
"coalesce them to ensure smooth joins between the files."
msgstr ""
#: src/wx/hints_dialog.cc:76
#, c-format
msgid ""
"Your DCP frame rate (%d fps) may cause problems in a few (mostly older) "
"projectors. Use 24 or 48 frames per second to be on the safe side."
msgstr ""
#: src/wx/hints_dialog.cc:66
msgid ""
"Your DCP has an odd number of audio channels. This is very likely to cause "
"problems on playback."
msgstr ""
#: src/wx/hints_dialog.cc:70
msgid ""
"Your DCP has fewer than 6 audio channels. This may cause problems on some "
"projectors."
msgstr ""
#: src/wx/timeline.cc:213
#, fuzzy
msgid "audio"
msgstr "Audio"
#: src/wx/audio_panel.cc:239
msgid "channels"
msgstr "canali"
#: src/wx/properties_dialog.cc:50
msgid "counting..."
msgstr "conteggio..."
#: src/wx/audio_panel.cc:62
msgid "dB"
msgstr "dB"
#. / TRANSLATORS: this is an abbreviation for milliseconds, the unit of time
#: src/wx/audio_panel.cc:78
msgid "ms"
msgstr "ms"
#: src/wx/config_dialog.cc:129
msgid "s"
msgstr "s"
#: src/wx/timeline.cc:236
msgid "still"
msgstr ""
#: src/wx/repeat_dialog.cc:37
msgid "times"
msgstr ""
#: src/wx/timeline.cc:234
#, fuzzy
msgid "video"
msgstr "Video"
#~ msgid "Threads to use"
#~ msgstr "Threads da usare"
#~ msgid "Add"
#~ msgstr "Aggiungi"
#~ msgid "Duration"
#~ msgstr "Durata"
#~ msgid "Edit"
#~ msgstr "Modifica"
#~ msgid "Running"
#~ msgstr "In corso"
#, fuzzy
#~ msgid "Start time"
#~ msgstr "Inizio"
#~ msgid "A/B"
#~ msgstr "A/B"
#~ msgid "Audio will be resampled from %dHz to %dHz\n"
#~ msgstr "L'Audio sarà ricampionato da %dHz a %dHz\n"
#~ msgid "Colour look-up table"
#~ msgstr "Tabella per ricerca del colore"
#~ msgid "Could not open content file (%s)"
#~ msgstr "Non posso aprire il file del contenuto (%s)"
#~ msgid "Could not set content: %s"
#~ msgstr "Non posso regolare il contenuto: %s"
#, fuzzy
#~ msgid "DVD-o-matic Preferences"
#~ msgstr "Preferenze DVD-o-matic"
#~ msgid "End"
#~ msgstr "Fine"
#~ msgid "Film"
#~ msgstr "Film"
#~ msgid "Format"
#~ msgstr "Formato"
#~ msgid "Original Frame Rate"
#~ msgstr "Frequenza fotogrammi originale"
#, fuzzy
#~ msgid "Reference filters"
#~ msgstr "Filtri di riferimento A/B"
#, fuzzy
#~ msgid "Reference scaler"
#~ msgstr "Scalatura di riferimento A/B"
#~ msgid "Select Audio File"
#~ msgstr "Seleziona file audio"
#~ msgid "Trim method"
#~ msgstr "Metodo di taglio"
#~ msgid "Trust content's header"
#~ msgstr "Conferma l'intestazione del contenuto"
#~ msgid "Use content's audio"
#~ msgstr "Usa l'audio del contenuto"
#~ msgid "Use external audio"
#~ msgstr "Usa l'audio esterno"
#~ msgid "encode all frames and play the subset"
#~ msgstr "Codifica tutti i fotogrammi e riproduci la selezione"
#~ msgid "encode only the subset"
#~ msgstr "codifica solo la selezione"
#~ msgid "frames"
#~ msgstr "fotogrammi"
#~ msgid "pixels"
#~ msgstr "pizels"
#~ msgid "unknown"
#~ msgstr "sconosciuto"
#~ msgid "TMS IP address"
#~ msgstr "Indirizzo IP del TMS"
#~ msgid "TMS user name"
#~ msgstr "Nome utente del TMS"
#~ msgid "Original Size"
#~ msgstr "Dimensione Originale"
|