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
|
# Copyright (C) 2023 This file is copyright:
# This file is distributed under the same license as the marknote package.
# SPDX-FileCopyrightText: 2023, 2024, 2025, 2026 Vincenzo Reale <smart2128vr@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-03-04 15:02+0100\n"
"Last-Translator: Vincenzo Reale <smart2128vr@gmail.com>\n"
"Language-Team: Italian <kde-i18n-it@kde.org>\n"
"Language: it\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Lokalize 25.12.2\n"
#, kde-format
msgctxt "NAME OF TRANSLATORS"
msgid "Your names"
msgstr "Vincenzo Reale"
#, kde-format
msgctxt "EMAIL OF TRANSLATORS"
msgid "Your emails"
msgstr "smart2128vr@gmail.com"
#: application.cpp:34
#, kde-format
msgctxt "@action:inmenu"
msgid "New Notebook"
msgstr "Nuovo taccuino"
#: application.cpp:43
#, kde-format
msgctxt "@action:inmenu"
msgid "New Note"
msgstr "Nuova nota"
#: application.cpp:59
#, kde-format
msgctxt "@action:inmenu"
msgid "Import from KNotes"
msgstr "Importa da KNotes"
#: application.cpp:66
#, kde-format
msgctxt "@action:inmenu"
msgid "Import from Maildir"
msgstr "Importa da Maildir"
#: maildirimport.cpp:96
#, kde-format
msgctxt "@status"
msgid "An error occurred while writing to '%1'"
msgstr "Si è verificato un errore durante la scrittura su «%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 "Responsabile"
#: main.cpp:63
#, kde-format
msgid "Carl Schwan"
msgstr "Carl Schwan"
#: main.cpp:65
#, kde-format
msgid "Valentyn Bondarenko"
msgstr "Valentyn Bondarenko"
#: 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
#| msgctxt "@title:window"
#| msgid "Table of Contents"
msgid "Table of Contents"
msgstr "Indice"
#: main.cpp:86
#, kde-format
msgid "Siddharth Chopra"
msgstr ""
#: main.cpp:87
#, fuzzy, kde-format
#| msgid "Focus Mode"
msgid "Source Mode"
msgstr "Modalità di messa a fuoco"
#: 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 "Applicazione per prendere appunti"
#: 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 ""
"Impossibile rinominare la nota. Esiste già una nota con lo stesso nome."
#: qml/EditPage.qml:151
#, kde-format
msgid "Find text..."
msgstr "Trova testo..."
#: qml/EditPage.qml:177
#, kde-format
msgid "Previous"
msgstr "Precedente"
#: qml/EditPage.qml:193
#, kde-format
msgid "Next"
msgstr "Successivo"
#: qml/EditPage.qml:211 qml/EditPage.qml:317
#, kde-format
msgid "No matches"
msgstr "Nessuna corrispondenza"
#: qml/EditPage.qml:213 qml/EditPage.qml:319
#, kde-format
msgid "%1/%2"
msgstr "%1/%2"
#: qml/EditPage.qml:225 qml/EditPage.qml:288
#, kde-format
msgid "Replace"
msgstr ""
#: qml/EditPage.qml:242
#, kde-format
msgid "Close"
msgstr "Chiudi"
#: 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 "Seleziona tutto"
#: qml/EditPage.qml:304
#, kde-format
msgctxt "@info:status"
msgid "Replaced %1 occurrence"
msgid_plural "Replaced %1 occurrences"
msgstr[0] ""
msgstr[1] ""
#: qml/EditPage.qml:367
#, kde-format
msgctxt "@info:status"
msgid "The note has been copied to the clipboard."
msgstr "La nota è stata copiata negli appunti."
#: qml/GlobalMenuBar.qml:18
#, kde-format
msgctxt "@action:menu"
msgid "Settings"
msgstr "Impostazioni"
#: qml/ImageDialog.qml:18
#, kde-format
msgctxt "@title:window"
msgid "Insert Image"
msgstr "Inserisci immagine"
#: qml/ImageDialog.qml:24
#, kde-format
msgctxt "@title:window"
msgid "Select an image"
msgstr "Seleziona un'immagine"
#: qml/ImageDialog.qml:27
#, kde-format
msgid "Image files (*.jpg *.jpeg *.png *.svg *.webp)"
msgstr "File immagine (*.jpg *.jpeg *.png *.svg *.webp)"
#: qml/ImageDialog.qml:27
#, kde-format
msgid "All files (*)"
msgstr "Tutti i file (*)"
#: qml/ImageDialog.qml:42
#, kde-format
msgctxt "@label:textbox"
msgid "Image Location:"
msgstr "Posizione immagini:"
#: qml/ImageDialog.qml:53
#, kde-format
msgctxt "@label:textbox"
msgid "Quick Sketch"
msgstr "Schizzo rapido"
#: qml/ImportMaildirDialog.qml:32
#, kde-format
msgctxt "@title:window"
msgid "Import from Maildir"
msgstr "Importa da Maildir"
#: qml/ImportMaildirDialog.qml:32
#, kde-format
msgctxt "@title:window"
msgid "Import from KNotes"
msgstr "Importa da KNotes"
#: qml/ImportMaildirDialog.qml:37 qml/NotebookMetadataDialog.qml:39
#, kde-format
msgctxt "@label:textbox Notebook name"
msgid "Name:"
msgstr "Nome:"
#: qml/ImportMaildirDialog.qml:50
#, kde-format
msgctxt "@label:textbox Notebook name"
msgid "Maildir location:"
msgstr "Posizione maildir:"
#: qml/ImportMaildirDialog.qml:57
#, kde-format
msgctxt "@title:window"
msgid "Select a Maildir location"
msgstr "Seleziona una posizione Maildir"
#: qml/ImportMaildirDialog.qml:103
#, kde-format
msgctxt "@action:button"
msgid "Import"
msgstr "Importa"
#: qml/LinkDialog.qml:17
#, kde-format
msgctxt "@title:window"
msgid "Insert Link"
msgstr "Inserisci collegamento"
#: qml/LinkDialog.qml:23
#, kde-format
msgctxt "@label:textbox"
msgid "Link Text:"
msgstr "Testo del collegamento:"
#: qml/LinkDialog.qml:31
#, kde-format
msgctxt "@label:textbox"
msgid "Link URL:"
msgstr "URL del collegamento:"
#: qml/Main.qml:149
#, kde-format
msgctxt "@info:status"
msgid "Unable to create a new note, you need to create a notebook first."
msgstr "Impossibile creare una nuova nota, devi prima creare un taccuino."
#: qml/Main.qml:151
#, kde-format
msgctxt "@action:button"
msgid "Create Notebook"
msgstr "Crea taccuino"
#: qml/Main.qml:316 qml/NotesPage.qml:718
#, kde-format
msgctxt "@action:button"
msgid "Show Menu"
msgstr "Mostra il menu"
#: qml/Main.qml:362
#, kde-format
msgctxt "@title:menu"
msgid "Import"
msgstr "Importa"
#: qml/Main.qml:371
#, kde-format
msgctxt "@title:menu"
msgid "Sort Notes List"
msgstr "Ordina l'elenco delle note"
#: qml/Main.qml:377
#, kde-format
msgid "by Name"
msgstr "per nome"
#: qml/Main.qml:390
#, kde-format
msgid "by Date"
msgstr "per data"
#: qml/Main.qml:407
#, kde-format
msgid "Collapse Sidebar"
msgstr "Contrai la barra laterale"
#: qml/Main.qml:407
#, kde-format
msgid "Expand Sidebar"
msgstr "Espandi la barra laterale"
#: qml/Main.qml:545
#, kde-format
msgid "Your Notebooks"
msgstr "I tuoi taccuini"
#: qml/NativeEditMenu.qml:11
#, kde-format
msgctxt "@action:menu"
msgid "Edit"
msgstr "Modifica"
#: qml/NativeEditMenu.qml:40
#, kde-format
msgctxt "text editing menu action"
msgid "Undo"
msgstr "Annulla"
#: qml/NativeEditMenu.qml:50
#, kde-format
msgctxt "text editing menu action"
msgid "Redo"
msgstr "Rifai"
#: qml/NativeEditMenu.qml:63
#, kde-format
msgctxt "text editing menu action"
msgid "Cut"
msgstr "Taglia"
#: qml/NativeEditMenu.qml:73
#, kde-format
msgctxt "text editing menu action"
msgid "Copy"
msgstr "Copia"
#: qml/NativeEditMenu.qml:83
#, kde-format
msgctxt "text editing menu action"
msgid "Paste"
msgstr "Incolla"
#: qml/NativeEditMenu.qml:98
#, kde-format
msgctxt "text editing menu action"
msgid "Delete"
msgstr "Elimina"
#: qml/NativeEditMenu.qml:111
#, kde-format
msgctxt "text editing menu action"
msgid "Select All"
msgstr "Seleziona tutto"
#: qml/NativeFileMenu.qml:11
#, kde-format
msgctxt "@action:menu"
msgid "File"
msgstr "File"
#: qml/NativeHelpMenu.qml:11
#, kde-format
msgctxt "@action:menu"
msgid "Help"
msgstr "Aiuto"
#: qml/NativeWindowMenu.qml:14
#, kde-format
msgctxt "@action:menu"
msgid "Window"
msgstr "Finestra"
#: 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 "Esci da schermo intero"
#: qml/NativeWindowMenu.qml:22
#, kde-format
msgctxt "@action:menu"
msgid "Enter Full Screen"
msgstr "Passa a schermo intero"
#: qml/NotebookContextMenu.qml:16
#, kde-format
msgctxt "@action:inmenu"
msgid "Edit Notebook"
msgstr "Modifica taccuino"
#: qml/NotebookContextMenu.qml:33 qml/NotebookDeleteAction.qml:15
#, kde-format
msgctxt "@action:inmenu"
msgid "Delete Notebook"
msgstr "Elimina taccuino"
#: qml/NotebookDeleteDialog.qml:31
#, kde-format
msgctxt "@title:window"
msgid "Delete Notebook"
msgstr "Elimina taccuino"
#: 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 ""
"Sei sicuro di voler eliminare il taccuino <b> %1 </b>? Questo eliminerà "
"definitivamente il contenuto di <b>%2</b>."
#: qml/NotebookMetadataDialog.qml:32
#, kde-format
msgctxt "@title:window"
msgid "New Notebook"
msgstr "Nuovo taccuino"
#: qml/NotebookMetadataDialog.qml:32
#, kde-format
msgctxt "@title:window"
msgid "Edit Notebook"
msgstr "Modifica taccuino"
#: qml/NoteLinkDialog.qml:43
#, kde-format
msgctxt "@title:window"
msgid "Insert Note Link"
msgstr "Inserisci collegamento della nota"
#: qml/NoteLinkDialog.qml:49
#, kde-format
msgctxt "@label:textbox"
msgid "Note Name:"
msgstr "Nome della nota:"
#: qml/NoteLinkDialog.qml:51
#, kde-format
msgctxt "@info:whatsthis"
msgid "The name of the note you want to link to."
msgstr "Il nome della nota a cui vuoi collegarti."
#: qml/NoteLinkDialog.qml:68
#, kde-format
msgctxt "@label:textbox"
msgid "Display Text:"
msgstr "Testo visualizzato:"
#: qml/NoteLinkDialog.qml:70
#, kde-format
msgctxt "@info:whatsthis"
msgid "Optional alternate text to display instead of the note name."
msgstr ""
"Testo alternativo facoltativo da visualizzare invece del nome della nota."
#: qml/NoteMetadataDialog.qml:27
#, kde-format
msgctxt "@title:window"
msgid "New Note"
msgstr "Nuova nota"
#: qml/NoteMetadataDialog.qml:27
#, kde-format
msgctxt "@title:window"
msgid "Edit Note"
msgstr "Modifica nota"
#: qml/NoteMetadataDialog.qml:58
#, kde-format
msgctxt "@label:textbox Note name"
msgid "Name:"
msgstr "Nome:"
#: qml/NotesPage.qml:39
#, kde-format
msgid "Add note"
msgstr "Aggiungi nota"
#: qml/NotesPage.qml:180
#, kde-format
msgid "Exit Search (%1)"
msgstr "Esci dalla ricerca (%1)"
#: qml/NotesPage.qml:180
#, kde-format
msgid "Search notes (%1)"
msgstr "Cerca note (%1)"
#: qml/NotesPage.qml:246
#, kde-format
msgctxt "@title:window"
msgid "Delete Note"
msgstr "Elimina nota"
#: 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 ""
"Sei sicuro di voler eliminare la nota <b> %1 </b>? Questo eliminerà "
"definitivamente il file <b>%2</b>."
#: qml/NotesPage.qml:446 qml/NotesPage.qml:482
#, kde-format
msgctxt "@title:window"
msgid "Marknote"
msgstr "Marknote"
#: qml/NotesPage.qml:447
#, kde-format
msgctxt "@info"
msgid "Export of \"%1\" was successful."
msgstr "Esportazione di «%1» avvenuta correttamente."
#: qml/NotesPage.qml:465
#, kde-format
msgctxt "@action:notifaction"
msgid "Open File"
msgstr "Apri file"
#: qml/NotesPage.qml:483
#, kde-format
msgctxt "@info"
msgid "Export of \"%1\" failed."
msgstr "Esportazione di «\"%1» non riuscita."
#: qml/NotesPage.qml:495
#, fuzzy, kde-format
#| msgctxt "@action:inmenu"
#| msgid "Rename Note"
msgctxt "@action:inmenu"
msgid "Rename"
msgstr "Rinomina nota"
#: qml/NotesPage.qml:507 qml/TextFieldContextMenu.qml:390
#, kde-format
msgctxt "@action:inmenu"
msgid "Copy"
msgstr "Copia"
#: qml/NotesPage.qml:516
#, fuzzy, kde-format
#| msgctxt "@action:inmenu"
#| msgid "Duplicate Note"
msgctxt "@action:inmenu"
msgid "Duplicate"
msgstr "Duplica nota"
#: qml/NotesPage.qml:524
#, fuzzy, kde-format
#| msgctxt "@action:button"
#| msgid "Import"
msgctxt "@action:inmenu"
msgid "Export"
msgstr "Importa"
#: qml/NotesPage.qml:528
#, kde-format
msgctxt "@action:inmenu"
msgid "Export to HTML"
msgstr "Esporta in HTML"
#: qml/NotesPage.qml:534
#, kde-format
msgctxt "@title:window"
msgid "Export to HTML"
msgstr "Esporta in HTML"
#: qml/NotesPage.qml:535
#, kde-format
msgid "HTML file (*.html)"
msgstr "File HTML (*.html)"
#: qml/NotesPage.qml:541
#, kde-format
msgctxt "@action:inmenu"
msgid "Export to PDF"
msgstr "Esporta in PDF"
#: qml/NotesPage.qml:547
#, kde-format
msgctxt "@title:window"
msgid "Export to PDF"
msgstr "Esporta in PDF"
#: qml/NotesPage.qml:548
#, kde-format
msgid "PDF file (*.pdf)"
msgstr "File PDF (*.pdf)"
#: qml/NotesPage.qml:554
#, kde-format
msgctxt "@action:inmenu"
msgid "Export to ODT"
msgstr "Esporta in ODT"
#: qml/NotesPage.qml:560
#, kde-format
msgctxt "@title:window"
msgid "Export to ODT"
msgstr "Esporta in ODT"
#: qml/NotesPage.qml:561
#, kde-format
msgid "ODF Text Document (*.odt)"
msgstr "Documento di testo ODF (*.odt)"
#: qml/NotesPage.qml:572 qml/TextFieldContextMenu.qml:423
#, kde-format
msgctxt "@action:inmenu"
msgid "Delete"
msgstr "Elimina"
#: qml/NotesPage.qml:762
#, kde-format
msgid "Add a note!"
msgstr "Aggiungi una nota!"
#: qml/RawEditPage.qml:56 qml/RawEditPage.qml:141 qml/RichEditPage.qml:196
#: qml/RichEditPage.qml:829
#, kde-format
msgid "Undo"
msgstr "Annulla"
#: qml/RawEditPage.qml:68 qml/RawEditPage.qml:154 qml/RichEditPage.qml:210
#: qml/RichEditPage.qml:840
#, kde-format
msgid "Redo"
msgstr "Rifai"
#: qml/RawEditPage.qml:76 qml/RawEditPage.qml:162 qml/RichEditPage.qml:258
#, kde-format
msgctxt "@action:button"
msgid "Search Note"
msgstr "Cerca nota"
#: qml/RawEditPage.qml:87 qml/RawEditPage.qml:173 qml/RichEditPage.qml:269
#, kde-format
msgctxt "@info:tooltip"
msgid "Search in Note"
msgstr "Cerca nella note"
#: qml/RawEditPage.qml:190 qml/RichEditPage.qml:306
#, kde-format
msgid "Focus Mode"
msgstr "Modalità di messa a fuoco"
#: 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
#, kde-format
msgctxt "@action:button"
msgid "Table of Content"
msgstr "Indice"
#: qml/RichEditPage.qml:338
#, kde-format
msgid "Switch editor to source mode"
msgstr ""
#: qml/RichEditPage.qml:387
#, kde-format
msgctxt "@title:window"
msgid "Table of Contents"
msgstr "Indice"
#: qml/RichEditPage.qml:458
#, kde-format
msgctxt "@action:button"
msgid "Bold"
msgstr "Grassetto"
#: qml/RichEditPage.qml:479
#, kde-format
msgctxt "@action:button"
msgid "Italic"
msgstr "Corsivo"
#: qml/RichEditPage.qml:498
#, kde-format
msgctxt "@action:button"
msgid "Underline"
msgstr "Sottolineato"
#: qml/RichEditPage.qml:512
#, kde-format
msgctxt "@action:button"
msgid "Strikethrough"
msgstr "Barrato"
#: qml/RichEditPage.qml:530
#, kde-format
msgctxt "@action:button"
msgid "Increase List Level"
msgstr "Aumenta livello dell'elenco"
#: qml/RichEditPage.qml:541
#, kde-format
msgctxt "@action:button"
msgid "Decrease List Level"
msgstr "Riduci livello dell'elenco"
#: qml/RichEditPage.qml:583
#, kde-format
msgctxt "@item:inmenu no list style"
msgid "No list"
msgstr "Nessun elenco"
#: qml/RichEditPage.qml:584
#, kde-format
msgctxt "@item:inmenu unordered style"
msgid "Unordered list"
msgstr "Elenco non ordinato"
#: qml/RichEditPage.qml:585
#, kde-format
msgctxt "@item:inmenu ordered style"
msgid "Ordered list"
msgstr "Elenco ordinato"
#: qml/RichEditPage.qml:596
#, kde-format
msgctxt "@action:button"
msgid "Insert checkbox"
msgstr "Inserisci casella di selezione"
#: qml/RichEditPage.qml:611
#, kde-format
msgctxt "@action:button"
msgid "Insert link"
msgstr "Inserisci collegamento"
#: qml/RichEditPage.qml:627
#, kde-format
msgctxt "@action:button"
msgid "Insert note link"
msgstr "Inserisci collegamento della nota"
#: qml/RichEditPage.qml:643
#, kde-format
msgctxt "@action:button"
msgid "Insert image"
msgstr "Inserisci immagine"
#: qml/RichEditPage.qml:656
#, kde-format
msgctxt "@action:button"
msgid "Insert table"
msgstr "Inserisci tabella"
#: qml/RichEditPage.qml:677
#, kde-format
msgctxt "@item:inmenu no heading"
msgid "Basic text"
msgstr "Testo semplice"
#: qml/RichEditPage.qml:678
#, kde-format
msgctxt "@item:inmenu heading level 1 (largest)"
msgid "Title"
msgstr "Titolo"
#: qml/RichEditPage.qml:679
#, kde-format
msgctxt "@item:inmenu heading level 2"
msgid "Subtitle"
msgstr "Sottotitolo"
#: qml/RichEditPage.qml:680
#, kde-format
msgctxt "@item:inmenu heading level 3"
msgid "Section"
msgstr "Sezione"
#: qml/RichEditPage.qml:681
#, kde-format
msgctxt "@item:inmenu heading level 4"
msgid "Subsection"
msgstr "Sottosezione"
#: qml/RichEditPage.qml:682
#, kde-format
msgctxt "@item:inmenu heading level 5"
msgid "Paragraph"
msgstr "Paragrafo"
#: qml/RichEditPage.qml:683
#, kde-format
msgctxt "@item:inmenu heading level 6 (smallest)"
msgid "Subparagraph"
msgstr "Sottoparagrafo"
#: qml/RichEditPage.qml:872
#, kde-format
msgid "Format"
msgstr "Formato"
#: qml/RichEditPage.qml:876
#, kde-format
msgid "Lists"
msgstr "Elenchi"
#: qml/RichEditPage.qml:880
#, kde-format
msgid "Insert"
msgstr "Inserisci"
#: qml/TableDialog.qml:18
#, kde-format
msgctxt "@title:window"
msgid "Insert Table"
msgstr "Inserisci tabella"
#: qml/TextFieldContextMenu.qml:229
#, kde-format
msgctxt "@action:inmenu"
msgid "Ignore"
msgstr "Ignora"
#: qml/TextFieldContextMenu.qml:244
#, kde-format
msgctxt "@action:inmenu"
msgid "Spell Check"
msgstr "Controllo ortografico"
#: qml/TextFieldContextMenu.qml:260
#, kde-format
msgctxt "@inmenu"
msgid "Open Note"
msgstr "Apri nota"
#: qml/TextFieldContextMenu.qml:260
#, kde-format
msgctxt "@inmenu"
msgid "Open Link"
msgstr "Apri collegamento"
#: qml/TextFieldContextMenu.qml:280
#, kde-format
msgctxt "@inmenu"
msgid "Insert"
msgstr "Inserisci"
#: qml/TextFieldContextMenu.qml:316
#, kde-format
msgctxt "@inmenu"
msgid "Remove"
msgstr "Rimuovi"
#: qml/TextFieldContextMenu.qml:346
#, kde-format
msgctxt "@action:inmenu"
msgid "Undo"
msgstr "Annulla"
#: qml/TextFieldContextMenu.qml:360
#, kde-format
msgctxt "@action:inmenu"
msgid "Redo"
msgstr "Rifai"
#: qml/TextFieldContextMenu.qml:375
#, kde-format
msgctxt "@action:inmenu"
msgid "Cut"
msgstr "Taglia"
#: qml/TextFieldContextMenu.qml:404
#, kde-format
msgctxt "@action:inmenu"
msgid "Paste"
msgstr "Incolla"
#: qml/TextFieldContextMenu.qml:441
#, kde-format
msgctxt "@action:inmenu"
msgid "Select All"
msgstr "Seleziona tutto"
#: qml/TocDrawer.qml:92
#, kde-format
msgid "No headers found"
msgstr "Nessuna intestazione trovata"
#: qml/WelcomePage.qml:22
#, kde-format
msgid "Start by creating your first notebook!"
msgstr "Inizia creando il tuo primo taccuino!"
#: settings/MarkNoteGeneralPage.qml:17
#, kde-format
msgctxt "@title:window"
msgid "General"
msgstr "Generale"
#: settings/MarkNoteGeneralPage.qml:20
#, kde-format
msgid "General theme"
msgstr "Tema generale"
#: settings/MarkNoteGeneralPage.qml:27
#, kde-format
msgid "Color theme"
msgstr "Tema di colori"
#: settings/MarkNoteGeneralPage.qml:41
#, kde-format
msgid "Editor Settings"
msgstr "Impostazioni dell'editor"
#: settings/MarkNoteGeneralPage.qml:47
#, kde-format
msgctxt "@label:textbox"
msgid "Notes Directory:"
msgstr "Cartella delle note:"
#: settings/MarkNoteGeneralPage.qml:64
#, kde-format
msgctxt "@label:spinbox"
msgid "Font family:"
msgstr "Famiglia di caratteri:"
#: settings/MarkNoteGeneralPage.qml:89
#, kde-format
msgctxt "@label:spinbox"
msgid "Font size:"
msgstr "Dimensione dei caratteri:"
#: settings/MarkNoteSettings.qml:17
#, kde-format
msgctxt "@action:button"
msgid "General"
msgstr "Generale"
#: settings/MarkNoteSettings.qml:26
#, kde-format
msgctxt "@action:button"
msgid "About Marknote"
msgstr "Informazioni su Marknote"
#: settings/MarkNoteSettings.qml:32
#, kde-format
msgctxt "@action:button"
msgid "About KDE"
msgstr "Informazioni su KDE"
#: tableactionhelper.cpp:119
#, kde-format
msgid "Row Below"
msgstr "Riga sotto"
#: tableactionhelper.cpp:125
#, kde-format
msgid "Row Above"
msgstr "Riga sopra"
#: tableactionhelper.cpp:131
#, kde-format
msgid "Column Before"
msgstr "Colonna prima"
#: tableactionhelper.cpp:137
#, kde-format
msgid "Column After"
msgstr "Colonna dopo"
#: tableactionhelper.cpp:143
#, kde-format
msgid "Row"
msgstr "Riga"
#: tableactionhelper.cpp:149
#, kde-format
msgid "Column"
msgstr "Colonna"
#: tableactionhelper.cpp:155
#, kde-format
msgid "Cell Contents"
msgstr "Contenuti celle"
#~ msgctxt "@action:button"
#~ msgid "Close"
#~ msgstr "Chiudi"
#~ msgctxt "@action:inmenu"
#~ msgid "Delete Note"
#~ msgstr "Elimina nota"
#, fuzzy
#~| msgctxt "@action:button"
#~| msgid "Copy Note"
#~ msgctxt "@action:inmenu"
#~ msgid "Copy Note"
#~ msgstr "Copia nota"
#~ msgctxt "@action:button"
#~ msgid "Icon"
#~ msgstr "Icona"
#~ msgctxt "@title:window"
#~ msgid "Select the notes directory"
#~ msgstr "Seleziona la cartella delle note"
#~ msgctxt "@label:checkbox"
#~ msgid "Do not show again"
#~ msgstr "Non mostrare di nuovo"
#~ msgid "undo"
#~ msgstr "annulla"
#~ msgid "redo"
#~ msgstr "rifai"
#~ msgctxt "@label:textbox"
#~ msgid "Number of Rows:"
#~ msgstr "Numero di righe:"
#~ msgctxt "@label:textbox"
#~ msgid "Number of Columns:"
#~ msgstr "Numero di colonne:"
#~ msgid "Open Command Bar"
#~ msgstr "Apri la barra dei comandi"
#~ msgid "About %1"
#~ msgstr "Informazioni su %1"
#~ msgid "About KDE"
#~ msgstr "Informazioni su KDE"
#~ msgctxt "@action:menu"
#~ msgid "Quit Marknote"
#~ msgstr "Esci da Marknote"
#~ msgid "Reset"
#~ msgstr "Ripristina"
#~ msgid "New Note (%1)"
#~ msgstr "Nuova nota (%1)"
#~ msgid "Add"
#~ msgstr "Aggiungi"
#~ msgid "Add Notebook"
#~ msgstr "Aggiungi taccuino"
#~ msgctxt "@action:button"
#~ msgid "highlight"
#~ msgstr "evidenzia"
#~ msgctxt "@item:inmenu disc list style"
#~ msgid "Disc"
#~ msgstr "Disco"
#~ msgctxt "@item:inmenu circle list style"
#~ msgid "Circle"
#~ msgstr "Cerchio"
#~ msgctxt "@item:inmenu square list style"
#~ msgid "Square"
#~ msgstr "Quadrato"
#~ 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 "Intestazione %1"
|