-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlector.pot
1828 lines (1408 loc) · 35.9 KB
/
lector.pot
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
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR CAFE Desktop Environment team
# This file is distributed under the same license as the lector package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: lector 1.25.0\n"
"Report-Msgid-Bugs-To: https://cafe-desktop.org/\n"
"POT-Creation-Date: 2024-02-17 13:13+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <[email protected]>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
#: backend/comics/comics-document.c:208
#, c-format
msgid ""
"Error launching the command “%s” in order to decompress the comic book: %s"
msgstr ""
#: backend/comics/comics-document.c:222
#, c-format
msgid "The command “%s” failed at decompressing the comic book."
msgstr ""
#: backend/comics/comics-document.c:231
#, c-format
msgid "The command “%s” did not end normally."
msgstr ""
#: backend/comics/comics-document.c:459
#, c-format
msgid "Not a comic book MIME type: %s"
msgstr ""
#: backend/comics/comics-document.c:466
msgid "Can't find an appropriate command to decompress this type of comic book"
msgstr ""
#: backend/comics/comics-document.c:540 backend/epub/epub-document.c:632
#: libdocument/ev-document-factory.c:143 libdocument/ev-document-factory.c:286
msgid "Unknown MIME Type"
msgstr ""
#: backend/comics/comics-document.c:567
msgid "File corrupted"
msgstr ""
#: backend/comics/comics-document.c:580
msgid "No files in archive"
msgstr ""
#: backend/comics/comics-document.c:619
#, c-format
msgid "No images found in archive %s"
msgstr ""
#: backend/comics/comics-document.c:866 backend/epub/epub-document.c:1782
#, c-format
msgid "There was an error deleting “%s”."
msgstr ""
#: backend/comics/comics-document.c:1015
#, c-format
msgid "Error %s"
msgstr ""
#: backend/comics/comicsdocument.lector-backend.desktop.in:4
msgid "Comic Books"
msgstr ""
#: backend/djvu/djvu-document.c:173
msgid "DjVu document has incorrect format"
msgstr ""
#: backend/djvu/djvu-document.c:250
msgid ""
"The document is composed of several files. One or more of these files cannot "
"be accessed."
msgstr ""
#: backend/djvu/djvudocument.lector-backend.desktop.in:4
msgid "DjVu Documents"
msgstr ""
#: backend/dvi/dvi-document.c:107
msgid "DVI document has incorrect format"
msgstr ""
#: backend/dvi/dvidocument.lector-backend.desktop.in:4
msgid "DVI Documents"
msgstr ""
#: backend/epub/epub-document.c:649
msgid "Not an ePub document"
msgstr ""
#: backend/epub/epub-document.c:750
msgid "could not retrieve filename"
msgstr ""
#: backend/epub/epub-document.c:778
msgid "could not open archive"
msgstr ""
#: backend/epub/epub-document.c:794 backend/epub/epub-document.c:810
msgid "could not extract archive"
msgstr ""
#: backend/epub/epub-document.c:842 backend/epub/epub-document.c:925
msgid "could not retrieve container file"
msgstr ""
#: backend/epub/epub-document.c:854
msgid "could not open container file"
msgstr ""
#: backend/epub/epub-document.c:864
msgid "container file is corrupt"
msgstr ""
#: backend/epub/epub-document.c:874
msgid "epub file is invalid or corrupt"
msgstr ""
#: backend/epub/epub-document.c:884
msgid "epub file is corrupt, no container"
msgstr ""
#: backend/epub/epub-document.c:969
msgid "could not parse content manifest"
msgstr ""
#: backend/epub/epub-document.c:978
msgid "content file is invalid"
msgstr ""
#: backend/epub/epub-document.c:987
msgid "epub file has no spine"
msgstr ""
#: backend/epub/epub-document.c:996
msgid "epub file has no manifest"
msgstr ""
#: backend/epub/epub-document.c:1082
msgid "Could not set up document tree for loading, some files missing"
msgstr ""
#: backend/epub/epubdocument.lector-backend.desktop.in:4
msgid "epub Documents"
msgstr ""
#: backend/pdf/ev-poppler.cc:519
msgid "This work is in the Public Domain"
msgstr ""
#: backend/pdf/ev-poppler.cc:774 backend/pdf/ev-poppler.cc:780
msgid "Yes"
msgstr ""
#: backend/pdf/ev-poppler.cc:777 backend/pdf/ev-poppler.cc:780
msgid "No"
msgstr ""
#: backend/pdf/ev-poppler.cc:907
msgid "Type 1"
msgstr ""
#: backend/pdf/ev-poppler.cc:909
msgid "Type 1C"
msgstr ""
#: backend/pdf/ev-poppler.cc:911
msgid "Type 3"
msgstr ""
#: backend/pdf/ev-poppler.cc:913
msgid "TrueType"
msgstr ""
#: backend/pdf/ev-poppler.cc:915
msgid "Type 1 (CID)"
msgstr ""
#: backend/pdf/ev-poppler.cc:917
msgid "Type 1C (CID)"
msgstr ""
#: backend/pdf/ev-poppler.cc:919
msgid "TrueType (CID)"
msgstr ""
#: backend/pdf/ev-poppler.cc:921
msgid "Unknown font type"
msgstr ""
#: backend/pdf/ev-poppler.cc:947
msgid "No name"
msgstr ""
#: backend/pdf/ev-poppler.cc:955
msgid "Embedded subset"
msgstr ""
#: backend/pdf/ev-poppler.cc:957
msgid "Embedded"
msgstr ""
#: backend/pdf/ev-poppler.cc:959
msgid "Not embedded"
msgstr ""
#: backend/pdf/pdfdocument.lector-backend.desktop.in:5
msgid "PDF Documents"
msgstr ""
#: backend/pixbuf/pixbufdocument.lector-backend.desktop.in:4
msgid "Images"
msgstr ""
#: backend/ps/ev-spectre.c:102
#, c-format
msgid "Failed to load document “%s”"
msgstr ""
#: backend/ps/ev-spectre.c:135
#, c-format
msgid "Failed to save document “%s”"
msgstr ""
#: backend/ps/psdocument.lector-backend.desktop.in:5
msgid "PostScript Documents"
msgstr ""
#: backend/tiff/tiff-document.c:114
msgid "Invalid document"
msgstr ""
#: backend/tiff/tiffdocument.lector-backend.desktop.in:4
msgid "Tiff Documents"
msgstr ""
#: backend/xps/xpsdocument.lector-backend.desktop.in:5
msgid "XPS Documents"
msgstr ""
#: libdocument/ev-attachment.c:299 libdocument/ev-attachment.c:320
#, c-format
msgid "Couldn't save attachment “%s”: %s"
msgstr ""
#: libdocument/ev-attachment.c:368
#, c-format
msgid "Couldn't open attachment “%s”: %s"
msgstr ""
#: libdocument/ev-attachment.c:403
#, c-format
msgid "Couldn't open attachment “%s”"
msgstr ""
#: libdocument/ev-document-factory.c:168
#, c-format
msgid "File type %s (%s) is not supported"
msgstr ""
#: libdocument/ev-document-factory.c:359
msgid "All Documents"
msgstr ""
#: libdocument/ev-document-factory.c:391
msgid "All Files"
msgstr ""
#: libdocument/ev-file-helpers.c:147
#, c-format
msgid "Failed to create a temporary file: %s"
msgstr ""
#: libdocument/ev-file-helpers.c:309
#, c-format
msgid "Failed to create a temporary directory: %s"
msgstr ""
#: cut-n-paste/smclient/eggdesktopfile.c:165
msgid "File is not a valid .desktop file"
msgstr ""
#: cut-n-paste/smclient/eggdesktopfile.c:188
#, c-format
msgid "Unrecognized desktop file Version '%s'"
msgstr ""
#: cut-n-paste/smclient/eggdesktopfile.c:957
#, c-format
msgid "Starting %s"
msgstr ""
#: cut-n-paste/smclient/eggdesktopfile.c:1098
msgid "Application does not accept documents on command line"
msgstr ""
#: cut-n-paste/smclient/eggdesktopfile.c:1166
#, c-format
msgid "Unrecognized launch option: %d"
msgstr ""
#: cut-n-paste/smclient/eggdesktopfile.c:1364
msgid "Can't pass document URIs to a 'Type=Link' desktop entry"
msgstr ""
#: cut-n-paste/smclient/eggdesktopfile.c:1383
msgid "Not a launchable item"
msgstr ""
#: cut-n-paste/smclient/eggsmclient.c:221
msgid "Disable connection to session manager"
msgstr ""
#: cut-n-paste/smclient/eggsmclient.c:224
msgid "Specify file containing saved configuration"
msgstr ""
#: cut-n-paste/smclient/eggsmclient.c:224 previewer/ev-previewer.c:36
#: previewer/ev-previewer.c:37
msgid "FILE"
msgstr ""
#: cut-n-paste/smclient/eggsmclient.c:227
msgid "Specify session management ID"
msgstr ""
#: cut-n-paste/smclient/eggsmclient.c:227
msgid "ID"
msgstr ""
#: cut-n-paste/smclient/eggsmclient.c:248
msgid "Session management options:"
msgstr ""
#: cut-n-paste/smclient/eggsmclient.c:249
msgid "Show session management options"
msgstr ""
#: cut-n-paste/toolbar-editor/egg-editable-toolbar.c:974
#, c-format
msgid "Show “_%s”"
msgstr ""
#: cut-n-paste/toolbar-editor/egg-editable-toolbar.c:1463
msgid "_Move on Toolbar"
msgstr ""
#: cut-n-paste/toolbar-editor/egg-editable-toolbar.c:1464
msgid "Move the selected item on the toolbar"
msgstr ""
#: cut-n-paste/toolbar-editor/egg-editable-toolbar.c:1465
msgid "_Remove from Toolbar"
msgstr ""
#: cut-n-paste/toolbar-editor/egg-editable-toolbar.c:1466
msgid "Remove the selected item from the toolbar"
msgstr ""
#: cut-n-paste/toolbar-editor/egg-editable-toolbar.c:1467
msgid "_Delete Toolbar"
msgstr ""
#: cut-n-paste/toolbar-editor/egg-editable-toolbar.c:1468
msgid "Remove the selected toolbar"
msgstr ""
#: cut-n-paste/toolbar-editor/egg-toolbar-editor.c:482
msgid "Separator"
msgstr ""
#: cut-n-paste/zoom-control/ephy-zoom.h:49 shell/ev-window.c:6807
msgid "Fit Page"
msgstr ""
#: cut-n-paste/zoom-control/ephy-zoom.h:50 shell/ev-window.c:6811
msgid "Fit Width"
msgstr ""
#: cut-n-paste/zoom-control/ephy-zoom.h:51 shell/ev-window.c:6450
msgid "Expand Window to Fit"
msgstr ""
#: cut-n-paste/zoom-control/ephy-zoom.h:53
msgid "50%"
msgstr ""
#: cut-n-paste/zoom-control/ephy-zoom.h:54
msgid "70%"
msgstr ""
#: cut-n-paste/zoom-control/ephy-zoom.h:55
msgid "85%"
msgstr ""
#: cut-n-paste/zoom-control/ephy-zoom.h:56
msgid "100%"
msgstr ""
#: cut-n-paste/zoom-control/ephy-zoom.h:57
msgid "125%"
msgstr ""
#: cut-n-paste/zoom-control/ephy-zoom.h:58
msgid "150%"
msgstr ""
#: cut-n-paste/zoom-control/ephy-zoom.h:59
msgid "175%"
msgstr ""
#: cut-n-paste/zoom-control/ephy-zoom.h:60
msgid "200%"
msgstr ""
#: cut-n-paste/zoom-control/ephy-zoom.h:61
msgid "300%"
msgstr ""
#: cut-n-paste/zoom-control/ephy-zoom.h:62
msgid "400%"
msgstr ""
#: cut-n-paste/zoom-control/ephy-zoom.h:63
msgid "800%"
msgstr ""
#: cut-n-paste/zoom-control/ephy-zoom.h:64
msgid "1600%"
msgstr ""
#: cut-n-paste/zoom-control/ephy-zoom.h:65
msgid "3200%"
msgstr ""
#: cut-n-paste/zoom-control/ephy-zoom.h:66
msgid "6400%"
msgstr ""
#: data/lector.appdata.xml.in:7 data/lector.desktop.in.in:3
#: shell/ev-window.c:5398
msgid "Lector Document Viewer"
msgstr ""
#: data/lector.appdata.xml.in:8
msgid "A Document Viewer for the CAFE desktop environment"
msgstr ""
#: data/lector.appdata.xml.in:10
msgid ""
"Lector is a simple multi-page document viewer. It can display and print "
"PostScript (PS), Encapsulated PostScript (EPS), DJVU, DVI, XPS and Portable "
"Document Format (PDF) files, as well as comic book archive files. When "
"supported by the document, it also allows searching for text, copying text "
"to the clipboard, hypertext navigation and table-of-contents bookmarks."
msgstr ""
#: data/lector.appdata.xml.in:18
msgid ""
"Lector is a fork of Evince and part of the CAFE Desktop Environment. If you "
"would like to know more about CAFE and Lector, please visit the project's "
"home page."
msgstr ""
#: data/lector.desktop.in.in:4 shell/ev-window.c:5327
#: shell/ev-window-title.c:157
msgid "Document Viewer"
msgstr ""
#: data/lector.desktop.in.in:5
msgid "View multi-page documents"
msgstr ""
#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon!
#: data/lector.desktop.in.in:20
msgid "CAFE;document;viewer;pdf;dvi;ps;xps;tiff;pixbuf;djvu;comics;"
msgstr ""
#: data/org.cafe.Lector.gschema.xml:12
msgid "Override document restrictions"
msgstr ""
#: data/org.cafe.Lector.gschema.xml:13
msgid "Override document restrictions, like restriction to copy or to print."
msgstr ""
#: data/org.cafe.Lector.gschema.xml:17
msgid "Automatically reload the document"
msgstr ""
#: data/org.cafe.Lector.gschema.xml:18
msgid "Whether the document is automatically reloaded on file change."
msgstr ""
#: data/org.cafe.Lector.gschema.xml:22
msgid "The URI of the directory last used to open or save a document."
msgstr ""
#: data/org.cafe.Lector.gschema.xml:26
msgid "The URI of the directory last used to save a picture."
msgstr ""
#: data/org.cafe.Lector.gschema.xml:30
msgid "Page cache size in MiB"
msgstr ""
#: data/org.cafe.Lector.gschema.xml:31
msgid ""
"The maximum size that will be used to cache rendered pages, limits maximum "
"zoom level."
msgstr ""
#: data/org.cafe.Lector.gschema.xml:35
msgid ""
"Show a dialog to confirm that the user wants to activate the caret "
"navigation."
msgstr ""
#: previewer/ev-previewer.c:35
msgid "Delete the temporary file"
msgstr ""
#: previewer/ev-previewer.c:36
msgid "Print settings file"
msgstr ""
#: previewer/ev-previewer.c:107 previewer/ev-previewer.c:141
msgid "CAFE Document Previewer"
msgstr ""
#: previewer/ev-previewer-window.c:96 shell/ev-window.c:3626
msgid "Failed to print document"
msgstr ""
#: previewer/ev-previewer-window.c:236
#, c-format
msgid "The selected printer '%s' could not be found"
msgstr ""
#: previewer/ev-previewer-window.c:280 shell/ev-window.c:6411
msgid "_Close"
msgstr ""
#: previewer/ev-previewer-window.c:283 shell/ev-window.c:6457
msgid "_Previous Page"
msgstr ""
#: previewer/ev-previewer-window.c:284 shell/ev-window.c:6458
msgid "Go to the previous page"
msgstr ""
#: previewer/ev-previewer-window.c:286 shell/ev-window.c:6460
msgid "_Next Page"
msgstr ""
#: previewer/ev-previewer-window.c:287 shell/ev-window.c:6461
msgid "Go to the next page"
msgstr ""
#: previewer/ev-previewer-window.c:289 shell/ev-window.c:6437
msgid "Zoom _In"
msgstr ""
#: previewer/ev-previewer-window.c:290 shell/ev-window.c:6438
msgid "Enlarge the document"
msgstr ""
#: previewer/ev-previewer-window.c:292 shell/ev-window.c:6440
msgid "Zoom _Out"
msgstr ""
#: previewer/ev-previewer-window.c:293 shell/ev-window.c:6441
msgid "Shrink the document"
msgstr ""
#: previewer/ev-previewer-window.c:296 shell/ev-window.c:6444
msgid "Reset zoom to 100%"
msgstr ""
#: previewer/ev-previewer-window.c:300 libview/ev-print-operation.c:1321
msgid "Print"
msgstr ""
#: previewer/ev-previewer-window.c:301 shell/ev-window.c:6407
msgid "Print this document"
msgstr ""
#: previewer/ev-previewer-window.c:335 shell/ev-window.c:6563
msgid "Fit Pa_ge"
msgstr ""
#: previewer/ev-previewer-window.c:336 shell/ev-window.c:6564
msgid "Make the current document fill the window"
msgstr ""
#: previewer/ev-previewer-window.c:338 shell/ev-window.c:6566
msgid "Fit _Width"
msgstr ""
#: previewer/ev-previewer-window.c:339 shell/ev-window.c:6567
msgid "Make the current document fill the window width"
msgstr ""
#: previewer/ev-previewer-window.c:537 shell/ev-window.c:6720
msgid "Page"
msgstr ""
#: previewer/ev-previewer-window.c:538 shell/ev-window.c:6721
msgid "Select Page"
msgstr ""
#: properties/ev-properties-main.c:116
msgid "Document"
msgstr ""
#: properties/ev-properties-view.c:60
msgid "Title:"
msgstr ""
#: properties/ev-properties-view.c:61
msgid "Location:"
msgstr ""
#: properties/ev-properties-view.c:62
msgid "Subject:"
msgstr ""
#: properties/ev-properties-view.c:63
#: shell/ev-annotation-properties-dialog.c:156
msgid "Author:"
msgstr ""
#: properties/ev-properties-view.c:64
msgid "Keywords:"
msgstr ""
#: properties/ev-properties-view.c:65
msgid "Producer:"
msgstr ""
#: properties/ev-properties-view.c:66
msgid "Creator:"
msgstr ""
#: properties/ev-properties-view.c:67
msgid "Created:"
msgstr ""
#: properties/ev-properties-view.c:68
msgid "Modified:"
msgstr ""
#: properties/ev-properties-view.c:69
msgid "Number of Pages:"
msgstr ""
#: properties/ev-properties-view.c:70
msgid "Optimized:"
msgstr ""
#: properties/ev-properties-view.c:71
msgid "Format:"
msgstr ""
#: properties/ev-properties-view.c:72
msgid "Security:"
msgstr ""
#: properties/ev-properties-view.c:73
msgid "Paper Size:"
msgstr ""
#: properties/ev-properties-view.c:193 libview/ev-print-operation.c:1906
msgid "None"
msgstr ""
#: properties/ev-properties-view.c:221
msgid "default:mm"
msgstr ""
#: properties/ev-properties-view.c:265
#, c-format
msgid "%.0f × %.0f mm"
msgstr ""
#: properties/ev-properties-view.c:269
#, c-format
msgid "%.2f × %.2f inch"
msgstr ""
#: properties/ev-properties-view.c:293
#, c-format
msgid "%s, Portrait (%s)"
msgstr ""
#: properties/ev-properties-view.c:300
#, c-format
msgid "%s, Landscape (%s)"
msgstr ""
#: properties/liblector-properties-page.baul-extension.desktop.in:5
msgid "Lector properties"
msgstr ""
#: properties/liblector-properties-page.baul-extension.desktop.in:6
msgid "Shows details for Lector documents"
msgstr ""
#: libmisc/ev-page-action-widget.c:64
#, c-format
msgid "(%d of %d)"
msgstr ""
#: libmisc/ev-page-action-widget.c:66
#, c-format
msgid "of %d"
msgstr ""
#: libview/ev-print-operation.c:346
msgid "Preparing to print…"
msgstr ""
#: libview/ev-print-operation.c:348
msgid "Finishing…"
msgstr ""
#: libview/ev-print-operation.c:350
#, c-format
msgid "Printing page %d of %d…"
msgstr ""
#: libview/ev-print-operation.c:1174
msgid "Printing is not supported on this printer."
msgstr ""
#: libview/ev-print-operation.c:1239
msgid "Invalid page selection"
msgstr ""
#: libview/ev-print-operation.c:1240
msgid "Warning"
msgstr ""
#: libview/ev-print-operation.c:1242
msgid "Your print range selection does not include any pages"
msgstr ""
#: libview/ev-print-operation.c:1900
msgid "Page Scaling:"
msgstr ""
#: libview/ev-print-operation.c:1907
msgid "Shrink to Printable Area"
msgstr ""
#: libview/ev-print-operation.c:1908
msgid "Fit to Printable Area"
msgstr ""
#: libview/ev-print-operation.c:1911
msgid ""
"Scale document pages to fit the selected printer page. Select from one of "
"the following:\n"
"\n"
"• \"None\": No page scaling is performed.\n"
"\n"
"• \"Shrink to Printable Area\": Document pages larger than the printable "
"area are reduced to fit the printable area of the printer page.\n"
"\n"
"• \"Fit to Printable Area\": Document pages are enlarged or reduced as "
"required to fit the printable area of the printer page.\n"
msgstr ""
#: libview/ev-print-operation.c:1923
msgid "Auto Rotate and Center"
msgstr ""
#: libview/ev-print-operation.c:1926
msgid ""
"Rotate printer page orientation of each page to match orientation of each "
"document page. Document pages will be centered within the printer page."
msgstr ""
#: libview/ev-print-operation.c:1931
msgid "Select page size using document page size"
msgstr ""
#: libview/ev-print-operation.c:1933
msgid ""
"When enabled, each page will be printed on the same size paper as the "
"document page."
msgstr ""
#: libview/ev-print-operation.c:2015
msgid "Page Handling"
msgstr ""
#: libview/ev-jobs.c:1726
#, c-format
msgid "Failed to print page %d: %s"
msgstr ""
#: libview/ev-view-accessible.c:43
msgid "Scroll Up"
msgstr ""
#: libview/ev-view-accessible.c:44
msgid "Scroll Down"
msgstr ""
#: libview/ev-view-accessible.c:50
msgid "Scroll View Up"
msgstr ""
#: libview/ev-view-accessible.c:51
msgid "Scroll View Down"
msgstr ""
#: libview/ev-view-accessible.c:128
msgid "Document View"
msgstr ""
#: libview/ev-view-presentation.c:729
msgid "Jump to page:"
msgstr ""
#: libview/ev-view-presentation.c:1062
msgid "End of presentation. Click to exit."
msgstr ""
#: libview/ev-view.c:1903
msgid "Go to first page"
msgstr ""
#: libview/ev-view.c:1905
msgid "Go to previous page"
msgstr ""
#: libview/ev-view.c:1907
msgid "Go to next page"
msgstr ""
#: libview/ev-view.c:1909
msgid "Go to last page"
msgstr ""
#: libview/ev-view.c:1911
msgid "Go to page"
msgstr ""
#: libview/ev-view.c:1913
msgid "Find"
msgstr ""
#: libview/ev-view.c:1941
#, c-format
msgid "Go to page %s"
msgstr ""
#: libview/ev-view.c:1947
#, c-format
msgid "Go to %s on file “%s”"
msgstr ""
#: libview/ev-view.c:1950
#, c-format
msgid "Go to file “%s”"
msgstr ""
#: libview/ev-view.c:1958
#, c-format
msgid "Launch %s"
msgstr ""
#: shell/eggfindbar.c:301
msgid "Find:"
msgstr ""
#: shell/eggfindbar.c:326
msgid "Find previous occurrence of the search string"
msgstr ""
#: shell/eggfindbar.c:334
msgid "Find next occurrence of the search string"
msgstr ""
#: shell/eggfindbar.c:341
msgid "Case Sensitive"
msgstr ""
#: shell/eggfindbar.c:344
msgid "Toggle case sensitive search"
msgstr ""
#: shell/ev-annotation-properties-dialog.c:96
msgid "Icon:"
msgstr ""
#: shell/ev-annotation-properties-dialog.c:102
msgid "Note"
msgstr ""
#: shell/ev-annotation-properties-dialog.c:103
msgid "Comment"
msgstr ""
#: shell/ev-annotation-properties-dialog.c:104
msgid "Key"
msgstr ""
#: shell/ev-annotation-properties-dialog.c:105
msgid "Help"
msgstr ""
#: shell/ev-annotation-properties-dialog.c:106
msgid "New Paragraph"
msgstr ""
#: shell/ev-annotation-properties-dialog.c:107
msgid "Paragraph"
msgstr ""
#: shell/ev-annotation-properties-dialog.c:108
msgid "Insert"
msgstr ""
#: shell/ev-annotation-properties-dialog.c:109
msgid "Cross"
msgstr ""
#: shell/ev-annotation-properties-dialog.c:110
msgid "Circle"
msgstr ""
#: shell/ev-annotation-properties-dialog.c:111
msgid "Unknown"
msgstr ""
#: shell/ev-annotation-properties-dialog.c:136
msgid "Annotation Properties"
msgstr ""
#: shell/ev-annotation-properties-dialog.c:167
msgid "Color:"
msgstr ""
#: shell/ev-annotation-properties-dialog.c:177
msgid "Style:"
msgstr ""
#: shell/ev-annotation-properties-dialog.c:191
msgid "Transparent"
msgstr ""
#: shell/ev-annotation-properties-dialog.c:198
msgid "Opaque"
msgstr ""
#: shell/ev-annotation-properties-dialog.c:208
msgid "Initial window state:"
msgstr ""
#: shell/ev-annotation-properties-dialog.c:214
msgid "Open"
msgstr ""
#: shell/ev-annotation-properties-dialog.c:215
msgid "Close"
msgstr ""
#: shell/ev-keyring.c:86
#, c-format
msgid "Password for document %s"
msgstr ""
#: shell/ev-loading-message.c:50 shell/ev-sidebar-annotations.c:157
#: shell/ev-sidebar-layers.c:122 shell/ev-sidebar-links.c:255
msgid "Loading…"
msgstr ""
#: shell/ev-open-recent-action.c:69
msgid "Open a recently used document"
msgstr ""
#: shell/ev-password-view.c:135
msgid ""
"This document is locked and can only be read by entering the correct "
"password."