1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232
|
# 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.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-11-24 19:16+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../rednotebook/info.py:30
msgid "A Desktop Journal"
msgstr ""
#: ../rednotebook/info.py:48
msgid ""
"RedNotebook is a modern desktop journal. It lets you format, tag and\n"
"search your entries. You can also add pictures, links and customizable\n"
"templates, spell check your notes, and export to plain text, HTML or\n"
"Latex.\n"
msgstr ""
#: ../rednotebook/gui/options.py:81
msgid "Load RedNotebook at startup"
msgstr ""
#: ../rednotebook/gui/options.py:161
msgid "%A, %x, Day %j"
msgstr ""
#: ../rednotebook/gui/options.py:163
msgid "Week %W of Year %Y"
msgstr ""
#: ../rednotebook/gui/options.py:165
msgid "Day %j"
msgstr ""
#: ../rednotebook/gui/options.py:173
msgid "Help"
msgstr ""
#: ../rednotebook/gui/options.py:209
msgid "Choose font ..."
msgstr ""
#: ../rednotebook/gui/options.py:217
msgid "Choose font"
msgstr ""
#: ../rednotebook/gui/options.py:299
msgid "Close to system tray"
msgstr ""
#: ../rednotebook/gui/options.py:301
msgid "Closing the window will send RedNotebook to the tray"
msgstr ""
#: ../rednotebook/gui/options.py:308
msgid "Switch between edit and preview mode automatically"
msgstr ""
#: ../rednotebook/gui/options.py:315
msgid "Check for new version at startup"
msgstr ""
#: ../rednotebook/gui/options.py:318
msgid "Search as you type"
msgstr ""
#: ../rednotebook/gui/options.py:320
msgid "Auto indent"
msgstr ""
#: ../rednotebook/gui/options.py:330
msgid "Check now"
msgstr ""
#: ../rednotebook/gui/options.py:337
msgid "Edit font:"
msgstr ""
#: ../rednotebook/gui/options.py:339
msgid "Preview font:"
msgstr ""
#: ../rednotebook/gui/options.py:342
msgid "Comma-separated font names"
msgstr ""
#: ../rednotebook/gui/options.py:345
msgid "Date/Time format"
msgstr ""
#: ../rednotebook/gui/options.py:347
msgid "Used by Date/Time button and $date$ template macro."
msgstr ""
#: ../rednotebook/gui/options.py:350
msgid "Date format"
msgstr ""
#: ../rednotebook/gui/options.py:352
msgid "Used for dates in titlebar and exports."
msgstr ""
#: ../rednotebook/gui/options.py:355
msgid "Tags in cloud"
msgstr ""
#: ../rednotebook/gui/options.py:357
msgid "Maximum number of tags displayed in the cloud"
msgstr ""
#: ../rednotebook/gui/options.py:360
msgid "Exclude from cloud"
msgstr ""
#: ../rednotebook/gui/options.py:363
msgid "Do not show these comma separated words and #tags in the clouds"
msgstr ""
#: ../rednotebook/gui/options.py:367
msgid "Include small words in cloud"
msgstr ""
#: ../rednotebook/gui/options.py:369
msgid "Allow these words with 4 letters or less"
msgstr ""
#: ../rednotebook/gui/format_menu.py:92
msgid "Bold"
msgstr ""
#: ../rednotebook/gui/format_menu.py:100
msgid "Italic"
msgstr ""
#: ../rednotebook/gui/format_menu.py:108
msgid "Monospace"
msgstr ""
#: ../rednotebook/gui/format_menu.py:116
msgid "Underline"
msgstr ""
#: ../rednotebook/gui/format_menu.py:124
msgid "Strikethrough"
msgstr ""
#: ../rednotebook/gui/format_menu.py:132
msgid "Clear Format"
msgstr ""
#. Translators: Noun
#: ../rednotebook/gui/format_menu.py:138
msgid "_Format"
msgstr ""
#. Translators: Noun
#: ../rednotebook/gui/format_menu.py:156 ../rednotebook/gui/exports.py:409
msgid "Format"
msgstr ""
#: ../rednotebook/gui/format_menu.py:157
msgid "Format the selected text or tag"
msgstr ""
#: ../rednotebook/gui/main_window.py:184
msgid "Preview in Browser"
msgstr ""
#: ../rednotebook/gui/main_window.py:330
msgid "Show RedNotebook"
msgstr ""
#: ../rednotebook/gui/main_window.py:590
msgid "No directory selected."
msgstr ""
#: ../rednotebook/gui/main_window.py:690
msgid "Template"
msgstr ""
#: ../rednotebook/gui/main_window.py:694
msgid ""
"Insert this weekday's template. Click the arrow on the right for more options"
msgstr ""
#: ../rednotebook/gui/insert_menu.py:106 ../rednotebook/gui/insert_menu.py:113
msgid "First Item"
msgstr ""
#: ../rednotebook/gui/insert_menu.py:107 ../rednotebook/gui/insert_menu.py:114
msgid "Second Item"
msgstr ""
#: ../rednotebook/gui/insert_menu.py:108 ../rednotebook/gui/insert_menu.py:115
msgid "Indented Item"
msgstr ""
#: ../rednotebook/gui/insert_menu.py:109 ../rednotebook/gui/insert_menu.py:116
msgid "Two blank lines close the list"
msgstr ""
#: ../rednotebook/gui/insert_menu.py:140
msgid "Picture"
msgstr ""
#: ../rednotebook/gui/insert_menu.py:142
msgid "Insert an image from the harddisk"
msgstr ""
#: ../rednotebook/gui/insert_menu.py:148
msgid "File"
msgstr ""
#: ../rednotebook/gui/insert_menu.py:150
msgid "Insert a link to a file"
msgstr ""
#: ../rednotebook/gui/insert_menu.py:157
msgid "_Link"
msgstr ""
#: ../rednotebook/gui/insert_menu.py:159
msgid "Insert a link to a website"
msgstr ""
#: ../rednotebook/gui/insert_menu.py:165
msgid "Bullet List"
msgstr ""
#: ../rednotebook/gui/insert_menu.py:173
msgid "Numbered List"
msgstr ""
#: ../rednotebook/gui/insert_menu.py:178
msgid "Title"
msgstr ""
#: ../rednotebook/gui/insert_menu.py:182
msgid "Line"
msgstr ""
#: ../rednotebook/gui/insert_menu.py:184
msgid "Insert a separator line"
msgstr ""
#: ../rednotebook/gui/insert_menu.py:190
msgid "Date/Time"
msgstr ""
#: ../rednotebook/gui/insert_menu.py:192
msgid "Insert the current date and time (edit format in preferences)"
msgstr ""
#: ../rednotebook/gui/insert_menu.py:198
msgid "Line Break"
msgstr ""
#: ../rednotebook/gui/insert_menu.py:200
msgid "Insert a manual line break"
msgstr ""
#: ../rednotebook/gui/insert_menu.py:203
msgid "_Insert"
msgstr ""
#: ../rednotebook/gui/insert_menu.py:208
msgid "Level"
msgstr ""
#: ../rednotebook/gui/insert_menu.py:243
msgid "Insert"
msgstr ""
#: ../rednotebook/gui/insert_menu.py:245
msgid "Insert images, files, links and other content"
msgstr ""
#: ../rednotebook/gui/insert_menu.py:276
msgid "Width (optional):"
msgstr ""
#: ../rednotebook/gui/insert_menu.py:282
msgid "pixels"
msgstr ""
#: ../rednotebook/gui/insert_menu.py:303
msgid "Width must be an integer."
msgstr ""
#: ../rednotebook/gui/insert_menu.py:387
msgid "No link location has been entered"
msgstr ""
#: ../rednotebook/gui/search.py:100
msgid "Replace"
msgstr ""
#: ../rednotebook/gui/search.py:123 ../rednotebook/gui/exports.py:416
msgid "Date"
msgstr ""
#: ../rednotebook/gui/search.py:123
msgid "Text"
msgstr ""
#: ../rednotebook/gui/customwidgets.py:48
msgid "Search"
msgstr ""
#: ../rednotebook/gui/customwidgets.py:339
msgid "Save and insert"
msgstr ""
#: ../rednotebook/gui/customwidgets.py:341 ../rednotebook/gui/menu.py:110
msgid "Save"
msgstr ""
#: ../rednotebook/gui/customwidgets.py:343
msgid "Close"
msgstr ""
#: ../rednotebook/gui/menu.py:93
msgid "_Journal"
msgstr ""
#: ../rednotebook/gui/menu.py:97
msgid "New"
msgstr ""
#: ../rednotebook/gui/menu.py:99
msgid "Create a new journal. The old one will be saved"
msgstr ""
#: ../rednotebook/gui/menu.py:105 tmp/main_window.glade.h:9
msgid "Open"
msgstr ""
#: ../rednotebook/gui/menu.py:107
msgid "Load an existing journal. The old journal will be saved"
msgstr ""
#: ../rednotebook/gui/menu.py:114
msgid "Save As"
msgstr ""
#: ../rednotebook/gui/menu.py:117
msgid ""
"Save journal at a new location. The old journal files will also be saved"
msgstr ""
#: ../rednotebook/gui/menu.py:125
msgid "Export"
msgstr ""
#: ../rednotebook/gui/menu.py:127
msgid "Open the export assistant"
msgstr ""
#: ../rednotebook/gui/menu.py:134
msgid "_Backup"
msgstr ""
#: ../rednotebook/gui/menu.py:136
msgid "Save all the data in a zip archive"
msgstr ""
#: ../rednotebook/gui/menu.py:142
msgid "S_tatistics"
msgstr ""
#: ../rednotebook/gui/menu.py:144
msgid "Show some statistics about the journal"
msgstr ""
#: ../rednotebook/gui/menu.py:150
msgid "Quit"
msgstr ""
#: ../rednotebook/gui/menu.py:152
msgid "Shutdown RedNotebook. It will not be sent to the tray."
msgstr ""
#: ../rednotebook/gui/menu.py:155
msgid "_Edit"
msgstr ""
#: ../rednotebook/gui/menu.py:159
msgid "Undo"
msgstr ""
#: ../rednotebook/gui/menu.py:161
msgid "Undo text or tag edits"
msgstr ""
#: ../rednotebook/gui/menu.py:167
msgid "Redo"
msgstr ""
#: ../rednotebook/gui/menu.py:169
msgid "Redo text or tag edits"
msgstr ""
#: ../rednotebook/gui/menu.py:175
msgid "Cut"
msgstr ""
#: ../rednotebook/gui/menu.py:183
msgid "Copy"
msgstr ""
#: ../rednotebook/gui/menu.py:191
msgid "Paste"
msgstr ""
#: ../rednotebook/gui/menu.py:199
msgid "Fullscreen"
msgstr ""
#: ../rednotebook/gui/menu.py:207
msgid "Find"
msgstr ""
#: ../rednotebook/gui/menu.py:219
msgid "Spell Check"
msgstr ""
#: ../rednotebook/gui/menu.py:221
msgid "Underline misspelled words"
msgstr ""
#: ../rednotebook/gui/menu.py:231 tmp/main_window.glade.h:29
msgid "Preferences"
msgstr ""
#: ../rednotebook/gui/menu.py:236
msgid "_Help"
msgstr ""
#: ../rednotebook/gui/menu.py:240
msgid "Contents"
msgstr ""
#: ../rednotebook/gui/menu.py:242
msgid "Open the RedNotebook documentation"
msgstr ""
#: ../rednotebook/gui/menu.py:248
msgid "Donate"
msgstr ""
#: ../rednotebook/gui/menu.py:250
msgid "Support RedNotebook with a donation"
msgstr ""
#: ../rednotebook/gui/menu.py:256
msgid "Translate RedNotebook"
msgstr ""
#: ../rednotebook/gui/menu.py:258
msgid "Help translate RedNotebook to your language"
msgstr ""
#: ../rednotebook/gui/menu.py:264
msgid "Report a Problem"
msgstr ""
#: ../rednotebook/gui/menu.py:266
msgid "Fill out a short form about the problem"
msgstr ""
#: ../rednotebook/gui/menu.py:272
msgid "Give Feedback"
msgstr ""
#: ../rednotebook/gui/menu.py:274
msgid "How can we improve RedNotebook?"
msgstr ""
#: ../rednotebook/gui/menu.py:277
msgid "About"
msgstr ""
#: ../rednotebook/gui/menu.py:295
msgid "Wrong directory"
msgstr ""
#: ../rednotebook/gui/menu.py:299 ../rednotebook/journal.py:248
msgid "You cannot use this directory for your journal:"
msgstr ""
#: ../rednotebook/gui/menu.py:306
msgid "Please select an empty directory."
msgstr ""
#: ../rednotebook/gui/menu.py:311
msgid "This directory contains no journal files:"
msgstr ""
#: ../rednotebook/gui/menu.py:330
msgid "Journals are saved in a directory, not in a single file."
msgstr ""
#: ../rednotebook/gui/menu.py:331
msgid "The directory name will be the title of the new journal."
msgstr ""
#: ../rednotebook/gui/menu.py:334
msgid "Select an empty folder for your new journal"
msgstr ""
#: ../rednotebook/gui/menu.py:340
msgid "Select an existing journal directory"
msgstr ""
#: ../rednotebook/gui/menu.py:341
msgid "The directory should contain your journal's data files"
msgstr ""
#: ../rednotebook/gui/menu.py:354
msgid "Select an empty folder for the new location of your journal"
msgstr ""
#: ../rednotebook/gui/menu.py:355
msgid "The directory name will be the new title of the journal"
msgstr ""
#: ../rednotebook/gui/menu.py:423
msgid "RedNotebook Documentation"
msgstr ""
#: ../rednotebook/gui/menu.py:451
msgid "Contributors:"
msgstr ""
#. Translators: TRANSLATORS: Replace this string with your names, one name per line.
#: ../rednotebook/gui/menu.py:452 tmp/main_window.glade.h:2
msgid "translator-credits"
msgstr ""
#: ../rednotebook/gui/clouds.py:74
msgid "filter, these, comma, separated, words, and, #tags"
msgstr ""
#: ../rednotebook/gui/clouds.py:79
msgid "mtv, spam, work, job, play"
msgstr ""
#: ../rednotebook/gui/clouds.py:213 ../rednotebook/gui/categories.py:48
#: ../rednotebook/util/markup.py:121 ../rednotebook/help.py:33
msgid "Tags"
msgstr ""
#: ../rednotebook/gui/clouds.py:215 ../rednotebook/util/statistics.py:62
#: ../rednotebook/util/statistics.py:75
msgid "Words"
msgstr ""
#: ../rednotebook/gui/clouds.py:251
#, python-format
msgid "Hide \"%s\" from clouds"
msgstr ""
#: ../rednotebook/gui/exports.py:42 ../rednotebook/gui/exports.py:411
msgid "Export all days"
msgstr ""
#: ../rednotebook/gui/exports.py:45
msgid "Export currently visible day"
msgstr ""
#: ../rednotebook/gui/exports.py:48
msgid "Export days in the selected time range"
msgstr ""
#: ../rednotebook/gui/exports.py:58
msgid "From:"
msgstr ""
#: ../rednotebook/gui/exports.py:60
msgid "To:"
msgstr ""
#: ../rednotebook/gui/exports.py:108
msgid "Export currently selected text"
msgstr ""
#: ../rednotebook/gui/exports.py:120
msgid "(Only available when text is selected in edit mode)"
msgstr ""
#: ../rednotebook/gui/exports.py:134
msgid "Export text and tags"
msgstr ""
#: ../rednotebook/gui/exports.py:136
msgid "Export text only"
msgstr ""
#: ../rednotebook/gui/exports.py:139
msgid "Export tags only"
msgstr ""
#: ../rednotebook/gui/exports.py:141
msgid "Filter days by tags"
msgstr ""
#: ../rednotebook/gui/exports.py:150
msgid "Available tags"
msgstr ""
#: ../rednotebook/gui/exports.py:153
msgid "Selected tags"
msgstr ""
#: ../rednotebook/gui/exports.py:162
msgid "Select"
msgstr ""
#: ../rednotebook/gui/exports.py:163
msgid "Deselect"
msgstr ""
#: ../rednotebook/gui/exports.py:258
msgid "When filtering by tags, you have to select at least one tag."
msgstr ""
#: ../rednotebook/gui/exports.py:281
msgid "You have selected the following settings:"
msgstr ""
#: ../rednotebook/gui/exports.py:306
msgid "Export Assistant"
msgstr ""
#: ../rednotebook/gui/exports.py:314
msgid "Welcome to the Export Assistant."
msgstr ""
#: ../rednotebook/gui/exports.py:316
msgid "This wizard will help you to export your journal to various formats."
msgstr ""
#: ../rednotebook/gui/exports.py:319
msgid ""
"You can select the days you want to export and where the output will be "
"saved."
msgstr ""
#: ../rednotebook/gui/exports.py:332
msgid "PDF: export to HTML, open in browser and print to PDF file"
msgstr ""
#: ../rednotebook/gui/exports.py:337
msgid "Select Export Format"
msgstr ""
#: ../rednotebook/gui/exports.py:342
msgid "Select Date Range"
msgstr ""
#: ../rednotebook/gui/exports.py:347
msgid "Select Contents"
msgstr ""
#: ../rednotebook/gui/exports.py:353
msgid "Select Export Path"
msgstr ""
#: ../rednotebook/gui/exports.py:358
msgid "Summary"
msgstr ""
#: ../rednotebook/gui/exports.py:418
msgid "Export selected text only"
msgstr ""
#: ../rednotebook/gui/exports.py:422
msgid "Start date"
msgstr ""
#: ../rednotebook/gui/exports.py:423
msgid "End date"
msgstr ""
#: ../rednotebook/gui/exports.py:428
msgid "Include text"
msgstr ""
#: ../rednotebook/gui/exports.py:431
msgid "Include tags"
msgstr ""
#: ../rednotebook/gui/exports.py:435
msgid "Filtered by tags"
msgstr ""
#: ../rednotebook/gui/exports.py:437
msgid "Export path"
msgstr ""
#: ../rednotebook/gui/exports.py:440
msgid "Yes"
msgstr ""
#: ../rednotebook/gui/exports.py:440
msgid "No"
msgstr ""
#: ../rednotebook/gui/exports.py:485
#, python-format
msgid "Content exported to %s"
msgstr ""
#: ../rednotebook/gui/exports.py:523
msgid "Plain Text"
msgstr ""
#: ../rednotebook/gui/categories.py:133
msgid "Empty entries are not allowed"
msgstr ""
#: ../rednotebook/gui/categories.py:325
msgid "Change this text"
msgstr ""
#: ../rednotebook/gui/categories.py:333
msgid "Add a new entry"
msgstr ""
#: ../rednotebook/gui/categories.py:341
msgid "Delete this entry"
msgstr ""
#: ../rednotebook/util/dates.py:60
msgid "Incorrect date format"
msgstr ""
#: ../rednotebook/util/utils.py:116
#, python-format
msgid "You have version <b>%s</b>."
msgstr ""
#: ../rednotebook/util/utils.py:118
#, python-format
msgid "The latest version is <b>%s</b>."
msgstr ""
#: ../rednotebook/util/utils.py:121
msgid "If you like the program, please consider making a donation."
msgstr ""
#: ../rednotebook/util/utils.py:123
msgid "Do you want to visit the RedNotebook homepage?"
msgstr ""
#: ../rednotebook/util/utils.py:131
msgid "Do not ask again"
msgstr ""
#: ../rednotebook/util/utils.py:160
msgid "unknown"
msgstr ""
#: ../rednotebook/util/statistics.py:63
msgid "Distinct Words"
msgstr ""
#: ../rednotebook/util/statistics.py:64
msgid "Edited Days"
msgstr ""
#: ../rednotebook/util/statistics.py:65 ../rednotebook/util/statistics.py:77
msgid "Letters"
msgstr ""
#: ../rednotebook/util/statistics.py:66
msgid "Days between first and last Entry"
msgstr ""
#: ../rednotebook/util/statistics.py:67
msgid "Average number of Words"
msgstr ""
#: ../rednotebook/util/statistics.py:68
msgid "Percentage of edited Days"
msgstr ""
#: ../rednotebook/util/statistics.py:76
msgid "Lines"
msgstr ""
#: ../rednotebook/help.py:35
msgid "Hello!"
msgstr ""
#: ../rednotebook/help.py:37
msgid ""
"Some example text has been added to help you start and you can erase it "
"whenever you like."
msgstr ""
#: ../rednotebook/help.py:42
msgid ""
"The example text and more documentation is available under \"Help\" -> "
"\"Contents\"."
msgstr ""
#. Translators: noun
#. Translators: Verb
#: ../rednotebook/help.py:47 tmp/main_window.glade.h:21
msgid "Preview"
msgstr ""
#: ../rednotebook/help.py:49
msgid ""
"There are two modes in RedNotebook, the __edit__ mode and the __preview__ "
"mode."
msgstr ""
#: ../rednotebook/help.py:51
msgid "Click on Edit above to see the difference."
msgstr ""
#: ../rednotebook/help.py:54
msgid "Tagging is easy."
msgstr ""
#: ../rednotebook/help.py:55
msgid "Just use #hashtags like on twitter."
msgstr ""
#: ../rednotebook/help.py:59
msgid ""
"Today I went to the //pet shop// and bought a **tiger**. Then we went to the "
"--pool-- park and had a nice time playing ultimate frisbee. Afterwards we "
"watched \"__Life of Brian__\"."
msgstr ""
#: ../rednotebook/help.py:64
msgid "Templates"
msgstr ""
#: ../rednotebook/help.py:65
msgid "RedNotebook supports templates."
msgstr ""
#: ../rednotebook/help.py:66
msgid "Click on the arrow next to the \"Template\" button to see some options."
msgstr ""
#: ../rednotebook/help.py:68
msgid ""
"You can have one template for every day\n"
"of the week and unlimited arbitrarily named templates."
msgstr ""
#. Translators: both are verbs
#: ../rednotebook/help.py:74
msgid "Save and Export"
msgstr ""
#: ../rednotebook/help.py:76
msgid ""
"Everything you enter will be saved automatically at regular intervals and "
"when you exit the program."
msgstr ""
#: ../rednotebook/help.py:79
msgid "To avoid data loss you should backup your journal regularly."
msgstr ""
#: ../rednotebook/help.py:80
msgid ""
"\"Backup\" in the \"Journal\" menu saves all your entered data in a zip file."
msgstr ""
#: ../rednotebook/help.py:81
msgid "In the \"Journal\" menu you also find the \"Export\" button."
msgstr ""
#: ../rednotebook/help.py:82
msgid ""
"Click on \"Export\" and export your diary to Plain Text, PDF, HTML or Latex."
msgstr ""
#: ../rednotebook/help.py:85
msgid "If you encounter any errors, please drop me a note so I can fix them."
msgstr ""
#: ../rednotebook/help.py:86
msgid "Any feedback is appreciated."
msgstr ""
#: ../rednotebook/help.py:89
msgid "Have a nice day!"
msgstr ""
#: ../rednotebook/help.py:114
msgid ""
"=== Multiple entries ===\n"
"You can add multiple entries to a single day by separating your entries with "
"different titles (=== Work ===, === Family ===)."
msgstr ""
#: ../rednotebook/help.py:121
msgid ""
"=== Work ===\n"
"Here goes the first entry. It is about #work.\n"
"\n"
"====================\n"
"\n"
"=== Family ===\n"
"Here comes the entry about my #family."
msgstr ""
#: ../rednotebook/journal.py:251
msgid "Opening default journal."
msgstr ""
#: ../rednotebook/journal.py:378
#, python-format
msgid "The content has been saved to %s"
msgstr ""
#: ../rednotebook/journal.py:383
msgid "The journal could not be saved"
msgstr ""
#: ../rednotebook/journal.py:385
msgid "Nothing to save"
msgstr ""
#: ../rednotebook/journal.py:527
msgid "Error"
msgstr ""
#: ../rednotebook/journal.py:583
#, python-brace-format
msgid "Replaced {total_replacements} occurrences of the search text"
msgstr ""
#: ../rednotebook/journal.py:587
msgid "No text has been replaced"
msgstr ""
#: ../rednotebook/backup.py:58
#, python-format
msgid "It has been %d days since you made your last backup."
msgstr ""
#: ../rednotebook/backup.py:60
msgid "You can backup your journal to a zip file to avoid data loss."
msgstr ""
#: ../rednotebook/backup.py:67
msgid "Backup"
msgstr ""
#: ../rednotebook/backup.py:70
msgid "Backup now"
msgstr ""
#: ../rednotebook/backup.py:72
msgid "Ask at next start"
msgstr ""
#: ../rednotebook/backup.py:74
msgid "Never ask again"
msgstr ""
#: ../rednotebook/templates.py:27
msgid "Monday"
msgstr ""
#: ../rednotebook/templates.py:28
msgid "Tuesday"
msgstr ""
#: ../rednotebook/templates.py:29
msgid "Wednesday"
msgstr ""
#: ../rednotebook/templates.py:30
msgid "Thursday"
msgstr ""
#: ../rednotebook/templates.py:31
msgid "Friday"
msgstr ""
#: ../rednotebook/templates.py:32
msgid "Saturday"
msgstr ""
#: ../rednotebook/templates.py:33
msgid "Sunday"
msgstr ""
#: ../rednotebook/templates.py:114
msgid ""
"=== Meeting ===\n"
"\n"
"Purpose, date, and place\n"
"\n"
"**Present:**\n"
"+\n"
"+\n"
"+\n"
"\n"
"\n"
"**Agenda:**\n"
"+\n"
"+\n"
"+\n"
"\n"
"\n"
"**Discussion, Decisions, Assignments:**\n"
"+\n"
"+\n"
"+\n"
"==================================\n"
msgstr ""
#: ../rednotebook/templates.py:140
msgid ""
"=== Journey ===\n"
"**Date:**\n"
"\n"
"**Location:**\n"
"\n"
"**Participants:**\n"
"\n"
"**The trip:**\n"
"First we went to xxxxx then we got to yyyyy ...\n"
"\n"
"**Pictures:** [Image folder \"\"/path/to/the/images/\"\"]\n"
msgstr ""
#: ../rednotebook/templates.py:156
msgid ""
"==================================\n"
"=== Phone Call ===\n"
"- **Person:**\n"
"- **Time:**\n"
"- **Topic:**\n"
"- **Outcome and Follow up:**\n"
"==================================\n"
msgstr ""
#: ../rednotebook/templates.py:168
msgid ""
"=====================================\n"
"=== Personal ===\n"
"\n"
"+\n"
"+\n"
"+\n"
"========================\n"
"\n"
"**How was the Day?**\n"
"\n"
"\n"
"========================\n"
"**What needs to be changed?**\n"
"+\n"
"+\n"
"+\n"
"=====================================\n"
msgstr ""
#: ../rednotebook/templates.py:196
msgid "Template mode"
msgstr ""
#: ../rednotebook/templates.py:200
msgid "You are currently editing a template."
msgstr ""
#: ../rednotebook/templates.py:321
msgid "Choose Template Name"
msgstr ""
#: ../rednotebook/templates.py:362
msgid "This template file contains no text or has unreadable content."
msgstr ""
#: ../rednotebook/templates.py:424
msgid "This Weekday's Template"
msgstr ""
#: ../rednotebook/templates.py:435
msgid "Create New Template"
msgstr ""
#: tmp/main_window.glade.h:3
msgid "Select backup filename"
msgstr ""
#: tmp/main_window.glade.h:4
msgid "_Cancel"
msgstr ""
#: tmp/main_window.glade.h:5
msgid "_Save"
msgstr ""
#: tmp/main_window.glade.h:6
msgid "Select a directory"
msgstr ""
#: tmp/main_window.glade.h:7
msgid "_OK"
msgstr ""
#: tmp/main_window.glade.h:8
msgid "Select a file"
msgstr ""
#: tmp/main_window.glade.h:10
msgid "Insert Link"
msgstr ""
#: tmp/main_window.glade.h:11
msgid "<b>Link location (e.g. https://www.google.com)</b>"
msgstr ""
#: tmp/main_window.glade.h:12
msgid "<b>Link name (optional)</b>"
msgstr ""
#: tmp/main_window.glade.h:13
msgid "Go to previous day (Ctrl+PageUp)"
msgstr ""
#: tmp/main_window.glade.h:14
msgid "Back"
msgstr ""
#: tmp/main_window.glade.h:15
msgid "Jump to today (Alt+Home)"
msgstr ""
#: tmp/main_window.glade.h:16
msgid "Today"
msgstr ""
#: tmp/main_window.glade.h:17
msgid "Go to next day (Ctrl+PageDown)"
msgstr ""
#: tmp/main_window.glade.h:18
msgid "Forward"
msgstr ""
#: tmp/main_window.glade.h:19
msgid "Show a formatted preview of the text (Ctrl+P)"
msgstr ""
#: tmp/main_window.glade.h:22
msgid "Enable text editing (Ctrl+P)"
msgstr ""
#: tmp/main_window.glade.h:23
msgid "Edit"
msgstr ""
#: tmp/main_window.glade.h:24
msgid "Add a tag or a category entry"
msgstr ""
#: tmp/main_window.glade.h:25
msgid "Add Tag"
msgstr ""
#: tmp/main_window.glade.h:26
msgid "New entry"
msgstr ""
#: tmp/main_window.glade.h:27
msgid "<b>Select existing or new Category</b>"
msgstr ""
#: tmp/main_window.glade.h:28
msgid "<b>Write entry</b> (optional)"
msgstr ""
#. Translators: Refers to the part of the options dialog where the user can select the "General/Overall" Settings
#: tmp/main_window.glade.h:31
msgid "<b>General</b>"
msgstr ""
#. Translators: Refers to the part of the options dialog where the user can select the "General/Overall" Settings
#: tmp/main_window.glade.h:33
msgid "General"
msgstr ""
#: tmp/main_window.glade.h:34
msgid "Select a picture"
msgstr ""
#: tmp/main_window.glade.h:35
msgid "_Open"
msgstr ""
#: tmp/main_window.glade.h:36
msgid "Exit without saving"
msgstr ""
#: tmp/main_window.glade.h:37
msgid "Statistics"
msgstr ""
#: tmp/main_window.glade.h:38
msgid "<b>Selected Day</b>"
msgstr ""
#: tmp/main_window.glade.h:39
msgid "<b>Overall</b>"
msgstr ""
|