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="uk" 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>Неможливо виконати запит в закритій базі даних.</translation>
</message>
<message>
<location filename="../db/abstractdb.cpp" line="661"/>
<source>Error attaching database %1: %2</source>
<translation>Помилка підключення бази даних %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 type="unfinished">Failed to make full WAL checkpoint on database '%1'. Error returned from SQLite engine: %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>Не вказана база даних для виконання запитів.</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>Не відкрита база даних для виконання запитів.</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>Не вдалося відключити зовнішні ключі в базі даних. Подробиці: %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>Неможливо розпочати транзакцію. Подробиці: %1</translation>
</message>
<message>
<location filename="../db/chainexecutor.cpp" line="89"/>
<source>Interrupted</source>
<comment>chain executor</comment>
<translation>Перервано</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>Неможливо завершити транзакцію. Подробиці: %1</translation>
</message>
</context>
<context>
<name>CompletionHelper</name>
<message>
<location filename="../completionhelper.cpp" line="159"/>
<source>New row reference</source>
<translation>Нове посилання на рядок</translation>
</message>
<message>
<location filename="../completionhelper.cpp" line="166"/>
<source>Old row reference</source>
<translation>Старе посилання на рядок</translation>
</message>
<message>
<location filename="../completionhelper.cpp" line="171"/>
<source>New table name</source>
<translation>Назва нової таблиці</translation>
</message>
<message>
<location filename="../completionhelper.cpp" line="174"/>
<source>New index name</source>
<translation>Назва нового індексу</translation>
</message>
<message>
<location filename="../completionhelper.cpp" line="177"/>
<source>New view name</source>
<translation>Нова назва розрізу даних (view)</translation>
</message>
<message>
<location filename="../completionhelper.cpp" line="180"/>
<source>New trigger name</source>
<translation>Назва нової тригера</translation>
</message>
<message>
<location filename="../completionhelper.cpp" line="183"/>
<source>Table or column alias</source>
<translation>Псевдонім таблиці або стовпця</translation>
</message>
<message>
<location filename="../completionhelper.cpp" line="186"/>
<source>transaction name</source>
<translation>назва транзакції</translation>
</message>
<message>
<location filename="../completionhelper.cpp" line="189"/>
<source>New column name</source>
<translation>Нове ім'я стовпця</translation>
</message>
<message>
<location filename="../completionhelper.cpp" line="192"/>
<source>Column data type</source>
<translation>Тип даних стовпця</translation>
</message>
<message>
<location filename="../completionhelper.cpp" line="195"/>
<source>Constraint name</source>
<translation>Назва обмеження</translation>
</message>
<message>
<location filename="../completionhelper.cpp" line="208"/>
<source>Error message</source>
<translation>Повідомлення про помилку</translation>
</message>
<message>
<location filename="../completionhelper.cpp" line="257"/>
<source>Any word</source>
<translation>Будь-яке слово</translation>
</message>
<message>
<location filename="../completionhelper.cpp" line="438"/>
<source>Default database</source>
<translation>База даних за замовчуванням</translation>
</message>
<message>
<location filename="../completionhelper.cpp" line="439"/>
<source>Temporary objects database</source>
<translation>База даних тимчасових об'єктів</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>Не вдалося почати транзакцію бази даних для видалення SQL історії, тому вона не видалена.</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>Не вдалося завершити транзакцію бази даних для видалення SQL історії, тому вона не видалена.</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>Не вдалося додати базу даних %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>База даних %1 не може бути оновлена через помилку: %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>Файл бази даних не існує.</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>Модуль підтримки не завантажений.</translation>
</message>
<message>
<location filename="../services/impl/dbmanagerimpl.cpp" line="521"/>
<source>Database could not be initialized.</source>
<translation>Неможливо ініціалізувати базу даних.</translation>
</message>
<message>
<location filename="../services/impl/dbmanagerimpl.cpp" line="531"/>
<source>No suitable database driver plugin found.</source>
<translation>Не знайдено відповідного драйвера бази даних.</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>Помилка створення таблиці в цільовій базі даних: %1</translation>
</message>
<message>
<location filename="../dbobjectorganizer.cpp" line="373"/>
<source>Could not parse table.</source>
<translation>Не вдалося проаналізувати структуру таблиці.</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>Неможливо приєднати базу даних %1 до бази даних %2, тому дані таблиці %3 будуть скопійовані за допомогою SQLiteStudio. Цей метод може бути повільним для великих таблиць, так що наберіться терпіння.</translation>
</message>
<message>
<location filename="../dbobjectorganizer.cpp" line="442"/>
<source>Error while copying data for table %1: %2</source>
<translation>Помилка при копіюванні даних з таблиці %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>Помилка при копіюванні даних в таблицю %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>Помилка при видаленні розрізу даних (view) %1: %2
Таблиці, індекси, тригери та перегляди, що скопійовані в базу %3, залишаться.</translation>
</message>
<message>
<location filename="../dbobjectorganizer.cpp" line="524"/>
<source>Error while creating view in target database: %1</source>
<translation>Помилка створення таблиці в цільовій базі даних: %1</translation>
</message>
<message>
<location filename="../dbobjectorganizer.cpp" line="529"/>
<source>Error while creating index in target database: %1</source>
<translation>Помилка створення індексу в цільовій базі даних: %1</translation>
</message>
<message>
<location filename="../dbobjectorganizer.cpp" line="534"/>
<source>Error while creating trigger in target database: %1</source>
<translation>Помилка створення тригера в цільовій базі даних: %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>Не вдалося проаналізувати об'єкт '%1' для того, щоб перемістити або скопіювати його.</translation>
</message>
</context>
<context>
<name>DdlHistoryModel</name>
<message>
<location filename="../ddlhistorymodel.cpp" line="66"/>
<source>Database name</source>
<comment>ddl history header</comment>
<translation>Назва бази даних</translation>
</message>
<message>
<location filename="../ddlhistorymodel.cpp" line="68"/>
<source>Database file</source>
<comment>ddl history header</comment>
<translation>Файл бази даних</translation>
</message>
<message>
<location filename="../ddlhistorymodel.cpp" line="70"/>
<source>Date of execution</source>
<comment>ddl history header</comment>
<translation>Дата виконання</translation>
</message>
<message>
<location filename="../ddlhistorymodel.cpp" line="72"/>
<source>Changes</source>
<comment>ddl history header</comment>
<translation>Зміни</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>Модуль експорту %1 не підтримує експорт результатів запиту.</translation>
</message>
<message>
<location filename="../services/exportmanager.cpp" line="98"/>
<source>Export plugin %1 doesn't support exporing tables.</source>
<translation>Модуль експорту %1 не підтримує експорт таблиць.</translation>
</message>
<message>
<location filename="../services/exportmanager.cpp" line="122"/>
<source>Export plugin %1 doesn't support exporing databases.</source>
<translation>Модуль експорту %1 не підтримує експорт бази даних.</translation>
</message>
<message>
<location filename="../services/exportmanager.cpp" line="155"/>
<source>Export format '%1' is not supported. Supported formats are: %2.</source>
<translation>Формат експорту '%1' не підтримується. Підтримуються формати: %2.</translation>
</message>
<message>
<location filename="../services/exportmanager.cpp" line="218"/>
<source>Export to the clipboard was successful.</source>
<translation>Експорт до буфера обміну пройшов успішно.</translation>
</message>
<message>
<location filename="../services/exportmanager.cpp" line="222"/>
<source>Export to the file '%1' was successful.</source>
<translation>Експорт у файл '%1' успішно здійснено.</translation>
</message>
<message>
<location filename="../services/exportmanager.cpp" line="224"/>
<source>Export was successful.</source>
<translation>Видалення пройшло успішно.</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>Не вдалося експортувати до файлу %1. Файл не може бути відкритий для запису.</translation>
</message>
</context>
<context>
<name>ExportWorker</name>
<message>
<location filename="../exportworker.cpp" line="123"/>
<source>Error while exporting query results: %1</source>
<translation>Помилка під час експорту результатів запиту: %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>Помилка під час підрахунку ширини стовпця даних для експорту з результатів запиту: %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>Неможливо проаналізувати структуру %1. Даний об'єкт буде виключений при виконанні експорту.</translation>
</message>
<message>
<location filename="../exportworker.cpp" line="609"/>
<source>Error while reading data to export from table %1: %2</source>
<translation>Помилка при читанні даних для експорту з таблиці %1: %2</translation>
</message>
<message>
<location filename="../exportworker.cpp" line="617"/>
<source>Error while counting data to export from table %1: %2</source>
<translation>Помилка при підрахунку кількості даних для експорту з таблиці %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>Помилка при підрахунку ширини стовпчика даних для експорту з таблиці %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>Некоректна кількість аргументів для функції '%1'. Очікувалось %2, але отримано %3.</translation>
</message>
<message>
<location filename="../services/impl/functionmanagerimpl.cpp" line="396"/>
<source>No such function registered in SQLiteStudio: %1(%2)</source>
<translation>Немає такої функції, зареєстрованої в 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>Функція %1(%2) була зареєстрована на мові %3, але плагін, що підтримує мову, наразі не завантажений.</translation>
</message>
<message>
<location filename="../services/impl/functionmanagerimpl.cpp" line="420"/>
<source>Invalid regular expression pattern: %1</source>
<translation>Невірний шаблон регулярного виразу: %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>Неможливо відкрити файл %1 для читання: %2</translation>
</message>
<message>
<location filename="../services/impl/functionmanagerimpl.cpp" line="494"/>
<source>Could not open file %1 for writting: %2</source>
<translation>Неможливо відкрити файл %1 для запису: %2</translation>
</message>
<message>
<location filename="../services/impl/functionmanagerimpl.cpp" line="514"/>
<source>Error while writting to file %1: %2</source>
<translation>Помилка при запису в файл %1: %2</translation>
</message>
<message>
<location filename="../services/impl/functionmanagerimpl.cpp" line="532"/>
<source>Unsupported scripting language: %1</source>
<translation>Непідтримуваний скриптова мова: %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>Неможливо ініціалізувати текстовий кодек для експорту. Використовується кодек за замовчуванням: %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>Дані в таблицю '%1' імпортовані успішно. Кількість імпортованих рядків: %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>Модуль імпорту не виявив жодного стовпчика.</translation>
</message>
<message>
<location filename="../importworker.cpp" line="30"/>
<source>Could not start transaction in order to import a data: %1</source>
<translation>Не вдалося почати транзакцію для імпортування даних: %1</translation>
</message>
<message>
<location filename="../importworker.cpp" line="53"/>
<source>Could not commit transaction for imported data: %1</source>
<translation>Не вдалося завершити транзакцію для імпортованих даних: %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>Таблиця '%1' має менше стовпців, ніж в імпортованих даних. Зайві стовпці даних будуть проігноровані.</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>У таблиці '%1' стовпців більше, ніж в імпортованих даних. Відсутні стовпці будуть залишені порожніми.</translation>
</message>
<message>
<location filename="../importworker.cpp" line="124"/>
<source>Could not create table to import to: %1</source>
<translation>Не вдалося створити таблицю для імпорту: %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>Помилка при імпорті даних: %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>Перервано.</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>Не вдалося імпортувати дані у рядку %1. Рядок було проігноровано. Подробиці проблеми: %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>Не вдалося завантажити плагін %1, тому що він конфліктує з плагіном %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>Неможливо завантажити модуль%1, тому що не завантажений необхідний йому модуль: %2.</translation>
</message>
<message>
<location filename="../services/impl/pluginmanagerimpl.cpp" line="566"/>
<source>Cannot load plugin %1. Error details: %2</source>
<translation>Не вдалося завантажити плагін %1. Подробиці помилки: %2</translation>
</message>
<message>
<location filename="../services/impl/pluginmanagerimpl.cpp" line="582"/>
<source>Cannot load plugin %1 (error while initializing plugin).</source>
<translation>Не вдалося завантажити плагін %1 (помилка при ініціалізації плагіна).</translation>
</message>
<message>
<location filename="../services/impl/pluginmanagerimpl.cpp" line="743"/>
<source>min: %1</source>
<comment>plugin dependency version</comment>
<translation>мінімум: %1</translation>
</message>
<message>
<location filename="../services/impl/pluginmanagerimpl.cpp" line="744"/>
<source>max: %1</source>
<comment>plugin dependency version</comment>
<translation>максимум: %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>Константа</translation>
</message>
</context>
<context>
<name>PopulateConstantConfig</name>
<message>
<location filename="../plugins/populateconstant.ui" line="20"/>
<source>Constant value:</source>
<translation>Значення константи:</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>Словник</translation>
</message>
</context>
<context>
<name>PopulateDictionaryConfig</name>
<message>
<location filename="../plugins/populatedictionary.ui" line="20"/>
<source>Dictionary file</source>
<translation>Файл словника</translation>
</message>
<message>
<location filename="../plugins/populatedictionary.ui" line="29"/>
<source>Pick dictionary file</source>
<translation>Вибрати файл словника</translation>
</message>
<message>
<location filename="../plugins/populatedictionary.ui" line="39"/>
<source>Word separator</source>
<translation>Розділювач слів</translation>
</message>
<message>
<location filename="../plugins/populatedictionary.ui" line="45"/>
<source>Whitespace</source>
<translation>Пробіл</translation>
</message>
<message>
<location filename="../plugins/populatedictionary.ui" line="58"/>
<source>Line break</source>
<translation>Перенесення рядка</translation>
</message>
<message>
<location filename="../plugins/populatedictionary.ui" line="74"/>
<source>Method of using words</source>
<translation>Спосіб використання слів</translation>
</message>
<message>
<location filename="../plugins/populatedictionary.ui" line="80"/>
<source>Ordered</source>
<translation>По порядку</translation>
</message>
<message>
<location filename="../plugins/populatedictionary.ui" line="93"/>
<source>Randomly</source>
<translation>Випадковим чином</translation>
</message>
</context>
<context>
<name>PopulateManager</name>
<message>
<location filename="../services/populatemanager.cpp" line="89"/>
<source>Table '%1' populated successfully.</source>
<translation>Таблиця '%1' успішно заповнена.</translation>
</message>
</context>
<context>
<name>PopulateRandom</name>
<message>
<location filename="../plugins/populaterandom.cpp" line="13"/>
<source>Random number</source>
<translation>Випадкове число</translation>
</message>
</context>
<context>
<name>PopulateRandomConfig</name>
<message>
<location filename="../plugins/populaterandom.ui" line="20"/>
<source>Constant prefix</source>
<translation>Префікс константи</translation>
</message>
<message>
<location filename="../plugins/populaterandom.ui" line="26"/>
<source>No prefix</source>
<translation>Без префікса</translation>
</message>
<message>
<location filename="../plugins/populaterandom.ui" line="39"/>
<source>Minimum value</source>
<translation>Мінімальне значення</translation>
</message>
<message>
<location filename="../plugins/populaterandom.ui" line="61"/>
<source>Maximum value</source>
<translation>Максимальне значення</translation>
</message>
<message>
<location filename="../plugins/populaterandom.ui" line="86"/>
<source>Constant suffix</source>
<translation>Суфікс константи</translation>
</message>
<message>
<location filename="../plugins/populaterandom.ui" line="92"/>
<source>No suffix</source>
<translation>Без суфікса</translation>
</message>
</context>
<context>
<name>PopulateRandomText</name>
<message>
<location filename="../plugins/populaterandomtext.cpp" line="14"/>
<source>Random text</source>
<translation>Випадковий текст</translation>
</message>
</context>
<context>
<name>PopulateRandomTextConfig</name>
<message>
<location filename="../plugins/populaterandomtext.ui" line="20"/>
<source>Use characters from common sets:</source>
<translation>Використовувати символи з стандартного набору:</translation>
</message>
<message>
<location filename="../plugins/populaterandomtext.ui" line="36"/>
<source>Minimum length</source>
<translation>Мінімальна довжина</translation>
</message>
<message>
<location filename="../plugins/populaterandomtext.ui" line="64"/>
<source>Letters from a to z.</source>
<translation>Букви від a до z.</translation>
</message>
<message>
<location filename="../plugins/populaterandomtext.ui" line="67"/>
<source>Alpha</source>
<translation>Буквений</translation>
</message>
<message>
<location filename="../plugins/populaterandomtext.ui" line="77"/>
<source>Numbers from 0 to 9.</source>
<translation>Числа від 0 до 9.</translation>
</message>
<message>
<location filename="../plugins/populaterandomtext.ui" line="80"/>
<source>Numeric</source>
<translation>Цифровий</translation>
</message>
<message>
<location filename="../plugins/populaterandomtext.ui" line="90"/>
<source>A whitespace, a tab and a new line character.</source>
<translation>Пробіл, табуляція та символ нового рядка.</translation>
</message>
<message>
<location filename="../plugins/populaterandomtext.ui" line="93"/>
<source>Whitespace</source>
<translation>Пробіл</translation>
</message>
<message>
<location filename="../plugins/populaterandomtext.ui" line="103"/>
<source>Includes all above and all others.</source>
<translation>Включає всі перераховані вище і всі інші.</translation>
</message>
<message>
<location filename="../plugins/populaterandomtext.ui" line="106"/>
<source>Binary</source>
<translation>Бінарний</translation>
</message>
<message>
<location filename="../plugins/populaterandomtext.ui" line="119"/>
<source>Use characters from my custom set:</source>
<translation>Використовувати символи з мого набору:</translation>
</message>
<message>
<location filename="../plugins/populaterandomtext.ui" line="132"/>
<source>Maximum length</source>
<translation>Максимальна довжина</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>При вказівці одного символу кілька разів, ймовірність його використання збільшується.</translation>
</message>
</context>
<context>
<name>PopulateScript</name>
<message>
<location filename="../plugins/populatescript.cpp" line="34"/>
<source>Script</source>
<translation>Скрипт</translation>
</message>
</context>
<context>
<name>PopulateScriptConfig</name>
<message>
<location filename="../plugins/populatescript.ui" line="26"/>
<source>Initialization code (optional)</source>
<translation>Ініціалізаційний код (необов'язково)</translation>
</message>
<message>
<location filename="../plugins/populatescript.ui" line="45"/>
<source>Per step code</source>
<translation>Код для кожного кроку</translation>
</message>
<message>
<location filename="../plugins/populatescript.ui" line="70"/>
<source>Language</source>
<translation>Мова</translation>
</message>
<message>
<location filename="../plugins/populatescript.ui" line="89"/>
<source>Help</source>
<translation>Допомога</translation>
</message>
</context>
<context>
<name>PopulateSequence</name>
<message>
<location filename="../plugins/populatesequence.cpp" line="13"/>
<source>Sequence</source>
<translation>Послідовність</translation>
</message>
</context>
<context>
<name>PopulateSequenceConfig</name>
<message>
<location filename="../plugins/populatesequence.ui" line="33"/>
<source>Start value:</source>
<translation>Початкове значення:</translation>
</message>
<message>
<location filename="../plugins/populatesequence.ui" line="56"/>
<source>Step:</source>
<translation>Крок:</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>Не вдалося почати транзакцію для заповнення таблиці. Подробиці помилки: %1</translation>
</message>
<message>
<location filename="../populateworker.cpp" line="69"/>
<source>Error while populating table: %1</source>
<translation>Помилка при заповненні таблиці: %1</translation>
</message>
<message>
<location filename="../populateworker.cpp" line="80"/>
<source>Could not commit transaction after table populating. Error details: %1</source>
<translation>Не вдалося завершити транзакцію після заповнення таблиці. Подробиці помилки: %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>Не вдалося відкрити файл '%1' для читання: %2</translation>
</message>
<message>
<location filename="../db/abstractdb3.h" line="435"/>
<source>Could not open database: %1</source>
<translation>Не вдалося відкрити базу даних: %1</translation>
</message>
<message>
<location filename="../db/abstractdb3.h" line="1214"/>
<source>Result set expired or no row available.</source>
<translation>Результуюча вибірка застаріла або жоден рядок не доступний.</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>Не вдалося завантажити розширення %1: %2</translation>
</message>
<message>
<location filename="../db/abstractdb3.h" line="421"/>
<source>Could not run WAL checkpoint: %1</source>
<translation type="unfinished">Could not run WAL checkpoint: %1</translation>
</message>
<message>
<location filename="../db/abstractdb3.h" line="459"/>
<source>Could not close database: %1</source>
<translation>Не вдалося закрити базу даних: %1</translation>
</message>
<message>
<location filename="../impl/dbattacherimpl.cpp" line="114"/>
<source>Could not attach database %1: %2</source>
<translation>Не вдалося підключити базу даних %1: %2</translation>
</message>
<message>
<location filename="../parser/parsercontext.cpp" line="108"/>
<location filename="../parser/parsercontext.cpp" line="110"/>
<source>Incomplete query.</source>
<translation>Незавершений запит.</translation>
</message>
<message>
<location filename="../parser/sqlite3_parse.cpp" line="2526"/>
<source>Parser stack overflow</source>
<translation>Переповнення стека аналізатора</translation>
</message>
<message>
<location filename="../parser/sqlite3_parse.cpp" line="5937"/>
<source>Syntax error</source>
<translation>Синтаксична помилка</translation>
</message>
<message>
<location filename="../plugins/populatedictionary.cpp" line="31"/>
<source>Could not open dictionary file %1 for reading.</source>
<translation>Не вдалося відкрити файл словника %1 для читання.</translation>
</message>
<message>
<location filename="../plugins/populatedictionary.cpp" line="92"/>
<source>Dictionary file must exist and be readable.</source>
<translation>Файл словника має існувати та бути читабельним.</translation>
</message>
<message>
<location filename="../plugins/populaterandom.cpp" line="54"/>
<source>Maximum value cannot be less than minimum value.</source>
<translation>Максимальне значення не може бути менше мінімального значення.</translation>
</message>
<message>
<location filename="../plugins/populaterandomtext.cpp" line="79"/>
<source>Maximum length cannot be less than minimum length.</source>
<translation>Максимальна довжина не може бути меншою мінімальної довжини.</translation>
</message>
<message>
<location filename="../plugins/populaterandomtext.cpp" line="90"/>
<source>Custom character set cannot be empty.</source>
<translation>Довільний набір символів не може бути пустим.</translation>
</message>
<message>
<location filename="../plugins/populatescript.cpp" line="61"/>
<source>Could not find plugin to support scripting language: %1</source>
<translation>Неможливо знайти модуль підтримки скриптового мови: %1</translation>
</message>
<message>
<location filename="../plugins/populatescript.cpp" line="79"/>
<source>Error while executing populating initial code: %1</source>
<translation>Помилка при виконанні ініціалізації коду заповнення: %1</translation>
</message>
<message>
<location filename="../plugins/populatescript.cpp" line="101"/>
<source>Error while executing populating code: %1</source>
<translation>Помилка при виконанні коду заповнення: %1</translation>
</message>
<message>
<location filename="../plugins/populatescript.cpp" line="133"/>
<source>Select implementation language.</source>
<translation>Виберіть мову реалізації.</translation>
</message>
<message>
<location filename="../plugins/populatescript.cpp" line="134"/>
<source>Implementation code cannot be empty.</source>
<translation>Заповнюючий код не може бути порожнім.</translation>
</message>
<message>
<location filename="../selectresolver.cpp" line="369"/>
<source>Could not resolve data source for column: %1</source>
<translation>Неможливо визначити джерело даних для стовпця: %1</translation>
</message>
<message>
<location filename="../selectresolver.cpp" line="439"/>
<source>Could not resolve table for column '%1'.</source>
<translation>Неможливо визначити таблицю для стовпця '%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>Неможливо ініціалізувати конфігураційний файл. Будь-які зміни конфігурації і історія запитів будуть втрачені після перезавантаження програми. Неможливо створити файл в наступних місцях: %1.</translation>
</message>
<message>
<location filename="../sqlitestudio.cpp" line="347"/>
<source>General purpose</source>
<comment>plugin category name</comment>
<translation>Загального призначення</translation>
</message>
<message>
<location filename="../sqlitestudio.cpp" line="348"/>
<source>Database support</source>
<comment>plugin category name</comment>
<translation>Підтримка баз даних</translation>
</message>
<message>
<location filename="../sqlitestudio.cpp" line="349"/>
<source>Code formatter</source>
<comment>plugin category name</comment>
<translation>Форматування коду</translation>
</message>
<message>
<location filename="../sqlitestudio.cpp" line="350"/>
<source>Scripting languages</source>
<comment>plugin category name</comment>
<translation>Скриптові мови</translation>
</message>
<message>
<location filename="../sqlitestudio.cpp" line="351"/>
<source>Exporting</source>
<comment>plugin category name</comment>
<translation>Експорт</translation>
</message>
<message>
<location filename="../sqlitestudio.cpp" line="352"/>
<source>Importing</source>
<comment>plugin category name</comment>
<translation>Імпорт</translation>
</message>
<message>
<location filename="../sqlitestudio.cpp" line="353"/>
<source>Table populating</source>
<comment>plugin category name</comment>
<translation>Заповнення таблиць</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>Таблиця %1 посилається на таблицю %2, але опис зовнішнього ключа не буде оновлено для опису нової таблиці через проблеми з аналізом DDL таблиці %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>Всі стовпчики, проіндексовані індексом %1, видалені. Індекс не буде відтворений після модифікації таблиці.</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>Виникла проблема при обробці тригера %1. Згодом він не буде повністю оновлений і вимагає вашої уваги.</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>Всі стовпчики, зачеплені в тригері %1, видалені. Тригер буде відтворений після модифікації таблиці.</translation>
</message>
<message>
<location filename="../tablemodifier.cpp" line="561"/>
<source>Cannot not update trigger %1 according to table %2 modification.</source>
<translation>Не вдалося оновити тригер %1 відповідно до зміни таблиці %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>Неможливо оновити розріз даних (view) %1 у відповідності зі зміною таблиці %2.
Вид залишиться таким, як є.</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>Виникла проблема при оновленні конструкції %1 всередині тригера %2. Одна з вкладених конструкцій %1, яка можливо посилається на таблицю %3, не може бути коректно модифікована. Можливо необхідне ручна правка тригера.</translation>
</message>
<message>
<location filename="../viewmodifier.cpp" line="24"/>
<source>Could not parse DDL of the view to be created. Details: %1</source>
<translation>Неможливо проаналізувати DDL створюваного розрізу даних (view). Подробиці: %1</translation>
</message>
<message>
<location filename="../viewmodifier.cpp" line="33"/>
<source>Parsed query is not CREATE VIEW. It's: %1</source>
<translation>Проаналізований запит не є запитом CREATE VIEW. Тип запиту: %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 не вдалося визначити стовпці, які повертаються новим розрізом даних (view), тому неможливо вказати, які тригери можуть зламатися в процесі відтворення.</translation>
</message>
</context>
<context>
<name>QueryExecutor</name>
<message>
<location filename="../db/queryexecutor.cpp" line="194"/>
<source>Execution interrupted.</source>
<translation>Виконання перервано.</translation>
</message>
<message>
<location filename="../db/queryexecutor.cpp" line="235"/>
<source>Database is not open.</source>
<translation>Базу даних не відкрито.</translation>
</message>
<message>
<location filename="../db/queryexecutor.cpp" line="243"/>
<source>Only one query can be executed simultaneously.</source>
<translation>Одночасно може бути виконаний тільки один запит.</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>Сталася помилка під час виконання count(*) запиту, тому розбивка даних по сторінках буде вимкнено. Деталі помилки з бази даних: %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 не вдалося витягти метадані із запиту. Результат не зможе бути редагованим.</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>Немає доступної бази даних в поточному контексті, під час виклику JavaScript's %1 команди.</translation>
</message>
<message>
<location filename="../plugins/scriptingqtdbproxy.cpp" line="65"/>
<source>Error from %1: %2</source>
<translation>Помилка в команді %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 type="unfinished">Could not execute SQL, because application has failed to start transaction: %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 type="unfinished">Execution from file cancelled. Any queries executed so far have been rolled back.</translation>
</message>
<message>
<location filename="../sqlfileexecutor.cpp" line="97"/>
<source>Could not open file '%1' for reading: %2</source>
<translation>Не вдалося відкрити файл '%1' для читання: %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 type="unfinished">Could not execute SQL, because application has failed to commit the transaction: %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 type="unfinished">Finished executing %1 queries in %2 seconds. %3 were not executed due to errors.</translation>
</message>
<message>
<location filename="../sqlfileexecutor.cpp" line="153"/>
<source>Finished executing %1 queries in %2 seconds.</source>
<translation type="unfinished">Finished executing %1 queries in %2 seconds.</translation>
</message>
<message>
<location filename="../sqlfileexecutor.cpp" line="160"/>
<source>Could not execute SQL due to error.</source>
<translation type="unfinished">Could not execute SQL due to error.</translation>
</message>
</context>
<context>
<name>SqlHistoryModel</name>
<message>
<location filename="../sqlhistorymodel.cpp" line="32"/>
<source>Database</source>
<comment>sql history header</comment>
<translation>База даних</translation>
</message>
<message>
<location filename="../sqlhistorymodel.cpp" line="34"/>
<source>Execution date</source>
<comment>sql history header</comment>
<translation>Дата виконання</translation>
</message>
<message>
<location filename="../sqlhistorymodel.cpp" line="36"/>
<source>Time spent</source>
<comment>sql history header</comment>
<translation>Витрачено часу</translation>
</message>
<message>
<location filename="../sqlhistorymodel.cpp" line="38"/>
<source>Rows affected</source>
<comment>sql history header</comment>
<translation>Торкнулося рядків</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>Не вдається перевірити наявність оновлень (%1).</translation>
</message>
</context>
</TS>
|