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="ru" 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>Не удалось создать полную контрольную точку WAL в базе данных '%1'. Ошибка из движка 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>Не указана база данных для выполнения запросов.</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>Новое имя представления</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>Ошибка при удалении исходного представления %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>Не удалось запустить контрольную точку WAL: %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>Невозможно обновить представление %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 создаваемого представления. Подробности: %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 не удалось определить столбцы, возвращаемые новым представлением, поэтому невозможно указать, какие триггеры могут сломаться в процессе воссоздания.</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 %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>Невозможно выполнить SQL-запрос, так как приложению не удалось начать транзакцию: %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>Выполнение запросов из файла отменено. Все выполненные ранее из него запросы откачены.</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>Невозможно выполнить SQL-запрос, так как приложению не удалось завершить транзакцию: %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>Завершено выполнение %1 запросов за %2 секунд. %3 запросов не было выполнено из-за ошибок.</translation>
</message>
<message>
<location filename="../sqlfileexecutor.cpp" line="153"/>
<source>Finished executing %1 queries in %2 seconds.</source>
<translation>Завершено выполнение %1 запросов за %2 секунд.</translation>
</message>
<message>
<location filename="../sqlfileexecutor.cpp" line="160"/>
<source>Could not execute SQL due to error.</source>
<translation>Невозможно выполнить SQL-запрос из-за ошибки.</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>
|