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
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
5873
5874
5875
5876
5877
5878
5879
5880
5881
5882
5883
5884
5885
5886
5887
5888
5889
5890
5891
5892
5893
5894
5895
5896
5897
5898
5899
5900
5901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914
5915
5916
5917
5918
5919
5920
5921
5922
5923
5924
5925
5926
5927
5928
5929
5930
5931
5932
5933
5934
5935
5936
5937
5938
5939
5940
5941
5942
5943
5944
5945
5946
5947
5948
5949
5950
5951
5952
5953
5954
5955
5956
5957
5958
5959
5960
5961
5962
5963
5964
5965
5966
5967
5968
5969
5970
5971
5972
5973
5974
5975
5976
5977
5978
5979
5980
5981
5982
5983
5984
5985
5986
5987
5988
5989
5990
5991
5992
5993
5994
5995
5996
5997
5998
5999
6000
6001
6002
6003
6004
6005
6006
6007
6008
6009
6010
6011
6012
6013
6014
6015
6016
6017
6018
6019
6020
6021
6022
6023
6024
6025
6026
6027
6028
6029
6030
6031
6032
6033
6034
6035
6036
6037
6038
6039
6040
6041
6042
6043
6044
6045
6046
6047
6048
6049
6050
6051
6052
6053
6054
6055
6056
6057
6058
6059
6060
6061
6062
6063
6064
6065
6066
6067
6068
6069
6070
6071
6072
6073
6074
6075
6076
6077
6078
6079
6080
6081
6082
6083
6084
6085
6086
6087
6088
6089
6090
6091
6092
6093
6094
6095
6096
6097
6098
6099
6100
6101
6102
6103
6104
6105
6106
6107
6108
6109
6110
6111
6112
6113
6114
6115
6116
6117
6118
6119
6120
6121
6122
6123
6124
6125
6126
6127
6128
6129
6130
6131
6132
6133
6134
6135
6136
6137
6138
6139
6140
6141
6142
6143
6144
6145
6146
6147
6148
6149
6150
6151
6152
6153
6154
6155
6156
6157
6158
6159
6160
6161
6162
6163
6164
6165
6166
6167
6168
6169
6170
6171
6172
6173
6174
6175
6176
6177
6178
6179
6180
6181
6182
6183
6184
6185
6186
6187
6188
6189
6190
6191
6192
6193
6194
6195
6196
6197
6198
6199
6200
6201
6202
6203
6204
6205
6206
6207
6208
6209
6210
6211
6212
6213
6214
6215
6216
6217
6218
6219
6220
6221
6222
6223
6224
6225
6226
6227
6228
6229
6230
6231
6232
6233
6234
6235
6236
6237
6238
6239
6240
6241
6242
6243
6244
6245
6246
6247
6248
6249
6250
6251
6252
6253
6254
6255
6256
6257
6258
6259
6260
6261
6262
6263
6264
6265
6266
6267
6268
6269
6270
6271
6272
6273
6274
6275
6276
6277
6278
6279
6280
6281
6282
6283
6284
6285
6286
6287
6288
6289
6290
6291
6292
6293
6294
6295
6296
6297
6298
6299
6300
6301
6302
6303
6304
6305
6306
6307
6308
6309
6310
6311
6312
6313
6314
6315
6316
6317
6318
6319
6320
6321
6322
6323
6324
6325
6326
6327
6328
6329
6330
6331
6332
6333
6334
6335
6336
6337
6338
6339
6340
6341
6342
6343
6344
6345
6346
6347
6348
6349
6350
6351
6352
6353
6354
6355
6356
6357
6358
6359
6360
6361
6362
6363
6364
6365
6366
6367
6368
6369
6370
6371
6372
6373
6374
6375
6376
6377
6378
6379
6380
6381
6382
6383
6384
6385
6386
6387
6388
6389
6390
6391
6392
6393
6394
6395
6396
6397
6398
6399
6400
6401
6402
6403
6404
6405
6406
6407
6408
6409
6410
6411
6412
6413
6414
6415
6416
6417
6418
6419
6420
6421
6422
6423
6424
6425
6426
6427
6428
6429
6430
6431
6432
6433
6434
6435
6436
6437
6438
6439
6440
6441
6442
6443
6444
6445
6446
6447
6448
6449
6450
6451
6452
6453
6454
6455
6456
6457
6458
6459
6460
6461
6462
6463
6464
6465
6466
6467
6468
6469
6470
6471
6472
6473
6474
6475
6476
6477
6478
6479
6480
6481
6482
6483
6484
6485
6486
6487
6488
6489
6490
6491
6492
6493
6494
6495
6496
6497
6498
6499
6500
6501
6502
6503
6504
6505
6506
6507
6508
6509
6510
6511
6512
6513
6514
6515
6516
6517
6518
6519
6520
6521
6522
6523
6524
6525
6526
6527
6528
6529
6530
6531
6532
6533
6534
6535
6536
6537
6538
6539
6540
6541
6542
6543
6544
6545
6546
6547
6548
6549
6550
6551
6552
6553
6554
6555
6556
6557
6558
6559
6560
6561
6562
6563
6564
6565
6566
6567
6568
6569
6570
6571
6572
6573
6574
6575
6576
6577
6578
6579
6580
6581
6582
6583
6584
6585
6586
6587
6588
6589
6590
6591
6592
6593
6594
6595
6596
6597
6598
6599
6600
6601
6602
6603
6604
6605
6606
6607
6608
6609
6610
6611
6612
6613
6614
6615
6616
6617
6618
6619
6620
6621
6622
6623
6624
6625
6626
6627
6628
6629
6630
6631
6632
6633
6634
6635
6636
6637
6638
6639
6640
6641
6642
6643
6644
6645
6646
6647
6648
6649
6650
6651
6652
6653
6654
6655
6656
6657
6658
6659
6660
6661
6662
6663
6664
6665
6666
6667
6668
6669
6670
6671
6672
6673
6674
6675
6676
6677
6678
6679
6680
6681
6682
6683
6684
6685
6686
6687
6688
6689
6690
6691
6692
6693
6694
6695
6696
6697
6698
6699
6700
6701
6702
6703
6704
6705
6706
6707
6708
6709
6710
6711
6712
6713
6714
6715
6716
6717
6718
6719
6720
6721
6722
6723
6724
6725
6726
6727
6728
6729
6730
6731
6732
6733
6734
6735
6736
6737
6738
6739
6740
6741
6742
6743
6744
6745
6746
6747
6748
6749
6750
6751
6752
6753
6754
6755
6756
6757
6758
6759
6760
6761
6762
6763
6764
6765
6766
6767
6768
6769
6770
6771
6772
6773
6774
6775
6776
6777
6778
6779
6780
6781
6782
6783
6784
6785
6786
6787
6788
6789
6790
6791
6792
6793
6794
6795
6796
6797
6798
6799
6800
6801
6802
6803
6804
6805
6806
6807
6808
6809
6810
6811
6812
6813
6814
6815
6816
6817
6818
6819
6820
6821
6822
6823
6824
6825
6826
6827
6828
6829
6830
6831
6832
6833
6834
6835
6836
6837
6838
6839
6840
6841
6842
6843
6844
6845
6846
6847
6848
6849
6850
6851
6852
6853
6854
6855
6856
6857
6858
6859
6860
6861
6862
6863
6864
6865
6866
6867
6868
6869
6870
6871
6872
6873
6874
6875
6876
6877
6878
6879
6880
6881
6882
6883
6884
6885
6886
6887
6888
6889
6890
6891
6892
6893
6894
6895
6896
6897
6898
6899
6900
6901
6902
6903
6904
6905
6906
6907
6908
6909
6910
6911
6912
6913
6914
6915
6916
6917
6918
6919
6920
6921
6922
6923
6924
6925
6926
6927
6928
6929
6930
6931
6932
6933
6934
6935
6936
6937
6938
6939
6940
6941
6942
6943
6944
6945
6946
6947
6948
6949
6950
6951
6952
6953
6954
6955
6956
6957
6958
6959
6960
6961
6962
6963
6964
6965
6966
6967
6968
6969
6970
6971
6972
6973
6974
6975
6976
6977
6978
6979
6980
6981
6982
6983
6984
6985
6986
6987
6988
6989
6990
6991
6992
6993
6994
6995
6996
6997
6998
6999
7000
7001
7002
7003
7004
7005
7006
7007
7008
7009
7010
7011
7012
7013
7014
7015
7016
7017
7018
7019
7020
7021
7022
7023
7024
7025
7026
7027
7028
7029
7030
7031
7032
7033
7034
7035
7036
7037
7038
7039
7040
7041
7042
7043
7044
7045
7046
7047
7048
7049
7050
7051
7052
7053
7054
7055
7056
7057
7058
7059
7060
7061
7062
7063
7064
7065
7066
7067
7068
7069
7070
7071
7072
7073
7074
7075
7076
|
# Russian message translation file for psql
# Copyright (C) 2001-2016 PostgreSQL Global Development Group
# This file is distributed under the same license as the PostgreSQL package.
# Serguei A. Mokhov <mokhov@cs.concordia.ca>, 2001-2005.
# Oleg Bartunov <oleg@sai.msu.su>, 2004-2005.
# Sergey Burladyan <eshkinkot@gmail.com>, 2012.
# Alexander Lakhin <exclusion@gmail.com>, 2012-2017, 2018, 2019, 2020, 2021, 2022.
# Maxim Yablokov <m.yablokov@postgrespro.ru>, 2021.
msgid ""
msgstr ""
"Project-Id-Version: psql (PostgreSQL current)\n"
"Report-Msgid-Bugs-To: pgsql-bugs@lists.postgresql.org\n"
"POT-Creation-Date: 2022-05-07 06:06+0300\n"
"PO-Revision-Date: 2022-05-07 06:32+0300\n"
"Last-Translator: Alexander Lakhin <exclusion@gmail.com>\n"
"Language-Team: Russian <pgsql-ru-general@postgresql.org>\n"
"Language: ru\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%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
#: ../../../src/common/logging.c:259
#, c-format
msgid "fatal: "
msgstr "важно: "
#: ../../../src/common/logging.c:266
#, c-format
msgid "error: "
msgstr "ошибка: "
#: ../../../src/common/logging.c:273
#, c-format
msgid "warning: "
msgstr "предупреждение: "
#: ../../common/exec.c:141 ../../common/exec.c:258 ../../common/exec.c:304
#, c-format
msgid "could not identify current directory: %m"
msgstr "не удалось определить текущий каталог: %m"
#: ../../common/exec.c:160
#, c-format
msgid "invalid binary \"%s\""
msgstr "неверный исполняемый файл \"%s\""
#: ../../common/exec.c:210
#, c-format
msgid "could not read binary \"%s\""
msgstr "не удалось прочитать исполняемый файл \"%s\""
#: ../../common/exec.c:218
#, c-format
msgid "could not find a \"%s\" to execute"
msgstr "не удалось найти запускаемый файл \"%s\""
#: ../../common/exec.c:274 ../../common/exec.c:313
#, c-format
msgid "could not change directory to \"%s\": %m"
msgstr "не удалось перейти в каталог \"%s\": %m"
#: ../../common/exec.c:291
#, c-format
msgid "could not read symbolic link \"%s\": %m"
msgstr "не удалось прочитать символическую ссылку \"%s\": %m"
#: ../../common/exec.c:414
#, c-format
msgid "%s() failed: %m"
msgstr "ошибка в %s(): %m"
#: ../../common/exec.c:527 ../../common/exec.c:572 ../../common/exec.c:664
#: command.c:1315 command.c:3254 command.c:3303 command.c:3420 input.c:227
#: mainloop.c:81 mainloop.c:402
#, c-format
msgid "out of memory"
msgstr "нехватка памяти"
#: ../../common/fe_memutils.c:35 ../../common/fe_memutils.c:75
#: ../../common/fe_memutils.c:98 ../../common/fe_memutils.c:162
#, c-format
msgid "out of memory\n"
msgstr "нехватка памяти\n"
#: ../../common/fe_memutils.c:92 ../../common/fe_memutils.c:154
#, c-format
msgid "cannot duplicate null pointer (internal error)\n"
msgstr "попытка дублирования нулевого указателя (внутренняя ошибка)\n"
#: ../../common/username.c:43
#, c-format
msgid "could not look up effective user ID %ld: %s"
msgstr "выяснить эффективный идентификатор пользователя (%ld) не удалось: %s"
#: ../../common/username.c:45 command.c:565
msgid "user does not exist"
msgstr "пользователь не существует"
#: ../../common/username.c:60
#, c-format
msgid "user name lookup failure: error code %lu"
msgstr "распознать имя пользователя не удалось (код ошибки: %lu)"
#: ../../common/wait_error.c:45
#, c-format
msgid "command not executable"
msgstr "неисполняемая команда"
#: ../../common/wait_error.c:49
#, c-format
msgid "command not found"
msgstr "команда не найдена"
#: ../../common/wait_error.c:54
#, c-format
msgid "child process exited with exit code %d"
msgstr "дочерний процесс завершился с кодом возврата %d"
#: ../../common/wait_error.c:62
#, c-format
msgid "child process was terminated by exception 0x%X"
msgstr "дочерний процесс прерван исключением 0x%X"
#: ../../common/wait_error.c:66
#, c-format
msgid "child process was terminated by signal %d: %s"
msgstr "дочерний процесс завершён по сигналу %d: %s"
#: ../../common/wait_error.c:72
#, c-format
msgid "child process exited with unrecognized status %d"
msgstr "дочерний процесс завершился с нераспознанным состоянием %d"
#: ../../fe_utils/cancel.c:189 ../../fe_utils/cancel.c:238
msgid "Cancel request sent\n"
msgstr "Сигнал отмены отправлен\n"
#: ../../fe_utils/cancel.c:190 ../../fe_utils/cancel.c:239
msgid "Could not send cancel request: "
msgstr "Отправить сигнал отмены не удалось: "
#: ../../fe_utils/print.c:336
#, c-format
msgid "(%lu row)"
msgid_plural "(%lu rows)"
msgstr[0] "(%lu строка)"
msgstr[1] "(%lu строки)"
msgstr[2] "(%lu строк)"
#: ../../fe_utils/print.c:3040
#, c-format
msgid "Interrupted\n"
msgstr "Прервано\n"
#: ../../fe_utils/print.c:3104
#, c-format
msgid "Cannot add header to table content: column count of %d exceeded.\n"
msgstr ""
"Ошибка добавления заголовка таблицы: превышен предел числа столбцов (%d).\n"
#: ../../fe_utils/print.c:3144
#, c-format
msgid "Cannot add cell to table content: total cell count of %d exceeded.\n"
msgstr ""
"Ошибка добавления ячейки в таблицу: превышен предел числа ячеек (%d).\n"
#: ../../fe_utils/print.c:3402
#, c-format
msgid "invalid output format (internal error): %d"
msgstr "неверный формат вывода (внутренняя ошибка): %d"
#: ../../fe_utils/psqlscan.l:697
#, c-format
msgid "skipping recursive expansion of variable \"%s\""
msgstr "рекурсивное расширение переменной \"%s\" пропускается"
#: command.c:230
#, c-format
msgid "invalid command \\%s"
msgstr "неверная команда \\%s"
#: command.c:232
#, c-format
msgid "Try \\? for help."
msgstr "Введите \\? для получения справки."
#: command.c:250
#, c-format
msgid "\\%s: extra argument \"%s\" ignored"
msgstr "\\%s: лишний аргумент \"%s\" пропущен"
#: command.c:302
#, c-format
msgid "\\%s command ignored; use \\endif or Ctrl-C to exit current \\if block"
msgstr ""
"команда \\%s игнорируется; добавьте \\endif или нажмите Ctrl-C для "
"завершения текущего блока \\if"
#: command.c:563
#, c-format
msgid "could not get home directory for user ID %ld: %s"
msgstr "не удалось получить домашний каталог пользователя c ид. %ld: %s"
#: command.c:581
#, c-format
msgid "\\%s: could not change directory to \"%s\": %m"
msgstr "\\%s: не удалось перейти в каталог \"%s\": %m"
#: command.c:606
#, c-format
msgid "You are currently not connected to a database.\n"
msgstr "В данный момент вы не подключены к базе данных.\n"
#: command.c:616
#, c-format
msgid ""
"You are connected to database \"%s\" as user \"%s\" on address \"%s\" at "
"port \"%s\".\n"
msgstr ""
"Вы подключены к базе данных \"%s\" как пользователь \"%s\" (адрес сервера "
"\"%s\", порт \"%s\").\n"
#: command.c:619
#, c-format
msgid ""
"You are connected to database \"%s\" as user \"%s\" via socket in \"%s\" at "
"port \"%s\".\n"
msgstr ""
"Вы подключены к базе данных \"%s\" как пользователь \"%s\" через сокет в \"%s"
"\", порт \"%s\".\n"
#: command.c:625
#, c-format
msgid ""
"You are connected to database \"%s\" as user \"%s\" on host \"%s\" (address "
"\"%s\") at port \"%s\".\n"
msgstr ""
"Вы подключены к базе данных \"%s\" как пользователь \"%s\" (сервер \"%s\": "
"адрес \"%s\", порт \"%s\").\n"
#: command.c:628
#, c-format
msgid ""
"You are connected to database \"%s\" as user \"%s\" on host \"%s\" at port "
"\"%s\".\n"
msgstr ""
"Вы подключены к базе данных \"%s\" как пользователь \"%s\" (сервер \"%s\", "
"порт \"%s\").\n"
#: command.c:1012 command.c:1121 command.c:2610
#, c-format
msgid "no query buffer"
msgstr "нет буфера запросов"
#: command.c:1045 command.c:5312
#, c-format
msgid "invalid line number: %s"
msgstr "неверный номер строки: %s"
#: command.c:1112
#, c-format
msgid "The server (version %s) does not support editing function source."
msgstr ""
"Сервер (версия %s) не поддерживает редактирование исходного кода функции."
#: command.c:1115
#, c-format
msgid "The server (version %s) does not support editing view definitions."
msgstr ""
"Сервер (версия %s) не поддерживает редактирование определения представления."
#: command.c:1197
msgid "No changes"
msgstr "Изменений нет"
#: command.c:1276
#, c-format
msgid "%s: invalid encoding name or conversion procedure not found"
msgstr ""
"%s: неверное название кодировки символов или не найдена процедура "
"перекодировки"
#: command.c:1311 command.c:2063 command.c:3250 command.c:3442 command.c:5414
#: common.c:174 common.c:223 common.c:392 common.c:1248 common.c:1276
#: common.c:1385 common.c:1492 common.c:1530 copy.c:488 copy.c:709 help.c:62
#: large_obj.c:157 large_obj.c:192 large_obj.c:254 startup.c:298
#, c-format
msgid "%s"
msgstr "%s"
#: command.c:1318
msgid "There is no previous error."
msgstr "Ошибки не было."
#: command.c:1431
#, c-format
msgid "\\%s: missing right parenthesis"
msgstr "\\%s: отсутствует правая скобка"
#: command.c:1608 command.c:1913 command.c:1927 command.c:1944 command.c:2114
#: command.c:2350 command.c:2577 command.c:2617
#, c-format
msgid "\\%s: missing required argument"
msgstr "отсутствует необходимый аргумент \\%s"
#: command.c:1739
#, c-format
msgid "\\elif: cannot occur after \\else"
msgstr "\\elif не может находиться после \\else"
#: command.c:1744
#, c-format
msgid "\\elif: no matching \\if"
msgstr "\\elif без соответствующего \\if"
#: command.c:1808
#, c-format
msgid "\\else: cannot occur after \\else"
msgstr "\\else не может находиться после \\else"
#: command.c:1813
#, c-format
msgid "\\else: no matching \\if"
msgstr "\\else без соответствующего \\if"
#: command.c:1853
#, c-format
msgid "\\endif: no matching \\if"
msgstr "\\endif без соответствующего \\if"
#: command.c:2008
msgid "Query buffer is empty."
msgstr "Буфер запроса пуст."
#: command.c:2045
#, c-format
msgid "Enter new password for user \"%s\": "
msgstr "Введите новый пароль для пользователя \"%s\": "
#: command.c:2048
msgid "Enter it again: "
msgstr "Повторите его: "
#: command.c:2052
#, c-format
msgid "Passwords didn't match."
msgstr "Пароли не совпадают."
#: command.c:2143
#, c-format
msgid "\\%s: could not read value for variable"
msgstr "\\%s: не удалось прочитать значение переменной"
#: command.c:2246
msgid "Query buffer reset (cleared)."
msgstr "Буфер запроса сброшен (очищен)."
#: command.c:2268
#, c-format
msgid "Wrote history to file \"%s\".\n"
msgstr "История записана в файл \"%s\".\n"
#: command.c:2355
#, c-format
msgid "\\%s: environment variable name must not contain \"=\""
msgstr "\\%s: имя переменной окружения не может содержать знак \"=\""
#: command.c:2407
#, c-format
msgid "The server (version %s) does not support showing function source."
msgstr "Сервер (версия %s) не поддерживает вывод исходного кода функции."
#: command.c:2410
#, c-format
msgid "The server (version %s) does not support showing view definitions."
msgstr "Сервер (версия %s) не поддерживает вывод определения представлений."
#: command.c:2417
#, c-format
msgid "function name is required"
msgstr "требуется имя функции"
#: command.c:2419
#, c-format
msgid "view name is required"
msgstr "требуется имя представления"
#: command.c:2549
msgid "Timing is on."
msgstr "Секундомер включён."
#: command.c:2551
msgid "Timing is off."
msgstr "Секундомер выключен."
#: command.c:2636 command.c:2664 command.c:3881 command.c:3884 command.c:3887
#: command.c:3893 command.c:3895 command.c:3921 command.c:3931 command.c:3943
#: command.c:3957 command.c:3984 command.c:4042 common.c:70 copy.c:331
#: copy.c:403 psqlscanslash.l:784 psqlscanslash.l:795 psqlscanslash.l:805
#, c-format
msgid "%s: %m"
msgstr "%s: %m"
#: command.c:3055 startup.c:237 startup.c:287
msgid "Password: "
msgstr "Пароль: "
#: command.c:3060 startup.c:284
#, c-format
msgid "Password for user %s: "
msgstr "Пароль пользователя %s: "
#: command.c:3112
#, c-format
msgid ""
"Do not give user, host, or port separately when using a connection string"
msgstr ""
"Не указывайте пользователя, сервер или порт отдельно, когда используете "
"строку подключения"
#: command.c:3147
#, c-format
msgid "No database connection exists to re-use parameters from"
msgstr ""
"Нет подключения к базе, из которого можно было бы использовать параметры"
#: command.c:3448
#, c-format
msgid "Previous connection kept"
msgstr "Сохранено предыдущее подключение"
#: command.c:3454
#, c-format
msgid "\\connect: %s"
msgstr "\\connect: %s"
#: command.c:3510
#, c-format
msgid ""
"You are now connected to database \"%s\" as user \"%s\" on address \"%s\" at "
"port \"%s\".\n"
msgstr ""
"Сейчас вы подключены к базе данных \"%s\" как пользователь \"%s\" (адрес "
"сервера \"%s\", порт \"%s\").\n"
#: command.c:3513
#, c-format
msgid ""
"You are now connected to database \"%s\" as user \"%s\" via socket in \"%s\" "
"at port \"%s\".\n"
msgstr ""
"Вы подключены к базе данных \"%s\" как пользователь \"%s\" через сокет в \"%s"
"\", порт \"%s\".\n"
#: command.c:3519
#, c-format
msgid ""
"You are now connected to database \"%s\" as user \"%s\" on host \"%s"
"\" (address \"%s\") at port \"%s\".\n"
msgstr ""
"Сейчас вы подключены к базе данных \"%s\" как пользователь \"%s\" (сервер "
"\"%s\": адрес \"%s\", порт \"%s\").\n"
#: command.c:3522
#, c-format
msgid ""
"You are now connected to database \"%s\" as user \"%s\" on host \"%s\" at "
"port \"%s\".\n"
msgstr ""
"Вы подключены к базе данных \"%s\" как пользователь \"%s\" (сервер \"%s\", "
"порт \"%s\").\n"
#: command.c:3527
#, c-format
msgid "You are now connected to database \"%s\" as user \"%s\".\n"
msgstr "Вы подключены к базе данных \"%s\" как пользователь \"%s\".\n"
#: command.c:3567
#, c-format
msgid "%s (%s, server %s)\n"
msgstr "%s (%s, сервер %s)\n"
#: command.c:3575
#, c-format
msgid ""
"WARNING: %s major version %s, server major version %s.\n"
" Some psql features might not work.\n"
msgstr ""
"ПРЕДУПРЕЖДЕНИЕ: %s имеет базовую версию %s, а сервер - %s.\n"
" Часть функций psql может не работать.\n"
#: command.c:3614
#, c-format
msgid "SSL connection (protocol: %s, cipher: %s, bits: %s, compression: %s)\n"
msgstr "SSL-соединение (протокол: %s, шифр: %s, бит: %s, сжатие: %s)\n"
#: command.c:3615 command.c:3616 command.c:3617
msgid "unknown"
msgstr "неизвестно"
#: command.c:3618 help.c:45
msgid "off"
msgstr "выкл."
#: command.c:3618 help.c:45
msgid "on"
msgstr "вкл."
#: command.c:3632
#, c-format
msgid "GSSAPI-encrypted connection\n"
msgstr "Соединение зашифровано GSSAPI\n"
#: command.c:3652
#, c-format
msgid ""
"WARNING: Console code page (%u) differs from Windows code page (%u)\n"
" 8-bit characters might not work correctly. See psql reference\n"
" page \"Notes for Windows users\" for details.\n"
msgstr ""
"ПРЕДУПРЕЖДЕНИЕ: Кодовая страница консоли (%u) отличается от основной\n"
" страницы Windows (%u).\n"
" 8-битовые (русские) символы могут отображаться некорректно.\n"
" Подробнее об этом смотрите документацию psql, раздел\n"
" \"Notes for Windows users\".\n"
#: command.c:3757
#, c-format
msgid ""
"environment variable PSQL_EDITOR_LINENUMBER_ARG must be set to specify a "
"line number"
msgstr ""
"в переменной окружения PSQL_EDITOR_LINENUMBER_ARG должен быть указан номер "
"строки"
#: command.c:3786
#, c-format
msgid "could not start editor \"%s\""
msgstr "не удалось запустить редактор \"%s\""
#: command.c:3788
#, c-format
msgid "could not start /bin/sh"
msgstr "не удалось запустить /bin/sh"
#: command.c:3838
#, c-format
msgid "could not locate temporary directory: %s"
msgstr "не удалось найти временный каталог: %s"
#: command.c:3865
#, c-format
msgid "could not open temporary file \"%s\": %m"
msgstr "не удалось открыть временный файл \"%s\": %m"
#: command.c:4201
#, c-format
msgid "\\pset: ambiguous abbreviation \"%s\" matches both \"%s\" and \"%s\""
msgstr ""
"\\pset: неоднозначному сокращению \"%s\" соответствует и \"%s\", и \"%s\""
#: command.c:4221
#, c-format
msgid ""
"\\pset: allowed formats are aligned, asciidoc, csv, html, latex, latex-"
"longtable, troff-ms, unaligned, wrapped"
msgstr ""
"\\pset: допустимые форматы: aligned, asciidoc, csv, html, latex, latex-"
"longtable, troff-ms, unaligned, wrapped"
#: command.c:4240
#, c-format
msgid "\\pset: allowed line styles are ascii, old-ascii, unicode"
msgstr "\\pset: допустимые стили линий: ascii, old-ascii, unicode"
#: command.c:4255
#, c-format
msgid "\\pset: allowed Unicode border line styles are single, double"
msgstr "\\pset: допустимые стили Unicode-линий границ: single, double"
#: command.c:4270
#, c-format
msgid "\\pset: allowed Unicode column line styles are single, double"
msgstr "\\pset: допустимые стили Unicode-линий столбцов: single, double"
#: command.c:4285
#, c-format
msgid "\\pset: allowed Unicode header line styles are single, double"
msgstr "\\pset: допустимые стили Unicode-линий заголовков: single, double"
#: command.c:4328
#, c-format
msgid "\\pset: csv_fieldsep must be a single one-byte character"
msgstr "\\pset: символ csv_fieldsep должен быть однобайтовым"
#: command.c:4333
#, c-format
msgid ""
"\\pset: csv_fieldsep cannot be a double quote, a newline, or a carriage "
"return"
msgstr ""
"\\pset: в качестве csv_fieldsep нельзя выбрать символ кавычек, новой строки "
"или возврата каретки"
#: command.c:4470 command.c:4658
#, c-format
msgid "\\pset: unknown option: %s"
msgstr "неизвестный параметр \\pset: %s"
#: command.c:4490
#, c-format
msgid "Border style is %d.\n"
msgstr "Стиль границ: %d.\n"
#: command.c:4496
#, c-format
msgid "Target width is unset.\n"
msgstr "Ширина вывода сброшена.\n"
#: command.c:4498
#, c-format
msgid "Target width is %d.\n"
msgstr "Ширина вывода: %d.\n"
#: command.c:4505
#, c-format
msgid "Expanded display is on.\n"
msgstr "Расширенный вывод включён.\n"
#: command.c:4507
#, c-format
msgid "Expanded display is used automatically.\n"
msgstr "Расширенный вывод применяется автоматически.\n"
#: command.c:4509
#, c-format
msgid "Expanded display is off.\n"
msgstr "Расширенный вывод выключен.\n"
#: command.c:4515
#, c-format
msgid "Field separator for CSV is \"%s\".\n"
msgstr "Разделитель полей для CSV: \"%s\".\n"
#: command.c:4523 command.c:4531
#, c-format
msgid "Field separator is zero byte.\n"
msgstr "Разделитель полей - нулевой байт.\n"
#: command.c:4525
#, c-format
msgid "Field separator is \"%s\".\n"
msgstr "Разделитель полей: \"%s\".\n"
#: command.c:4538
#, c-format
msgid "Default footer is on.\n"
msgstr "Строка итогов включена.\n"
#: command.c:4540
#, c-format
msgid "Default footer is off.\n"
msgstr "Строка итогов выключена.\n"
#: command.c:4546
#, c-format
msgid "Output format is %s.\n"
msgstr "Формат вывода: %s.\n"
#: command.c:4552
#, c-format
msgid "Line style is %s.\n"
msgstr "Установлен стиль линий: %s.\n"
#: command.c:4559
#, c-format
msgid "Null display is \"%s\".\n"
msgstr "Null выводится как: \"%s\".\n"
#: command.c:4567
#, c-format
msgid "Locale-adjusted numeric output is on.\n"
msgstr "Локализованный вывод чисел включён.\n"
#: command.c:4569
#, c-format
msgid "Locale-adjusted numeric output is off.\n"
msgstr "Локализованный вывод чисел выключен.\n"
#: command.c:4576
#, c-format
msgid "Pager is used for long output.\n"
msgstr "Постраничник используется для вывода длинного текста.\n"
#: command.c:4578
#, c-format
msgid "Pager is always used.\n"
msgstr "Постраничник используется всегда.\n"
#: command.c:4580
#, c-format
msgid "Pager usage is off.\n"
msgstr "Постраничник выключен.\n"
#: command.c:4586
#, c-format
msgid "Pager won't be used for less than %d line.\n"
msgid_plural "Pager won't be used for less than %d lines.\n"
msgstr[0] "Постраничник не будет использоваться, если строк меньше %d\n"
msgstr[1] "Постраничник не будет использоваться, если строк меньше %d\n"
msgstr[2] "Постраничник не будет использоваться, если строк меньше %d\n"
#: command.c:4596 command.c:4606
#, c-format
msgid "Record separator is zero byte.\n"
msgstr "Разделитель записей - нулевой байт.\n"
#: command.c:4598
#, c-format
msgid "Record separator is <newline>.\n"
msgstr "Разделитель записей: <новая строка>.\n"
#: command.c:4600
#, c-format
msgid "Record separator is \"%s\".\n"
msgstr "Разделитель записей: \"%s\".\n"
#: command.c:4613
#, c-format
msgid "Table attributes are \"%s\".\n"
msgstr "Атрибуты HTML-таблицы: \"%s\".\n"
#: command.c:4616
#, c-format
msgid "Table attributes unset.\n"
msgstr "Атрибуты HTML-таблицы не заданы.\n"
#: command.c:4623
#, c-format
msgid "Title is \"%s\".\n"
msgstr "Заголовок: \"%s\".\n"
#: command.c:4625
#, c-format
msgid "Title is unset.\n"
msgstr "Заголовок не задан.\n"
#: command.c:4632
#, c-format
msgid "Tuples only is on.\n"
msgstr "Режим вывода только кортежей включён.\n"
#: command.c:4634
#, c-format
msgid "Tuples only is off.\n"
msgstr "Режим вывода только кортежей выключен.\n"
#: command.c:4640
#, c-format
msgid "Unicode border line style is \"%s\".\n"
msgstr "Стиль Unicode-линий границ: \"%s\".\n"
#: command.c:4646
#, c-format
msgid "Unicode column line style is \"%s\".\n"
msgstr "Стиль Unicode-линий столбцов: \"%s\".\n"
#: command.c:4652
#, c-format
msgid "Unicode header line style is \"%s\".\n"
msgstr "Стиль Unicode-линий границ: \"%s\".\n"
#: command.c:4885
#, c-format
msgid "\\!: failed"
msgstr "\\!: ошибка"
#: command.c:4910 common.c:652
#, c-format
msgid "\\watch cannot be used with an empty query"
msgstr "\\watch нельзя использовать с пустым запросом"
#: command.c:4951
#, c-format
msgid "%s\t%s (every %gs)\n"
msgstr "%s\t%s (обновление: %g с)\n"
#: command.c:4954
#, c-format
msgid "%s (every %gs)\n"
msgstr "%s (обновление: %g с)\n"
#: command.c:5008 command.c:5015 common.c:552 common.c:559 common.c:1231
#, c-format
msgid ""
"********* QUERY **********\n"
"%s\n"
"**************************\n"
"\n"
msgstr ""
"********* ЗАПРОС *********\n"
"%s\n"
"**************************\n"
"\n"
#: command.c:5207
#, c-format
msgid "\"%s.%s\" is not a view"
msgstr "\"%s.%s\" — не представление"
#: command.c:5223
#, c-format
msgid "could not parse reloptions array"
msgstr "не удалось разобрать массив reloptions"
#: common.c:159
#, c-format
msgid "cannot escape without active connection"
msgstr "экранирование строк не работает без подключения к БД"
#: common.c:200
#, c-format
msgid "shell command argument contains a newline or carriage return: \"%s\""
msgstr ""
"аргумент команды оболочки содержит символ новой строки или перевода каретки: "
"\"%s\""
#: common.c:304
#, c-format
msgid "connection to server was lost"
msgstr "подключение к серверу было потеряно"
#: common.c:308
#, c-format
msgid "The connection to the server was lost. Attempting reset: "
msgstr "Подключение к серверу потеряно. Попытка восстановления "
#: common.c:313
#, c-format
msgid "Failed.\n"
msgstr "неудачна.\n"
#: common.c:330
#, c-format
msgid "Succeeded.\n"
msgstr "удачна.\n"
#: common.c:382 common.c:949 common.c:1166
#, c-format
msgid "unexpected PQresultStatus: %d"
msgstr "неожиданное значение PQresultStatus: %d"
#: common.c:491
#, c-format
msgid "Time: %.3f ms\n"
msgstr "Время: %.3f мс\n"
#: common.c:506
#, c-format
msgid "Time: %.3f ms (%02d:%06.3f)\n"
msgstr "Время: %.3f мс (%02d:%06.3f)\n"
#: common.c:515
#, c-format
msgid "Time: %.3f ms (%02d:%02d:%06.3f)\n"
msgstr "Время: %.3f мс (%02d:%02d:%06.3f)\n"
#: common.c:522
#, c-format
msgid "Time: %.3f ms (%.0f d %02d:%02d:%06.3f)\n"
msgstr "Время: %.3f мс (%.0f д. %02d:%02d:%06.3f)\n"
#: common.c:546 common.c:604 common.c:1202 describe.c:6296
#, c-format
msgid "You are currently not connected to a database."
msgstr "В данный момент вы не подключены к базе данных."
#: common.c:659
#, c-format
msgid "\\watch cannot be used with COPY"
msgstr "\\watch нельзя использовать с COPY"
#: common.c:664
#, c-format
msgid "unexpected result status for \\watch"
msgstr "неожиданное состояние результата для \\watch"
#: common.c:694
#, c-format
msgid ""
"Asynchronous notification \"%s\" with payload \"%s\" received from server "
"process with PID %d.\n"
msgstr ""
"Получено асинхронное уведомление \"%s\" с сообщением-нагрузкой \"%s\" от "
"серверного процесса с PID %d.\n"
#: common.c:697
#, c-format
msgid ""
"Asynchronous notification \"%s\" received from server process with PID %d.\n"
msgstr ""
"Получено асинхронное уведомление \"%s\" от серверного процесса с PID %d.\n"
#: common.c:730 common.c:747
#, c-format
msgid "could not print result table: %m"
msgstr "не удалось вывести таблицу результатов: %m"
#: common.c:768
#, c-format
msgid "no rows returned for \\gset"
msgstr "сервер не возвратил строк для \\gset"
#: common.c:773
#, c-format
msgid "more than one row returned for \\gset"
msgstr "сервер возвратил больше одной строки для \\gset"
#: common.c:791
#, c-format
msgid "attempt to \\gset into specially treated variable \"%s\" ignored"
msgstr "попытка выполнить \\gset со специальной переменной \"%s\" игнорируется"
#: common.c:1211
#, c-format
msgid ""
"***(Single step mode: verify "
"command)*******************************************\n"
"%s\n"
"***(press return to proceed or enter x and return to "
"cancel)********************\n"
msgstr ""
"***(Пошаговый режим: проверка "
"команды)******************************************\n"
"%s\n"
"***(Enter - выполнение; x и Enter - отмена)**************\n"
#: common.c:1266
#, c-format
msgid ""
"The server (version %s) does not support savepoints for ON_ERROR_ROLLBACK."
msgstr ""
"Сервер (версия %s) не поддерживает точки сохранения для ON_ERROR_ROLLBACK."
#: common.c:1329
#, c-format
msgid "STATEMENT: %s"
msgstr "ОПЕРАТОР: %s"
#: common.c:1373
#, c-format
msgid "unexpected transaction status (%d)"
msgstr "неожиданное состояние транзакции (%d)"
#: common.c:1514 describe.c:2221
msgid "Column"
msgstr "Столбец"
#: common.c:1515 describe.c:186 describe.c:408 describe.c:426 describe.c:471
#: describe.c:488 describe.c:1152 describe.c:1318 describe.c:1920
#: describe.c:1944 describe.c:2222 describe.c:4120 describe.c:4345
#: describe.c:4574 describe.c:5902
msgid "Type"
msgstr "Тип"
#: common.c:1564
#, c-format
msgid "The command has no result, or the result has no columns.\n"
msgstr "Команда не выдала результат, либо в результате нет столбцов.\n"
#: copy.c:98
#, c-format
msgid "\\copy: arguments required"
msgstr "укажите аргументы \\copy"
#: copy.c:253
#, c-format
msgid "\\copy: parse error at \"%s\""
msgstr "\\copy: ошибка разбора аргумента \"%s\""
#: copy.c:255
#, c-format
msgid "\\copy: parse error at end of line"
msgstr "\\copy: ошибка разбора в конце строки"
#: copy.c:328
#, c-format
msgid "could not execute command \"%s\": %m"
msgstr "не удалось выполнить команду \"%s\": %m"
#: copy.c:344
#, c-format
msgid "could not stat file \"%s\": %m"
msgstr "не удалось получить информацию о файле \"%s\": %m"
#: copy.c:348
#, c-format
msgid "%s: cannot copy from/to a directory"
msgstr "COPY FROM/TO не может работать с каталогом (%s)"
#: copy.c:385
#, c-format
msgid "could not close pipe to external command: %m"
msgstr "не удалось закрыть канал сообщений с внешней командой: %m"
#: copy.c:390
#, c-format
msgid "%s: %s"
msgstr "%s: %s"
#: copy.c:453 copy.c:463
#, c-format
msgid "could not write COPY data: %m"
msgstr "не удалось записать данные COPY: %m"
#: copy.c:469
#, c-format
msgid "COPY data transfer failed: %s"
msgstr "ошибка передачи данных COPY: %s"
#: copy.c:530
msgid "canceled by user"
msgstr "отменено пользователем"
#: copy.c:541
msgid ""
"Enter data to be copied followed by a newline.\n"
"End with a backslash and a period on a line by itself, or an EOF signal."
msgstr ""
"Вводите данные для копирования, разделяя строки переводом строки.\n"
"Закончите ввод строкой '\\.' или сигналом EOF."
#: copy.c:671
msgid "aborted because of read failure"
msgstr "прерывание из-за ошибки чтения"
#: copy.c:705
msgid "trying to exit copy mode"
msgstr "попытка выйти из режима копирования"
#: crosstabview.c:123
#, c-format
msgid "\\crosstabview: statement did not return a result set"
msgstr "\\crosstabview: оператор не возвратил результирующий набор"
#: crosstabview.c:129
#, c-format
msgid "\\crosstabview: query must return at least three columns"
msgstr "\\crosstabview: запрос должен возвращать минимум три столбца"
#: crosstabview.c:156
#, c-format
msgid ""
"\\crosstabview: vertical and horizontal headers must be different columns"
msgstr ""
"\\crosstabview: для вертикальных и горизонтальных заголовков должны "
"задаваться разные столбцы"
#: crosstabview.c:172
#, c-format
msgid ""
"\\crosstabview: data column must be specified when query returns more than "
"three columns"
msgstr ""
"\\crosstabview: когда запрос возвращает больше трёх столбцов, необходимо "
"указать столбец данных"
#: crosstabview.c:228
#, c-format
msgid "\\crosstabview: maximum number of columns (%d) exceeded"
msgstr "\\crosstabview: превышен максимум числа столбцов (%d)"
#: crosstabview.c:397
#, c-format
msgid ""
"\\crosstabview: query result contains multiple data values for row \"%s\", "
"column \"%s\""
msgstr ""
"\\crosstabview: в результатах запроса содержится несколько значений данных "
"для строки \"%s\", столбца \"%s\""
#: crosstabview.c:645
#, c-format
msgid "\\crosstabview: column number %d is out of range 1..%d"
msgstr "\\crosstabview: номер столбца %d выходит за рамки диапазона 1..%d"
#: crosstabview.c:670
#, c-format
msgid "\\crosstabview: ambiguous column name: \"%s\""
msgstr "\\crosstabview: неоднозначное имя столбца: \"%s\""
#: crosstabview.c:678
#, c-format
msgid "\\crosstabview: column name not found: \"%s\""
msgstr "\\crosstabview: имя столбца не найдено: \"%s\""
#: describe.c:82 describe.c:388 describe.c:744 describe.c:942 describe.c:1144
#: describe.c:1307 describe.c:1381 describe.c:4108 describe.c:4332
#: describe.c:4572 describe.c:4665 describe.c:4815 describe.c:5034
#: describe.c:5198 describe.c:5443 describe.c:5520 describe.c:5531
#: describe.c:5595 describe.c:6030 describe.c:6115
msgid "Schema"
msgstr "Схема"
#: describe.c:83 describe.c:183 describe.c:253 describe.c:261 describe.c:389
#: describe.c:745 describe.c:943 describe.c:1060 describe.c:1145
#: describe.c:1382 describe.c:4109 describe.c:4333 describe.c:4493
#: describe.c:4573 describe.c:4666 describe.c:4747 describe.c:4816
#: describe.c:5035 describe.c:5121 describe.c:5199 describe.c:5444
#: describe.c:5521 describe.c:5532 describe.c:5596 describe.c:5797
#: describe.c:5883 describe.c:6113 describe.c:6342 describe.c:6586
msgid "Name"
msgstr "Имя"
#: describe.c:84 describe.c:401 describe.c:419 describe.c:465 describe.c:482
msgid "Result data type"
msgstr "Тип данных результата"
#: describe.c:92 describe.c:105 describe.c:109 describe.c:402 describe.c:420
#: describe.c:466 describe.c:483
msgid "Argument data types"
msgstr "Типы данных аргументов"
#: describe.c:117 describe.c:124 describe.c:194 describe.c:284 describe.c:535
#: describe.c:793 describe.c:958 describe.c:1085 describe.c:1384
#: describe.c:2242 describe.c:3892 describe.c:4180 describe.c:4379
#: describe.c:4524 describe.c:4600 describe.c:4675 describe.c:4760
#: describe.c:4939 describe.c:5062 describe.c:5130 describe.c:5200
#: describe.c:5345 describe.c:5387 describe.c:5460 describe.c:5524
#: describe.c:5533 describe.c:5597 describe.c:5823 describe.c:5905
#: describe.c:6044 describe.c:6116 large_obj.c:290 large_obj.c:300
msgid "Description"
msgstr "Описание"
#: describe.c:144
msgid "List of aggregate functions"
msgstr "Список агрегатных функций"
#: describe.c:169
#, c-format
msgid "The server (version %s) does not support access methods."
msgstr "Сервер (версия %s) не поддерживает методы доступа."
#: describe.c:184
msgid "Index"
msgstr "Индекс"
#: describe.c:185 describe.c:4128 describe.c:4358 describe.c:6031
msgid "Table"
msgstr "Таблица"
#: describe.c:193 describe.c:5802
msgid "Handler"
msgstr "Обработчик"
#: describe.c:214
msgid "List of access methods"
msgstr "Список методов доступа"
#: describe.c:240
#, c-format
msgid "The server (version %s) does not support tablespaces."
msgstr "Сервер (версия %s) не поддерживает табличные пространства."
#: describe.c:254 describe.c:262 describe.c:516 describe.c:783 describe.c:1061
#: describe.c:1306 describe.c:4121 describe.c:4334 describe.c:4497
#: describe.c:4749 describe.c:5122 describe.c:5798 describe.c:5884
#: describe.c:6343 describe.c:6484 describe.c:6587 describe.c:6712
#: describe.c:6794 large_obj.c:289
msgid "Owner"
msgstr "Владелец"
#: describe.c:255 describe.c:263
msgid "Location"
msgstr "Расположение"
#: describe.c:274 describe.c:3704
msgid "Options"
msgstr "Параметры"
#: describe.c:279 describe.c:756 describe.c:1077 describe.c:4172
#: describe.c:4176
msgid "Size"
msgstr "Размер"
#: describe.c:303
msgid "List of tablespaces"
msgstr "Список табличных пространств"
#: describe.c:348
#, c-format
msgid "\\df only takes [anptwS+] as options"
msgstr "\\df принимает в качестве параметров только [anptwS+]"
#: describe.c:356 describe.c:367
#, c-format
msgid "\\df does not take a \"%c\" option with server version %s"
msgstr "\\df не поддерживает параметр \"%c\" с сервером версии %s"
# well-spelled: агр
#. translator: "agg" is short for "aggregate"
#: describe.c:404 describe.c:422 describe.c:468 describe.c:485
msgid "agg"
msgstr "агр."
#: describe.c:405 describe.c:423
msgid "window"
msgstr "оконная"
#: describe.c:406
msgid "proc"
msgstr "проц."
# well-spelled: функ
#: describe.c:407 describe.c:425 describe.c:470 describe.c:487
msgid "func"
msgstr "функ."
#: describe.c:424 describe.c:469 describe.c:486 describe.c:1528
msgid "trigger"
msgstr "триггерная"
#: describe.c:498
msgid "immutable"
msgstr "постоянная"
#: describe.c:499
msgid "stable"
msgstr "стабильная"
#: describe.c:500
msgid "volatile"
msgstr "изменчивая"
#: describe.c:501
msgid "Volatility"
msgstr "Изменчивость"
#: describe.c:509
msgid "restricted"
msgstr "ограниченная"
#: describe.c:510
msgid "safe"
msgstr "безопасная"
#: describe.c:511
msgid "unsafe"
msgstr "небезопасная"
#: describe.c:512
msgid "Parallel"
msgstr "Параллельность"
#: describe.c:517
msgid "definer"
msgstr "определившего"
#: describe.c:518
msgid "invoker"
msgstr "вызывающего"
#: describe.c:519
msgid "Security"
msgstr "Безопасность"
#: describe.c:524
msgid "Language"
msgstr "Язык"
#: describe.c:528 describe.c:532
msgid "Source code"
msgstr "Исходный код"
#: describe.c:707
msgid "List of functions"
msgstr "Список функций"
#: describe.c:755
msgid "Internal name"
msgstr "Внутреннее имя"
#: describe.c:777
msgid "Elements"
msgstr "Элементы"
#: describe.c:840
msgid "List of data types"
msgstr "Список типов данных"
#: describe.c:944
msgid "Left arg type"
msgstr "Тип левого аргумента"
#: describe.c:945
msgid "Right arg type"
msgstr "Тип правого аргумента"
#: describe.c:946
msgid "Result type"
msgstr "Результирующий тип"
#: describe.c:951 describe.c:4755 describe.c:4916 describe.c:4922
#: describe.c:5344 describe.c:6973 describe.c:6977
msgid "Function"
msgstr "Функция"
#: describe.c:1032
msgid "List of operators"
msgstr "Список операторов"
#: describe.c:1062
msgid "Encoding"
msgstr "Кодировка"
#: describe.c:1067 describe.c:5036
msgid "Collate"
msgstr "LC_COLLATE"
#: describe.c:1068 describe.c:5037
msgid "Ctype"
msgstr "LC_CTYPE"
#: describe.c:1081
msgid "Tablespace"
msgstr "Табл. пространство"
#: describe.c:1105
msgid "List of databases"
msgstr "Список баз данных"
#: describe.c:1146 describe.c:1309 describe.c:4110
msgid "table"
msgstr "таблица"
#: describe.c:1147 describe.c:4111
msgid "view"
msgstr "представление"
#: describe.c:1148 describe.c:4112
msgid "materialized view"
msgstr "материализованное представление"
#: describe.c:1149 describe.c:1311 describe.c:4114
msgid "sequence"
msgstr "последовательность"
#: describe.c:1150 describe.c:4117
msgid "foreign table"
msgstr "сторонняя таблица"
#: describe.c:1151 describe.c:4118 describe.c:4343
msgid "partitioned table"
msgstr "секционированная таблица"
#: describe.c:1163
msgid "Column privileges"
msgstr "Права для столбцов"
#: describe.c:1194 describe.c:1228
msgid "Policies"
msgstr "Политики"
#: describe.c:1262 describe.c:6653 describe.c:6657
msgid "Access privileges"
msgstr "Права доступа"
#: describe.c:1293
#, c-format
msgid "The server (version %s) does not support altering default privileges."
msgstr "Сервер (версия %s) не поддерживает изменение прав по умолчанию."
#: describe.c:1313
msgid "function"
msgstr "функция"
#: describe.c:1315
msgid "type"
msgstr "тип"
#: describe.c:1317
msgid "schema"
msgstr "схема"
#: describe.c:1343
msgid "Default access privileges"
msgstr "Права доступа по умолчанию"
#: describe.c:1383
msgid "Object"
msgstr "Объект"
#: describe.c:1397
msgid "table constraint"
msgstr "ограничение таблицы"
#: describe.c:1421
msgid "domain constraint"
msgstr "ограничение домена"
#: describe.c:1451
msgid "operator class"
msgstr "класс операторов"
#: describe.c:1482
msgid "operator family"
msgstr "семейство операторов"
#: describe.c:1506
msgid "rule"
msgstr "правило"
#: describe.c:1552
msgid "Object descriptions"
msgstr "Описание объекта"
#: describe.c:1610 describe.c:4249
#, c-format
msgid "Did not find any relation named \"%s\"."
msgstr "Отношение \"%s\" не найдено."
#: describe.c:1613 describe.c:4252
#, c-format
msgid "Did not find any relations."
msgstr "Отношения не найдены."
#: describe.c:1869
#, c-format
msgid "Did not find any relation with OID %s."
msgstr "Отношение с OID %s не найдено."
#: describe.c:1921 describe.c:1945
msgid "Start"
msgstr "Начальное_значение"
#: describe.c:1922 describe.c:1946
msgid "Minimum"
msgstr "Минимум"
#: describe.c:1923 describe.c:1947
msgid "Maximum"
msgstr "Максимум"
#: describe.c:1924 describe.c:1948
msgid "Increment"
msgstr "Шаг"
#: describe.c:1925 describe.c:1949 describe.c:2080 describe.c:4669
#: describe.c:4933 describe.c:5051 describe.c:5056 describe.c:6700
msgid "yes"
msgstr "да"
#: describe.c:1926 describe.c:1950 describe.c:2081 describe.c:4669
#: describe.c:4930 describe.c:5051 describe.c:6701
msgid "no"
msgstr "нет"
#: describe.c:1927 describe.c:1951
msgid "Cycles?"
msgstr "Зацикливается?"
#: describe.c:1928 describe.c:1952
msgid "Cache"
msgstr "Кешируется"
#: describe.c:1995
#, c-format
msgid "Owned by: %s"
msgstr "Владелец: %s"
#: describe.c:1999
#, c-format
msgid "Sequence for identity column: %s"
msgstr "Последовательность для столбца идентификации: %s"
#: describe.c:2006
#, c-format
msgid "Sequence \"%s.%s\""
msgstr "Последовательность \"%s.%s\""
#: describe.c:2153
#, c-format
msgid "Unlogged table \"%s.%s\""
msgstr "Нежурналируемая таблица \"%s.%s\""
#: describe.c:2156
#, c-format
msgid "Table \"%s.%s\""
msgstr "Таблица \"%s.%s\""
#: describe.c:2160
#, c-format
msgid "View \"%s.%s\""
msgstr "Представление \"%s.%s\""
#: describe.c:2165
#, c-format
msgid "Unlogged materialized view \"%s.%s\""
msgstr "Нежурналируемое материализованное представление \"%s.%s\""
#: describe.c:2168
#, c-format
msgid "Materialized view \"%s.%s\""
msgstr "Материализованное представление \"%s.%s\""
#: describe.c:2173
#, c-format
msgid "Unlogged index \"%s.%s\""
msgstr "Нежурналируемый индекс \"%s.%s\""
#: describe.c:2176
#, c-format
msgid "Index \"%s.%s\""
msgstr "Индекс \"%s.%s\""
#: describe.c:2181
#, c-format
msgid "Unlogged partitioned index \"%s.%s\""
msgstr "Нежурналируемый секционированный индекс \"%s.%s\""
#: describe.c:2184
#, c-format
msgid "Partitioned index \"%s.%s\""
msgstr "Секционированный индекс \"%s.%s\""
#: describe.c:2189
#, c-format
msgid "Special relation \"%s.%s\""
msgstr "Специальное отношение \"%s.%s\""
#: describe.c:2193
#, c-format
msgid "TOAST table \"%s.%s\""
msgstr "TOAST-таблица \"%s.%s\""
#: describe.c:2197
#, c-format
msgid "Composite type \"%s.%s\""
msgstr "Составной тип \"%s.%s\""
#: describe.c:2201
#, c-format
msgid "Foreign table \"%s.%s\""
msgstr "Сторонняя таблица \"%s.%s\""
#: describe.c:2206
#, c-format
msgid "Unlogged partitioned table \"%s.%s\""
msgstr "Нежурналируемая секционированная таблица \"%s.%s\""
#: describe.c:2209
#, c-format
msgid "Partitioned table \"%s.%s\""
msgstr "Секционированная таблица \"%s.%s\""
#: describe.c:2225 describe.c:4580
msgid "Collation"
msgstr "Правило сортировки"
#: describe.c:2226 describe.c:4587
msgid "Nullable"
msgstr "Допустимость NULL"
#: describe.c:2227 describe.c:4588
msgid "Default"
msgstr "По умолчанию"
#: describe.c:2230
msgid "Key?"
msgstr "Ключевой?"
#: describe.c:2232 describe.c:4823 describe.c:4834
msgid "Definition"
msgstr "Определение"
# well-spelled: ОСД
#: describe.c:2234 describe.c:5818 describe.c:5904 describe.c:5977
#: describe.c:6043
msgid "FDW options"
msgstr "Параметры ОСД"
#: describe.c:2236
msgid "Storage"
msgstr "Хранилище"
#: describe.c:2238
msgid "Compression"
msgstr "Сжатие"
#: describe.c:2240
msgid "Stats target"
msgstr "Цель для статистики"
#: describe.c:2376
#, c-format
msgid "Partition of: %s %s%s"
msgstr "Секция: %s %s%s"
#: describe.c:2389
msgid "No partition constraint"
msgstr "Нет ограничения секции"
#: describe.c:2391
#, c-format
msgid "Partition constraint: %s"
msgstr "Ограничение секции: %s"
#: describe.c:2415
#, c-format
msgid "Partition key: %s"
msgstr "Ключ разбиения: %s"
#: describe.c:2441
#, c-format
msgid "Owning table: \"%s.%s\""
msgstr "Принадлежит таблице: \"%s.%s\""
#: describe.c:2512
msgid "primary key, "
msgstr "первичный ключ, "
#: describe.c:2514
msgid "unique, "
msgstr "уникальный, "
#: describe.c:2520
#, c-format
msgid "for table \"%s.%s\""
msgstr "для таблицы \"%s.%s\""
#: describe.c:2524
#, c-format
msgid ", predicate (%s)"
msgstr ", предикат (%s)"
#: describe.c:2527
msgid ", clustered"
msgstr ", кластеризованный"
#: describe.c:2530
msgid ", invalid"
msgstr ", нерабочий"
#: describe.c:2533
msgid ", deferrable"
msgstr ", откладываемый"
#: describe.c:2536
msgid ", initially deferred"
msgstr ", изначально отложенный"
#: describe.c:2539
msgid ", replica identity"
msgstr ", репликационный"
#: describe.c:2606
msgid "Indexes:"
msgstr "Индексы:"
#: describe.c:2690
msgid "Check constraints:"
msgstr "Ограничения-проверки:"
# TO REWVIEW
#: describe.c:2758
msgid "Foreign-key constraints:"
msgstr "Ограничения внешнего ключа:"
#: describe.c:2821
msgid "Referenced by:"
msgstr "Ссылки извне:"
#: describe.c:2871
msgid "Policies:"
msgstr "Политики:"
#: describe.c:2874
msgid "Policies (forced row security enabled):"
msgstr "Политики (усиленная защита строк включена):"
#: describe.c:2877
msgid "Policies (row security enabled): (none)"
msgstr "Политики (защита строк включена): (Нет)"
#: describe.c:2880
msgid "Policies (forced row security enabled): (none)"
msgstr "Политики (усиленная защита строк включена): (Нет)"
#: describe.c:2883
msgid "Policies (row security disabled):"
msgstr "Политики (защита строк выключена):"
#: describe.c:2944 describe.c:3048
msgid "Statistics objects:"
msgstr "Объекты статистики:"
#: describe.c:3162 describe.c:3266
msgid "Rules:"
msgstr "Правила:"
#: describe.c:3165
msgid "Disabled rules:"
msgstr "Отключённые правила:"
#: describe.c:3168
msgid "Rules firing always:"
msgstr "Правила, срабатывающие всегда:"
#: describe.c:3171
msgid "Rules firing on replica only:"
msgstr "Правила, срабатывающие только в реплике:"
#: describe.c:3211
msgid "Publications:"
msgstr "Публикации:"
#: describe.c:3249
msgid "View definition:"
msgstr "Определение представления:"
#: describe.c:3419
msgid "Triggers:"
msgstr "Триггеры:"
#: describe.c:3423
msgid "Disabled user triggers:"
msgstr "Отключённые пользовательские триггеры:"
#: describe.c:3425
msgid "Disabled triggers:"
msgstr "Отключённые триггеры:"
#: describe.c:3428
msgid "Disabled internal triggers:"
msgstr "Отключённые внутренние триггеры:"
#: describe.c:3431
msgid "Triggers firing always:"
msgstr "Триггеры, срабатывающие всегда:"
#: describe.c:3434
msgid "Triggers firing on replica only:"
msgstr "Триггеры, срабатывающие только в реплике:"
#: describe.c:3506
#, c-format
msgid "Server: %s"
msgstr "Сервер: %s"
# well-spelled: ОСД
#: describe.c:3514
#, c-format
msgid "FDW options: (%s)"
msgstr "Параметр ОСД: (%s)"
#: describe.c:3535
msgid "Inherits"
msgstr "Наследует"
#: describe.c:3608
#, c-format
msgid "Number of partitions: %d"
msgstr "Число секций: %d"
#: describe.c:3617
#, c-format
msgid "Number of partitions: %d (Use \\d+ to list them.)"
msgstr "Число секций: %d (чтобы просмотреть их, введите \\d+)"
#: describe.c:3619
#, c-format
msgid "Number of child tables: %d (Use \\d+ to list them.)"
msgstr "Дочерних таблиц: %d (чтобы просмотреть и их, воспользуйтесь \\d+)"
#: describe.c:3626
msgid "Child tables"
msgstr "Дочерние таблицы"
#: describe.c:3626
msgid "Partitions"
msgstr "Секции"
#: describe.c:3657
#, c-format
msgid "Typed table of type: %s"
msgstr "Типизированная таблица типа: %s"
#: describe.c:3673
msgid "Replica Identity"
msgstr "Идентификация реплики"
#: describe.c:3686
msgid "Has OIDs: yes"
msgstr "Содержит OID: да"
#: describe.c:3695
#, c-format
msgid "Access method: %s"
msgstr "Метод доступа: %s"
#: describe.c:3775
#, c-format
msgid "Tablespace: \"%s\""
msgstr "Табличное пространство: \"%s\""
#. translator: before this string there's an index description like
#. '"foo_pkey" PRIMARY KEY, btree (a)'
#: describe.c:3787
#, c-format
msgid ", tablespace \"%s\""
msgstr ", табл. пространство \"%s\""
#: describe.c:3884
msgid "List of roles"
msgstr "Список ролей"
#: describe.c:3886
msgid "Role name"
msgstr "Имя роли"
#: describe.c:3887
msgid "Attributes"
msgstr "Атрибуты"
#: describe.c:3889
msgid "Member of"
msgstr "Член ролей"
#: describe.c:3900
msgid "Superuser"
msgstr "Суперпользователь"
#: describe.c:3903
msgid "No inheritance"
msgstr "Не наследуется"
#: describe.c:3906
msgid "Create role"
msgstr "Создаёт роли"
#: describe.c:3909
msgid "Create DB"
msgstr "Создаёт БД"
#: describe.c:3912
msgid "Cannot login"
msgstr "Вход запрещён"
#: describe.c:3916
msgid "Replication"
msgstr "Репликация"
#: describe.c:3920
msgid "Bypass RLS"
msgstr "Пропускать RLS"
#: describe.c:3929
msgid "No connections"
msgstr "Нет подключений"
#: describe.c:3931
#, c-format
msgid "%d connection"
msgid_plural "%d connections"
msgstr[0] "%d подключение"
msgstr[1] "%d подключения"
msgstr[2] "%d подключений"
#: describe.c:3941
msgid "Password valid until "
msgstr "Пароль действует до "
#: describe.c:3991
#, c-format
msgid "The server (version %s) does not support per-database role settings."
msgstr ""
"Сервер (версия %s) не поддерживает назначение параметров ролей для баз "
"данных."
#: describe.c:4004
msgid "Role"
msgstr "Роль"
#: describe.c:4005
msgid "Database"
msgstr "БД"
#: describe.c:4006
msgid "Settings"
msgstr "Параметры"
#: describe.c:4030
#, c-format
msgid "Did not find any settings for role \"%s\" and database \"%s\"."
msgstr "Параметры для роли \"%s\" и базы данных \"%s\" не найдены."
#: describe.c:4033
#, c-format
msgid "Did not find any settings for role \"%s\"."
msgstr "Параметры для роли \"%s\" не найдены."
#: describe.c:4036
#, c-format
msgid "Did not find any settings."
msgstr "Никакие параметры не найдены."
#: describe.c:4041
msgid "List of settings"
msgstr "Список параметров"
#: describe.c:4113
msgid "index"
msgstr "индекс"
# skip-rule: capital-letter-first
#: describe.c:4115
msgid "special"
msgstr "спец. отношение"
#: describe.c:4116
msgid "TOAST table"
msgstr "TOAST-таблица"
#: describe.c:4119 describe.c:4344
msgid "partitioned index"
msgstr "секционированный индекс"
#: describe.c:4143
msgid "permanent"
msgstr "постоянное"
#: describe.c:4144
msgid "temporary"
msgstr "временное"
#: describe.c:4145
msgid "unlogged"
msgstr "нежурналируемое"
#: describe.c:4146
msgid "Persistence"
msgstr "Хранение"
#: describe.c:4163
msgid "Access method"
msgstr "Метод доступа"
#: describe.c:4257
msgid "List of relations"
msgstr "Список отношений"
#: describe.c:4305
#, c-format
msgid ""
"The server (version %s) does not support declarative table partitioning."
msgstr ""
"Сервер (версия %s) не поддерживает декларативное секционирование таблиц."
#: describe.c:4316
msgid "List of partitioned indexes"
msgstr "Список секционированных индексов"
#: describe.c:4318
msgid "List of partitioned tables"
msgstr "Список секционированных таблиц"
#: describe.c:4322
msgid "List of partitioned relations"
msgstr "Список секционированных отношений"
#: describe.c:4353
msgid "Parent name"
msgstr "Имя родителя"
#: describe.c:4366
msgid "Leaf partition size"
msgstr "Размер конечной секции"
#: describe.c:4369 describe.c:4375
msgid "Total size"
msgstr "Общий размер"
#: describe.c:4501
msgid "Trusted"
msgstr "Доверенный"
#: describe.c:4509
msgid "Internal language"
msgstr "Внутренний язык"
#: describe.c:4510
msgid "Call handler"
msgstr "Обработчик вызова"
#: describe.c:4511 describe.c:5805
msgid "Validator"
msgstr "Функция проверки"
#: describe.c:4514
msgid "Inline handler"
msgstr "Обработчик внедрённого кода"
#: describe.c:4544
msgid "List of languages"
msgstr "Список языков"
#: describe.c:4589
msgid "Check"
msgstr "Проверка"
#: describe.c:4633
msgid "List of domains"
msgstr "Список доменов"
#: describe.c:4667
msgid "Source"
msgstr "Источник"
#: describe.c:4668
msgid "Destination"
msgstr "Назначение"
#: describe.c:4670 describe.c:6702
msgid "Default?"
msgstr "По умолчанию?"
#: describe.c:4709
msgid "List of conversions"
msgstr "Список преобразований"
#: describe.c:4748
msgid "Event"
msgstr "Событие"
#: describe.c:4750
msgid "enabled"
msgstr "включён"
#: describe.c:4751
msgid "replica"
msgstr "реплика"
#: describe.c:4752
msgid "always"
msgstr "всегда"
#: describe.c:4753
msgid "disabled"
msgstr "отключён"
#: describe.c:4754 describe.c:6588
msgid "Enabled"
msgstr "Включён"
#: describe.c:4756
msgid "Tags"
msgstr "Теги"
#: describe.c:4777
msgid "List of event triggers"
msgstr "Список событийных триггеров"
#: describe.c:4804
#, c-format
msgid "The server (version %s) does not support extended statistics."
msgstr "Сервер (версия %s) не поддерживает расширенные статистики."
#: describe.c:4841
msgid "Ndistinct"
msgstr "Ndistinct"
#: describe.c:4842
msgid "Dependencies"
msgstr "Зависимости"
#: describe.c:4852
msgid "MCV"
msgstr "MCV"
#: describe.c:4873
msgid "List of extended statistics"
msgstr "Список расширенных статистик"
#: describe.c:4900
msgid "Source type"
msgstr "Исходный тип"
#: describe.c:4901
msgid "Target type"
msgstr "Целевой тип"
#: describe.c:4932
msgid "in assignment"
msgstr "в присваивании"
#: describe.c:4934
msgid "Implicit?"
msgstr "Неявное?"
#: describe.c:4993
msgid "List of casts"
msgstr "Список приведений типов"
#: describe.c:5021
#, c-format
msgid "The server (version %s) does not support collations."
msgstr "Сервер (версия %s) не поддерживает правила сравнения."
#: describe.c:5042 describe.c:5046
msgid "Provider"
msgstr "Провайдер"
#: describe.c:5052 describe.c:5057
msgid "Deterministic?"
msgstr "Детерминированное?"
#: describe.c:5094
msgid "List of collations"
msgstr "Список правил сортировки"
#: describe.c:5155
msgid "List of schemas"
msgstr "Список схем"
#: describe.c:5180 describe.c:5431 describe.c:5504 describe.c:5577
#, c-format
msgid "The server (version %s) does not support full text search."
msgstr "Сервер (версия %s) не поддерживает полнотекстовый поиск."
#: describe.c:5217
msgid "List of text search parsers"
msgstr "Список анализаторов текстового поиска"
#: describe.c:5264
#, c-format
msgid "Did not find any text search parser named \"%s\"."
msgstr "Анализатор текстового поиска \"%s\" не найден."
#: describe.c:5267
#, c-format
msgid "Did not find any text search parsers."
msgstr "Никакие анализаторы текстового поиска не найдены."
#: describe.c:5342
msgid "Start parse"
msgstr "Начало разбора"
#: describe.c:5343
msgid "Method"
msgstr "Метод"
#: describe.c:5347
msgid "Get next token"
msgstr "Получение следующего фрагмента"
#: describe.c:5349
msgid "End parse"
msgstr "Окончание разбора"
#: describe.c:5351
msgid "Get headline"
msgstr "Получение выдержки"
#: describe.c:5353
msgid "Get token types"
msgstr "Получение типов фрагментов"
#: describe.c:5364
#, c-format
msgid "Text search parser \"%s.%s\""
msgstr "Анализатор текстового поиска \"%s.%s\""
#: describe.c:5367
#, c-format
msgid "Text search parser \"%s\""
msgstr "Анализатор текстового поиска \"%s\""
#: describe.c:5386
msgid "Token name"
msgstr "Имя фрагмента"
#: describe.c:5397
#, c-format
msgid "Token types for parser \"%s.%s\""
msgstr "Типы фрагментов для анализатора \"%s.%s\""
#: describe.c:5400
#, c-format
msgid "Token types for parser \"%s\""
msgstr "Типы фрагментов для анализатора \"%s\""
#: describe.c:5454
msgid "Template"
msgstr "Шаблон"
#: describe.c:5455
msgid "Init options"
msgstr "Параметры инициализации"
#: describe.c:5479
msgid "List of text search dictionaries"
msgstr "Список словарей текстового поиска"
#: describe.c:5522
msgid "Init"
msgstr "Инициализация"
#: describe.c:5523
msgid "Lexize"
msgstr "Выделение лексем"
#: describe.c:5552
msgid "List of text search templates"
msgstr "Список шаблонов текстового поиска"
#: describe.c:5614
msgid "List of text search configurations"
msgstr "Список конфигураций текстового поиска"
#: describe.c:5662
#, c-format
msgid "Did not find any text search configuration named \"%s\"."
msgstr "Конфигурация текстового поиска \"%s\" не найдена."
#: describe.c:5665
#, c-format
msgid "Did not find any text search configurations."
msgstr "Никакие конфигурации текстового поиска не найдены."
#: describe.c:5731
msgid "Token"
msgstr "Фрагмент"
#: describe.c:5732
msgid "Dictionaries"
msgstr "Словари"
#: describe.c:5743
#, c-format
msgid "Text search configuration \"%s.%s\""
msgstr "Конфигурация текстового поиска \"%s.%s\""
#: describe.c:5746
#, c-format
msgid "Text search configuration \"%s\""
msgstr "Конфигурация текстового поиска \"%s\""
#: describe.c:5750
#, c-format
msgid ""
"\n"
"Parser: \"%s.%s\""
msgstr ""
"\n"
"Анализатор: \"%s.%s\""
#: describe.c:5753
#, c-format
msgid ""
"\n"
"Parser: \"%s\""
msgstr ""
"\n"
"Анализатор: \"%s\""
#: describe.c:5787
#, c-format
msgid "The server (version %s) does not support foreign-data wrappers."
msgstr "Сервер (версия %s) не поддерживает обёртки сторонних данных."
#: describe.c:5847
msgid "List of foreign-data wrappers"
msgstr "Список обёрток сторонних данных"
#: describe.c:5872
#, c-format
msgid "The server (version %s) does not support foreign servers."
msgstr "Сервер (версия %s) не поддерживает сторонние серверы."
#: describe.c:5885
msgid "Foreign-data wrapper"
msgstr "Обёртка сторонних данных"
#: describe.c:5903 describe.c:6114
msgid "Version"
msgstr "Версия"
#: describe.c:5931
msgid "List of foreign servers"
msgstr "Список сторонних серверов"
#: describe.c:5956
#, c-format
msgid "The server (version %s) does not support user mappings."
msgstr "Сервер (версия %s) не поддерживает сопоставления пользователей."
#: describe.c:5966 describe.c:6032
msgid "Server"
msgstr "Сервер"
#: describe.c:5967
msgid "User name"
msgstr "Имя пользователя"
#: describe.c:5994
msgid "List of user mappings"
msgstr "Список сопоставлений пользователей"
#: describe.c:6019
#, c-format
msgid "The server (version %s) does not support foreign tables."
msgstr "Сервер (версия %s) не поддерживает сторонние таблицы."
#: describe.c:6074
msgid "List of foreign tables"
msgstr "Список сторонних таблиц"
#: describe.c:6099 describe.c:6158
#, c-format
msgid "The server (version %s) does not support extensions."
msgstr "Сервер (версия %s) не поддерживает расширения."
#: describe.c:6133
msgid "List of installed extensions"
msgstr "Список установленных расширений"
#: describe.c:6188
#, c-format
msgid "Did not find any extension named \"%s\"."
msgstr "Расширение \"%s\" не найдено."
#: describe.c:6191
#, c-format
msgid "Did not find any extensions."
msgstr "Никакие расширения не найдены."
#: describe.c:6235
msgid "Object description"
msgstr "Описание объекта"
#: describe.c:6245
#, c-format
msgid "Objects in extension \"%s\""
msgstr "Объекты в расширении \"%s\""
#: describe.c:6286
#, c-format
msgid "improper qualified name (too many dotted names): %s"
msgstr "неверное полное имя (слишком много компонентов): %s"
#: describe.c:6301
#, c-format
msgid "cross-database references are not implemented: %s"
msgstr "ссылки между базами не реализованы: %s"
#: describe.c:6327 describe.c:6405
#, c-format
msgid "The server (version %s) does not support publications."
msgstr "Сервер (версия %s) не поддерживает публикации."
#: describe.c:6344 describe.c:6485
msgid "All tables"
msgstr "Все таблицы"
#: describe.c:6345 describe.c:6486
msgid "Inserts"
msgstr "Добавления"
#: describe.c:6346 describe.c:6487
msgid "Updates"
msgstr "Изменения"
#: describe.c:6347 describe.c:6488
msgid "Deletes"
msgstr "Удаления"
#: describe.c:6351 describe.c:6490
msgid "Truncates"
msgstr "Опустошения"
#: describe.c:6355 describe.c:6492
msgid "Via root"
msgstr "Через корень"
#: describe.c:6374
msgid "List of publications"
msgstr "Список публикаций"
#: describe.c:6449
#, c-format
msgid "Did not find any publication named \"%s\"."
msgstr "Публикация \"%s\" не найдена."
#: describe.c:6452
#, c-format
msgid "Did not find any publications."
msgstr "Никакие публикации не найдены."
#: describe.c:6481
#, c-format
msgid "Publication %s"
msgstr "Публикация %s"
#: describe.c:6529
msgid "Tables:"
msgstr "Таблицы:"
#: describe.c:6573
#, c-format
msgid "The server (version %s) does not support subscriptions."
msgstr "Сервер (версия %s) не поддерживает подписки."
#: describe.c:6589
msgid "Publication"
msgstr "Публикация"
#: describe.c:6598
msgid "Binary"
msgstr "Бинарная"
#: describe.c:6599
msgid "Streaming"
msgstr "Потоковая"
#: describe.c:6604
msgid "Synchronous commit"
msgstr "Синхронная фиксация"
#: describe.c:6605
msgid "Conninfo"
msgstr "Строка подключения"
#: describe.c:6629
msgid "List of subscriptions"
msgstr "Список подписок"
#: describe.c:6696 describe.c:6788 describe.c:6877 describe.c:6964
msgid "AM"
msgstr "МД"
#: describe.c:6697
msgid "Input type"
msgstr "Входной тип"
#: describe.c:6698
msgid "Storage type"
msgstr "Тип хранения"
#: describe.c:6699
msgid "Operator class"
msgstr "Класс операторов"
#: describe.c:6711 describe.c:6789 describe.c:6878 describe.c:6965
msgid "Operator family"
msgstr "Семейство операторов"
#: describe.c:6747
msgid "List of operator classes"
msgstr "Список классов операторов"
#: describe.c:6790
msgid "Applicable types"
msgstr "Применимые типы"
#: describe.c:6832
msgid "List of operator families"
msgstr "Список семейств операторов"
#: describe.c:6879
msgid "Operator"
msgstr "Оператор"
#: describe.c:6880
msgid "Strategy"
msgstr "Стратегия"
#: describe.c:6881
msgid "ordering"
msgstr "сортировка"
#: describe.c:6882
msgid "search"
msgstr "поиск"
#: describe.c:6883
msgid "Purpose"
msgstr "Назначение"
#: describe.c:6888
msgid "Sort opfamily"
msgstr "Семейство для сортировки"
#: describe.c:6923
msgid "List of operators of operator families"
msgstr "Список операторов из семейств операторов"
#: describe.c:6966
msgid "Registered left type"
msgstr "Зарегистрированный левый тип"
#: describe.c:6967
msgid "Registered right type"
msgstr "Зарегистрированный правый тип"
#: describe.c:6968
msgid "Number"
msgstr "Номер"
#: describe.c:7008
msgid "List of support functions of operator families"
msgstr "Список опорных функций из семейств операторов"
#: help.c:73
#, c-format
msgid ""
"psql is the PostgreSQL interactive terminal.\n"
"\n"
msgstr ""
"psql - это интерактивный терминал PostgreSQL.\n"
"\n"
#: help.c:74 help.c:355 help.c:433 help.c:476
#, c-format
msgid "Usage:\n"
msgstr "Использование:\n"
#: help.c:75
#, c-format
msgid ""
" psql [OPTION]... [DBNAME [USERNAME]]\n"
"\n"
msgstr ""
" psql [ПАРАМЕТР]... [БД [ПОЛЬЗОВАТЕЛЬ]]\n"
"\n"
#: help.c:77
#, c-format
msgid "General options:\n"
msgstr "Общие параметры:\n"
#: help.c:82
#, c-format
msgid ""
" -c, --command=COMMAND run only single command (SQL or internal) and "
"exit\n"
msgstr ""
" -c, --command=КОМАНДА выполнить одну команду (SQL или внутреннюю) и "
"выйти\n"
#: help.c:83
#, c-format
msgid ""
" -d, --dbname=DBNAME database name to connect to (default: \"%s\")\n"
msgstr ""
" -d, --dbname=БД имя подключаемой базы данных (по умолчанию \"%s"
"\")\n"
#: help.c:84
#, c-format
msgid " -f, --file=FILENAME execute commands from file, then exit\n"
msgstr " -f, --file=ИМЯ_ФАЙЛА выполнить команды из файла и выйти\n"
#: help.c:85
#, c-format
msgid " -l, --list list available databases, then exit\n"
msgstr " -l, --list вывести список баз данных и выйти\n"
#: help.c:86
#, c-format
msgid ""
" -v, --set=, --variable=NAME=VALUE\n"
" set psql variable NAME to VALUE\n"
" (e.g., -v ON_ERROR_STOP=1)\n"
msgstr ""
" -v, --set=, --variable=ИМЯ=ЗНАЧЕНИЕ\n"
" присвоить переменной psql ИМЯ заданное ЗНАЧЕНИЕ\n"
" (например: -v ON_ERROR_STOP=1)\n"
#: help.c:89
#, c-format
msgid " -V, --version output version information, then exit\n"
msgstr " -V, --version показать версию и выйти\n"
#: help.c:90
#, c-format
msgid " -X, --no-psqlrc do not read startup file (~/.psqlrc)\n"
msgstr ""
" -X, --no-psqlrc игнорировать файл параметров запуска (~/.psqlrc)\n"
#: help.c:91
#, c-format
msgid ""
" -1 (\"one\"), --single-transaction\n"
" execute as a single transaction (if non-"
"interactive)\n"
msgstr ""
" -1 (\"один\"), --single-transaction\n"
" выполнить как одну транзакцию\n"
" (в неинтерактивном режиме)\n"
#: help.c:93
#, c-format
msgid " -?, --help[=options] show this help, then exit\n"
msgstr " -?, --help[=options] показать эту справку и выйти\n"
#: help.c:94
#, c-format
msgid " --help=commands list backslash commands, then exit\n"
msgstr " --help=commands перечислить команды с \\ и выйти\n"
#: help.c:95
#, c-format
msgid " --help=variables list special variables, then exit\n"
msgstr ""
" --help=variables перечислить специальные переменные и выйти\n"
#: help.c:97
#, c-format
msgid ""
"\n"
"Input and output options:\n"
msgstr ""
"\n"
"Параметры ввода/вывода:\n"
#: help.c:98
#, c-format
msgid " -a, --echo-all echo all input from script\n"
msgstr " -a, --echo-all отображать все команды из скрипта\n"
#: help.c:99
#, c-format
msgid " -b, --echo-errors echo failed commands\n"
msgstr " -b, --echo-errors отображать команды с ошибками\n"
#: help.c:100
#, c-format
msgid " -e, --echo-queries echo commands sent to server\n"
msgstr " -e, --echo-queries отображать команды, отправляемые серверу\n"
#: help.c:101
#, c-format
msgid ""
" -E, --echo-hidden display queries that internal commands generate\n"
msgstr ""
" -E, --echo-hidden выводить запросы, порождённые внутренними "
"командами\n"
#: help.c:102
#, c-format
msgid " -L, --log-file=FILENAME send session log to file\n"
msgstr " -L, --log-file=ИМЯ_ФАЙЛА сохранять протокол работы в файл\n"
#: help.c:103
#, c-format
msgid ""
" -n, --no-readline disable enhanced command line editing (readline)\n"
msgstr ""
" -n, --no-readline отключить редактор командной строки readline\n"
#: help.c:104
#, c-format
msgid " -o, --output=FILENAME send query results to file (or |pipe)\n"
msgstr ""
" -o, --output=ИМЯ_ФАЙЛА направить результаты запроса в файл (или канал "
"|)\n"
#: help.c:105
#, c-format
msgid ""
" -q, --quiet run quietly (no messages, only query output)\n"
msgstr ""
" -q, --quiet показывать только результаты запросов, без "
"сообщений\n"
#: help.c:106
#, c-format
msgid " -s, --single-step single-step mode (confirm each query)\n"
msgstr ""
" -s, --single-step пошаговый режим (подтверждение каждого запроса)\n"
#: help.c:107
#, c-format
msgid ""
" -S, --single-line single-line mode (end of line terminates SQL "
"command)\n"
msgstr ""
" -S, --single-line однострочный режим (конец строки завершает "
"команду)\n"
#: help.c:109
#, c-format
msgid ""
"\n"
"Output format options:\n"
msgstr ""
"\n"
"Параметры вывода:\n"
#: help.c:110
#, c-format
msgid " -A, --no-align unaligned table output mode\n"
msgstr " -A, --no-align режим вывода невыровненной таблицы\n"
#: help.c:111
#, c-format
msgid ""
" --csv CSV (Comma-Separated Values) table output mode\n"
msgstr ""
" --csv режим вывода в формате CSV (значения, "
"разделённые\n"
" запятыми)\n"
#: help.c:112
#, c-format
msgid ""
" -F, --field-separator=STRING\n"
" field separator for unaligned output (default: "
"\"%s\")\n"
msgstr ""
" -F, --field-separator=СТРОКА\n"
" разделителей полей при невыровненном выводе\n"
" (по умолчанию: \"%s\")\n"
#: help.c:115
#, c-format
msgid " -H, --html HTML table output mode\n"
msgstr " -H, --html вывод таблицы в формате HTML\n"
#: help.c:116
#, c-format
msgid ""
" -P, --pset=VAR[=ARG] set printing option VAR to ARG (see \\pset "
"command)\n"
msgstr ""
" -P, --pset=ПАР[=ЗНАЧ] определить параметр печати ПАР (с заданным "
"ЗНАЧЕНИЕМ)\n"
" (см. описание \\pset)\n"
#: help.c:117
#, c-format
msgid ""
" -R, --record-separator=STRING\n"
" record separator for unaligned output (default: "
"newline)\n"
msgstr ""
" -R, --record-separator=СТРОКА\n"
" разделитель записей при невыровненном выводе\n"
" (по умолчанию: новая строка)\n"
#: help.c:119
#, c-format
msgid " -t, --tuples-only print rows only\n"
msgstr " -t, --tuples-only выводить только кортежи\n"
#: help.c:120
#, c-format
msgid ""
" -T, --table-attr=TEXT set HTML table tag attributes (e.g., width, "
"border)\n"
msgstr ""
" -T, --table-attr=ТЕКСТ установить атрибуты HTML-таблицы (width, border)\n"
#: help.c:121
#, c-format
msgid " -x, --expanded turn on expanded table output\n"
msgstr " -x, --expanded включить развёрнутый вывод таблицы\n"
#: help.c:122
#, c-format
msgid ""
" -z, --field-separator-zero\n"
" set field separator for unaligned output to zero "
"byte\n"
msgstr ""
" -z, --field-separator-zero\n"
" сделать разделителем полей при невыровненном\n"
" выводе нулевой байт\n"
#: help.c:124
#, c-format
msgid ""
" -0, --record-separator-zero\n"
" set record separator for unaligned output to zero "
"byte\n"
msgstr ""
" -0, --record-separator-zero\n"
" сделать разделителем записей при невыровненном\n"
" нулевой байт\n"
#: help.c:127
#, c-format
msgid ""
"\n"
"Connection options:\n"
msgstr ""
"\n"
"Параметры подключения:\n"
#: help.c:130
#, c-format
msgid ""
" -h, --host=HOSTNAME database server host or socket directory "
"(default: \"%s\")\n"
msgstr ""
" -h, --host=ИМЯ имя сервера баз данных или каталог сокетов\n"
" (по умолчанию: \"%s\")\n"
#: help.c:131
msgid "local socket"
msgstr "локальный сокет"
#: help.c:134
#, c-format
msgid " -p, --port=PORT database server port (default: \"%s\")\n"
msgstr ""
" -p, --port=ПОРТ порт сервера баз данных (по умолчанию: \"%s\")\n"
#: help.c:137
#, c-format
msgid " -U, --username=USERNAME database user name (default: \"%s\")\n"
msgstr " -U, --username=ИМЯ имя пользователя (по умолчанию: \"%s\")\n"
#: help.c:138
#, c-format
msgid " -w, --no-password never prompt for password\n"
msgstr " -w, --no-password не запрашивать пароль\n"
#: help.c:139
#, c-format
msgid ""
" -W, --password force password prompt (should happen "
"automatically)\n"
msgstr ""
" -W, --password запрашивать пароль всегда (обычно не требуется)\n"
#: help.c:141
#, c-format
msgid ""
"\n"
"For more information, type \"\\?\" (for internal commands) or \"\\help"
"\" (for SQL\n"
"commands) from within psql, or consult the psql section in the PostgreSQL\n"
"documentation.\n"
"\n"
msgstr ""
"\n"
"Чтобы узнать больше, введите \"\\?\" (список внутренних команд) или \"\\help"
"\"\n"
"(справка по операторам SQL) в psql, либо обратитесь к разделу psql в\n"
"документации PostgreSQL.\n"
"\n"
#: help.c:144
#, c-format
msgid "Report bugs to <%s>.\n"
msgstr "Об ошибках сообщайте по адресу <%s>.\n"
#: help.c:145
#, c-format
msgid "%s home page: <%s>\n"
msgstr "Домашняя страница %s: <%s>\n"
#: help.c:171
#, c-format
msgid "General\n"
msgstr "Общие\n"
# skip-rule: copyright
#: help.c:172
#, c-format
msgid ""
" \\copyright show PostgreSQL usage and distribution terms\n"
msgstr ""
" \\copyright условия использования и распространения "
"PostgreSQL\n"
#: help.c:173
#, c-format
msgid ""
" \\crosstabview [COLUMNS] execute query and display results in crosstab\n"
msgstr ""
" \\crosstabview [СТОЛБЦЫ] выполнить запрос и вывести результат в "
"перекрёстном виде\n"
#: help.c:174
#, c-format
msgid ""
" \\errverbose show most recent error message at maximum "
"verbosity\n"
msgstr ""
" \\errverbose вывести максимально подробное сообщение о "
"последней ошибке\n"
#: help.c:175
#, c-format
msgid ""
" \\g [(OPTIONS)] [FILE] execute query (and send results to file or |"
"pipe);\n"
" \\g with no arguments is equivalent to a semicolon\n"
msgstr ""
" \\g [(ПАРАМЕТРЫ)] [ФАЙЛ] выполнить запрос (и направить результаты в файл\n"
"\n"
" или канал |); \\g без аргументов равнозначно \";"
"\"\n"
#: help.c:177
#, c-format
msgid ""
" \\gdesc describe result of query, without executing it\n"
msgstr ""
" \\gdesc описать результат запроса, но не выполнять его\n"
#: help.c:178
#, c-format
msgid ""
" \\gexec execute query, then execute each value in its "
"result\n"
msgstr ""
" \\gexec выполнить запрос, а затем выполнить каждую строку "
"в результате\n"
#: help.c:179
#, c-format
msgid ""
" \\gset [PREFIX] execute query and store results in psql variables\n"
msgstr ""
" \\gset [ПРЕФИКС] выполнить запрос и сохранить результаты в "
"переменных\n"
" psql\n"
#: help.c:180
#, c-format
msgid " \\gx [(OPTIONS)] [FILE] as \\g, but forces expanded output mode\n"
msgstr ""
" \\gx [(ПАРАМЕТРЫ)] [ФАЙЛ] то же, что \\g, но в режиме развёрнутого вывода\n"
#: help.c:181
#, c-format
msgid " \\q quit psql\n"
msgstr " \\q выйти из psql\n"
#: help.c:182
#, c-format
msgid " \\watch [SEC] execute query every SEC seconds\n"
msgstr ""
" \\watch [СЕК] повторять запрос в цикле через заданное число "
"секунд\n"
#: help.c:185
#, c-format
msgid "Help\n"
msgstr "Справка\n"
#: help.c:187
#, c-format
msgid " \\? [commands] show help on backslash commands\n"
msgstr " \\? [commands] справка по командам psql c \\\n"
#: help.c:188
#, c-format
msgid " \\? options show help on psql command-line options\n"
msgstr ""
" \\? options справка по параметрам командной строки psql\n"
#: help.c:189
#, c-format
msgid " \\? variables show help on special variables\n"
msgstr " \\? variables справка по специальным переменным\n"
#: help.c:190
#, c-format
msgid ""
" \\h [NAME] help on syntax of SQL commands, * for all "
"commands\n"
msgstr ""
" \\h [ИМЯ] справка по заданному SQL-оператору; * - по всем\n"
#: help.c:193
#, c-format
msgid "Query Buffer\n"
msgstr "Буфер запроса\n"
#: help.c:194
#, c-format
msgid ""
" \\e [FILE] [LINE] edit the query buffer (or file) with external "
"editor\n"
msgstr ""
" \\e [ФАЙЛ] [СТРОКА] править буфер запроса (или файл) во внешнем "
"редакторе\n"
#: help.c:195
#, c-format
msgid ""
" \\ef [FUNCNAME [LINE]] edit function definition with external editor\n"
msgstr ""
" \\ef [ФУНКЦИЯ [СТРОКА]] править определение функции во внешнем редакторе\n"
#: help.c:196
#, c-format
msgid " \\ev [VIEWNAME [LINE]] edit view definition with external editor\n"
msgstr ""
" \\ev [VIEWNAME [LINE]] править определение представления во внешнем "
"редакторе\n"
#: help.c:197
#, c-format
msgid " \\p show the contents of the query buffer\n"
msgstr " \\p вывести содержимое буфера запросов\n"
#: help.c:198
#, c-format
msgid " \\r reset (clear) the query buffer\n"
msgstr " \\r очистить буфер запроса\n"
#: help.c:200
#, c-format
msgid " \\s [FILE] display history or save it to file\n"
msgstr " \\s [ФАЙЛ] вывести историю или сохранить её в файл\n"
#: help.c:202
#, c-format
msgid " \\w FILE write query buffer to file\n"
msgstr " \\w ФАЙЛ записать буфер запроса в файл\n"
#: help.c:205
#, c-format
msgid "Input/Output\n"
msgstr "Ввод/Вывод\n"
#: help.c:206
#, c-format
msgid ""
" \\copy ... perform SQL COPY with data stream to the client "
"host\n"
msgstr " \\copy ... выполнить SQL COPY на стороне клиента\n"
#: help.c:207
#, c-format
msgid ""
" \\echo [-n] [STRING] write string to standard output (-n for no "
"newline)\n"
msgstr ""
" \\echo [-n] [СТРОКА] записать строку в поток стандартного вывода\n"
" (-n отключает перевод строки)\n"
#: help.c:208
#, c-format
msgid " \\i FILE execute commands from file\n"
msgstr " \\i ФАЙЛ выполнить команды из файла\n"
#: help.c:209
#, c-format
msgid ""
" \\ir FILE as \\i, but relative to location of current "
"script\n"
msgstr ""
" \\ir ФАЙЛ подобно \\i, но путь задаётся относительно\n"
" текущего скрипта\n"
#: help.c:210
#, c-format
msgid " \\o [FILE] send all query results to file or |pipe\n"
msgstr ""
" \\o [ФАЙЛ] выводить все результаты запросов в файл или канал "
"|\n"
#: help.c:211
#, c-format
msgid ""
" \\qecho [-n] [STRING] write string to \\o output stream (-n for no "
"newline)\n"
msgstr ""
" \\qecho [-n] [СТРОКА] записать строку в выходной поток \\o\n"
" (-n отключает перевод строки)\n"
#: help.c:212
#, c-format
msgid ""
" \\warn [-n] [STRING] write string to standard error (-n for no "
"newline)\n"
msgstr ""
" \\warn [-n] [СТРОКА] записать строку в поток вывода ошибок\n"
" (-n отключает перевод строки)\n"
#: help.c:215
#, c-format
msgid "Conditional\n"
msgstr "Условия\n"
#: help.c:216
#, c-format
msgid " \\if EXPR begin conditional block\n"
msgstr " \\if ВЫРАЖЕНИЕ начало блока условия\n"
#: help.c:217
#, c-format
msgid ""
" \\elif EXPR alternative within current conditional block\n"
msgstr ""
" \\elif ВЫРАЖЕНИЕ альтернативная ветвь в текущем блоке условия\n"
#: help.c:218
#, c-format
msgid ""
" \\else final alternative within current conditional "
"block\n"
msgstr ""
" \\else окончательная ветвь в текущем блоке условия\n"
#: help.c:219
#, c-format
msgid " \\endif end conditional block\n"
msgstr " \\endif конец блока условия\n"
#: help.c:222
#, c-format
msgid "Informational\n"
msgstr "Информационные\n"
#: help.c:223
#, c-format
msgid " (options: S = show system objects, + = additional detail)\n"
msgstr ""
" (дополнения: S = показывать системные объекты, + = дополнительные "
"подробности)\n"
#: help.c:224
#, c-format
msgid " \\d[S+] list tables, views, and sequences\n"
msgstr ""
" \\d[S+] список таблиц, представлений и "
"последовательностей\n"
#: help.c:225
#, c-format
msgid " \\d[S+] NAME describe table, view, sequence, or index\n"
msgstr ""
" \\d[S+] ИМЯ описание таблицы, представления, "
"последовательности\n"
" или индекса\n"
#: help.c:226
#, c-format
msgid " \\da[S] [PATTERN] list aggregates\n"
msgstr " \\da[S] [МАСКА] список агрегатных функций\n"
#: help.c:227
#, c-format
msgid " \\dA[+] [PATTERN] list access methods\n"
msgstr " \\dA[+] [МАСКА] список методов доступа\n"
# well-spelled: МСК
#: help.c:228
#, c-format
msgid " \\dAc[+] [AMPTRN [TYPEPTRN]] list operator classes\n"
msgstr " \\dAc[+] [МСК_МД [МСК_ТИПА]] список классов операторов\n"
# well-spelled: МСК
#: help.c:229
#, c-format
msgid " \\dAf[+] [AMPTRN [TYPEPTRN]] list operator families\n"
msgstr " \\dAf[+] [МСК_МД [МСК_ТИПА]] список семейств операторов\n"
# well-spelled: МСК
#: help.c:230
#, c-format
msgid " \\dAo[+] [AMPTRN [OPFPTRN]] list operators of operator families\n"
msgstr ""
" \\dAo[+] [МСК_МД [МСК_СОП]] список операторов из семейств операторов\n"
# well-spelled: МСК
#: help.c:231
#, c-format
msgid ""
" \\dAp[+] [AMPTRN [OPFPTRN]] list support functions of operator families\n"
msgstr " \\dAp[+] [МСК_МД [МСК_СОП]] список опорных функций из семейств\n"
#: help.c:232
#, c-format
msgid " \\db[+] [PATTERN] list tablespaces\n"
msgstr " \\db[+] [МАСКА] список табличных пространств\n"
#: help.c:233
#, c-format
msgid " \\dc[S+] [PATTERN] list conversions\n"
msgstr " \\dc[S+] [МАСКА] список преобразований\n"
#: help.c:234
#, c-format
msgid " \\dC[+] [PATTERN] list casts\n"
msgstr " \\dC[+] [МАСКА] список приведений типов\n"
#: help.c:235
#, c-format
msgid ""
" \\dd[S] [PATTERN] show object descriptions not displayed elsewhere\n"
msgstr ""
" \\dd[S] [МАСКА] описания объектов, не выводимые в других режимах\n"
#: help.c:236
#, c-format
msgid " \\dD[S+] [PATTERN] list domains\n"
msgstr " \\dD[S+] [МАСКА] список доменов\n"
#: help.c:237
#, c-format
msgid " \\ddp [PATTERN] list default privileges\n"
msgstr " \\ddp [МАСКА] список прав по умолчанию\n"
#: help.c:238
#, c-format
msgid " \\dE[S+] [PATTERN] list foreign tables\n"
msgstr " \\dE[S+] [МАСКА] список сторонних таблиц\n"
#: help.c:239
#, c-format
msgid " \\des[+] [PATTERN] list foreign servers\n"
msgstr " \\des[+] [МАСКА] список сторонних серверов\n"
#: help.c:240
#, c-format
msgid " \\det[+] [PATTERN] list foreign tables\n"
msgstr " \\det[+] [МАСКА] список сторонних таблиц\n"
#: help.c:241
#, c-format
msgid " \\deu[+] [PATTERN] list user mappings\n"
msgstr " \\deu[+] [МАСКА] список сопоставлений пользователей\n"
#: help.c:242
#, c-format
msgid " \\dew[+] [PATTERN] list foreign-data wrappers\n"
msgstr " \\dew[+] [МАСКА] список обёрток сторонних данных\n"
# well-spelled: МСК, ФУНК
#: help.c:243
#, c-format
msgid ""
" \\df[anptw][S+] [FUNCPTRN [TYPEPTRN ...]]\n"
" list [only agg/normal/procedure/trigger/window] "
"functions\n"
msgstr ""
" \\df[anptw][S+] [МСК_ФУНК [МСК_ТИПА ...]]\n"
" список функций [только агрегатных/обычных/процедур/"
"триггеров/оконных]\n"
#: help.c:245
#, c-format
msgid " \\dF[+] [PATTERN] list text search configurations\n"
msgstr " \\dF[+] [МАСКА] список конфигураций текстового поиска\n"
#: help.c:246
#, c-format
msgid " \\dFd[+] [PATTERN] list text search dictionaries\n"
msgstr " \\dFd[+] [МАСКА] список словарей текстового поиска\n"
#: help.c:247
#, c-format
msgid " \\dFp[+] [PATTERN] list text search parsers\n"
msgstr " \\dFp[+] [МАСКА] список анализаторов текстового поиска\n"
#: help.c:248
#, c-format
msgid " \\dFt[+] [PATTERN] list text search templates\n"
msgstr " \\dFt[+] [МАСКА] список шаблонов текстового поиска\n"
#: help.c:249
#, c-format
msgid " \\dg[S+] [PATTERN] list roles\n"
msgstr " \\dg[S+] [МАСКА] список ролей\n"
#: help.c:250
#, c-format
msgid " \\di[S+] [PATTERN] list indexes\n"
msgstr " \\di[S+] [МАСКА] список индексов\n"
#: help.c:251
#, c-format
msgid " \\dl list large objects, same as \\lo_list\n"
msgstr ""
" \\dl список больших объектов (то же, что и \\lo_list)\n"
#: help.c:252
#, c-format
msgid " \\dL[S+] [PATTERN] list procedural languages\n"
msgstr " \\dL[S+] [МАСКА] список языков процедур\n"
#: help.c:253
#, c-format
msgid " \\dm[S+] [PATTERN] list materialized views\n"
msgstr " \\dm[S+] [МАСКА] список материализованных представлений\n"
#: help.c:254
#, c-format
msgid " \\dn[S+] [PATTERN] list schemas\n"
msgstr " \\dn[S+] [МАСКА] список схем\n"
# well-spelled: МСК
#: help.c:255
#, c-format
msgid ""
" \\do[S+] [OPPTRN [TYPEPTRN [TYPEPTRN]]]\n"
" list operators\n"
msgstr ""
" \\do[S+] [МСК_ОП [МСК_ТИПА [МСК_ТИПА]]]\n"
" список операторов\n"
#: help.c:257
#, c-format
msgid " \\dO[S+] [PATTERN] list collations\n"
msgstr " \\dO[S+] [МАСКА] список правил сортировки\n"
#: help.c:258
#, c-format
msgid ""
" \\dp [PATTERN] list table, view, and sequence access privileges\n"
msgstr ""
" \\dp [МАСКА] список прав доступа к таблицам, представлениям и\n"
" последовательностям\n"
#: help.c:259
#, c-format
msgid ""
" \\dP[itn+] [PATTERN] list [only index/table] partitioned relations "
"[n=nested]\n"
msgstr ""
" \\dP[itn+] [МАСКА] список секционированных отношений\n"
" [только индексов (i)/таблиц (t)], с вложенностью "
"(n)\n"
# well-spelled: МСК
#: help.c:260
#, c-format
msgid " \\drds [ROLEPTRN [DBPTRN]] list per-database role settings\n"
msgstr " \\drds [МСК_РОЛИ [МСК_БД]] список параметров роли на уровне БД\n"
#: help.c:261
#, c-format
msgid " \\dRp[+] [PATTERN] list replication publications\n"
msgstr " \\dRp[+] [МАСКА] список публикаций для репликации\n"
#: help.c:262
#, c-format
msgid " \\dRs[+] [PATTERN] list replication subscriptions\n"
msgstr " \\dRs[+] [МАСКА] список подписок на репликацию\n"
#: help.c:263
#, c-format
msgid " \\ds[S+] [PATTERN] list sequences\n"
msgstr " \\ds[S+] [МАСКА] список последовательностей\n"
#: help.c:264
#, c-format
msgid " \\dt[S+] [PATTERN] list tables\n"
msgstr " \\dt[S+] [МАСКА] список таблиц\n"
#: help.c:265
#, c-format
msgid " \\dT[S+] [PATTERN] list data types\n"
msgstr " \\dT[S+] [МАСКА] список типов данных\n"
#: help.c:266
#, c-format
msgid " \\du[S+] [PATTERN] list roles\n"
msgstr " \\du[S+] [МАСКА] список ролей\n"
#: help.c:267
#, c-format
msgid " \\dv[S+] [PATTERN] list views\n"
msgstr " \\dv[S+] [МАСКА] список представлений\n"
#: help.c:268
#, c-format
msgid " \\dx[+] [PATTERN] list extensions\n"
msgstr " \\dx[+] [МАСКА] список расширений\n"
#: help.c:269
#, c-format
msgid " \\dX [PATTERN] list extended statistics\n"
msgstr " \\dX [МАСКА] список расширенных статистик\n"
#: help.c:270
#, c-format
msgid " \\dy[+] [PATTERN] list event triggers\n"
msgstr " \\dy[+] [МАСКА] список событийных триггеров\n"
#: help.c:271
#, c-format
msgid " \\l[+] [PATTERN] list databases\n"
msgstr " \\l[+] [МАСКА] список баз данных\n"
#: help.c:272
#, c-format
msgid " \\sf[+] FUNCNAME show a function's definition\n"
msgstr " \\sf[+] ИМЯ_ФУНКЦИИ показать определение функции\n"
# well-spelled: ПРЕДСТ
#: help.c:273
#, c-format
msgid " \\sv[+] VIEWNAME show a view's definition\n"
msgstr " \\sv[+] ИМЯ_ПРЕДСТ показать определение представления\n"
#: help.c:274
#, c-format
msgid " \\z [PATTERN] same as \\dp\n"
msgstr " \\z [МАСКА] то же, что и \\dp\n"
#: help.c:277
#, c-format
msgid "Formatting\n"
msgstr "Форматирование\n"
#: help.c:278
#, c-format
msgid ""
" \\a toggle between unaligned and aligned output mode\n"
msgstr ""
" \\a переключение режимов вывода:\n"
" неформатированный/выровненный\n"
#: help.c:279
#, c-format
msgid " \\C [STRING] set table title, or unset if none\n"
msgstr ""
" \\C [СТРОКА] задать заголовок таблицы или убрать, если не "
"задан\n"
#: help.c:280
#, c-format
msgid ""
" \\f [STRING] show or set field separator for unaligned query "
"output\n"
msgstr ""
" \\f [СТРОКА] показать или установить разделитель полей для\n"
" неформатированного вывода\n"
#: help.c:281
#, c-format
msgid " \\H toggle HTML output mode (currently %s)\n"
msgstr ""
" \\H переключить режим вывода в HTML (текущий: %s)\n"
#: help.c:283
#, c-format
msgid ""
" \\pset [NAME [VALUE]] set table output option\n"
" (border|columns|csv_fieldsep|expanded|fieldsep|\n"
" fieldsep_zero|footer|format|linestyle|null|\n"
" numericlocale|pager|pager_min_lines|recordsep|\n"
" recordsep_zero|tableattr|title|tuples_only|\n"
" unicode_border_linestyle|unicode_column_linestyle|\n"
" unicode_header_linestyle)\n"
msgstr ""
" \\pset [ИМЯ [ЗНАЧЕНИЕ]] установить параметр вывода таблицы\n"
" (border|columns|csv_fieldsep|expanded|fieldsep|\n"
" fieldsep_zero|footer|format|linestyle|null|\n"
" numericlocale|pager|pager_min_lines|recordsep|\n"
" recordsep_zero|tableattr|title|tuples_only|\n"
" unicode_border_linestyle|unicode_column_linestyle|\n"
" unicode_header_linestyle)\n"
#: help.c:290
#, c-format
msgid " \\t [on|off] show only rows (currently %s)\n"
msgstr " \\t [on|off] режим вывода только строк (сейчас: %s)\n"
#: help.c:292
#, c-format
msgid ""
" \\T [STRING] set HTML <table> tag attributes, or unset if none\n"
msgstr ""
" \\T [СТРОКА] задать атрибуты для <table> или убрать, если не "
"заданы\n"
#: help.c:293
#, c-format
msgid " \\x [on|off|auto] toggle expanded output (currently %s)\n"
msgstr ""
" \\x [on|off|auto] переключить режим расширенного вывода (сейчас: "
"%s)\n"
#: help.c:297
#, c-format
msgid "Connection\n"
msgstr "Соединение\n"
#: help.c:299
#, c-format
msgid ""
" \\c[onnect] {[DBNAME|- USER|- HOST|- PORT|-] | conninfo}\n"
" connect to new database (currently \"%s\")\n"
msgstr ""
" \\c[onnect] {[БД|- ПОЛЬЗОВАТЕЛЬ|- СЕРВЕР|- ПОРТ|-] | conninfo}\n"
" подключиться к другой базе данных\n"
" (текущая: \"%s\")\n"
#: help.c:303
#, c-format
msgid ""
" \\c[onnect] {[DBNAME|- USER|- HOST|- PORT|-] | conninfo}\n"
" connect to new database (currently no connection)\n"
msgstr ""
" \\c[onnect] {[БД|- ПОЛЬЗОВАТЕЛЬ|- СЕРВЕР|- ПОРТ|-] | conninfo}\n"
" подключиться к другой базе данных\n"
" (сейчас подключения нет)\n"
#: help.c:305
#, c-format
msgid ""
" \\conninfo display information about current connection\n"
msgstr " \\conninfo информация о текущем соединении\n"
#: help.c:306
#, c-format
msgid " \\encoding [ENCODING] show or set client encoding\n"
msgstr " \\encoding [КОДИРОВКА] показать/установить клиентскую кодировку\n"
#: help.c:307
#, c-format
msgid " \\password [USERNAME] securely change the password for a user\n"
msgstr " \\password [ИМЯ] безопасно сменить пароль пользователя\n"
#: help.c:310
#, c-format
msgid "Operating System\n"
msgstr "Операционная система\n"
#: help.c:311
#, c-format
msgid " \\cd [DIR] change the current working directory\n"
msgstr " \\cd [ПУТЬ] сменить текущий каталог\n"
#: help.c:312
#, c-format
msgid " \\setenv NAME [VALUE] set or unset environment variable\n"
msgstr ""
" \\setenv ИМЯ [ЗНАЧЕНИЕ] установить или сбросить переменную окружения\n"
#: help.c:313
#, c-format
msgid " \\timing [on|off] toggle timing of commands (currently %s)\n"
msgstr " \\timing [on|off] включить/выключить секундомер (сейчас: %s)\n"
#: help.c:315
#, c-format
msgid ""
" \\! [COMMAND] execute command in shell or start interactive "
"shell\n"
msgstr ""
" \\! [КОМАНДА] выполнить команду в командной оболочке\n"
" или запустить интерактивную оболочку\n"
#: help.c:318
#, c-format
msgid "Variables\n"
msgstr "Переменные\n"
#: help.c:319
#, c-format
msgid " \\prompt [TEXT] NAME prompt user to set internal variable\n"
msgstr ""
" \\prompt [ТЕКСТ] ИМЯ предложить пользователю задать внутреннюю "
"переменную\n"
#: help.c:320
#, c-format
msgid ""
" \\set [NAME [VALUE]] set internal variable, or list all if no "
"parameters\n"
msgstr ""
" \\set [ИМЯ [ЗНАЧЕНИЕ]] установить внутреннюю переменную или вывести все,\n"
" если имя не задано\n"
#: help.c:321
#, c-format
msgid " \\unset NAME unset (delete) internal variable\n"
msgstr " \\unset ИМЯ сбросить (удалить) внутреннюю переменную\n"
#: help.c:324
#, c-format
msgid "Large Objects\n"
msgstr "Большие объекты\n"
#: help.c:325
#, c-format
msgid ""
" \\lo_export LOBOID FILE\n"
" \\lo_import FILE [COMMENT]\n"
" \\lo_list\n"
" \\lo_unlink LOBOID large object operations\n"
msgstr ""
" \\lo_export LOBOID ФАЙЛ\n"
" \\lo_import ФАЙЛ [КОММЕНТАРИЙ]\n"
" \\lo_list\n"
" \\lo_unlink LOBOID операции с большими объектами\n"
#: help.c:352
#, c-format
msgid ""
"List of specially treated variables\n"
"\n"
msgstr ""
"Список специальных переменных\n"
"\n"
#: help.c:354
#, c-format
msgid "psql variables:\n"
msgstr "Переменные psql:\n"
#: help.c:356
#, c-format
msgid ""
" psql --set=NAME=VALUE\n"
" or \\set NAME VALUE inside psql\n"
"\n"
msgstr ""
" psql --set=ИМЯ=ЗНАЧЕНИЕ\n"
" или \\set ИМЯ ЗНАЧЕНИЕ в приглашении psql\n"
"\n"
#: help.c:358
#, c-format
msgid ""
" AUTOCOMMIT\n"
" if set, successful SQL commands are automatically committed\n"
msgstr ""
" AUTOCOMMIT\n"
" если установлен, успешные SQL-команды фиксируются автоматически\n"
#: help.c:360
#, c-format
msgid ""
" COMP_KEYWORD_CASE\n"
" determines the case used to complete SQL key words\n"
" [lower, upper, preserve-lower, preserve-upper]\n"
msgstr ""
" COMP_KEYWORD_CASE\n"
" определяет регистр для автодополнения ключевых слов SQL\n"
" [lower (нижний), upper (верхний),\n"
" preserve-lower (сохранять нижний),\n"
" preserve-upper (сохранять верхний)]\n"
#: help.c:363
#, c-format
msgid ""
" DBNAME\n"
" the currently connected database name\n"
msgstr ""
" DBNAME\n"
" имя текущей подключённой базы данных\n"
#: help.c:365
#, c-format
msgid ""
" ECHO\n"
" controls what input is written to standard output\n"
" [all, errors, none, queries]\n"
msgstr ""
" ECHO\n"
" определяет, что выдаётся на стандартный вывод\n"
" [all (всё), errors (ошибки), none (ничего),\n"
" queries (запросы)]\n"
#: help.c:368
#, c-format
msgid ""
" ECHO_HIDDEN\n"
" if set, display internal queries executed by backslash commands;\n"
" if set to \"noexec\", just show them without execution\n"
msgstr ""
" ECHO_HIDDEN\n"
" если включено, выводит внутренние запросы, порождаемые командами с \\;\n"
" если установлено значение \"noexec\", они выводятся, но не выполняются\n"
#: help.c:371
#, c-format
msgid ""
" ENCODING\n"
" current client character set encoding\n"
msgstr ""
" ENCODING\n"
" текущая кодировка клиентского набора символов\n"
#: help.c:373
#, c-format
msgid ""
" ERROR\n"
" true if last query failed, else false\n"
msgstr ""
" ERROR\n"
" true в случае ошибки в последнем запросе, иначе — false\n"
#: help.c:375
#, c-format
msgid ""
" FETCH_COUNT\n"
" the number of result rows to fetch and display at a time (0 = "
"unlimited)\n"
msgstr ""
" FETCH_COUNT\n"
" число результирующих строк, извлекаемых и отображаемых за раз\n"
" (0 = без ограничений)\n"
#: help.c:377
#, c-format
msgid ""
" HIDE_TABLEAM\n"
" if set, table access methods are not displayed\n"
msgstr ""
" HIDE_TABLEAM\n"
" если установлено, табличные методы доступа не выводятся\n"
#: help.c:379
#, c-format
msgid ""
" HIDE_TOAST_COMPRESSION\n"
" if set, compression methods are not displayed\n"
msgstr ""
" HIDE_TOAST_COMPRESSION\n"
" если установлено, методы сжатия не выводятся\n"
#: help.c:381
#, c-format
msgid ""
" HISTCONTROL\n"
" controls command history [ignorespace, ignoredups, ignoreboth]\n"
msgstr ""
" HISTCONTROL\n"
" управляет историей команд [ignorespace (игнорировать пробелы),\n"
" ignoredups (игнорировать дубли), ignoreboth (и то, и другое)]\n"
#: help.c:383
#, c-format
msgid ""
" HISTFILE\n"
" file name used to store the command history\n"
msgstr ""
" HISTFILE\n"
" имя файла, в котором будет сохраняться история команд\n"
#: help.c:385
#, c-format
msgid ""
" HISTSIZE\n"
" maximum number of commands to store in the command history\n"
msgstr ""
" HISTSIZE\n"
" максимальное число команд, сохраняемых в истории\n"
#: help.c:387
#, c-format
msgid ""
" HOST\n"
" the currently connected database server host\n"
msgstr ""
" HOST\n"
" сервер баз данных, к которому установлено подключение\n"
#: help.c:389
#, c-format
msgid ""
" IGNOREEOF\n"
" number of EOFs needed to terminate an interactive session\n"
msgstr ""
" IGNOREEOF\n"
" количество EOF для завершения интерактивного сеанса\n"
#: help.c:391
#, c-format
msgid ""
" LASTOID\n"
" value of the last affected OID\n"
msgstr ""
" LASTOID\n"
" значение последнего задействованного OID\n"
#: help.c:393
#, c-format
msgid ""
" LAST_ERROR_MESSAGE\n"
" LAST_ERROR_SQLSTATE\n"
" message and SQLSTATE of last error, or empty string and \"00000\" if "
"none\n"
msgstr ""
" LAST_ERROR_MESSAGE\n"
" LAST_ERROR_SQLSTATE\n"
" сообщение и код SQLSTATE последней ошибки, либо пустая строка и "
"\"00000\",\n"
" если ошибки не было\n"
#: help.c:396
#, c-format
msgid ""
" ON_ERROR_ROLLBACK\n"
" if set, an error doesn't stop a transaction (uses implicit savepoints)\n"
msgstr ""
" ON_ERROR_ROLLBACK\n"
" если установлено, транзакция не прекращается при ошибке\n"
" (используются неявные точки сохранения)\n"
#: help.c:398
#, c-format
msgid ""
" ON_ERROR_STOP\n"
" stop batch execution after error\n"
msgstr ""
" ON_ERROR_STOP\n"
" останавливать выполнение пакета команд после ошибки\n"
#: help.c:400
#, c-format
msgid ""
" PORT\n"
" server port of the current connection\n"
msgstr ""
" PORT\n"
" порт сервера для текущего соединения\n"
#: help.c:402
#, c-format
msgid ""
" PROMPT1\n"
" specifies the standard psql prompt\n"
msgstr ""
" PROMPT1\n"
" устанавливает стандартное приглашение psql\n"
#: help.c:404
#, c-format
msgid ""
" PROMPT2\n"
" specifies the prompt used when a statement continues from a previous "
"line\n"
msgstr ""
" PROMPT2\n"
" устанавливает приглашение, которое выводится при переносе оператора\n"
" на новую строку\n"
#: help.c:406
#, c-format
msgid ""
" PROMPT3\n"
" specifies the prompt used during COPY ... FROM STDIN\n"
msgstr ""
" PROMPT3\n"
" устанавливает приглашение для выполнения COPY ... FROM STDIN\n"
#: help.c:408
#, c-format
msgid ""
" QUIET\n"
" run quietly (same as -q option)\n"
msgstr ""
" QUIET\n"
" выводить минимум сообщений (как и с параметром -q)\n"
#: help.c:410
#, c-format
msgid ""
" ROW_COUNT\n"
" number of rows returned or affected by last query, or 0\n"
msgstr ""
" ROW_COUNT\n"
" число строк, возвращённых или обработанных последним SQL-запросом, либо "
"0\n"
#: help.c:412
#, c-format
msgid ""
" SERVER_VERSION_NAME\n"
" SERVER_VERSION_NUM\n"
" server's version (in short string or numeric format)\n"
msgstr ""
" SERVER_VERSION_NAME\n"
" SERVER_VERSION_NUM\n"
" версия сервера (в коротком текстовом и числовом формате)\n"
#: help.c:415
#, c-format
msgid ""
" SHOW_CONTEXT\n"
" controls display of message context fields [never, errors, always]\n"
msgstr ""
" SHOW_CONTEXT\n"
" управляет отображением полей контекста сообщений\n"
" [never (не отображать никогда), errors (ошибки), always (всегда]\n"
#: help.c:417
#, c-format
msgid ""
" SINGLELINE\n"
" if set, end of line terminates SQL commands (same as -S option)\n"
msgstr ""
" SINGLELINE\n"
" если установлено, конец строки завершает режим ввода SQL-команды\n"
" (как и с параметром -S)\n"
#: help.c:419
#, c-format
msgid ""
" SINGLESTEP\n"
" single-step mode (same as -s option)\n"
msgstr ""
" SINGLESTEP\n"
" пошаговый режим (как и с параметром -s)\n"
#: help.c:421
#, c-format
msgid ""
" SQLSTATE\n"
" SQLSTATE of last query, or \"00000\" if no error\n"
msgstr ""
" SQLSTATE\n"
" SQLSTATE последнего запроса или \"00000\", если он выполнился без "
"ошибок\n"
#: help.c:423
#, c-format
msgid ""
" USER\n"
" the currently connected database user\n"
msgstr ""
" USER\n"
" текущий пользователь, подключённый к БД\n"
#: help.c:425
#, c-format
msgid ""
" VERBOSITY\n"
" controls verbosity of error reports [default, verbose, terse, sqlstate]\n"
msgstr ""
" VERBOSITY\n"
" управляет детализацией отчётов об ошибках [default (по умолчанию),\n"
" verbose (подробно), terse (кратко), sqlstate (код состояния)]\n"
#: help.c:427
#, c-format
msgid ""
" VERSION\n"
" VERSION_NAME\n"
" VERSION_NUM\n"
" psql's version (in verbose string, short string, or numeric format)\n"
msgstr ""
" VERSION\n"
" VERSION_NAME\n"
" VERSION_NUM\n"
" версия psql (в развёрнутом, в коротком текстовом и в числовом формате)\n"
#: help.c:432
#, c-format
msgid ""
"\n"
"Display settings:\n"
msgstr ""
"\n"
"Параметры отображения:\n"
#: help.c:434
#, c-format
msgid ""
" psql --pset=NAME[=VALUE]\n"
" or \\pset NAME [VALUE] inside psql\n"
"\n"
msgstr ""
" psql --pset=ИМЯ[=ЗНАЧЕНИЕ]\n"
" или \\pset ИМЯ [ЗНАЧЕНИЕ] в приглашении psql\n"
"\n"
#: help.c:436
#, c-format
msgid ""
" border\n"
" border style (number)\n"
msgstr ""
" border\n"
" стиль границы (число)\n"
#: help.c:438
#, c-format
msgid ""
" columns\n"
" target width for the wrapped format\n"
msgstr ""
" columns\n"
" целевая ширина для формата с переносом\n"
#: help.c:440
#, c-format
msgid ""
" expanded (or x)\n"
" expanded output [on, off, auto]\n"
msgstr ""
" expanded (или x)\n"
" расширенный вывод [on (вкл.), off (выкл.), auto (авто)]\n"
#: help.c:442
#, c-format
msgid ""
" fieldsep\n"
" field separator for unaligned output (default \"%s\")\n"
msgstr ""
" fieldsep\n"
" разделитель полей для неформатированного вывода (по умолчанию \"%s\")\n"
#: help.c:445
#, c-format
msgid ""
" fieldsep_zero\n"
" set field separator for unaligned output to a zero byte\n"
msgstr ""
" fieldsep_zero\n"
" устанавливает ноль разделителем полей при неформатированном выводе\n"
#: help.c:447
#, c-format
msgid ""
" footer\n"
" enable or disable display of the table footer [on, off]\n"
msgstr ""
" footer\n"
" включает или выключает вывод подписей таблицы [on (вкл.), off (выкл.)]\n"
#: help.c:449
#, c-format
msgid ""
" format\n"
" set output format [unaligned, aligned, wrapped, html, asciidoc, ...]\n"
msgstr ""
" format\n"
" устанавливает формат вывода [unaligned (неформатированный),\n"
"\n"
" aligned (выровненный), wrapped (с переносом), html, asciidoc, ...]\n"
#: help.c:451
#, c-format
msgid ""
" linestyle\n"
" set the border line drawing style [ascii, old-ascii, unicode]\n"
msgstr ""
" linestyle\n"
" задаёт стиль рисования линий границы [ascii, old-ascii, unicode]\n"
#: help.c:453
#, c-format
msgid ""
" null\n"
" set the string to be printed in place of a null value\n"
msgstr ""
" null\n"
" устанавливает строку, выводимую вместо значения NULL\n"
#: help.c:455
#, c-format
msgid ""
" numericlocale\n"
" enable display of a locale-specific character to separate groups of "
"digits\n"
msgstr ""
" numericlocale\n"
" отключает вывод заданного локалью разделителя группы цифр\n"
#: help.c:457
#, c-format
msgid ""
" pager\n"
" control when an external pager is used [yes, no, always]\n"
msgstr ""
" pager\n"
" определяет, используется ли внешний постраничник\n"
" [yes (да), no (нет), always (всегда)]\n"
#: help.c:459
#, c-format
msgid ""
" recordsep\n"
" record (line) separator for unaligned output\n"
msgstr ""
" recordsep\n"
" разделитель записей (строк) при неформатированном выводе\n"
#: help.c:461
#, c-format
msgid ""
" recordsep_zero\n"
" set record separator for unaligned output to a zero byte\n"
msgstr ""
" recordsep_zero\n"
" устанавливает ноль разделителем записей при неформатированном выводе\n"
#: help.c:463
#, c-format
msgid ""
" tableattr (or T)\n"
" specify attributes for table tag in html format, or proportional\n"
" column widths for left-aligned data types in latex-longtable format\n"
msgstr ""
" tableattr (или T)\n"
" задаёт атрибуты для тега table в формате html или пропорциональные\n"
" ширины столбцов для выровненных влево данных, в формате latex-longtable\n"
#: help.c:466
#, c-format
msgid ""
" title\n"
" set the table title for subsequently printed tables\n"
msgstr ""
" title\n"
" задаёт заголовок таблицы для последовательно печатаемых таблиц\n"
#: help.c:468
#, c-format
msgid ""
" tuples_only\n"
" if set, only actual table data is shown\n"
msgstr ""
" tuples_only\n"
" если установлено, выводятся только непосредственно табличные данные\n"
#: help.c:470
#, c-format
msgid ""
" unicode_border_linestyle\n"
" unicode_column_linestyle\n"
" unicode_header_linestyle\n"
" set the style of Unicode line drawing [single, double]\n"
msgstr ""
" unicode_border_linestyle\n"
" unicode_column_linestyle\n"
" unicode_header_linestyle\n"
" задаёт стиль рисуемых линий Unicode [single (одинарные), double "
"(двойные)]\n"
#: help.c:475
#, c-format
msgid ""
"\n"
"Environment variables:\n"
msgstr ""
"\n"
"Переменные окружения:\n"
#: help.c:479
#, c-format
msgid ""
" NAME=VALUE [NAME=VALUE] psql ...\n"
" or \\setenv NAME [VALUE] inside psql\n"
"\n"
msgstr ""
" ИМЯ=ЗНАЧЕНИЕ [ИМЯ=ЗНАЧЕНИЕ] psql ...\n"
" или \\setenv ИМЯ [ЗНАЧЕНИЕ] в приглашении psql\n"
"\n"
#: help.c:481
#, c-format
msgid ""
" set NAME=VALUE\n"
" psql ...\n"
" or \\setenv NAME [VALUE] inside psql\n"
"\n"
msgstr ""
" set ИМЯ=ЗНАЧЕНИЕ\n"
" psql ...\n"
" или \\setenv ИМЯ ЗНАЧЕНИЕ в приглашении psql\n"
"\n"
#: help.c:484
#, c-format
msgid ""
" COLUMNS\n"
" number of columns for wrapped format\n"
msgstr ""
" COLUMNS\n"
" число столбцов для форматирования с переносом\n"
#: help.c:486
#, c-format
msgid ""
" PGAPPNAME\n"
" same as the application_name connection parameter\n"
msgstr ""
" PGAPPNAME\n"
" синоним параметра подключения application_name\n"
#: help.c:488
#, c-format
msgid ""
" PGDATABASE\n"
" same as the dbname connection parameter\n"
msgstr ""
" PGDATABASE\n"
" синоним параметра подключения dbname\n"
#: help.c:490
#, c-format
msgid ""
" PGHOST\n"
" same as the host connection parameter\n"
msgstr ""
" PGHOST\n"
" синоним параметра подключения host\n"
#: help.c:492
#, c-format
msgid ""
" PGPASSFILE\n"
" password file name\n"
msgstr ""
" PGPASSFILE\n"
" имя файла с паролем\n"
#: help.c:494
#, c-format
msgid ""
" PGPASSWORD\n"
" connection password (not recommended)\n"
msgstr ""
" PGPASSWORD\n"
" пароль для подключения (использовать не рекомендуется)\n"
#: help.c:496
#, c-format
msgid ""
" PGPORT\n"
" same as the port connection parameter\n"
msgstr ""
" PGPORT\n"
" синоним параметра подключения port\n"
#: help.c:498
#, c-format
msgid ""
" PGUSER\n"
" same as the user connection parameter\n"
msgstr ""
" PGUSER\n"
" синоним параметра подключения user\n"
#: help.c:500
#, c-format
msgid ""
" PSQL_EDITOR, EDITOR, VISUAL\n"
" editor used by the \\e, \\ef, and \\ev commands\n"
msgstr ""
" PSQL_EDITOR, EDITOR, VISUAL\n"
" редактор, вызываемый командами \\e, \\ef и \\ev\n"
#: help.c:502
#, c-format
msgid ""
" PSQL_EDITOR_LINENUMBER_ARG\n"
" how to specify a line number when invoking the editor\n"
msgstr ""
" PSQL_EDITOR_LINENUMBER_ARG\n"
" определяет способ передачи номера строки при вызове редактора\n"
#: help.c:504
#, c-format
msgid ""
" PSQL_HISTORY\n"
" alternative location for the command history file\n"
msgstr ""
" PSQL_HISTORY\n"
" альтернативное размещение файла с историей команд\n"
#: help.c:506
#, c-format
msgid ""
" PSQL_PAGER, PAGER\n"
" name of external pager program\n"
msgstr ""
" PSQL_PAGER, PAGER\n"
" имя программы внешнего постраничника\n"
#: help.c:508
#, c-format
msgid ""
" PSQLRC\n"
" alternative location for the user's .psqlrc file\n"
msgstr ""
" PSQLRC\n"
" альтернативное размещение пользовательского файла .psqlrc\n"
#: help.c:510
#, c-format
msgid ""
" SHELL\n"
" shell used by the \\! command\n"
msgstr ""
" SHELL\n"
" оболочка, вызываемая командой \\!\n"
#: help.c:512
#, c-format
msgid ""
" TMPDIR\n"
" directory for temporary files\n"
msgstr ""
" TMPDIR\n"
" каталог для временных файлов\n"
#: help.c:557
msgid "Available help:\n"
msgstr "Имеющаяся справка:\n"
#: help.c:652
#, c-format
msgid ""
"Command: %s\n"
"Description: %s\n"
"Syntax:\n"
"%s\n"
"\n"
"URL: %s\n"
"\n"
msgstr ""
"Команда: %s\n"
"Описание: %s\n"
"Синтаксис:\n"
"%s\n"
"\n"
"URL: %s\n"
"\n"
#: help.c:675
#, c-format
msgid ""
"No help available for \"%s\".\n"
"Try \\h with no arguments to see available help.\n"
msgstr ""
"Нет справки по команде \"%s\".\n"
"Попробуйте \\h без аргументов и посмотрите, что есть.\n"
#: input.c:217
#, c-format
msgid "could not read from input file: %m"
msgstr "не удалось прочитать входной файл: %m"
#: input.c:471 input.c:509
#, c-format
msgid "could not save history to file \"%s\": %m"
msgstr "не удалось сохранить историю в файле \"%s\": %m"
#: input.c:528
#, c-format
msgid "history is not supported by this installation"
msgstr "в данной среде история не поддерживается"
#: large_obj.c:65
#, c-format
msgid "%s: not connected to a database"
msgstr "%s: нет соединения с базой данных"
#: large_obj.c:84
#, c-format
msgid "%s: current transaction is aborted"
msgstr "%s: текущая транзакция прервана"
#: large_obj.c:87
#, c-format
msgid "%s: unknown transaction status"
msgstr "%s: неизвестное состояние транзакции"
#: large_obj.c:288 large_obj.c:299
msgid "ID"
msgstr "ID"
#: large_obj.c:309
msgid "Large objects"
msgstr "Большие объекты"
#: mainloop.c:136
#, c-format
msgid "\\if: escaped"
msgstr "выход из блока \\if"
#: mainloop.c:195
#, c-format
msgid "Use \"\\q\" to leave %s.\n"
msgstr "Чтобы выйти из %s, введите \"\\q\".\n"
#: mainloop.c:217
msgid ""
"The input is a PostgreSQL custom-format dump.\n"
"Use the pg_restore command-line client to restore this dump to a database.\n"
msgstr ""
"Результат выдаётся в специальном формате выгрузки PostgreSQL.\n"
"Чтобы восстановить базу данных из этого формата, воспользуйтесь программой "
"командной строки pg_restore.\n"
#: mainloop.c:298
msgid "Use \\? for help or press control-C to clear the input buffer."
msgstr ""
"Введите \\? для получения справки или нажмите Control-C для очистки буфера "
"ввода."
#: mainloop.c:300
msgid "Use \\? for help."
msgstr "Введите \\? для получения справки."
#: mainloop.c:304
msgid "You are using psql, the command-line interface to PostgreSQL."
msgstr "Вы используете psql - интерфейс командной строки к PostgreSQL."
# skip-rule: copyright
#: mainloop.c:305
#, c-format
msgid ""
"Type: \\copyright for distribution terms\n"
" \\h for help with SQL commands\n"
" \\? for help with psql commands\n"
" \\g or terminate with semicolon to execute query\n"
" \\q to quit\n"
msgstr ""
"Азы: \\copyright - условия распространения\n"
" \\h - справка по операторам SQL\n"
" \\? - справка по командам psql\n"
" \\g или ; в конце строки - выполнение запроса\n"
" \\q - выход\n"
#: mainloop.c:329
msgid "Use \\q to quit."
msgstr "Введите \\q для выхода."
#: mainloop.c:332 mainloop.c:356
msgid "Use control-D to quit."
msgstr "Нажмите Control-D для выхода."
#: mainloop.c:334 mainloop.c:358
msgid "Use control-C to quit."
msgstr "Нажмите Control-C для выхода."
#: mainloop.c:465 mainloop.c:613
#, c-format
msgid "query ignored; use \\endif or Ctrl-C to exit current \\if block"
msgstr ""
"запрос игнорируется; добавьте \\endif или нажмите Ctrl-C для завершения "
"текущего блока \\if"
#: mainloop.c:631
#, c-format
msgid "reached EOF without finding closing \\endif(s)"
msgstr "в закончившемся потоке команд не хватает \\endif"
#: psqlscanslash.l:638
#, c-format
msgid "unterminated quoted string"
msgstr "незавершённая строка в кавычках"
#: psqlscanslash.l:811
#, c-format
msgid "%s: out of memory"
msgstr "%s: нехватка памяти"
#: sql_help.c:35 sql_help.c:38 sql_help.c:41 sql_help.c:65 sql_help.c:66
#: sql_help.c:68 sql_help.c:70 sql_help.c:81 sql_help.c:83 sql_help.c:85
#: sql_help.c:111 sql_help.c:117 sql_help.c:119 sql_help.c:121 sql_help.c:123
#: sql_help.c:126 sql_help.c:128 sql_help.c:130 sql_help.c:235 sql_help.c:237
#: sql_help.c:238 sql_help.c:240 sql_help.c:242 sql_help.c:245 sql_help.c:247
#: sql_help.c:249 sql_help.c:251 sql_help.c:263 sql_help.c:264 sql_help.c:265
#: sql_help.c:267 sql_help.c:316 sql_help.c:318 sql_help.c:320 sql_help.c:322
#: sql_help.c:391 sql_help.c:396 sql_help.c:398 sql_help.c:440 sql_help.c:442
#: sql_help.c:445 sql_help.c:447 sql_help.c:516 sql_help.c:521 sql_help.c:526
#: sql_help.c:531 sql_help.c:536 sql_help.c:590 sql_help.c:592 sql_help.c:594
#: sql_help.c:596 sql_help.c:598 sql_help.c:601 sql_help.c:603 sql_help.c:606
#: sql_help.c:617 sql_help.c:619 sql_help.c:662 sql_help.c:664 sql_help.c:666
#: sql_help.c:669 sql_help.c:671 sql_help.c:673 sql_help.c:709 sql_help.c:713
#: sql_help.c:717 sql_help.c:736 sql_help.c:739 sql_help.c:742 sql_help.c:771
#: sql_help.c:783 sql_help.c:791 sql_help.c:794 sql_help.c:797 sql_help.c:812
#: sql_help.c:815 sql_help.c:844 sql_help.c:849 sql_help.c:854 sql_help.c:859
#: sql_help.c:864 sql_help.c:886 sql_help.c:888 sql_help.c:890 sql_help.c:892
#: sql_help.c:895 sql_help.c:897 sql_help.c:939 sql_help.c:984 sql_help.c:989
#: sql_help.c:994 sql_help.c:999 sql_help.c:1004 sql_help.c:1023
#: sql_help.c:1034 sql_help.c:1036 sql_help.c:1055 sql_help.c:1065
#: sql_help.c:1067 sql_help.c:1069 sql_help.c:1081 sql_help.c:1085
#: sql_help.c:1087 sql_help.c:1099 sql_help.c:1101 sql_help.c:1103
#: sql_help.c:1105 sql_help.c:1123 sql_help.c:1125 sql_help.c:1129
#: sql_help.c:1133 sql_help.c:1137 sql_help.c:1140 sql_help.c:1141
#: sql_help.c:1142 sql_help.c:1145 sql_help.c:1147 sql_help.c:1282
#: sql_help.c:1284 sql_help.c:1287 sql_help.c:1290 sql_help.c:1292
#: sql_help.c:1294 sql_help.c:1297 sql_help.c:1300 sql_help.c:1413
#: sql_help.c:1415 sql_help.c:1417 sql_help.c:1420 sql_help.c:1441
#: sql_help.c:1444 sql_help.c:1447 sql_help.c:1450 sql_help.c:1454
#: sql_help.c:1456 sql_help.c:1458 sql_help.c:1460 sql_help.c:1474
#: sql_help.c:1477 sql_help.c:1479 sql_help.c:1481 sql_help.c:1491
#: sql_help.c:1493 sql_help.c:1503 sql_help.c:1505 sql_help.c:1515
#: sql_help.c:1518 sql_help.c:1541 sql_help.c:1543 sql_help.c:1545
#: sql_help.c:1547 sql_help.c:1550 sql_help.c:1552 sql_help.c:1555
#: sql_help.c:1558 sql_help.c:1609 sql_help.c:1652 sql_help.c:1655
#: sql_help.c:1657 sql_help.c:1659 sql_help.c:1662 sql_help.c:1664
#: sql_help.c:1666 sql_help.c:1669 sql_help.c:1719 sql_help.c:1735
#: sql_help.c:1966 sql_help.c:2035 sql_help.c:2054 sql_help.c:2067
#: sql_help.c:2124 sql_help.c:2131 sql_help.c:2141 sql_help.c:2162
#: sql_help.c:2188 sql_help.c:2206 sql_help.c:2234 sql_help.c:2331
#: sql_help.c:2377 sql_help.c:2401 sql_help.c:2424 sql_help.c:2428
#: sql_help.c:2462 sql_help.c:2482 sql_help.c:2504 sql_help.c:2518
#: sql_help.c:2539 sql_help.c:2563 sql_help.c:2593 sql_help.c:2618
#: sql_help.c:2665 sql_help.c:2953 sql_help.c:2966 sql_help.c:2983
#: sql_help.c:2999 sql_help.c:3039 sql_help.c:3093 sql_help.c:3097
#: sql_help.c:3099 sql_help.c:3106 sql_help.c:3125 sql_help.c:3152
#: sql_help.c:3187 sql_help.c:3199 sql_help.c:3208 sql_help.c:3252
#: sql_help.c:3266 sql_help.c:3294 sql_help.c:3302 sql_help.c:3314
#: sql_help.c:3324 sql_help.c:3332 sql_help.c:3340 sql_help.c:3348
#: sql_help.c:3356 sql_help.c:3365 sql_help.c:3376 sql_help.c:3384
#: sql_help.c:3392 sql_help.c:3400 sql_help.c:3408 sql_help.c:3418
#: sql_help.c:3427 sql_help.c:3436 sql_help.c:3444 sql_help.c:3454
#: sql_help.c:3465 sql_help.c:3473 sql_help.c:3482 sql_help.c:3493
#: sql_help.c:3502 sql_help.c:3510 sql_help.c:3518 sql_help.c:3526
#: sql_help.c:3534 sql_help.c:3542 sql_help.c:3550 sql_help.c:3558
#: sql_help.c:3566 sql_help.c:3574 sql_help.c:3582 sql_help.c:3599
#: sql_help.c:3608 sql_help.c:3616 sql_help.c:3633 sql_help.c:3648
#: sql_help.c:3950 sql_help.c:4001 sql_help.c:4030 sql_help.c:4045
#: sql_help.c:4530 sql_help.c:4578 sql_help.c:4729
msgid "name"
msgstr "имя"
#: sql_help.c:36 sql_help.c:39 sql_help.c:42 sql_help.c:327 sql_help.c:1816
#: sql_help.c:3267 sql_help.c:4306
msgid "aggregate_signature"
msgstr "сигнатура_агр_функции"
#: sql_help.c:37 sql_help.c:67 sql_help.c:82 sql_help.c:118 sql_help.c:250
#: sql_help.c:268 sql_help.c:399 sql_help.c:446 sql_help.c:525 sql_help.c:573
#: sql_help.c:591 sql_help.c:618 sql_help.c:670 sql_help.c:738 sql_help.c:793
#: sql_help.c:814 sql_help.c:853 sql_help.c:898 sql_help.c:940 sql_help.c:993
#: sql_help.c:1025 sql_help.c:1035 sql_help.c:1068 sql_help.c:1088
#: sql_help.c:1102 sql_help.c:1148 sql_help.c:1291 sql_help.c:1414
#: sql_help.c:1457 sql_help.c:1478 sql_help.c:1492 sql_help.c:1504
#: sql_help.c:1517 sql_help.c:1544 sql_help.c:1610 sql_help.c:1663
msgid "new_name"
msgstr "новое_имя"
#: sql_help.c:40 sql_help.c:69 sql_help.c:84 sql_help.c:120 sql_help.c:248
#: sql_help.c:266 sql_help.c:397 sql_help.c:482 sql_help.c:530 sql_help.c:620
#: sql_help.c:629 sql_help.c:692 sql_help.c:712 sql_help.c:741 sql_help.c:796
#: sql_help.c:858 sql_help.c:896 sql_help.c:998 sql_help.c:1037 sql_help.c:1066
#: sql_help.c:1086 sql_help.c:1100 sql_help.c:1146 sql_help.c:1354
#: sql_help.c:1416 sql_help.c:1459 sql_help.c:1480 sql_help.c:1542
#: sql_help.c:1658 sql_help.c:2939
msgid "new_owner"
msgstr "новый_владелец"
#: sql_help.c:43 sql_help.c:71 sql_help.c:86 sql_help.c:252 sql_help.c:319
#: sql_help.c:448 sql_help.c:535 sql_help.c:672 sql_help.c:716 sql_help.c:744
#: sql_help.c:799 sql_help.c:863 sql_help.c:1003 sql_help.c:1070
#: sql_help.c:1104 sql_help.c:1293 sql_help.c:1461 sql_help.c:1482
#: sql_help.c:1494 sql_help.c:1506 sql_help.c:1546 sql_help.c:1665
msgid "new_schema"
msgstr "новая_схема"
#: sql_help.c:44 sql_help.c:1880 sql_help.c:3268 sql_help.c:4335
msgid "where aggregate_signature is:"
msgstr "где сигнатура_агр_функции:"
#: sql_help.c:45 sql_help.c:48 sql_help.c:51 sql_help.c:337 sql_help.c:350
#: sql_help.c:354 sql_help.c:370 sql_help.c:373 sql_help.c:376 sql_help.c:517
#: sql_help.c:522 sql_help.c:527 sql_help.c:532 sql_help.c:537 sql_help.c:845
#: sql_help.c:850 sql_help.c:855 sql_help.c:860 sql_help.c:865 sql_help.c:985
#: sql_help.c:990 sql_help.c:995 sql_help.c:1000 sql_help.c:1005
#: sql_help.c:1834 sql_help.c:1851 sql_help.c:1857 sql_help.c:1881
#: sql_help.c:1884 sql_help.c:1887 sql_help.c:2036 sql_help.c:2055
#: sql_help.c:2058 sql_help.c:2332 sql_help.c:2540 sql_help.c:3269
#: sql_help.c:3272 sql_help.c:3275 sql_help.c:3366 sql_help.c:3455
#: sql_help.c:3483 sql_help.c:3828 sql_help.c:4208 sql_help.c:4312
#: sql_help.c:4319 sql_help.c:4325 sql_help.c:4336 sql_help.c:4339
#: sql_help.c:4342
msgid "argmode"
msgstr "режим_аргумента"
#: sql_help.c:46 sql_help.c:49 sql_help.c:52 sql_help.c:338 sql_help.c:351
#: sql_help.c:355 sql_help.c:371 sql_help.c:374 sql_help.c:377 sql_help.c:518
#: sql_help.c:523 sql_help.c:528 sql_help.c:533 sql_help.c:538 sql_help.c:846
#: sql_help.c:851 sql_help.c:856 sql_help.c:861 sql_help.c:866 sql_help.c:986
#: sql_help.c:991 sql_help.c:996 sql_help.c:1001 sql_help.c:1006
#: sql_help.c:1835 sql_help.c:1852 sql_help.c:1858 sql_help.c:1882
#: sql_help.c:1885 sql_help.c:1888 sql_help.c:2037 sql_help.c:2056
#: sql_help.c:2059 sql_help.c:2333 sql_help.c:2541 sql_help.c:3270
#: sql_help.c:3273 sql_help.c:3276 sql_help.c:3367 sql_help.c:3456
#: sql_help.c:3484 sql_help.c:4313 sql_help.c:4320 sql_help.c:4326
#: sql_help.c:4337 sql_help.c:4340 sql_help.c:4343
msgid "argname"
msgstr "имя_аргумента"
#: sql_help.c:47 sql_help.c:50 sql_help.c:53 sql_help.c:339 sql_help.c:352
#: sql_help.c:356 sql_help.c:372 sql_help.c:375 sql_help.c:378 sql_help.c:519
#: sql_help.c:524 sql_help.c:529 sql_help.c:534 sql_help.c:539 sql_help.c:847
#: sql_help.c:852 sql_help.c:857 sql_help.c:862 sql_help.c:867 sql_help.c:987
#: sql_help.c:992 sql_help.c:997 sql_help.c:1002 sql_help.c:1007
#: sql_help.c:1836 sql_help.c:1853 sql_help.c:1859 sql_help.c:1883
#: sql_help.c:1886 sql_help.c:1889 sql_help.c:2334 sql_help.c:2542
#: sql_help.c:3271 sql_help.c:3274 sql_help.c:3277 sql_help.c:3368
#: sql_help.c:3457 sql_help.c:3485 sql_help.c:4314 sql_help.c:4321
#: sql_help.c:4327 sql_help.c:4338 sql_help.c:4341 sql_help.c:4344
msgid "argtype"
msgstr "тип_аргумента"
#: sql_help.c:112 sql_help.c:394 sql_help.c:471 sql_help.c:483 sql_help.c:934
#: sql_help.c:1083 sql_help.c:1475 sql_help.c:1604 sql_help.c:1636
#: sql_help.c:1688 sql_help.c:1751 sql_help.c:1937 sql_help.c:1944
#: sql_help.c:2237 sql_help.c:2279 sql_help.c:2286 sql_help.c:2295
#: sql_help.c:2378 sql_help.c:2594 sql_help.c:2687 sql_help.c:2968
#: sql_help.c:3153 sql_help.c:3175 sql_help.c:3315 sql_help.c:3670
#: sql_help.c:3869 sql_help.c:4044 sql_help.c:4792
msgid "option"
msgstr "параметр"
#: sql_help.c:113 sql_help.c:935 sql_help.c:1605 sql_help.c:2379
#: sql_help.c:2595 sql_help.c:3154 sql_help.c:3316
msgid "where option can be:"
msgstr "где допустимые параметры:"
#: sql_help.c:114 sql_help.c:2170
msgid "allowconn"
msgstr "разр_подключения"
#: sql_help.c:115 sql_help.c:936 sql_help.c:1606 sql_help.c:2171
#: sql_help.c:2380 sql_help.c:2596 sql_help.c:3155
msgid "connlimit"
msgstr "предел_подключений"
#: sql_help.c:116 sql_help.c:2172
msgid "istemplate"
msgstr "это_шаблон"
#: sql_help.c:122 sql_help.c:608 sql_help.c:675 sql_help.c:688 sql_help.c:1296
#: sql_help.c:1347 sql_help.c:4048
msgid "new_tablespace"
msgstr "новое_табл_пространство"
#: sql_help.c:124 sql_help.c:127 sql_help.c:129 sql_help.c:545 sql_help.c:547
#: sql_help.c:548 sql_help.c:870 sql_help.c:872 sql_help.c:873 sql_help.c:943
#: sql_help.c:947 sql_help.c:950 sql_help.c:1012 sql_help.c:1014
#: sql_help.c:1015 sql_help.c:1159 sql_help.c:1162 sql_help.c:1613
#: sql_help.c:1617 sql_help.c:1620 sql_help.c:2344 sql_help.c:2546
#: sql_help.c:4066 sql_help.c:4519
msgid "configuration_parameter"
msgstr "параметр_конфигурации"
#: sql_help.c:125 sql_help.c:395 sql_help.c:466 sql_help.c:472 sql_help.c:484
#: sql_help.c:546 sql_help.c:600 sql_help.c:681 sql_help.c:690 sql_help.c:871
#: sql_help.c:894 sql_help.c:944 sql_help.c:1013 sql_help.c:1084
#: sql_help.c:1128 sql_help.c:1132 sql_help.c:1136 sql_help.c:1139
#: sql_help.c:1144 sql_help.c:1160 sql_help.c:1161 sql_help.c:1327
#: sql_help.c:1349 sql_help.c:1397 sql_help.c:1419 sql_help.c:1476
#: sql_help.c:1560 sql_help.c:1614 sql_help.c:1637 sql_help.c:2238
#: sql_help.c:2280 sql_help.c:2287 sql_help.c:2296 sql_help.c:2345
#: sql_help.c:2346 sql_help.c:2409 sql_help.c:2412 sql_help.c:2446
#: sql_help.c:2547 sql_help.c:2548 sql_help.c:2566 sql_help.c:2688
#: sql_help.c:2727 sql_help.c:2833 sql_help.c:2846 sql_help.c:2860
#: sql_help.c:2901 sql_help.c:2925 sql_help.c:2942 sql_help.c:2969
#: sql_help.c:3176 sql_help.c:3870 sql_help.c:4520 sql_help.c:4521
msgid "value"
msgstr "значение"
#: sql_help.c:197
msgid "target_role"
msgstr "целевая_роль"
#: sql_help.c:198 sql_help.c:2222 sql_help.c:2643 sql_help.c:2648
#: sql_help.c:3803 sql_help.c:3812 sql_help.c:3831 sql_help.c:3840
#: sql_help.c:4183 sql_help.c:4192 sql_help.c:4211 sql_help.c:4220
msgid "schema_name"
msgstr "имя_схемы"
#: sql_help.c:199
msgid "abbreviated_grant_or_revoke"
msgstr "предложение_GRANT_или_REVOKE"
#: sql_help.c:200
msgid "where abbreviated_grant_or_revoke is one of:"
msgstr "где допустимое предложение_GRANT_или_REVOKE:"
#: sql_help.c:201 sql_help.c:202 sql_help.c:203 sql_help.c:204 sql_help.c:205
#: sql_help.c:206 sql_help.c:207 sql_help.c:208 sql_help.c:209 sql_help.c:210
#: sql_help.c:571 sql_help.c:607 sql_help.c:674 sql_help.c:817 sql_help.c:954
#: sql_help.c:1295 sql_help.c:1624 sql_help.c:2383 sql_help.c:2384
#: sql_help.c:2385 sql_help.c:2386 sql_help.c:2387 sql_help.c:2520
#: sql_help.c:2599 sql_help.c:2600 sql_help.c:2601 sql_help.c:2602
#: sql_help.c:2603 sql_help.c:3158 sql_help.c:3159 sql_help.c:3160
#: sql_help.c:3161 sql_help.c:3162 sql_help.c:3849 sql_help.c:3853
#: sql_help.c:4229 sql_help.c:4233 sql_help.c:4540
msgid "role_name"
msgstr "имя_роли"
#: sql_help.c:236 sql_help.c:459 sql_help.c:1311 sql_help.c:1313
#: sql_help.c:1364 sql_help.c:1376 sql_help.c:1401 sql_help.c:1654
#: sql_help.c:2191 sql_help.c:2195 sql_help.c:2299 sql_help.c:2304
#: sql_help.c:2405 sql_help.c:2704 sql_help.c:2709 sql_help.c:2711
#: sql_help.c:2828 sql_help.c:2841 sql_help.c:2855 sql_help.c:2864
#: sql_help.c:2876 sql_help.c:2905 sql_help.c:3901 sql_help.c:3916
#: sql_help.c:3918 sql_help.c:4397 sql_help.c:4398 sql_help.c:4407
#: sql_help.c:4449 sql_help.c:4450 sql_help.c:4451 sql_help.c:4452
#: sql_help.c:4453 sql_help.c:4454 sql_help.c:4494 sql_help.c:4495
#: sql_help.c:4500 sql_help.c:4505 sql_help.c:4646 sql_help.c:4647
#: sql_help.c:4656 sql_help.c:4698 sql_help.c:4699 sql_help.c:4700
#: sql_help.c:4701 sql_help.c:4702 sql_help.c:4703 sql_help.c:4757
#: sql_help.c:4759 sql_help.c:4819 sql_help.c:4877 sql_help.c:4878
#: sql_help.c:4887 sql_help.c:4929 sql_help.c:4930 sql_help.c:4931
#: sql_help.c:4932 sql_help.c:4933 sql_help.c:4934
msgid "expression"
msgstr "выражение"
#: sql_help.c:239
msgid "domain_constraint"
msgstr "ограничение_домена"
#: sql_help.c:241 sql_help.c:243 sql_help.c:246 sql_help.c:474 sql_help.c:475
#: sql_help.c:1288 sql_help.c:1335 sql_help.c:1336 sql_help.c:1337
#: sql_help.c:1363 sql_help.c:1375 sql_help.c:1392 sql_help.c:1822
#: sql_help.c:1824 sql_help.c:2194 sql_help.c:2298 sql_help.c:2303
#: sql_help.c:2863 sql_help.c:2875 sql_help.c:3913
msgid "constraint_name"
msgstr "имя_ограничения"
#: sql_help.c:244 sql_help.c:1289
msgid "new_constraint_name"
msgstr "имя_нового_ограничения"
#: sql_help.c:317 sql_help.c:1082
msgid "new_version"
msgstr "новая_версия"
#: sql_help.c:321 sql_help.c:323
msgid "member_object"
msgstr "элемент_объект"
#: sql_help.c:324
msgid "where member_object is:"
msgstr "где элемент_объект:"
#: sql_help.c:325 sql_help.c:330 sql_help.c:331 sql_help.c:332 sql_help.c:333
#: sql_help.c:334 sql_help.c:335 sql_help.c:340 sql_help.c:344 sql_help.c:346
#: sql_help.c:348 sql_help.c:357 sql_help.c:358 sql_help.c:359 sql_help.c:360
#: sql_help.c:361 sql_help.c:362 sql_help.c:363 sql_help.c:364 sql_help.c:367
#: sql_help.c:368 sql_help.c:1814 sql_help.c:1819 sql_help.c:1826
#: sql_help.c:1827 sql_help.c:1828 sql_help.c:1829 sql_help.c:1830
#: sql_help.c:1831 sql_help.c:1832 sql_help.c:1837 sql_help.c:1839
#: sql_help.c:1843 sql_help.c:1845 sql_help.c:1849 sql_help.c:1854
#: sql_help.c:1855 sql_help.c:1862 sql_help.c:1863 sql_help.c:1864
#: sql_help.c:1865 sql_help.c:1866 sql_help.c:1867 sql_help.c:1868
#: sql_help.c:1869 sql_help.c:1870 sql_help.c:1871 sql_help.c:1872
#: sql_help.c:1877 sql_help.c:1878 sql_help.c:4302 sql_help.c:4307
#: sql_help.c:4308 sql_help.c:4309 sql_help.c:4310 sql_help.c:4316
#: sql_help.c:4317 sql_help.c:4322 sql_help.c:4323 sql_help.c:4328
#: sql_help.c:4329 sql_help.c:4330 sql_help.c:4331 sql_help.c:4332
#: sql_help.c:4333
msgid "object_name"
msgstr "имя_объекта"
# well-spelled: агр
#: sql_help.c:326 sql_help.c:1815 sql_help.c:4305
msgid "aggregate_name"
msgstr "имя_агр_функции"
#: sql_help.c:328 sql_help.c:1817 sql_help.c:2101 sql_help.c:2105
#: sql_help.c:2107 sql_help.c:3285
msgid "source_type"
msgstr "исходный_тип"
#: sql_help.c:329 sql_help.c:1818 sql_help.c:2102 sql_help.c:2106
#: sql_help.c:2108 sql_help.c:3286
msgid "target_type"
msgstr "целевой_тип"
#: sql_help.c:336 sql_help.c:781 sql_help.c:1833 sql_help.c:2103
#: sql_help.c:2144 sql_help.c:2210 sql_help.c:2463 sql_help.c:2494
#: sql_help.c:3045 sql_help.c:4207 sql_help.c:4311 sql_help.c:4426
#: sql_help.c:4430 sql_help.c:4434 sql_help.c:4437 sql_help.c:4675
#: sql_help.c:4679 sql_help.c:4683 sql_help.c:4686 sql_help.c:4906
#: sql_help.c:4910 sql_help.c:4914 sql_help.c:4917
msgid "function_name"
msgstr "имя_функции"
#: sql_help.c:341 sql_help.c:774 sql_help.c:1840 sql_help.c:2487
msgid "operator_name"
msgstr "имя_оператора"
#: sql_help.c:342 sql_help.c:710 sql_help.c:714 sql_help.c:718 sql_help.c:1841
#: sql_help.c:2464 sql_help.c:3409
msgid "left_type"
msgstr "тип_слева"
#: sql_help.c:343 sql_help.c:711 sql_help.c:715 sql_help.c:719 sql_help.c:1842
#: sql_help.c:2465 sql_help.c:3410
msgid "right_type"
msgstr "тип_справа"
#: sql_help.c:345 sql_help.c:347 sql_help.c:737 sql_help.c:740 sql_help.c:743
#: sql_help.c:772 sql_help.c:784 sql_help.c:792 sql_help.c:795 sql_help.c:798
#: sql_help.c:1381 sql_help.c:1844 sql_help.c:1846 sql_help.c:2484
#: sql_help.c:2505 sql_help.c:2881 sql_help.c:3419 sql_help.c:3428
msgid "index_method"
msgstr "метод_индекса"
#: sql_help.c:349 sql_help.c:1850 sql_help.c:4318
msgid "procedure_name"
msgstr "имя_процедуры"
#: sql_help.c:353 sql_help.c:1856 sql_help.c:3827 sql_help.c:4324
msgid "routine_name"
msgstr "имя_подпрограммы"
#: sql_help.c:365 sql_help.c:1353 sql_help.c:1873 sql_help.c:2340
#: sql_help.c:2545 sql_help.c:2836 sql_help.c:3012 sql_help.c:3590
#: sql_help.c:3846 sql_help.c:4226
msgid "type_name"
msgstr "имя_типа"
#: sql_help.c:366 sql_help.c:1874 sql_help.c:2339 sql_help.c:2544
#: sql_help.c:3013 sql_help.c:3243 sql_help.c:3591 sql_help.c:3834
#: sql_help.c:4214
msgid "lang_name"
msgstr "имя_языка"
#: sql_help.c:369
msgid "and aggregate_signature is:"
msgstr "и сигнатура_агр_функции:"
#: sql_help.c:392 sql_help.c:1968 sql_help.c:2235
msgid "handler_function"
msgstr "функция_обработчик"
#: sql_help.c:393 sql_help.c:2236
msgid "validator_function"
msgstr "функция_проверки"
#: sql_help.c:441 sql_help.c:520 sql_help.c:663 sql_help.c:848 sql_help.c:988
#: sql_help.c:1283 sql_help.c:1551
msgid "action"
msgstr "действие"
#: sql_help.c:443 sql_help.c:450 sql_help.c:454 sql_help.c:455 sql_help.c:458
#: sql_help.c:460 sql_help.c:461 sql_help.c:462 sql_help.c:464 sql_help.c:467
#: sql_help.c:469 sql_help.c:470 sql_help.c:667 sql_help.c:677 sql_help.c:679
#: sql_help.c:682 sql_help.c:684 sql_help.c:685 sql_help.c:1064 sql_help.c:1285
#: sql_help.c:1303 sql_help.c:1307 sql_help.c:1308 sql_help.c:1312
#: sql_help.c:1314 sql_help.c:1315 sql_help.c:1316 sql_help.c:1317
#: sql_help.c:1319 sql_help.c:1322 sql_help.c:1323 sql_help.c:1325
#: sql_help.c:1328 sql_help.c:1330 sql_help.c:1331 sql_help.c:1377
#: sql_help.c:1379 sql_help.c:1386 sql_help.c:1395 sql_help.c:1400
#: sql_help.c:1653 sql_help.c:1656 sql_help.c:1660 sql_help.c:1696
#: sql_help.c:1821 sql_help.c:1934 sql_help.c:1940 sql_help.c:1953
#: sql_help.c:1954 sql_help.c:1955 sql_help.c:2277 sql_help.c:2290
#: sql_help.c:2337 sql_help.c:2404 sql_help.c:2410 sql_help.c:2443
#: sql_help.c:2673 sql_help.c:2708 sql_help.c:2710 sql_help.c:2818
#: sql_help.c:2827 sql_help.c:2837 sql_help.c:2840 sql_help.c:2850
#: sql_help.c:2854 sql_help.c:2877 sql_help.c:2879 sql_help.c:2886
#: sql_help.c:2899 sql_help.c:2904 sql_help.c:2922 sql_help.c:3048
#: sql_help.c:3188 sql_help.c:3806 sql_help.c:3807 sql_help.c:3900
#: sql_help.c:3915 sql_help.c:3917 sql_help.c:3919 sql_help.c:4186
#: sql_help.c:4187 sql_help.c:4304 sql_help.c:4458 sql_help.c:4464
#: sql_help.c:4466 sql_help.c:4707 sql_help.c:4713 sql_help.c:4715
#: sql_help.c:4756 sql_help.c:4758 sql_help.c:4760 sql_help.c:4807
#: sql_help.c:4938 sql_help.c:4944 sql_help.c:4946
msgid "column_name"
msgstr "имя_столбца"
#: sql_help.c:444 sql_help.c:668 sql_help.c:1286 sql_help.c:1661
msgid "new_column_name"
msgstr "новое_имя_столбца"
#: sql_help.c:449 sql_help.c:541 sql_help.c:676 sql_help.c:869 sql_help.c:1009
#: sql_help.c:1302 sql_help.c:1561
msgid "where action is one of:"
msgstr "где допустимое действие:"
#: sql_help.c:451 sql_help.c:456 sql_help.c:1056 sql_help.c:1304
#: sql_help.c:1309 sql_help.c:1563 sql_help.c:1567 sql_help.c:2189
#: sql_help.c:2278 sql_help.c:2483 sql_help.c:2666 sql_help.c:2819
#: sql_help.c:3095 sql_help.c:4002
msgid "data_type"
msgstr "тип_данных"
#: sql_help.c:452 sql_help.c:457 sql_help.c:1305 sql_help.c:1310
#: sql_help.c:1564 sql_help.c:1568 sql_help.c:2190 sql_help.c:2281
#: sql_help.c:2406 sql_help.c:2821 sql_help.c:2829 sql_help.c:2842
#: sql_help.c:2856 sql_help.c:3096 sql_help.c:3102 sql_help.c:3910
msgid "collation"
msgstr "правило_сортировки"
#: sql_help.c:453 sql_help.c:1306 sql_help.c:2282 sql_help.c:2291
#: sql_help.c:2822 sql_help.c:2838 sql_help.c:2851
msgid "column_constraint"
msgstr "ограничение_столбца"
#: sql_help.c:463 sql_help.c:605 sql_help.c:678 sql_help.c:1324 sql_help.c:4804
msgid "integer"
msgstr "целое"
#: sql_help.c:465 sql_help.c:468 sql_help.c:680 sql_help.c:683 sql_help.c:1326
#: sql_help.c:1329
msgid "attribute_option"
msgstr "атрибут"
#: sql_help.c:473 sql_help.c:1333 sql_help.c:2283 sql_help.c:2292
#: sql_help.c:2823 sql_help.c:2839 sql_help.c:2852
msgid "table_constraint"
msgstr "ограничение_таблицы"
#: sql_help.c:476 sql_help.c:477 sql_help.c:478 sql_help.c:479 sql_help.c:1338
#: sql_help.c:1339 sql_help.c:1340 sql_help.c:1341 sql_help.c:1875
msgid "trigger_name"
msgstr "имя_триггера"
#: sql_help.c:480 sql_help.c:481 sql_help.c:1351 sql_help.c:1352
#: sql_help.c:2284 sql_help.c:2289 sql_help.c:2826 sql_help.c:2849
msgid "parent_table"
msgstr "таблица_родитель"
#: sql_help.c:540 sql_help.c:597 sql_help.c:665 sql_help.c:868 sql_help.c:1008
#: sql_help.c:1520 sql_help.c:2221
msgid "extension_name"
msgstr "имя_расширения"
#: sql_help.c:542 sql_help.c:1010 sql_help.c:2341
msgid "execution_cost"
msgstr "стоимость_выполнения"
#: sql_help.c:543 sql_help.c:1011 sql_help.c:2342
msgid "result_rows"
msgstr "строк_в_результате"
#: sql_help.c:544 sql_help.c:2343
msgid "support_function"
msgstr "вспомогательная_функция"
#: sql_help.c:566 sql_help.c:568 sql_help.c:933 sql_help.c:941 sql_help.c:945
#: sql_help.c:948 sql_help.c:951 sql_help.c:1603 sql_help.c:1611
#: sql_help.c:1615 sql_help.c:1618 sql_help.c:1621 sql_help.c:2644
#: sql_help.c:2646 sql_help.c:2649 sql_help.c:2650 sql_help.c:3804
#: sql_help.c:3805 sql_help.c:3809 sql_help.c:3810 sql_help.c:3813
#: sql_help.c:3814 sql_help.c:3816 sql_help.c:3817 sql_help.c:3819
#: sql_help.c:3820 sql_help.c:3822 sql_help.c:3823 sql_help.c:3825
#: sql_help.c:3826 sql_help.c:3832 sql_help.c:3833 sql_help.c:3835
#: sql_help.c:3836 sql_help.c:3838 sql_help.c:3839 sql_help.c:3841
#: sql_help.c:3842 sql_help.c:3844 sql_help.c:3845 sql_help.c:3847
#: sql_help.c:3848 sql_help.c:3850 sql_help.c:3851 sql_help.c:4184
#: sql_help.c:4185 sql_help.c:4189 sql_help.c:4190 sql_help.c:4193
#: sql_help.c:4194 sql_help.c:4196 sql_help.c:4197 sql_help.c:4199
#: sql_help.c:4200 sql_help.c:4202 sql_help.c:4203 sql_help.c:4205
#: sql_help.c:4206 sql_help.c:4212 sql_help.c:4213 sql_help.c:4215
#: sql_help.c:4216 sql_help.c:4218 sql_help.c:4219 sql_help.c:4221
#: sql_help.c:4222 sql_help.c:4224 sql_help.c:4225 sql_help.c:4227
#: sql_help.c:4228 sql_help.c:4230 sql_help.c:4231
msgid "role_specification"
msgstr "указание_роли"
#: sql_help.c:567 sql_help.c:569 sql_help.c:1634 sql_help.c:2163
#: sql_help.c:2652 sql_help.c:3173 sql_help.c:3624 sql_help.c:4550
msgid "user_name"
msgstr "имя_пользователя"
#: sql_help.c:570 sql_help.c:953 sql_help.c:1623 sql_help.c:2651
#: sql_help.c:3852 sql_help.c:4232
msgid "where role_specification can be:"
msgstr "где допустимое указание_роли:"
#: sql_help.c:572
msgid "group_name"
msgstr "имя_группы"
#: sql_help.c:593 sql_help.c:1398 sql_help.c:2169 sql_help.c:2413
#: sql_help.c:2447 sql_help.c:2834 sql_help.c:2847 sql_help.c:2861
#: sql_help.c:2902 sql_help.c:2926 sql_help.c:2938 sql_help.c:3843
#: sql_help.c:4223
msgid "tablespace_name"
msgstr "табл_пространство"
#: sql_help.c:595 sql_help.c:687 sql_help.c:1346 sql_help.c:1355
#: sql_help.c:1393 sql_help.c:1750 sql_help.c:1753
msgid "index_name"
msgstr "имя_индекса"
#: sql_help.c:599 sql_help.c:602 sql_help.c:689 sql_help.c:691 sql_help.c:1348
#: sql_help.c:1350 sql_help.c:1396 sql_help.c:2411 sql_help.c:2445
#: sql_help.c:2832 sql_help.c:2845 sql_help.c:2859 sql_help.c:2900
#: sql_help.c:2924
msgid "storage_parameter"
msgstr "параметр_хранения"
#: sql_help.c:604
msgid "column_number"
msgstr "номер_столбца"
#: sql_help.c:628 sql_help.c:1838 sql_help.c:4315
msgid "large_object_oid"
msgstr "oid_большого_объекта"
#: sql_help.c:686 sql_help.c:1332 sql_help.c:2820
msgid "compression_method"
msgstr "метод_сжатия"
#: sql_help.c:720 sql_help.c:2468
msgid "res_proc"
msgstr "процедура_ограничения"
#: sql_help.c:721 sql_help.c:2469
msgid "join_proc"
msgstr "процедура_соединения"
#: sql_help.c:773 sql_help.c:785 sql_help.c:2486
msgid "strategy_number"
msgstr "номер_стратегии"
#: sql_help.c:775 sql_help.c:776 sql_help.c:779 sql_help.c:780 sql_help.c:786
#: sql_help.c:787 sql_help.c:789 sql_help.c:790 sql_help.c:2488 sql_help.c:2489
#: sql_help.c:2492 sql_help.c:2493
msgid "op_type"
msgstr "тип_операции"
#: sql_help.c:777 sql_help.c:2490
msgid "sort_family_name"
msgstr "семейство_сортировки"
#: sql_help.c:778 sql_help.c:788 sql_help.c:2491
msgid "support_number"
msgstr "номер_опорной_процедуры"
#: sql_help.c:782 sql_help.c:2104 sql_help.c:2495 sql_help.c:3015
#: sql_help.c:3017
msgid "argument_type"
msgstr "тип_аргумента"
#: sql_help.c:813 sql_help.c:816 sql_help.c:887 sql_help.c:889 sql_help.c:891
#: sql_help.c:1024 sql_help.c:1063 sql_help.c:1516 sql_help.c:1519
#: sql_help.c:1695 sql_help.c:1749 sql_help.c:1752 sql_help.c:1823
#: sql_help.c:1848 sql_help.c:1861 sql_help.c:1876 sql_help.c:1933
#: sql_help.c:1939 sql_help.c:2276 sql_help.c:2288 sql_help.c:2402
#: sql_help.c:2442 sql_help.c:2519 sql_help.c:2564 sql_help.c:2620
#: sql_help.c:2672 sql_help.c:2705 sql_help.c:2712 sql_help.c:2817
#: sql_help.c:2835 sql_help.c:2848 sql_help.c:2921 sql_help.c:3041
#: sql_help.c:3222 sql_help.c:3445 sql_help.c:3494 sql_help.c:3600
#: sql_help.c:3802 sql_help.c:3808 sql_help.c:3866 sql_help.c:3898
#: sql_help.c:4182 sql_help.c:4188 sql_help.c:4303 sql_help.c:4412
#: sql_help.c:4414 sql_help.c:4471 sql_help.c:4510 sql_help.c:4661
#: sql_help.c:4663 sql_help.c:4720 sql_help.c:4754 sql_help.c:4806
#: sql_help.c:4892 sql_help.c:4894 sql_help.c:4951
msgid "table_name"
msgstr "имя_таблицы"
#: sql_help.c:818 sql_help.c:2521
msgid "using_expression"
msgstr "выражение_использования"
#: sql_help.c:819 sql_help.c:2522
msgid "check_expression"
msgstr "выражение_проверки"
#: sql_help.c:893 sql_help.c:2565
msgid "publication_parameter"
msgstr "параметр_публикации"
#: sql_help.c:937 sql_help.c:1607 sql_help.c:2381 sql_help.c:2597
#: sql_help.c:3156
msgid "password"
msgstr "пароль"
#: sql_help.c:938 sql_help.c:1608 sql_help.c:2382 sql_help.c:2598
#: sql_help.c:3157
msgid "timestamp"
msgstr "timestamp"
#: sql_help.c:942 sql_help.c:946 sql_help.c:949 sql_help.c:952 sql_help.c:1612
#: sql_help.c:1616 sql_help.c:1619 sql_help.c:1622 sql_help.c:3815
#: sql_help.c:4195
msgid "database_name"
msgstr "имя_БД"
#: sql_help.c:1057 sql_help.c:2667
msgid "increment"
msgstr "шаг"
#: sql_help.c:1058 sql_help.c:2668
msgid "minvalue"
msgstr "мин_значение"
#: sql_help.c:1059 sql_help.c:2669
msgid "maxvalue"
msgstr "макс_значение"
#: sql_help.c:1060 sql_help.c:2670 sql_help.c:4410 sql_help.c:4508
#: sql_help.c:4659 sql_help.c:4823 sql_help.c:4890
msgid "start"
msgstr "начальное_значение"
#: sql_help.c:1061 sql_help.c:1321
msgid "restart"
msgstr "значение_перезапуска"
#: sql_help.c:1062 sql_help.c:2671
msgid "cache"
msgstr "кеш"
#: sql_help.c:1106
msgid "new_target"
msgstr "новое_имя"
#: sql_help.c:1124 sql_help.c:2724
msgid "conninfo"
msgstr "строка_подключения"
#: sql_help.c:1126 sql_help.c:1130 sql_help.c:1134 sql_help.c:2725
msgid "publication_name"
msgstr "имя_публикации"
#: sql_help.c:1127 sql_help.c:1131 sql_help.c:1135
msgid "publication_option"
msgstr "параметр_публикации"
#: sql_help.c:1138
msgid "refresh_option"
msgstr "параметр_обновления"
#: sql_help.c:1143 sql_help.c:2726
msgid "subscription_parameter"
msgstr "параметр_подписки"
#: sql_help.c:1298 sql_help.c:1301
msgid "partition_name"
msgstr "имя_секции"
#: sql_help.c:1299 sql_help.c:2293 sql_help.c:2853
msgid "partition_bound_spec"
msgstr "указание_границ_секции"
#: sql_help.c:1318 sql_help.c:1367 sql_help.c:2867
msgid "sequence_options"
msgstr "параметры_последовательности"
#: sql_help.c:1320
msgid "sequence_option"
msgstr "параметр_последовательности"
#: sql_help.c:1334
msgid "table_constraint_using_index"
msgstr "ограничение_таблицы_с_индексом"
#: sql_help.c:1342 sql_help.c:1343 sql_help.c:1344 sql_help.c:1345
msgid "rewrite_rule_name"
msgstr "имя_правила_перезаписи"
#: sql_help.c:1356 sql_help.c:2892
msgid "and partition_bound_spec is:"
msgstr "и указание_границ_секции:"
#: sql_help.c:1357 sql_help.c:1358 sql_help.c:1359 sql_help.c:2893
#: sql_help.c:2894 sql_help.c:2895
msgid "partition_bound_expr"
msgstr "выражение_границ_секции"
#: sql_help.c:1360 sql_help.c:1361 sql_help.c:2896 sql_help.c:2897
msgid "numeric_literal"
msgstr "числовая_константа"
#: sql_help.c:1362
msgid "and column_constraint is:"
msgstr "и ограничение_столбца:"
#: sql_help.c:1365 sql_help.c:2300 sql_help.c:2335 sql_help.c:2543
#: sql_help.c:2865
msgid "default_expr"
msgstr "выражение_по_умолчанию"
#: sql_help.c:1366 sql_help.c:2301 sql_help.c:2866
msgid "generation_expr"
msgstr "генерирующее_выражение"
#: sql_help.c:1368 sql_help.c:1369 sql_help.c:1378 sql_help.c:1380
#: sql_help.c:1384 sql_help.c:2868 sql_help.c:2869 sql_help.c:2878
#: sql_help.c:2880 sql_help.c:2884
msgid "index_parameters"
msgstr "параметры_индекса"
#: sql_help.c:1370 sql_help.c:1387 sql_help.c:2870 sql_help.c:2887
msgid "reftable"
msgstr "целевая_таблица"
#: sql_help.c:1371 sql_help.c:1388 sql_help.c:2871 sql_help.c:2888
msgid "refcolumn"
msgstr "целевой_столбец"
#: sql_help.c:1372 sql_help.c:1373 sql_help.c:1389 sql_help.c:1390
#: sql_help.c:2872 sql_help.c:2873 sql_help.c:2889 sql_help.c:2890
msgid "referential_action"
msgstr "ссылочное_действие"
#: sql_help.c:1374 sql_help.c:2302 sql_help.c:2874
msgid "and table_constraint is:"
msgstr "и ограничение_таблицы:"
#: sql_help.c:1382 sql_help.c:2882
msgid "exclude_element"
msgstr "объект_исключения"
#: sql_help.c:1383 sql_help.c:2883 sql_help.c:4408 sql_help.c:4506
#: sql_help.c:4657 sql_help.c:4821 sql_help.c:4888
msgid "operator"
msgstr "оператор"
#: sql_help.c:1385 sql_help.c:2414 sql_help.c:2885
msgid "predicate"
msgstr "предикат"
#: sql_help.c:1391
msgid "and table_constraint_using_index is:"
msgstr "и ограничение_таблицы_с_индексом:"
#: sql_help.c:1394 sql_help.c:2898
msgid "index_parameters in UNIQUE, PRIMARY KEY, and EXCLUDE constraints are:"
msgstr "параметры_индекса в ограничениях UNIQUE, PRIMARY KEY и EXCLUDE:"
#: sql_help.c:1399 sql_help.c:2903
msgid "exclude_element in an EXCLUDE constraint is:"
msgstr "объект_исключения в ограничении EXCLUDE:"
#: sql_help.c:1402 sql_help.c:2407 sql_help.c:2830 sql_help.c:2843
#: sql_help.c:2857 sql_help.c:2906 sql_help.c:3911
msgid "opclass"
msgstr "класс_оператора"
#: sql_help.c:1418 sql_help.c:1421 sql_help.c:2941
msgid "tablespace_option"
msgstr "параметр_табл_пространства"
#: sql_help.c:1442 sql_help.c:1445 sql_help.c:1451 sql_help.c:1455
msgid "token_type"
msgstr "тип_фрагмента"
#: sql_help.c:1443 sql_help.c:1446
msgid "dictionary_name"
msgstr "имя_словаря"
#: sql_help.c:1448 sql_help.c:1452
msgid "old_dictionary"
msgstr "старый_словарь"
#: sql_help.c:1449 sql_help.c:1453
msgid "new_dictionary"
msgstr "новый_словарь"
#: sql_help.c:1548 sql_help.c:1562 sql_help.c:1565 sql_help.c:1566
#: sql_help.c:3094
msgid "attribute_name"
msgstr "имя_атрибута"
#: sql_help.c:1549
msgid "new_attribute_name"
msgstr "новое_имя_атрибута"
#: sql_help.c:1553 sql_help.c:1557
msgid "new_enum_value"
msgstr "новое_значение_перечисления"
#: sql_help.c:1554
msgid "neighbor_enum_value"
msgstr "соседнее_значение_перечисления"
#: sql_help.c:1556
msgid "existing_enum_value"
msgstr "существующее_значение_перечисления"
#: sql_help.c:1559
msgid "property"
msgstr "свойство"
#: sql_help.c:1635 sql_help.c:2285 sql_help.c:2294 sql_help.c:2683
#: sql_help.c:3174 sql_help.c:3625 sql_help.c:3824 sql_help.c:3867
#: sql_help.c:4204
msgid "server_name"
msgstr "имя_сервера"
#: sql_help.c:1667 sql_help.c:1670 sql_help.c:3189
msgid "view_option_name"
msgstr "имя_параметра_представления"
#: sql_help.c:1668 sql_help.c:3190
msgid "view_option_value"
msgstr "значение_параметра_представления"
#: sql_help.c:1689 sql_help.c:1690 sql_help.c:4793 sql_help.c:4794
msgid "table_and_columns"
msgstr "таблица_и_столбцы"
#: sql_help.c:1691 sql_help.c:1754 sql_help.c:1945 sql_help.c:3673
#: sql_help.c:4046 sql_help.c:4795
msgid "where option can be one of:"
msgstr "где допустимый параметр:"
#: sql_help.c:1692 sql_help.c:1693 sql_help.c:1755 sql_help.c:1947
#: sql_help.c:1950 sql_help.c:2129 sql_help.c:3674 sql_help.c:3675
#: sql_help.c:3676 sql_help.c:3677 sql_help.c:3678 sql_help.c:3679
#: sql_help.c:3680 sql_help.c:3681 sql_help.c:4047 sql_help.c:4049
#: sql_help.c:4796 sql_help.c:4797 sql_help.c:4798 sql_help.c:4799
#: sql_help.c:4800 sql_help.c:4801 sql_help.c:4802 sql_help.c:4803
msgid "boolean"
msgstr "логическое_значение"
#: sql_help.c:1694 sql_help.c:4805
msgid "and table_and_columns is:"
msgstr "и таблица_и_столбцы:"
#: sql_help.c:1710 sql_help.c:4566 sql_help.c:4568 sql_help.c:4592
msgid "transaction_mode"
msgstr "режим_транзакции"
#: sql_help.c:1711 sql_help.c:4569 sql_help.c:4593
msgid "where transaction_mode is one of:"
msgstr "где допустимый режим_транзакции:"
#: sql_help.c:1720 sql_help.c:4418 sql_help.c:4427 sql_help.c:4431
#: sql_help.c:4435 sql_help.c:4438 sql_help.c:4667 sql_help.c:4676
#: sql_help.c:4680 sql_help.c:4684 sql_help.c:4687 sql_help.c:4898
#: sql_help.c:4907 sql_help.c:4911 sql_help.c:4915 sql_help.c:4918
msgid "argument"
msgstr "аргумент"
#: sql_help.c:1820
msgid "relation_name"
msgstr "имя_отношения"
#: sql_help.c:1825 sql_help.c:3818 sql_help.c:4198
msgid "domain_name"
msgstr "имя_домена"
#: sql_help.c:1847
msgid "policy_name"
msgstr "имя_политики"
#: sql_help.c:1860
msgid "rule_name"
msgstr "имя_правила"
#: sql_help.c:1879
msgid "text"
msgstr "текст"
#: sql_help.c:1904 sql_help.c:4011 sql_help.c:4248
msgid "transaction_id"
msgstr "код_транзакции"
#: sql_help.c:1935 sql_help.c:1942 sql_help.c:3937
msgid "filename"
msgstr "имя_файла"
#: sql_help.c:1936 sql_help.c:1943 sql_help.c:2622 sql_help.c:2623
#: sql_help.c:2624
msgid "command"
msgstr "команда"
#: sql_help.c:1938 sql_help.c:2621 sql_help.c:3044 sql_help.c:3225
#: sql_help.c:3921 sql_help.c:4401 sql_help.c:4403 sql_help.c:4499
#: sql_help.c:4501 sql_help.c:4650 sql_help.c:4652 sql_help.c:4763
#: sql_help.c:4881 sql_help.c:4883
msgid "condition"
msgstr "условие"
#: sql_help.c:1941 sql_help.c:2448 sql_help.c:2927 sql_help.c:3191
#: sql_help.c:3209 sql_help.c:3902
msgid "query"
msgstr "запрос"
#: sql_help.c:1946
msgid "format_name"
msgstr "имя_формата"
#: sql_help.c:1948
msgid "delimiter_character"
msgstr "символ_разделитель"
#: sql_help.c:1949
msgid "null_string"
msgstr "представление_NULL"
#: sql_help.c:1951
msgid "quote_character"
msgstr "символ_кавычек"
#: sql_help.c:1952
msgid "escape_character"
msgstr "спецсимвол"
#: sql_help.c:1956
msgid "encoding_name"
msgstr "имя_кодировки"
#: sql_help.c:1967
msgid "access_method_type"
msgstr "тип_метода_доступа"
#: sql_help.c:2038 sql_help.c:2057 sql_help.c:2060
msgid "arg_data_type"
msgstr "тип_данных_аргумента"
#: sql_help.c:2039 sql_help.c:2061 sql_help.c:2069
msgid "sfunc"
msgstr "функция_состояния"
#: sql_help.c:2040 sql_help.c:2062 sql_help.c:2070
msgid "state_data_type"
msgstr "тип_данных_состояния"
#: sql_help.c:2041 sql_help.c:2063 sql_help.c:2071
msgid "state_data_size"
msgstr "размер_данных_состояния"
#: sql_help.c:2042 sql_help.c:2064 sql_help.c:2072
msgid "ffunc"
msgstr "функция_завершения"
#: sql_help.c:2043 sql_help.c:2073
msgid "combinefunc"
msgstr "комбинирующая_функция"
#: sql_help.c:2044 sql_help.c:2074
msgid "serialfunc"
msgstr "функция_сериализации"
#: sql_help.c:2045 sql_help.c:2075
msgid "deserialfunc"
msgstr "функция_десериализации"
#: sql_help.c:2046 sql_help.c:2065 sql_help.c:2076
msgid "initial_condition"
msgstr "начальное_условие"
#: sql_help.c:2047 sql_help.c:2077
msgid "msfunc"
msgstr "функция_состояния_движ"
#: sql_help.c:2048 sql_help.c:2078
msgid "minvfunc"
msgstr "обратная_функция_движ"
#: sql_help.c:2049 sql_help.c:2079
msgid "mstate_data_type"
msgstr "тип_данных_состояния_движ"
#: sql_help.c:2050 sql_help.c:2080
msgid "mstate_data_size"
msgstr "размер_данных_состояния_движ"
#: sql_help.c:2051 sql_help.c:2081
msgid "mffunc"
msgstr "функция_завершения_движ"
#: sql_help.c:2052 sql_help.c:2082
msgid "minitial_condition"
msgstr "начальное_условие_движ"
#: sql_help.c:2053 sql_help.c:2083
msgid "sort_operator"
msgstr "оператор_сортировки"
#: sql_help.c:2066
msgid "or the old syntax"
msgstr "или старый синтаксис"
#: sql_help.c:2068
msgid "base_type"
msgstr "базовый_тип"
#: sql_help.c:2125 sql_help.c:2166
msgid "locale"
msgstr "код_локали"
#: sql_help.c:2126 sql_help.c:2167
msgid "lc_collate"
msgstr "код_правила_сортировки"
#: sql_help.c:2127 sql_help.c:2168
msgid "lc_ctype"
msgstr "код_классификации_символов"
#: sql_help.c:2128 sql_help.c:4301
msgid "provider"
msgstr "провайдер"
#: sql_help.c:2130 sql_help.c:2223
msgid "version"
msgstr "версия"
#: sql_help.c:2132
msgid "existing_collation"
msgstr "существующее_правило_сортировки"
#: sql_help.c:2142
msgid "source_encoding"
msgstr "исходная_кодировка"
#: sql_help.c:2143
msgid "dest_encoding"
msgstr "целевая_кодировка"
#: sql_help.c:2164 sql_help.c:2967
msgid "template"
msgstr "шаблон"
#: sql_help.c:2165
msgid "encoding"
msgstr "кодировка"
#: sql_help.c:2192
msgid "constraint"
msgstr "ограничение"
#: sql_help.c:2193
msgid "where constraint is:"
msgstr "где ограничение:"
#: sql_help.c:2207 sql_help.c:2619 sql_help.c:3040
msgid "event"
msgstr "событие"
#: sql_help.c:2208
msgid "filter_variable"
msgstr "переменная_фильтра"
#: sql_help.c:2209
msgid "filter_value"
msgstr "значение_фильтра"
#: sql_help.c:2297 sql_help.c:2862
msgid "where column_constraint is:"
msgstr "где ограничение_столбца:"
#: sql_help.c:2336
msgid "rettype"
msgstr "тип_возврата"
#: sql_help.c:2338
msgid "column_type"
msgstr "тип_столбца"
#: sql_help.c:2347 sql_help.c:2549
msgid "definition"
msgstr "определение"
#: sql_help.c:2348 sql_help.c:2550
msgid "obj_file"
msgstr "объектный_файл"
#: sql_help.c:2349 sql_help.c:2551
msgid "link_symbol"
msgstr "символ_в_экспорте"
#: sql_help.c:2350 sql_help.c:2552
msgid "sql_body"
msgstr "тело_sql"
#: sql_help.c:2388 sql_help.c:2604 sql_help.c:3163
msgid "uid"
msgstr "uid"
#: sql_help.c:2403 sql_help.c:2444 sql_help.c:2831 sql_help.c:2844
#: sql_help.c:2858 sql_help.c:2923
msgid "method"
msgstr "метод"
#: sql_help.c:2408
msgid "opclass_parameter"
msgstr "параметр_класса_оп"
#: sql_help.c:2425
msgid "call_handler"
msgstr "обработчик_вызова"
#: sql_help.c:2426
msgid "inline_handler"
msgstr "обработчик_внедрённого_кода"
#: sql_help.c:2427
msgid "valfunction"
msgstr "функция_проверки"
#: sql_help.c:2466
msgid "com_op"
msgstr "коммут_оператор"
#: sql_help.c:2467
msgid "neg_op"
msgstr "обратный_оператор"
#: sql_help.c:2485
msgid "family_name"
msgstr "имя_семейства"
#: sql_help.c:2496
msgid "storage_type"
msgstr "тип_хранения"
#: sql_help.c:2625 sql_help.c:3047
msgid "where event can be one of:"
msgstr "где допустимое событие:"
#: sql_help.c:2645 sql_help.c:2647
msgid "schema_element"
msgstr "элемент_схемы"
#: sql_help.c:2684
msgid "server_type"
msgstr "тип_сервера"
#: sql_help.c:2685
msgid "server_version"
msgstr "версия_сервера"
#: sql_help.c:2686 sql_help.c:3821 sql_help.c:4201
msgid "fdw_name"
msgstr "имя_обёртки_сторонних_данных"
#: sql_help.c:2703 sql_help.c:2706
msgid "statistics_name"
msgstr "имя_статистики"
#: sql_help.c:2707
msgid "statistics_kind"
msgstr "вид_статистики"
#: sql_help.c:2723
msgid "subscription_name"
msgstr "имя_подписки"
#: sql_help.c:2824
msgid "source_table"
msgstr "исходная_таблица"
#: sql_help.c:2825
msgid "like_option"
msgstr "параметр_порождения"
#: sql_help.c:2891
msgid "and like_option is:"
msgstr "и параметр_порождения:"
#: sql_help.c:2940
msgid "directory"
msgstr "каталог"
#: sql_help.c:2954
msgid "parser_name"
msgstr "имя_анализатора"
#: sql_help.c:2955
msgid "source_config"
msgstr "исходная_конфигурация"
#: sql_help.c:2984
msgid "start_function"
msgstr "функция_начала"
#: sql_help.c:2985
msgid "gettoken_function"
msgstr "функция_выдачи_фрагмента"
#: sql_help.c:2986
msgid "end_function"
msgstr "функция_окончания"
#: sql_help.c:2987
msgid "lextypes_function"
msgstr "функция_лекс_типов"
#: sql_help.c:2988
msgid "headline_function"
msgstr "функция_создания_выдержек"
#: sql_help.c:3000
msgid "init_function"
msgstr "функция_инициализации"
#: sql_help.c:3001
msgid "lexize_function"
msgstr "функция_выделения_лексем"
#: sql_help.c:3014
msgid "from_sql_function_name"
msgstr "имя_функции_из_sql"
#: sql_help.c:3016
msgid "to_sql_function_name"
msgstr "имя_функции_в_sql"
#: sql_help.c:3042
msgid "referenced_table_name"
msgstr "ссылающаяся_таблица"
#: sql_help.c:3043
msgid "transition_relation_name"
msgstr "имя_переходного_отношения"
#: sql_help.c:3046
msgid "arguments"
msgstr "аргументы"
#: sql_help.c:3098 sql_help.c:4334
msgid "label"
msgstr "метка"
#: sql_help.c:3100
msgid "subtype"
msgstr "подтип"
#: sql_help.c:3101
msgid "subtype_operator_class"
msgstr "класс_оператора_подтипа"
#: sql_help.c:3103
msgid "canonical_function"
msgstr "каноническая_функция"
#: sql_help.c:3104
msgid "subtype_diff_function"
msgstr "функция_различий_подтипа"
#: sql_help.c:3105
msgid "multirange_type_name"
msgstr "имя_мультидиапазонного_типа"
#: sql_help.c:3107
msgid "input_function"
msgstr "функция_ввода"
#: sql_help.c:3108
msgid "output_function"
msgstr "функция_вывода"
#: sql_help.c:3109
msgid "receive_function"
msgstr "функция_получения"
#: sql_help.c:3110
msgid "send_function"
msgstr "функция_отправки"
#: sql_help.c:3111
msgid "type_modifier_input_function"
msgstr "функция_ввода_модификатора_типа"
#: sql_help.c:3112
msgid "type_modifier_output_function"
msgstr "функция_вывода_модификатора_типа"
#: sql_help.c:3113
msgid "analyze_function"
msgstr "функция_анализа"
#: sql_help.c:3114
msgid "subscript_function"
msgstr "функция_обращения_по_индексу"
#: sql_help.c:3115
msgid "internallength"
msgstr "внутр_длина"
#: sql_help.c:3116
msgid "alignment"
msgstr "выравнивание"
#: sql_help.c:3117
msgid "storage"
msgstr "хранение"
#: sql_help.c:3118
msgid "like_type"
msgstr "тип_образец"
#: sql_help.c:3119
msgid "category"
msgstr "категория"
#: sql_help.c:3120
msgid "preferred"
msgstr "предпочитаемый"
#: sql_help.c:3121
msgid "default"
msgstr "по_умолчанию"
#: sql_help.c:3122
msgid "element"
msgstr "элемент"
#: sql_help.c:3123
msgid "delimiter"
msgstr "разделитель"
#: sql_help.c:3124
msgid "collatable"
msgstr "сортируемый"
#: sql_help.c:3221 sql_help.c:3897 sql_help.c:4396 sql_help.c:4493
#: sql_help.c:4645 sql_help.c:4753 sql_help.c:4876
msgid "with_query"
msgstr "запрос_WITH"
#: sql_help.c:3223 sql_help.c:3899 sql_help.c:4415 sql_help.c:4421
#: sql_help.c:4424 sql_help.c:4428 sql_help.c:4432 sql_help.c:4440
#: sql_help.c:4664 sql_help.c:4670 sql_help.c:4673 sql_help.c:4677
#: sql_help.c:4681 sql_help.c:4689 sql_help.c:4755 sql_help.c:4895
#: sql_help.c:4901 sql_help.c:4904 sql_help.c:4908 sql_help.c:4912
#: sql_help.c:4920
msgid "alias"
msgstr "псевдоним"
#: sql_help.c:3224 sql_help.c:4400 sql_help.c:4442 sql_help.c:4444
#: sql_help.c:4498 sql_help.c:4649 sql_help.c:4691 sql_help.c:4693
#: sql_help.c:4762 sql_help.c:4880 sql_help.c:4922 sql_help.c:4924
msgid "from_item"
msgstr "источник_данных"
#: sql_help.c:3226 sql_help.c:3707 sql_help.c:3978 sql_help.c:4764
msgid "cursor_name"
msgstr "имя_курсора"
#: sql_help.c:3227 sql_help.c:3905 sql_help.c:4765
msgid "output_expression"
msgstr "выражение_результата"
#: sql_help.c:3228 sql_help.c:3906 sql_help.c:4399 sql_help.c:4496
#: sql_help.c:4648 sql_help.c:4766 sql_help.c:4879
msgid "output_name"
msgstr "имя_результата"
#: sql_help.c:3244
msgid "code"
msgstr "внедрённый_код"
#: sql_help.c:3649
msgid "parameter"
msgstr "параметр"
#: sql_help.c:3671 sql_help.c:3672 sql_help.c:4003
msgid "statement"
msgstr "оператор"
#: sql_help.c:3706 sql_help.c:3977
msgid "direction"
msgstr "направление"
#: sql_help.c:3708 sql_help.c:3979
msgid "where direction can be empty or one of:"
msgstr "где допустимое направление пустое или:"
#: sql_help.c:3709 sql_help.c:3710 sql_help.c:3711 sql_help.c:3712
#: sql_help.c:3713 sql_help.c:3980 sql_help.c:3981 sql_help.c:3982
#: sql_help.c:3983 sql_help.c:3984 sql_help.c:4409 sql_help.c:4411
#: sql_help.c:4507 sql_help.c:4509 sql_help.c:4658 sql_help.c:4660
#: sql_help.c:4822 sql_help.c:4824 sql_help.c:4889 sql_help.c:4891
msgid "count"
msgstr "число"
#: sql_help.c:3811 sql_help.c:4191
msgid "sequence_name"
msgstr "имя_последовательности"
#: sql_help.c:3829 sql_help.c:4209
msgid "arg_name"
msgstr "имя_аргумента"
#: sql_help.c:3830 sql_help.c:4210
msgid "arg_type"
msgstr "тип_аргумента"
#: sql_help.c:3837 sql_help.c:4217
msgid "loid"
msgstr "код_БО"
#: sql_help.c:3865
msgid "remote_schema"
msgstr "удалённая_схема"
#: sql_help.c:3868
msgid "local_schema"
msgstr "локальная_схема"
#: sql_help.c:3903
msgid "conflict_target"
msgstr "объект_конфликта"
#: sql_help.c:3904
msgid "conflict_action"
msgstr "действие_при_конфликте"
#: sql_help.c:3907
msgid "where conflict_target can be one of:"
msgstr "где допустимый объект_конфликта:"
#: sql_help.c:3908
msgid "index_column_name"
msgstr "имя_столбца_индекса"
#: sql_help.c:3909
msgid "index_expression"
msgstr "выражение_индекса"
#: sql_help.c:3912
msgid "index_predicate"
msgstr "предикат_индекса"
#: sql_help.c:3914
msgid "and conflict_action is one of:"
msgstr "а допустимое действие_при_конфликте:"
#: sql_help.c:3920 sql_help.c:4761
msgid "sub-SELECT"
msgstr "вложенный_SELECT"
#: sql_help.c:3929 sql_help.c:3992 sql_help.c:4737
msgid "channel"
msgstr "канал"
#: sql_help.c:3951
msgid "lockmode"
msgstr "режим_блокировки"
#: sql_help.c:3952
msgid "where lockmode is one of:"
msgstr "где допустимый режим_блокировки:"
#: sql_help.c:3993
msgid "payload"
msgstr "сообщение_нагрузка"
#: sql_help.c:4020
msgid "old_role"
msgstr "старая_роль"
#: sql_help.c:4021
msgid "new_role"
msgstr "новая_роль"
#: sql_help.c:4057 sql_help.c:4256 sql_help.c:4264
msgid "savepoint_name"
msgstr "имя_точки_сохранения"
#: sql_help.c:4402 sql_help.c:4455 sql_help.c:4651 sql_help.c:4704
#: sql_help.c:4882 sql_help.c:4935
msgid "grouping_element"
msgstr "элемент_группирования"
#: sql_help.c:4404 sql_help.c:4502 sql_help.c:4653 sql_help.c:4884
msgid "window_name"
msgstr "имя_окна"
#: sql_help.c:4405 sql_help.c:4503 sql_help.c:4654 sql_help.c:4885
msgid "window_definition"
msgstr "определение_окна"
#: sql_help.c:4406 sql_help.c:4420 sql_help.c:4459 sql_help.c:4504
#: sql_help.c:4655 sql_help.c:4669 sql_help.c:4708 sql_help.c:4886
#: sql_help.c:4900 sql_help.c:4939
msgid "select"
msgstr "select"
#: sql_help.c:4413 sql_help.c:4662 sql_help.c:4893
msgid "where from_item can be one of:"
msgstr "где допустимый источник_данных:"
#: sql_help.c:4416 sql_help.c:4422 sql_help.c:4425 sql_help.c:4429
#: sql_help.c:4441 sql_help.c:4665 sql_help.c:4671 sql_help.c:4674
#: sql_help.c:4678 sql_help.c:4690 sql_help.c:4896 sql_help.c:4902
#: sql_help.c:4905 sql_help.c:4909 sql_help.c:4921
msgid "column_alias"
msgstr "псевдоним_столбца"
#: sql_help.c:4417 sql_help.c:4666 sql_help.c:4897
msgid "sampling_method"
msgstr "метод_выборки"
#: sql_help.c:4419 sql_help.c:4668 sql_help.c:4899
msgid "seed"
msgstr "начальное_число"
#: sql_help.c:4423 sql_help.c:4457 sql_help.c:4672 sql_help.c:4706
#: sql_help.c:4903 sql_help.c:4937
msgid "with_query_name"
msgstr "имя_запроса_WITH"
#: sql_help.c:4433 sql_help.c:4436 sql_help.c:4439 sql_help.c:4682
#: sql_help.c:4685 sql_help.c:4688 sql_help.c:4913 sql_help.c:4916
#: sql_help.c:4919
msgid "column_definition"
msgstr "определение_столбца"
#: sql_help.c:4443 sql_help.c:4692 sql_help.c:4923
msgid "join_type"
msgstr "тип_соединения"
#: sql_help.c:4445 sql_help.c:4694 sql_help.c:4925
msgid "join_condition"
msgstr "условие_соединения"
#: sql_help.c:4446 sql_help.c:4695 sql_help.c:4926
msgid "join_column"
msgstr "столбец_соединения"
#: sql_help.c:4447 sql_help.c:4696 sql_help.c:4927
msgid "join_using_alias"
msgstr "псевдоним_использования_соединения"
#: sql_help.c:4448 sql_help.c:4697 sql_help.c:4928
msgid "and grouping_element can be one of:"
msgstr "где допустимый элемент_группирования:"
#: sql_help.c:4456 sql_help.c:4705 sql_help.c:4936
msgid "and with_query is:"
msgstr "и запрос_WITH:"
#: sql_help.c:4460 sql_help.c:4709 sql_help.c:4940
msgid "values"
msgstr "значения"
#: sql_help.c:4461 sql_help.c:4710 sql_help.c:4941
msgid "insert"
msgstr "insert"
#: sql_help.c:4462 sql_help.c:4711 sql_help.c:4942
msgid "update"
msgstr "update"
#: sql_help.c:4463 sql_help.c:4712 sql_help.c:4943
msgid "delete"
msgstr "delete"
#: sql_help.c:4465 sql_help.c:4714 sql_help.c:4945
msgid "search_seq_col_name"
msgstr "имя_столбца_послед_поиска"
#: sql_help.c:4467 sql_help.c:4716 sql_help.c:4947
msgid "cycle_mark_col_name"
msgstr "имя_столбца_пометки_цикла"
#: sql_help.c:4468 sql_help.c:4717 sql_help.c:4948
msgid "cycle_mark_value"
msgstr "значение_пометки_цикла"
#: sql_help.c:4469 sql_help.c:4718 sql_help.c:4949
msgid "cycle_mark_default"
msgstr "пометка_цикла_по_умолчанию"
#: sql_help.c:4470 sql_help.c:4719 sql_help.c:4950
msgid "cycle_path_col_name"
msgstr "имя_столбца_пути_цикла"
#: sql_help.c:4497
msgid "new_table"
msgstr "новая_таблица"
#: sql_help.c:4522
msgid "timezone"
msgstr "часовой_пояс"
#: sql_help.c:4567
msgid "snapshot_id"
msgstr "код_снимка"
#: sql_help.c:4820
msgid "sort_expression"
msgstr "выражение_сортировки"
#: sql_help.c:4957 sql_help.c:5935
msgid "abort the current transaction"
msgstr "прервать текущую транзакцию"
#: sql_help.c:4963
msgid "change the definition of an aggregate function"
msgstr "изменить определение агрегатной функции"
#: sql_help.c:4969
msgid "change the definition of a collation"
msgstr "изменить определение правила сортировки"
#: sql_help.c:4975
msgid "change the definition of a conversion"
msgstr "изменить определение преобразования"
#: sql_help.c:4981
msgid "change a database"
msgstr "изменить атрибуты базы данных"
#: sql_help.c:4987
msgid "define default access privileges"
msgstr "определить права доступа по умолчанию"
#: sql_help.c:4993
msgid "change the definition of a domain"
msgstr "изменить определение домена"
#: sql_help.c:4999
msgid "change the definition of an event trigger"
msgstr "изменить определение событийного триггера"
#: sql_help.c:5005
msgid "change the definition of an extension"
msgstr "изменить определение расширения"
#: sql_help.c:5011
msgid "change the definition of a foreign-data wrapper"
msgstr "изменить определение обёртки сторонних данных"
#: sql_help.c:5017
msgid "change the definition of a foreign table"
msgstr "изменить определение сторонней таблицы"
#: sql_help.c:5023
msgid "change the definition of a function"
msgstr "изменить определение функции"
#: sql_help.c:5029
msgid "change role name or membership"
msgstr "изменить имя роли или членство"
#: sql_help.c:5035
msgid "change the definition of an index"
msgstr "изменить определение индекса"
#: sql_help.c:5041
msgid "change the definition of a procedural language"
msgstr "изменить определение процедурного языка"
#: sql_help.c:5047
msgid "change the definition of a large object"
msgstr "изменить определение большого объекта"
#: sql_help.c:5053
msgid "change the definition of a materialized view"
msgstr "изменить определение материализованного представления"
#: sql_help.c:5059
msgid "change the definition of an operator"
msgstr "изменить определение оператора"
#: sql_help.c:5065
msgid "change the definition of an operator class"
msgstr "изменить определение класса операторов"
#: sql_help.c:5071
msgid "change the definition of an operator family"
msgstr "изменить определение семейства операторов"
#: sql_help.c:5077
msgid "change the definition of a row-level security policy"
msgstr "изменить определение политики защиты на уровне строк"
#: sql_help.c:5083
msgid "change the definition of a procedure"
msgstr "изменить определение процедуры"
#: sql_help.c:5089
msgid "change the definition of a publication"
msgstr "изменить определение публикации"
#: sql_help.c:5095 sql_help.c:5197
msgid "change a database role"
msgstr "изменить роль пользователя БД"
#: sql_help.c:5101
msgid "change the definition of a routine"
msgstr "изменить определение подпрограммы"
#: sql_help.c:5107
msgid "change the definition of a rule"
msgstr "изменить определение правила"
#: sql_help.c:5113
msgid "change the definition of a schema"
msgstr "изменить определение схемы"
#: sql_help.c:5119
msgid "change the definition of a sequence generator"
msgstr "изменить определение генератора последовательности"
#: sql_help.c:5125
msgid "change the definition of a foreign server"
msgstr "изменить определение стороннего сервера"
#: sql_help.c:5131
msgid "change the definition of an extended statistics object"
msgstr "изменить определение объекта расширенной статистики"
#: sql_help.c:5137
msgid "change the definition of a subscription"
msgstr "изменить определение подписки"
#: sql_help.c:5143
msgid "change a server configuration parameter"
msgstr "изменить параметр конфигурации сервера"
#: sql_help.c:5149
msgid "change the definition of a table"
msgstr "изменить определение таблицы"
#: sql_help.c:5155
msgid "change the definition of a tablespace"
msgstr "изменить определение табличного пространства"
#: sql_help.c:5161
msgid "change the definition of a text search configuration"
msgstr "изменить определение конфигурации текстового поиска"
#: sql_help.c:5167
msgid "change the definition of a text search dictionary"
msgstr "изменить определение словаря текстового поиска"
#: sql_help.c:5173
msgid "change the definition of a text search parser"
msgstr "изменить определение анализатора текстового поиска"
#: sql_help.c:5179
msgid "change the definition of a text search template"
msgstr "изменить определение шаблона текстового поиска"
#: sql_help.c:5185
msgid "change the definition of a trigger"
msgstr "изменить определение триггера"
#: sql_help.c:5191
msgid "change the definition of a type"
msgstr "изменить определение типа"
#: sql_help.c:5203
msgid "change the definition of a user mapping"
msgstr "изменить сопоставление пользователей"
#: sql_help.c:5209
msgid "change the definition of a view"
msgstr "изменить определение представления"
#: sql_help.c:5215
msgid "collect statistics about a database"
msgstr "собрать статистику о базе данных"
#: sql_help.c:5221 sql_help.c:6013
msgid "start a transaction block"
msgstr "начать транзакцию"
#: sql_help.c:5227
msgid "invoke a procedure"
msgstr "вызвать процедуру"
#: sql_help.c:5233
msgid "force a write-ahead log checkpoint"
msgstr "произвести контрольную точку в журнале предзаписи"
#: sql_help.c:5239
msgid "close a cursor"
msgstr "закрыть курсор"
#: sql_help.c:5245
msgid "cluster a table according to an index"
msgstr "перегруппировать таблицу по индексу"
#: sql_help.c:5251
msgid "define or change the comment of an object"
msgstr "задать или изменить комментарий объекта"
#: sql_help.c:5257 sql_help.c:5815
msgid "commit the current transaction"
msgstr "зафиксировать текущую транзакцию"
#: sql_help.c:5263
msgid "commit a transaction that was earlier prepared for two-phase commit"
msgstr "зафиксировать транзакцию, ранее подготовленную для двухфазной фиксации"
#: sql_help.c:5269
msgid "copy data between a file and a table"
msgstr "импорт/экспорт данных в файл"
#: sql_help.c:5275
msgid "define a new access method"
msgstr "создать новый метод доступа"
#: sql_help.c:5281
msgid "define a new aggregate function"
msgstr "создать агрегатную функцию"
#: sql_help.c:5287
msgid "define a new cast"
msgstr "создать приведение типов"
#: sql_help.c:5293
msgid "define a new collation"
msgstr "создать правило сортировки"
#: sql_help.c:5299
msgid "define a new encoding conversion"
msgstr "создать преобразование кодировки"
#: sql_help.c:5305
msgid "create a new database"
msgstr "создать базу данных"
#: sql_help.c:5311
msgid "define a new domain"
msgstr "создать домен"
#: sql_help.c:5317
msgid "define a new event trigger"
msgstr "создать событийный триггер"
#: sql_help.c:5323
msgid "install an extension"
msgstr "установить расширение"
#: sql_help.c:5329
msgid "define a new foreign-data wrapper"
msgstr "создать обёртку сторонних данных"
#: sql_help.c:5335
msgid "define a new foreign table"
msgstr "создать стороннюю таблицу"
#: sql_help.c:5341
msgid "define a new function"
msgstr "создать функцию"
#: sql_help.c:5347 sql_help.c:5407 sql_help.c:5509
msgid "define a new database role"
msgstr "создать роль пользователя БД"
#: sql_help.c:5353
msgid "define a new index"
msgstr "создать индекс"
#: sql_help.c:5359
msgid "define a new procedural language"
msgstr "создать процедурный язык"
#: sql_help.c:5365
msgid "define a new materialized view"
msgstr "создать материализованное представление"
#: sql_help.c:5371
msgid "define a new operator"
msgstr "создать оператор"
#: sql_help.c:5377
msgid "define a new operator class"
msgstr "создать класс операторов"
#: sql_help.c:5383
msgid "define a new operator family"
msgstr "создать семейство операторов"
#: sql_help.c:5389
msgid "define a new row-level security policy for a table"
msgstr "создать новую политику защиты на уровне строк для таблицы"
#: sql_help.c:5395
msgid "define a new procedure"
msgstr "создать процедуру"
#: sql_help.c:5401
msgid "define a new publication"
msgstr "создать публикацию"
#: sql_help.c:5413
msgid "define a new rewrite rule"
msgstr "создать правило перезаписи"
#: sql_help.c:5419
msgid "define a new schema"
msgstr "создать схему"
#: sql_help.c:5425
msgid "define a new sequence generator"
msgstr "создать генератор последовательностей"
#: sql_help.c:5431
msgid "define a new foreign server"
msgstr "создать сторонний сервер"
#: sql_help.c:5437
msgid "define extended statistics"
msgstr "создать расширенную статистику"
#: sql_help.c:5443
msgid "define a new subscription"
msgstr "создать подписку"
#: sql_help.c:5449
msgid "define a new table"
msgstr "создать таблицу"
#: sql_help.c:5455 sql_help.c:5971
msgid "define a new table from the results of a query"
msgstr "создать таблицу из результатов запроса"
#: sql_help.c:5461
msgid "define a new tablespace"
msgstr "создать табличное пространство"
#: sql_help.c:5467
msgid "define a new text search configuration"
msgstr "создать конфигурацию текстового поиска"
#: sql_help.c:5473
msgid "define a new text search dictionary"
msgstr "создать словарь текстового поиска"
#: sql_help.c:5479
msgid "define a new text search parser"
msgstr "создать анализатор текстового поиска"
#: sql_help.c:5485
msgid "define a new text search template"
msgstr "создать шаблон текстового поиска"
#: sql_help.c:5491
msgid "define a new transform"
msgstr "создать преобразование"
#: sql_help.c:5497
msgid "define a new trigger"
msgstr "создать триггер"
#: sql_help.c:5503
msgid "define a new data type"
msgstr "создать тип данных"
#: sql_help.c:5515
msgid "define a new mapping of a user to a foreign server"
msgstr "создать сопоставление пользователя для стороннего сервера"
#: sql_help.c:5521
msgid "define a new view"
msgstr "создать представление"
#: sql_help.c:5527
msgid "deallocate a prepared statement"
msgstr "освободить подготовленный оператор"
#: sql_help.c:5533
msgid "define a cursor"
msgstr "создать курсор"
#: sql_help.c:5539
msgid "delete rows of a table"
msgstr "удалить записи таблицы"
#: sql_help.c:5545
msgid "discard session state"
msgstr "очистить состояние сеанса"
#: sql_help.c:5551
msgid "execute an anonymous code block"
msgstr "выполнить анонимный блок кода"
#: sql_help.c:5557
msgid "remove an access method"
msgstr "удалить метод доступа"
#: sql_help.c:5563
msgid "remove an aggregate function"
msgstr "удалить агрегатную функцию"
#: sql_help.c:5569
msgid "remove a cast"
msgstr "удалить приведение типа"
#: sql_help.c:5575
msgid "remove a collation"
msgstr "удалить правило сортировки"
#: sql_help.c:5581
msgid "remove a conversion"
msgstr "удалить преобразование"
#: sql_help.c:5587
msgid "remove a database"
msgstr "удалить базу данных"
#: sql_help.c:5593
msgid "remove a domain"
msgstr "удалить домен"
#: sql_help.c:5599
msgid "remove an event trigger"
msgstr "удалить событийный триггер"
#: sql_help.c:5605
msgid "remove an extension"
msgstr "удалить расширение"
#: sql_help.c:5611
msgid "remove a foreign-data wrapper"
msgstr "удалить обёртку сторонних данных"
#: sql_help.c:5617
msgid "remove a foreign table"
msgstr "удалить стороннюю таблицу"
#: sql_help.c:5623
msgid "remove a function"
msgstr "удалить функцию"
#: sql_help.c:5629 sql_help.c:5695 sql_help.c:5797
msgid "remove a database role"
msgstr "удалить роль пользователя БД"
#: sql_help.c:5635
msgid "remove an index"
msgstr "удалить индекс"
#: sql_help.c:5641
msgid "remove a procedural language"
msgstr "удалить процедурный язык"
#: sql_help.c:5647
msgid "remove a materialized view"
msgstr "удалить материализованное представление"
#: sql_help.c:5653
msgid "remove an operator"
msgstr "удалить оператор"
#: sql_help.c:5659
msgid "remove an operator class"
msgstr "удалить класс операторов"
#: sql_help.c:5665
msgid "remove an operator family"
msgstr "удалить семейство операторов"
#: sql_help.c:5671
msgid "remove database objects owned by a database role"
msgstr "удалить объекты базы данных, принадлежащие роли"
#: sql_help.c:5677
msgid "remove a row-level security policy from a table"
msgstr "удалить из таблицы политику защиты на уровне строк"
#: sql_help.c:5683
msgid "remove a procedure"
msgstr "удалить процедуру"
#: sql_help.c:5689
msgid "remove a publication"
msgstr "удалить публикацию"
#: sql_help.c:5701
msgid "remove a routine"
msgstr "удалить подпрограмму"
#: sql_help.c:5707
msgid "remove a rewrite rule"
msgstr "удалить правило перезаписи"
#: sql_help.c:5713
msgid "remove a schema"
msgstr "удалить схему"
#: sql_help.c:5719
msgid "remove a sequence"
msgstr "удалить последовательность"
#: sql_help.c:5725
msgid "remove a foreign server descriptor"
msgstr "удалить описание стороннего сервера"
#: sql_help.c:5731
msgid "remove extended statistics"
msgstr "удалить расширенную статистику"
#: sql_help.c:5737
msgid "remove a subscription"
msgstr "удалить подписку"
#: sql_help.c:5743
msgid "remove a table"
msgstr "удалить таблицу"
#: sql_help.c:5749
msgid "remove a tablespace"
msgstr "удалить табличное пространство"
#: sql_help.c:5755
msgid "remove a text search configuration"
msgstr "удалить конфигурацию текстового поиска"
#: sql_help.c:5761
msgid "remove a text search dictionary"
msgstr "удалить словарь текстового поиска"
#: sql_help.c:5767
msgid "remove a text search parser"
msgstr "удалить анализатор текстового поиска"
#: sql_help.c:5773
msgid "remove a text search template"
msgstr "удалить шаблон текстового поиска"
#: sql_help.c:5779
msgid "remove a transform"
msgstr "удалить преобразование"
#: sql_help.c:5785
msgid "remove a trigger"
msgstr "удалить триггер"
#: sql_help.c:5791
msgid "remove a data type"
msgstr "удалить тип данных"
#: sql_help.c:5803
msgid "remove a user mapping for a foreign server"
msgstr "удалить сопоставление пользователя для стороннего сервера"
#: sql_help.c:5809
msgid "remove a view"
msgstr "удалить представление"
#: sql_help.c:5821
msgid "execute a prepared statement"
msgstr "выполнить подготовленный оператор"
#: sql_help.c:5827
msgid "show the execution plan of a statement"
msgstr "показать план выполнения оператора"
#: sql_help.c:5833
msgid "retrieve rows from a query using a cursor"
msgstr "получить результат запроса через курсор"
#: sql_help.c:5839
msgid "define access privileges"
msgstr "определить права доступа"
#: sql_help.c:5845
msgid "import table definitions from a foreign server"
msgstr "импортировать определения таблиц со стороннего сервера"
#: sql_help.c:5851
msgid "create new rows in a table"
msgstr "добавить строки в таблицу"
#: sql_help.c:5857
msgid "listen for a notification"
msgstr "ожидать уведомления"
#: sql_help.c:5863
msgid "load a shared library file"
msgstr "загрузить файл разделяемой библиотеки"
#: sql_help.c:5869
msgid "lock a table"
msgstr "заблокировать таблицу"
#: sql_help.c:5875
msgid "position a cursor"
msgstr "установить курсор"
#: sql_help.c:5881
msgid "generate a notification"
msgstr "сгенерировать уведомление"
#: sql_help.c:5887
msgid "prepare a statement for execution"
msgstr "подготовить оператор для выполнения"
#: sql_help.c:5893
msgid "prepare the current transaction for two-phase commit"
msgstr "подготовить текущую транзакцию для двухфазной фиксации"
#: sql_help.c:5899
msgid "change the ownership of database objects owned by a database role"
msgstr "изменить владельца объектов БД, принадлежащих заданной роли"
#: sql_help.c:5905
msgid "replace the contents of a materialized view"
msgstr "заменить содержимое материализованного представления"
#: sql_help.c:5911
msgid "rebuild indexes"
msgstr "перестроить индексы"
#: sql_help.c:5917
msgid "destroy a previously defined savepoint"
msgstr "удалить ранее определённую точку сохранения"
#: sql_help.c:5923
msgid "restore the value of a run-time parameter to the default value"
msgstr "восстановить исходное значение параметра выполнения"
#: sql_help.c:5929
msgid "remove access privileges"
msgstr "удалить права доступа"
#: sql_help.c:5941
msgid "cancel a transaction that was earlier prepared for two-phase commit"
msgstr "отменить транзакцию, подготовленную ранее для двухфазной фиксации"
#: sql_help.c:5947
msgid "roll back to a savepoint"
msgstr "откатиться к точке сохранения"
#: sql_help.c:5953
msgid "define a new savepoint within the current transaction"
msgstr "определить новую точку сохранения в текущей транзакции"
#: sql_help.c:5959
msgid "define or change a security label applied to an object"
msgstr "задать или изменить метку безопасности, применённую к объекту"
#: sql_help.c:5965 sql_help.c:6019 sql_help.c:6055
msgid "retrieve rows from a table or view"
msgstr "выбрать строки из таблицы или представления"
#: sql_help.c:5977
msgid "change a run-time parameter"
msgstr "изменить параметр выполнения"
#: sql_help.c:5983
msgid "set constraint check timing for the current transaction"
msgstr "установить время проверки ограничений для текущей транзакции"
#: sql_help.c:5989
msgid "set the current user identifier of the current session"
msgstr "задать идентификатор текущего пользователя в текущем сеансе"
#: sql_help.c:5995
msgid ""
"set the session user identifier and the current user identifier of the "
"current session"
msgstr ""
"задать идентификатор пользователя сеанса и идентификатор текущего "
"пользователя в текущем сеансе"
#: sql_help.c:6001
msgid "set the characteristics of the current transaction"
msgstr "задать свойства текущей транзакции"
#: sql_help.c:6007
msgid "show the value of a run-time parameter"
msgstr "показать значение параметра выполнения"
#: sql_help.c:6025
msgid "empty a table or set of tables"
msgstr "опустошить таблицу или набор таблиц"
#: sql_help.c:6031
msgid "stop listening for a notification"
msgstr "прекратить ожидание уведомлений"
#: sql_help.c:6037
msgid "update rows of a table"
msgstr "изменить строки таблицы"
#: sql_help.c:6043
msgid "garbage-collect and optionally analyze a database"
msgstr "произвести сборку мусора и проанализировать базу данных"
#: sql_help.c:6049
msgid "compute a set of rows"
msgstr "получить набор строк"
#: startup.c:213
#, c-format
msgid "-1 can only be used in non-interactive mode"
msgstr "-1 можно использовать только в неинтерактивном режиме"
#: startup.c:326
#, c-format
msgid "could not open log file \"%s\": %m"
msgstr "не удалось открыть файл протокола \"%s\": %m"
#: startup.c:438
#, c-format
msgid ""
"Type \"help\" for help.\n"
"\n"
msgstr ""
"Введите \"help\", чтобы получить справку.\n"
"\n"
#: startup.c:591
#, c-format
msgid "could not set printing parameter \"%s\""
msgstr "не удалось установить параметр печати \"%s\""
#: startup.c:699
#, c-format
msgid "Try \"%s --help\" for more information.\n"
msgstr "Для дополнительной информации попробуйте \"%s --help\".\n"
#: startup.c:716
#, c-format
msgid "extra command-line argument \"%s\" ignored"
msgstr "лишний аргумент \"%s\" проигнорирован"
#: startup.c:765
#, c-format
msgid "could not find own program executable"
msgstr "не удалось найти свой исполняемый файл"
#: tab-complete.c:4939
#, c-format
msgid ""
"tab completion query failed: %s\n"
"Query was:\n"
"%s"
msgstr ""
"ошибка запроса Tab-дополнения: %s\n"
"Запрос:\n"
"%s"
#: variables.c:139
#, c-format
msgid "unrecognized value \"%s\" for \"%s\": Boolean expected"
msgstr ""
"нераспознанное значение \"%s\" для \"%s\": ожидалось булевское значение"
#: variables.c:176
#, c-format
msgid "invalid value \"%s\" for \"%s\": integer expected"
msgstr "неправильное значение \"%s\" для \"%s\": ожидалось целое"
#: variables.c:224
#, c-format
msgid "invalid variable name: \"%s\""
msgstr "неправильное имя переменной: \"%s\""
#: variables.c:419
#, c-format
msgid ""
"unrecognized value \"%s\" for \"%s\"\n"
"Available values are: %s."
msgstr ""
"нераспознанное значение \"%s\" для \"%s\"\n"
"Допустимые значения: %s."
#~ msgid "Enter new password: "
#~ msgstr "Введите новый пароль: "
#~ msgid ""
#~ "All connection parameters must be supplied because no database connection "
#~ "exists"
#~ msgstr ""
#~ "Без подключения к базе данных необходимо указывать все параметры "
#~ "подключения"
#~ msgid "Could not send cancel request: %s"
#~ msgstr "Отправить сигнал отмены не удалось: %s"
#~ msgid "could not connect to server: %s"
#~ msgstr "не удалось подключиться к серверу: %s"
#~ msgid "Report bugs to <pgsql-bugs@lists.postgresql.org>.\n"
#~ msgstr "Об ошибках сообщайте по адресу <pgsql-bugs@lists.postgresql.org>.\n"
#~ msgid ""
#~ " \\g [FILE] or ; execute query (and send results to file or |"
#~ "pipe)\n"
#~ msgstr ""
#~ " \\g [ФАЙЛ] или ; выполнить запрос\n"
#~ " (и направить результаты в файл или канал |)\n"
#~ msgid "old_version"
#~ msgstr "старая_версия"
#~ msgid "from_list"
#~ msgstr "список_FROM"
#~ msgid "child process was terminated by signal %s"
#~ msgstr "дочерний процесс завершён по сигналу %s"
#~ msgid "Invalid command \\%s. Try \\? for help.\n"
#~ msgstr "Неверная команда \\%s. Справка по командам: \\?\n"
#~ msgid "%s\n"
#~ msgstr "%s\n"
#~ msgid "string_literal"
#~ msgstr "строковая_константа"
#~ msgid "normal"
#~ msgstr "обычная"
#~ msgid "Procedure"
#~ msgstr "Процедура"
#~ msgid " SERVER_VERSION_NAME server's version (short string)\n"
#~ msgstr " SERVER_VERSION_NAME версия сервера (короткая строка)\n"
#~ msgid " VERSION psql's version (verbose string)\n"
#~ msgstr " VERSION версия psql (развёрнутая строка)\n"
#~ msgid " VERSION_NAME psql's version (short string)\n"
#~ msgstr " VERSION_NAME версия psql (короткая строка)\n"
#~ msgid " VERSION_NUM psql's version (numeric format)\n"
#~ msgstr " VERSION_NUM версия psql (в числовом формате)\n"
#~ msgid "attribute"
#~ msgstr "атрибут"
#~ msgid "Value"
#~ msgstr "Значение"
#~ msgid "statistic_type"
#~ msgstr "тип_статистики"
#~ msgid "No per-database role settings support in this server version.\n"
#~ msgstr ""
#~ "Это версия сервера не поддерживает параметры ролей на уровне базы "
#~ "данных.\n"
#~ msgid "No matching settings found.\n"
#~ msgstr "Соответствующие параметры не найдены.\n"
#~ msgid "No settings found.\n"
#~ msgstr "Параметры не найдены.\n"
#~ msgid "No matching relations found.\n"
#~ msgstr "Соответствующие отношения не найдены.\n"
#~ msgid "No relations found.\n"
#~ msgstr "Отношения не найдены.\n"
#~ msgid "Object Description"
#~ msgstr "Описание объекта"
#~ msgid "Password encryption failed.\n"
#~ msgstr "Ошибка при шифровании пароля.\n"
#~ msgid "suboption"
#~ msgstr "подпараметр"
#~ msgid "where suboption can be:"
#~ msgstr "где допустимые подпараметры:"
#~ msgid "slot_name"
#~ msgstr "имя_слота"
#~ msgid "puboption"
#~ msgstr "параметр_публикации"
#~ msgid "where puboption can be:"
#~ msgstr "где допустимый параметр_публикации:"
#~ msgid "+ opt(%d) = |%s|\n"
#~ msgstr "+ opt(%d) = |%s|\n"
#~ msgid "\\%s: error while setting variable\n"
#~ msgstr "\\%s: не удалось установить переменную\n"
#~ msgid "could not set variable \"%s\"\n"
#~ msgstr "не удалось установить переменную \"%s\"\n"
#~ msgid "Modifiers"
#~ msgstr "Модификаторы"
#~ msgid "collate %s"
#~ msgstr "правило сортировки %s"
#~ msgid "not null"
#~ msgstr "NOT NULL"
#~ msgid "default %s"
#~ msgstr "DEFAULT %s"
#~ msgid "Modifier"
#~ msgstr "Модификатор"
#~ msgid "%s: could not set variable \"%s\"\n"
#~ msgstr "%s: не удалось установить переменную \"%s\"\n"
#~ msgid "\\crosstabview: query must return results to be shown in crosstab\n"
#~ msgstr ""
#~ "\\crosstabview: запрос должен возвращать результаты для вывода в "
#~ "перекрёстном виде\n"
#~ msgid "\\crosstabview: invalid column number: \"%s\"\n"
#~ msgstr "\\crosstabview: неверный номер столбца: \"%s\"\n"
#~ msgid "serialtype"
#~ msgstr "сериализованный_тип"
#~ msgid "Watch every %lds\t%s"
#~ msgstr "Повтор запрос через %ld сек.\t%s"
#~ msgid ""
#~ "\n"
#~ "Display influencing variables:\n"
#~ msgstr ""
#~ "\n"
#~ "Рабочие параметры:\n"
#~ msgid " unicode_border_linestyle\n"
#~ msgstr " unicode_border_linestyle\n"
#~ msgid " unicode_column_linestyle\n"
#~ msgstr " unicode_column_linestyle\n"
#~ msgid "column_name_index"
#~ msgstr "индекс_по_имени_столбца"
#~ msgid "expression_index"
#~ msgstr "индекс_по_выражению"
#~ msgid "SSL connection (unknown cipher)\n"
#~ msgstr "SSL-соединение (шифр неизвестен)\n"
#~ msgid "(No rows)\n"
#~ msgstr "(Нет записей)\n"
#~ msgid "where view_option_name can be one of:"
#~ msgstr "где допустимое имя_параметра_представления:"
#~ msgid "local"
#~ msgstr "local"
#~ msgid "cascaded"
#~ msgstr "cascaded"
#~ msgid "Border style (%s) unset.\n"
#~ msgstr "Стиль границ (%s) сброшен.\n"
#~ msgid "Output format (%s) is aligned.\n"
#~ msgstr "Формат вывода (%s): выровненный.\n"
#~ msgid "invfunc"
#~ msgstr "обр_функция"
#~ msgid ""
#~ "change the definition of a tablespace or affect objects of a tablespace"
#~ msgstr "изменить определение или содержимое табличного пространства"
#~ msgid "Showing locale-adjusted numeric output."
#~ msgstr "Числа выводятся в локализованном формате."
#~ msgid "Showing only tuples."
#~ msgstr "Выводятся только кортежи."
#~ msgid "could not get current user name: %s\n"
#~ msgstr "не удалось узнать имя текущего пользователя: %s\n"
#~ msgid "agg_name"
#~ msgstr "агр_функция"
#~ msgid "agg_type"
#~ msgstr "агр_тип"
#~ msgid "input_data_type"
#~ msgstr "тип_входных_данных"
#~ msgid "%s: -1 is incompatible with -c and -l\n"
#~ msgstr "%s: -1 несовместимо с -c и -l\n"
#~ msgid " \\l[+] list all databases\n"
#~ msgstr " \\l[+] список всех баз данных\n"
#~ msgid "column"
#~ msgstr "столбец"
#~ msgid "new_column"
#~ msgstr "новая_столбец"
#~ msgid "tablespace"
#~ msgstr "табл_пространство"
#~ msgid "\\%s: error\n"
#~ msgstr "ошибка \\%s\n"
#~ msgid "\\copy: %s"
#~ msgstr "\\copy: %s"
#~ msgid "contains support for command-line editing"
#~ msgstr "включает поддержку редактирования командной строки"
#~ msgid "data type"
#~ msgstr "тип данных"
|