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
|
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2004-07-28 13:40-0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: po/glade_files.c:1
msgid "Connect MySQL Database"
msgstr ""
#: po/glade_files.c:2
msgid "Connection:"
msgstr ""
#: po/glade_files.c:3
msgid "Username:"
msgstr ""
#: po/glade_files.c:4
msgid "Password:"
msgstr ""
#: po/glade_files.c:5
msgid "Hostname:"
msgstr ""
#: po/glade_files.c:6
msgid "Port:"
msgstr ""
#: po/glade_files.c:7
msgid "Enter the database username to connect to use for connecting."
msgstr ""
#: po/glade_files.c:8 po/glade_files.c:42 po/glade_files.c:58
msgid "*"
msgstr ""
#: po/glade_files.c:9
msgid "Enter the password for the above user."
msgstr ""
#: po/glade_files.c:10
msgid "Enter the host name for the database server."
msgstr ""
#: po/glade_files.c:11
msgid "Schema:"
msgstr ""
#: po/glade_files.c:12
msgid "Select the database schema name."
msgstr ""
#: po/glade_files.c:13
msgid "Enter the port where the database server is running."
msgstr ""
#: po/glade_files.c:14
msgid "Connect to MySQL Server Instance"
msgstr ""
#: po/glade_files.c:15 po/glade_files.c:50
msgid "Compress connection data"
msgstr ""
#: po/glade_files.c:16 po/glade_files.c:51
msgid "Encrypt connection (use SSL)"
msgstr ""
#: po/glade_files.c:17 po/glade_files.c:52
msgid "Connect Using Socket File"
msgstr ""
#: po/glade_files.c:18 po/glade_files.c:53 po/glade_files.c:208
msgid "Advanced Options"
msgstr ""
#: po/glade_files.c:19 source/linux/MGConnectDialog.cc:947
msgid "_Details >>"
msgstr ""
#: po/glade_files.c:20
msgid "Cancel"
msgstr ""
#: po/glade_files.c:21
msgid "_Clear"
msgstr ""
#: po/glade_files.c:22 source/linux/MGConnectDialog.cc:93
#: source/linux/MGConnectDialog.cc:902
msgid "Connect"
msgstr ""
#: po/glade_files.c:23
msgid "Preferences"
msgstr ""
#: po/glade_files.c:24
msgid "Category"
msgstr ""
#: po/glade_files.c:25
msgid "<small>Administrator</small>"
msgstr ""
#: po/glade_files.c:26
msgid "<small>General Options</small>"
msgstr ""
#: po/glade_files.c:27
msgid "<small>Connections</small>"
msgstr ""
#: po/glade_files.c:28
msgid "Show global privilege editor"
msgstr ""
#: po/glade_files.c:29
msgid "Show table/column privileges editor "
msgstr ""
#: po/glade_files.c:30
msgid "User Administration"
msgstr ""
#: po/glade_files.c:31
msgid "Append timestamp to backup file names."
msgstr ""
#: po/glade_files.c:32
msgid "Backup"
msgstr ""
#: po/glade_files.c:33
msgid "Storage Method"
msgstr ""
#: po/glade_files.c:34
msgid "Plain Text"
msgstr ""
#: po/glade_files.c:35
msgid "Obscured"
msgstr ""
#: po/glade_files.c:36
msgid "Store connection passwords"
msgstr ""
#: po/glade_files.c:37
msgid "_Add Connection"
msgstr ""
#: po/glade_files.c:38
msgid "_Remove"
msgstr ""
#: po/glade_files.c:39
msgid "Connection Name"
msgstr ""
#: po/glade_files.c:40
msgid "Username"
msgstr ""
#: po/glade_files.c:41
msgid "Password"
msgstr ""
#: po/glade_files.c:43
msgid "Hostname"
msgstr ""
#: po/glade_files.c:44
msgid "Port"
msgstr ""
#: po/glade_files.c:45
msgid "Schema"
msgstr ""
#: po/glade_files.c:46
msgid "Type"
msgstr ""
#: po/glade_files.c:47
msgid "MySQL"
msgstr ""
#: po/glade_files.c:48
msgid "Notes"
msgstr ""
#: po/glade_files.c:49
msgid "General"
msgstr ""
#: po/glade_files.c:54 po/glade_files.c:214
msgid "_Apply Changes"
msgstr ""
#: po/glade_files.c:55 po/glade_files.c:213
msgid "_Discard Changes"
msgstr ""
#: po/glade_files.c:56
msgid "Table Editor"
msgstr ""
#: po/glade_files.c:57
msgid "Table Name"
msgstr ""
#: po/glade_files.c:59
msgid "Database"
msgstr ""
#: po/glade_files.c:60
msgid "Comment"
msgstr ""
#: po/glade_files.c:61
msgid "Data Type:"
msgstr ""
#: po/glade_files.c:62
msgid "Default Value:"
msgstr ""
#: po/glade_files.c:63
msgid "Flags:"
msgstr ""
#: po/glade_files.c:64
msgid "Character Set:"
msgstr ""
#: po/glade_files.c:65
msgid "Collation:"
msgstr ""
#: po/glade_files.c:66
msgid "Comment:"
msgstr ""
#: po/glade_files.c:67
msgid "Name:"
msgstr ""
#: po/glade_files.c:68
msgid "Primary Key"
msgstr ""
#: po/glade_files.c:69
msgid "Not NULL"
msgstr ""
#: po/glade_files.c:70
msgid "Auto Increment"
msgstr ""
#: po/glade_files.c:71
msgid "Column Options"
msgstr ""
#: po/glade_files.c:72
msgid "Column Details"
msgstr ""
#: po/glade_files.c:73
msgid ""
"Index Columns:\n"
"<small>Use shift drag\n"
"from the column list\n"
"and drop in the list\n"
"to add.</small>."
msgstr ""
#: po/glade_files.c:78
msgid "Index Name:"
msgstr ""
#: po/glade_files.c:79
msgid "Index Kind:"
msgstr ""
#: po/glade_files.c:80
msgid "Index Type:"
msgstr ""
#: po/glade_files.c:81
msgid "INDEX"
msgstr ""
#: po/glade_files.c:82
msgid "PRIMARY"
msgstr ""
#: po/glade_files.c:83
msgid "UNIQUE"
msgstr ""
#: po/glade_files.c:84
msgid "FULLTEXT"
msgstr ""
#: po/glade_files.c:85
msgid "SPATIAL"
msgstr ""
#: po/glade_files.c:86
msgid "DEFAULT"
msgstr ""
#: po/glade_files.c:87
msgid "BTREE"
msgstr ""
#: po/glade_files.c:88
msgid "HASH"
msgstr ""
#: po/glade_files.c:89
msgid "RTREE"
msgstr ""
#: po/glade_files.c:90
msgid "Index Settings"
msgstr ""
#: po/glade_files.c:91 source/linux/MGSchemaBrowserList.cc:218
msgid "Indices"
msgstr ""
#: po/glade_files.c:92
msgid "Key Name:"
msgstr ""
#: po/glade_files.c:93
msgid "On Delete:"
msgstr ""
#: po/glade_files.c:94
msgid "On Update:"
msgstr ""
#: po/glade_files.c:95
msgid "Referenced Table:"
msgstr ""
#: po/glade_files.c:96
msgid "NO ACTION"
msgstr ""
#: po/glade_files.c:97
msgid "CASCADE"
msgstr ""
#: po/glade_files.c:98
msgid "SET NULL"
msgstr ""
#: po/glade_files.c:99
msgid "RESTRICT"
msgstr ""
#: po/glade_files.c:100
msgid ""
"<small>Use right click drag to add columns\n"
"to the list above.</small>"
msgstr ""
#: po/glade_files.c:102
msgid "Foreign Key Settings"
msgstr ""
#: po/glade_files.c:103
msgid "Foreign Keys"
msgstr ""
#: po/glade_files.c:104
msgid "Columns and Indices"
msgstr ""
#: po/glade_files.c:105
msgid "MyISAM"
msgstr ""
#: po/glade_files.c:106
msgid "InnoDB"
msgstr ""
#: po/glade_files.c:107
msgid "NDB"
msgstr ""
#: po/glade_files.c:108
msgid "BDB"
msgstr ""
#: po/glade_files.c:109
msgid "MEMORY (HEAP)"
msgstr ""
#: po/glade_files.c:110
msgid "MERGE"
msgstr ""
#: po/glade_files.c:111
msgid "ISAM (deprecated)"
msgstr ""
#: po/glade_files.c:112
msgid ""
"MySQL Cluster storage engine. Transaction safe, memory based with row "
"locking.\n"
"Recommended storage engine for high performance, real time critical "
"applications."
msgstr ""
#: po/glade_files.c:114
msgid ""
"Very fast, disk based storage engine without support for transactions.\n"
"Offers fulltext search, packed keys, and is the default storage engine."
msgstr ""
#: po/glade_files.c:116
msgid ""
"Transaction safe, disk based storage engine with row locking.\n"
" Recommended engine for tables that need support for transactions."
msgstr ""
#: po/glade_files.c:118
msgid ""
"Transaction safe storage engine with page locking. Also called Berkeley DB."
msgstr ""
#: po/glade_files.c:119
msgid ""
"Extremly fast memory based storage engine that uses hash indices.\n"
" Recommended storage engine for temporary data that can be lost in case\n"
"of a server shutdown."
msgstr ""
#: po/glade_files.c:122
msgid ""
"Collection of MyISAM tables with identical column and index information.\n"
" Recommended storage engine for log tables or tables with archived data. \n"
"Note that the list of union tables and insert method has to be defined."
msgstr ""
#: po/glade_files.c:125
msgid "This storage engine was replaced by the MyISAM storage engine."
msgstr ""
#: po/glade_files.c:126
msgid "Storage Engine"
msgstr ""
#: po/glade_files.c:127
msgid ""
"The default character set that is used for the table. \n"
"Starting from MySQL 4.1 you can specify an\n"
" individual character set for each column."
msgstr ""
#: po/glade_files.c:130
msgid ""
"Collation method that is used to compare text\n"
"and sort columns."
msgstr ""
#: po/glade_files.c:132
msgid "Default Character Set"
msgstr ""
#: po/glade_files.c:133
msgid "Table Options"
msgstr ""
#: po/glade_files.c:134
msgid "Pack Keys:"
msgstr ""
#: po/glade_files.c:135
msgid "Default"
msgstr ""
#: po/glade_files.c:136
msgid "Pack None"
msgstr ""
#: po/glade_files.c:137
msgid "Pack All"
msgstr ""
#: po/glade_files.c:138
msgid ""
"Use this option to generate smaller indices.\n"
"This usually makes updates slower and reads faster.\n"
"Setting it to Default tells the storage engine to only\n"
"pack long CHAR/VARCHAR columns."
msgstr ""
#: po/glade_files.c:142
msgid "Table Password:"
msgstr ""
#: po/glade_files.c:143
msgid "Auto Increment:"
msgstr ""
#: po/glade_files.c:144
msgid "Delay Key Updates Until Table is Closed"
msgstr ""
#: po/glade_files.c:145
msgid ""
"Password to encrypt the table definition file. \n"
"This option doesn't do anything in the standard\n"
"MySQL version."
msgstr ""
#: po/glade_files.c:148
msgid ""
"The initial AUTO_INCREMENT value for the table.\n"
"This works for MyISAM only."
msgstr ""
#: po/glade_files.c:150
msgid ""
"Use this option to delay the key updates untill the table\n"
"is closed. This works for MyISAM only."
msgstr ""
#: po/glade_files.c:152
msgid "Miscelaneous Options"
msgstr ""
#: po/glade_files.c:153
msgid "Row Format:"
msgstr ""
#: po/glade_files.c:154
msgid "Dynamic"
msgstr ""
#: po/glade_files.c:155
msgid "Fixed"
msgstr ""
#: po/glade_files.c:156
msgid "Compressed"
msgstr ""
#: po/glade_files.c:157
msgid "Use Checksum"
msgstr ""
#: po/glade_files.c:158
msgid "Avg. Row Length:"
msgstr ""
#: po/glade_files.c:159
msgid "Min Rows:"
msgstr ""
#: po/glade_files.c:160
msgid "Max Rows:"
msgstr ""
#: po/glade_files.c:161
msgid ""
"Defines how the rows in MyISAM tables should be stored.\n"
"The option value can be Fixed or Dynamic for static or \n"
"variable-length row format. The utility myisampack can be used\n"
"to set the type to Compressed."
msgstr ""
#: po/glade_files.c:165
msgid ""
"Activate this option if you want MySQL to maintain a live\n"
"checksum for all rows. This makes the table a little slower to\n"
"update, but also makes it easier to find corrupted tables."
msgstr ""
#: po/glade_files.c:168
msgid ""
"An approximation of the average row length for your table.\n"
"You need to set this only for large tables with variable-size records."
msgstr ""
#: po/glade_files.c:170
msgid "The minimum number of rows you plan to store in the table."
msgstr ""
#: po/glade_files.c:171
msgid "The maximum number of rows you plan to store in the table."
msgstr ""
#: po/glade_files.c:172
msgid "Row Options"
msgstr ""
#: po/glade_files.c:173
msgid "Index Directory:"
msgstr ""
#: po/glade_files.c:174
msgid ""
"Directory where to put the tables index file.\n"
"This works only for MyISAM tables only and\n"
"not on some operating systems (Windows)."
msgstr ""
#: po/glade_files.c:177
msgid "Data Directory:"
msgstr ""
#: po/glade_files.c:178
msgid ""
"Directory where to put the tables data file.\n"
"This works only for MyISAM tables only and\n"
"not on some operating systems (Windows)."
msgstr ""
#: po/glade_files.c:181
msgid "Set..."
msgstr ""
#: po/glade_files.c:182
msgid "Storage Options"
msgstr ""
#: po/glade_files.c:183
msgid "Union Tables:"
msgstr ""
#: po/glade_files.c:184
msgid "Insert Method:"
msgstr ""
#: po/glade_files.c:185
msgid ""
"List of MyISAM tables that should be used\n"
"by the MERGE table."
msgstr ""
#: po/glade_files.c:187
msgid "No Inserts"
msgstr ""
#: po/glade_files.c:188
msgid "Insert into first table"
msgstr ""
#: po/glade_files.c:189
msgid "Insert into last table"
msgstr ""
#: po/glade_files.c:190
msgid "The union table which should be used for inserts."
msgstr ""
#: po/glade_files.c:191
msgid "Merge Table Options"
msgstr ""
#: po/glade_files.c:192
msgid "RAID Type:"
msgstr ""
#: po/glade_files.c:193
msgid "Number of Chunks:"
msgstr ""
#: po/glade_files.c:194
msgid "Chunk Size:"
msgstr ""
#: po/glade_files.c:195
msgid "None"
msgstr ""
#: po/glade_files.c:196
msgid "Striped"
msgstr ""
#: po/glade_files.c:197
msgid ""
"The RAID functionality can be used to exceed the 2GB/4GB\n"
"limit for MyISAM data files on operating systems that do not \n"
"support big files. It is unrecommended for operating systems that do.\n"
"When the RAID type is set to STRIPED the table data file will \n"
"automatically be splitted into a number for chunks."
msgstr ""
#: po/glade_files.c:202
msgid ""
"Number of chunks to create, the maximum value is 255.\n"
"For each chunk there will be a subdirectory created named\n"
"'00', '01', ... and a 'tbl_name.MYD' file will be created in each directory."
msgstr ""
#: po/glade_files.c:205
msgid ""
"Size of chunk that will be written to first file, to the next file and so on."
msgstr ""
#: po/glade_files.c:206
msgid "kB"
msgstr ""
#: po/glade_files.c:207
msgid "Table RAID Settings"
msgstr ""
#: po/glade_files.c:209
msgid "SQL Insert Statements"
msgstr ""
#: po/glade_files.c:210
msgid "Standard Inserts"
msgstr ""
#: po/glade_files.c:211
msgid "Table Description"
msgstr ""
#: po/glade_files.c:212
msgid "Description"
msgstr ""
#: po/glade_files.c:215 source/linux/MGTableEditor.cc:1963
msgid "Confirm Table Changes"
msgstr ""
#: po/glade_files.c:216
msgid ""
"The following SQL commands will be executed to update the \n"
"edited table. Please review it and press the Execute button to apply it."
msgstr ""
#: source/linux/MGAboutPanel.cc:44
msgid "OK"
msgstr ""
#: source/linux/MGAboutPanel.cc:44
msgid "Credits"
msgstr ""
#: source/linux/MGAboutPanel.cc:83
#, c-format
msgid "About %s"
msgstr ""
#: source/linux/MGConnectDialog.cc:80
msgid "Skip"
msgstr ""
#: source/linux/MGConnectDialog.cc:230
msgid ""
"Can't show connection dialog.\n"
"Software installation might be incorrect or corrupted."
msgstr ""
#: source/linux/MGConnectDialog.cc:386
msgid "(last connection)"
msgstr ""
#: source/linux/MGConnectDialog.cc:413
msgid "Save This Connection..."
msgstr ""
#: source/linux/MGConnectDialog.cc:416
msgid "Open Connection Editor"
msgstr ""
#: source/linux/MGConnectDialog.cc:555 source/linux/MGConnectDialog.cc:565
msgid "Save Connection"
msgstr ""
#: source/linux/MGConnectDialog.cc:556
msgid "Type in a name for the connection to be saved."
msgstr ""
#: source/linux/MGConnectDialog.cc:566
msgid ""
"There is already a connection saved with the supplied name.\n"
"Type in another name for the connection to be saved."
msgstr ""
#: source/linux/MGConnectDialog.cc:631
msgid "Error"
msgstr ""
#: source/linux/MGConnectDialog.cc:640
#, c-format
msgid ""
"Could not connect to host '%s'.\n"
"MySQL Error Nr. %i\n"
"%s\n"
"\n"
"Click the 'Ping' button to see if there is a networking problem."
msgstr ""
#: source/linux/MGConnectDialog.cc:652 source/linux/MGConnectDialog.cc:659
msgid "_Ping Host"
msgstr ""
#: source/linux/MGConnectDialog.cc:694
msgid "Could not execute ping\n"
msgstr ""
#: source/linux/MGConnectDialog.cc:702
msgid "Stop _Ping"
msgstr ""
#: source/linux/MGConnectDialog.cc:954
msgid "_Details <<"
msgstr ""
#: source/linux/MGFileBrowserList.cc:36 source/linux/MGPreferences.cc:35
#, c-format
msgid "Could not create directory %s: %s"
msgstr ""
#: source/linux/MGFileBrowserList.cc:49
msgid "Change Path..."
msgstr ""
#: source/linux/MGFileBrowserList.cc:168
#, c-format
msgid "Could not rename file '%s' to '%s': %s"
msgstr ""
#: source/linux/MGFileBrowserList.cc:182
#, c-format
msgid "Could not erase file '%s': %s"
msgstr ""
#: source/linux/MGFileBrowserList.cc:192
msgid "Select Backup File Directory"
msgstr ""
#: source/linux/MGPreferences.cc:42
#, c-format
msgid "Directory %s does not exist"
msgstr ""
#: source/linux/MGPreferencesEditor.cc:222
msgid "MySQL Administrator Options"
msgstr ""
#: source/linux/MGPreferencesEditor.cc:225
msgid "General Options"
msgstr ""
#: source/linux/MGPreferencesEditor.cc:228
#: source/linux/MGPreferencesEditor.cc:412
msgid "Connections"
msgstr ""
#: source/linux/MGPreferencesEditor.cc:418
msgid "History"
msgstr ""
#: source/linux/MGSchemaBrowserList.cc:155
msgid "Tables"
msgstr ""
#: source/linux/MGTableEditor.cc:157
msgid "Column"
msgstr ""
#: source/linux/MGTableEditor.cc:158
msgid "Length"
msgstr ""
#: source/linux/MGTableEditor.cc:169
msgid "Column Name"
msgstr ""
#: source/linux/MGTableEditor.cc:181
msgid "Data Type"
msgstr ""
#: source/linux/MGTableEditor.cc:184
msgid "Flags"
msgstr ""
#: source/linux/MGTableEditor.cc:185
msgid "Default Value"
msgstr ""
#: source/linux/MGTableEditor.cc:186
msgid "Comments"
msgstr ""
#: source/linux/MGTableEditor.cc:263
msgid "Back"
msgstr ""
#: source/linux/MGTableEditor.cc:832
#, c-format
msgid "Could not load data files '%s' for table editor."
msgstr ""
#: source/linux/MGTableEditor.cc:849
msgid ""
"Could not retrieve available character set information for table editor."
msgstr ""
#: source/linux/MGTableEditor.cc:950 source/linux/MGTableEditor.cc:1025
#, c-format
msgid "Please confirm deletion of column '%s'."
msgstr ""
#: source/linux/MGTableEditor.cc:1485
#, c-format
msgid "Could not retrieve information for table '%s.%s'"
msgstr ""
#: source/linux/MGTableEditor.cc:1489
#, c-format
msgid "Error retrieving information for table '%s.%s'"
msgstr ""
#: source/linux/MGTableEditor.cc:1886 source/linux/MGTableEditor.cc:1890
#, c-format
msgid "Could not retrieve information for table '%s.%s' to perform table diff."
msgstr ""
#: source/linux/MGTableEditor.cc:1902
msgid ""
"Could not generate differences between original table and modified table."
msgstr ""
#: source/linux/MGTableEditor.cc:1906
msgid "No modifications to be applied."
msgstr ""
#: source/linux/MGTableEditor.cc:1928
msgid "Error executing SQL commands to create table."
msgstr ""
#: source/linux/MGTableEditor.cc:1930
msgid "Error executing SQL commands to update table."
msgstr ""
#: source/linux/MGTableEditor.cc:1961
msgid "Confirm Table Creation"
msgstr ""
#: source/linux/MGTableEditor.cc:1977
msgid "Save SQL Script"
msgstr ""
#: source/linux/MGTableEditor.cc:1987
#, c-format
msgid "Could not create file '%s'."
msgstr ""
#: source/linux/MGTableEditor.cc:1992
#, c-format
msgid "Could not save to file '%s'."
msgstr ""
#: source/linux/myg_utils.cc:200
msgid "Can't open file."
msgstr ""
#: source/linux/myg_utils.cc:201
msgid "Can't connect to server instance."
msgstr ""
#: source/linux/myg_utils.cc:202
msgid "Error parsing XML file."
msgstr ""
#: source/linux/myg_utils.cc:203
msgid "Error parsing XML file (bad document)."
msgstr ""
#: source/linux/myg_utils.cc:204
msgid "Error parsing XML file (empty document)."
msgstr ""
#: source/linux/myg_utils.cc:205
msgid "Error executing SQL command."
msgstr ""
#: source/linux/myg_utils.cc:206
msgid "Executing stopped."
msgstr ""
#: source/linux/myg_utils.cc:207
msgid "Internal error in libxml (could not change memory allocators)."
msgstr ""
#: source/linux/myg_utils.cc:208
msgid "The object was not found in the database."
msgstr ""
#: source/linux/myg_utils.cc:209
msgid "Cannot read from file."
msgstr ""
#: source/linux/myg_utils.cc:210
msgid "Error during character set conversion."
msgstr ""
#: source/linux/myg_utils.cc:211
msgid "Invalid character set specified."
msgstr ""
|