~drizzle-trunk/drizzle/development

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
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Sun Microsystems
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: drizzle 7.0.0\n"
"Report-Msgid-Bugs-To: http://translations.launchpad.net/drizzle\n"
"POT-Creation-Date: 2008-08-04 12:48-0700\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=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"

#: client/drizzle.c:260
msgid "Synonym for `help'."
msgstr ""

#: client/drizzle.c:261
msgid "Clear command."
msgstr ""

#: client/drizzle.c:263
msgid "Reconnect to the server. Optional arguments are db and host."
msgstr ""

#: client/drizzle.c:265
msgid ""
"Set statement delimiter. NOTE: Takes the rest of the line as new delimiter."
msgstr ""

#: client/drizzle.c:267
msgid "Send command to drizzle server, display result vertically."
msgstr ""

#: client/drizzle.c:268
msgid "Exit drizzle. Same as quit."
msgstr ""

#: client/drizzle.c:269
msgid "Send command to drizzle server."
msgstr ""

#: client/drizzle.c:270
msgid "Display this help."
msgstr ""

#: client/drizzle.c:271
msgid "Disable pager, print to stdout."
msgstr ""

#: client/drizzle.c:272
msgid "Don't write into outfile."
msgstr ""

#: client/drizzle.c:274
msgid "Set PAGER [to_pager]. Print the query results via PAGER."
msgstr ""

#: client/drizzle.c:275
msgid "Print current command."
msgstr ""

#: client/drizzle.c:276
msgid "Change your drizzle prompt."
msgstr ""

#: client/drizzle.c:277
msgid "Quit drizzle."
msgstr ""

#: client/drizzle.c:278
msgid "Rebuild completion hash."
msgstr ""

#: client/drizzle.c:280
msgid "Execute an SQL script file. Takes a file name as an argument."
msgstr ""

#: client/drizzle.c:281
msgid "Get status information from the server."
msgstr ""

#: client/drizzle.c:283
msgid "Set outfile [to_outfile]. Append everything into given outfile."
msgstr ""

#: client/drizzle.c:285
msgid "Use another database. Takes database name as argument."
msgstr ""

#: client/drizzle.c:287
msgid ""
"Switch to another charset. Might be needed for processing binlog with multi-"
"byte charsets."
msgstr ""

#: client/drizzle.c:289 client/drizzle.c:1459
msgid "Show warnings after every statement."
msgstr ""

#: client/drizzle.c:291
msgid "Don't show warnings after every statement."
msgstr ""

#: client/drizzle.c:1130
msgid "Welcome to the Drizzle client..  Commands end with ; or \\g."
msgstr ""

#: client/drizzle.c:1138
#, c-format
msgid ""
"Your Drizzle connection id is %u\n"
"Server version: %s\n"
msgstr ""

#: client/drizzle.c:1168
#, c-format
msgid "Reading history-file %s\n"
msgstr ""

#: client/drizzle.c:1173
#, c-format
msgid "Couldn't allocate memory for temp histfile!\n"
msgstr ""

#: client/drizzle.c:1180
msgid "Type 'help;' or '\\h' for help. Type '\\c' to clear the buffer.\n"
msgstr ""

#: client/drizzle.c:1199
#, c-format
msgid "Writing history-file %s\n"
msgstr ""

#: client/drizzle.c:1208
msgid "Aborted"
msgstr ""

#: client/drizzle.c:1208
msgid "Bye"
msgstr ""

#: client/drizzle.c:1261
msgid "Query aborted by Ctrl+C\n"
msgstr ""

#: client/drizzle.c:1284
msgid "Display this help and exit."
msgstr ""

#: client/drizzle.c:1286
msgid "Synonym for -?"
msgstr ""

#: client/drizzle.c:1289
msgid ""
"Enable automatic rehashing. One doesn't need to use 'rehash' to get table "
"and field completion, but startup and reconnecting may take a longer time. "
"Disable with --disable-auto-rehash."
msgstr ""

#: client/drizzle.c:1293
msgid ""
"No automatic rehashing. One has to use 'rehash' to get table and field "
"completion. This gives a quicker start of DRIZZLE and disables rehashing on "
"reconnect. WARNING: options deprecated; use --disable-auto-rehash instead."
msgstr ""

#: client/drizzle.c:1296
msgid ""
"Automatically switch to vertical output mode if the result is wider than the "
"terminal width."
msgstr ""

#: client/drizzle.c:1299
msgid ""
"Don't use history file. Disable interactive behavior. (Enables --silent)"
msgstr ""

#: client/drizzle.c:1301
msgid "Directory where character sets are."
msgstr ""

#: client/drizzle.c:1303
msgid "Display column type information."
msgstr ""

#: client/drizzle.c:1306
msgid ""
"Preserve comments. Send comments to the server. The default is --skip-"
"comments (discard comments), enable with --comments"
msgstr ""

#: client/drizzle.c:1309
msgid "Use compression in server/client protocol."
msgstr ""

#: client/drizzle.c:1312
msgid "Check memory and open file usage at exit ."
msgstr ""

#: client/drizzle.c:1315
msgid "Print some debug info at exit."
msgstr ""

#: client/drizzle.c:1317
msgid "Database to use."
msgstr ""

#: client/drizzle.c:1320
msgid "Set the default character set."
msgstr ""

#: client/drizzle.c:1322
msgid "Delimiter to be used."
msgstr ""

#: client/drizzle.c:1324
msgid "Execute command and quit. (Disables --force and history file)"
msgstr ""

#: client/drizzle.c:1326
msgid "Print the output of a query (rows) vertically."
msgstr ""

#: client/drizzle.c:1329
msgid "Continue even if we get an sql error."
msgstr ""

#: client/drizzle.c:1333
msgid ""
"Enable named commands. Named commands mean this program's internal commands; "
"see drizzle> help . When enabled, the named commands can be used from any "
"line of the query, otherwise only from the first line, before an enter. "
"Disable with --disable-named-commands. This option is disabled by default."
msgstr ""

#: client/drizzle.c:1337
msgid ""
"Named commands are disabled. Use \\* form only, or use named commands only "
"in the beginning of a line ending with a semicolon (;) Since version 10.9 "
"the client now starts with this option ENABLED by default! Disable with '-"
"G'. Long format commands still work from the first line. WARNING: option "
"deprecated; use --disable-named-commands instead."
msgstr ""

#: client/drizzle.c:1339
msgid "Ignore space after function names."
msgstr ""

#: client/drizzle.c:1341
msgid "Enable/disable LOAD DATA LOCAL INFILE."
msgstr ""

#: client/drizzle.c:1344
msgid "Turn off beep on error."
msgstr ""

#: client/drizzle.c:1346
msgid "Connect to host."
msgstr ""

#: client/drizzle.c:1348
msgid "Produce HTML output."
msgstr ""

#: client/drizzle.c:1350
msgid "Produce XML output"
msgstr ""

#: client/drizzle.c:1352
msgid "Write line numbers for errors."
msgstr ""

#: client/drizzle.c:1355
msgid ""
"Don't write line number for errors. WARNING: -L is deprecated, use long "
"version of this option instead."
msgstr ""

#: client/drizzle.c:1357
msgid "Flush buffer after each query."
msgstr ""

#: client/drizzle.c:1359
msgid "Write column names in results."
msgstr ""

#: client/drizzle.c:1363
msgid ""
"Don't write column names in results. WARNING: -N is deprecated, use long "
"version of this options instead."
msgstr ""

#: client/drizzle.c:1366
msgid ""
"Change the value of a variable. Please note that this option is deprecated; "
"you can set variables directly with --variable-name=value."
msgstr ""

#: client/drizzle.c:1368
msgid "Ignore SIGINT (CTRL-C)"
msgstr ""

#: client/drizzle.c:1372
msgid ""
"Only update the default database. This is useful for skipping updates to "
"other database in the update log."
msgstr ""

#: client/drizzle.c:1375
msgid ""
"Pager to use to display results. If you don't supply an option the default "
"pager is taken from your ENV variable PAGER. Valid pagers are less, more, "
"cat [> filename], etc. See interactive help (\\h) also. This option does not "
"work in batch mode. Disable with --disable-pager. This option is disabled by "
"default."
msgstr ""

#: client/drizzle.c:1378
msgid ""
"Disable pager and print to stdout. See interactive help (\\h) also. WARNING: "
"option deprecated; use --disable-pager instead."
msgstr ""

#: client/drizzle.c:1381
msgid ""
"Password to use when connecting to server. If password is not given it's "
"asked from the tty."
msgstr ""

#: client/drizzle.c:1383
msgid ""
"Port number to use for connection or 0 for default to, in order of "
"preference, my.cnf, $MYSQL_TCP_PORT, "
msgstr ""

#: client/drizzle.c:1387
msgid "built-in default"
msgstr ""

#: client/drizzle.c:1390
msgid "Set the drizzle prompt to this value."
msgstr ""

#: client/drizzle.c:1393
msgid "The protocol of connection (tcp,socket,pipe,memory)."
msgstr ""

#: client/drizzle.c:1396
msgid ""
"Don't cache result, print it row by row. This may slow down the server if "
"the output is suspended. Doesn't use history file."
msgstr ""

#: client/drizzle.c:1398
msgid "Write fields without conversion. Used with --batch."
msgstr ""

#: client/drizzle.c:1401
msgid ""
"Reconnect if the connection is lost. Disable with --disable-reconnect. This "
"option is enabled by default."
msgstr ""

#: client/drizzle.c:1403
msgid ""
"Be more silent. Print results with a tab as separator, each row on new line."
msgstr ""

#: client/drizzle.c:1405
msgid "Socket file to use for connection."
msgstr ""

#: client/drizzle.c:1408
msgid "Output in table format."
msgstr ""

#: client/drizzle.c:1411
msgid ""
"Append everything into outfile. See interactive help (\\h) also. Does not "
"work in batch mode. Disable with --disable-tee. This option is disabled by "
"default."
msgstr ""

#: client/drizzle.c:1413
msgid ""
"Disable outfile. See interactive help (\\h) also. WARNING: option "
"deprecated; use --disable-tee instead"
msgstr ""

#: client/drizzle.c:1416
msgid "User for login if not current user."
msgstr ""

#: client/drizzle.c:1419
msgid "Only allow UPDATE and DELETE that uses keys."
msgstr ""

#: client/drizzle.c:1422
msgid "Synonym for option --safe-updates, -U."
msgstr ""

#: client/drizzle.c:1425
msgid "Write more. (-v -v -v gives the table output format)."
msgstr ""

#: client/drizzle.c:1427
msgid "Output version information and exit."
msgstr ""

#: client/drizzle.c:1429
msgid "Wait and retry if connection is down."
msgstr ""

#: client/drizzle.c:1432
msgid "Number of seconds before connection timeout."
msgstr ""

#: client/drizzle.c:1437
msgid "Max packet length to send to, or receive from server"
msgstr ""

#: client/drizzle.c:1442
msgid "Buffer for TCP/IP and socket communication"
msgstr ""

#: client/drizzle.c:1446
msgid "Automatic limit for SELECT when using --safe-updates"
msgstr ""

#: client/drizzle.c:1451
msgid "Automatic limit for rows in a join when using --safe-updates"
msgstr ""

#: client/drizzle.c:1455
msgid "Refuse client connecting to server if it uses old (pre-4.1.1) protocol"
msgstr ""

#: client/drizzle.c:1457
msgid "Send embedded server this as a parameter."
msgstr ""

#: client/drizzle.c:1470
#, c-format
msgid "%s  Ver %s Distrib %s, for %s (%s) using %s %s\n"
msgstr ""

#: client/drizzle.c:1476
#, c-format
msgid ""
"Copyright (C) 2000-2008 MySQL AB\n"
"                                      This software comes with ABSOLUTELY NO "
"WARRANTY. This is free software,\n"
" and you are welcome to modify and redistribute it under the GPL license\n"
msgstr ""

#: client/drizzle.c:1480
#, c-format
msgid "Usage: %s [OPTIONS] [database]\n"
msgstr ""

#: client/drizzle.c:1513
msgid "DELIMITER cannot contain a backslash character"
msgstr ""

#: client/drizzle.c:1534
#, c-format
msgid "WARNING: option deprecated; use --disable-tee instead.\n"
msgstr ""

#: client/drizzle.c:1557
#, c-format
msgid "WARNING: option deprecated; use --disable-pager instead.\n"
msgstr ""

#: client/drizzle.c:1565
#, c-format
msgid "WARNING: --server-arg option not supported in this configuration.\n"
msgstr ""

#: client/drizzle.c:1936
#, c-format
msgid "Unknown command '\\%c'."
msgstr ""

#: client/drizzle.c:2366
msgid ""
"Reading table information for completion of table and column names\n"
"    You can turn off this feature to get a quicker startup with -A\n"
"\n"
msgstr ""

#: client/drizzle.c:2463
msgid "No connection. Trying to reconnect..."
msgstr ""

#: client/drizzle.c:2469
msgid "Can't connect to the server\n"
msgstr ""

#: client/drizzle.c:2526
msgid "categories:"
msgstr ""

#: client/drizzle.c:2526
msgid "topics:"
msgstr ""

#: client/drizzle.c:2577
#, c-format
msgid "Name: '%s'\n"
msgstr ""

#: client/drizzle.c:2578
#, c-format
msgid ""
"Description:\n"
"%s"
msgstr ""

#: client/drizzle.c:2580
#, c-format
msgid ""
"Examples:\n"
"%s"
msgstr ""

#: client/drizzle.c:2593
msgid "Many help items for your request exist."
msgstr ""

#: client/drizzle.c:2594
msgid ""
"To make a more specific request, please type 'help <item>',\n"
"where <item> is one of the following"
msgstr ""

#: client/drizzle.c:2600
#, c-format
msgid "You asked for help about help category: '%s'\n"
msgstr ""

#: client/drizzle.c:2601
msgid ""
"For more information, type 'help <item>', where <item> is one of the "
"following"
msgstr ""

#: client/drizzle.c:2614
msgid ""
"\n"
"Nothing found"
msgstr ""

#: client/drizzle.c:2615
msgid "Please try to run 'help contents' for a list of all accessible topics\n"
msgstr ""

#: client/drizzle.c:2638
msgid "List of all Drizzle commands:"
msgstr ""

#: client/drizzle.c:2640
msgid "Note that all text commands must be first on line and end with ';'"
msgstr ""

#: client/drizzle.c:2651
msgid ""
"\n"
"For server side help, type 'help contents'\n"
msgstr ""

#: client/drizzle.c:2674
msgid "Usage: \\C char_setname | charset charset_name"
msgstr ""

#: client/drizzle.c:2684
msgid "Charset changed"
msgstr ""

#: client/drizzle.c:2686
msgid "Charset is not found"
msgstr ""

#: client/drizzle.c:2717
msgid "No query specified\n"
msgstr ""

#: client/drizzle.c:2732
msgid "Ignoring query to other database"
msgstr ""

#: client/drizzle.c:2781
msgid "Empty set"
msgstr ""

#: client/drizzle.c:2808
#, c-format
msgid "%ld row in set"
msgid_plural "%ld rows in set"
msgstr[0] ""
msgstr[1] ""

#: client/drizzle.c:2817
msgid "Query OK"
msgstr ""

#: client/drizzle.c:2819
#, c-format
msgid "Query OK, %ld row affected"
msgid_plural "Query OK, %ld rows affected"
msgstr[0] ""
msgstr[1] ""

#: mysys/errors.c:25
#, c-format
msgid "Can't create/write to file '%s' (Errcode: %d)"
msgstr ""

#: mysys/errors.c:26
#, c-format
msgid "Error reading file '%s' (Errcode: %d)"
msgstr ""

#: mysys/errors.c:27
#, c-format
msgid "Error writing file '%s' (Errcode: %d)"
msgstr ""

#: mysys/errors.c:28
#, c-format
msgid "Error on close of '%'s (Errcode: %d)"
msgstr ""

#: mysys/errors.c:29
#, c-format
msgid "Out of memory (Needed %u bytes)"
msgstr ""

#: mysys/errors.c:30
#, c-format
msgid "Error on delete of '%s' (Errcode: %d)"
msgstr ""

#: mysys/errors.c:31
#, c-format
msgid "Error on rename of '%s' to '%s' (Errcode: %d)"
msgstr ""

#: mysys/errors.c:32
#, c-format
msgid "Unexpected eof found when reading file '%s' (Errcode: %d)"
msgstr ""

#: mysys/errors.c:33
#, c-format
msgid "Can't lock file (Errcode: %d)"
msgstr ""

#: mysys/errors.c:34
#, c-format
msgid "Can't unlock file (Errcode: %d)"
msgstr ""

#: mysys/errors.c:35
#, c-format
msgid "Can't read dir of '%s' (Errcode: %d)"
msgstr ""

#: mysys/errors.c:36
#, c-format
msgid "Can't get stat of '%s' (Errcode: %d)"
msgstr ""

#: mysys/errors.c:37
#, c-format
msgid "Can't change size of file (Errcode: %d)"
msgstr ""

#: mysys/errors.c:38
#, c-format
msgid "Can't open stream from handle (Errcode: %d)"
msgstr ""

#: mysys/errors.c:39
#, c-format
msgid "Can't get working dirctory (Errcode: %d)"
msgstr ""

#: mysys/errors.c:40
#, c-format
msgid "Can't change dir to '%s' (Errcode: %d)"
msgstr ""

#: mysys/errors.c:41
#, c-format
msgid "Warning: '%s' had %d links"
msgstr ""

#: mysys/errors.c:42
#, c-format
msgid "Warning: %d files and %d streams is left open\n"
msgstr ""

#: mysys/errors.c:43
#, c-format
msgid "Disk is full writing '%s'. Waiting for someone to free space..."
msgstr ""

#: mysys/errors.c:44
#, c-format
msgid "Can't create directory '%s' (Errcode: %d)"
msgstr ""

#: mysys/errors.c:45
#, c-format
msgid ""
"Character set '%s' is not a compiled character set and is not specified in "
"the %s file"
msgstr ""

#: mysys/errors.c:46
#, c-format
msgid "Out of resources when opening file '%s' (Errcode: %d)"
msgstr ""

#: mysys/errors.c:47
#, c-format
msgid "Can't read value for symlink '%s' (Error %d)"
msgstr ""

#: mysys/errors.c:48
#, c-format
msgid "Can't create symlink '%s' pointing at '%s' (Error %d)"
msgstr ""

#: mysys/errors.c:49
#, c-format
msgid "Error on realpath() on '%s' (Error %d)"
msgstr ""

#: mysys/errors.c:50
#, c-format
msgid "Can't sync file '%s' to disk (Errcode: %d)"
msgstr ""

#: mysys/errors.c:51
#, c-format
msgid ""
"Collation '%s' is not a compiled collation and is not specified in the %s "
"file"
msgstr ""

#: mysys/errors.c:52
#, c-format
msgid "File '%s' not found (Errcode: %d)"
msgstr ""

#: mysys/errors.c:53
#, c-format
msgid "File '%s' (fileno: %d) was not closed"
msgstr ""

#: mysys/my_error.c:86
#, c-format
msgid "Unknown error %d"
msgstr ""

#: mysys/my_getopt.c:1164
#, c-format
msgid "%*s(Defaults to on; use --skip-%s to disable.)\n"
msgstr ""

#: mysys/my_handler_errors.h:10
msgid "Didn't find key on read or update"
msgstr ""

#: mysys/my_handler_errors.h:12
msgid "Duplicate key on write or update"
msgstr ""

#: mysys/my_handler_errors.h:14
msgid "Internal (unspecified) error in handler"
msgstr ""

#: mysys/my_handler_errors.h:16
msgid ""
"Someone has changed the row since it was read (while the table was locked to "
"prevent it)"
msgstr ""

#: mysys/my_handler_errors.h:18
msgid "Wrong index given to function"
msgstr ""

#: mysys/my_handler_errors.h:20
msgid "Undefined handler error 125"
msgstr ""

#: mysys/my_handler_errors.h:22
msgid "Index file is crashed"
msgstr ""

#: mysys/my_handler_errors.h:24
msgid "Record file is crashed"
msgstr ""

#: mysys/my_handler_errors.h:26
msgid "Out of memory in engine"
msgstr ""

#: mysys/my_handler_errors.h:28
msgid "Undefined handler error 129"
msgstr ""

#: mysys/my_handler_errors.h:30
msgid "Incorrect file format"
msgstr ""

#: mysys/my_handler_errors.h:32
msgid "Command not supported by database"
msgstr ""

#: mysys/my_handler_errors.h:34
msgid "Old database file"
msgstr ""

#: mysys/my_handler_errors.h:36
msgid "No record read before update"
msgstr ""

#: mysys/my_handler_errors.h:38
msgid "Record was already deleted (or record file crashed)"
msgstr ""

#: mysys/my_handler_errors.h:40
msgid "No more room in record file"
msgstr ""

#: mysys/my_handler_errors.h:42
msgid "No more room in index file"
msgstr ""

#: mysys/my_handler_errors.h:44
msgid "No more records (read after end of file)"
msgstr ""

#: mysys/my_handler_errors.h:46
msgid "Unsupported extension used for table"
msgstr ""

#: mysys/my_handler_errors.h:48
msgid "Too big row"
msgstr ""

#: mysys/my_handler_errors.h:50
msgid "Wrong create options"
msgstr ""

#: mysys/my_handler_errors.h:52
msgid "Duplicate unique key or constraint on write or update"
msgstr ""

#: mysys/my_handler_errors.h:54
msgid "Unknown character set used in table"
msgstr ""

#: mysys/my_handler_errors.h:56
msgid "Conflicting table definitions in sub-tables of MERGE table"
msgstr ""

#: mysys/my_handler_errors.h:58
msgid "Table is crashed and last repair failed"
msgstr ""

#: mysys/my_handler_errors.h:60
msgid "Table was marked as crashed and should be repaired"
msgstr ""

#: mysys/my_handler_errors.h:62
msgid "Lock timed out; Retry transaction"
msgstr ""

#: mysys/my_handler_errors.h:64
msgid "Lock table is full;  Restart program with a larger locktable"
msgstr ""

#: mysys/my_handler_errors.h:66
msgid "Updates are not allowed under a read only transactions"
msgstr ""

#: mysys/my_handler_errors.h:68
msgid "Lock deadlock; Retry transaction"
msgstr ""

#: mysys/my_handler_errors.h:70
msgid "Foreign key constraint is incorrectly formed"
msgstr ""

#: mysys/my_handler_errors.h:72
msgid "Cannot add a child row"
msgstr ""

#: mysys/my_handler_errors.h:74
msgid "Cannot delete a parent row"
msgstr ""

#: mysys/my_handler_errors.h:76
msgid "No savepoint with that name"
msgstr ""

#: mysys/my_handler_errors.h:78
msgid "Non unique key block size"
msgstr ""

#: mysys/my_handler_errors.h:80
msgid "The table does not exist in engine"
msgstr ""

#: mysys/my_handler_errors.h:82
msgid "The table already existed in storage engine"
msgstr ""

#: mysys/my_handler_errors.h:84
msgid "Could not connect to storage engine"
msgstr ""

#: mysys/my_handler_errors.h:86
msgid "Unexpected null pointer found when using spatial index"
msgstr ""

#: mysys/my_handler_errors.h:88
msgid "The table changed in storage engine"
msgstr ""

#: mysys/my_handler_errors.h:90
msgid "There's no partition in table for the given value"
msgstr ""

#: mysys/my_handler_errors.h:92
msgid "Row-based binlogging of row failed"
msgstr ""

#: mysys/my_handler_errors.h:94
msgid "Index needed in foreign key constraint"
msgstr ""

#: mysys/my_handler_errors.h:96
msgid "Upholding foreign key constraints would lead to a duplicate key error"
msgstr ""

#: mysys/my_handler_errors.h:98
msgid "Table needs to be upgraded before it can be used"
msgstr ""

#: mysys/my_handler_errors.h:100
msgid "Table is read only"
msgstr ""

#: mysys/my_handler_errors.h:102
msgid "Failed to get next auto increment value"
msgstr ""

#: mysys/my_handler_errors.h:104
msgid "Failed to set row auto increment value"
msgstr ""

#: mysys/my_handler_errors.h:106
msgid "Unknown (generic) error from engine"
msgstr ""

#: mysys/my_handler_errors.h:108
msgid "Record is the same"
msgstr ""

#: mysys/my_handler_errors.h:110
msgid "It is not possible to log this statement"
msgstr ""

#: mysys/my_handler_errors.h:112
msgid "Tablespace exists"
msgstr ""

#: mysys/my_handler_errors.h:114
msgid "The event was corrupt, leading to illegal data being read"
msgstr ""

#: mysys/my_handler_errors.h:116
msgid "The table is of a new format not supported by this version"
msgstr ""

#: mysys/my_handler_errors.h:118
msgid "The event could not be processed no other hanlder error happened"
msgstr ""

#: mysys/my_handler_errors.h:120
msgid "Got a fatal error during initialzaction of handler"
msgstr ""

#: mysys/my_handler_errors.h:122
msgid "File to short; Expected more data in file"
msgstr ""

#: mysys/my_handler_errors.h:124
msgid "Read page with wrong checksum"
msgstr ""

#: mysys/my_handler_errors.h:126
msgid "Lock or active transaction"
msgstr ""

#: mysys/my_handler_errors.h:128
msgid "No such table space"
msgstr ""

#: mysys/my_handler_errors.h:130
msgid "Tablespace not empty"
msgstr ""

#: drizzled/rpl_mi.cc:150
#, c-format
msgid "Failed to create a new master info file (file '%s', errno %d)"
msgstr ""

#: drizzled/rpl_mi.cc:156 drizzled/rpl_mi.cc:178
#, c-format
msgid "Failed to create a cache on master info file (file '%s')"
msgstr ""

#: drizzled/rpl_mi.cc:172
#, c-format
msgid "Failed to open the existing master info file (file '%s', errno %d)"
msgstr ""

#: drizzled/rpl_mi.cc:278
#, c-format
msgid ""
"SSL information in the master info file ('%s') are ignored because this "
"MySQL slave was compiled without SSL support."
msgstr ""

#: drizzled/rpl_mi.cc:302 drizzled/slave.cc:1081 drizzled/slave.cc:2153
msgid "Failed to flush master info file"
msgstr ""

#: drizzled/rpl_mi.cc:307
msgid "Error reading master configuration"
msgstr ""

#: drizzled/rpl_reporting.cc:45
#, c-format
msgid "Slave %s: %s%s Error_code: %d"
msgstr ""

#: drizzled/rpl_utility.cc:123
#, c-format
msgid "Column %d type mismatch - received type %d, %s.%s has type %d"
msgstr ""

#: drizzled/rpl_utility.cc:138
#, c-format
msgid ""
"Column %d size mismatch - master has size %d, %s.%s on slave has size %d. "
"Master's column size should be <= the slave's column size."
msgstr ""

#: drizzled/slave.cc:91
msgid "Waiting to reconnect after a failed registration on master"
msgstr ""

#: drizzled/slave.cc:92
msgid ""
"Slave I/O thread killed while waitnig to reconnect after a failed "
"registration on master"
msgstr ""

#: drizzled/slave.cc:94
msgid "Reconnecting after a failed registration on master"
msgstr ""

#: drizzled/slave.cc:95
#, c-format
msgid ""
"failed registering on master, reconnecting to try again, log '%s' at postion "
"%s"
msgstr ""

#: drizzled/slave.cc:98 drizzled/slave.cc:107
msgid "Slave I/O thread killed during or after reconnect"
msgstr ""

#: drizzled/slave.cc:101
msgid "Waiting to reconnect after a failed binlog dump request"
msgstr ""

#: drizzled/slave.cc:102
msgid "Slave I/O thread killed while retrying master dump"
msgstr ""

#: drizzled/slave.cc:103
msgid "Reconnecting after a failed binlog dump request"
msgstr ""

#: drizzled/slave.cc:104
#, c-format
msgid "failed dump request, reconnecting to try again, log '%s' at postion %s"
msgstr ""

#: drizzled/slave.cc:110
msgid "Waiting to reconnect after a failed master event read"
msgstr ""

#: drizzled/slave.cc:111
msgid "Slave I/O thread killed while waiting to reconnect after a failed read"
msgstr ""

#: drizzled/slave.cc:113
msgid "Reconnecting after a failed master event read"
msgstr ""

#: drizzled/slave.cc:114
#, c-format
msgid ""
"Slave I/O thread: Failed reading log event, reconnecting to retry, log '%s' "
"at postion %s"
msgstr ""

#: drizzled/slave.cc:117
msgid ""
"Slave I/O thread killed during or after a reconnect done to recover from "
"failed read"
msgstr ""

#: drizzled/slave.cc:231
msgid "Failed to allocate memory for the master info structure"
msgstr ""

#: drizzled/slave.cc:238 drizzled/slave.cc:1822
msgid "Failed to initialize the master info structure"
msgstr ""

#: drizzled/slave.cc:253
msgid "Failed to create slave threads"
msgstr ""

#: drizzled/slave.cc:450
msgid "Server id not set, will not start slave"
msgstr ""

#: drizzled/slave.cc:618
msgid ""
"SQL thread had to stop in an unsafe situation, in the middle of applying "
"updates to a non-transactional table without any primary key. There is a "
"risk of duplicate updates when the slave SQL thread is restarted. Please "
"check your tables' contents after restart."
msgstr ""

#: drizzled/slave.cc:779 drizzled/slave.cc:794
msgid "Master reported unrecognized DRIZZLE version"
msgstr ""

#: drizzled/slave.cc:835
msgid "default Format_description_log_event"
msgstr ""

#: drizzled/slave.cc:857
#, c-format
msgid ""
"\"SELECT UNIX_TIMESTAMP()\" failed on master, do not trust column "
"Seconds_Behind_Master of SHOW SLAVE STATUS. Error: %s (%d)"
msgstr ""

#: drizzled/slave.cc:884
msgid ""
"The slave I/O thread stops because master and slave have equal DRIZZLE "
"server ids; these ids must be different for replication to work (or the --"
"replicate-same-server-id option must be used on slave but this doesnot "
"always make sense; please check the manual before using it)."
msgstr ""

#: drizzled/slave.cc:929
msgid ""
"The slave I/O thread stops because master and slave have different values "
"for the COLLATION_SERVER global variable. The values must be equal for "
"replication to work"
msgstr ""

#: drizzled/slave.cc:965
msgid ""
"The slave I/O thread stops because master and slave have different values "
"for the TIME_ZONE global variable. The values must be equal for replication "
"to work"
msgstr ""

#: drizzled/slave.cc:1030
msgid "Waiting for the slave SQL thread to free enough relay log space"
msgstr ""

#: drizzled/slave.cc:1076
msgid ""
"failed to write a Rotate event to the relay log, SHOW SLAVE STATUS may be "
"inaccurate"
msgstr ""

#: drizzled/slave.cc:1087
msgid "Rotate_event (out of memory?), SHOW SLAVE STATUS may be inaccurate"
msgstr ""

#: drizzled/slave.cc:1478
#, c-format
msgid "Error on COM_BINLOG_DUMP: %d  %s, will retry in %d secs"
msgstr ""

#: drizzled/slave.cc:1531
#, c-format
msgid "Error reading packet from server: %s ( server_errno=%d)"
msgstr ""

#: drizzled/slave.cc:1539
#, c-format
msgid "Slave: received end packet from server, apparent master shutdown: %s"
msgstr ""

#: drizzled/slave.cc:1693
#, c-format
msgid ""
"It was not possible to update the positions of the relay log information: "
"the slave may be in an inconsistent state. Stopped in %s position %s"
msgstr ""

#: drizzled/slave.cc:1768 drizzled/slave.cc:2368
#, c-format
msgid "Slave SQL thread stopped because it reached its UNTIL position %s"
msgstr ""

#: drizzled/slave.cc:1827 drizzled/slave.cc:2317
#, c-format
msgid "Error initializing relay log position: %s"
msgstr ""

#: drizzled/slave.cc:1843
#, c-format
msgid ""
"Slave SQL thread retried transaction %lu time(s) in vain, giving up. "
"Consider raising the value of the slave_transaction_retries variable."
msgstr ""

#: drizzled/slave.cc:1866
msgid ""
"Could not parse relay log event entry. The possible reasons are: the "
"master's binary log is corrupted (you can check this by running "
"'mysqlbinlog' on the binary log), the slave's relay log is corrupted (you "
"can check this by running 'mysqlbinlog' on the relay log), a network "
"problem, or a bug in the master's or slave's DRIZZLE code. If you want to "
"check the master's binary log or slave's relay log, you will be able to know "
"their names by issuing 'SHOW SLAVE STATUS' on this slave."
msgstr ""

#: drizzled/slave.cc:1990
msgid "Failed during slave I/O thread initialization"
msgstr ""

#: drizzled/slave.cc:2004
msgid "error in drizzle_create()"
msgstr ""

#: drizzled/slave.cc:2012
#, c-format
msgid ""
"Slave I/O thread: connected to master '%s@%s:%d',replication started in log "
"'%s' at position %s"
msgstr ""

#: drizzled/slave.cc:2026
msgid "Slave I/O thread killed while connecting to master"
msgstr ""

#: drizzled/slave.cc:2050
msgid "Slave I/O thread couldn't register on master"
msgstr ""

#: drizzled/slave.cc:2062 drizzled/slave.cc:2086 drizzled/slave.cc:2110
msgid "Forcing to reconnect slave I/O thread"
msgstr ""

#: drizzled/slave.cc:2075
msgid "Failed on request_dump()"
msgstr ""

#: drizzled/slave.cc:2076
msgid "Slave I/O thread killed while requesting master dump"
msgstr ""

#: drizzled/slave.cc:2102
msgid "Waiting for master to send event"
msgstr ""

#: drizzled/slave.cc:2104
msgid "Slave I/O thread killed while reading event"
msgstr ""

#: drizzled/slave.cc:2122
#, c-format
msgid ""
"Log entry on master is longer than max_allowed_packet (%ld) on slave. If the "
"entry is correct, restart the server with a higher value of "
"max_allowed_packet"
msgstr ""

#: drizzled/slave.cc:2136
msgid "Stopping slave I/O thread due to out-of-memory error from master"
msgstr ""

#: drizzled/slave.cc:2146
msgid "Queueing master event to the relay log"
msgstr ""

#: drizzled/slave.cc:2173
msgid "Slave I/O thread aborted while waiting for relay log space"
msgstr ""

#: drizzled/slave.cc:2183
#, c-format
msgid "Slave I/O thread exiting, read up to log '%s', position %s"
msgstr ""

#: drizzled/slave.cc:2207
msgid "Waiting for slave mutex on exit"
msgstr ""

#: drizzled/slave.cc:2273
msgid "Failed during slave thread initialization"
msgstr ""

#: drizzled/slave.cc:2339
#, c-format
msgid ""
"Slave SQL thread initialized, starting replication in log '%s' at position %"
"s, relay log '%s' position: %s"
msgstr ""

#: drizzled/slave.cc:2353
msgid "Slave SQL thread aborted. Can't execute init_slave query"
msgstr ""

#: drizzled/slave.cc:2379
msgid "Reading event from the relay log"
msgstr ""

#: drizzled/slave.cc:2404
#, c-format
msgid "Slave (additional info): %s Error_code: %d"
msgstr ""

#: drizzled/slave.cc:2421
#, c-format
msgid "Slave: %s Error_code: %d"
msgstr ""

#: drizzled/slave.cc:2424
#, c-format
msgid ""
"Error loading user-defined library, slave SQL thread aborted. Install the "
"missing library, and restart the slave SQL thread with \"SLAVE START\". We "
"stopped at log '%s' position %s"
msgstr ""

#: drizzled/slave.cc:2432
#, c-format
msgid ""
"Error running query, slave SQL thread aborted. Fix the problem, and restart "
"the slave SQL thread with \"SLAVE START\". We stopped at log '%s' position %s"
msgstr ""

#: drizzled/slave.cc:2444
#, c-format
msgid ""
"Slave SQL thread exiting, replication stopped in log '%s' at position %s"
msgstr ""

#: drizzled/slave.cc:2540
#, c-format
msgid "Slave I/O: failed requesting download of '%s'"
msgstr ""

#: drizzled/slave.cc:2557
#, c-format
msgid "Network read error downloading '%s' from master"
msgstr ""

#: drizzled/slave.cc:2579
msgid "error writing Exec_load event to relay log"
msgstr ""

#: drizzled/slave.cc:2593
msgid "error writing Create_file event to relay log"
msgstr ""

#: drizzled/slave.cc:2608
msgid "error writing Append_block event to relay log"
msgstr ""

#: drizzled/slave.cc:2704
msgid "Memory allocation failed"
msgstr ""

#: drizzled/slave.cc:2729 drizzled/slave.cc:2815
#, c-format
msgid ""
"Read invalid event from master: '%s', master could be corrupt but a more "
"likely cause of this is a bug"
msgstr ""

#: drizzled/slave.cc:3088
msgid "could not queue event from master"
msgstr ""

#: drizzled/slave.cc:3182
#, c-format
msgid "error %s to master '%s@%s:%d' - retry-time: %d  retries: %u"
msgstr ""

#: drizzled/slave.cc:3184
msgid "reconnecting"
msgstr ""

#: drizzled/slave.cc:3184
msgid "connecting"
msgstr ""

#: drizzled/slave.cc:3210
#, c-format
msgid ""
"Slave: connected to master '%s@%s:%d', replication resumed in log '%s' at "
"position %s"
msgstr ""

#: drizzled/slave.cc:3600
#, c-format
msgid "next log '%s' is currently active"
msgstr ""

#: drizzled/slave.cc:3630
#, c-format
msgid "next log '%s' is not active"
msgstr ""

#: drizzled/slave.cc:3646
#, c-format
msgid ""
"Slave SQL thread: I/O error reading event(errno: %d  cur_log->error: %d)"
msgstr ""

#: drizzled/slave.cc:3652
msgid "Aborting slave SQL thread because of partial event read"
msgstr ""

#: drizzled/slave.cc:3658 drizzled/slave.cc:3665
#, c-format
msgid "Error reading relay log event: %s"
msgstr ""

#: drizzled/slave.cc:3659
msgid "slave SQL thread was killed"
msgstr ""

#: drizzled/slave.cc:3757
#, c-format
msgid ""
"master may suffer from http://bugs.mysql.com/bug.php?id=%u so slave stops; "
"check error log on slave for more info"
msgstr ""

#: drizzled/slave.cc:3763
#, c-format
msgid ""
"According to the master's version ('%s'), it is probable that master suffers "
"from this bug: http://bugs.mysql.com/bug.php?id=%u and thus replicating the "
"current binary log event may make the slave's data become different from the "
"master's data. To take no risk, slave refuses to replicate this event and "
"stops. We recommend that all updates be stopped on the master and slave, "
"that the data of both be manually synchronized, that master's binary logs be "
"deleted, that master be upgraded to a version at least equal to '%d.%d.%d'. "
"Then replication can be restarted."
msgstr ""

#: drizzled/sql_repl.cc:102
msgid "Failed in send_file() while reading file name"
msgstr ""

#: drizzled/sql_repl.cc:115
msgid "Failed in send_file() on open of file"
msgstr ""

#: drizzled/sql_repl.cc:123
msgid "Failed in send_file() while writing data to client"
msgstr ""

#: drizzled/sql_repl.cc:132
msgid "Failed in send_file() while negotiating file transfer close"
msgstr ""

#: drizzled/table.cc:546
#, c-format
msgid ""
"'%s' had no or invalid character set, and default character set is multi-"
"byte, so character column sizes may have changed"
msgstr ""

#: drizzled/table.cc:983 drizzled/table.cc:989
#, c-format
msgid ""
"Found incompatible DECIMAL field '%s' in %s; Please do \"ALTER TABLE '%s' "
"FORCE\" to fix it!"
msgstr ""

#: drizzled/table.cc:1161
#, c-format
msgid ""
"Found wrong key definition in %s; Please do \"ALTER TABLE '%s' FORCE \" to "
"fix it!"
msgstr ""

#: drizzled/table.cc:1167
#, c-format
msgid ""
"Found wrong key definition in %s; Please do \"ALTER TABLE '%s' FORCE\" to "
"fix it!"
msgstr ""

#: drizzled/table.cc:1810
#, c-format
msgid "Unknown collation '%s' in table '%-.64s' definition"
msgstr ""

#: drizzled/table.cc:1817
#, c-format
msgid ""
"Table '%-.64s' was created with a different version of MySQL and cannot be "
"read"
msgstr ""

#: drizzled/table.cc:2406
#, c-format
msgid ""
"Incorrect definition of table %s.%s: expected column '%s' at position %d, "
"found '%s'."
msgstr ""

#: drizzled/table.cc:2432
#, c-format
msgid ""
"Incorrect definition of table %s.%s: expected column '%s' at position %d to "
"have type %s, found type %s."
msgstr ""

#: drizzled/table.cc:2441
#, c-format
msgid ""
"Incorrect definition of table %s.%s: expected the type of column '%s' at "
"position %d to have character set '%s' but the type has no character set."
msgstr ""

#: drizzled/table.cc:2451
#, c-format
msgid ""
"Incorrect definition of table %s.%s: expected the type of column '%s' at "
"position %d to have character set '%s' but found character set '%s'."
msgstr ""

#: drizzled/table.cc:2462
#, c-format
msgid ""
"Incorrect definition of table %s.%s: expected column '%s' at position %d to "
"have type %s  but the column is not found."
msgstr ""

#: drizzled/tztime.cc:1066
#, c-format
msgid "Fatal error: Illegal or unknown default time zone '%s'"
msgstr ""

#: drizzled/unireg.h:45
msgid "Invalid error code"
msgstr ""