~ubuntu-branches/ubuntu/saucy/drizzle/saucy-proposed

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
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
# Polish translation for drizzle
# Copyright (c) 2008 Rosetta Contributors and Canonical Ltd 2008
# This file is distributed under the same license as the drizzle package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2008.
#
msgid ""
msgstr ""
"Project-Id-Version: drizzle\n"
"Report-Msgid-Bugs-To: http://translations.launchpad.net/drizzle\n"
"POT-Creation-Date: 2009-09-29 17:09-0700\n"
"PO-Revision-Date: 2009-12-25 06:16+0000\n"
"Last-Translator: dap <Unknown>\n"
"Language-Team: Polish <pl@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
"|| n%100>=20) ? 1 : 2;\n"
"X-Launchpad-Export-Date: 2010-03-12 17:32+0000\n"
"X-Generator: Launchpad (build Unknown)\n"

msgid "Synonym for `help'."
msgstr "Synonim dla 'pomoc'"

msgid "Clear command."
msgstr "Komenda czyszczenia."

msgid "Reconnect to the server. Optional arguments are db and host."
msgstr "Połącz z serwerem. Opcjonalnymi argumentami są baza i host."

msgid ""
"Set statement delimiter. NOTE: Takes the rest of the line as new delimiter."
msgstr ""
"Ustaw separator instrukcji. PRZYPIS: Pobiera resztę linii jako nowy "
"separator."

msgid "Send command to drizzle server, display result vertically."
msgstr "Wysyła polecenie do serwera drizzle, wyświetla wyniki pionowo."

msgid "Exit drizzle. Same as quit."
msgstr "Wyjście z drizzle. To samo co \"quit\"."

msgid "Send command to drizzle server."
msgstr "Wyślij polecenie do serwera drizzle."

msgid "Display this help."
msgstr "Wyświetla ten ekran pomocy."

msgid "Disable pager, print to stdout."
msgstr "Wyłącz pager, drukuj na standardowe wyjście"

msgid "Don't write into outfile."
msgstr "Nie zapisuj wyjścia do pliku."

msgid "Set PAGER [to_pager]. Print the query results via PAGER."
msgstr "Ustawienie PAGER [to_pager]. Drukuje wynik zapytania przez  PAGER"

msgid "Print current command."
msgstr ""
"Wyświetl bieżącą komendę\r\n"
"Pokaż bieżącą komendę"

msgid "Change your drizzle prompt."
msgstr "Zmienia znak zachęty."

msgid "Quit drizzle."
msgstr "Wyjdz z drizzle."

msgid "Rebuild completion hash."
msgstr "Przebuduj tablicę podpowiedzi."

msgid "Execute an SQL script file. Takes a file name as an argument."
msgstr "Wykonaj plik skryptu SQL. Pobiera nazwę pliku jako argument."

msgid "Get status information from the server."
msgstr "Pobierz status z serwera"

msgid "Set outfile [to_outfile]. Append everything into given outfile."
msgstr ""
"Ustaw plik wyjściowy [to_outfile]. Dopisuj wszystko do danego pliku "
"wyjściowego"

msgid "Use another database. Takes database name as argument."
msgstr "Wybiera aktualną bazę. Pobiera jej nazwę jako argument."

msgid "Show warnings after every statement."
msgstr "Pokazuj ostrzeżenie po każdej deklaracji."

msgid "Don't show warnings after every statement."
msgstr "Nie pokazuj ostrzeżeń po każdej deklaracji."

#, c-format
msgid "Memory allocation error while constructing initial prompt. Aborting.\n"
msgstr ""
"Błąd alokacji pamięci w momencie tworzenia wstępnego znaku zachęty. Trwa "
"anulowanie\n"

msgid "Welcome to the Drizzle client..  Commands end with ; or \\g."
msgstr "Witaj w kliencie Drizzle. Komendy kończą się ; lub \\g."

#, c-format
msgid ""
"Your Drizzle connection id is %u\n"
"Server version: %s\n"
msgstr ""
"Twój identyfikator połączenia Drizzle to %u\n"
"Wersja serwera: %s\n"

#, c-format
msgid "Reading history-file %s\n"
msgstr "Odczytywanie pliku historii %s\n"

#, c-format
msgid "Couldn't allocate memory for temp histfile!\n"
msgstr "Nieudana próba alokacji pamięci dla pliku tymczasowego historii!\n"

msgid "Type 'help;' or '\\h' for help. Type '\\c' to clear the buffer.\n"
msgstr ""
"Wpisz \"help;\" lub \"/h\" aby uzyskać pomoc. Wpisz \"\\c\" aby wyczyścić "
"bufor.\n"

#, c-format
msgid "Writing history-file %s\n"
msgstr "Zapisywanie pliku hisotrii. %s\n"

msgid "Aborted"
msgstr "Anulowany"

msgid "Bye"
msgstr "Do zobaczenia"

msgid "Query aborted by Ctrl+C\n"
msgstr "Zapytanie przerwane przy użyciu Ctrl+C\n"

msgid "Display this help and exit."
msgstr "Wyświetl ten ekran pomocy i zakończ."

msgid "Synonym for -?"
msgstr "Synonim dla -?"

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 ""
"Włącz automatyczne rehashowanie. Nie trzeba używać 'rehashowania' aby "
"ukończyć pobieranie tabeli i pola, jednak w takim przypadku uruchamianie i "
"ponowne łączenie może trwać dłużej. Wyłącz używając komendy: --disable-auto-"
"rehash."

msgid ""
"No automatic rehashing. One has to use 'rehash' to get table and field "
"completion. This gives a quicker start of drizzle_st and disables rehashing "
"on reconnect. WARNING: options deprecated; use --disable-auto-rehash instead."
msgstr ""
"Brak autorehashu. Należy użyć 'rehashowania' by ukończyć pobieranie tabeli i "
"pola. Skutkuje to szybszym startem drizzle_st oraz wyłączeniem i powtórnym "
"połączeniem. OSTRZEŻENIE: Opcja zdepresjonowana. Zamiast niej użyj --disable-"
"auto-rehash ."

msgid ""
"Automatically switch to vertical output mode if the result is wider than the "
"terminal width."
msgstr ""
"Automatycznie przełącz do trybu pionowego wyświetlania wyników, jeśli "
"rezultat jest szerszy niż terminal."

msgid ""
"Don't use history file. Disable interactive behavior. (Enables --silent)"
msgstr ""
"Nie używaj pliku historii. Wyłącz interakcyjne zachowanie. (Włącza --silent)"

msgid "Display column type information."
msgstr "Wyświetlaj informację o typie kolumny."

msgid ""
"Preserve comments. Send comments to the server. The default is --skip-"
"comments (discard comments), enable with --comments"
msgstr ""
"Zachowuje komentarze. Wysyła komentarze do serwera. Domyślnie  --skip-"
"comments (odrzucaj komentarze), włączanie komendą --comments"

msgid "Use compression in server/client protocol."
msgstr "Użyj kompresji w protokole serwer/klient."

msgid "Database to use."
msgstr "Baza danych do użycia"

msgid "(not used)"
msgstr "(nie używane)"

msgid "Delimiter to be used."
msgstr "Separator, który ma być używany."

msgid "Execute command and quit. (Disables --force and history file)"
msgstr "Wykonaj polecenie i wyjdź. (Wyłączenie --force oraz pliku historii)"

msgid "Print the output of a query (rows) vertically."
msgstr "Wydrukuj wyniki zapytania (wierszy) pionowo."

msgid "Continue even if we get an sql error."
msgstr "Kontynuuj nawet w przypadku otrzymania błędu sql."

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 ""
"Włącz nazywanie komend. Nazywanie komend dotyczy poleceń wewnętrznych; "
"zobacz w drizzle>pomoc. Jeżeli funkcja jest włączona, nazwa może być użyta w "
"każdej linii w zapytaniu, z wyłączeniem pierwszej, przed jej wprowadzeniem. "
"Wyłączenie za pomocą --disable-named-commands. Opcja domyślnie jest "
"wyłączona."

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 ""
"Nazywanie komend jest wyłączone. Użyj tylko takiego komentarza \"\\*\" albo "
"tylko nazywania komend na początku linii kończących się średnikiem (;). "
"Począwszy od wersji 10.9 opcja ta jest domyślnie WŁĄCZANA!. Wyłączenie z "
"przełącznikiem '-G' Długi format komendy nadal pracuje od pierwszej linii. "
"OSTRZEŹENIE: Opcja zdepresjonowana. Zamiast niej uźyj  --disable-named-"
"commands."

msgid "Ignore space after function names."
msgstr "Ignoruj spacje po nazwach funkcji."

msgid "Enable/disable LOAD DATA LOCAL INFILE."
msgstr "Włącz/wyłącz LOAD DATA LOCAL INFILE."

msgid "Turn off beep on error."
msgstr "Wyłącz krótki sygnał przy wystąpieniu błędu."

msgid "Connect to host."
msgstr "Połącz z hostem."

msgid "Write line numbers for errors."
msgstr "Wypisuj numery linii dla błędów."

msgid ""
"Don't write line number for errors. WARNING: -L is deprecated, use long "
"version of this option instead."
msgstr ""
"Nie wypisuj numerów linii dla błędów. OSTRZERZENIE: -L jest przestarzałe, "
"zamiast tego używaj długiej wersji opcji."

msgid "Flush buffer after each query."
msgstr "Oczyść bufor po każdym zapytaniu."

msgid "Write column names in results."
msgstr "Wypisz nazwy kolumn w wynikach."

msgid ""
"Don't write column names in results. WARNING: -N is deprecated, use long "
"version of this options instead."
msgstr ""
"Nie wypisuj nazw kolumn w wynikach. OSTRZERZENIE: -N jest przestarzałe, "
"zamiast tego używaj długiej wersji tej opcji."

msgid ""
"Change the value of a variable. Please note that this option is deprecated; "
"you can set variables directly with --variable-name=value."
msgstr ""
"Zmień wartość zmiennej. Proszę zauważ, że ta opcja jest przestarzała; możesz "
"ustawić zmienną bezpośrednio korzystając z: --variable-name=value."

msgid "Ignore SIGINT (CTRL-C)"
msgstr "Ignoruj SIGINT (CTRL-C)"

msgid ""
"Only update the default database. This is useful for skipping updates to "
"other database in the update log."
msgstr ""
"Uaktulaniaj tylko domyślną bazę danych. Opcja przydatna dla ominięcia "
"uaktualnień dla innych baz danych w logu uaktualnień."

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 ""
"Użycie pagera do wyświetlania wyników. Jeśli nie wskażesz w opcji domyślny "
"pager zostanie pobrany z Twojej zmiennej PAGER w ENV. Poprawnymi pagerami są "
"mniej, więcej, cat [> nazwapliku], etc. Zobacz także w pomocy (\\h).\r\n"
"Opcja nie działa w trybie wsadowym. Wyłączenie przez: --disable-pager. Opcja "
"domyślnie wyłączona."

msgid ""
"Disable pager and print to stdout. See interactive help (\\h) also. WARNING: "
"option deprecated; use --disable-pager instead."
msgstr ""
"Wyłącz pagera i drukuj do stdout. Zobacz także w pomocy (\\h). OSTRZEŻENIE: "
"opcja jest przestarzała; zamiast niej używaj --disable-pager"

msgid ""
"Password to use when connecting to server. If password is not given it's "
"asked from the tty."
msgstr ""
"Hasło do połączenia z serwerem. Jeśli hasło nie jest podane zostanie pobrane "
"z tty."

msgid ""
"Port number to use for connection or 0 for default to, in order of "
"preference, drizzle.cnf, $DRIZZLE_TCP_PORT, "
msgstr ""
"Numer portu użytego do połączenia lub 0 jako domyślne, według ustawień w "
"drizzle.cnf, $DRIZZLE_TCP_PORT "

msgid "built-in default"
msgstr "domyślnie wbudowany"

msgid "Set the drizzle prompt to this value."
msgstr "Ustaw tą wartość jako podpowiedź drizzle."

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 ""
"Nie zapisuj wyników do pamięci podręcznej, drukuj wiersz po wierszu. Może "
"spowolnić serwer, jeśli wyjście jest zawieszone. Nie używa pliku historii."

msgid "Write fields without conversion. Used with --batch."
msgstr "Wypisuj pola bez konwersji. Używane z --batch."

msgid ""
"Reconnect if the connection is lost. Disable with --disable-reconnect. This "
"option is enabled by default."
msgstr ""
"Połącz ponownie w przypadku utraty połączenia. Wyłącz używając --disable-"
"reconnect. Opcja domyślnie włączona."

msgid "Shutdown the server."
msgstr "Wyłącz serwer (shutdown)"

msgid ""
"Be more silent. Print results with a tab as separator, each row on new line."
msgstr ""
"Tryb cichszcy. Drukuje wyniki używając tabulatora jako seperatora, każdy "
"wiersz w nowej linii."

msgid "Output in table format."
msgstr "Wynik w formie tabeli."

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 ""
"Dodawaj wszystko do pliku wyjściowego. Zobacz także w pomoc interaktywną "
"(\\h). Nie działa w trybie wsadowym. Wyłącz z --disable-tee. Opcja wyłączona "
"domyślnie."

msgid ""
"Disable outfile. See interactive help (\\h) also. WARNING: option "
"deprecated; use --disable-tee instead"
msgstr ""
"Wyłącz plik wyjścia. Zobacz także pomoc interaktywną (\\h). OSTRZEŻENIE: "
"opcja przestarzała, zamiast tego używaj --disable-tee."

msgid "User for login if not current user."
msgstr "Użytkownik do logowania jeśli nie jest aktualnym użytkownikiem."

msgid "Only allow UPDATE and DELETE that uses keys."
msgstr "Zezwalaj używanie kluczy tylko dla UPDATE i DELETE."

msgid "Synonym for option --safe-updates, -U."
msgstr "Synonim dla opcji  --safe-updates, -U."

msgid "Write more. (-v -v -v gives the table output format)."
msgstr "Wypisz więcej. (-v -v -v daje wynik w formie tabeli)."

msgid "Output version information and exit."
msgstr "Wypisz informacje o wersji i wyjdź."

msgid "Wait and retry if connection is down."
msgstr "Poczekaj i ponów jeśli rozłączony."

msgid "Number of seconds before connection timeout."
msgstr "Liczba sekund limitu czasu odpowiedzi."

msgid "Max length of input line"
msgstr "Maksymalna długość dla lini wychodzącej"

msgid "Automatic limit for SELECT when using --safe-updates"
msgstr "Automatyczny limit dla SELECT podczas używania --safe-updates"

msgid "Automatic limit for rows in a join when using --safe-updates"
msgstr "Automatyczny limit dla wierszy w join podczas używania --safe-updates"

msgid "Refuse client connecting to server if it uses old (pre-4.1.1) protocol"
msgstr ""
"Odmów klientowi połączenia z serwerem jeśli używa starego (przed-4.1.1) "
"protokołu."

msgid "Number of lines before each import progress report."
msgstr "Liczby lini przed każdym procesem inportowania raportu."

msgid "Ping the server to check if it's alive."
msgstr "Pinguj server, aby sprawdzić czy jest dostępny."

msgid "Use MySQL Protocol."
msgstr ""

#, c-format
msgid "%s  Ver %s Distrib %s, for %s-%s (%s) using %s %s\n"
msgstr ""

#, c-format
msgid ""
"Copyright (C) 2008 Sun Microsystems\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 ""
"Prawa Autorskie (C) 2008 Sun Microsystems\n"
"Te oprogramowanie jest udostępniane, bez GWARANCJI. To jest darmowe "
"oprogramowanie,\n"
"możesz modyfikować i udostępniać według licencji GPL\n"

#, c-format
msgid "Usage: %s [OPTIONS] [database]\n"
msgstr "Użycie: %s [OPCJE] [baza danych]\n"

msgid "DELIMITER cannot contain a backslash character"
msgstr "SEPARATOR nie może zawierać znaku backslash"

#, c-format
msgid "WARNING: option deprecated; use --disable-tee instead.\n"
msgstr "OSTRZEŻENIE: opcja przestarzała; zamiast niej użyj: --disable-tee\n"

#, c-format
msgid "WARNING: option deprecated; use --disable-pager instead.\n"
msgstr "OSTRZEŻENIE: opcja przestarzała; zamiast niej użyj: --disable-pager\n"

#, c-format
msgid "WARNING: --server-arg option not supported in this configuration.\n"
msgstr ""
"OSTRZEŻENIE: w tej konfiguracji opcja --server-arg nie jest wspierana.\n"

msgid ""
"Non-integer value supplied for port.  If you are trying to enter a password "
"please use --password instead."
msgstr ""
"Dostarczono do portu wartość nie będącą liczbą całkowitą. Jeżeli próbujesz "
"użyć hasła, użyj --password"

msgid "Value supplied for port is not valid."
msgstr "Nieważna wartość dostarczona do portu."

#, c-format
msgid "Processing line: %<PRIu32>\n"
msgstr "Linia procesu: %<PRIu32>\n"

msgid "Unknown command: "
msgstr "Nieznane polecenie: "

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 ""
"Wczytywanie informacji o tabeli w celu uzupełnienia nazw tabeli i kolumn\n"
"    Możesz to wyłączyć aby przyśpieszyć uruchamianie używając: -A\n"
"\n"

msgid "No connection. Trying to reconnect..."
msgstr "Brak połączenia. Próba ponownego połączenia."

msgid "Can't connect to the server\n"
msgstr "Nie mogę połączyć się z serwerem.\n"

msgid "List of all Drizzle commands:"
msgstr "Lista komend Drizzle:"

msgid "Note that all text commands must be first on line and end with ';'"
msgstr ""
"Zwróć uwagę, że wszystkie komendy tekstowe muszą być pierwsze w lini i "
"kończyć się znakiem ';'"

msgid "No query specified\n"
msgstr "Nie podano zapytania\n"

msgid "Ignoring query to other database"
msgstr "Zignorowano zapytanie do innej bazy danych"

msgid "Empty set"
msgstr "Zbiór pusty"

#, c-format
msgid "%ld row in set"
msgid_plural "%ld rows in set"
msgstr[0] "%ld wiersz w zbiorze"
msgstr[1] "%ld wierszy w zbiorze"
msgstr[2] "%ld wierszy w zbiorze"

msgid "Query OK"
msgstr "Zapytanie poprawne"

#, c-format
msgid "Query OK, %ld row affected"
msgid_plural "Query OK, %ld rows affected"
msgstr[0] "Zapytanie poprawne, zmieniony wiersz: %ld"
msgstr[1] "Zapytanie poprawne, zmienionych wierszy: %ld"
msgstr[2] "Zapytanie poprawne, zmienionych wierszy: %ld"

msgid "Number of rows before each output progress report (requires --verbose)."
msgstr ""
"Numeracja wierszy sprawdzana przed każdym przekazaniem do wyjścia (wymaga --"
"verbose)."

#, c-format
msgid "Got errno %d on write"
msgstr "Przejdź do błędu nr. %d do zapisu"

#, c-format
msgid "%s  Drizzle %s libdrizzle %s, for %s-%s (%s)\n"
msgstr ""

#, c-format
msgid "Usage: %s [OPTIONS] database [tables]\n"
msgstr "użycie: %s [OPCJE] baza danych [tabele]\n"

#, c-format
msgid "OR     %s [OPTIONS] --databases [OPTIONS] DB1 [DB2 DB3...]\n"
msgstr "lub  %s [OPCJE]  --bazy_danych [opcje] baza1 [baza2 baza3...]\n"

#, c-format
msgid "OR     %s [OPTIONS] --all-databases [OPTIONS]\n"
msgstr "lub %s [opcje] --all-databases [opcje]\n"

msgid ""
"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 ""
"To oprogramowanie jest dostarczane ABSOLUTNIE BEZ GWARANCJI, to jest. To "
"jest darmowe oprogramowanie,\n"
"zachęcamy do modyfikacji i rozprowadzania zgodnie z licencją GPL.\n"

msgid "Dumps definitions and data from a Drizzle database server"
msgstr ""

#, c-format
msgid "For more options, use %s --help\n"
msgstr "Aby uzyskać więcej opcji, użyj %s --help\n"

#, c-format
msgid ""
"Non-integer value supplied for port.  If you are trying to enter a password "
"please use --password instead.\n"
msgstr ""
"Zmienna nie będąca liczbą typu integer została dostarczona do portu. Jeżeli "
"próbujesz wpisać hasło, użyj --password\n"

#, c-format
msgid "Value supplied for port is not valid.\n"
msgstr "Błędny numer portu.\n"

#, c-format
msgid "Memory allocation error while copying password. Aborting.\n"
msgstr "Błąd alokacji pamięci podczas kopiowania hasła. Przerwano\n"

#, c-format
msgid "Input filename too long: %s"
msgstr "Wprowadzona nazwa pliku jest za długa: %s"

#, c-format
msgid "Illegal use of option --ignore-table=<database>.<table>\n"
msgstr "Nielegalne użycie opcji --ignore-table=<database>.<table>\n"

#, c-format
msgid "Invalid mode to --compatible: %s\n"
msgstr "Nieprawidłowy tryb --compatible: %s\n"

#, c-format
msgid "%s: You must use option --tab with --fields-...\n"
msgstr "%s: Musisz użyć opcji --tab z --fields-...\n"

#, c-format
msgid ""
"%s: You can't use --single-transaction and --lock-all-tables at the same "
"time.\n"
msgstr ""
"%s: Nie możesz użyć --single-transaction i --lock-all-tables równocześnie.\n"

#, c-format
msgid ""
"%s: You can't use ..enclosed.. and ..optionally-enclosed.. at the same "
"time.\n"
msgstr ""
"%s: Nie możesz użyć ..enclosed.. i ..optionally-enclosed.. równocześnie.\n"

#, c-format
msgid "%s: --databases or --all-databases can't be used with --tab.\n"
msgstr "%s: --databases lub --all-databases nie może być użyte z --tab.\n"

#, c-format
msgid "Got error: %s (%d) %s"
msgstr "Błąd: %s (%d) %s"

#, c-format
msgid "Got error: %d %s"
msgstr "Błąd: %d %s"

#, c-format
msgid "Couldn't execute '%s': %s (%d)"
msgstr "Nie mogę wykonać '%s': %s (%d)"

#, c-format
msgid "-- Connecting to %s...\n"
msgstr "-- Łączenie z %s...\n"

#, c-format
msgid "-- Disconnecting from %s...\n"
msgstr "-- Rozłączanie z %s...\n"

msgid "Couldn't allocate memory"
msgstr "Nie można przydzielić pamięci"

#, c-format
msgid ""
"-- Warning: Unable to use delayed inserts for table '%s' because it's of "
"type %s\n"
msgstr ""

#, c-format
msgid "-- Retrieving table structure for table %s...\n"
msgstr "-- Pobieranie struktury dla tabeli %s...\n"

#, c-format
msgid "%s: Warning: Can't set SQL_QUOTE_SHOW_CREATE option (%s)\n"
msgstr ""

#, c-format
msgid "%s: Can't get keys for table %s\n"
msgstr "%s: Nie można pobrać kluczy dla tabeli %s\n"

#, c-format
msgid "Error: Couldn't read status information for table %s\n"
msgstr "Błąd: Brak informacji dla tabeli %s\n"

#, c-format
msgid "Error retrieving table structure for table: \"%s\""
msgstr "Błąd w czasie pobieranie struktury tabeli: '%s'"

#, c-format
msgid "-- Skipping dump data for table '%s', --no-data was used\n"
msgstr ""

#, c-format
msgid "-- Warning: Skipping data for table '%s' because it's of type %s\n"
msgstr ""

#, c-format
msgid "-- Skipping dump data for table '%s', it has no fields\n"
msgstr ""

msgid "-- Sending SELECT query...\n"
msgstr ""

msgid "when executing 'SELECT INTO OUTFILE'"
msgstr ""

#, c-format
msgid ""
"\n"
"--\n"
"-- Dumping data for table %s\n"
"--\n"
msgstr ""

msgid "-- Retrieving rows...\n"
msgstr ""

#, c-format
msgid "%s: Error in field count for table: %s !  Aborting.\n"
msgstr ""

#, c-format
msgid "%s: Error reading rows for table: %s (%d:%s) ! Aborting.\n"
msgstr ""

#, c-format
msgid "-- %<PRIu32> of ~%<PRIu64> rows dumped for table %s\n"
msgstr ""

#, c-format
msgid "Not enough fields from table %s! Aborting.\n"
msgstr ""

msgid "when doing refresh"
msgstr ""

msgid "alloc_root failure."
msgstr ""

#, c-format
msgid "Couldn't find table: \"%s\""
msgstr "Nie można znaleźć tabeli: \"%s\""

#, c-format
msgid ""
"Warning: Couldn't read keys from table %s; records are NOT sorted (%s)\n"
msgstr ""

#, c-format
msgid "Error: Not enough memory to store ORDER BY clause\n"
msgstr ""

#, c-format
msgid "Got signal %d from thread %<PRIu64>"
msgstr ""

msgid "Aborting\n"
msgstr ""

msgid "One can only use the --user switch if running as root\n"
msgstr ""

msgid ""
"Fatal error: Please read \"Security\" section of the manual to find out how "
"to run drizzled as root!\n"
msgstr ""
"Błąd krytyczny: Proszę przeczytać sekcję \"Bezpieczeństwo\" w instrukcji, "
"aby dowiedzieć się jak uruchomić drizzled w trybie administratora!\n"

#, c-format
msgid ""
"Fatal error: Can't change to run as user '%s' ;  Please check that the user "
"exists!\n"
msgstr ""

#, c-format
msgid "Fatal signal %d while backtracing\n"
msgstr ""

#, c-format
msgid ""
"We will try our best to scrape up some info that will hopefully help "
"diagnose\n"
"the problem, but since we have already crashed, something is definitely "
"wrong\n"
"and this may fail.\n"
"\n"
msgstr ""

#, c-format
msgid ""
"It is possible that drizzled could use up to \n"
"key_buffer_size + (read_buffer_size + sort_buffer_size)*thread_count\n"
"bytes of memory\n"
"Hope that's ok; if not, decrease some variables in the equation.\n"
"\n"
msgstr ""

#, c-format
msgid ""
"Attempting backtrace. You can use the following information to find out\n"
"where drizzled died. If you see no messages after this, something went\n"
"terribly wrong...\n"
msgstr ""

#, c-format
msgid ""
"Trying to get some variables.\n"
"Some pointers may be invalid and cause the dump to abort...\n"
msgstr ""

#, c-format
msgid ""
"\n"
"This crash occurred while the server was calling initgroups(). This is\n"
"often due to the use of a drizzled that is statically linked against glibc\n"
"and configured to use LDAP in /etc/nsswitch.conf. You will need to either\n"
"upgrade to a version of glibc that does not have this problem (2.3.4 or\n"
"later when used with nscd), disable LDAP in your nsswitch.conf, or use a\n"
"drizzled that is not statically linked.\n"
msgstr ""

#, c-format
msgid ""
"\n"
"You are running a statically-linked LinuxThreads binary on an NPTL system.\n"
"This can result in crashes on some distributions due to LT/NPTL conflicts.\n"
"You should either build a dynamically-linked binary, or force LinuxThreads\n"
"to be used with the LD_ASSUME_KERNEL environment variable. Please consult\n"
"the documentation for your distribution on how to do that.\n"
msgstr ""

#, c-format
msgid "Writing a core file\n"
msgstr ""

#, c-format
msgid "gethostname failed, using '%s' as hostname"
msgstr ""

#, c-format
msgid "Unknown locale: '%s'"
msgstr ""

msgid "Can't create thread-keys"
msgstr ""

msgid "Out of memory"
msgstr ""

msgid "Failed to initialize plugins."
msgstr "Zainicjowanie wtyczek nieudane."

#, c-format
msgid ""
"%s: Too many arguments (first extra is '%s').\n"
"Use --verbose --help to get a list of available options\n"
msgstr ""
"%s: Zbyt dużo argumentów (pierwszym nadmiarowym jest '%s').\n"
"Użyj --verbose-- aby wyświetlić listę dostępnych opcji\n"

msgid "No scheduler found, cannot continue!\n"
msgstr "Nie znaleziono kontrolera procesów, nie można kontynuować!\n"

#, fuzzy, c-format
msgid "Unknown/unsupported storage engine: %s"
msgstr "Nieznany/niewspierany tyb tabeli: %s"

msgid "Display this help and exit after initializing plugins."
msgstr ""

msgid "Auto-increment columns are incremented by this"
msgstr ""

msgid ""
"Offset added to Auto-increment columns. Used when auto-increment-increment !"
"= 1"
msgstr ""
"Dodano przesunięcie do kolumn Auto-increment. Używane gdy auto-increment-"
"increment != 1"

msgid ""
"Path to installation directory. All paths are usually resolved relative to "
"this."
msgstr ""
"Ścieżka do katalogu instalacji. Wszystkie ścieżki są rozwiązywane w "
"odniesieniu do tej."

msgid "Chroot drizzled daemon during startup."
msgstr ""

msgid "Set the default collation."
msgstr ""

msgid "Default completion type."
msgstr ""

msgid "Write core on errors."
msgstr ""

msgid "Path to the database root."
msgstr ""

msgid "Set the default storage engine (table type) for tables."
msgstr ""

msgid "Set the default time zone."
msgstr "Ustaw domyślną strefę czasową."

msgid "Print a symbolic stack trace on failure."
msgstr ""

msgid "Used for debugging;  Use at your own risk!"
msgstr "Używane do debugowania; Używasz na własne ryzyko!"

msgid "Set up signals usable for debugging"
msgstr ""

msgid "(IGNORED)"
msgstr "(ZIGNOROWANO)"

msgid "Set the language used for the month names and the days of the week."
msgstr "Ustaw język używany dla nazw miesięcy oraz dni tygodnia."

msgid "Log some not critical warnings to the log file."
msgstr "Loguj niektrytyczne ostrzeżenia do pliku."

msgid "Pid file used by safe_mysqld."
msgstr ""

msgid ""
"Maximum time in seconds to wait for the port to become free. (Default: no "
"wait)"
msgstr ""

msgid ""
"Limit LOAD DATA, SELECT ... OUTFILE, and LOAD_FILE() to files within "
"specified directory"
msgstr ""
"Ogranicz LOAD DATA, SELECT ... OUTFILE oraz LOAD_FILE() do plików z "
"określonego katalogu."

msgid ""
"Uniquely identifies the server instance in the community of replication "
"partners."
msgstr ""

msgid "Don't print a stack trace on failure."
msgstr ""

msgid "Enable symbolic link support."
msgstr ""

msgid ""
"Specify whether to time mutexes (only InnoDB mutexes are currently supported)"
msgstr ""

msgid "Path for temporary files."
msgstr "Ścieżka dla plików tymczasowych"

msgid "Default transaction isolation level."
msgstr "Domyślny poziom odizolowania transakcji."

msgid "Run drizzled daemon as user."
msgstr "Uruchom demona drizzled jako użytkownik"

msgid ""
"The number of outstanding connection requests Drizzle can have. This comes "
"into play when the main Drizzle thread gets very many connection requests in "
"a very short time."
msgstr ""
"Liczba dodatkowych żądań połączeń, które Drizzle może obsłużyć. Znajduje "
"zastosowanie, gdy główny proces Drizzle otrzyma bardzo dużo żądań połączeń w "
"bardzo krótkim czasie."

msgid ""
"Size of tree cache used in bulk insert optimization. Note that this is a "
"limit per thread!"
msgstr ""

msgid ""
"Precision of the result of '/' operator will be increased on that value."
msgstr "Precyzja wyniku operatora '/' zostanie zwiększona do tej wartości."

msgid "The maximum length of the result of function  group_concat."
msgstr "Maksymalna długość wyniku funkcji group_concat."

msgid "The size of the buffer that is used for full joins."
msgstr ""

msgid "Max packetlength to send/receive from to server."
msgstr "Maksymalna długość pakietów do wysłania/otrzymania z serwera."

msgid ""
"If there is more than this number of interrupted connections from a host "
"this host will be blocked from further connections."
msgstr ""

msgid "Max number of errors/warnings to store for a statement."
msgstr ""

msgid "Don't allow creation of heap tables bigger than this."
msgstr "Nie pozwól na tworzenie sterty tablel większych niż to."

msgid ""
"Joins that are probably going to read more than max_join_size records return "
"an error."
msgstr ""
"Joiny, które prawdopodobnie zamierzają odczytać więcej rekordów niż "
"max_join_size zwrócą błąd."

msgid "Max number of bytes in sorted records."
msgstr ""

msgid "Limit assumed max number of seeks when looking up rows based on a key"
msgstr ""

msgid ""
"The number of bytes to use when sorting BLOB or TEXT values (only the first "
"max_sort_length bytes of each value are used; the rest are ignored)."
msgstr ""
"Liczba bajtów używana podczas sortowania wartości BLOB lub TEXT (jedynie "
"pierwsze max_sort_length bajty każdej wartości są używane; reszta jest "
"ignorowana)."

msgid "After this many write locks, allow some read locks to run in between."
msgstr ""

msgid ""
"Don't log queries which examine less than min_examined_row_limit rows to "
"file."
msgstr ""
"Nie pozwól na zapisywanie do pliku zapytań, które sprawdzają mniej niż "
"min_examined_row_limit wierszy."

msgid ""
"Controls the heuristic(s) applied during query optimization to prune less-"
"promising partial plans from the optimizer search space. Meaning: false - do "
"not apply any heuristic, thus perform exhaustive search; true - prune plans "
"based on number of retrieved rows."
msgstr ""

msgid ""
"Maximum depth of search performed by the query optimizer. Values larger than "
"the number of relations in a query result in better query plans, but take "
"longer to compile a query. Smaller values than the number of tables in a "
"relation result in faster optimization, but may produce very bad query "
"plans. If set to 0, the system will automatically pick a reasonable value; "
"if set to MAX_TABLES+2, the optimizer will switch to the original find_best "
"(used for testing/comparison)."
msgstr ""

msgid "Directory for plugins."
msgstr "Katalog wtyczek"

#, fuzzy
msgid ""
"Optional comma separated list of plugins to load at startup in addition to "
"the default list of plugins. [for example: --plugin_add=crc32,logger_gearman]"
msgstr ""
"Lista dodatkowych parametrów do załadowania przy starcie oddzielona "
"przecinkami. [np: --plugin_load=crc32,logger_gearman]"

#, fuzzy
msgid ""
"Optional comma separated list of plugins to not load at startup. Effectively "
"removes a plugin from the list of plugins to be loaded. [for example: --"
"plugin_remove=crc32,logger_gearman]"
msgstr ""
"Lista dodatkowych parametrów do załadowania przy starcie oddzielona "
"przecinkami. [np: --plugin_load=crc32,logger_gearman]"

#, fuzzy
msgid ""
"Optional comma separated list of plugins to load at starup instead of the "
"default plugin load list. [for example: --plugin_load=crc32,logger_gearman]"
msgstr ""
"Lista dodatkowych parametrów do załadowania przy starcie oddzielona "
"przecinkami. [np: --plugin_load=crc32,logger_gearman]"

msgid "The size of the buffer that is allocated when preloading indexes"
msgstr ""

msgid "Allocation block size for query parsing and execution"
msgstr ""

msgid "Persistent buffer for query parsing and execution"
msgstr ""

msgid "Allocation block size for storing ranges during optimization"
msgstr ""

msgid ""
"Each thread that does a sequential scan allocates a buffer of this size for "
"each table it scans. If you do many sequential scans, you may want to "
"increase this value."
msgstr ""

msgid ""
"When reading rows in sorted order after a sort, the rows are read through "
"this buffer to avoid a disk seeks. If not set, then it's set to the value of "
"record_buffer."
msgstr ""

msgid "Select scheduler to be used (by default multi-thread)."
msgstr ""

msgid "Each thread that needs to do a sort allocates a buffer of this size."
msgstr ""

msgid "The number of cached table definitions."
msgstr ""

msgid "The number of cached open tables."
msgstr ""

msgid ""
"Timeout in seconds to wait for a table level lock before returning an error. "
"Used only if the connection has active cursors."
msgstr ""

msgid "The stack size for each thread."
msgstr ""

msgid ""
"If an internal in-memory temporary table exceeds this size, Drizzle will "
"automatically convert it to an on-disk MyISAM table."
msgstr ""

msgid ""
"Copyright (C) 2008 Sun Microsystems\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"
"\n"
"Starts the Drizzle database server\n"
msgstr ""

#, c-format
msgid "Usage: %s [OPTIONS]\n"
msgstr ""

#, c-format
msgid ""
"Ignoring user change to '%s' because the user was set to '%s' earlier on the "
"command line\n"
msgstr ""

msgid "Can't start server: cannot resolve hostname!"
msgstr ""

msgid "Can't start server: bind-address refers to multiple interfaces!"
msgstr ""

msgid ""
"setrlimit could not change the size of core files to 'infinity';  We may not "
"be able to generate a core file on signals"
msgstr ""

#, c-format
msgid "Data directory %s does not exist\n"
msgstr ""

msgid "UNUSED"
msgstr ""

msgid "NO"
msgstr "NIE"

msgid "YES"
msgstr "TAK"

#, c-format
msgid "Can't create file '%-.200s' (errno: %d)"
msgstr "Tworzenie pliku '%-.200s' nieudane (nr błedu: %d)"

#, c-format
msgid "Can't create table '%-.200s' (errno: %d)"
msgstr "Nie można utworzyć tabeli '%-.200s' (nr błedu : %d)"

#, c-format
msgid "Can't create database '%-.192s' (errno: %d)"
msgstr "Nie można utworzyć bazy danych '%-.192s' (nr błedu : %d)"

#, c-format
msgid "Can't create database '%-.192s'; database exists"
msgstr "Nie można utworzyć bazy danych '%-.192s'; baza danych istnieje"

#, c-format
msgid "Can't drop database '%-.192s'; database doesn't exist"
msgstr "Nie można usunąć bazy danych '%-.192s'; baza nie istnieje"

#, c-format
msgid "Error dropping database (can't delete '%-.192s', errno: %d)"
msgstr ""
"Błąd podczas usuwania bazy danych (nie można usunąć '%-.192s'; nr błędu: %d)"

#, c-format
msgid "Error dropping database (can't rmdir '%-.192s', errno: %d)"
msgstr ""
"Błąd podczas usuwania bazy danych (nie można rmdir '%-.192s'; nr błedu: %d)"

#, c-format
msgid "Error on delete of '%-.192s' (errno: %d)"
msgstr "Błąd podczas usuwania '%-.192s' (nr błedu: %d)"

msgid "Can't read record in system table"
msgstr "Nie można odczytać wiersza tabeli systemowej"

#, c-format
msgid "Can't get status of '%-.200s' (errno: %d)"
msgstr "Nie można pobrać statusu '%-.200s' (nr błedu: %d)"

#, c-format
msgid "Can't get working directory (errno: %d)"
msgstr ""

#, c-format
msgid "Can't lock file (errno: %d)"
msgstr "Nie można zablokować pliku (nr błędu: %d)"

#, c-format
msgid "Can't open file: '%-.200s' (errno: %d)"
msgstr "Nie można otworzyć pliku: '%-.200s' (nr błędu: %d)"

#, c-format
msgid "Can't find file: '%-.200s' (errno: %d)"
msgstr "Nie można odnaleźć pliku: '%-.200s' (nr błędu: %d)"

#, c-format
msgid "Can't read dir of '%-.192s' (errno: %d)"
msgstr "Nie można odczytać katalogu: '%-.192s' (nr błędu: %d)"

#, c-format
msgid "Can't change dir to '%-.192s' (errno: %d)"
msgstr "Nie można zmienić katalogu na: '%-.192s' (nr błędu: %d)"

#, c-format
msgid "Record has changed since last read in table '%-.192s'"
msgstr "Rekord uległ zmianie od czasu ostatniego odczytu w tabeli '%-.192s'"

#, c-format
msgid "Disk full (%s); waiting for someone to free some space..."
msgstr "Dysk pełny (%s); oczekiwanie na zwolnienie miejsca"

#, c-format
msgid "Can't write; duplicate key in table '%-.192s'"
msgstr "Nie można zapisać; zdublowany klucz w tabeli '%-.192s'"

#, c-format
msgid "Error on close of '%-.192s' (errno: %d)"
msgstr "Błąd podczas zamykania  '%-.192s' (nr błędu: %d)"

#, c-format
msgid "Error reading file '%-.200s' (errno: %d)"
msgstr "Błąd podczas odczytywania pliku  '%-.200s' (nr błędu: %d)"

#, c-format
msgid "Error on rename of '%-.150s' to '%-.150s' (errno: %d)"
msgstr "Błąd podczas zmiany nazwy '%-.150s' na '%-.150s' (nr błędu: %d)"

#, c-format
msgid "Error writing file '%-.200s' (errno: %d)"
msgstr "Błąd podczas zapisu pliku '%-.200s' (nr błędu: %d)"

#, c-format
msgid "'%-.192s' is locked against change"
msgstr "'%-.192s'  jest zablokowany przed zmianami"

msgid "Sort aborted"
msgstr "Sortowanie przerwano"

#, c-format
msgid "View '%-.192s' doesn't exist for '%-.192s'"
msgstr "Widok '%-.192s' nie istnieje dla '%-.192s'"

#, c-format
msgid "Got error %d from storage engine"
msgstr ""

#, c-format
msgid "Table storage engine for '%-.192s' doesn't have this option"
msgstr ""

#, c-format
msgid "Can't find record in '%-.192s'"
msgstr "Nie można odnaleźć rekordu w '%-.192s'"

#, c-format
msgid "Incorrect information in file: '%-.200s'"
msgstr "Niepoprawne informacje w pliku: '%-.200s'"

#, c-format
msgid "Incorrect key file for table '%-.200s'; try to repair it"
msgstr "Niepoprawny klucz rejestracyjny dla tabeli '%-.200s'; spróbój naprawić"

#, c-format
msgid "Old key file for table '%-.192s'; repair it!"
msgstr "Stary klucz pliku tabeli '%-.192s'; napraw go"

#, c-format
msgid "Table '%-.192s' is read only"
msgstr "Tabela '%-.192s' jest w trybie tylko do odczytu"

#, c-format
msgid "Out of memory; restart server and try again (needed %lu bytes)"
msgstr ""
"Brak pamięci; zrestartuj serwer i spróbój ponownie (potrzebne %lu bajtów)"

msgid "Out of sort memory; increase server sort buffer size"
msgstr ""

#, c-format
msgid "Unexpected EOF found when reading file '%-.192s' (errno: %d)"
msgstr ""

msgid "Too many connections"
msgstr "Zbyt wiele połączeń"

msgid ""
"Out of memory; check if drizzled or some other process uses all available "
"memory; if not, you may have to use 'ulimit' to allow drizzled to use more "
"memory or you can add more swap space"
msgstr ""
"Brak pamięci; sprawdź czy drizzled lub inny proces zużywa całą "
"dostępnąpamięć; jeśli nie, możesz użyć opcji 'unlimit' aby zezwolić drizzled "
"na użycie większej ilości pamięci, lub możesz dodać dodatkowy moduł pamięci"

msgid "Can't get hostname for your address"
msgstr "Nie mogę rozwiązać nazwy hosta dla Twojego adresu"

msgid "Bad handshake"
msgstr ""

#, c-format
msgid "Access denied for user '%-.48s'@'%-.64s' to database '%-.192s'"
msgstr ""
"Dostęp zabroniony dla użytkownika '%-.48s'@'%-.64s' do bazy danych '%-.192s'"

#, c-format
msgid "Access denied for user '%-.48s'@'%-.64s' (using password: %s)"
msgstr ""
"Dostęp zabroniony dla użytkownika '%-.48s'@'%-.64s' (używającego hasła: %s)"

msgid "No database selected"
msgstr "Nie wybrano bazy danych"

msgid "Unknown command"
msgstr "Nieznana komenda"

#, c-format
msgid "Column '%-.192s' cannot be null"
msgstr "Kolumna '%-.192s' nie może być null"

#, c-format
msgid "Unknown database '%-.192s'"
msgstr "Nieznana baza danych '%-.192s'"

#, c-format
msgid "Table '%-.192s' already exists"
msgstr "Tabela '%-.192s' już istnieje"

#, c-format
msgid "Unknown table '%-.100s'"
msgstr "Nieznana tabela '%-.100s'"

#, c-format
msgid "Column '%-.192s' in %-.192s is ambiguous"
msgstr "Dwuznaczna kolumna '%-.192s' w %-.192s"

msgid "Server shutdown in progress"
msgstr "Operacja wyłączania serwera trwa"

#, c-format
msgid "Unknown column '%-.192s' in '%-.192s'"
msgstr "Nieznana kolumna '%-.192s' w '%-.192s'"

#, c-format
msgid "'%-.192s' isn't in GROUP BY"
msgstr "'%-.192s' nie występuje w GROUP BY"

#, c-format
msgid "Can't group on '%-.192s'"
msgstr "Nie można grupować po '%-.192s'"

msgid "Statement has sum functions and columns in same statement"
msgstr ""

msgid "Column count doesn't match value count"
msgstr ""

#, c-format
msgid "Identifier name '%-.100s' is too long"
msgstr "Nazwa identyfikatora '%-.100s'  jest za długa"

#, c-format
msgid "Duplicate column name '%-.192s'"
msgstr "Zduplikowana nazwa kolumny '%-.192s'"

#, c-format
msgid "Duplicate key name '%-.192s'"
msgstr "Zduplikowana nazwa klucza '%-.192s'"

#, c-format
msgid "Duplicate entry '%-.192s' for key %d"
msgstr "Zduplikowane wystąpienie '%-.192s' dla klucza %d"

#, c-format
msgid "Incorrect column specifier for column '%-.192s'"
msgstr "Niepoprawny specyfikator kolumny dla kolumny '%-.192s'"

#, c-format
msgid "%s near '%-.80s' at line %d"
msgstr "%s przy '%-.80s' w linii %d"

msgid "Query was empty"
msgstr "Zapytanie było puste"

#, c-format
msgid "Not unique table/alias: '%-.192s'"
msgstr ""

#, c-format
msgid "Invalid default value for '%-.192s'"
msgstr "Nieprawidłowa domyślna wartość dla '%-.192s'"

msgid "Multiple primary key defined"
msgstr ""

#, c-format
msgid "Too many keys specified; max %d keys allowed"
msgstr ""

#, c-format
msgid "Too many key parts specified; max %d parts allowed"
msgstr ""

#, c-format
msgid "Specified key was too long; max key length is %d bytes"
msgstr ""

#, c-format
msgid "Key column '%-.192s' doesn't exist in table"
msgstr ""

#, c-format
msgid ""
"BLOB column '%-.192s' can't be used in key specification with the used table "
"type"
msgstr ""

#, c-format
msgid ""
"Column length too big for column '%-.192s' (max = %d); use BLOB or TEXT "
"instead"
msgstr ""

msgid ""
"Incorrect table definition; there can be only one auto column and it must be "
"defined as a key"
msgstr ""

#, c-format
msgid ""
"%s: ready for connections.\n"
"Version: '%s'  socket: '%s'  port: %u\n"
msgstr ""

#, c-format
msgid "%s: Normal shutdown\n"
msgstr ""

#, c-format
msgid "%s: Got signal %d. Aborting!\n"
msgstr ""

#, c-format
msgid "%s: Shutdown complete\n"
msgstr ""

#, c-format
msgid "%s: Forcing close of thread %<PRIu64> user: '%-.48s'\n"
msgstr ""

msgid "Can't create IP socket"
msgstr ""

#, c-format
msgid ""
"Table '%-.192s' has no index like the one used in CREATE INDEX; recreate the "
"table"
msgstr ""

#, c-format
msgid ""
"Field separator argument '%-.32s' with length '%d' is not what is expected; "
"check the manual"
msgstr ""

msgid ""
"You can't use fixed rowlength with BLOBs; please use 'fields terminated by'"
msgstr ""

#, c-format
msgid ""
"The file '%-.128s' must be in the database directory or be readable by all"
msgstr ""

#, c-format
msgid "File '%-.200s' already exists"
msgstr "Plik '%-.200s' już istnieje"

#, c-format
msgid "Records: %ld  Deleted: %ld  Skipped: %ld  Warnings: %ld"
msgstr ""

#, c-format
msgid "Records: %ld  Duplicates: %ld"
msgstr ""

msgid ""
"Incorrect prefix key; the used key part isn't a string, the used length is "
"longer than the key part, or the storage engine doesn't support unique "
"prefix keys"
msgstr ""

msgid "You can't delete all columns with ALTER TABLE; use DROP TABLE instead"
msgstr ""

#, c-format
msgid "Can't DROP '%-.192s'; check that column/key exists"
msgstr ""

#, c-format
msgid "Records: %ld  Duplicates: %ld  Warnings: %ld"
msgstr ""

#, c-format
msgid "You can't specify target table '%-.192s' for update in FROM clause"
msgstr ""

#, c-format
msgid "Unknown thread id: %lu"
msgstr ""

#, c-format
msgid "You are not owner of thread %lu"
msgstr ""

msgid "No tables used"
msgstr ""

#, c-format
msgid "Too many strings for column %-.192s and SET"
msgstr ""

#, c-format
msgid "Can't generate a unique log-filename %-.200s.(1-999)\n"
msgstr ""

#, c-format
msgid "Table '%-.192s' was locked with a READ lock and can't be updated"
msgstr ""

#, c-format
msgid "Table '%-.192s' was not locked with LOCK TABLES"
msgstr ""

#, c-format
msgid "BLOB/TEXT column '%-.192s' can't have a default value"
msgstr ""

#, c-format
msgid "Incorrect database name '%-.100s'"
msgstr "Nieprawidłowa nazwa bazy danych '%-.100s'"

#, c-format
msgid "Incorrect table name '%-.100s'"
msgstr "Nieprawidłowa nazwa tabeli '%-.100s'"

msgid ""
"The SELECT would examine more than MAX_JOIN_SIZE rows; check your WHERE and "
"use SET SQL_BIG_SELECTS=1 or SET MAX_JOIN_SIZE=# if the SELECT is okay"
msgstr ""

msgid "Unknown error"
msgstr "Nieznany błąd"

#, c-format
msgid "Unknown procedure '%-.192s'"
msgstr "Nieznana procedura '%-.192s'"

#, c-format
msgid "Incorrect parameter count to procedure '%-.192s'"
msgstr ""

#, c-format
msgid "Incorrect parameters to procedure '%-.192s'"
msgstr ""

#, c-format
msgid "Unknown table '%-.192s' in %-.32s"
msgstr "Nieznana tabela '%-.192s' w %-.32s"

#, c-format
msgid "Column '%-.192s' specified twice"
msgstr ""

msgid "Invalid use of group function"
msgstr ""

#, c-format
msgid ""
"Table '%-.192s' uses an extension that doesn't exist in this Drizzle version"
msgstr ""

msgid "A table must have at least 1 column"
msgstr ""

#, c-format
msgid "The table '%-.192s' is full"
msgstr "Tabela '%-.192s' jest pełna"

#, c-format
msgid "Unknown character set: '%-.64s'"
msgstr "Nieznane kodowanie znaków: '%-.64s'"

#, c-format
msgid "Too many tables; Drizzle can only use %d tables in a join"
msgstr "Za dużo tabel; Drizzle może użyć tylko %d tabel w join"

msgid "Too many columns"
msgstr "Za dużo kolumn"

#, c-format
msgid ""
"Row size too large. The maximum row size for the used table type, not "
"counting BLOBs, is %ld. You have to change some columns to TEXT or BLOBs"
msgstr ""

#, c-format
msgid ""
"Thread stack overrun:  Used: %ld of a %ld stack.  Use 'drizzled -O "
"thread_stack=#' to specify a bigger stack if needed"
msgstr ""

msgid "Cross dependency found in OUTER JOIN; examine your ON conditions"
msgstr ""

#, c-format
msgid ""
"Table handler doesn't support NULL in given index. Please change column "
"'%-.192s' to be NOT NULL or use another handler"
msgstr ""

#, c-format
msgid "Can't load function '%-.192s'"
msgstr "Nie można załadować funkcji '%-.192s'"

#, c-format
msgid "Can't initialize function '%-.192s'; %-.80s"
msgstr "Nie można zainicjować funkcji '%-.192s'; %-.80s"

msgid "No paths allowed for plugin library"
msgstr ""

#, fuzzy, c-format
msgid "Plugin '%-.192s' already exists"
msgstr "Funkcja '%-.192s' już istnieje"

#, c-format
msgid "Can't open shared library '%-.192s' (errno: %d %-.128s)"
msgstr ""
"Nie można otworzyć współdzielonej biblioteki '%-.192s' (numer błędu: %d "
"%-.128s)"

#, fuzzy, c-format
msgid "Can't find symbol '%-.128s' in library '%-.128s'"
msgstr "Nie można znaleźć symbolu '%-.128s' w bibliotece"

#, c-format
msgid "Function '%-.192s' is not defined"
msgstr "Funkcja '%-.192s' jest niezdefiniowana"

#, c-format
msgid ""
"Host '%-.64s' is blocked because of many connection errors; unblock with "
"'drizzleadmin flush-hosts'"
msgstr ""

#, c-format
msgid "Host '%-.64s' is not allowed to connect to this Drizzle server"
msgstr ""

msgid ""
"You are using Drizzle as an anonymous user and anonymous users are not "
"allowed to change passwords"
msgstr ""

msgid ""
"You must have privileges to update tables in the drizzle database to be able "
"to change passwords for others"
msgstr ""

msgid "Can't find any matching row in the user table"
msgstr ""

#, c-format
msgid "Rows matched: %ld  Changed: %ld  Warnings: %ld"
msgstr ""

#, c-format
msgid ""
"Can't create a new thread (errno %d); if you are not out of available "
"memory, you can consult the manual for a possible OS-dependent bug"
msgstr ""

#, c-format
msgid "Column count doesn't match value count at row %ld"
msgstr ""

#, c-format
msgid "Can't reopen table: '%-.192s'"
msgstr ""

msgid "Invalid use of NULL value"
msgstr ""

#, c-format
msgid "Got error '%-.64s' from regexp"
msgstr ""

msgid ""
"Mixing of GROUP columns (MIN(),MAX(),COUNT(),...) with no GROUP columns is "
"illegal if there is no GROUP BY clause"
msgstr ""

#, c-format
msgid "There is no such grant defined for user '%-.48s' on host '%-.64s'"
msgstr ""

#, c-format
msgid "%-.16s command denied to user '%-.48s'@'%-.64s' for table '%-.192s'"
msgstr ""

#, c-format
msgid ""
"%-.16s command denied to user '%-.48s'@'%-.64s' for column '%-.192s' in "
"table '%-.192s'"
msgstr ""

msgid ""
"Illegal GRANT/REVOKE command; please consult the manual to see which "
"privileges can be used"
msgstr ""

msgid "The host or user argument to GRANT is too long"
msgstr ""

#, c-format
msgid "Table '%-.192s.%-.192s' doesn't exist"
msgstr "Tabela '%-.192s.%-.192s' nie istnieje"

#, c-format
msgid ""
"There is no such grant defined for user '%-.48s' on host '%-.64s' on table "
"'%-.192s'"
msgstr ""

msgid "The used command is not allowed with this Drizzle version"
msgstr ""

msgid ""
"You have an error in your SQL syntax; check the manual that corresponds to "
"your Drizzle server version for the right syntax to use"
msgstr ""

#, c-format
msgid "Delayed insert thread couldn't get requested lock for table %-.192s"
msgstr ""

msgid "Too many delayed threads in use"
msgstr ""

#, c-format
msgid "Aborted connection %ld to db: '%-.192s' user: '%-.48s' (%-.64s)"
msgstr ""

msgid "Got a packet bigger than 'max_allowed_packet' bytes"
msgstr ""

msgid "Got a read error from the connection pipe"
msgstr ""

msgid "Got an error from fcntl()"
msgstr ""

msgid "Got packets out of order"
msgstr ""

msgid "Couldn't uncompress communication packet"
msgstr ""

msgid "Got an error reading communication packets"
msgstr ""

msgid "Got timeout reading communication packets"
msgstr ""

msgid "Got an error writing communication packets"
msgstr ""

msgid "Got timeout writing communication packets"
msgstr ""

msgid "Result string is longer than 'max_allowed_packet' bytes"
msgstr ""

msgid "The used table type doesn't support BLOB/TEXT columns"
msgstr ""

msgid "The used table type doesn't support AUTO_INCREMENT columns"
msgstr ""

#, c-format
msgid ""
"INSERT DELAYED can't be used with table '%-.192s' because it is locked with "
"LOCK TABLES"
msgstr ""

#, c-format
msgid "Incorrect column name '%-.100s'"
msgstr ""

#, c-format
msgid "The used storage engine can't index column '%-.192s'"
msgstr ""

msgid ""
"Unable to open underlying table which is differently defined or of non-"
"MyISAM type or doesn't exist"
msgstr ""

#, c-format
msgid "Can't write, because of unique constraint, to table '%-.192s'"
msgstr ""

#, c-format
msgid ""
"BLOB/TEXT column '%-.192s' used in key specification without a key length"
msgstr ""

msgid ""
"All parts of a PRIMARY KEY must be NOT NULL; if you need NULL in a key, use "
"UNIQUE instead"
msgstr ""

msgid "Result consisted of more than one row"
msgstr ""

msgid "This table type requires a primary key"
msgstr ""

msgid "This version of Drizzle is not compiled with RAID support"
msgstr ""

msgid ""
"You are using safe update mode and you tried to update a table without a "
"WHERE that uses a KEY column"
msgstr ""

#, c-format
msgid "Key '%-.192s' doesn't exist in table '%-.192s'"
msgstr ""

msgid "Can't open table"
msgstr ""

#, c-format
msgid "The storage engine for the table doesn't support %s"
msgstr ""

msgid "You are not allowed to execute this command in a transaction"
msgstr ""

#, c-format
msgid "Got error %d during COMMIT"
msgstr ""

#, c-format
msgid "Got error %d during ROLLBACK"
msgstr ""

#, c-format
msgid "Got error %d during FLUSH_LOGS"
msgstr ""

#, c-format
msgid "Got error %d during CHECKPOINT"
msgstr ""

#, c-format
msgid ""
"Aborted connection %<PRIi64> to db: '%-.192s' user: '%-.48s' host: "
"'%-.64s' (%-.64s)"
msgstr ""

msgid "The storage engine for the table does not support binary table dump"
msgstr ""

msgid "Binlog closed, cannot RESET MASTER"
msgstr ""

#, c-format
msgid "Failed rebuilding the index of  dumped table '%-.192s'"
msgstr ""

#, c-format
msgid "Error from master: '%-.64s'"
msgstr ""

msgid "Net error reading from master"
msgstr ""

msgid "Net error writing to master"
msgstr ""

msgid "Can't find FULLTEXT index matching the column list"
msgstr ""

msgid ""
"Can't execute the given command because you have active locked tables or an "
"active transaction"
msgstr ""

#, c-format
msgid "Unknown system variable '%-.64s'"
msgstr ""

#, c-format
msgid "Table '%-.192s' is marked as crashed and should be repaired"
msgstr ""

#, c-format
msgid ""
"Table '%-.192s' is marked as crashed and last (automatic?) repair failed"
msgstr ""

msgid "Some non-transactional changed tables couldn't be rolled back"
msgstr ""

msgid ""
"Multi-statement transaction required more than 'max_binlog_cache_size' bytes "
"of storage; increase this drizzled variable and try again"
msgstr ""

msgid ""
"This operation cannot be performed with a running slave; run STOP SLAVE first"
msgstr ""

msgid ""
"This operation requires a running slave; configure slave and do START SLAVE"
msgstr ""

msgid "The server is not configured as slave; fix with CHANGE MASTER TO"
msgstr ""

msgid ""
"Could not initialize master info structure; more error messages can be found "
"in the Drizzle error log"
msgstr ""

msgid "Could not create slave thread; check system resources"
msgstr ""

#, c-format
msgid ""
"User %-.64s already has more than 'max_user_connections' active connections"
msgstr ""

msgid "You may only use constant expressions with SET"
msgstr ""

msgid "Lock wait timeout exceeded; try restarting transaction"
msgstr ""

msgid "The total number of locks exceeds the lock table size"
msgstr ""

msgid "Update locks cannot be acquired during a READ UNCOMMITTED transaction"
msgstr ""

msgid "DROP DATABASE not allowed while thread is holding global read lock"
msgstr ""

msgid "CREATE DATABASE not allowed while thread is holding global read lock"
msgstr ""

#, c-format
msgid "Incorrect arguments to %s"
msgstr ""

#, c-format
msgid "'%-.48s'@'%-.64s' is not allowed to create new users"
msgstr ""

msgid ""
"Incorrect table definition; all MERGE tables must be in the same database"
msgstr ""

msgid "Deadlock found when trying to get lock; try restarting transaction"
msgstr ""

msgid "The used table type doesn't support FULLTEXT indexes"
msgstr ""

msgid "Cannot add foreign key constraint"
msgstr ""

msgid "Cannot add or update a child row: a foreign key constraint fails"
msgstr ""

msgid "Cannot delete or update a parent row: a foreign key constraint fails"
msgstr ""

#, c-format
msgid "Error connecting to master: %-.128s"
msgstr ""

#, c-format
msgid "Error running query on master: %-.128s"
msgstr ""

#, c-format
msgid "Error when executing command %s: %-.128s"
msgstr ""

#, c-format
msgid "Incorrect usage of %s and %s"
msgstr ""

msgid "The used SELECT statements have a different number of columns"
msgstr ""

msgid "Can't execute the query because you have a conflicting read lock"
msgstr ""

msgid "Mixing of transactional and non-transactional tables is disabled"
msgstr ""

#, c-format
msgid "Option '%s' used twice in statement"
msgstr ""

#, c-format
msgid "User '%-.64s' has exceeded the '%s' resource (current value: %ld)"
msgstr ""

#, c-format
msgid "Access denied; you need the %-.128s privilege for this operation"
msgstr ""

#, c-format
msgid ""
"Variable '%-.64s' is a SESSION variable and can't be used with SET GLOBAL"
msgstr ""

#, c-format
msgid ""
"Variable '%-.64s' is a GLOBAL variable and should be set with SET GLOBAL"
msgstr ""

#, c-format
msgid "Variable '%-.64s' doesn't have a default value"
msgstr ""

#, c-format
msgid "Variable '%-.64s' can't be set to the value of '%-.200s'"
msgstr ""

#, c-format
msgid "Incorrect argument type to variable '%-.64s'"
msgstr ""

#, c-format
msgid "Variable '%-.64s' can only be set, not read"
msgstr ""

#, c-format
msgid "Incorrect usage/placement of '%s'"
msgstr ""

#, c-format
msgid "This version of Drizzle doesn't yet support '%s'"
msgstr ""

#, c-format
msgid ""
"Got fatal error %d: '%-.128s' from master when reading data from binary log"
msgstr ""

msgid "Slave SQL thread ignored the query because of replicate-*-table rules"
msgstr ""

#, c-format
msgid "Variable '%-.192s' is a %s variable"
msgstr ""

#, c-format
msgid "Incorrect foreign key definition for '%-.192s': %s"
msgstr ""

msgid "Key reference and table reference don't match"
msgstr ""

#, c-format
msgid "Operand should contain %d column(s)"
msgstr ""

msgid "Subquery returns more than 1 row"
msgstr ""

#, c-format
msgid "Unknown prepared statement handler (%.*s) given to %s"
msgstr ""

msgid "Help database is corrupt or does not exist"
msgstr ""

msgid "Cyclic reference on subqueries"
msgstr ""

#, c-format
msgid "Converting column '%s' from %s to %s"
msgstr ""

#, c-format
msgid "Reference '%-.64s' not supported (%s)"
msgstr ""

msgid "Every derived table must have its own alias"
msgstr ""

#, c-format
msgid "Select %u was reduced during optimization"
msgstr ""

#, c-format
msgid "Table '%-.192s' from one of the SELECTs cannot be used in %-.32s"
msgstr ""

msgid ""
"Client does not support authentication protocol requested by server; "
"consider upgrading Drizzle client"
msgstr ""

msgid "All parts of a SPATIAL index must be NOT NULL"
msgstr ""

#, c-format
msgid "COLLATION '%s' is not valid for CHARACTER SET '%s'"
msgstr ""

msgid "Slave is already running"
msgstr ""

msgid "Slave already has been stopped"
msgstr ""

#, c-format
msgid ""
"Uncompressed data size too large; the maximum size is %d (probably, length "
"of uncompressed data was corrupted)"
msgstr ""

msgid "ZLIB: Not enough memory"
msgstr ""

msgid ""
"ZLIB: Not enough room in the output buffer (probably, length of uncompressed "
"data was corrupted)"
msgstr ""

msgid "ZLIB: Input data corrupted"
msgstr ""

#, c-format
msgid "%d line(s) were cut by GROUP_CONCAT()"
msgstr ""

#, c-format
msgid "Row %ld doesn't contain data for all columns"
msgstr ""

#, c-format
msgid ""
"Row %ld was truncated; it contained more data than there were input columns"
msgstr ""

#, c-format
msgid ""
"Column set to default value; NULL supplied to NOT NULL column '%s' at row %ld"
msgstr ""

#, c-format
msgid "Out of range value for column '%s' at row %ld"
msgstr ""

#, c-format
msgid "Data truncated for column '%s' at row %ld"
msgstr ""

#, c-format
msgid "Using storage engine %s for table '%s'"
msgstr ""

#, c-format
msgid "Illegal mix of collations (%s,%s) and (%s,%s) for operation '%s'"
msgstr ""

msgid "Cannot drop one or more of the requested users"
msgstr ""

msgid "Can't revoke all privileges for one or more of the requested users"
msgstr ""

#, c-format
msgid "Illegal mix of collations (%s,%s), (%s,%s), (%s,%s) for operation '%s'"
msgstr ""

#, c-format
msgid "Illegal mix of collations for operation '%s'"
msgstr ""

#, c-format
msgid ""
"Variable '%-.64s' is not a variable component (can't be used as XXXX."
"variable_name)"
msgstr ""

#, c-format
msgid "Unknown collation: '%-.64s'"
msgstr ""

msgid ""
"SSL parameters in CHANGE MASTER are ignored because this Drizzle slave was "
"compiled without SSL support; they can be used later if Drizzle slave with "
"SSL is started"
msgstr ""

#, c-format
msgid ""
"Server is running in --secure-auth mode, but '%s'@'%s' has a password in the "
"old format; please change the password to the new format"
msgstr ""

#, c-format
msgid ""
"Field or reference '%-.192s%s%-.192s%s%-.192s' of SELECT #%d was resolved in "
"SELECT #%d"
msgstr ""

msgid "Incorrect parameter or combination of parameters for START SLAVE UNTIL"
msgstr ""

msgid ""
"It is recommended to use --skip-slave-start when doing step-by-step "
"replication with START SLAVE UNTIL; otherwise, you will get problems if you "
"get an unexpected slave's drizzled restart"
msgstr ""

msgid "SQL thread is not to be started so UNTIL options are ignored"
msgstr ""

#, c-format
msgid "Incorrect index name '%-.100s'"
msgstr ""

#, c-format
msgid "Incorrect catalog name '%-.100s'"
msgstr ""

#, c-format
msgid "Query cache failed to set size %lu; new query cache size is %lu"
msgstr ""

#, c-format
msgid "Column '%-.192s' cannot be part of FULLTEXT index"
msgstr ""

#, c-format
msgid "Unknown key cache '%-.100s'"
msgstr ""

msgid ""
"Drizzle is started in --skip-name-resolve mode; you must restart it without "
"this switch for this grant to work"
msgstr ""

#, c-format
msgid "Unknown table engine '%s'"
msgstr ""

#, c-format
msgid "'%s' is deprecated; use '%s' instead"
msgstr ""

#, c-format
msgid "The target table %-.100s of the %s is not updatable"
msgstr ""

#, c-format
msgid ""
"The '%s' feature is disabled; you need Drizzle built with '%s' to have it "
"working"
msgstr ""

#, c-format
msgid ""
"The Drizzle server is running with the %s option so it cannot execute this "
"statement"
msgstr ""

#, c-format
msgid "Column '%-.100s' has duplicated value '%-.64s' in %s"
msgstr ""

#, c-format
msgid "Truncated incorrect %-.32s value: '%-.128s'"
msgstr ""

msgid ""
"Incorrect table definition; there can be only one TIMESTAMP column with "
"CURRENT_TIMESTAMP in DEFAULT or ON UPDATE clause"
msgstr ""

#, c-format
msgid "Invalid ON UPDATE clause for '%-.192s' column"
msgstr ""

msgid "This command is not supported in the prepared statement protocol yet"
msgstr ""

#, c-format
msgid "Got error %d '%-.100s' from %s"
msgstr ""

#, c-format
msgid "Got temporary error %d '%-.100s' from %s"
msgstr ""

#, c-format
msgid "Unknown or incorrect time zone: '%-.64s'"
msgstr ""

#, c-format
msgid "Invalid TIMESTAMP value in column '%s' at row %ld"
msgstr ""

#, c-format
msgid "Invalid %s character string: '%.64s'"
msgstr ""

#, c-format
msgid "Result of %s() was larger than max_allowed_packet (%ld) - truncated"
msgstr ""

#, c-format
msgid "Conflicting declarations: '%s%s' and '%s%s'"
msgstr ""

#, c-format
msgid "Can't create a %s from within another stored routine"
msgstr ""

#, c-format
msgid "%s %s already exists"
msgstr ""

#, c-format
msgid "%s %s does not exist"
msgstr ""

#, c-format
msgid "Failed to DROP %s %s"
msgstr ""

#, c-format
msgid "Failed to CREATE %s %s"
msgstr ""

#, c-format
msgid "%s with no matching label: %s"
msgstr ""

#, c-format
msgid "Redefining label %s"
msgstr ""

#, c-format
msgid "End-label %s without match"
msgstr ""

#, c-format
msgid "Referring to uninitialized variable %s"
msgstr ""

#, c-format
msgid "PROCEDURE %s can't return a result set in the given context"
msgstr ""

msgid "RETURN is only allowed in a FUNCTION"
msgstr ""

#, c-format
msgid "%s is not allowed in stored procedures"
msgstr ""

msgid ""
"The update log is deprecated and replaced by the binary log; SET "
"SQL_LOG_UPDATE has been ignored"
msgstr ""

msgid ""
"The update log is deprecated and replaced by the binary log; SET "
"SQL_LOG_UPDATE has been translated to SET SQL_LOG_BIN"
msgstr ""

msgid "Query execution was interrupted"
msgstr ""

#, c-format
msgid "Incorrect number of arguments for %s %s; expected %u, got %u"
msgstr ""

#, c-format
msgid "Undefined CONDITION: %s"
msgstr ""

#, c-format
msgid "No RETURN found in FUNCTION %s"
msgstr ""

#, c-format
msgid "FUNCTION %s ended without RETURN"
msgstr ""

msgid "Cursor statement must be a SELECT"
msgstr ""

msgid "Cursor SELECT must not have INTO"
msgstr ""

#, c-format
msgid "Undefined CURSOR: %s"
msgstr ""

msgid "Cursor is already open"
msgstr ""

msgid "Cursor is not open"
msgstr ""

#, c-format
msgid "Undeclared variable: %s"
msgstr ""

msgid "Incorrect number of FETCH variables"
msgstr ""

msgid "No data - zero rows fetched, selected, or processed"
msgstr ""

#, c-format
msgid "Duplicate parameter: %s"
msgstr ""

#, c-format
msgid "Duplicate variable: %s"
msgstr ""

#, c-format
msgid "Duplicate condition: %s"
msgstr ""

#, c-format
msgid "Duplicate cursor: %s"
msgstr ""

#, c-format
msgid "Failed to ALTER %s %s"
msgstr ""

msgid "Subquery value not supported"
msgstr ""

#, c-format
msgid "%s is not allowed in stored function or trigger"
msgstr ""

msgid "Variable or condition declaration after cursor or handler declaration"
msgstr ""

msgid "Cursor declaration after handler declaration"
msgstr ""

msgid "Case not found for CASE statement"
msgstr ""

#, c-format
msgid "Configuration file '%-.192s' is too big"
msgstr ""

#, c-format
msgid "Malformed file type header in file '%-.192s'"
msgstr ""

#, c-format
msgid "Unexpected end of file while parsing comment '%-.200s'"
msgstr ""

#, c-format
msgid "Error while parsing parameter '%-.192s' (line: '%-.192s')"
msgstr ""

#, c-format
msgid "Unexpected end of file while skipping unknown parameter '%-.192s'"
msgstr ""

msgid "EXPLAIN/SHOW can not be issued; lacking privileges for underlying table"
msgstr ""

#, c-format
msgid "'%-.192s.%-.192s' is not %s"
msgstr ""

#, c-format
msgid "Column '%-.192s' is not updatable"
msgstr ""

msgid "View's SELECT contains a subquery in the FROM clause"
msgstr ""

#, c-format
msgid "View's SELECT contains a '%s' clause"
msgstr ""

msgid "View's SELECT contains a variable or parameter"
msgstr ""

#, c-format
msgid "View's SELECT refers to a temporary table '%-.192s'"
msgstr ""

msgid "View's SELECT and view's field list have different column counts"
msgstr ""

msgid ""
"View merge algorithm can't be used here for now (assumed undefined algorithm)"
msgstr ""

msgid "View being updated does not have complete key of underlying table in it"
msgstr ""

#, c-format
msgid ""
"View '%-.192s.%-.192s' references invalid table(s) or column(s) or function"
"(s) or definer/invoker of view lack rights to use them"
msgstr ""

#, c-format
msgid "Can't drop or alter a %s from within another stored routine"
msgstr ""

msgid "GOTO is not allowed in a stored procedure handler"
msgstr ""

msgid "Trigger already exists"
msgstr ""

msgid "Trigger does not exist"
msgstr ""

#, c-format
msgid "Trigger's '%-.192s' is view or temporary table"
msgstr ""

#, c-format
msgid "Updating of %s row is not allowed in %strigger"
msgstr ""

#, c-format
msgid "There is no %s row in %s trigger"
msgstr ""

#, c-format
msgid "Field '%-.192s' doesn't have a default value"
msgstr ""

msgid "Division by 0"
msgstr ""

#, c-format
msgid "Incorrect %-.32s value: '%-.128s' for column '%.192s' at row %u"
msgstr ""

#, c-format
msgid "Illegal %s '%-.192s' value found during parsing"
msgstr ""

#, c-format
msgid "CHECK OPTION on non-updatable view '%-.192s.%-.192s'"
msgstr ""

#, c-format
msgid "CHECK OPTION failed '%-.192s.%-.192s'"
msgstr ""

#, c-format
msgid "%-.16s command denied to user '%-.48s'@'%-.64s' for routine '%-.192s'"
msgstr ""

#, c-format
msgid "Failed purging old relay logs: %s"
msgstr ""

#, c-format
msgid "Password hash should be a %d-digit hexadecimal number"
msgstr ""

msgid "Target log not found in binlog index"
msgstr ""

msgid "I/O error reading log index file"
msgstr ""

msgid "Server configuration does not permit binlog purge"
msgstr ""

msgid "Failed on fseek()"
msgstr ""

msgid "Fatal error during log purge"
msgstr ""

msgid "A purgeable log is in use, will not purge"
msgstr ""

msgid "Unknown error during log purge"
msgstr ""

#, c-format
msgid "Failed initializing relay log position: %s"
msgstr ""

msgid "You are not using binary logging"
msgstr ""

#, c-format
msgid ""
"The '%-.64s' syntax is reserved for purposes internal to the Drizzle server"
msgstr ""

msgid "WSAStartup Failed"
msgstr ""

msgid "Can't handle procedures with different groups yet"
msgstr ""

msgid "Select must have a group with this procedure"
msgstr ""

msgid "Can't use ORDER clause with this procedure"
msgstr ""

#, c-format
msgid "Binary logging and replication forbid changing the global server %s"
msgstr ""

#, c-format
msgid "Can't map file: %-.200s, errno: %d"
msgstr ""

#, c-format
msgid "Wrong magic in %-.64s"
msgstr ""

msgid "Prepared statement contains too many placeholders"
msgstr ""

#, c-format
msgid "Key part '%-.192s' length cannot be 0"
msgstr ""

msgid "View text checksum failed"
msgstr ""

#, c-format
msgid ""
"Can not modify more than one base table through a join view '%-.192s.%-.192s'"
msgstr ""

#, c-format
msgid "Can not insert into join view '%-.192s.%-.192s' without fields list"
msgstr ""

#, c-format
msgid "Can not delete from join view '%-.192s.%-.192s'"
msgstr ""

#, c-format
msgid "Operation %s failed for %.256s"
msgstr ""

msgid "XAER_NOTA: Unknown XID"
msgstr ""

msgid "XAER_INVAL: Invalid arguments (or unsupported command)"
msgstr ""

#, c-format
msgid ""
"XAER_RMFAIL: The command cannot be executed when global transaction is in "
"the  %.64s state"
msgstr ""

msgid "XAER_OUTSIDE: Some work is done outside global transaction"
msgstr ""

msgid ""
"XAER_RMERR: Fatal error occurred in the transaction branch - check your data "
"for consistency"
msgstr ""

msgid "XA_RBROLLBACK: Transaction branch was rolled back"
msgstr ""

#, c-format
msgid ""
"There is no such grant defined for user '%-.48s' on host '%-.64s' on routine "
"'%-.192s'"
msgstr ""

msgid "Failed to grant EXECUTE and ALTER ROUTINE privileges"
msgstr ""

msgid "Failed to revoke all privileges to dropped routine"
msgstr ""

#, c-format
msgid "Data too long for column '%s' at row %ld"
msgstr ""

#, c-format
msgid "Bad SQLSTATE: '%s'"
msgstr ""

#, c-format
msgid ""
"%s: ready for connections.\n"
"Version: '%s' %s\n"
msgstr ""

msgid "Can't load value from file with fixed size rows to variable"
msgstr ""

msgid "You are not allowed to create a user with GRANT"
msgstr ""

#, c-format
msgid "Incorrect %-.32s value: '%-.128s' for function %-.32s"
msgstr ""

msgid "Table definition has changed, please retry transaction"
msgstr ""

msgid "Duplicate handler declared in the same block"
msgstr ""

#, c-format
msgid ""
"OUT or INOUT argument %d for routine %s is not a variable or NEW pseudo-"
"variable in BEFORE trigger"
msgstr ""

#, c-format
msgid "Not allowed to return a result set from a %s"
msgstr ""

msgid "Cannot get geometry object from data you send to the GEOMETRY field"
msgstr ""

msgid ""
"A routine failed and has neither NO SQL nor READS SQL DATA in its "
"declaration and binary logging is enabled; if non-transactional tables were "
"updated, the binary log will miss their changes"
msgstr ""

msgid ""
"This function has none of DETERMINISTIC, NO SQL, or READS SQL DATA in its "
"declaration and binary logging is enabled (you *might* want to use the less "
"safe log_bin_trust_function_creators variable)"
msgstr ""

msgid ""
"You do not have the SUPER privilege and binary logging is enabled (you "
"*might* want to use the less safe log_bin_trust_function_creators variable)"
msgstr ""

msgid ""
"You can't execute a prepared statement which has an open cursor associated "
"with it. Reset the statement to re-execute it."
msgstr ""

#, c-format
msgid "The statement (%lu) has no open cursor."
msgstr ""

msgid ""
"Explicit or implicit commit is not allowed in stored function or trigger."
msgstr ""

#, c-format
msgid ""
"Field of view '%-.192s.%-.192s' underlying table doesn't have a default value"
msgstr ""

msgid "Recursive stored functions and triggers are not allowed."
msgstr ""

#, c-format
msgid "Too big scale %d specified for column '%-.192s'. Maximum is %d."
msgstr ""

#, c-format
msgid "Too big precision %d specified for column '%-.192s'. Maximum is %d."
msgstr ""

#, c-format
msgid ""
"For float(M,D), double(M,D) or decimal(M,D), M must be >= D (column "
"'%-.192s')."
msgstr ""

msgid ""
"You can't combine write-locking of system tables with other tables or lock "
"types"
msgstr ""

#, c-format
msgid "Unable to connect to foreign data source: %.64s"
msgstr ""

#, c-format
msgid ""
"There was a problem processing the query on the foreign data source. Data "
"source error: %-.64s"
msgstr ""

#, c-format
msgid ""
"The foreign data source you are trying to reference does not exist. Data "
"source error:  %-.64s"
msgstr ""

#, c-format
msgid ""
"Can't create federated table. The data source connection string '%-.64s' is "
"not in the correct format"
msgstr ""

#, c-format
msgid "The data source connection string '%-.64s' is not in the correct format"
msgstr ""

#, c-format
msgid "Can't create federated table. Foreign data src error:  %-.64s"
msgstr ""

msgid "Trigger in wrong schema"
msgstr ""

#, c-format
msgid ""
"Thread stack overrun:  %ld bytes used of a %ld byte stack, and %ld bytes "
"needed.  Use 'drizzled -O thread_stack=#' to specify a bigger stack."
msgstr ""

#, c-format
msgid "Routine body for '%-.100s' is too long"
msgstr ""

msgid "Cannot drop default keycache"
msgstr ""

#, c-format
msgid "Display width out of range for column '%-.192s' (max = %d)"
msgstr ""

msgid "XAER_DUPID: The XID already exists"
msgstr ""

#, c-format
msgid "Datetime function: %-.32s field overflow"
msgstr ""

#, c-format
msgid ""
"Can't update table '%-.192s' in stored function/trigger because it is "
"already used by statement which invoked this stored function/trigger."
msgstr ""

#, c-format
msgid ""
"The definition of table '%-.192s' prevents operation %.192s on table "
"'%-.192s'."
msgstr ""

msgid ""
"The prepared statement contains a stored routine call that refers to that "
"same statement. It's not allowed to execute a prepared statement in such a "
"recursive manner"
msgstr ""

msgid "Not allowed to set autocommit from a stored function or trigger"
msgstr ""

msgid "Definer is not fully qualified"
msgstr ""

#, c-format
msgid ""
"View '%-.192s'.'%-.192s' has no definer information (old table format). "
"Current user is used as definer. Please recreate the view!"
msgstr ""

#, c-format
msgid ""
"You need the SUPER privilege for creation view with '%-.192s'@'%-.192s' "
"definer"
msgstr ""

#, c-format
msgid "The user specified as a definer ('%-.64s'@'%-.64s') does not exist"
msgstr ""

#, c-format
msgid "Changing schema from '%-.192s' to '%-.192s' is not allowed."
msgstr ""

#, c-format
msgid ""
"Cannot delete or update a parent row: a foreign key constraint fails (%.192s)"
msgstr ""

#, c-format
msgid ""
"Cannot add or update a child row: a foreign key constraint fails (%.192s)"
msgstr ""

#, c-format
msgid "Variable '%-.64s' must be quoted with `...`, or renamed"
msgstr ""

#, c-format
msgid ""
"No definer attribute for trigger '%-.192s'.'%-.192s'. The trigger will be "
"activated under the authorization of the invoker, which may have "
"insufficient privileges. Please recreate the trigger."
msgstr ""

#, c-format
msgid "'%-.192s' has an old format, you should re-create the '%s' object(s)"
msgstr ""

#, c-format
msgid ""
"Recursive limit %d (as set by the max_sp_recursion_depth variable) was "
"exceeded for routine %.192s"
msgstr ""

#, c-format
msgid ""
"Failed to load routine %-.192s. The table drizzle.proc is missing, corrupt, "
"or contains bad data (internal code %d)"
msgstr ""

#, c-format
msgid "Incorrect routine name '%-.192s'"
msgstr ""

#, c-format
msgid "Table upgrade required. Please do \"REPAIR TABLE `%-.32s`\" to fix it!"
msgstr ""

msgid "AGGREGATE is not supported for stored functions"
msgstr ""

#, c-format
msgid ""
"Can't create more than max_prepared_stmt_count statements (current value: %"
"lu)"
msgstr ""

#, c-format
msgid "`%-.192s`.`%-.192s` contains view recursion"
msgstr ""

#, c-format
msgid "non-grouping field '%-.192s' is used in %-.64s clause"
msgstr ""

msgid "The used table type doesn't support SPATIAL indexes"
msgstr ""

msgid "Triggers can not be created on system tables"
msgstr ""

#, c-format
msgid "Leading spaces are removed from name '%s'"
msgstr ""

msgid "Failed to read auto-increment value from storage engine"
msgstr ""

msgid "user name"
msgstr ""

msgid "host name"
msgstr ""

#, c-format
msgid "String '%-.70s' is too long for %s (should be no longer than %d)"
msgstr ""

#, c-format
msgid "The target table %-.100s of the %s is not insertable-into"
msgstr ""

#, c-format
msgid ""
"Table '%-.64s' is differently defined or of non-MyISAM type or doesn't exist"
msgstr ""

msgid "Too high level of nesting for select"
msgstr ""

#, c-format
msgid "Name '%-.64s' has become ''"
msgstr ""

msgid ""
"First character of the FIELDS TERMINATED string is ambiguous; please use non-"
"optional and non-empty FIELDS ENCLOSED BY"
msgstr ""

#, c-format
msgid "The foreign server, %s, you are trying to create already exists."
msgstr ""

#, c-format
msgid ""
"The foreign server name you are trying to reference does not exist. Data "
"source error:  %-.64s"
msgstr ""

#, c-format
msgid ""
"Table storage engine '%-.64s' does not support the create option '%.64s'"
msgstr ""

#, c-format
msgid ""
"Syntax error: %-.64s PARTITIONING requires definition of VALUES %-.64s for "
"each partition"
msgstr ""

#, c-format
msgid "Only %-.64s PARTITIONING can use VALUES %-.64s in partition definition"
msgstr ""

msgid "MAXVALUE can only be used in last partition definition"
msgstr ""

msgid "Subpartitions can only be hash partitions and by key"
msgstr ""

msgid "Must define subpartitions on all partitions if on one partition"
msgstr ""

msgid "Wrong number of partitions defined, mismatch with previous setting"
msgstr ""

msgid "Wrong number of subpartitions defined, mismatch with previous setting"
msgstr ""

msgid "Constant/Random expression in (sub)partitioning function is not allowed"
msgstr ""

msgid "Expression in RANGE/LIST VALUES must be constant"
msgstr ""

msgid "Field in list of fields for partition function not found in table"
msgstr ""

msgid "List of fields is only allowed in KEY partitions"
msgstr ""

msgid ""
"The partition info in the frm file is not consistent with what can be "
"written into the frm file"
msgstr ""

#, c-format
msgid "The %-.192s function returns the wrong type"
msgstr ""

#, c-format
msgid "For %-.64s partitions each partition must be defined"
msgstr ""

msgid "VALUES LESS THAN value must be strictly increasing for each partition"
msgstr ""

msgid "VALUES value must be of same type as partition function"
msgstr ""

msgid "Multiple definition of same constant in list partitioning"
msgstr ""

msgid "Partitioning can not be used stand-alone in query"
msgstr ""

msgid ""
"The mix of handlers in the partitions is not allowed in this version of "
"Drizzle"
msgstr ""

#, c-format
msgid "For the partitioned engine it is necessary to define all %-.64s"
msgstr ""

msgid "Too many partitions (including subpartitions) were defined"
msgstr ""

msgid ""
"It is only possible to mix RANGE/LIST partitioning with HASH/KEY "
"partitioning for subpartitioning"
msgstr ""

msgid "Failed to create specific handler file"
msgstr ""

msgid "A BLOB field is not allowed in partition function"
msgstr ""

#, c-format
msgid "A %-.192s must include all columns in the table's partitioning function"
msgstr ""

#, c-format
msgid "Number of %-.64s = 0 is not an allowed value"
msgstr ""

msgid "Partition management on a not partitioned table is not possible"
msgstr ""

msgid ""
"Foreign key condition is not yet supported in conjunction with partitioning"
msgstr ""

#, c-format
msgid "Error in list of partitions to %-.64s"
msgstr ""

msgid "Cannot remove all partitions, use DROP TABLE instead"
msgstr ""

msgid "COALESCE PARTITION can only be used on HASH/KEY partitions"
msgstr ""

msgid ""
"REORGANIZE PARTITION can only be used to reorganize partitions not to change "
"their numbers"
msgstr ""

msgid ""
"REORGANIZE PARTITION without parameters can only be used on auto-partitioned "
"tables using HASH PARTITIONs"
msgstr ""

#, c-format
msgid "%-.64s PARTITION can only be used on RANGE/LIST partitions"
msgstr ""

msgid "Trying to Add partition(s) with wrong number of subpartitions"
msgstr ""

msgid "At least one partition must be added"
msgstr ""

msgid "At least one partition must be coalesced"
msgstr ""

msgid "More partitions to reorganize than there are partitions"
msgstr ""

#, c-format
msgid "Duplicate partition name %-.192s"
msgstr ""

msgid "It is not allowed to shut off binlog on this command"
msgstr ""

msgid "When reorganizing a set of partitions they must be in consecutive order"
msgstr ""

msgid ""
"Reorganize of range partitions cannot change total ranges except for last "
"partition where it can extend the range"
msgstr ""

msgid "Partition function not supported in this version for this handler"
msgstr ""

msgid "Partition state cannot be defined from CREATE/ALTER TABLE"
msgstr ""

#, c-format
msgid "The %-.64s handler only supports 32 bit integers in VALUES"
msgstr ""

#, c-format
msgid "Plugin '%-.192s' is not loaded"
msgstr ""

#, c-format
msgid "Incorrect %-.32s value: '%-.128s'"
msgstr ""

#, c-format
msgid "Table has no partition for value %-.64s"
msgstr ""

#, c-format
msgid "It is not allowed to specify %s more than once"
msgstr ""

#, c-format
msgid "Failed to create %s"
msgstr ""

#, c-format
msgid "Failed to drop %s"
msgstr ""

msgid "The handler doesn't support autoextend of tablespaces"
msgstr ""

msgid ""
"A size parameter was incorrectly specified, either number or on the form 10M"
msgstr ""

msgid ""
"The size number was correct but we don't allow the digit part to be more "
"than 2 billion"
msgstr ""

#, c-format
msgid "Failed to alter: %s"
msgstr ""

msgid "Writing one row to the row-based binary log failed"
msgstr ""

#, c-format
msgid "Table definition on master and slave does not match: %s"
msgstr ""

msgid ""
"Slave running with --log-slave-updates must use row-based binary logging to "
"be able to replicate row-based binary log events"
msgstr ""

#, c-format
msgid "Event '%-.192s' already exists"
msgstr ""

#, c-format
msgid "Failed to store event %s. Error code %d from storage engine."
msgstr ""

#, c-format
msgid "Unknown event '%-.192s'"
msgstr ""

#, c-format
msgid "Failed to alter event '%-.192s'"
msgstr ""

msgid "INTERVAL is either not positive or too big"
msgstr ""

msgid "ENDS is either invalid or before STARTS"
msgstr ""

msgid "Event execution time is in the past. Event has been disabled"
msgstr ""

msgid "Failed to open drizzle.event"
msgstr ""

msgid "No datetime expression provided"
msgstr ""

#, c-format
msgid ""
"Column count of drizzle.%s is wrong. Expected %d, found %d. The table is "
"probably corrupted"
msgstr ""

#, c-format
msgid "Cannot load from drizzle.%s. The table is probably corrupted"
msgstr ""

msgid "Failed to delete the event from drizzle.event"
msgstr ""

msgid "Error during compilation of event's body"
msgstr ""

msgid "Same old and new event name"
msgstr ""

#, c-format
msgid "Data for column '%s' too long"
msgstr ""

#, c-format
msgid "Cannot drop index '%-.192s': needed in a foreign key constraint"
msgstr ""

#, c-format
msgid ""
"The syntax '%s' is deprecated and will be removed in Drizzle %s. Please use %"
"s instead"
msgstr ""

msgid "You can't write-lock a log table. Only read access is possible"
msgstr ""

msgid "You can't use locks with log tables."
msgstr ""

#, c-format
msgid ""
"Upholding foreign key constraints for table '%.192s', entry '%-.192s', key %"
"d would lead to a duplicate entry"
msgstr ""

#, c-format
msgid ""
"Column count of drizzle.%s is wrong. Expected %d, found %d. Created with "
"Drizzle %d, now running %d. Please use drizzle_upgrade to fix this error."
msgstr ""

msgid ""
"Cannot switch out of the row-based binary log format when the session has "
"open temporary tables"
msgstr ""

msgid ""
"Cannot change the binary logging format inside a stored function or trigger"
msgstr ""

msgid ""
"The NDB cluster engine does not support changing the binlog format on the "
"fly yet"
msgstr ""

msgid "Cannot create temporary table with partitions"
msgstr ""

msgid "Partition constant is out of partition function domain"
msgstr ""

msgid "This partition function is not allowed"
msgstr ""

msgid "Error in DDL log"
msgstr ""

msgid "Not allowed to use NULL value in VALUES LESS THAN"
msgstr ""

msgid "Incorrect partition name"
msgstr ""

msgid ""
"Transaction isolation level can't be changed while a transaction is in "
"progress"
msgstr ""

#, c-format
msgid ""
"ALTER TABLE causes auto_increment resequencing, resulting in duplicate entry "
"'%-.192s' for key '%-.192s'"
msgstr ""

#, c-format
msgid "Internal scheduler error %d"
msgstr ""

#, c-format
msgid "Error during starting/stopping of the scheduler. Error code %u"
msgstr ""

msgid "Engine cannot be used in partitioned tables"
msgstr ""

#, c-format
msgid "Cannot activate '%-.64s' log"
msgstr ""

msgid "The server was not built with row-based replication"
msgstr ""

msgid "Decoding of base64 string failed"
msgstr ""

msgid "Recursion of EVENT DDL statements is forbidden when body is present"
msgstr ""

msgid ""
"Cannot proceed because system tables used by Event Scheduler were found "
"damaged at server start"
msgstr ""

msgid "Only integers allowed as number here"
msgstr ""

msgid "This storage engine cannot be used for log tables"
msgstr ""

#, c-format
msgid "You cannot '%s' a log table if logging is enabled"
msgstr ""

#, c-format
msgid ""
"Cannot rename '%s'. When logging enabled, rename to/from log table must "
"rename two tables: the log table to an archive table and another table back "
"to '%s'"
msgstr ""

#, c-format
msgid "Incorrect parameter count in the call to native function '%-.192s'"
msgstr ""

#, c-format
msgid "Incorrect parameters in the call to native function '%-.192s'"
msgstr ""

#, c-format
msgid "Incorrect parameters in the call to stored function '%-.192s'"
msgstr ""

#, c-format
msgid "This function '%-.192s' has the same name as a native function"
msgstr ""

#, c-format
msgid "Duplicate entry '%-.64s' for key '%-.192s'"
msgstr ""

msgid "Too many files opened, please execute the command again"
msgstr ""

msgid ""
"Event execution time is in the past and ON COMPLETION NOT PRESERVE is set. "
"The event was dropped immediately after creation."
msgstr ""

#, c-format
msgid "The incident %s occurred on the master. Message: %-.64s"
msgstr ""

msgid "Table has no partition for some existing values"
msgstr ""

msgid "Statement is not safe to log in statement format."
msgstr ""

#, c-format
msgid "Fatal error: %s"
msgstr ""

#, c-format
msgid "Relay log read failure: %s"
msgstr ""

#, c-format
msgid "Relay log write failure: %s"
msgstr ""

#, c-format
msgid "Master command %s failed: %s"
msgstr ""

#, c-format
msgid "Binary logging not possible. Message: %s"
msgstr ""

#, c-format
msgid "View `%-.64s`.`%-.64s` has no creation context"
msgstr ""

#, c-format
msgid "Creation context of view `%-.64s`.`%-.64s' is invalid"
msgstr ""

#, c-format
msgid "Creation context of stored routine `%-.64s`.`%-.64s` is invalid"
msgstr ""

#, c-format
msgid "Corrupted TRG file for table `%-.64s`.`%-.64s`"
msgstr ""

#, c-format
msgid "Triggers for table `%-.64s`.`%-.64s` have no creation context"
msgstr ""

#, c-format
msgid "Trigger creation context of table `%-.64s`.`%-.64s` is invalid"
msgstr ""

#, c-format
msgid "Creation context of event `%-.64s`.`%-.64s` is invalid"
msgstr ""

#, c-format
msgid "Cannot open table for trigger `%-.64s`.`%-.64s`"
msgstr ""

#, c-format
msgid "Cannot create stored routine `%-.64s`. Check warnings"
msgstr ""

#, c-format
msgid "Ambiguous slave modes combination. %s"
msgstr ""

#, c-format
msgid ""
"The BINLOG statement of type `%s` was not preceded by a format description "
"BINLOG statement."
msgstr ""

msgid "Corrupted replication event was detected"
msgstr ""

#, c-format
msgid "Invalid column reference (%-.64s) in LOAD DATA"
msgstr ""

#, c-format
msgid "Being purged log %s was not found"
msgstr ""

#, c-format
msgid "Converted to non-transactional lock on '%-.64s'"
msgstr ""

#, c-format
msgid "Cannot convert to non-transactional lock in strict mode on '%-.64s'"
msgstr ""

#, c-format
msgid ""
"Cannot convert to non-transactional lock in an active transaction on '%-.64s'"
msgstr ""

#, c-format
msgid "Can't access storage engine of table %-.64s"
msgstr ""

msgid "Starting backup process"
msgstr ""

msgid "Backup completed"
msgstr ""

msgid "Starting restore process"
msgstr ""

msgid "Restore completed"
msgstr ""

msgid "Nothing to backup"
msgstr ""

#, c-format
msgid "Database '%-.64s' cannot be included in a backup"
msgstr ""

msgid ""
"Error during backup operation - server's error log contains more information "
"about the error"
msgstr ""

msgid ""
"Error during restore operation - server's error log contains more "
"information about the error"
msgstr ""

msgid ""
"Can't execute this command because another BACKUP/RESTORE operation is in "
"progress"
msgstr ""

msgid "Error when preparing for backup operation"
msgstr ""

msgid "Error when preparing for restore operation"
msgstr ""

#, c-format
msgid "Invalid backup location '%-.64s'"
msgstr ""

#, c-format
msgid "Can't read backup location '%-.64s'"
msgstr ""

#, c-format
msgid "Can't write to backup location '%-.64s' (file already exists?)"
msgstr ""

msgid "Can't enumerate server databases"
msgstr ""

msgid "Can't enumerate server tables"
msgstr ""

#, c-format
msgid "Can't enumerate tables in database %-.64s"
msgstr ""

#, c-format
msgid "Skipping view %-.64s in database %-.64s"
msgstr ""

#, c-format
msgid "Skipping table %-.64s since it has no valid storage engine"
msgstr ""

#, c-format
msgid "Can't open table %-.64s"
msgstr ""

msgid "Can't read backup archive preamble"
msgstr ""

msgid "Can't write backup archive preamble"
msgstr ""

#, c-format
msgid "Can't find backup driver for table %-.64s"
msgstr ""

#, c-format
msgid ""
"%-.64s backup driver was selected for table %-.64s but it rejects to handle "
"this table"
msgstr ""

#, c-format
msgid "Can't create %-.64s backup driver"
msgstr ""

#, c-format
msgid "Can't create %-.64s restore driver"
msgstr ""

#, c-format
msgid "Found %d images in backup archive but maximum %d are supported"
msgstr ""

#, c-format
msgid "Error when saving meta-data of %-.64s"
msgstr ""

msgid "Error when reading meta-data list"
msgstr ""

#, c-format
msgid "Can't create %-.64s"
msgstr ""

msgid "Can't allocate buffer for image data transfer"
msgstr ""

#, c-format
msgid "Error when writing %-.64s backup image data (for table #%d)"
msgstr ""

msgid "Error when reading data from backup stream"
msgstr ""

msgid "Can't go to the next chunk in backup stream"
msgstr ""

#, c-format
msgid "Can't initialize %-.64s backup driver"
msgstr ""

#, c-format
msgid "Can't initialize %-.64s restore driver"
msgstr ""

#, c-format
msgid "Can't shut down %-.64s backup driver"
msgstr ""

#, c-format
msgid "Can't shut down %-.64s backup driver(s)"
msgstr ""

#, c-format
msgid "%-.64s backup driver can't prepare for synchronization"
msgstr ""

#, c-format
msgid "%-.64s backup driver can't create its image validity point"
msgstr ""

#, c-format
msgid "Can't unlock %-.64s backup driver after creating the validity point"
msgstr ""

#, c-format
msgid "%-.64s backup driver can't cancel its backup operation"
msgstr ""

#, c-format
msgid "%-.64s restore driver can't cancel its restore operation"
msgstr ""

#, c-format
msgid "Error when polling %-.64s backup driver for its image data"
msgstr ""

#, c-format
msgid "Error when sending image data (for table #%d) to %-.64s restore driver"
msgstr ""

#, c-format
msgid ""
"After %d attempts %-.64s restore driver still can't accept next block of data"
msgstr ""

#, c-format
msgid "Open and lock tables failed in %-.64s"
msgstr ""

msgid "Backup driver's table locking thread can not be initialized."
msgstr ""

msgid ""
"Can't open the online backup progress tables. Check 'drizzle.online_backup' "
"and 'drizzle.online_backup_progress'."
msgstr ""

#, c-format
msgid "Tablespace '%-.192s' already exists"
msgstr ""

#, c-format
msgid "Tablespace '%-.192s' doesn't exist"
msgstr ""

#, c-format
msgid "Unexpected master's heartbeat data: %s"
msgstr ""

#, c-format
msgid "The requested value for the heartbeat period %s %s"
msgstr ""

#, c-format
msgid "Can't write to the online backup progress log %-.64s."
msgstr ""

#, c-format
msgid "Tablespace '%-.192s' not empty"
msgstr ""

#, c-format
msgid ""
"Tablespace `%-.64s` needed by tables being restored has changed on the "
"server. The original definition of the required tablespace is '%-.256s' "
"while the same tablespace is defined on the server as '%-.256s'"
msgstr ""

msgid "A virtual column cannot be based on a virtual column"
msgstr ""

#, c-format
msgid "Non-deterministic expression for virtual column '%s'."
msgstr ""

#, c-format
msgid ""
"Generated value for virtual column '%s' cannot be converted to type '%s'."
msgstr ""

msgid "Primary key cannot be defined upon a virtual column."
msgstr ""

msgid "Key/Index cannot be defined on a non-stored virtual column."
msgstr ""

#, c-format
msgid "Cannot define foreign key with %s clause on a virtual column."
msgstr ""

#, c-format
msgid "The value specified for virtual column '%s' in table '%s' ignored."
msgstr ""

#, c-format
msgid "'%s' is not yet supported for virtual columns."
msgstr ""

msgid "Constant expression in virtual column function is not allowed."
msgstr ""

msgid "Encountered an unknown temporal type."
msgstr ""

#, c-format
msgid "Received an invalid string format '%s' for a date value."
msgstr ""

#, c-format
msgid "Received an invalid string format '%s' for a time value."
msgstr ""

#, c-format
msgid "Received an invalid value '%s' for a UNIX timestamp."
msgstr ""

#, c-format
msgid "Received an invalid datetime value '%s'."
msgstr ""

#, c-format
msgid "Received a NULL argument for function '%s'."
msgstr ""

#, c-format
msgid "Received an invalid negative argument '%s' for function '%s'."
msgstr ""

#, c-format
msgid "Received an out-of-range argument '%s' for function '%s'."
msgstr ""

#, c-format
msgid "Received an invalid time value '%s'."
msgstr ""

#, c-format
msgid "Received an invalid enum value '%s'."
msgstr ""

msgid "Tables which are replicated require a primary key."
msgstr ""

#, c-format
msgid "Corrupt or invalid table definition: %s"
msgstr ""

#, c-format
msgid "Schema does not exist: %s"
msgstr ""

#, c-format
msgid "Error altering schema: %s"
msgstr ""

#, c-format
msgid "Error droppping Schema : %s"
msgstr ""

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

#, c-format
msgid "Error reading file '%s' (Errcode: %d)"
msgstr ""

#, c-format
msgid "Error writing file '%s' (Errcode: %d)"
msgstr "Błąd zapisu pliku '%s' (Kod błędu: %d)"

#, c-format
msgid "Error on close of '%s' (Errcode: %d)"
msgstr "Błąd konsoli '%s' (Kod błędu: %d)"

#, c-format
msgid "Out of memory (Needed %u bytes)"
msgstr "Brak pamięci (Potrzebne %u bajtów)"

#, c-format
msgid "Error on delete of '%s' (Errcode: %d)"
msgstr "Błąd podczas usuwania '%s' (Kod błędu: %d)"

#, c-format
msgid "Error on rename of '%s' to '%s' (Errcode: %d)"
msgstr "Błąd podczas zmiany nazwy z '%s' na '%s' (Kod błędu: %d)"

#, c-format
msgid "Unexpected eof found when reading file '%s' (Errcode: %d)"
msgstr ""
"Nieoczekiwane wystąpienie końca pliku podczas odczytu pliku '%s' (Kod błędu: "
"%d)"

#, c-format
msgid "Can't lock file (Errcode: %d)"
msgstr ""

#, c-format
msgid "Can't unlock file (Errcode: %d)"
msgstr ""

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

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

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

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

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

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

#, c-format
msgid "Warning: '%s' had %d links"
msgstr ""

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

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

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

#, c-format
msgid ""
"Character set '%s' is not a compiled character set and is not specified in "
"the %s file"
msgstr ""

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

#, c-format
msgid "Can't read value for symlink '%s' (Error %d)"
msgstr ""

#, c-format
msgid "Can't create symlink '%s' pointing at '%s' (Error %d)"
msgstr ""

#, c-format
msgid "Error on realpath() on '%s' (Error %d)"
msgstr ""

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

#, c-format
msgid ""
"Collation '%s' is not a compiled collation and is not specified in the %s "
"file"
msgstr ""

#, c-format
msgid "File '%s' not found (Errcode: %d)"
msgstr "Nie znaleziono pliku: '%s' (Kod błedu: %d)"

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

#, c-format
msgid "Unknown error %d"
msgstr ""

#, c-format
msgid "error: could not open directory: %s\n"
msgstr ""

#, c-format
msgid "Usage: %s TRANSACTION_LOG [--checksum] \n"
msgstr ""

#, c-format
msgid "Cannot open file: %s\n"
msgstr ""

#, c-format
msgid "Found a non-transaction message in log.  Currently, not supported.\n"
msgstr ""

#, c-format
msgid "Attempted to read record bigger than INT_MAX\n"
msgstr ""

#, c-format
msgid "Memory allocation failure trying to allocate %<PRIu64> bytes.\n"
msgstr ""

#, c-format
msgid "Could not read transaction message.\n"
msgstr ""

#, c-format
msgid "GPB ERROR: %s.\n"
msgstr ""

#, c-format
msgid ""
"HEXDUMP:\n"
"\n"
"%s\n"
msgstr ""

#, c-format
msgid "Unable to parse command. Got error: %s.\n"
msgstr ""

#, c-format
msgid "Checksum failed. Wanted %<PRIu32> got %<PRIu32>\n"
msgstr ""

#, c-format
msgid "Usage: %s TRANSACTION_LOG\n"
msgstr ""

msgid "Warning: "
msgstr ""

msgid "Info: "
msgstr ""

#, c-format
msgid "%s: %s: Option '%s' used, but is disabled\n"
msgstr ""

msgid "WARNING"
msgstr ""

msgid "ERROR"
msgstr ""

#, c-format
msgid "%s: ERROR: Option '-%c' used, but is disabled\n"
msgstr ""

#, c-format
msgid "Unknown suffix '%c' used for variable '%s' (value '%s')\n"
msgstr ""

#, c-format
msgid "%s: ERROR: Invalid decimal value for option '%s'\n"
msgstr ""

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

#, c-format
msgid ""
"\n"
"Variables (--variable-name=value)\n"
"and boolean options {false|true}  Value (after reading options)\n"
"--------------------------------- -----------------------------\n"
msgstr ""

msgid "(No default value)"
msgstr ""

msgid "true"
msgstr ""

msgid "false"
msgstr ""

#, c-format
msgid "(Disabled)\n"
msgstr ""

#, c-format
msgid "errmsg plugin '%s' errmsg() failed"
msgstr ""

#, fuzzy, c-format
msgid "A function named %s already exists!\n"
msgstr "Funkcja '%-.192s' już istnieje"

msgid "Could not add Function!\n"
msgstr ""

msgid "No sockets could be bound for listening"
msgstr ""

#, c-format
msgid "pipe() failed with errno %d"
msgstr ""

#, c-format
msgid "poll() failed with errno %d"
msgstr ""

#, c-format
msgid "accept() failed with errno %d"
msgstr ""

#, c-format
msgid "getaddrinfo() failed with error %s"
msgstr ""

#, c-format
msgid "setsockopt(IPV6_V6ONLY) failed with errno %d"
msgstr ""

#, c-format
msgid "fcntl(FD_CLOEXEC) failed with errno %d"
msgstr ""

#, c-format
msgid "setsockopt(SO_REUSEADDR) failed with errno %d"
msgstr ""

#, c-format
msgid "setsockopt(SO_KEEPALIVE) failed with errno %d"
msgstr ""

#, c-format
msgid "setsockopt(SO_LINGER) failed with errno %d"
msgstr ""

#, c-format
msgid "setsockopt(TCP_NODELAY) failed with errno %d"
msgstr ""

#, c-format
msgid "Retrying bind() on %u"
msgstr ""

#, c-format
msgid "bind() failed with errno: %d"
msgstr ""

msgid "Do you already have another drizzled running?"
msgstr ""

#, c-format
msgid "listen() failed with errno %d"
msgstr ""

#, c-format
msgid "Listening on %s:%s\n"
msgstr ""

#, c-format
msgid ""
"Plugin '%s' contains the name '%s' in its manifest, which has already been "
"registered.\n"
msgstr ""

#, c-format
msgid "Plugin '%s' init function returned error.\n"
msgstr ""

#, c-format
msgid "Couldn't load plugin library named '%s'.\n"
msgstr ""

#, c-format
msgid "Couldn't load plugin named '%s'.\n"
msgstr ""

msgid "Out of memory."
msgstr ""

#, c-format
msgid "Unknown variable type code 0x%x in plugin '%s'."
msgstr ""

#, c-format
msgid ""
"Server variable %s of plugin %s was forced to be read-only: string variable "
"without update_func and PLUGIN_VAR_MEMALLOC flag"
msgstr ""

#, c-format
msgid "Missing variable name in plugin '%s'."
msgstr "Brak nazwy zmiennej w pluginie '%s'."

#, c-format
msgid "Thread local variable '%s' not allocated in plugin '%s'."
msgstr ""

#, c-format
msgid "Out of memory for plugin '%s'."
msgstr ""

#, c-format
msgid "Bad options for plugin '%s'."
msgstr ""

#, c-format
msgid "Parsing options for plugin '%s' failed."
msgstr ""

#, c-format
msgid "Plugin '%s' has conflicting system variables"
msgstr ""

#, c-format
msgid "logging '%s' pre() failed"
msgstr ""

#, c-format
msgid "logging '%s' post() failed"
msgstr ""

#, c-format
msgid "logging '%s' postEnd() failed"
msgstr ""

#, c-format
msgid "qcache plugin '%s' try_fetch_and_send() failed"
msgstr ""

#, c-format
msgid "qcache plugin '%s' set() failed"
msgstr ""

#, c-format
msgid "qcache plugin '%s' invalidateTable() failed"
msgstr ""

#, c-format
msgid "qcache plugin '%s' invalidateDb() failed"
msgstr ""

#, c-format
msgid "qcache plugin '%s' flush() failed"
msgstr ""

#, c-format
msgid "Loading plugin %s failed: a plugin by that name already exists.\n"
msgstr ""

#, fuzzy, c-format
msgid "Fatal error: Failed initializing %s plugin.\n"
msgstr "Zainicjowanie wtyczek nieudane."

#, c-format
msgid ""
"Attempted to register a scheduler %s, but a scheduler has already been "
"registered with that name.\n"
msgstr ""

#, c-format
msgid "Attempted to configure %s as the scheduler, which did not exist.\n"
msgstr ""

#, c-format
msgid "Error while loading database options: '%s':"
msgstr "Błąd odczytu opcji bazy danych: '%s':"

#, c-format
msgid "Found %d prepared transaction(s) in resource manager."
msgstr ""

msgid "Starting crash recovery..."
msgstr ""

#, c-format
msgid "Found %d prepared XA transactions"
msgstr ""

#, c-format
msgid ""
"Found %d prepared transactions! It means that drizzled was not shut down "
"properly last time and critical recovery information (last binlog or %s "
"file) was manually deleted after a crash. You have to start drizzled with "
"the --tc-heuristic-recover switch to commit or rollback pending transactions."
msgstr ""

msgid "Crash recovery finished."
msgstr ""

#, c-format
msgid "Could not remove temporary table: '%s', error: %d"
msgstr "Nieudana próba usunięcia tabeli tymczasowej: '%s', błąd: %d"

#, fuzzy, c-format
msgid "Variable named %s already exists!\n"
msgstr "Tabela '%-.192s' już istnieje"

#, fuzzy, c-format
msgid "Could not add Variable: %s\n"
msgstr "Nie można znaleźć tabeli: \"%s\""

#, c-format
msgid "Table %s had a open data Cursor in reopen_table"
msgstr ""

#, c-format
msgid "Unknown - internal error %d during operation"
msgstr ""

#, c-format
msgid ""
"order_st BY ignored because there is a user-defined clustered index in the "
"table '%-.192s'"
msgstr ""

#, 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 ""

#, c-format
msgid "Unknown collation '%s' in table '%-.64s' definition"
msgstr "Nieznany zestaw '%s' w definicji tabeli '%-.64s'"

#, c-format
msgid ""
"Table '%-.64s' was created with a different version of Drizzle and cannot be "
"read"
msgstr ""

#, c-format
msgid "Got error %d when reading table '%s'"
msgstr "Wystąpił błąd %d podczas odczytu tabeli '%s'"

#, c-format
msgid "Fatal error: Illegal or unknown default time zone '%s'"
msgstr "Błąd krytyczny: Niedozwolona lub nieznana domyślna strefa czasowa '%s'"

#, c-format
msgid "%s: option `%s' is ambiguous\n"
msgstr ""

#, c-format
msgid "%s: option `--%s' doesn't allow an argument\n"
msgstr ""

#, c-format
msgid "%s: option `%c%s' doesn't allow an argument\n"
msgstr ""

#, c-format
msgid "%s: option `%s' requires an argument\n"
msgstr ""

#, c-format
msgid "%s: unrecognized option `--%s'\n"
msgstr ""

#, c-format
msgid "%s: unrecognized option `%c%s'\n"
msgstr ""

#, c-format
msgid "%s: illegal option -- %c\n"
msgstr ""

#, c-format
msgid "%s: invalid option -- %c\n"
msgstr ""

#, c-format
msgid "%s: option requires an argument -- %c\n"
msgstr ""

#, c-format
msgid "%s: option `-W %s' is ambiguous\n"
msgstr ""

#, c-format
msgid "%s: option `-W %s' doesn't allow an argument\n"
msgstr ""

msgid "Enable HTTP Auth check"
msgstr ""

msgid "URL for HTTP Auth check"
msgstr ""

msgid "Enable the console."
msgstr ""

msgid "Turn on extra debugging."
msgstr ""

msgid "User to use for auth."
msgstr ""

msgid "Password to use for auth."
msgstr ""

#, fuzzy
msgid "Default database to use."
msgstr "Baza danych do użycia"

msgid "Enable default replicator"
msgstr ""

msgid "Default Replicator"
msgstr ""

#, fuzzy
msgid ""
"Port number to use for connection or 0 for default to, in order of "
"preference, drizzle.cnf, $DRIZZLE_TCP_PORT, built-in default (4427)."
msgstr ""
"Numer portu użytego do połączenia lub 0 jako domyślne, według ustawień w "
"drizzle.cnf, $DRIZZLE_TCP_PORT "

msgid "Connect Timeout."
msgstr ""

msgid "Read Timeout."
msgstr ""

msgid "Write Timeout."
msgstr ""

msgid "Retry Count."
msgstr ""

msgid "Buffer length."
msgstr ""

#, fuzzy
msgid "Address to bind to."
msgstr "Adres IP do powiązania"

msgid "Unknown Drizzle error"
msgstr "Nieznany błąd Drizzle"

#, c-format
msgid "Can't create UNIX socket (%d)"
msgstr "Nieudana próba utworzenia UNIXowego gniazda (%d)"

#, c-format
msgid "Can't connect to local Drizzle server through socket '%-.100s' (%d)"
msgstr "Połączenie do lokalnego serwera Drizzle przez gniazdo '%-.100s' (%d)"

#, c-format
msgid "Can't connect to Drizzle server on '%-.100s:%lu' (%d)"
msgstr ""

#, c-format
msgid "Can't create TCP/IP socket (%d)"
msgstr "Nieudana próba utworzenia gniazda TCP/IP (%d)"

#, c-format
msgid "Unknown Drizzle server host '%-.100s' (%d)"
msgstr "Nieznany host serwera Drizzle '%-.100s' (%d)"

msgid "Drizzle server has gone away"
msgstr ""

#, c-format
msgid "Protocol mismatch; server version = %d, client version = %d"
msgstr ""

msgid "Drizzle client ran out of memory"
msgstr "Brak wystarczającej pamięci dla klienta Drizzle"

msgid "Wrong host info"
msgstr "Nieprawidłowe informacje hosta"

msgid "Localhost via UNIX socket"
msgstr ""

#, c-format
msgid "%-.100s via TCP/IP"
msgstr "%-.100s przez TCP/IP"

msgid "Error in server handshake"
msgstr ""

msgid "Lost connection to Drizzle server during query"
msgstr ""
"Połączenie z serwerm Drizzle zostało przerwane w trakcie wykonywania "
"zapytania."

msgid "Commands out of sync; you can't run this command now"
msgstr ""

#, c-format
msgid "Named pipe: %-.32s"
msgstr ""

#, c-format
msgid "Can't wait for named pipe to host: %-.64s  pipe: %-.32s (%lu)"
msgstr ""

#, c-format
msgid "Can't open named pipe to host: %-.64s  pipe: %-.32s (%lu)"
msgstr ""

#, c-format
msgid "Can't set state of named pipe to host: %-.64s  pipe: %-.32s (%lu)"
msgstr ""

#, c-format
msgid "Can't initialize character set %-.32s (path: %-.100s)"
msgstr "Nieudana próba zainicjowania zestawu znaków %-.32s  (ścieżka: %-.100s)"

msgid "Got packet bigger than 'max_allowed_packet' bytes"
msgstr ""

msgid "Embedded server"
msgstr "Serwer wbudowany"

msgid "Error on SHOW SLAVE STATUS:"
msgstr ""

msgid "Error on SHOW SLAVE HOSTS:"
msgstr ""

msgid "Error connecting to slave:"
msgstr ""

msgid "Error connecting to master:"
msgstr ""

msgid "SSL connection error"
msgstr "Błąd połączenia SSL"

msgid "Malformed packet"
msgstr "Przekłamany pakiet"

msgid "(unused error message)"
msgstr "(nieużywany komunikat błędu)"

msgid "Invalid use of null pointer"
msgstr ""

msgid "Statement not prepared"
msgstr ""

msgid "No data supplied for parameters in prepared statement"
msgstr "Nie podano danych dla parametrów w przygotowanej instrukcji"

msgid "Data truncated"
msgstr "Wyczyszczono bazę danych."

msgid "No parameters exist in the statement"
msgstr "Brak parametrów w instrukcji"

msgid "Invalid parameter number"
msgstr "Niepoprawny numer parametru"

#, c-format
msgid ""
"Can't send long data for non-string/non-binary data types (parameter: %d)"
msgstr ""

#, c-format
msgid "Using unsupported buffer type: %d  (parameter: %d)"
msgstr "Użycie nieobsługiwanego typu bufora: %d (parametr: %d)"

#, c-format
msgid "Shared memory: %-.100s"
msgstr "Pamięć współdzielona: %-.100s"

msgid "Wrong or unknown protocol"
msgstr "Niepoprawny lub nieznany protokół"

msgid "Invalid connection handle"
msgstr "Niepoprawny uchwyt połączenia"

msgid ""
"Connection using old (pre-4.1.1) authentication protocol refused (client "
"option 'secure_auth' enabled)"
msgstr ""
"Odmowa połączenia używającego starego (przed 4.1.1) protokołu autetyfikacji "
"(włączona opcja klienta 'secure_auth')"

msgid "Row retrieval was canceled by drizzle_stmt_close() call"
msgstr ""

msgid "Attempt to read column without prior row fetch"
msgstr ""

msgid "Prepared statement contains no metadata"
msgstr ""

msgid ""
"Attempt to read a row while there is no result set associated with the "
"statement"
msgstr ""

msgid "This feature is not implemented yet"
msgstr "Ta funkcja nie jest jeszcze zaimplementowana"

#, c-format
msgid ""
"Lost connection to Drizzle server while waiting for initial communication "
"packet, system error: %d"
msgstr ""
"Utracono połączenie z serwerem Drizzle podczas oczekiwania na pakiet "
"inicjujący komunikację, błąd systemu: %d"

#, c-format
msgid ""
"Lost connection to Drizzle server while reading initial communication "
"packet, system error: %d"
msgstr ""
"Utracono połączenie z serwerem Drizzle podczas odczytu pakietu inicjującego "
"komunikację, błąd systemu: %d"

#, c-format
msgid ""
"Lost connection to Drizzle server while sending authentication information, "
"system error: %d"
msgstr ""
"Utracono połączenie z serwerem Drizzle podczas wysyłania pakietu "
"inicjującego komunikację, błąd systemu: %d"

#, c-format
msgid ""
"Lost connection to Drizzle server while reading authorization information, "
"system error: %d"
msgstr ""
"Utracono połączenie z serwerem Drizzle podczas odczytu informacji "
"autoryzacyjnych, błąd systemu: %d"

#, c-format
msgid ""
"Lost connection to Drizzle server while setting initial database, system "
"error: %d"
msgstr ""

#, c-format
msgid "Statement closed indirectly because of a preceding %s() call"
msgstr ""

#, c-format
msgid "Failed to send error message to libnotify\n"
msgstr ""

msgid "Error Messages to stderr"
msgstr ""

msgid "Enable filtered replicator"
msgstr ""

msgid "List of schemas to filter"
msgstr ""

msgid "List of tables to filter"
msgstr ""

msgid "Regular expression to apply to schemas to filter"
msgstr ""

msgid "Regular expression to apply to tables to filter"
msgstr ""

msgid "Filtered Replicator"
msgstr ""

#, c-format
msgid "fail gearman_client_create(): %s"
msgstr ""

#, c-format
msgid "fail gearman_client_add_server(): %s"
msgstr ""

msgid "Enable logging to a gearman server"
msgstr ""

msgid "Hostname for logging to a Gearman server"
msgstr ""

msgid "Gearman Function to send logging to"
msgstr ""

msgid "Log queries to a Gearman server"
msgstr ""

#, c-format
msgid "fail open() fn=%s er=%s\n"
msgstr ""

msgid "Enable logging to CSV file"
msgstr ""

msgid "File to log to"
msgstr ""

msgid "PCRE to match the query against"
msgstr ""

msgid "Threshold for logging slow queries, in microseconds"
msgstr ""

msgid "Threshold for logging big queries, for rows returned"
msgstr ""

msgid "Threshold for logging big queries, for rows examined"
msgstr ""

msgid "Log queries to a CSV file"
msgstr ""

#, c-format
msgid "syslog facility \"%s\" not known, using \"local0\""
msgstr ""

#, c-format
msgid "syslog priority \"%s\" not known, using \"info\""
msgstr ""

msgid "Enable logging to syslog"
msgstr ""

msgid "Syslog Ident"
msgstr ""

msgid "Syslog Facility"
msgstr ""

msgid "Syslog Priority"
msgstr ""

msgid "Log to syslog"
msgstr ""

msgid "List of memcached servers."
msgstr ""

msgid "Memcached Stats as I_S tables"
msgstr ""

#, c-format
msgid "Got an error from thread_id=%<PRIu64>, %s:%d"
msgstr ""

#, c-format
msgid "Got an error from unknown thread, %s:%d"
msgstr ""

msgid "Unknown thread accessing table"
msgstr ""

msgid "Block size to be used for MyISAM index pages."
msgstr ""

msgid ""
"This characterizes the number of hits a hot block has to be untouched until "
"it is considered aged enough to be downgraded to a warm block. This "
"specifies the percentage ratio of that number of hits to the total number of "
"blocks in key cache"
msgstr ""

msgid "The minimum percentage of warm blocks in key cache"
msgstr ""

msgid ""
"The size of the buffer used for index blocks for MyISAM tables. Increase "
"this to get better index handling (for all reads and multiple writes) to as "
"much as you can afford;"
msgstr ""

msgid ""
"Number of threads to use when repairing MyISAM tables. The value of 1 "
"disables parallel repair."
msgstr ""

msgid ""
"Don't use the fast sort index method to created index if the temporary file "
"would get bigger than this."
msgstr ""

msgid ""
"The buffer that is allocated when sorting the index when doing a REPAIR or "
"when creating indexes with CREATE INDEX or ALTER TABLE."
msgstr ""

msgid "Default pointer size to be used for MyISAM tables."
msgstr ""

msgid "Didn't find key on read or update"
msgstr ""

msgid "Duplicate key on write or update"
msgstr ""

msgid "Internal (unspecified) error in handler"
msgstr ""

msgid ""
"Someone has changed the row since it was read (while the table was locked to "
"prevent it)"
msgstr ""

msgid "Wrong index given to function"
msgstr ""

msgid "Undefined handler error 125"
msgstr ""

msgid "Index file is crashed"
msgstr ""

msgid "Record file is crashed"
msgstr ""

msgid "Out of memory in engine"
msgstr ""

msgid "Undefined handler error 129"
msgstr ""

msgid "Incorrect file format"
msgstr ""

msgid "Command not supported by database"
msgstr ""

msgid "Old database file"
msgstr ""

msgid "No record read before update"
msgstr ""

msgid "Record was already deleted (or record file crashed)"
msgstr ""

msgid "No more room in record file"
msgstr ""

msgid "No more room in index file"
msgstr ""

msgid "No more records (read after end of file)"
msgstr ""

msgid "Unsupported extension used for table"
msgstr ""

msgid "Too big row"
msgstr ""

msgid "Wrong create options"
msgstr ""

msgid "Duplicate unique key or constraint on write or update"
msgstr ""

msgid "Unknown character set used in table"
msgstr ""

msgid "Conflicting table definitions in sub-tables of MERGE table"
msgstr ""

msgid "Table is crashed and last repair failed"
msgstr ""

msgid "Table was marked as crashed and should be repaired"
msgstr ""

msgid "Lock timed out; Retry transaction"
msgstr ""

msgid "Lock table is full;  Restart program with a larger locktable"
msgstr ""

msgid "Updates are not allowed under a read only transactions"
msgstr ""

msgid "Lock deadlock; Retry transaction"
msgstr ""

msgid "Foreign key constraint is incorrectly formed"
msgstr ""

msgid "Cannot add a child row"
msgstr ""

msgid "Cannot delete a parent row"
msgstr ""

msgid "No savepoint with that name"
msgstr ""

msgid "Non unique key block size"
msgstr ""

msgid "The table does not exist in engine"
msgstr ""

msgid "The table already existed in storage engine"
msgstr ""

msgid "Could not connect to storage engine"
msgstr ""

msgid "Unexpected null pointer found when using spatial index"
msgstr ""

msgid "The table changed in storage engine"
msgstr ""

msgid "There's no partition in table for the given value"
msgstr ""

msgid "Row-based binlogging of row failed"
msgstr ""

msgid "Index needed in foreign key constraint"
msgstr ""

msgid "Upholding foreign key constraints would lead to a duplicate key error"
msgstr ""

msgid "Table needs to be upgraded before it can be used"
msgstr "Przed użyciem tabeli należy ją zaktualizować"

msgid "Table is read only"
msgstr "Tabela tylko do odczytu."

msgid "Failed to get next auto increment value"
msgstr ""

msgid "Failed to set row auto increment value"
msgstr ""

msgid "Unknown (generic) error from engine"
msgstr "Nieznany błąd silnika"

msgid "Record is the same"
msgstr ""

msgid "It is not possible to log this statement"
msgstr ""

msgid "Tablespace exists"
msgstr "Tablespace już istnieje"

msgid "The event was corrupt, leading to illegal data being read"
msgstr ""

msgid "The table is of a new format not supported by this version"
msgstr ""

msgid "The event could not be processed no other handler error happened"
msgstr ""

msgid "Got a fatal error during initialzation of handler"
msgstr "Błąd krytyczny podczas próby zainicjowania procecdury obsługi."

msgid "File to short; Expected more data in file"
msgstr "Plik zbyt mały; Oczekiwano więcej danych w pliku"

msgid "Read page with wrong checksum"
msgstr "Strona posiada złą sumę kontrolną"

msgid "Lock or active transaction"
msgstr ""

msgid "No such table space"
msgstr ""

msgid "Tablespace not empty"
msgstr "Tablespace nie jest pusta"

#, fuzzy
msgid ""
"Port number to use for connection or 0 for default to with MySQL protocol."
msgstr ""
"Numer portu użytego do połączenia lub 0 jako domyślne, według ustawień w "
"drizzle.cnf, $DRIZZLE_TCP_PORT "

#, c-format
msgid "Can't create interrupt-thread (error %d, errno: %d)"
msgstr ""

#, c-format
msgid "Unable to create background worker thread. Got error %s.\n"
msgstr ""

#, c-format
msgid "Failed to allocate the TransactionLog instance.  Got error: %s\n"
msgstr ""

#, c-format
msgid "Failed to initialize the Transaction Log.  Got error: %s\n"
msgstr ""

#, c-format
msgid "Failed to allocate the TransactionLogApplier instance.  Got error: %s\n"
msgstr ""

#, c-format
msgid "Failed to allocate the TransactionLogIndex instance.  Got error: %s\n"
msgstr ""

#, c-format
msgid "Failed to initialize the Transaction Log Index.  Got error: %s\n"
msgstr ""

msgid "Enable transaction log"
msgstr ""

msgid "DEBUGGING - Truncate transaction log"
msgstr ""

#, fuzzy
msgid "Path to the file to use for transaction log"
msgstr "Do połączenia używaj pliku."

msgid "Enable CRC32 Checksumming of each written transaction log entry"
msgstr ""

msgid ""
"0 == rely on operating system to sync log file (default), 1 == sync file at "
"each transaction write, 2 == sync log file once per second"
msgstr ""

#, c-format
msgid ""
"Failed to allocate enough memory to buffer header, transaction message, and "
"trailing checksum bytes. Tried to allocate %<PRId64> bytes.  Error: %s\n"
msgstr ""

msgid "Failed to open transaction log file "
msgstr ""

#, c-format
msgid ""
"Failed to write full size of log entry.  Tried to write %<PRId64> bytes at "
"offset %<PRId64>, but only wrote %<PRId32> bytes.  Error: %s\n"
msgstr ""

#, c-format
msgid "Failed to sync log file. Got error: %s\n"
msgstr ""

#, c-format
msgid "Failed to open transaction log file %s.  Got error: %s\n"
msgstr ""

#, c-format
msgid "Raw buffer read: %s.\n"
msgstr ""

#, c-format
msgid "Unable to parse transaction. Got error: %s.\n"
msgstr ""

#, c-format
msgid "BUFFER: %s\n"
msgstr ""

#~ msgid "Check memory and open file usage at exit ."
#~ msgstr "Sprawdź pamięć, po czym otwórz używany używany plik."

#~ msgid "Print some debug info at exit."
#~ msgstr "Wyświetl informacje debugera przy wyjściu."

#~ msgid "Can't init databases"
#~ msgstr "Inicjacja baz danych nieudana"

#~ msgid "Default storage engine (%s) is not available"
#~ msgstr "Domyślny silnik magazynowania (%s) jest niedostępny"

#~ msgid "Lock drizzled in memory."
#~ msgstr "Zablokuj drizzled w pamięci"

#~ msgid "Couldn't repair table: %s.%s"
#~ msgstr "Nieudana próba naprawy tabeli: %s.%s"

#~ msgid "plugin-load parameter too long"
#~ msgstr "Parametr plugin-load jest za długi"

#~ msgid "Set the default character set."
#~ msgstr "Ustawia domyślny zestaw znaków."

#~ msgid "Unknown command '\\%c'."
#~ msgstr "Nierozpoznana komenda '\\%c'."