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="af" 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 type="unfinished">Cannot execute query on closed database.</translation>
</message>
<message>
<location filename="../db/abstractdb.cpp" line="661"/>
<source>Error attaching database %1: %2</source>
<translation type="unfinished">Error attaching database %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 type="unfinished">The database for executing queries was not defined.</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 type="unfinished">The database for executing queries was not open.</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 type="unfinished">Could not disable foreign keys in the database. Details: %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 type="unfinished">Could not start a database transaction. Details: %1</translation>
</message>
<message>
<location filename="../db/chainexecutor.cpp" line="89"/>
<source>Interrupted</source>
<comment>chain executor</comment>
<translation type="unfinished">Interrupted</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 type="unfinished">Could not commit a database transaction. Details: %1</translation>
</message>
</context>
<context>
<name>CompletionHelper</name>
<message>
<location filename="../completionhelper.cpp" line="159"/>
<source>New row reference</source>
<translation type="unfinished">New row reference</translation>
</message>
<message>
<location filename="../completionhelper.cpp" line="166"/>
<source>Old row reference</source>
<translation type="unfinished">Old row reference</translation>
</message>
<message>
<location filename="../completionhelper.cpp" line="171"/>
<source>New table name</source>
<translation type="unfinished">New table name</translation>
</message>
<message>
<location filename="../completionhelper.cpp" line="174"/>
<source>New index name</source>
<translation type="unfinished">New index name</translation>
</message>
<message>
<location filename="../completionhelper.cpp" line="177"/>
<source>New view name</source>
<translation type="unfinished">New view name</translation>
</message>
<message>
<location filename="../completionhelper.cpp" line="180"/>
<source>New trigger name</source>
<translation type="unfinished">New trigger name</translation>
</message>
<message>
<location filename="../completionhelper.cpp" line="183"/>
<source>Table or column alias</source>
<translation type="unfinished">Table or column alias</translation>
</message>
<message>
<location filename="../completionhelper.cpp" line="186"/>
<source>transaction name</source>
<translation type="unfinished">transaction name</translation>
</message>
<message>
<location filename="../completionhelper.cpp" line="189"/>
<source>New column name</source>
<translation type="unfinished">New column name</translation>
</message>
<message>
<location filename="../completionhelper.cpp" line="192"/>
<source>Column data type</source>
<translation type="unfinished">Column data type</translation>
</message>
<message>
<location filename="../completionhelper.cpp" line="195"/>
<source>Constraint name</source>
<translation type="unfinished">Constraint name</translation>
</message>
<message>
<location filename="../completionhelper.cpp" line="208"/>
<source>Error message</source>
<translation type="unfinished">Error message</translation>
</message>
<message>
<location filename="../completionhelper.cpp" line="257"/>
<source>Any word</source>
<translation type="unfinished">Any word</translation>
</message>
<message>
<location filename="../completionhelper.cpp" line="438"/>
<source>Default database</source>
<translation type="unfinished">Default database</translation>
</message>
<message>
<location filename="../completionhelper.cpp" line="439"/>
<source>Temporary objects database</source>
<translation type="unfinished">Temporary objects database</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 type="unfinished">Could not start database transaction for deleting SQL history, therefore it's not deleted.</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 type="unfinished">Could not commit database transaction for deleting SQL history, therefore it's not deleted.</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 type="unfinished">Could not add database %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 type="unfinished">Database %1 could not be updated, because of an error: %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 type="unfinished">Database file doesn't exist.</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 type="unfinished">No supporting plugin loaded.</translation>
</message>
<message>
<location filename="../services/impl/dbmanagerimpl.cpp" line="521"/>
<source>Database could not be initialized.</source>
<translation type="unfinished">Database could not be initialized.</translation>
</message>
<message>
<location filename="../services/impl/dbmanagerimpl.cpp" line="531"/>
<source>No suitable database driver plugin found.</source>
<translation type="unfinished">No suitable database driver plugin found.</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 type="unfinished">Error while creating table in target database: %1</translation>
</message>
<message>
<location filename="../dbobjectorganizer.cpp" line="373"/>
<source>Could not parse table.</source>
<translation type="unfinished">Could not parse table.</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 type="unfinished">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.</translation>
</message>
<message>
<location filename="../dbobjectorganizer.cpp" line="442"/>
<source>Error while copying data for table %1: %2</source>
<translation type="unfinished">Error while copying data for table %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 type="unfinished">Error while copying data to table %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 type="unfinished">Error while dropping source view %1: %2
Tables, indexes, triggers and views copied to database %3 will remain.</translation>
</message>
<message>
<location filename="../dbobjectorganizer.cpp" line="524"/>
<source>Error while creating view in target database: %1</source>
<translation type="unfinished">Error while creating view in target database: %1</translation>
</message>
<message>
<location filename="../dbobjectorganizer.cpp" line="529"/>
<source>Error while creating index in target database: %1</source>
<translation type="unfinished">Error while creating index in target database: %1</translation>
</message>
<message>
<location filename="../dbobjectorganizer.cpp" line="534"/>
<source>Error while creating trigger in target database: %1</source>
<translation type="unfinished">Error while creating trigger in target database: %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 type="unfinished">Could not parse object '%1' in order to move or copy it.</translation>
</message>
</context>
<context>
<name>DdlHistoryModel</name>
<message>
<location filename="../ddlhistorymodel.cpp" line="66"/>
<source>Database name</source>
<comment>ddl history header</comment>
<translation type="unfinished">Database name</translation>
</message>
<message>
<location filename="../ddlhistorymodel.cpp" line="68"/>
<source>Database file</source>
<comment>ddl history header</comment>
<translation type="unfinished">Database file</translation>
</message>
<message>
<location filename="../ddlhistorymodel.cpp" line="70"/>
<source>Date of execution</source>
<comment>ddl history header</comment>
<translation type="unfinished">Date of execution</translation>
</message>
<message>
<location filename="../ddlhistorymodel.cpp" line="72"/>
<source>Changes</source>
<comment>ddl history header</comment>
<translation type="unfinished">Changes</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 type="unfinished">Export plugin %1 doesn't support exporing query results.</translation>
</message>
<message>
<location filename="../services/exportmanager.cpp" line="98"/>
<source>Export plugin %1 doesn't support exporing tables.</source>
<translation type="unfinished">Export plugin %1 doesn't support exporing tables.</translation>
</message>
<message>
<location filename="../services/exportmanager.cpp" line="122"/>
<source>Export plugin %1 doesn't support exporing databases.</source>
<translation type="unfinished">Export plugin %1 doesn't support exporing databases.</translation>
</message>
<message>
<location filename="../services/exportmanager.cpp" line="155"/>
<source>Export format '%1' is not supported. Supported formats are: %2.</source>
<translation type="unfinished">Export format '%1' is not supported. Supported formats are: %2.</translation>
</message>
<message>
<location filename="../services/exportmanager.cpp" line="218"/>
<source>Export to the clipboard was successful.</source>
<translation type="unfinished">Export to the clipboard was successful.</translation>
</message>
<message>
<location filename="../services/exportmanager.cpp" line="222"/>
<source>Export to the file '%1' was successful.</source>
<translation type="unfinished">Export to the file '%1' was successful.</translation>
</message>
<message>
<location filename="../services/exportmanager.cpp" line="224"/>
<source>Export was successful.</source>
<translation type="unfinished">Export was successful.</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 type="unfinished">Could not export to file %1. File cannot be open for writting.</translation>
</message>
</context>
<context>
<name>ExportWorker</name>
<message>
<location filename="../exportworker.cpp" line="123"/>
<source>Error while exporting query results: %1</source>
<translation type="unfinished">Error while exporting query results: %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 type="unfinished">Error while counting data column width to export from query results: %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 type="unfinished">Could not parse %1 in order to export it. It will be excluded from the export output.</translation>
</message>
<message>
<location filename="../exportworker.cpp" line="609"/>
<source>Error while reading data to export from table %1: %2</source>
<translation type="unfinished">Error while reading data to export from table %1: %2</translation>
</message>
<message>
<location filename="../exportworker.cpp" line="617"/>
<source>Error while counting data to export from table %1: %2</source>
<translation type="unfinished">Error while counting data to export from table %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 type="unfinished">Error while counting data column width to export from table %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 type="unfinished">Invalid number of arguments to function '%1'. Expected %2, but got %3.</translation>
</message>
<message>
<location filename="../services/impl/functionmanagerimpl.cpp" line="396"/>
<source>No such function registered in SQLiteStudio: %1(%2)</source>
<translation type="unfinished">No such function registered in 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 type="unfinished">Function %1(%2) was registered with language %3, but the plugin supporting that language is not currently loaded.</translation>
</message>
<message>
<location filename="../services/impl/functionmanagerimpl.cpp" line="420"/>
<source>Invalid regular expression pattern: %1</source>
<translation type="unfinished">Invalid regular expression pattern: %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 type="unfinished">Could not open file %1 for reading: %2</translation>
</message>
<message>
<location filename="../services/impl/functionmanagerimpl.cpp" line="494"/>
<source>Could not open file %1 for writting: %2</source>
<translation type="unfinished">Could not open file %1 for writting: %2</translation>
</message>
<message>
<location filename="../services/impl/functionmanagerimpl.cpp" line="514"/>
<source>Error while writting to file %1: %2</source>
<translation type="unfinished">Error while writting to file %1: %2</translation>
</message>
<message>
<location filename="../services/impl/functionmanagerimpl.cpp" line="532"/>
<source>Unsupported scripting language: %1</source>
<translation type="unfinished">Unsupported scripting language: %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 type="unfinished">Could not initialize text codec for exporting. Using default codec: %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 type="unfinished">Imported data to the table '%1' successfully. Number of imported rows: %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 type="unfinished">No columns provided by the import plugin.</translation>
</message>
<message>
<location filename="../importworker.cpp" line="30"/>
<source>Could not start transaction in order to import a data: %1</source>
<translation type="unfinished">Could not start transaction in order to import a data: %1</translation>
</message>
<message>
<location filename="../importworker.cpp" line="53"/>
<source>Could not commit transaction for imported data: %1</source>
<translation type="unfinished">Could not commit transaction for imported data: %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 type="unfinished">Table '%1' has less columns than there are columns in the data to be imported. Excessive data columns will be ignored.</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 type="unfinished">Table '%1' has more columns than there are columns in the data to be imported. Some columns in the table will be left empty.</translation>
</message>
<message>
<location filename="../importworker.cpp" line="124"/>
<source>Could not create table to import to: %1</source>
<translation type="unfinished">Could not create table to import to: %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 type="unfinished">Error while importing data: %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 type="unfinished">Interrupted.</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 type="unfinished">Could not import data row number %1. The row was ignored. Problem details: %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 type="unfinished">Cannot load plugin %1, because it's in conflict with plugin %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 type="unfinished">Cannot load plugin %1, because its dependency was not loaded: %2.</translation>
</message>
<message>
<location filename="../services/impl/pluginmanagerimpl.cpp" line="566"/>
<source>Cannot load plugin %1. Error details: %2</source>
<translation type="unfinished">Cannot load plugin %1. Error details: %2</translation>
</message>
<message>
<location filename="../services/impl/pluginmanagerimpl.cpp" line="582"/>
<source>Cannot load plugin %1 (error while initializing plugin).</source>
<translation type="unfinished">Cannot load plugin %1 (error while initializing plugin).</translation>
</message>
<message>
<location filename="../services/impl/pluginmanagerimpl.cpp" line="743"/>
<source>min: %1</source>
<comment>plugin dependency version</comment>
<translation type="unfinished">min: %1</translation>
</message>
<message>
<location filename="../services/impl/pluginmanagerimpl.cpp" line="744"/>
<source>max: %1</source>
<comment>plugin dependency version</comment>
<translation type="unfinished">max: %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 type="unfinished">Constant</translation>
</message>
</context>
<context>
<name>PopulateConstantConfig</name>
<message>
<location filename="../plugins/populateconstant.ui" line="20"/>
<source>Constant value:</source>
<translation type="unfinished">Constant value:</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 type="unfinished">Dictionary</translation>
</message>
</context>
<context>
<name>PopulateDictionaryConfig</name>
<message>
<location filename="../plugins/populatedictionary.ui" line="20"/>
<source>Dictionary file</source>
<translation type="unfinished">Dictionary file</translation>
</message>
<message>
<location filename="../plugins/populatedictionary.ui" line="29"/>
<source>Pick dictionary file</source>
<translation type="unfinished">Pick dictionary file</translation>
</message>
<message>
<location filename="../plugins/populatedictionary.ui" line="39"/>
<source>Word separator</source>
<translation type="unfinished">Word separator</translation>
</message>
<message>
<location filename="../plugins/populatedictionary.ui" line="45"/>
<source>Whitespace</source>
<translation type="unfinished">Whitespace</translation>
</message>
<message>
<location filename="../plugins/populatedictionary.ui" line="58"/>
<source>Line break</source>
<translation type="unfinished">Line break</translation>
</message>
<message>
<location filename="../plugins/populatedictionary.ui" line="74"/>
<source>Method of using words</source>
<translation type="unfinished">Method of using words</translation>
</message>
<message>
<location filename="../plugins/populatedictionary.ui" line="80"/>
<source>Ordered</source>
<translation type="unfinished">Ordered</translation>
</message>
<message>
<location filename="../plugins/populatedictionary.ui" line="93"/>
<source>Randomly</source>
<translation type="unfinished">Randomly</translation>
</message>
</context>
<context>
<name>PopulateManager</name>
<message>
<location filename="../services/populatemanager.cpp" line="89"/>
<source>Table '%1' populated successfully.</source>
<translation type="unfinished">Table '%1' populated successfully.</translation>
</message>
</context>
<context>
<name>PopulateRandom</name>
<message>
<location filename="../plugins/populaterandom.cpp" line="13"/>
<source>Random number</source>
<translation type="unfinished">Random number</translation>
</message>
</context>
<context>
<name>PopulateRandomConfig</name>
<message>
<location filename="../plugins/populaterandom.ui" line="20"/>
<source>Constant prefix</source>
<translation type="unfinished">Constant prefix</translation>
</message>
<message>
<location filename="../plugins/populaterandom.ui" line="26"/>
<source>No prefix</source>
<translation type="unfinished">No prefix</translation>
</message>
<message>
<location filename="../plugins/populaterandom.ui" line="39"/>
<source>Minimum value</source>
<translation type="unfinished">Minimum value</translation>
</message>
<message>
<location filename="../plugins/populaterandom.ui" line="61"/>
<source>Maximum value</source>
<translation type="unfinished">Maximum value</translation>
</message>
<message>
<location filename="../plugins/populaterandom.ui" line="86"/>
<source>Constant suffix</source>
<translation type="unfinished">Constant suffix</translation>
</message>
<message>
<location filename="../plugins/populaterandom.ui" line="92"/>
<source>No suffix</source>
<translation type="unfinished">No suffix</translation>
</message>
</context>
<context>
<name>PopulateRandomText</name>
<message>
<location filename="../plugins/populaterandomtext.cpp" line="14"/>
<source>Random text</source>
<translation type="unfinished">Random text</translation>
</message>
</context>
<context>
<name>PopulateRandomTextConfig</name>
<message>
<location filename="../plugins/populaterandomtext.ui" line="20"/>
<source>Use characters from common sets:</source>
<translation type="unfinished">Use characters from common sets:</translation>
</message>
<message>
<location filename="../plugins/populaterandomtext.ui" line="36"/>
<source>Minimum length</source>
<translation type="unfinished">Minimum length</translation>
</message>
<message>
<location filename="../plugins/populaterandomtext.ui" line="64"/>
<source>Letters from a to z.</source>
<translation type="unfinished">Letters from a to z.</translation>
</message>
<message>
<location filename="../plugins/populaterandomtext.ui" line="67"/>
<source>Alpha</source>
<translation type="unfinished">Alpha</translation>
</message>
<message>
<location filename="../plugins/populaterandomtext.ui" line="77"/>
<source>Numbers from 0 to 9.</source>
<translation type="unfinished">Numbers from 0 to 9.</translation>
</message>
<message>
<location filename="../plugins/populaterandomtext.ui" line="80"/>
<source>Numeric</source>
<translation type="unfinished">Numeric</translation>
</message>
<message>
<location filename="../plugins/populaterandomtext.ui" line="90"/>
<source>A whitespace, a tab and a new line character.</source>
<translation type="unfinished">A whitespace, a tab and a new line character.</translation>
</message>
<message>
<location filename="../plugins/populaterandomtext.ui" line="93"/>
<source>Whitespace</source>
<translation type="unfinished">Whitespace</translation>
</message>
<message>
<location filename="../plugins/populaterandomtext.ui" line="103"/>
<source>Includes all above and all others.</source>
<translation type="unfinished">Includes all above and all others.</translation>
</message>
<message>
<location filename="../plugins/populaterandomtext.ui" line="106"/>
<source>Binary</source>
<translation type="unfinished">Binary</translation>
</message>
<message>
<location filename="../plugins/populaterandomtext.ui" line="119"/>
<source>Use characters from my custom set:</source>
<translation type="unfinished">Use characters from my custom set:</translation>
</message>
<message>
<location filename="../plugins/populaterandomtext.ui" line="132"/>
<source>Maximum length</source>
<translation type="unfinished">Maximum length</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 type="unfinished">If you type some character multiple times, it's more likely to be used.</translation>
</message>
</context>
<context>
<name>PopulateScript</name>
<message>
<location filename="../plugins/populatescript.cpp" line="34"/>
<source>Script</source>
<translation type="unfinished">Script</translation>
</message>
</context>
<context>
<name>PopulateScriptConfig</name>
<message>
<location filename="../plugins/populatescript.ui" line="26"/>
<source>Initialization code (optional)</source>
<translation type="unfinished">Initialization code (optional)</translation>
</message>
<message>
<location filename="../plugins/populatescript.ui" line="45"/>
<source>Per step code</source>
<translation type="unfinished">Per step code</translation>
</message>
<message>
<location filename="../plugins/populatescript.ui" line="70"/>
<source>Language</source>
<translation type="unfinished">Language</translation>
</message>
<message>
<location filename="../plugins/populatescript.ui" line="89"/>
<source>Help</source>
<translation type="unfinished">Help</translation>
</message>
</context>
<context>
<name>PopulateSequence</name>
<message>
<location filename="../plugins/populatesequence.cpp" line="13"/>
<source>Sequence</source>
<translation type="unfinished">Sequence</translation>
</message>
</context>
<context>
<name>PopulateSequenceConfig</name>
<message>
<location filename="../plugins/populatesequence.ui" line="33"/>
<source>Start value:</source>
<translation type="unfinished">Start value:</translation>
</message>
<message>
<location filename="../plugins/populatesequence.ui" line="56"/>
<source>Step:</source>
<translation type="unfinished">Step:</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 type="unfinished">Could not start transaction in order to perform table populating. Error details: %1</translation>
</message>
<message>
<location filename="../populateworker.cpp" line="69"/>
<source>Error while populating table: %1</source>
<translation type="unfinished">Error while populating table: %1</translation>
</message>
<message>
<location filename="../populateworker.cpp" line="80"/>
<source>Could not commit transaction after table populating. Error details: %1</source>
<translation type="unfinished">Could not commit transaction after table populating. Error details: %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 type="unfinished">Could not open file '%1' for reading: %2</translation>
</message>
<message>
<location filename="../db/abstractdb3.h" line="435"/>
<source>Could not open database: %1</source>
<translation type="unfinished">Could not open database: %1</translation>
</message>
<message>
<location filename="../db/abstractdb3.h" line="1214"/>
<source>Result set expired or no row available.</source>
<translation type="unfinished">Result set expired or no row available.</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 type="unfinished">Could not load extension %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 type="unfinished">Could not close database: %1</translation>
</message>
<message>
<location filename="../impl/dbattacherimpl.cpp" line="114"/>
<source>Could not attach database %1: %2</source>
<translation type="unfinished">Could not attach database %1: %2</translation>
</message>
<message>
<location filename="../parser/parsercontext.cpp" line="108"/>
<location filename="../parser/parsercontext.cpp" line="110"/>
<source>Incomplete query.</source>
<translation type="unfinished">Incomplete query.</translation>
</message>
<message>
<location filename="../parser/sqlite3_parse.cpp" line="2526"/>
<source>Parser stack overflow</source>
<translation type="unfinished">Parser stack overflow</translation>
</message>
<message>
<location filename="../parser/sqlite3_parse.cpp" line="5937"/>
<source>Syntax error</source>
<translation type="unfinished">Syntax error</translation>
</message>
<message>
<location filename="../plugins/populatedictionary.cpp" line="31"/>
<source>Could not open dictionary file %1 for reading.</source>
<translation type="unfinished">Could not open dictionary file %1 for reading.</translation>
</message>
<message>
<location filename="../plugins/populatedictionary.cpp" line="92"/>
<source>Dictionary file must exist and be readable.</source>
<translation type="unfinished">Dictionary file must exist and be readable.</translation>
</message>
<message>
<location filename="../plugins/populaterandom.cpp" line="54"/>
<source>Maximum value cannot be less than minimum value.</source>
<translation type="unfinished">Maximum value cannot be less than minimum value.</translation>
</message>
<message>
<location filename="../plugins/populaterandomtext.cpp" line="79"/>
<source>Maximum length cannot be less than minimum length.</source>
<translation type="unfinished">Maximum length cannot be less than minimum length.</translation>
</message>
<message>
<location filename="../plugins/populaterandomtext.cpp" line="90"/>
<source>Custom character set cannot be empty.</source>
<translation type="unfinished">Custom character set cannot be empty.</translation>
</message>
<message>
<location filename="../plugins/populatescript.cpp" line="61"/>
<source>Could not find plugin to support scripting language: %1</source>
<translation type="unfinished">Could not find plugin to support scripting language: %1</translation>
</message>
<message>
<location filename="../plugins/populatescript.cpp" line="79"/>
<source>Error while executing populating initial code: %1</source>
<translation type="unfinished">Error while executing populating initial code: %1</translation>
</message>
<message>
<location filename="../plugins/populatescript.cpp" line="101"/>
<source>Error while executing populating code: %1</source>
<translation type="unfinished">Error while executing populating code: %1</translation>
</message>
<message>
<location filename="../plugins/populatescript.cpp" line="133"/>
<source>Select implementation language.</source>
<translation type="unfinished">Select implementation language.</translation>
</message>
<message>
<location filename="../plugins/populatescript.cpp" line="134"/>
<source>Implementation code cannot be empty.</source>
<translation type="unfinished">Implementation code cannot be empty.</translation>
</message>
<message>
<location filename="../selectresolver.cpp" line="369"/>
<source>Could not resolve data source for column: %1</source>
<translation type="unfinished">Could not resolve data source for column: %1</translation>
</message>
<message>
<location filename="../selectresolver.cpp" line="439"/>
<source>Could not resolve table for column '%1'.</source>
<translation type="unfinished">Could not resolve table for column '%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 type="unfinished">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.</translation>
</message>
<message>
<location filename="../sqlitestudio.cpp" line="347"/>
<source>General purpose</source>
<comment>plugin category name</comment>
<translation type="unfinished">General purpose</translation>
</message>
<message>
<location filename="../sqlitestudio.cpp" line="348"/>
<source>Database support</source>
<comment>plugin category name</comment>
<translation type="unfinished">Database support</translation>
</message>
<message>
<location filename="../sqlitestudio.cpp" line="349"/>
<source>Code formatter</source>
<comment>plugin category name</comment>
<translation type="unfinished">Code formatter</translation>
</message>
<message>
<location filename="../sqlitestudio.cpp" line="350"/>
<source>Scripting languages</source>
<comment>plugin category name</comment>
<translation type="unfinished">Scripting languages</translation>
</message>
<message>
<location filename="../sqlitestudio.cpp" line="351"/>
<source>Exporting</source>
<comment>plugin category name</comment>
<translation type="unfinished">Exporting</translation>
</message>
<message>
<location filename="../sqlitestudio.cpp" line="352"/>
<source>Importing</source>
<comment>plugin category name</comment>
<translation type="unfinished">Importing</translation>
</message>
<message>
<location filename="../sqlitestudio.cpp" line="353"/>
<source>Table populating</source>
<comment>plugin category name</comment>
<translation type="unfinished">Table populating</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 type="unfinished">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.</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 type="unfinished">All columns indexed by the index %1 are gone. The index will not be recreated after table modification.</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 type="unfinished">There is problem with proper processing trigger %1. It may be not fully updated afterwards and will need your attention.</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 type="unfinished">All columns covered by the trigger %1 are gone. The trigger will not be recreated after table modification.</translation>
</message>
<message>
<location filename="../tablemodifier.cpp" line="561"/>
<source>Cannot not update trigger %1 according to table %2 modification.</source>
<translation type="unfinished">Cannot not update trigger %1 according to table %2 modification.</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 type="unfinished">Cannot not update view %1 according to table %2 modifications.
The view will remain as it is.</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 type="unfinished">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.</translation>
</message>
<message>
<location filename="../viewmodifier.cpp" line="24"/>
<source>Could not parse DDL of the view to be created. Details: %1</source>
<translation type="unfinished">Could not parse DDL of the view to be created. Details: %1</translation>
</message>
<message>
<location filename="../viewmodifier.cpp" line="33"/>
<source>Parsed query is not CREATE VIEW. It's: %1</source>
<translation type="unfinished">Parsed query is not CREATE VIEW. It's: %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 type="unfinished">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.</translation>
</message>
</context>
<context>
<name>QueryExecutor</name>
<message>
<location filename="../db/queryexecutor.cpp" line="194"/>
<source>Execution interrupted.</source>
<translation type="unfinished">Execution interrupted.</translation>
</message>
<message>
<location filename="../db/queryexecutor.cpp" line="235"/>
<source>Database is not open.</source>
<translation type="unfinished">Database is not open.</translation>
</message>
<message>
<location filename="../db/queryexecutor.cpp" line="243"/>
<source>Only one query can be executed simultaneously.</source>
<translation type="unfinished">Only one query can be executed simultaneously.</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 type="unfinished">An error occurred while executing the count(*) query, thus data paging will be disabled. Error details from the database: %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 type="unfinished">SQLiteStudio was unable to extract metadata from the query. Results won't be editable.</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 type="unfinished">No database available in current context, while called JavaScript's %1 command.</translation>
</message>
<message>
<location filename="../plugins/scriptingqtdbproxy.cpp" line="65"/>
<source>Error from %1: %2</source>
<translation type="unfinished">Error from %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 type="unfinished">Could not open file '%1' for reading: %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 type="unfinished">Database</translation>
</message>
<message>
<location filename="../sqlhistorymodel.cpp" line="34"/>
<source>Execution date</source>
<comment>sql history header</comment>
<translation type="unfinished">Execution date</translation>
</message>
<message>
<location filename="../sqlhistorymodel.cpp" line="36"/>
<source>Time spent</source>
<comment>sql history header</comment>
<translation type="unfinished">Time spent</translation>
</message>
<message>
<location filename="../sqlhistorymodel.cpp" line="38"/>
<source>Rows affected</source>
<comment>sql history header</comment>
<translation type="unfinished">Rows affected</translation>
</message>
<message>
<location filename="../sqlhistorymodel.cpp" line="40"/>
<source>SQL</source>
<comment>sql history header</comment>
<translation type="unfinished">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 type="unfinished">Could not check for updates (%1).</translation>
</message>
</context>
</TS>
|