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
|
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.1" language="pl" sourcelanguage="en">
<context>
<name>AbstractDb</name>
<message>
<location filename="../db/abstractdb.cpp" line="349"/>
<location filename="../db/abstractdb.cpp" line="366"/>
<source>Cannot execute query on closed database.</source>
<translation>Nie można wykonać zapytania na zamkniętej bazie danych.</translation>
</message>
<message>
<location filename="../db/abstractdb.cpp" line="661"/>
<source>Error attaching database %1: %2</source>
<translation>Błąd podczas dołączania bazy danych %1: %2</translation>
</message>
<message>
<location filename="../db/abstractdb.cpp" line="919"/>
<source>Failed to make full WAL checkpoint on database '%1'. Error returned from SQLite engine: %2</source>
<translation>Nie udało się utworzyć pełnego punktu kontrolnego WAL w bazie danych '%1'. Błąd zwrócony z silnika SQLite: %2</translation>
</message>
</context>
<context>
<name>ChainExecutor</name>
<message>
<location filename="../db/chainexecutor.cpp" line="37"/>
<source>The database for executing queries was not defined.</source>
<comment>chain executor</comment>
<translation>Nie zdefiniowano bazy danych do wykonywania zapytań.</translation>
</message>
<message>
<location filename="../db/chainexecutor.cpp" line="44"/>
<source>The database for executing queries was not open.</source>
<comment>chain executor</comment>
<translation>Baza danych do wykonywania zapytań nie jest otwarta.</translation>
</message>
<message>
<location filename="../db/chainexecutor.cpp" line="54"/>
<source>Could not disable foreign keys in the database. Details: %1</source>
<comment>chain executor</comment>
<translation>Nie udało się wyłączyć kluczy obcych w bazie. Szczegóły: %1</translation>
</message>
<message>
<location filename="../db/chainexecutor.cpp" line="62"/>
<source>Could not start a database transaction. Details: %1</source>
<comment>chain executor</comment>
<translation>Nie udało się rozpocząć transakcji bazy danych. Szczegóły: %1</translation>
</message>
<message>
<location filename="../db/chainexecutor.cpp" line="89"/>
<source>Interrupted</source>
<comment>chain executor</comment>
<translation>Przerwane</translation>
</message>
<message>
<location filename="../db/chainexecutor.cpp" line="151"/>
<source>Could not commit a database transaction. Details: %1</source>
<comment>chain executor</comment>
<translation>Nie udało się zatwierdzić transakcji bazy danych. Szczegóły: %1</translation>
</message>
</context>
<context>
<name>CompletionHelper</name>
<message>
<location filename="../completionhelper.cpp" line="159"/>
<source>New row reference</source>
<translation>Odnośnik do nowego wiersza</translation>
</message>
<message>
<location filename="../completionhelper.cpp" line="166"/>
<source>Old row reference</source>
<translation>Odnośnik do starego wiersza</translation>
</message>
<message>
<location filename="../completionhelper.cpp" line="171"/>
<source>New table name</source>
<translation>Nazwa nowej tabeli</translation>
</message>
<message>
<location filename="../completionhelper.cpp" line="174"/>
<source>New index name</source>
<translation>Nazwa nowego indeksu</translation>
</message>
<message>
<location filename="../completionhelper.cpp" line="177"/>
<source>New view name</source>
<translation>Nazwa nowego widoku</translation>
</message>
<message>
<location filename="../completionhelper.cpp" line="180"/>
<source>New trigger name</source>
<translation>Nazwa nowego wyzwalacza</translation>
</message>
<message>
<location filename="../completionhelper.cpp" line="183"/>
<source>Table or column alias</source>
<translation>Alias tabeli lub kolumny</translation>
</message>
<message>
<location filename="../completionhelper.cpp" line="186"/>
<source>transaction name</source>
<translation>Nazwa transakcji</translation>
</message>
<message>
<location filename="../completionhelper.cpp" line="189"/>
<source>New column name</source>
<translation>Nazwa nowej kolumny</translation>
</message>
<message>
<location filename="../completionhelper.cpp" line="192"/>
<source>Column data type</source>
<translation>Typ danych kolumny</translation>
</message>
<message>
<location filename="../completionhelper.cpp" line="195"/>
<source>Constraint name</source>
<translation>Nazwa ograniczenia</translation>
</message>
<message>
<location filename="../completionhelper.cpp" line="208"/>
<source>Error message</source>
<translation>Treść błędu</translation>
</message>
<message>
<location filename="../completionhelper.cpp" line="257"/>
<source>Any word</source>
<translation>Dowolne słowo</translation>
</message>
<message>
<location filename="../completionhelper.cpp" line="438"/>
<source>Default database</source>
<translation>Domyślna baza danych</translation>
</message>
<message>
<location filename="../completionhelper.cpp" line="439"/>
<source>Temporary objects database</source>
<translation>Baza danych obiektów tymczasowych</translation>
</message>
</context>
<context>
<name>ConfigImpl</name>
<message>
<location filename="../services/impl/configimpl.cpp" line="867"/>
<source>Could not start database transaction for deleting SQL history, therefore it's not deleted.</source>
<translation>Nie można rozpocząć transakcji dla usuwania historii SQL, więc nie można usunąć historii.</translation>
</message>
<message>
<location filename="../services/impl/configimpl.cpp" line="874"/>
<source>Could not commit database transaction for deleting SQL history, therefore it's not deleted.</source>
<translation>Nie można zatwierdzić transakcji dla usuwania historii SQL, więc nie można usunąć historii.</translation>
</message>
</context>
<context>
<name>DbManagerImpl</name>
<message>
<location filename="../services/impl/dbmanagerimpl.cpp" line="64"/>
<source>Could not add database %1: %2</source>
<translation>Nie udało się dodać bazę danych %1: %2</translation>
</message>
<message>
<location filename="../services/impl/dbmanagerimpl.cpp" line="137"/>
<source>Database %1 could not be updated, because of an error: %2</source>
<translation>Nie udało się zaktualizować baza danych %1 z powodu błędu: %2</translation>
</message>
<message>
<location filename="../services/impl/dbmanagerimpl.cpp" line="353"/>
<location filename="../services/impl/dbmanagerimpl.cpp" line="382"/>
<source>Database file doesn't exist.</source>
<translation>Plik bazy danych nie istnieje.</translation>
</message>
<message>
<location filename="../services/impl/dbmanagerimpl.cpp" line="355"/>
<location filename="../services/impl/dbmanagerimpl.cpp" line="384"/>
<location filename="../services/impl/dbmanagerimpl.cpp" line="603"/>
<source>No supporting plugin loaded.</source>
<translation>Nie załadowano obsługującej wtyczki.</translation>
</message>
<message>
<location filename="../services/impl/dbmanagerimpl.cpp" line="521"/>
<source>Database could not be initialized.</source>
<translation>Nie udało się zainicjalizować bazy danych.</translation>
</message>
<message>
<location filename="../services/impl/dbmanagerimpl.cpp" line="531"/>
<source>No suitable database driver plugin found.</source>
<translation>Nie znaleziono odpowiedniej wtyczki sterownika.</translation>
</message>
</context>
<context>
<name>DbObjectOrganizer</name>
<message>
<location filename="../dbobjectorganizer.cpp" line="373"/>
<location filename="../dbobjectorganizer.cpp" line="404"/>
<source>Error while creating table in target database: %1</source>
<translation>Błąd podczas tworzenia tabeli w docelowej bazie danych: %1</translation>
</message>
<message>
<location filename="../dbobjectorganizer.cpp" line="373"/>
<source>Could not parse table.</source>
<translation>Nie udało się przeanalizować tabeli.</translation>
</message>
<message>
<location filename="../dbobjectorganizer.cpp" line="418"/>
<source>Database %1 could not be attached to database %2, so the data of table %3 will be copied with SQLiteStudio as a mediator. This method can be slow for huge tables, so please be patient.</source>
<translation>Nie udało się dołączyć bazy danych %1 do bazy danych %2, więc dane tabeli %3 będą skopiowane przez SQLiteStudio jako pośrednika. Ta metoda może być powolna dla dużych tabel, więc proszę o cierpliwość.</translation>
</message>
<message>
<location filename="../dbobjectorganizer.cpp" line="442"/>
<source>Error while copying data for table %1: %2</source>
<translation>Błąd podczas copiowania danych tabeli %1: %2</translation>
</message>
<message>
<location filename="../dbobjectorganizer.cpp" line="461"/>
<location filename="../dbobjectorganizer.cpp" line="468"/>
<location filename="../dbobjectorganizer.cpp" line="495"/>
<source>Error while copying data to table %1: %2</source>
<translation>Błąd podczas kopiowania danych do tabeli %1: %2</translation>
</message>
<message>
<location filename="../dbobjectorganizer.cpp" line="517"/>
<source>Error while dropping source view %1: %2
Tables, indexes, triggers and views copied to database %3 will remain.</source>
<translation>Błąd podczas upuszczania widoku źródłowego %1: %2
Tabele, indeksy, wyzwalacze i widoki skopiowane do bazy danych %3 pozostaną na miejscu.</translation>
</message>
<message>
<location filename="../dbobjectorganizer.cpp" line="524"/>
<source>Error while creating view in target database: %1</source>
<translation>Błąd podczas tworzenia widoku w docelowej bazie danych: %1</translation>
</message>
<message>
<location filename="../dbobjectorganizer.cpp" line="529"/>
<source>Error while creating index in target database: %1</source>
<translation>Błąd podczas tworzenia indeksu w docelowej bazie danych: %1</translation>
</message>
<message>
<location filename="../dbobjectorganizer.cpp" line="534"/>
<source>Error while creating trigger in target database: %1</source>
<translation>Błąd podczas tworzenia wyzwalacza w docelowej bazie danych: %1</translation>
</message>
<message>
<location filename="../dbobjectorganizer.cpp" line="679"/>
<location filename="../dbobjectorganizer.cpp" line="686"/>
<location filename="../dbobjectorganizer.cpp" line="695"/>
<source>Could not parse object '%1' in order to move or copy it.</source>
<translation>Nie można zanalizować obiektu '%1' w celu przeniesienia lub skopiowania go.</translation>
</message>
</context>
<context>
<name>DdlHistoryModel</name>
<message>
<location filename="../ddlhistorymodel.cpp" line="66"/>
<source>Database name</source>
<comment>ddl history header</comment>
<translation>Nazwa bazy danych</translation>
</message>
<message>
<location filename="../ddlhistorymodel.cpp" line="68"/>
<source>Database file</source>
<comment>ddl history header</comment>
<translation>Plik bazy danych</translation>
</message>
<message>
<location filename="../ddlhistorymodel.cpp" line="70"/>
<source>Date of execution</source>
<comment>ddl history header</comment>
<translation>Data wykonania</translation>
</message>
<message>
<location filename="../ddlhistorymodel.cpp" line="72"/>
<source>Changes</source>
<comment>ddl history header</comment>
<translation>Zmiany</translation>
</message>
</context>
<context>
<name>ExportManager</name>
<message>
<location filename="../services/exportmanager.cpp" line="72"/>
<source>Export plugin %1 doesn't support exporing query results.</source>
<translation>Wtyczka eksportu %1 nie obsługuje exportowania wyników zapytania.</translation>
</message>
<message>
<location filename="../services/exportmanager.cpp" line="98"/>
<source>Export plugin %1 doesn't support exporing tables.</source>
<translation>Wtyczka exportu %1 nie obsługuje eksportowania tabel.</translation>
</message>
<message>
<location filename="../services/exportmanager.cpp" line="122"/>
<source>Export plugin %1 doesn't support exporing databases.</source>
<translation>Wtyczka exportu %1 nie obsługuje eksportowania baz danych.</translation>
</message>
<message>
<location filename="../services/exportmanager.cpp" line="155"/>
<source>Export format '%1' is not supported. Supported formats are: %2.</source>
<translation>Format eksportu %1 nie jest obsługiwany. Obsługiwane formaty to: %2</translation>
</message>
<message>
<location filename="../services/exportmanager.cpp" line="218"/>
<source>Export to the clipboard was successful.</source>
<translation>Eksport do schowka przebiegł pomyślnie.</translation>
</message>
<message>
<location filename="../services/exportmanager.cpp" line="222"/>
<source>Export to the file '%1' was successful.</source>
<translation>Eksport do pliku '%1' przebiegł pomyślnie.</translation>
</message>
<message>
<location filename="../services/exportmanager.cpp" line="224"/>
<source>Export was successful.</source>
<translation>Export przebiegł pomyślnie.</translation>
</message>
<message>
<location filename="../services/exportmanager.cpp" line="266"/>
<source>Could not export to file %1. File cannot be open for writting.</source>
<translation>Eksport do pliku %1 nie powiódł się. Plik nie może być otwarty do zapisu.</translation>
</message>
</context>
<context>
<name>ExportWorker</name>
<message>
<location filename="../exportworker.cpp" line="123"/>
<source>Error while exporting query results: %1</source>
<translation>Błąd podczas eksportowania wyników zapytania: %1</translation>
</message>
<message>
<location filename="../exportworker.cpp" line="203"/>
<source>Error while counting data column width to export from query results: %1</source>
<translation>Błąd podczas liczenia szerokości kolumn danych do eksportu wyników zapytania: %1</translation>
</message>
<message>
<location filename="../exportworker.cpp" line="347"/>
<location filename="../exportworker.cpp" line="405"/>
<source>Could not parse %1 in order to export it. It will be excluded from the export output.</source>
<translation>Nie udało się przeanalizować %1 w celu wyeksportowania. Element ten zostanie pominięty w wynikach eksportu.</translation>
</message>
<message>
<location filename="../exportworker.cpp" line="609"/>
<source>Error while reading data to export from table %1: %2</source>
<translation>Błąd podczas odczytu danych do eksportu z tabeli %1: %2</translation>
</message>
<message>
<location filename="../exportworker.cpp" line="617"/>
<source>Error while counting data to export from table %1: %2</source>
<translation>Błąd podczas liczenia danych do eksportu z tabeli %1: %2</translation>
</message>
<message>
<location filename="../exportworker.cpp" line="633"/>
<source>Error while counting data column width to export from table %1: %2</source>
<translation>Błąd podczas obliczania szerokości kolumn danych do eksportu z tabeli %1: %2</translation>
</message>
</context>
<context>
<name>FunctionManagerImpl</name>
<message>
<location filename="../services/impl/functionmanagerimpl.cpp" line="283"/>
<source>Invalid number of arguments to function '%1'. Expected %2, but got %3.</source>
<translation>Niepoprawna liczba argumentów do funkcji '%1'. Oczekiwano %2, a jest %3.</translation>
</message>
<message>
<location filename="../services/impl/functionmanagerimpl.cpp" line="396"/>
<source>No such function registered in SQLiteStudio: %1(%2)</source>
<translation>Nie znaleziono funkcji zarejestrowanej w SQLiteStudio: %1 (%2)</translation>
</message>
<message>
<location filename="../services/impl/functionmanagerimpl.cpp" line="402"/>
<source>Function %1(%2) was registered with language %3, but the plugin supporting that language is not currently loaded.</source>
<translation>Funkcja %1 (%2) została zarejestrowana dla języka %3, ale wtyczka obsługująca ten język nie jest aktualnie załadowana.</translation>
</message>
<message>
<location filename="../services/impl/functionmanagerimpl.cpp" line="420"/>
<source>Invalid regular expression pattern: %1</source>
<translation>Niepoprawne wyrażenie regularne: %1</translation>
</message>
<message>
<location filename="../services/impl/functionmanagerimpl.cpp" line="439"/>
<location filename="../services/impl/functionmanagerimpl.cpp" line="472"/>
<source>Could not open file %1 for reading: %2</source>
<translation>Nie udało się otworzyć pliku %1 do odczytu: %2</translation>
</message>
<message>
<location filename="../services/impl/functionmanagerimpl.cpp" line="494"/>
<source>Could not open file %1 for writting: %2</source>
<translation>Nie udało się otworzyć pliku %2 do zapisu: %2</translation>
</message>
<message>
<location filename="../services/impl/functionmanagerimpl.cpp" line="514"/>
<source>Error while writting to file %1: %2</source>
<translation>Błąd podczas zapisu do pliku %1: %2</translation>
</message>
<message>
<location filename="../services/impl/functionmanagerimpl.cpp" line="532"/>
<source>Unsupported scripting language: %1</source>
<translation>Nieobsługiwany język skryptowy: %1</translation>
</message>
</context>
<context>
<name>GenericExportPlugin</name>
<message>
<location filename="../plugins/genericexportplugin.cpp" line="20"/>
<source>Could not initialize text codec for exporting. Using default codec: %1</source>
<translation>Nie udało się zainicjalizować kodeka do exportu. Użyty będzie domyślny kodek: %1</translation>
</message>
</context>
<context>
<name>ImportManager</name>
<message>
<location filename="../services/importmanager.cpp" line="96"/>
<source>Imported data to the table '%1' successfully. Number of imported rows: %2</source>
<translation>Pomyślnie zaimportowano dane do tabeli '%1'. Liczba zaimportowanych wierszy: %2</translation>
</message>
</context>
<context>
<name>ImportWorker</name>
<message>
<location filename="../importworker.cpp" line="24"/>
<source>No columns provided by the import plugin.</source>
<translation>Wtyczka importu nie dostarczyła żadnych kolumn.</translation>
</message>
<message>
<location filename="../importworker.cpp" line="30"/>
<source>Could not start transaction in order to import a data: %1</source>
<translation>Nie udało się wystartować transakcji w celu zaimportowania danych: %1</translation>
</message>
<message>
<location filename="../importworker.cpp" line="53"/>
<source>Could not commit transaction for imported data: %1</source>
<translation>Nie udało się zatwierdzić transakcji w celu zaimportowania danych: %1</translation>
</message>
<message>
<location filename="../importworker.cpp" line="100"/>
<source>Table '%1' has less columns than there are columns in the data to be imported. Excessive data columns will be ignored.</source>
<translation>Tabela '%1' ma mniej kolumn, niż jest kolumn w danych do importu. Nadmiarowe kolumny zostaną zignorowane.</translation>
</message>
<message>
<location filename="../importworker.cpp" line="105"/>
<source>Table '%1' has more columns than there are columns in the data to be imported. Some columns in the table will be left empty.</source>
<translation>Tabela '%1' ma więcej kolumn, niż jest kolumn w danych do importu. Część kolumn w tabeli będzie pozostawiona pusta.</translation>
</message>
<message>
<location filename="../importworker.cpp" line="124"/>
<source>Could not create table to import to: %1</source>
<translation>Nie udało się stworzyć tabeli do zaimportowania: %1</translation>
</message>
<message>
<location filename="../importworker.cpp" line="133"/>
<location filename="../importworker.cpp" line="180"/>
<location filename="../importworker.cpp" line="187"/>
<source>Error while importing data: %1</source>
<translation>Błąd podczas importowania danych: %1</translation>
</message>
<message>
<location filename="../importworker.cpp" line="133"/>
<location filename="../importworker.cpp" line="187"/>
<source>Interrupted.</source>
<comment>import process status update</comment>
<translation>Przerwano.</translation>
</message>
<message>
<location filename="../importworker.cpp" line="175"/>
<source>Could not import data row number %1. The row was ignored. Problem details: %2</source>
<translation>Nie udało się zaimportować wiersza danych numer %1. Wiersz ten został zignorowany. Szczegóły problemu: %2</translation>
</message>
</context>
<context>
<name>PluginManagerImpl</name>
<message>
<location filename="../services/impl/pluginmanagerimpl.cpp" line="546"/>
<source>Cannot load plugin %1, because it's in conflict with plugin %2.</source>
<translation>Nie udało się załadować wtyczki %1, ponieważ jest ona w konflikcie z wtyczką %2.</translation>
</message>
<message>
<location filename="../services/impl/pluginmanagerimpl.cpp" line="557"/>
<source>Cannot load plugin %1, because its dependency was not loaded: %2.</source>
<translation>Nie udało się załadować wtyczki %1, ponieważ jej zależność nie została załadowana: %2</translation>
</message>
<message>
<location filename="../services/impl/pluginmanagerimpl.cpp" line="566"/>
<source>Cannot load plugin %1. Error details: %2</source>
<translation>Nie udało się załadować wtyczki %1. Szczegóły błędu: %2</translation>
</message>
<message>
<location filename="../services/impl/pluginmanagerimpl.cpp" line="582"/>
<source>Cannot load plugin %1 (error while initializing plugin).</source>
<translation>Nie udało się załadować wtyczki %1 (błąd podczas inicjalizacji wtyczki).</translation>
</message>
<message>
<location filename="../services/impl/pluginmanagerimpl.cpp" line="743"/>
<source>min: %1</source>
<comment>plugin dependency version</comment>
<translation>min: %1</translation>
</message>
<message>
<location filename="../services/impl/pluginmanagerimpl.cpp" line="744"/>
<source>max: %1</source>
<comment>plugin dependency version</comment>
<translation>maks: %1</translation>
</message>
</context>
<context>
<name>PopulateConstant</name>
<message>
<location filename="../plugins/populateconstant.cpp" line="10"/>
<source>Constant</source>
<comment>populate constant plugin name</comment>
<translation>Stała</translation>
</message>
</context>
<context>
<name>PopulateConstantConfig</name>
<message>
<location filename="../plugins/populateconstant.ui" line="20"/>
<source>Constant value:</source>
<translation>Stała wartość:</translation>
</message>
</context>
<context>
<name>PopulateDictionary</name>
<message>
<location filename="../plugins/populatedictionary.cpp" line="16"/>
<source>Dictionary</source>
<comment>dictionary populating plugin name</comment>
<translation>Słownik</translation>
</message>
</context>
<context>
<name>PopulateDictionaryConfig</name>
<message>
<location filename="../plugins/populatedictionary.ui" line="20"/>
<source>Dictionary file</source>
<translation>Plik słownika</translation>
</message>
<message>
<location filename="../plugins/populatedictionary.ui" line="29"/>
<source>Pick dictionary file</source>
<translation>Wybierz plik słownika</translation>
</message>
<message>
<location filename="../plugins/populatedictionary.ui" line="39"/>
<source>Word separator</source>
<translation>Separator słowa</translation>
</message>
<message>
<location filename="../plugins/populatedictionary.ui" line="45"/>
<source>Whitespace</source>
<translation>Biały znak</translation>
</message>
<message>
<location filename="../plugins/populatedictionary.ui" line="58"/>
<source>Line break</source>
<translation>Nowa linia</translation>
</message>
<message>
<location filename="../plugins/populatedictionary.ui" line="74"/>
<source>Method of using words</source>
<translation>Metoda używania słów</translation>
</message>
<message>
<location filename="../plugins/populatedictionary.ui" line="80"/>
<source>Ordered</source>
<translation>Uporządkowana</translation>
</message>
<message>
<location filename="../plugins/populatedictionary.ui" line="93"/>
<source>Randomly</source>
<translation>Losowa</translation>
</message>
</context>
<context>
<name>PopulateManager</name>
<message>
<location filename="../services/populatemanager.cpp" line="89"/>
<source>Table '%1' populated successfully.</source>
<translation>Zaludnianie tabeli '%1' przebiegło pomyślnie.</translation>
</message>
</context>
<context>
<name>PopulateRandom</name>
<message>
<location filename="../plugins/populaterandom.cpp" line="13"/>
<source>Random number</source>
<translation>Losowa liczba</translation>
</message>
</context>
<context>
<name>PopulateRandomConfig</name>
<message>
<location filename="../plugins/populaterandom.ui" line="20"/>
<source>Constant prefix</source>
<translation>Stały przedrostek</translation>
</message>
<message>
<location filename="../plugins/populaterandom.ui" line="26"/>
<source>No prefix</source>
<translation>Bez predrostka</translation>
</message>
<message>
<location filename="../plugins/populaterandom.ui" line="39"/>
<source>Minimum value</source>
<translation>Wartość minimalna</translation>
</message>
<message>
<location filename="../plugins/populaterandom.ui" line="61"/>
<source>Maximum value</source>
<translation>Wartość maksymalna</translation>
</message>
<message>
<location filename="../plugins/populaterandom.ui" line="86"/>
<source>Constant suffix</source>
<translation>Stały przyrostek</translation>
</message>
<message>
<location filename="../plugins/populaterandom.ui" line="92"/>
<source>No suffix</source>
<translation>Brak przyrostka</translation>
</message>
</context>
<context>
<name>PopulateRandomText</name>
<message>
<location filename="../plugins/populaterandomtext.cpp" line="14"/>
<source>Random text</source>
<translation>Losowy tekst</translation>
</message>
</context>
<context>
<name>PopulateRandomTextConfig</name>
<message>
<location filename="../plugins/populaterandomtext.ui" line="20"/>
<source>Use characters from common sets:</source>
<translation>Użyj znaków z zestawów:</translation>
</message>
<message>
<location filename="../plugins/populaterandomtext.ui" line="36"/>
<source>Minimum length</source>
<translation>Długość minimalna</translation>
</message>
<message>
<location filename="../plugins/populaterandomtext.ui" line="64"/>
<source>Letters from a to z.</source>
<translation>Litery od a do z.</translation>
</message>
<message>
<location filename="../plugins/populaterandomtext.ui" line="67"/>
<source>Alpha</source>
<translation>Litery</translation>
</message>
<message>
<location filename="../plugins/populaterandomtext.ui" line="77"/>
<source>Numbers from 0 to 9.</source>
<translation>Liczby od 0 do 9.</translation>
</message>
<message>
<location filename="../plugins/populaterandomtext.ui" line="80"/>
<source>Numeric</source>
<translation>Liczby</translation>
</message>
<message>
<location filename="../plugins/populaterandomtext.ui" line="90"/>
<source>A whitespace, a tab and a new line character.</source>
<translation>Znak biały, znak tabulacji, znak nowej linii.</translation>
</message>
<message>
<location filename="../plugins/populaterandomtext.ui" line="93"/>
<source>Whitespace</source>
<translation>Znak biały</translation>
</message>
<message>
<location filename="../plugins/populaterandomtext.ui" line="103"/>
<source>Includes all above and all others.</source>
<translation>Zawiera wszystkie powyższe, oraz wszystkie pozostałe.</translation>
</message>
<message>
<location filename="../plugins/populaterandomtext.ui" line="106"/>
<source>Binary</source>
<translation>Binarne</translation>
</message>
<message>
<location filename="../plugins/populaterandomtext.ui" line="119"/>
<source>Use characters from my custom set:</source>
<translation>Użyj znaków z mojego zestawu:</translation>
</message>
<message>
<location filename="../plugins/populaterandomtext.ui" line="132"/>
<source>Maximum length</source>
<translation>Długość maksymalna</translation>
</message>
<message>
<location filename="../plugins/populaterandomtext.ui" line="160"/>
<source>If you type some character multiple times, it's more likely to be used.</source>
<translation>Jeśli wpiszesz dany znak kilka razy, będzie on miał większą szansę na wylosowanie.</translation>
</message>
</context>
<context>
<name>PopulateScript</name>
<message>
<location filename="../plugins/populatescript.cpp" line="34"/>
<source>Script</source>
<translation>Skrypt</translation>
</message>
</context>
<context>
<name>PopulateScriptConfig</name>
<message>
<location filename="../plugins/populatescript.ui" line="26"/>
<source>Initialization code (optional)</source>
<translation>Kod inicjalizujący (opcjonalny)</translation>
</message>
<message>
<location filename="../plugins/populatescript.ui" line="45"/>
<source>Per step code</source>
<translation>Kod dla każdego kroku</translation>
</message>
<message>
<location filename="../plugins/populatescript.ui" line="70"/>
<source>Language</source>
<translation>Język</translation>
</message>
<message>
<location filename="../plugins/populatescript.ui" line="89"/>
<source>Help</source>
<translation>Pomoc</translation>
</message>
</context>
<context>
<name>PopulateSequence</name>
<message>
<location filename="../plugins/populatesequence.cpp" line="13"/>
<source>Sequence</source>
<translation>Sekwencja</translation>
</message>
</context>
<context>
<name>PopulateSequenceConfig</name>
<message>
<location filename="../plugins/populatesequence.ui" line="33"/>
<source>Start value:</source>
<translation>Wartość początkowa:</translation>
</message>
<message>
<location filename="../plugins/populatesequence.ui" line="56"/>
<source>Step:</source>
<translation>Krok:</translation>
</message>
</context>
<context>
<name>PopulateWorker</name>
<message>
<location filename="../populateworker.cpp" line="23"/>
<source>Could not start transaction in order to perform table populating. Error details: %1</source>
<translation>Nie udało się rozpocząć transakcji w celu zaludnienia tabeli. Szczegóły błędu: %1</translation>
</message>
<message>
<location filename="../populateworker.cpp" line="69"/>
<source>Error while populating table: %1</source>
<translation>Błąd podczas zaludniania tabeli: %2</translation>
</message>
<message>
<location filename="../populateworker.cpp" line="80"/>
<source>Could not commit transaction after table populating. Error details: %1</source>
<translation>Nie udało się zatwierdzić transakcji po zaludnieniu tabeli. Szczegóły błędy: %1</translation>
</message>
</context>
<context>
<name>QObject</name>
<message>
<location filename="../common/utils.cpp" line="1028"/>
<source>Could not open file '%1' for reading: %2</source>
<translation>Nie można otworzyż pliku '%1' do odczytu: %2</translation>
</message>
<message>
<location filename="../db/abstractdb3.h" line="435"/>
<source>Could not open database: %1</source>
<translation>Nie udało się otworzyć bazy danych: %1</translation>
</message>
<message>
<location filename="../db/abstractdb3.h" line="1214"/>
<source>Result set expired or no row available.</source>
<translation>Wyniki zapytania są nieaktualne, lub nie ma dostępnych wierszy.</translation>
</message>
<message>
<location filename="../db/abstractdb3.h" line="331"/>
<location filename="../db/abstractdb3.h" line="335"/>
<source>Could not load extension %1: %2</source>
<translation>Nie udało się załadować rozszerzenia %1: %2</translation>
</message>
<message>
<location filename="../db/abstractdb3.h" line="421"/>
<source>Could not run WAL checkpoint: %1</source>
<translation>Nie można uruchomić punktu kontrolnego WAL: %1</translation>
</message>
<message>
<location filename="../db/abstractdb3.h" line="459"/>
<source>Could not close database: %1</source>
<translation>Nie udało się zamknąć bazy danych: %1</translation>
</message>
<message>
<location filename="../impl/dbattacherimpl.cpp" line="114"/>
<source>Could not attach database %1: %2</source>
<translation>Nie udało się dołączyć bazy danych %1: %2</translation>
</message>
<message>
<location filename="../parser/parsercontext.cpp" line="108"/>
<location filename="../parser/parsercontext.cpp" line="110"/>
<source>Incomplete query.</source>
<translation>Niekompletne zapytanie.</translation>
</message>
<message>
<location filename="../parser/sqlite3_parse.cpp" line="2526"/>
<source>Parser stack overflow</source>
<translation>Przeciążenie stosu analizatora.</translation>
</message>
<message>
<location filename="../parser/sqlite3_parse.cpp" line="5937"/>
<source>Syntax error</source>
<translation>Błąd składni</translation>
</message>
<message>
<location filename="../plugins/populatedictionary.cpp" line="31"/>
<source>Could not open dictionary file %1 for reading.</source>
<translation>Nie udało się otworzyć pliku słownika %1 do odczytu.</translation>
</message>
<message>
<location filename="../plugins/populatedictionary.cpp" line="92"/>
<source>Dictionary file must exist and be readable.</source>
<translation>Plik słownika musi istnieć i musisz mieć prawa do jego odczytu.</translation>
</message>
<message>
<location filename="../plugins/populaterandom.cpp" line="54"/>
<source>Maximum value cannot be less than minimum value.</source>
<translation>Wartość maksymalna nie może być mniejsza niż wartość minimalna.</translation>
</message>
<message>
<location filename="../plugins/populaterandomtext.cpp" line="79"/>
<source>Maximum length cannot be less than minimum length.</source>
<translation>Długość maksymalna nie może być mniejsza niż długość minimalna.</translation>
</message>
<message>
<location filename="../plugins/populaterandomtext.cpp" line="90"/>
<source>Custom character set cannot be empty.</source>
<translation>Zestaw własnych znaków nie może być pusty.</translation>
</message>
<message>
<location filename="../plugins/populatescript.cpp" line="61"/>
<source>Could not find plugin to support scripting language: %1</source>
<translation>Nie udało się znaleźć wtyczki obsługującej język skryptowy: %1</translation>
</message>
<message>
<location filename="../plugins/populatescript.cpp" line="79"/>
<source>Error while executing populating initial code: %1</source>
<translation>Błąd podczas wykonywania kodu inicjalizującego zaludnianie: %1</translation>
</message>
<message>
<location filename="../plugins/populatescript.cpp" line="101"/>
<source>Error while executing populating code: %1</source>
<translation>Błąd podczas wykonywania kodu zaludniania: %1</translation>
</message>
<message>
<location filename="../plugins/populatescript.cpp" line="133"/>
<source>Select implementation language.</source>
<translation>Wybierz język implementacji.</translation>
</message>
<message>
<location filename="../plugins/populatescript.cpp" line="134"/>
<source>Implementation code cannot be empty.</source>
<translation>Kod implementacji nie może być pusty.</translation>
</message>
<message>
<location filename="../selectresolver.cpp" line="369"/>
<source>Could not resolve data source for column: %1</source>
<translation>Nie znaleziono źródła danych dla kolumny: %1</translation>
</message>
<message>
<location filename="../selectresolver.cpp" line="439"/>
<source>Could not resolve table for column '%1'.</source>
<translation>Nie można ustalić tabeli lub kolumny '%1'.</translation>
</message>
<message>
<location filename="../services/impl/configimpl.cpp" line="747"/>
<source>Could not initialize configuration file. Any configuration changes and queries history will be lost after application restart. Unable to create a file at following locations: %1.</source>
<translation>Nie udało się zainicjalizować pliku konfiguracyjnego. Wszelkie zmiany w konfiguracji i historia zapytań zostaną utracone po restarcie aplikacji. Nie udało się utworzyć pliku w lokalizacji: %1.</translation>
</message>
<message>
<location filename="../sqlitestudio.cpp" line="347"/>
<source>General purpose</source>
<comment>plugin category name</comment>
<translation>Ogólne</translation>
</message>
<message>
<location filename="../sqlitestudio.cpp" line="348"/>
<source>Database support</source>
<comment>plugin category name</comment>
<translation>Wsparcie baz danych</translation>
</message>
<message>
<location filename="../sqlitestudio.cpp" line="349"/>
<source>Code formatter</source>
<comment>plugin category name</comment>
<translation>Formatowanie kodu</translation>
</message>
<message>
<location filename="../sqlitestudio.cpp" line="350"/>
<source>Scripting languages</source>
<comment>plugin category name</comment>
<translation>Języki skryptowe</translation>
</message>
<message>
<location filename="../sqlitestudio.cpp" line="351"/>
<source>Exporting</source>
<comment>plugin category name</comment>
<translation>Eksportowanie</translation>
</message>
<message>
<location filename="../sqlitestudio.cpp" line="352"/>
<source>Importing</source>
<comment>plugin category name</comment>
<translation>Importowanie</translation>
</message>
<message>
<location filename="../sqlitestudio.cpp" line="353"/>
<source>Table populating</source>
<comment>plugin category name</comment>
<translation>Zaludnianie tabel</translation>
</message>
<message>
<location filename="../tablemodifier.cpp" line="121"/>
<source>Table %1 is referencing table %2, but the foreign key definition will not be updated for new table definition due to problems while parsing DDL of the table %3.</source>
<translation>Tabela %1 odwołuje się do tabeli %2, ale definicja klucza obcego nie zostanie zaktualizowane dla definicji nowej tabeli w związku z problemami przy analizowaniu DDL tabeli %3.</translation>
</message>
<message>
<location filename="../tablemodifier.cpp" line="470"/>
<source>All columns indexed by the index %1 are gone. The index will not be recreated after table modification.</source>
<translation>Wszystkie kolumny indeksowane przez indeks %1 już nie istnieją. Indeks ten nie będzie odtworzony po modyfikacji tabeli.</translation>
</message>
<message>
<location filename="../tablemodifier.cpp" line="514"/>
<source>There is problem with proper processing trigger %1. It may be not fully updated afterwards and will need your attention.</source>
<translation>Wystąpił problem z poprawnym przetworzeniem wyzwalacza %1. Może on zostać zaktualizowany tylko częściowo i będzie wymagał twojej uwagi.</translation>
</message>
<message>
<location filename="../tablemodifier.cpp" line="529"/>
<source>All columns covered by the trigger %1 are gone. The trigger will not be recreated after table modification.</source>
<translation>Wszystkie kolumny obsługiwane przez wyzwalacz %1 już nie istnieją. Wyzwalacz ten nie będzie odtworzony po modyfikacji tabeli.</translation>
</message>
<message>
<location filename="../tablemodifier.cpp" line="561"/>
<source>Cannot not update trigger %1 according to table %2 modification.</source>
<translation>Nie można zaktualizować wyzwalacza %1 zgodnie z modyfikacjami tabeli %2.</translation>
</message>
<message>
<location filename="../tablemodifier.cpp" line="580"/>
<source>Cannot not update view %1 according to table %2 modifications.
The view will remain as it is.</source>
<translation>Nie można zaktualizować widoku %1 w związku z modyfikacjami tabeli %2.
Widok pozostanie nienaruszony.</translation>
</message>
<message>
<location filename="../tablemodifier.cpp" line="742"/>
<location filename="../tablemodifier.cpp" line="766"/>
<location filename="../tablemodifier.cpp" line="785"/>
<source>There is a problem with updating an %1 statement within %2 trigger. One of the %1 substatements which might be referring to table %3 cannot be properly modified. Manual update of the trigger may be necessary.</source>
<translation>Jest problem ze zaktualizowaniem zapytania %1 w wyzwalaczu %2. Jedeno z podzapytań %1, które może odwoływać się do tabeli %3 nie może być poprawnie zmodyfikowane. Ręczna aktualizacja tego wyzwalacza może być niezbędna.</translation>
</message>
<message>
<location filename="../viewmodifier.cpp" line="24"/>
<source>Could not parse DDL of the view to be created. Details: %1</source>
<translation>Nie udało się przeanalizować DDL widoku do stworzenia. Szczegóły: %1</translation>
</message>
<message>
<location filename="../viewmodifier.cpp" line="33"/>
<source>Parsed query is not CREATE VIEW. It's: %1</source>
<translation>Przeanalizowane zapytanie to nie CREATE VIEW, ale: %1</translation>
</message>
<message>
<location filename="../viewmodifier.cpp" line="81"/>
<source>SQLiteStudio was unable to resolve columns returned by the new view, therefore it won't be able to tell which triggers might fail during the recreation process.</source>
<translation>SQLiteStudio nie było w stanie określić kolumn zwracanych przez nowy widok, w związku z czym nie może określić które wyzwalacze mogą się nie powieść podczas procesu odtwarzania.</translation>
</message>
</context>
<context>
<name>QueryExecutor</name>
<message>
<location filename="../db/queryexecutor.cpp" line="194"/>
<source>Execution interrupted.</source>
<translation>Wykonywanie przerwane.</translation>
</message>
<message>
<location filename="../db/queryexecutor.cpp" line="235"/>
<source>Database is not open.</source>
<translation>Baza danych nie jest otwarta.</translation>
</message>
<message>
<location filename="../db/queryexecutor.cpp" line="243"/>
<source>Only one query can be executed simultaneously.</source>
<translation>Tylko jedno zapytanie może być wykonywane w danym momencie.</translation>
</message>
<message>
<location filename="../db/queryexecutor.cpp" line="347"/>
<location filename="../db/queryexecutor.cpp" line="596"/>
<source>An error occurred while executing the count(*) query, thus data paging will be disabled. Error details from the database: %1</source>
<translation>Wystąpił błąd podczas wykonywania zapytania count(*), przez co stronicowanie danych będzie wyłączone. Szczegóły błędy z bazy danych: %1</translation>
</message>
<message>
<location filename="../db/queryexecutor.cpp" line="507"/>
<source>SQLiteStudio was unable to extract metadata from the query. Results won't be editable.</source>
<translation>SQLiteStudio nie mogło uzyskać metadanych z zapytania. Nie będzie można edytować wyników zapytania.</translation>
</message>
</context>
<context>
<name>ScriptingQtDbProxy</name>
<message>
<location filename="../plugins/scriptingqtdbproxy.cpp" line="48"/>
<source>No database available in current context, while called JavaScript's %1 command.</source>
<translation>Brak dostępnej bazy danych w bieżącym kontekście, podczas wywoływania komendy JavaScript: %1.</translation>
</message>
<message>
<location filename="../plugins/scriptingqtdbproxy.cpp" line="65"/>
<source>Error from %1: %2</source>
<translation>Błąd z %1: %2</translation>
</message>
</context>
<context>
<name>SqlFileExecutor</name>
<message>
<location filename="../sqlfileexecutor.cpp" line="50"/>
<source>Could not execute SQL, because application has failed to start transaction: %1</source>
<translation>Nie można wykonać SQLa, ponieważ aplikacja nie mogła rozpocząć transakcji: %1</translation>
</message>
<message>
<location filename="../sqlfileexecutor.cpp" line="81"/>
<source>Execution from file cancelled. Any queries executed so far have been rolled back.</source>
<translation>Wykonywanie z pliku przerwane. Jakiekolwiek wykonane zapytania zostały wycofane.</translation>
</message>
<message>
<location filename="../sqlfileexecutor.cpp" line="97"/>
<source>Could not open file '%1' for reading: %2</source>
<translation>Nie można otworzyż pliku '%1' do odczytu: %2</translation>
</message>
<message>
<location filename="../sqlfileexecutor.cpp" line="142"/>
<source>Could not execute SQL, because application has failed to commit the transaction: %1</source>
<translation>Nie można wykonać SQLa, ponieważ aplikacja nie mogła zatwierdzić transakcji: %1</translation>
</message>
<message>
<location filename="../sqlfileexecutor.cpp" line="147"/>
<source>Finished executing %1 queries in %2 seconds. %3 were not executed due to errors.</source>
<translation>Zakończono wykonywanie %1 zapytań w %2 sekund(y). %3 nie został wykonany z powodu błędów.</translation>
</message>
<message>
<location filename="../sqlfileexecutor.cpp" line="153"/>
<source>Finished executing %1 queries in %2 seconds.</source>
<translation>Zakończono wykonywanie %1 zapytań w %2 sekund(y).</translation>
</message>
<message>
<location filename="../sqlfileexecutor.cpp" line="160"/>
<source>Could not execute SQL due to error.</source>
<translation>Nie można wykonać SQL z powodu błędu.</translation>
</message>
</context>
<context>
<name>SqlHistoryModel</name>
<message>
<location filename="../sqlhistorymodel.cpp" line="32"/>
<source>Database</source>
<comment>sql history header</comment>
<translation>Baza danych</translation>
</message>
<message>
<location filename="../sqlhistorymodel.cpp" line="34"/>
<source>Execution date</source>
<comment>sql history header</comment>
<translation>Data wykonania</translation>
</message>
<message>
<location filename="../sqlhistorymodel.cpp" line="36"/>
<source>Time spent</source>
<comment>sql history header</comment>
<translation>Czas trwania</translation>
</message>
<message>
<location filename="../sqlhistorymodel.cpp" line="38"/>
<source>Rows affected</source>
<comment>sql history header</comment>
<translation>Liczba wierszy</translation>
</message>
<message>
<location filename="../sqlhistorymodel.cpp" line="40"/>
<source>SQL</source>
<comment>sql history header</comment>
<translation>SQL</translation>
</message>
</context>
<context>
<name>UpdateManager</name>
<message>
<location filename="../services/updatemanager.cpp" line="92"/>
<source>Could not check for updates (%1).</source>
<translation>Nie można sprawdzić aktualizacji (%1).</translation>
</message>
</context>
</TS>
|