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
|
# Copyright (C) 2024 This file is copyright:
# This file is distributed under the same license as the marknote package.
# SPDX-FileCopyrightText: 2023, 2024, 2025, 2026 Łukasz Wojniłowicz <lukasz.wojnilowicz@gmail.com>
#
msgid ""
msgstr ""
"Project-Id-Version: marknote\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
"POT-Creation-Date: 2026-03-13 00:44+0000\n"
"PO-Revision-Date: 2026-01-24 11:07+0100\n"
"Last-Translator: Łukasz Wojniłowicz <lukasz.wojnilowicz@gmail.com>\n"
"Language-Team: pl\n"
"Language: pl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
"|| n%100>=20) ? 1 : 2);\n"
"X-Generator: Lokalize 25.08.2\n"
#, kde-format
msgctxt "NAME OF TRANSLATORS"
msgid "Your names"
msgstr "Łukasz Wojniłowicz"
#, kde-format
msgctxt "EMAIL OF TRANSLATORS"
msgid "Your emails"
msgstr "lukasz.wojnilowicz@gmail.com"
#: application.cpp:34
#, kde-format
msgctxt "@action:inmenu"
msgid "New Notebook"
msgstr "Nowy notatnik"
#: application.cpp:43
#, kde-format
msgctxt "@action:inmenu"
msgid "New Note"
msgstr "Nowa notatka"
#: application.cpp:59
#, kde-format
msgctxt "@action:inmenu"
msgid "Import from KNotes"
msgstr "Zaimportuj z KNotes"
#: application.cpp:66
#, kde-format
msgctxt "@action:inmenu"
msgid "Import from Maildir"
msgstr "Zaimportuj z katalogu pocztowego"
#: maildirimport.cpp:96
#, kde-format
msgctxt "@status"
msgid "An error occurred while writing to '%1'"
msgstr "Wystąpił błąd przy zapisywaniu do pliku'%1'"
#: main.cpp:57
#, kde-format
msgid "Mathis Brüchert"
msgstr "Mathis Brüchert"
#: main.cpp:58 main.cpp:63 main.cpp:66
#, kde-format
msgid "Maintainer"
msgstr "Opiekun"
#: main.cpp:63
#, kde-format
msgid "Carl Schwan"
msgstr "Carl Schwan"
#: main.cpp:65
#, kde-format
msgid "Valentyn Bondarenko"
msgstr ""
#: main.cpp:74
#, kde-format
msgid "Justin Zobel"
msgstr ""
#: main.cpp:75
#, kde-format
msgid "Flatpak support"
msgstr ""
#: main.cpp:80
#, kde-format
msgid "Shubham Shinde"
msgstr ""
#: main.cpp:81
#, fuzzy, kde-format
#| msgid "Cell Contents"
msgid "Table of Contents"
msgstr "Zawartość komórki"
#: main.cpp:86
#, kde-format
msgid "Siddharth Chopra"
msgstr ""
#: main.cpp:87
#, fuzzy, kde-format
#| msgid "Focus Mode"
msgid "Source Mode"
msgstr "Tryb skupienia"
#: main.cpp:92
#, kde-format
msgid "Joshua Goins"
msgstr ""
#: main.cpp:93 main.cpp:99 main.cpp:105 main.cpp:110
#, kde-format
msgid "Bug fixes"
msgstr ""
#: main.cpp:98
#, kde-format
msgid "Prayag Jain"
msgstr ""
#: main.cpp:104
#, kde-format
msgid "Volker Krause"
msgstr ""
#: main.cpp:110
#, kde-format
msgid "Laurent Montel"
msgstr ""
#: main.cpp:131 qml/Main.qml:422
#, kde-format
msgctxt "Application name"
msgid "Marknote"
msgstr "Marknote"
#: main.cpp:133
#, kde-format
msgid "Note taking application"
msgstr "Aplikacja do notatek"
#: main.cpp:135
#, kde-format
msgid "© 2023-2026 Mathis Brüchert"
msgstr "© 2023-2026 Mathis Brüchert"
#: notesmodel.cpp:157
#, kde-format
msgctxt "@info:status"
msgid "Unable to rename note. A note already exists with the same name."
msgstr "Nie można przemianować notatki. Notatka o takiej nazwie już istnieje."
#: qml/EditPage.qml:151
#, kde-format
msgid "Find text..."
msgstr ""
#: qml/EditPage.qml:177
#, kde-format
msgid "Previous"
msgstr ""
#: qml/EditPage.qml:193
#, kde-format
msgid "Next"
msgstr ""
#: qml/EditPage.qml:211 qml/EditPage.qml:317
#, kde-format
msgid "No matches"
msgstr ""
#: qml/EditPage.qml:213 qml/EditPage.qml:319
#, kde-format
msgid "%1/%2"
msgstr ""
#: qml/EditPage.qml:225 qml/EditPage.qml:288
#, kde-format
msgid "Replace"
msgstr ""
#: qml/EditPage.qml:242
#, kde-format
msgid "Close"
msgstr ""
#: qml/EditPage.qml:264
#, kde-format
msgid "Replace with..."
msgstr ""
#: qml/EditPage.qml:300
#, fuzzy, kde-format
#| msgctxt "text editing menu action"
#| msgid "Select All"
msgid "Replace All"
msgstr "Zaznacz wszystko"
#: qml/EditPage.qml:304
#, kde-format
msgctxt "@info:status"
msgid "Replaced %1 occurrence"
msgid_plural "Replaced %1 occurrences"
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
#: qml/EditPage.qml:367
#, kde-format
msgctxt "@info:status"
msgid "The note has been copied to the clipboard."
msgstr ""
#: qml/GlobalMenuBar.qml:18
#, kde-format
msgctxt "@action:menu"
msgid "Settings"
msgstr "Ustawienia"
#: qml/ImageDialog.qml:18
#, kde-format
msgctxt "@title:window"
msgid "Insert Image"
msgstr "Wstaw obraz"
#: qml/ImageDialog.qml:24
#, kde-format
msgctxt "@title:window"
msgid "Select an image"
msgstr "Wybierz obraz"
#: qml/ImageDialog.qml:27
#, kde-format
msgid "Image files (*.jpg *.jpeg *.png *.svg *.webp)"
msgstr "Pliki obrazów (*.jpg *.jpeg *.png *.svg *.webp)"
#: qml/ImageDialog.qml:27
#, kde-format
msgid "All files (*)"
msgstr "Wszystkie pliki (*)"
#: qml/ImageDialog.qml:42
#, kde-format
msgctxt "@label:textbox"
msgid "Image Location:"
msgstr "Położenie obrazu:"
#: qml/ImageDialog.qml:53
#, kde-format
msgctxt "@label:textbox"
msgid "Quick Sketch"
msgstr "Szybki szkic"
#: qml/ImportMaildirDialog.qml:32
#, kde-format
msgctxt "@title:window"
msgid "Import from Maildir"
msgstr "Zaimportuj z katalogu pocztowego"
#: qml/ImportMaildirDialog.qml:32
#, kde-format
msgctxt "@title:window"
msgid "Import from KNotes"
msgstr "Zaimportuj z KNotes"
#: qml/ImportMaildirDialog.qml:37 qml/NotebookMetadataDialog.qml:39
#, kde-format
msgctxt "@label:textbox Notebook name"
msgid "Name:"
msgstr "Nazwa:"
#: qml/ImportMaildirDialog.qml:50
#, kde-format
msgctxt "@label:textbox Notebook name"
msgid "Maildir location:"
msgstr "Położenie katalogu pocztowego:"
#: qml/ImportMaildirDialog.qml:57
#, kde-format
msgctxt "@title:window"
msgid "Select a Maildir location"
msgstr "Wskaż położenie katalogu Maildir"
#: qml/ImportMaildirDialog.qml:103
#, kde-format
msgctxt "@action:button"
msgid "Import"
msgstr "Zaimportuj"
#: qml/LinkDialog.qml:17
#, kde-format
msgctxt "@title:window"
msgid "Insert Link"
msgstr "Wstaw odnośnik"
#: qml/LinkDialog.qml:23
#, kde-format
msgctxt "@label:textbox"
msgid "Link Text:"
msgstr "Tekst odnośnika:"
#: qml/LinkDialog.qml:31
#, kde-format
msgctxt "@label:textbox"
msgid "Link URL:"
msgstr "Adres URL odnośnika:"
#: qml/Main.qml:149
#, kde-format
msgctxt "@info:status"
msgid "Unable to create a new note, you need to create a notebook first."
msgstr "Nie można utworzyć nowej notatki. Najpierw musisz utworzyć notatnik."
#: qml/Main.qml:151
#, kde-format
msgctxt "@action:button"
msgid "Create Notebook"
msgstr "Utwórz notatnik"
#: qml/Main.qml:316 qml/NotesPage.qml:718
#, kde-format
msgctxt "@action:button"
msgid "Show Menu"
msgstr "Pokaż menu"
#: qml/Main.qml:362
#, kde-format
msgctxt "@title:menu"
msgid "Import"
msgstr "Zaimportuj"
#: qml/Main.qml:371
#, kde-format
msgctxt "@title:menu"
msgid "Sort Notes List"
msgstr "Uszereguj listę notatek"
#: qml/Main.qml:377
#, kde-format
msgid "by Name"
msgstr "wg nazwy"
#: qml/Main.qml:390
#, kde-format
msgid "by Date"
msgstr "wg daty"
#: qml/Main.qml:407
#, kde-format
msgid "Collapse Sidebar"
msgstr "Zwiń pasek boczny"
#: qml/Main.qml:407
#, kde-format
msgid "Expand Sidebar"
msgstr "Rozwiń pasek boczny"
#: qml/Main.qml:545
#, kde-format
msgid "Your Notebooks"
msgstr "Twoje notatniki"
#: qml/NativeEditMenu.qml:11
#, kde-format
msgctxt "@action:menu"
msgid "Edit"
msgstr "Edytuj"
#: qml/NativeEditMenu.qml:40
#, kde-format
msgctxt "text editing menu action"
msgid "Undo"
msgstr "Cofnij"
#: qml/NativeEditMenu.qml:50
#, kde-format
msgctxt "text editing menu action"
msgid "Redo"
msgstr "Przywróć"
#: qml/NativeEditMenu.qml:63
#, kde-format
msgctxt "text editing menu action"
msgid "Cut"
msgstr "Wytnij"
#: qml/NativeEditMenu.qml:73
#, kde-format
msgctxt "text editing menu action"
msgid "Copy"
msgstr "Skopiuj"
#: qml/NativeEditMenu.qml:83
#, kde-format
msgctxt "text editing menu action"
msgid "Paste"
msgstr "Wklej"
#: qml/NativeEditMenu.qml:98
#, kde-format
msgctxt "text editing menu action"
msgid "Delete"
msgstr "Usuń"
#: qml/NativeEditMenu.qml:111
#, kde-format
msgctxt "text editing menu action"
msgid "Select All"
msgstr "Zaznacz wszystko"
#: qml/NativeFileMenu.qml:11
#, kde-format
msgctxt "@action:menu"
msgid "File"
msgstr "Plik"
#: qml/NativeHelpMenu.qml:11
#, kde-format
msgctxt "@action:menu"
msgid "Help"
msgstr "Pomoc"
#: qml/NativeWindowMenu.qml:14
#, kde-format
msgctxt "@action:menu"
msgid "Window"
msgstr "Okno"
#: qml/NativeWindowMenu.qml:22 qml/NotesPage.qml:226 qml/RawEditPage.qml:220
#: qml/RichEditPage.qml:325 qml/WelcomePage.qml:29
#, kde-format
msgctxt "@action:menu"
msgid "Exit Full Screen"
msgstr "Wyłącz tryb pełnoekranowy"
#: qml/NativeWindowMenu.qml:22
#, kde-format
msgctxt "@action:menu"
msgid "Enter Full Screen"
msgstr "Włącz tryb pełnoekranowy"
#: qml/NotebookContextMenu.qml:16
#, kde-format
msgctxt "@action:inmenu"
msgid "Edit Notebook"
msgstr "Edytuj notatnik"
#: qml/NotebookContextMenu.qml:33 qml/NotebookDeleteAction.qml:15
#, kde-format
msgctxt "@action:inmenu"
msgid "Delete Notebook"
msgstr "Usuń notatnik"
#: qml/NotebookDeleteDialog.qml:31
#, kde-format
msgctxt "@title:window"
msgid "Delete Notebook"
msgstr "Usuń notatnik"
#: qml/NotebookDeleteDialog.qml:36
#, kde-format
msgid ""
"Are you sure you want to delete the Notebook <b>%1</b>? This will delete the "
"content of <b>%2</b> definitively."
msgstr ""
"Czy na pewno usunąć notatnik <b>%1</b>? Usunie to treść <b>%2</b> "
"bezpowrotnie."
#: qml/NotebookMetadataDialog.qml:32
#, kde-format
msgctxt "@title:window"
msgid "New Notebook"
msgstr "Nowy notatnik"
#: qml/NotebookMetadataDialog.qml:32
#, kde-format
msgctxt "@title:window"
msgid "Edit Notebook"
msgstr "Edytuj notatnik"
#: qml/NoteLinkDialog.qml:43
#, fuzzy, kde-format
#| msgctxt "@title:window"
#| msgid "Insert Link"
msgctxt "@title:window"
msgid "Insert Note Link"
msgstr "Wstaw odnośnik"
#: qml/NoteLinkDialog.qml:49
#, fuzzy, kde-format
#| msgid "Notebook name"
msgctxt "@label:textbox"
msgid "Note Name:"
msgstr "Nazwa notatnika"
#: qml/NoteLinkDialog.qml:51
#, kde-format
msgctxt "@info:whatsthis"
msgid "The name of the note you want to link to."
msgstr ""
#: qml/NoteLinkDialog.qml:68
#, fuzzy, kde-format
#| msgctxt "@label:textbox"
#| msgid "Link Text:"
msgctxt "@label:textbox"
msgid "Display Text:"
msgstr "Tekst odnośnika:"
#: qml/NoteLinkDialog.qml:70
#, kde-format
msgctxt "@info:whatsthis"
msgid "Optional alternate text to display instead of the note name."
msgstr ""
#: qml/NoteMetadataDialog.qml:27
#, kde-format
msgctxt "@title:window"
msgid "New Note"
msgstr "Nowa notatka"
#: qml/NoteMetadataDialog.qml:27
#, kde-format
msgctxt "@title:window"
msgid "Edit Note"
msgstr "Edytuj notatkę"
#: qml/NoteMetadataDialog.qml:58
#, kde-format
msgctxt "@label:textbox Note name"
msgid "Name:"
msgstr "Nazwa:"
#: qml/NotesPage.qml:39
#, kde-format
msgid "Add note"
msgstr "Dodaj notatkę"
#: qml/NotesPage.qml:180
#, kde-format
msgid "Exit Search (%1)"
msgstr "Wyjdź z wyszukiwania (%1)"
#: qml/NotesPage.qml:180
#, kde-format
msgid "Search notes (%1)"
msgstr "Poszukaj notatek (%1)"
#: qml/NotesPage.qml:246
#, kde-format
msgctxt "@title:window"
msgid "Delete Note"
msgstr "Usuń notatkę"
#: qml/NotesPage.qml:256
#, kde-format
msgid ""
"Are you sure you want to delete the note <b> %1 </b>? This will delete the "
"file <b>%2</b> definitively."
msgstr ""
"Czy na pewno usunąć notatkę <b>%1</b>? Usunie to plik <b>%2</b> bezpowrotnie."
#: qml/NotesPage.qml:446 qml/NotesPage.qml:482
#, fuzzy, kde-format
#| msgctxt "Application name"
#| msgid "Marknote"
msgctxt "@title:window"
msgid "Marknote"
msgstr "Marknote"
#: qml/NotesPage.qml:447
#, kde-format
msgctxt "@info"
msgid "Export of \"%1\" was successful."
msgstr ""
#: qml/NotesPage.qml:465
#, fuzzy, kde-format
#| msgctxt "@inmenu"
#| msgid "Open Link"
msgctxt "@action:notifaction"
msgid "Open File"
msgstr "Otwórz odnośnik"
#: qml/NotesPage.qml:483
#, kde-format
msgctxt "@info"
msgid "Export of \"%1\" failed."
msgstr ""
#: qml/NotesPage.qml:495
#, fuzzy, kde-format
#| msgctxt "@action:inmenu"
#| msgid "Rename Note"
msgctxt "@action:inmenu"
msgid "Rename"
msgstr "Przemianuj notatkę"
#: qml/NotesPage.qml:507 qml/TextFieldContextMenu.qml:390
#, kde-format
msgctxt "@action:inmenu"
msgid "Copy"
msgstr "Skopiuj"
#: qml/NotesPage.qml:516
#, fuzzy, kde-format
#| msgctxt "@action:inmenu"
#| msgid "Delete Note"
msgctxt "@action:inmenu"
msgid "Duplicate"
msgstr "Usuń notatkę"
#: qml/NotesPage.qml:524
#, fuzzy, kde-format
#| msgctxt "@action:button"
#| msgid "Import"
msgctxt "@action:inmenu"
msgid "Export"
msgstr "Zaimportuj"
#: qml/NotesPage.qml:528
#, kde-format
msgctxt "@action:inmenu"
msgid "Export to HTML"
msgstr "Wyeksportuj do HTML"
#: qml/NotesPage.qml:534
#, kde-format
msgctxt "@title:window"
msgid "Export to HTML"
msgstr "Wyeksportuj do HTML"
#: qml/NotesPage.qml:535
#, kde-format
msgid "HTML file (*.html)"
msgstr "Plik HTML (*.html)"
#: qml/NotesPage.qml:541
#, kde-format
msgctxt "@action:inmenu"
msgid "Export to PDF"
msgstr "Eksport do PDFa"
#: qml/NotesPage.qml:547
#, kde-format
msgctxt "@title:window"
msgid "Export to PDF"
msgstr "Eksport do PDFa"
#: qml/NotesPage.qml:548
#, kde-format
msgid "PDF file (*.pdf)"
msgstr "Plik PDF (*.pdf)"
#: qml/NotesPage.qml:554
#, kde-format
msgctxt "@action:inmenu"
msgid "Export to ODT"
msgstr "Wyeksportuj do ODT"
#: qml/NotesPage.qml:560
#, kde-format
msgctxt "@title:window"
msgid "Export to ODT"
msgstr "Wyeksportuj do ODT"
#: qml/NotesPage.qml:561
#, kde-format
msgid "ODF Text Document (*.odt)"
msgstr "Dokument tekstowy ODF (*.odt)"
#: qml/NotesPage.qml:572 qml/TextFieldContextMenu.qml:423
#, kde-format
msgctxt "@action:inmenu"
msgid "Delete"
msgstr "Usuń"
#: qml/NotesPage.qml:762
#, kde-format
msgid "Add a note!"
msgstr "Dodaj notatkę!"
#: qml/RawEditPage.qml:56 qml/RawEditPage.qml:141 qml/RichEditPage.qml:196
#: qml/RichEditPage.qml:829
#, kde-format
msgid "Undo"
msgstr "Cofnij"
#: qml/RawEditPage.qml:68 qml/RawEditPage.qml:154 qml/RichEditPage.qml:210
#: qml/RichEditPage.qml:840
#, kde-format
msgid "Redo"
msgstr "Przywróć"
#: qml/RawEditPage.qml:76 qml/RawEditPage.qml:162 qml/RichEditPage.qml:258
#, fuzzy, kde-format
#| msgid "Search notes (%1)"
msgctxt "@action:button"
msgid "Search Note"
msgstr "Poszukaj notatek (%1)"
#: qml/RawEditPage.qml:87 qml/RawEditPage.qml:173 qml/RichEditPage.qml:269
#, fuzzy, kde-format
#| msgid "Search notes (%1)"
msgctxt "@info:tooltip"
msgid "Search in Note"
msgstr "Poszukaj notatek (%1)"
#: qml/RawEditPage.qml:190 qml/RichEditPage.qml:306
#, kde-format
msgid "Focus Mode"
msgstr "Tryb skupienia"
#: qml/RawEditPage.qml:228
#, kde-format
msgid "Switch editor to preview mode"
msgstr ""
#: qml/RawEditPage.qml:233 qml/RichEditPage.qml:343
#, kde-format
msgid "Source View"
msgstr ""
#: qml/RichEditPage.qml:278
#, fuzzy, kde-format
#| msgid "Cell Contents"
msgctxt "@action:button"
msgid "Table of Content"
msgstr "Zawartość komórki"
#: qml/RichEditPage.qml:338
#, kde-format
msgid "Switch editor to source mode"
msgstr ""
#: qml/RichEditPage.qml:387
#, fuzzy, kde-format
#| msgid "Cell Contents"
msgctxt "@title:window"
msgid "Table of Contents"
msgstr "Zawartość komórki"
#: qml/RichEditPage.qml:458
#, kde-format
msgctxt "@action:button"
msgid "Bold"
msgstr "Pogrubienie"
#: qml/RichEditPage.qml:479
#, kde-format
msgctxt "@action:button"
msgid "Italic"
msgstr "Kursywa"
#: qml/RichEditPage.qml:498
#, kde-format
msgctxt "@action:button"
msgid "Underline"
msgstr "Podkreśl"
#: qml/RichEditPage.qml:512
#, kde-format
msgctxt "@action:button"
msgid "Strikethrough"
msgstr "Przekreślenie"
#: qml/RichEditPage.qml:530
#, kde-format
msgctxt "@action:button"
msgid "Increase List Level"
msgstr "Zwiększ poziom listy"
#: qml/RichEditPage.qml:541
#, kde-format
msgctxt "@action:button"
msgid "Decrease List Level"
msgstr "Zmniejsz poziom listy"
#: qml/RichEditPage.qml:583
#, kde-format
msgctxt "@item:inmenu no list style"
msgid "No list"
msgstr "Bez listy"
#: qml/RichEditPage.qml:584
#, kde-format
msgctxt "@item:inmenu unordered style"
msgid "Unordered list"
msgstr "Nieuporządkowana lista"
#: qml/RichEditPage.qml:585
#, kde-format
msgctxt "@item:inmenu ordered style"
msgid "Ordered list"
msgstr "Uporządkowana lista"
#: qml/RichEditPage.qml:596
#, kde-format
msgctxt "@action:button"
msgid "Insert checkbox"
msgstr "Wstaw pole wyboru"
#: qml/RichEditPage.qml:611
#, kde-format
msgctxt "@action:button"
msgid "Insert link"
msgstr "Wstaw odnośnik"
#: qml/RichEditPage.qml:627
#, fuzzy, kde-format
#| msgctxt "@action:button"
#| msgid "Insert link"
msgctxt "@action:button"
msgid "Insert note link"
msgstr "Wstaw odnośnik"
#: qml/RichEditPage.qml:643
#, kde-format
msgctxt "@action:button"
msgid "Insert image"
msgstr "Wstaw obraz"
#: qml/RichEditPage.qml:656
#, kde-format
msgctxt "@action:button"
msgid "Insert table"
msgstr "Wstaw tabelę"
#: qml/RichEditPage.qml:677
#, kde-format
msgctxt "@item:inmenu no heading"
msgid "Basic text"
msgstr "Podstawowy tekst"
#: qml/RichEditPage.qml:678
#, kde-format
msgctxt "@item:inmenu heading level 1 (largest)"
msgid "Title"
msgstr "Tytuł"
#: qml/RichEditPage.qml:679
#, kde-format
msgctxt "@item:inmenu heading level 2"
msgid "Subtitle"
msgstr "Podtytuł"
#: qml/RichEditPage.qml:680
#, kde-format
msgctxt "@item:inmenu heading level 3"
msgid "Section"
msgstr "Rozdział"
#: qml/RichEditPage.qml:681
#, kde-format
msgctxt "@item:inmenu heading level 4"
msgid "Subsection"
msgstr "Podrozdział"
#: qml/RichEditPage.qml:682
#, kde-format
msgctxt "@item:inmenu heading level 5"
msgid "Paragraph"
msgstr "Akapit"
#: qml/RichEditPage.qml:683
#, kde-format
msgctxt "@item:inmenu heading level 6 (smallest)"
msgid "Subparagraph"
msgstr "Podakapit"
#: qml/RichEditPage.qml:872
#, kde-format
msgid "Format"
msgstr "Format"
#: qml/RichEditPage.qml:876
#, kde-format
msgid "Lists"
msgstr "Listy"
#: qml/RichEditPage.qml:880
#, kde-format
msgid "Insert"
msgstr "Wstaw"
#: qml/TableDialog.qml:18
#, kde-format
msgctxt "@title:window"
msgid "Insert Table"
msgstr "Wstaw tabelę"
#: qml/TextFieldContextMenu.qml:229
#, kde-format
msgctxt "@action:inmenu"
msgid "Ignore"
msgstr "Pomiń"
#: qml/TextFieldContextMenu.qml:244
#, kde-format
msgctxt "@action:inmenu"
msgid "Spell Check"
msgstr "Sprawdzanie pisowni"
#: qml/TextFieldContextMenu.qml:260
#, fuzzy, kde-format
#| msgctxt "@action:inmenu"
#| msgid "New Note"
msgctxt "@inmenu"
msgid "Open Note"
msgstr "Nowa notatka"
#: qml/TextFieldContextMenu.qml:260
#, kde-format
msgctxt "@inmenu"
msgid "Open Link"
msgstr "Otwórz odnośnik"
#: qml/TextFieldContextMenu.qml:280
#, kde-format
msgctxt "@inmenu"
msgid "Insert"
msgstr "Wstaw"
#: qml/TextFieldContextMenu.qml:316
#, kde-format
msgctxt "@inmenu"
msgid "Remove"
msgstr "Usuń"
#: qml/TextFieldContextMenu.qml:346
#, kde-format
msgctxt "@action:inmenu"
msgid "Undo"
msgstr "Cofnij"
#: qml/TextFieldContextMenu.qml:360
#, kde-format
msgctxt "@action:inmenu"
msgid "Redo"
msgstr "Przywróć"
#: qml/TextFieldContextMenu.qml:375
#, kde-format
msgctxt "@action:inmenu"
msgid "Cut"
msgstr "Wytnij"
#: qml/TextFieldContextMenu.qml:404
#, kde-format
msgctxt "@action:inmenu"
msgid "Paste"
msgstr "Wklej"
#: qml/TextFieldContextMenu.qml:441
#, kde-format
msgctxt "@action:inmenu"
msgid "Select All"
msgstr "Zaznacz wszystko"
#: qml/TocDrawer.qml:92
#, fuzzy, kde-format
#| msgid "No results found"
msgid "No headers found"
msgstr "Nie ma żadnych wyników"
#: qml/WelcomePage.qml:22
#, kde-format
msgid "Start by creating your first notebook!"
msgstr "Rozpocznij tworząc swój pierwszy notatnik!"
#: settings/MarkNoteGeneralPage.qml:17
#, kde-format
msgctxt "@title:window"
msgid "General"
msgstr "Ogólne"
#: settings/MarkNoteGeneralPage.qml:20
#, kde-format
msgid "General theme"
msgstr "Ogólny wygląd"
#: settings/MarkNoteGeneralPage.qml:27
#, kde-format
msgid "Color theme"
msgstr "Zestaw barw"
#: settings/MarkNoteGeneralPage.qml:41
#, kde-format
msgid "Editor Settings"
msgstr "Ustawienia edytora"
#: settings/MarkNoteGeneralPage.qml:47
#, kde-format
msgctxt "@label:textbox"
msgid "Notes Directory:"
msgstr "Katalog notatek:"
#: settings/MarkNoteGeneralPage.qml:64
#, kde-format
msgctxt "@label:spinbox"
msgid "Font family:"
msgstr "Rodzina czcionek:"
#: settings/MarkNoteGeneralPage.qml:89
#, kde-format
msgctxt "@label:spinbox"
msgid "Font size:"
msgstr "Rozmiar czcionki:"
#: settings/MarkNoteSettings.qml:17
#, kde-format
msgctxt "@action:button"
msgid "General"
msgstr "Ogólne"
#: settings/MarkNoteSettings.qml:26
#, kde-format
msgctxt "@action:button"
msgid "About Marknote"
msgstr "O Marknote"
#: settings/MarkNoteSettings.qml:32
#, kde-format
msgctxt "@action:button"
msgid "About KDE"
msgstr "O KDE"
#: tableactionhelper.cpp:119
#, kde-format
msgid "Row Below"
msgstr "Wiersz poniżej"
#: tableactionhelper.cpp:125
#, kde-format
msgid "Row Above"
msgstr "Wiersz powyżej"
#: tableactionhelper.cpp:131
#, kde-format
msgid "Column Before"
msgstr "Kolumna przed"
#: tableactionhelper.cpp:137
#, kde-format
msgid "Column After"
msgstr "Kolumna za"
#: tableactionhelper.cpp:143
#, kde-format
msgid "Row"
msgstr "Wiersz"
#: tableactionhelper.cpp:149
#, kde-format
msgid "Column"
msgstr "Kolumna"
#: tableactionhelper.cpp:155
#, kde-format
msgid "Cell Contents"
msgstr "Zawartość komórki"
#~ msgctxt "@action:inmenu"
#~ msgid "Delete Note"
#~ msgstr "Usuń notatkę"
#, fuzzy
#~| msgctxt "text editing menu action"
#~| msgid "Copy"
#~ msgctxt "@action:inmenu"
#~ msgid "Copy Note"
#~ msgstr "Skopiuj"
#~ msgctxt "@action:button"
#~ msgid "Icon"
#~ msgstr "Ikona"
#~ msgctxt "@title:window"
#~ msgid "Select the notes directory"
#~ msgstr "Wskaż katalog notatek"
#~ msgctxt "@label:checkbox"
#~ msgid "Do not show again"
#~ msgstr "Nie pokazuj ponownie"
#~ msgid "undo"
#~ msgstr "cofnij"
#~ msgid "redo"
#~ msgstr "przywróć"
#~ msgctxt "@label:textbox"
#~ msgid "Number of Rows:"
#~ msgstr "Liczba wierszy:"
#~ msgctxt "@label:textbox"
#~ msgid "Number of Columns:"
#~ msgstr "Liczba kolumn:"
#~ msgid "Open Command Bar"
#~ msgstr "Otwórz pasek poleceń"
#~ msgid "About %1"
#~ msgstr "O %1"
#~ msgid "About KDE"
#~ msgstr "O KDE"
#~ msgctxt "@action:menu"
#~ msgid "Quit Marknote"
#~ msgstr "Zakończ Marknote"
#~ msgid "New Note (%1)"
#~ msgstr "Nowa notatka (%1)"
#~ msgid "Add"
#~ msgstr "Dodaj"
#~ msgid "Add Notebook"
#~ msgstr "Dodaj notatnik"
#~ msgctxt "@action:button"
#~ msgid "highlight"
#~ msgstr "podświetlenie"
#~ msgctxt "@item:inmenu disc list style"
#~ msgid "Disc"
#~ msgstr "Dysk"
#~ msgctxt "@item:inmenu circle list style"
#~ msgid "Circle"
#~ msgstr "Okrąg"
#~ msgctxt "@item:inmenu square list style"
#~ msgid "Square"
#~ msgstr "Kwadrat"
#~ msgctxt "@item:inmenu numbered lists"
#~ msgid "123"
#~ msgstr "123"
#~ msgctxt "@item:inmenu lowercase abc lists"
#~ msgid "abc"
#~ msgstr "abc"
#~ msgctxt "@item:inmenu uppercase abc lists"
#~ msgid "ABC"
#~ msgstr "ABC"
#~ msgctxt "@item:inmenu lower case roman numerals"
#~ msgid "i ii iii"
#~ msgstr "i ii iii"
#~ msgctxt "@item:inmenu upper case roman numerals"
#~ msgid "I II III"
#~ msgstr "I II III"
#~ msgid "Heading %1"
#~ msgstr "Nagłówek %1"
|