File: mr.po

package info (click to toggle)
pitivi 0.999-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 24,912 kB
  • sloc: python: 23,282; ansic: 2,847; sh: 249; makefile: 21; xml: 19
file content (992 lines) | stat: -rw-r--r-- 20,428 bytes parent folder | download | duplicates (5)
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
# translation of mr.po to marathi
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Sandeep Shedmake <sandeep.shedmake@gmail.com>, 2009.
msgid ""
msgstr ""
"Project-Id-Version: mr\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-07 19:31+0530\n"
"PO-Revision-Date: 2009-04-07 19:32+0530\n"
"Last-Translator: Sandeep Shedmake <sandeep.shedmake@gmail.com>\n"
"Language-Team: marathi\n"
"Language: mr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n!=1);\n"
"X-Generator: KBabel 1.11.4\n"

#: ../pitivi/check.py:121
#, python-format
msgid "%s is already running!"
msgstr "%s आधिपासूनच कार्यरत आहे!"

#: ../pitivi/check.py:122
#, python-format
msgid "An instance of %s is already running in this script."
msgstr ""

#: ../pitivi/check.py:124
msgid "Could not find the GNonLin plugins!"
msgstr "Could not find the GNonLin plugins"

#: ../pitivi/check.py:125
msgid ""
"Make sure the plugins were installed and are available in the GStreamer "
"plugins path."
msgstr ""

#: ../pitivi/check.py:127
msgid "Could not find the autodetect plugins!"
msgstr ""

#: ../pitivi/check.py:128
msgid ""
"Make sure you have installed gst-plugins-good and is available in the "
"GStreamer plugin path."
msgstr ""

#: ../pitivi/check.py:130
msgid "PyGTK doesn't have Cairo support!"
msgstr ""

#: ../pitivi/check.py:131
msgid "Please use a version of the GTK+ Python Bindings built with Cairo support."
msgstr ""

#: ../pitivi/check.py:133
msgid "Could not initiate the video output plugins"
msgstr ""

#: ../pitivi/check.py:134
msgid ""
"Make sure you have at least one valid video output sink available "
"(xvimagesink or ximagesink)"
msgstr ""

#: ../pitivi/check.py:136
msgid "Could not initiate the audio output plugins"
msgstr ""

#: ../pitivi/check.py:137
msgid ""
"Make sure you have at least one valid audio output sink available (alsasink "
"or osssink)"
msgstr ""

#: ../pitivi/check.py:139
msgid "Could not import the Cairo Python Bindings"
msgstr ""

#: ../pitivi/check.py:140
msgid "Make sure you have the Cairo Python Bindings installed"
msgstr ""

#: ../pitivi/check.py:142
msgid "Could not import the libglade Python Bindings"
msgstr ""

#: ../pitivi/check.py:143
msgid "Make sure you have the libglade Python bindings installed"
msgstr ""

#: ../pitivi/check.py:145
msgid "Could not import the goocanvas Python Bindings"
msgstr ""

#: ../pitivi/check.py:146
msgid "Make sure you have the goocanvas Python Bindings installed"
msgstr ""

#: ../pitivi/check.py:149
#, python-format
msgid ""
"You do not have a recent enough version of the GTK+ Python Bindings "
"(currently %s)"
msgstr ""

#: ../pitivi/check.py:153
#, python-format
msgid ""
"You do not have a recent enough version of the GStreamer Python Bindings "
"(currently %s)"
msgstr ""

#: ../pitivi/check.py:157
#, python-format
msgid "You do not have a recent enough version of GStreamer (currently %s)"
msgstr ""

#: ../pitivi/check.py:161
#, python-format
msgid ""
"You do not have a recent enough version of the Cairo Python Bindings "
"(currently %s)"
msgstr ""

#: ../pitivi/check.py:165
#, python-format
msgid ""
"You do not have a recent enough version of the GNonLin GStreamer plugin "
"(currently %s)"
msgstr ""

#: ../pitivi/check.py:168
msgid "Could not import the Zope Interface module"
msgstr ""

#: ../pitivi/check.py:169
msgid "Make sure you have the zope.interface module installed"
msgstr ""

#: ../pitivi/check.py:171
msgid "Could not import the distutils modules"
msgstr ""

#: ../pitivi/check.py:172
msgid "Make sure you have the distutils python module installed"
msgstr ""

#: ../pitivi/discoverer.py:166
#, python-format
msgid ""
"Missing plugins:\n"
"%s"
msgstr ""

#. EOS and no decodable streams?
#: ../pitivi/discoverer.py:185
msgid "FIXME: no output streams"
msgstr ""

#: ../pitivi/discoverer.py:186
msgid "see above"
msgstr ""

#: ../pitivi/discoverer.py:198
msgid "Could not establish the duration of the file."
msgstr ""

#: ../pitivi/discoverer.py:199
msgid ""
"This clip seems to be in a format which cannot be accessed in a random "
"fashion."
msgstr ""

#. woot, nothing decodable
#: ../pitivi/discoverer.py:208
msgid "Can not decode file."
msgstr ""

#: ../pitivi/discoverer.py:209
msgid "The given file does not contain audio, video or picture streams."
msgstr ""

#: ../pitivi/discoverer.py:238
msgid "Timeout while analyzing file."
msgstr ""

#: ../pitivi/discoverer.py:239
msgid "Analyzing the file took too long."
msgstr ""

#: ../pitivi/discoverer.py:286
msgid "No available source handler."
msgstr ""

#: ../pitivi/discoverer.py:287
#, python-format
msgid "You do not have a GStreamer source element to handle protocol '%s'"
msgstr ""

#: ../pitivi/discoverer.py:314
msgid "Pipeline didn't want to go to PAUSED."
msgstr ""

#: ../pitivi/discoverer.py:337
#, python-format
msgid "An internal error occured while analyzing this file: %s"
msgstr ""

#: ../pitivi/discoverer.py:347
msgid "File contains a redirection to another clip."
msgstr ""

#: ../pitivi/discoverer.py:348
msgid "Pitivi currently does not handle redirection files."
msgstr ""

#: ../pitivi/application.py:106
#, python-format
msgid ""
"There is already a %s instance, please inform developers by filing a bug at "
"http://bugzilla.gnome.org/"
msgstr ""

#: ../pitivi/application.py:121 ../pitivi/application.py:184
msgid "New Project"
msgstr ""

#: ../pitivi/application.py:139
msgid "No location given."
msgstr ""

#: ../pitivi/application.py:145
msgid "File does not exist"
msgstr ""

#: ../pitivi/application.py:150
msgid "Not a valid project file."
msgstr ""

#: ../pitivi/application.py:164
msgid "There was an error loading the file."
msgstr ""

#: ../pitivi/application.py:289
msgid "%prog [-p PROJECT_FILE] [-a] [MEDIA_FILE]..."
msgstr ""

#: ../pitivi/application.py:291
msgid ""
"Starts the video editor, optionally loading PROJECT_FILE. If no\n"
"project is given, %prog creates a new project. Remaining arguments are "
"treated\n"
"as clips to be imported into the project. If -a is specified, these clips "
"will\n"
"also be added to the end of the project timeline."
msgstr ""

#: ../pitivi/application.py:296
msgid ""
"Open project file specified by PROJECT instead of creating a\n"
"new project."
msgstr ""

#: ../pitivi/application.py:299
msgid "Add each MEDIA_FILE to timeline after importing."
msgstr ""

#: ../pitivi/project.py:333
#, python-format
msgid "%s doesn't yet handle non local projects"
msgstr ""

#: ../pitivi/settings.py:438
msgid "Export Settings\n"
msgstr ""

#: ../pitivi/settings.py:439
msgid "Video: "
msgstr ""

#: ../pitivi/settings.py:442
msgid ""
"\n"
"Audio: "
msgstr ""

#: ../pitivi/settings.py:445
msgid ""
"\n"
"Muxer: "
msgstr ""

#: ../pitivi/ui/audiofxlist.py:49 ../pitivi/ui/videofxlist.py:53
msgid "Name"
msgstr ""

#: ../pitivi/ui/audiofxlist.py:55 ../pitivi/ui/elementsettingsdialog.glade.h:6
#: ../pitivi/ui/videofxlist.py:59
msgid "Description"
msgstr ""

#: ../pitivi/ui/cam_capture.glade.h:1
msgid "Audio Capture Device:"
msgstr ""

#: ../pitivi/ui/cam_capture.glade.h:2
msgid "No device available"
msgstr ""

#: ../pitivi/ui/cam_capture.glade.h:3
msgid "Video Capture Device:"
msgstr ""

#: ../pitivi/ui/defaultpropertyeditor.py:104
#, python-format
msgid "Properties For: %d object"
msgid_plural "Properties For: %d objects"
msgstr[0] ""
msgstr[1] ""

#: ../pitivi/ui/defaultpropertyeditor.py:119
msgid "No properties..."
msgstr ""

#: ../pitivi/ui/elementsettingsdialog.glade.h:1
msgid "<b>Author:</b>"
msgstr ""

#: ../pitivi/ui/elementsettingsdialog.glade.h:2
msgid "<b>Description:</b>"
msgstr ""

#: ../pitivi/ui/elementsettingsdialog.glade.h:3
msgid "<b>Plugin Name</b>"
msgstr ""

#: ../pitivi/ui/elementsettingsdialog.glade.h:4
msgid "<b>Properties</b>"
msgstr ""

#: ../pitivi/ui/elementsettingsdialog.glade.h:5
msgid "Author"
msgstr ""

#: ../pitivi/ui/elementsettingsdialog.glade.h:7
msgid "Properties for <element>"
msgstr ""

#: ../pitivi/ui/encodingdialog.glade.h:1 ../pitivi/ui/timelinecontrols.py:13
msgid "<b>Audio:</b>"
msgstr ""

#: ../pitivi/ui/encodingdialog.glade.h:2
msgid "<b>Nothing yet</b>"
msgstr ""

#: ../pitivi/ui/encodingdialog.glade.h:3
msgid "<b>Settings</b>"
msgstr ""

#: ../pitivi/ui/encodingdialog.glade.h:4 ../pitivi/ui/timelinecontrols.py:15
msgid "<b>Video:</b>"
msgstr ""

#: ../pitivi/ui/encodingdialog.glade.h:5
msgid "Choose File"
msgstr ""

#: ../pitivi/ui/encodingdialog.glade.h:6
msgid "Modify"
msgstr ""

#: ../pitivi/ui/encodingdialog.glade.h:7
msgid "Output file:"
msgstr ""

#: ../pitivi/ui/encodingdialog.py:89
msgid "Choose file to render to"
msgstr ""

#: ../pitivi/ui/encodingdialog.py:115
#, python-format
msgid "Finished in %dm%ds"
msgstr ""

#: ../pitivi/ui/encodingdialog.py:126
msgid "Rendering"
msgstr ""

#: ../pitivi/ui/encodingdialog.py:143
msgid "Rendering Complete"
msgstr ""

#: ../pitivi/ui/exportsettingswidget.glade.h:1
msgid ""
"12 fps\n"
"23,97 fps\n"
"24 fps\n"
"25 fps\n"
"29,97 fps\n"
"30 fps\n"
"60 fps"
msgstr ""

#: ../pitivi/ui/exportsettingswidget.glade.h:8
msgid ""
"8 bit\n"
"16 bit\n"
"24 bit\n"
"32 bit"
msgstr ""

#: ../pitivi/ui/exportsettingswidget.glade.h:12
msgid ""
"8000 Hz\n"
"11025 Hz\n"
"22050 Hz\n"
"44100 Hz\n"
"48000 Hz\n"
"96000 Hz"
msgstr ""

#: ../pitivi/ui/exportsettingswidget.glade.h:18
msgid "<b>Audio Output</b>"
msgstr ""

#: ../pitivi/ui/exportsettingswidget.glade.h:19
msgid "<b>Export to</b>"
msgstr ""

#: ../pitivi/ui/exportsettingswidget.glade.h:20
msgid "<b>Video Output</b>"
msgstr ""

#: ../pitivi/ui/exportsettingswidget.glade.h:21
msgid "Audio Codec"
msgstr ""

#: ../pitivi/ui/exportsettingswidget.glade.h:22
msgid "Audio Codec:"
msgstr ""

#: ../pitivi/ui/exportsettingswidget.glade.h:23
msgid "Audio Preset"
msgstr ""

#: ../pitivi/ui/exportsettingswidget.glade.h:24
msgid "Channels:"
msgstr ""

#: ../pitivi/ui/exportsettingswidget.glade.h:25
msgid "Container:"
msgstr ""

#: ../pitivi/ui/exportsettingswidget.glade.h:26
msgid "Depth:"
msgstr ""

#: ../pitivi/ui/exportsettingswidget.glade.h:27
msgid "Frame rate:"
msgstr ""

#: ../pitivi/ui/exportsettingswidget.glade.h:28
msgid "Height:"
msgstr ""

#: ../pitivi/ui/exportsettingswidget.glade.h:29
msgid ""
"Mono (1)\n"
"Stereo (2)"
msgstr ""

#: ../pitivi/ui/exportsettingswidget.glade.h:31
msgid "Muxer"
msgstr ""

#: ../pitivi/ui/exportsettingswidget.glade.h:32
msgid "Rate:"
msgstr ""

#: ../pitivi/ui/exportsettingswidget.glade.h:33
msgid "Settings"
msgstr ""

#: ../pitivi/ui/exportsettingswidget.glade.h:34
msgid "Video Codec"
msgstr ""

#: ../pitivi/ui/exportsettingswidget.glade.h:35
msgid "Video Codec:"
msgstr ""

#: ../pitivi/ui/exportsettingswidget.glade.h:36
msgid "Video Preset"
msgstr ""

#: ../pitivi/ui/exportsettingswidget.glade.h:37
msgid "Width:"
msgstr ""

#: ../pitivi/ui/exportsettingswidget.py:362
msgid "Export settings"
msgstr ""

#: ../pitivi/ui/filelisterrordialog.py:52
msgid "Unknown reason"
msgstr ""

#: ../pitivi/ui/filelisterrordialog.py:76
msgid "URI:"
msgstr ""

#: ../pitivi/ui/filelisterrordialog.py:82
msgid "Problem:"
msgstr ""

#: ../pitivi/ui/filelisterrordialog.py:89
msgid "Extra information:"
msgstr ""

#. set title and frame label
#: ../pitivi/ui/gstwidget.py:191
#, python-format
msgid "Properties for %s"
msgstr ""

#: ../pitivi/ui/mainwindow.py:210
msgid "Create a new project"
msgstr ""

#: ../pitivi/ui/mainwindow.py:212
msgid "Open an existing project"
msgstr ""

#: ../pitivi/ui/mainwindow.py:214 ../pitivi/ui/mainwindow.py:216
msgid "Save the current project"
msgstr ""

#: ../pitivi/ui/mainwindow.py:217
msgid "Project settings"
msgstr ""

#: ../pitivi/ui/mainwindow.py:218
msgid "Edit the project settings"
msgstr ""

#: ../pitivi/ui/mainwindow.py:219
msgid "_Render project"
msgstr ""

#: ../pitivi/ui/mainwindow.py:220
msgid "Render project"
msgstr ""

#: ../pitivi/ui/mainwindow.py:222
msgid "_Plugins..."
msgstr ""

#: ../pitivi/ui/mainwindow.py:223
msgid "Manage plugins"
msgstr ""

#: ../pitivi/ui/mainwindow.py:225
msgid "_Import from Webcam..."
msgstr ""

#: ../pitivi/ui/mainwindow.py:226
msgid "Import Camera stream"
msgstr ""

#: ../pitivi/ui/mainwindow.py:228
msgid "_Make screencast..."
msgstr ""

#: ../pitivi/ui/mainwindow.py:229
msgid "Capture the desktop"
msgstr ""

#: ../pitivi/ui/mainwindow.py:231
msgid "_Capture Network Stream..."
msgstr ""

#: ../pitivi/ui/mainwindow.py:232
msgid "Capture Network Stream"
msgstr ""

#: ../pitivi/ui/mainwindow.py:235
#, python-format
msgid "Information about %s"
msgstr ""

#: ../pitivi/ui/mainwindow.py:236
msgid "_File"
msgstr ""

#: ../pitivi/ui/mainwindow.py:237
msgid "_Edit"
msgstr ""

#: ../pitivi/ui/mainwindow.py:238
msgid "_View"
msgstr ""

#: ../pitivi/ui/mainwindow.py:239
msgid "_Help"
msgstr ""

#: ../pitivi/ui/mainwindow.py:244
msgid "View the main window on the whole screen"
msgstr ""

#: ../pitivi/ui/mainwindow.py:463
msgid "Open File..."
msgstr ""

#: ../pitivi/ui/mainwindow.py:520
msgid "Contributors:"
msgstr ""

#: ../pitivi/ui/mainwindow.py:532
msgid ""
"GNU Lesser General Public License\n"
"See http://www.gnu.org/copyleft/lesser.html for more details"
msgstr ""

#: ../pitivi/ui/mainwindow.py:587
msgid "The project has unsaved changes. Do you wish to close the project?"
msgstr ""

#: ../pitivi/ui/mainwindow.py:600
#, python-format
msgid "Pitivi is unable to load file \"%s\""
msgstr ""

#: ../pitivi/ui/mainwindow.py:602
msgid "Error Loading File"
msgstr ""

#: ../pitivi/ui/mainwindow.py:611
#, python-format
msgid "Do you wish to overwrite existing file \"%s\"?"
msgstr ""

#: ../pitivi/ui/mainwindow.py:620
msgid "Overwrite Existing File?"
msgstr ""

#: ../pitivi/ui/mainwindow.py:629
msgid "Save As..."
msgstr ""

#: ../pitivi/ui/mainwindow.py:636
msgid "Untitled.pptv"
msgstr ""

#: ../pitivi/ui/mainwindow.py:646 ../pitivi/ui/mainwindow.py:659
msgid "Detect Automatically"
msgstr ""

#: ../pitivi/ui/net_capture.glade.h:1
msgid "Address"
msgstr ""

#: ../pitivi/ui/net_capture.glade.h:2
msgid "Capture"
msgstr ""

#: ../pitivi/ui/net_capture.glade.h:3
msgid "Capture Stream from URI"
msgstr ""

#: ../pitivi/ui/net_capture.glade.h:4
msgid "Capture network stream"
msgstr ""

#: ../pitivi/ui/net_capture.glade.h:5
msgid "Close"
msgstr ""

#: ../pitivi/ui/net_capture.glade.h:6
msgid "Customize:"
msgstr ""

#: ../pitivi/ui/net_capture.glade.h:7
msgid "Network stream video"
msgstr ""

#: ../pitivi/ui/net_capture.glade.h:8
msgid "Port"
msgstr ""

#: ../pitivi/ui/net_capture.glade.h:9
msgid "Preview"
msgstr ""

#: ../pitivi/ui/net_capture.glade.h:10
msgid "Preview Stream from URI"
msgstr ""

#: ../pitivi/ui/net_capture.glade.h:11
msgid "Protocol"
msgstr ""

#: ../pitivi/ui/net_capture.glade.h:12
msgid "http / https"
msgstr ""

#: ../pitivi/ui/net_capture.glade.h:13
msgid "http://"
msgstr ""

#: ../pitivi/ui/net_capture.glade.h:14
msgid "other protocol"
msgstr ""

#: ../pitivi/ui/net_capture.glade.h:15
msgid "rtsp"
msgstr ""

#: ../pitivi/ui/net_capture.glade.h:16
msgid "udp / rtp"
msgstr ""

#: ../pitivi/ui/pluginmanagerdialog.glade.h:1
#: ../pitivi/ui/pluginmanagerdialog.py:173
msgid "All categories"
msgstr ""

#: ../pitivi/ui/pluginmanagerdialog.glade.h:2
msgid "Plugin manager"
msgstr ""

#: ../pitivi/ui/pluginmanagerdialog.glade.h:3
msgid "Search:"
msgstr ""

#: ../pitivi/ui/pluginmanagerdialog.glade.h:4
msgid "Show:"
msgstr ""

#: ../pitivi/ui/pluginmanagerdialog.glade.h:5
msgid ""
"You may drag plugin files into the list to install them,\n"
"or type text to search for a specific plugin."
msgstr ""

#: ../pitivi/ui/pluginmanagerdialog.py:89
msgid "Enabled"
msgstr ""

#: ../pitivi/ui/pluginmanagerdialog.py:99
msgid "Plugin"
msgstr ""

#: ../pitivi/ui/pluginmanagerdialog.py:109
msgid "Category"
msgstr ""

#: ../pitivi/ui/pluginmanagerdialog.py:271
msgid "Are you sure you want to remove selected plugins?"
msgstr ""

#: ../pitivi/ui/pluginmanagerdialog.py:272
msgid "Confirm remove operation"
msgstr ""

#: ../pitivi/ui/pluginmanagerdialog.py:289
#, python-format
msgid "Cannot remove %s"
msgstr ""

#: ../pitivi/ui/pluginmanagerdialog.py:321
msgid "Update the existent plugin?"
msgstr ""

#: ../pitivi/ui/pluginmanagerdialog.py:324
#, python-format
msgid ""
"This plugin is already installed in your system.\n"
"If you agree, version %s will be replaced with version %s"
msgstr ""

#: ../pitivi/ui/pluginmanagerdialog.py:327
msgid "Duplicate plugin found"
msgstr ""

#: ../pitivi/ui/pluginmanagerdialog.py:341
#, python-format
msgid ""
"Cannot install %s\n"
"The file is not a valid plugin"
msgstr ""

#: ../pitivi/ui/projecttabs.py:65
msgid "Clip Library"
msgstr ""

#: ../pitivi/ui/projectsettings.glade.h:1
msgid "A short description of your project."
msgstr ""

#: ../pitivi/ui/projectsettings.glade.h:2
msgid "Description:"
msgstr ""

#: ../pitivi/ui/projectsettings.glade.h:3
msgid "Name:"
msgstr ""

#: ../pitivi/ui/projectsettings.glade.h:4
msgid "Project Settings"
msgstr ""

#: ../pitivi/ui/projectsettings.glade.h:5
msgid "The name of your project."
msgstr ""

#: ../pitivi/ui/propertyeditor.py:54
msgid "No Objects Selected"
msgstr ""

#: ../pitivi/ui/screencast_manager.glade.h:1
msgid "Screen Cast"
msgstr ""

#: ../pitivi/ui/screencast_manager.glade.h:2
msgid "Screencast Desktop"
msgstr ""

#: ../pitivi/ui/screencast_manager.glade.h:3
msgid "Start Istanbul"
msgstr ""

#: ../pitivi/ui/sourcelist.py:82
#, python-format
msgid "<b>Audio:</b> %d channel at %d <i>Hz</i> (%d <i>bits</i>)"
msgid_plural "<b>Audio:</b> %d channels at %d <i>Hz</i> (%d <i>bits</i>)"
msgstr[0] ""
msgstr[1] ""

#: ../pitivi/ui/sourcelist.py:91
#, python-format
msgid "<b>Unknown Audio format:</b> %s"
msgstr ""

#: ../pitivi/ui/sourcelist.py:96
#, python-format
msgid "<b>Video:</b> %d x %d <i>pixels</i> at %.2f<i>fps</i>"
msgstr ""

#: ../pitivi/ui/sourcelist.py:100
#, python-format
msgid "<b>Image:</b> %d x %d <i>pixels</i>"
msgstr ""

#: ../pitivi/ui/sourcelist.py:103
#, python-format
msgid "<b>Unknown Video format:</b> %s"
msgstr ""

#: ../pitivi/ui/sourcelist.py:106
#, python-format
msgid "<b>Text:</b> %s"
msgstr ""

#: ../pitivi/ui/sourcelist.py:148
msgid "Add Clips..."
msgstr ""

#: ../pitivi/ui/sourcelist.py:153
msgid "Remove Clip"
msgstr ""

#: ../pitivi/ui/sourcelist.py:157
msgid "Play Clip"
msgstr ""

#: ../pitivi/ui/sourcelist.py:181
msgid "Icon"
msgstr ""

#: ../pitivi/ui/sourcelist.py:190
msgid "Information"
msgstr ""

#: ../pitivi/ui/sourcelist.py:201
msgid "Duration"
msgstr ""

#: ../pitivi/ui/sourcelist.py:223
msgid ""
"<span size='x-large'>Import your clips by dragging them here or by using the "
"buttons above.</span>"
msgstr ""

#: ../pitivi/ui/sourcelist.py:273
msgid "_Import clips..."
msgstr ""

#: ../pitivi/ui/sourcelist.py:274
msgid "Import clips to use"
msgstr ""

#: ../pitivi/ui/sourcelist.py:276
msgid "_Import folder of clips..."
msgstr ""

#: ../pitivi/ui/sourcelist.py:277
msgid "Import folder of clips to use"
msgstr ""

#: ../pitivi/ui/sourcelist.py:371
msgid "Import a folder"
msgstr ""

#: ../pitivi/ui/sourcelist.py:374
msgid "Import a clip"
msgstr ""

#: ../pitivi/ui/sourcelist.py:375
msgid "Close after importing files"
msgstr ""

#: ../pitivi/ui/sourcelist.py:627
msgid "Importing clips..."
msgstr ""

#: ../pitivi/ui/sourcelist.py:628
msgid "Error(s) occured while importing"
msgstr ""

#: ../pitivi/ui/sourcelist.py:629
msgid "An error occured while importing"
msgstr ""

#: ../pitivi/ui/sourcelist.py:714
msgid "Error while analyzing files"
msgstr ""

#: ../pitivi/ui/sourcelist.py:715
msgid "The following files can not be used with Pitivi."
msgstr ""

#: ../pitivi/ui/sourcelist.py:717
msgid "Error while analyzing a file"
msgstr ""

#: ../pitivi/ui/sourcelist.py:718
msgid "The following file can not be used with Pitivi."
msgstr ""

#. tooltip text for toolbar
#: ../pitivi/ui/timeline.py:41
msgid "Delete Selected"
msgstr ""

#: ../pitivi/ui/timeline.py:42
msgid "Cut clip at mouse position"
msgstr ""

#: ../pitivi/ui/timeline.py:43
msgid "Zoom In"
msgstr ""

#: ../pitivi/ui/timeline.py:44
msgid "Zoom Out"
msgstr ""

#: ../pitivi/ui/timeline.py:45
msgid "Break links between clips"
msgstr ""

#: ../pitivi/ui/timeline.py:46
msgid "Link together arbitrary clips"
msgstr ""

#: ../pitivi/ui/timeline.py:47
msgid "Ungroup clips"
msgstr ""

#: ../pitivi/ui/timeline.py:48
msgid "Group clips"
msgstr ""

#: ../pitivi/ui/timelinecontrols.py:17
msgid "<b>Text:</b>"
msgstr ""