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
|
#: src/about.py:19 src/about.py:68
msgid "About"
msgstr ""
#: src/about.py:56
msgid "Comix is an image viewer specifically designed to handle comic books."
msgstr ""
#: src/about.py:58
msgid "It reads ZIP, RAR and tar archives, as well as plain image files."
msgstr ""
#: src/about.py:60
msgid "Comix is licensed under the GNU General Public License."
msgstr ""
#: src/about.py:83
msgid "Developer"
msgstr ""
#: src/about.py:84 src/about.py:85
msgid "Simplified Chinese translation"
msgstr ""
#: src/about.py:86
msgid "Spanish translation"
msgstr ""
#: src/about.py:87
msgid "Brazilian Portuguese translation"
msgstr ""
#: src/about.py:88
msgid "German translation and Nautilus thumbnailer"
msgstr ""
#: src/about.py:89 src/about.py:90
msgid "Italian translation"
msgstr ""
#: src/about.py:91
msgid "Dutch translation"
msgstr ""
#: src/about.py:92
msgid "French translation"
msgstr ""
#: src/about.py:93 src/about.py:94
msgid "Polish translation"
msgstr ""
#: src/about.py:95
msgid "Greek translation"
msgstr ""
#: src/about.py:96
msgid "Catalan translation"
msgstr ""
#: src/about.py:97 src/about.py:98
msgid "Traditional Chinese translation"
msgstr ""
#: src/about.py:99
msgid "Japanese translation"
msgstr ""
#: src/about.py:100
msgid "Hungarian translation"
msgstr ""
#: src/about.py:101
msgid "Russian translation"
msgstr ""
#: src/about.py:102
msgid "Croatian translation"
msgstr ""
#: src/about.py:103
msgid "Korean translation"
msgstr ""
#: src/about.py:104
msgid "Persian translation"
msgstr ""
#: src/about.py:105
msgid "Indonesian translation"
msgstr ""
#: src/about.py:106
msgid "Czech translation"
msgstr ""
#: src/about.py:107
msgid "Icon design"
msgstr ""
#: src/about.py:114
msgid "Credits"
msgstr ""
#: src/archive.py:66
msgid "Could not find RAR file extractor!"
msgstr ""
#: src/archive.py:68
msgid ""
"You need either the <i>rar</i> or the <i>unrar</i> program installed in "
"order to read RAR (.cbr) files."
msgstr ""
#: src/archive.py:305
msgid "ZIP archive"
msgstr ""
#: src/archive.py:306
msgid "Tar archive"
msgstr ""
#: src/archive.py:307
msgid "Gzip compressed tar archive"
msgstr ""
#: src/archive.py:308
msgid "Bzip2 compressed tar archive"
msgstr ""
#: src/archive.py:309
msgid "RAR archive"
msgstr ""
#: src/bookmark.py:28
msgid "_Add bookmark"
msgstr ""
#: src/bookmark.py:30
msgid "_Edit bookmarks..."
msgstr ""
#: src/bookmark.py:32
msgid "_Clear bookmarks..."
msgstr ""
#: src/bookmark.py:78
msgid "Clear all bookmarks?"
msgstr ""
#: src/bookmark.py:80
msgid ""
"All stored bookmarks will be removed. Are you sure that you want to continue?"
msgstr ""
#: src/bookmark.py:230
msgid "Edit bookmarks"
msgstr ""
#: src/bookmark.py:256 src/edit.py:270
msgid "Name"
msgstr ""
#: src/bookmark.py:257
msgid "Page"
msgstr ""
#: src/comment.py:16 src/preferences.py:299
msgid "Comments"
msgstr ""
#: src/comment.py:53
#, python-format
msgid "Could not read %s"
msgstr ""
#: src/deprecated.py:16
msgid "There are deprecated files left on your computer."
msgstr ""
#: src/deprecated.py:22
msgid ""
"Some old files (that were used for storing preferences, the library, "
"bookmarks etc. for older versions of Comix) were found on your computer. If "
"you do not plan on using the older versions of Comix again, you should "
"remove these files in order to save some disk space. Do you want these files "
"to be removed for you now?"
msgstr ""
#: src/edit.py:29
msgid "Edit archive"
msgstr ""
#: src/edit.py:37
msgid "Import"
msgstr ""
#: src/edit.py:51
msgid "Images"
msgstr ""
#: src/edit.py:52
msgid "Other files"
msgstr ""
#: src/edit.py:101
msgid "The new archive could not be saved!"
msgstr ""
#: src/edit.py:103
msgid "The original files have not been removed."
msgstr ""
#: src/edit.py:117
msgid "Archives are stored as ZIP files."
msgstr ""
#: src/edit.py:170 src/edit.py:288
msgid "Remove from archive"
msgstr ""
#: src/edit.py:258
msgid ""
"Please note that the only files that are automatically added to this list "
"are those files in archives that Comix recognizes as comments."
msgstr ""
#: src/edit.py:273
msgid "Size"
msgstr ""
#: src/enhance.py:51
msgid "Enhance image"
msgstr ""
#: src/enhance.py:52
msgid "Defaults"
msgstr ""
#: src/enhance.py:79
msgid "Brightness"
msgstr ""
#: src/enhance.py:90
msgid "Contrast"
msgstr ""
#: src/enhance.py:101
msgid "Saturation"
msgstr ""
#: src/enhance.py:112
msgid "Sharpness"
msgstr ""
#: src/enhance.py:126
msgid "Automatically adjust contrast."
msgstr ""
#: src/enhance.py:128
msgid ""
"Automatically adjust contrast (both lightness and darkness), separately for "
"each colour band."
msgstr ""
#: src/filechooser.py:38 src/library.py:490
msgid "Open"
msgstr ""
#: src/filechooser.py:42
msgid "Save"
msgstr ""
#: src/filechooser.py:78
msgid "All files"
msgstr ""
#: src/filechooser.py:81
msgid "All Archives"
msgstr ""
#: src/filechooser.py:85
msgid "ZIP archives"
msgstr ""
#: src/filechooser.py:87
msgid "RAR archives"
msgstr ""
#: src/filechooser.py:89
msgid "Tar archives"
msgstr ""
#: src/filechooser.py:134
#, python-format
msgid "A file named '%s' already exists. Do you want to replace it?"
msgstr ""
#: src/filechooser.py:137
msgid "Replacing it will overwrite its contents."
msgstr ""
#: src/filechooser.py:182 src/filechooser.py:260
msgid "All images"
msgstr ""
#: src/filechooser.py:184 src/filechooser.py:262
msgid "JPEG images"
msgstr ""
#: src/filechooser.py:185 src/filechooser.py:263
msgid "PNG images"
msgstr ""
#: src/filechooser.py:206
msgid "Automatically add the books to this collection"
msgstr ""
#: src/filehandler.py:209
#, python-format
msgid "Could not open %s: Is a directory."
msgstr ""
#: src/filehandler.py:213
#, python-format
msgid "Could not open %s: No such file."
msgstr ""
#: src/filehandler.py:217
#, python-format
msgid "Could not open %s: Permission denied."
msgstr ""
#: src/filehandler.py:222
#, python-format
msgid "Could not open %s: Unknown file type."
msgstr ""
#: src/filehandler.py:285
#, python-format
msgid "No images in '%s'"
msgstr ""
#: src/filehandler.py:413
msgid "Unknown filetype"
msgstr ""
#: src/librarybackend.py:273 src/librarybackend.py:275
msgid "(Copy)"
msgstr ""
#: src/library.py:38
msgid "Library"
msgstr ""
#: src/library.py:150
msgid "Rename..."
msgstr ""
#: src/library.py:152
msgid "Duplicate collection"
msgstr ""
#: src/library.py:154
msgid "Remove collection..."
msgstr ""
#: src/library.py:202
msgid "All books"
msgstr ""
#: src/library.py:231
msgid "Remove collection from the library?"
msgstr ""
#: src/library.py:233
msgid ""
"The selected collection will be removed from the library (but the books and "
"subcollections in it will remain). Are you sure that you want to continue?"
msgstr ""
#: src/library.py:251
msgid "Rename collection?"
msgstr ""
#: src/library.py:253
msgid "Please enter a new name for the selected collection."
msgstr ""
#: src/library.py:271
#, python-format
msgid "Could not change the name to '%s'."
msgstr ""
#: src/library.py:275 src/library.py:882
msgid "A collection by that name already exists."
msgstr ""
#: src/library.py:285
msgid "Could not duplicate collection."
msgstr ""
#: src/library.py:382
msgid "Root"
msgstr ""
#: src/library.py:386
#, python-format
msgid ""
"Put the collection '%(subcollection)s' in the collection '%(supercollection)"
"s'."
msgstr ""
#: src/library.py:407
#, python-format
msgid "Add books to '%s'."
msgstr ""
#: src/library.py:411
#, python-format
msgid ""
"Move books from '%(source collection)s' to '%(destination collection)s'."
msgstr ""
#: src/library.py:493
msgid "Remove from this collection"
msgstr ""
#: src/library.py:496
msgid "Remove from the library..."
msgstr ""
#: src/library.py:589
#, python-format
msgid "Removed %(num)d book(s) from '%(collection)s'."
msgstr ""
#: src/library.py:598
msgid "Remove books from the library?"
msgstr ""
#: src/library.py:600
msgid ""
"The selected books will be removed from the library (but the original files "
"will be untouched). Are you sure that you want to continue?"
msgstr ""
#: src/library.py:610
#, python-format
msgid "Removed %d book(s) from the library."
msgstr ""
#: src/library.py:770
msgid "Search"
msgstr ""
#: src/library.py:775
msgid ""
"Display only those books that have the specified text string in their full "
"path. The search is not case sensitive."
msgstr ""
#: src/library.py:777
msgid "Cover size"
msgstr ""
#: src/library.py:790
msgid "Add books"
msgstr ""
#: src/library.py:794
msgid "Add more books to the library."
msgstr ""
#: src/library.py:796
msgid "Add collection"
msgstr ""
#: src/library.py:801
msgid "Add a new empty collection."
msgstr ""
#: src/library.py:807
msgid "Open the selected book."
msgstr ""
#: src/library.py:833 src/properties.py:118
#, python-format
msgid "%d pages"
msgstr ""
#: src/library.py:855
msgid "Add new collection?"
msgstr ""
#: src/library.py:857
msgid "Please enter a name for the new collection."
msgstr ""
#: src/library.py:863
msgid "New collection"
msgstr ""
#: src/library.py:877
#, python-format
msgid "Could not add a new collection called '%s'."
msgstr ""
#: src/library.py:911
msgid "Adding books"
msgstr ""
#: src/library.py:931
msgid "Added books"
msgstr ""
#: src/library.py:953
#, python-format
msgid "Adding '%s'..."
msgstr ""
#: src/main.py:699
msgid "SLIDESHOW"
msgstr ""
#: src/preferences.py:80
msgid "Preferences"
msgstr ""
#: src/preferences.py:95
msgid "Background"
msgstr ""
#: src/preferences.py:97
msgid "Use this colour as background"
msgstr ""
#: src/preferences.py:99
msgid "Always use this selected colour as the background colour."
msgstr ""
#: src/preferences.py:104
msgid "Use dynamic background colour."
msgstr ""
#: src/preferences.py:108
msgid "Automatically pick a background colour that fits the viewed image."
msgstr ""
#: src/preferences.py:111
msgid "Thumbnails"
msgstr ""
#: src/preferences.py:112
msgid "Thumbnail size (in pixels)"
msgstr ""
#: src/preferences.py:119
msgid "Show page numbers on thumbnails."
msgstr ""
#: src/preferences.py:126
msgid "Magnifying Glass"
msgstr ""
#: src/preferences.py:127
msgid "Magnifying glass size (in pixels)"
msgstr ""
#: src/preferences.py:133
msgid ""
"Set the size of the magnifying glass. It is a square with a side of this "
"many pixels."
msgstr ""
#: src/preferences.py:135
msgid "Magnification factor"
msgstr ""
#: src/preferences.py:142
msgid "Set the magnification factor of the magnifying glass."
msgstr ""
#: src/preferences.py:145
msgid "Image scaling"
msgstr ""
#: src/preferences.py:146
msgid "Stretch small images."
msgstr ""
#: src/preferences.py:150
msgid ""
"Stretch images to a size that is larger than their original size if the "
"current zoom mode requests it. If this preference is unset, images are never "
"scaled to be larger than their original size."
msgstr ""
#: src/preferences.py:153
msgid "Transparency"
msgstr ""
#: src/preferences.py:155
msgid "Use checkered background for transparent images."
msgstr ""
#: src/preferences.py:161
msgid ""
"Use a grey checkered background for transparent images. If this preference "
"is unset, the background is plain white instead."
msgstr ""
#: src/preferences.py:163
msgid "Appearance"
msgstr ""
#: src/preferences.py:169
msgid "Scroll"
msgstr ""
#: src/preferences.py:171
msgid "Use smart space key scrolling."
msgstr ""
#: src/preferences.py:176
msgid ""
"Use smart scrolling with the space key. Normally the space key scrolls only "
"right down (or up when shift is pressed), but with this preference set it "
"also scrolls sideways and so tries to follow the natural reading order of "
"the comic book."
msgstr ""
#: src/preferences.py:180
msgid "Flip pages when scrolling off the edges of the page."
msgstr ""
#: src/preferences.py:185
msgid ""
"Flip pages when scrolling \"off the page\" with the scroll wheel or with the "
"arrow keys. It takes three consecutive \"steps\" with the scroll wheel or "
"the arrow keys for the pages to be flipped."
msgstr ""
#: src/preferences.py:188 src/ui.py:298
msgid "Double page mode"
msgstr ""
#: src/preferences.py:190
msgid "Flip two pages in double page mode."
msgstr ""
#: src/preferences.py:195
msgid ""
"Flip two pages, instead of one, each time we flip pages in double page mode."
msgstr ""
#: src/preferences.py:198
msgid "Show only one wide image in double page mode."
msgstr ""
#: src/preferences.py:204
msgid ""
"Display only one image in double page mode, if the image's width exceeds its "
"height. The result of this is that scans that span two pages are displayed "
"properly (i.e. alone) also in double page mode."
msgstr ""
#: src/preferences.py:207
msgid "Files"
msgstr ""
#: src/preferences.py:209
msgid "Automatically open the next archive."
msgstr ""
#: src/preferences.py:214
msgid ""
"Automatically open the next archive in the directory when flipping past the "
"last page, or the previous archive when flipping past the first page."
msgstr ""
#: src/preferences.py:217
msgid "Automatically open the last viewed file on startup."
msgstr ""
#: src/preferences.py:222
msgid ""
"Automatically open, on startup, the file that was open when Comix was last "
"closed."
msgstr ""
#: src/preferences.py:225
msgid "Store information about recently opened files."
msgstr ""
#: src/preferences.py:230
msgid ""
"Add information about all files opened from within Comix to the shared "
"recent files list."
msgstr ""
#: src/preferences.py:233
msgid "Store thumbnails for opened files."
msgstr ""
#: src/preferences.py:238
msgid ""
"Store thumbnails for opened files according to the freedesktop.org "
"specification. These thumbnails are shared by many other applications, such "
"as most file managers."
msgstr ""
#: src/preferences.py:241
msgid "Cache"
msgstr ""
#: src/preferences.py:242
msgid "Use a cache to speed up browsing."
msgstr ""
#: src/preferences.py:246
msgid ""
"Cache the images that are next to the currently viewed image in order to "
"speed up browsing. Since the speed improvements are quite big, it is "
"recommended that you have this preference set, unless you are running short "
"on free RAM."
msgstr ""
#: src/preferences.py:248
msgid "Behaviour"
msgstr ""
#: src/preferences.py:254
msgid "Default modes"
msgstr ""
#: src/preferences.py:256
msgid "Use double page mode by default."
msgstr ""
#: src/preferences.py:261
msgid "Use fullscreen by default."
msgstr ""
#: src/preferences.py:266
msgid "Use manga mode by default."
msgstr ""
#: src/preferences.py:271
msgid "Default zoom mode"
msgstr ""
#: src/preferences.py:273 src/ui.py:290
msgid "Best fit mode"
msgstr ""
#: src/preferences.py:274 src/ui.py:292
msgid "Fit width mode"
msgstr ""
#: src/preferences.py:275 src/ui.py:294
msgid "Fit height mode"
msgstr ""
#: src/preferences.py:276 src/ui.py:296
msgid "Manual zoom mode"
msgstr ""
#: src/preferences.py:282
msgid "Fullscreen"
msgstr ""
#: src/preferences.py:284
msgid "Automatically hide all toolbars in fullscreen."
msgstr ""
#: src/preferences.py:290
msgid "Slideshow"
msgstr ""
#: src/preferences.py:291
msgid "Slideshow delay (in seconds)"
msgstr ""
#: src/preferences.py:300
msgid "Comment extensions"
msgstr ""
#: src/preferences.py:306
msgid ""
"Treat all files found within archives, that have one of these file endings, "
"as comments."
msgstr ""
#: src/preferences.py:309
msgid "Rotation"
msgstr ""
#: src/preferences.py:311
msgid "Automatically rotate images according to their metadata."
msgstr ""
#: src/preferences.py:316
msgid ""
"Automatically rotate images when an orientation is specified in the image "
"metadata, such as in an Exif tag."
msgstr ""
#: src/preferences.py:318
msgid "Display"
msgstr ""
#: src/properties.py:94
msgid "Properties"
msgstr ""
#: src/properties.py:119
#, python-format
msgid "%d comments"
msgstr ""
#: src/properties.py:129 src/properties.py:164
msgid "Location"
msgstr ""
#: src/properties.py:131 src/properties.py:165
msgid "Accessed"
msgstr ""
#: src/properties.py:133 src/properties.py:167
msgid "Modified"
msgstr ""
#: src/properties.py:135 src/properties.py:169
msgid "Permissions"
msgstr ""
#: src/properties.py:136 src/properties.py:170
msgid "Owner"
msgstr ""
#: src/properties.py:140
msgid "Archive"
msgstr ""
#: src/properties.py:174
msgid "Image"
msgstr ""
#: src/thumbremover.py:24
msgid "Thumbnail maintenance"
msgstr ""
#: src/thumbremover.py:26
msgid "Cleanup"
msgstr ""
#: src/thumbremover.py:38
msgid "Cleanup thumbnails"
msgstr ""
#: src/thumbremover.py:48
msgid ""
"Thumbnails for files (such as image files and comic book archives) are "
"stored in your home directory. Many different applications use and create "
"these thumbnails, but sometimes thumbnails remain even though the original "
"files have been removed - wasting space. This dialog can cleanup your stored "
"thumbnails by removing orphaned and outdated thumbnails."
msgstr ""
#: src/thumbremover.py:60
msgid "Thumbnail directory"
msgstr ""
#: src/thumbremover.py:67
msgid "Total number of thumbnails"
msgstr ""
#: src/thumbremover.py:70 src/thumbremover.py:77
msgid "Calculating..."
msgstr ""
#: src/thumbremover.py:74
msgid "Total size of thumbnails"
msgstr ""
#: src/thumbremover.py:82
msgid "Do you want to cleanup orphaned and outdated thumbnails now?"
msgstr ""
#: src/thumbremover.py:118
msgid "Removing thumbnails"
msgstr ""
#: src/thumbremover.py:137
msgid "Number of removed thumbnails"
msgstr ""
#: src/thumbremover.py:144
msgid "Total size of removed thumbnails"
msgstr ""
#: src/thumbremover.py:195
#, python-format
msgid "Removed thumbnail for '%s'"
msgstr ""
#: src/ui.py:34
msgid "_Next page"
msgstr ""
#: src/ui.py:36
msgid "_Previous page"
msgstr ""
#: src/ui.py:38
msgid "_First page"
msgstr ""
#: src/ui.py:40
msgid "_Last page"
msgstr ""
#: src/ui.py:42
msgid "_Zoom in"
msgstr ""
#: src/ui.py:44
msgid "Zoom _out"
msgstr ""
#: src/ui.py:46
msgid "O_riginal size"
msgstr ""
#: src/ui.py:48
msgid "_Close"
msgstr ""
#: src/ui.py:50
msgid "_Quit"
msgstr ""
#: src/ui.py:52
msgid "_Rotate 90 degrees CW"
msgstr ""
#: src/ui.py:54
msgid "Rotate 180 de_grees"
msgstr ""
#: src/ui.py:56
msgid "Rotat_e 90 degrees CCW"
msgstr ""
#: src/ui.py:58
msgid "Fli_p horizontally"
msgstr ""
#: src/ui.py:60
msgid "Flip _vertically"
msgstr ""
#: src/ui.py:62
msgid "Manual _Zoom"
msgstr ""
#: src/ui.py:63
msgid "Open _recent"
msgstr ""
#: src/ui.py:64
msgid "_Bookmarks"
msgstr ""
#: src/ui.py:65
msgid "T_oolbars"
msgstr ""
#: src/ui.py:66
msgid "_Edit"
msgstr ""
#: src/ui.py:67
msgid "_File"
msgstr ""
#: src/ui.py:68
msgid "_View"
msgstr ""
#: src/ui.py:69
msgid "_Go"
msgstr ""
#: src/ui.py:70
msgid "_Help"
msgstr ""
#: src/ui.py:71
msgid "_Transform"
msgstr ""
#: src/ui.py:75
msgid "_Fullscreen"
msgstr ""
#: src/ui.py:77
msgid "_Double page mode"
msgstr ""
#: src/ui.py:79
msgid "_Toolbar"
msgstr ""
#: src/ui.py:81
msgid "_Menubar"
msgstr ""
#: src/ui.py:83
msgid "St_atusbar"
msgstr ""
#: src/ui.py:85
msgid "S_crollbars"
msgstr ""
#: src/ui.py:87
msgid "Th_umbnails"
msgstr ""
#: src/ui.py:89
msgid "H_ide all"
msgstr ""
#: src/ui.py:91
msgid "_Manga mode"
msgstr ""
#: src/ui.py:93
msgid "_Keep transformation"
msgstr ""
#: src/ui.py:95
msgid "Run _slideshow"
msgstr ""
#: src/ui.py:97
msgid "Magnifying _glass"
msgstr ""
#: src/ui.py:103
msgid "_Best fit mode"
msgstr ""
#: src/ui.py:105
msgid "Fit _width mode"
msgstr ""
#: src/ui.py:107
msgid "Fit _height mode"
msgstr ""
#: src/ui.py:109
msgid "M_anual zoom mode"
msgstr ""
#: src/ui.py:115
msgid "_About"
msgstr ""
#: src/ui.py:117
msgid "_View comments..."
msgstr ""
#: src/ui.py:119
msgid "_Edit archive..."
msgstr ""
#: src/ui.py:121
msgid "_Open..."
msgstr ""
#: src/ui.py:123
msgid "_Properties"
msgstr ""
#: src/ui.py:125
msgid "_Enhance image..."
msgstr ""
#: src/ui.py:128
msgid "_Thumbnail maintenance..."
msgstr ""
#: src/ui.py:130
msgid "Pr_eferences"
msgstr ""
#: src/ui.py:134
msgid "_Library..."
msgstr ""
#: src/ui.py:284
msgid "First page"
msgstr ""
#: src/ui.py:286
msgid "Previous page"
msgstr ""
#: src/ui.py:287
msgid "Next page"
msgstr ""
#: src/ui.py:288
msgid "Last page"
msgstr ""
#: src/ui.py:299
msgid "Manga mode"
msgstr ""
#: src/ui.py:300
msgid "Magnifying glass"
msgstr ""
|