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
|
# Korean message translation file for libpq
# Ioseph Kim. <ioseph@uri.sarang.net>, 2004.
#
msgid ""
msgstr ""
"Project-Id-Version: libpq (PostgreSQL) 18\n"
"Report-Msgid-Bugs-To: pgsql-bugs@lists.postgresql.org\n"
"POT-Creation-Date: 2025-09-11 21:40+0000\n"
"PO-Revision-Date: 2025-09-09 16:37+0900\n"
"Last-Translator: YOUR NAME <E-MAIL@ADDRESS>\n"
"Language-Team: Korean <pgsql-kr@postgresql.kr>\n"
"Language: ko\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#: ../libpq-oauth/oauth-curl.c:307 ../libpq-oauth/oauth-curl.c:2000
#, c-format
msgid "libcurl easy handle removal failed: %s"
msgstr "libcurl easy handle 삭제 실패: %s"
#: ../libpq-oauth/oauth-curl.c:327
#, c-format
msgid "libcurl multi handle cleanup failed: %s"
msgstr "libcurl multi handle 정리 실패: %s"
#: ../libpq-oauth/oauth-curl.c:390 ../libpq-oauth/oauth-curl.c:401
#, c-format
msgid "failed to set %s on OAuth connection: %s"
msgstr "OAuth 연결에서 %s 설정 실패: %s"
#: ../libpq-oauth/oauth-curl.c:412
#, c-format
msgid "failed to get %s from OAuth response: %s"
msgstr "OAuth 응답에서 %s 구하기 실패: %s"
#: ../libpq-oauth/oauth-curl.c:515 ../libpq-oauth/oauth-curl.c:625
#, c-format
msgid "JSON is too deeply nested"
msgstr "JSON이 너무 깊게 중첩되었음"
#: ../libpq-oauth/oauth-curl.c:540
#, c-format
msgid "internal error: started field '%s' before field '%s' was finished"
msgstr "내부 오류: '%s' 필드가 '%s' 필드 끝나기 전에 시작했음"
#: ../libpq-oauth/oauth-curl.c:567
#, c-format
msgid "field \"%s\" is duplicated"
msgstr "\"%s\" 필드 중복됨"
#: ../libpq-oauth/oauth-curl.c:592
#, c-format
msgid "internal error: field '%s' still active at end of object"
msgstr "내부 오류: '%s' 필드가 객체 끝에서도 여전히 활성화 상태임"
#: ../libpq-oauth/oauth-curl.c:607 ../libpq-oauth/oauth-curl.c:667
#, c-format
msgid "top-level element must be an object"
msgstr "최상위 레벨은 오브젝트형이어야 함"
#: ../libpq-oauth/oauth-curl.c:648
#, c-format
msgid "internal error: found unexpected array end while parsing field '%s'"
msgstr "내부 오류: '%s' 필드 구문분석 중 예상치 못한 배열 끝을 발견했음"
#: ../libpq-oauth/oauth-curl.c:703
#, c-format
msgid "internal error: scalar target found at nesting level %d"
msgstr "내부 오류: 중첩 수준 %d에서 스칼라 타겟을 발견했음"
#: ../libpq-oauth/oauth-curl.c:713
#, c-format
msgid "internal error: scalar field '%s' would be assigned twice"
msgstr "내부 오류: '%s' 스칼라 필드가 두 번 지정되었음"
#: ../libpq-oauth/oauth-curl.c:735
#, c-format
msgid "internal error: array member found at nesting level %d"
msgstr "내부 오류: 중첩 수준 %d에서 배열 요소를 발견했음"
#: ../libpq-oauth/oauth-curl.c:770
#, c-format
msgid "no content type was provided"
msgstr "content type이 제공되지 않았음"
#: ../libpq-oauth/oauth-curl.c:809
#, c-format
msgid "unexpected content type: \"%s\""
msgstr "예상치 못한 content type: \"%s\""
#: ../libpq-oauth/oauth-curl.c:834
#, c-format
msgid "response contains embedded NULLs"
msgstr "응답에 임베디드 NULL이 포함되었음"
#: ../libpq-oauth/oauth-curl.c:844
#, c-format
msgid "response is not valid UTF-8"
msgstr "응답이 정상 UTF-8 인코딩이 아님"
#: ../libpq-oauth/oauth-curl.c:884
#, c-format
msgid "field \"%s\" is missing"
msgstr "\"%s\" 필드가 없습니다."
#: ../libpq-oauth/oauth-curl.c:1118
#, c-format
msgid "provider rejected the oauth_client_secret"
msgstr "제공자가 oauth_client_secret을 거부했음"
#: ../libpq-oauth/oauth-curl.c:1182
#, c-format
msgid "failed to create epoll set: %m"
msgstr "epoll 세트를 만들수 없음: %m"
#: ../libpq-oauth/oauth-curl.c:1189
#, c-format
msgid "failed to create timerfd: %m"
msgstr "timerfd를 만들 수 없음: %m"
#: ../libpq-oauth/oauth-curl.c:1195
#, c-format
msgid "failed to add timerfd to epoll set: %m"
msgstr "epoll 세트에 timerfd를 추가할 수 없음: %m"
#. translator: the term "kqueue" (kernel queue) should not be translated
#: ../libpq-oauth/oauth-curl.c:1205
#, c-format
msgid "failed to create kqueue: %m"
msgstr "kqueue를 만들 수 없음: %m"
#: ../libpq-oauth/oauth-curl.c:1218
#, c-format
msgid "failed to create timer kqueue: %m"
msgstr "timer kqueue 만들기 실패: %m"
#: ../libpq-oauth/oauth-curl.c:1262 ../libpq-oauth/oauth-curl.c:1337
#, c-format
msgid "unknown libcurl socket operation: %d"
msgstr "알 수 없는 libcurl 소켓 연산: %d"
#: ../libpq-oauth/oauth-curl.c:1279
#, c-format
msgid "could not add to epoll set: %m"
msgstr "epoll 세트에 추가할 수 없음: %m"
#: ../libpq-oauth/oauth-curl.c:1283
#, c-format
msgid "could not delete from epoll set: %m"
msgstr "epoll 세트에서 삭제할 수 없음: %m"
#: ../libpq-oauth/oauth-curl.c:1287
#, c-format
msgid "could not update epoll set: %m"
msgstr "epoll 세트를 갱신할 수 없음: %m"
#: ../libpq-oauth/oauth-curl.c:1347
#, c-format
msgid "could not modify kqueue: %m"
msgstr "kqueue를 변경할 수 없음: %m"
#: ../libpq-oauth/oauth-curl.c:1371
#, c-format
msgid "could not delete from kqueue: %m"
msgstr "kqueue에서 삭제할 수 없음: %m"
#: ../libpq-oauth/oauth-curl.c:1374
#, c-format
msgid "could not add to kqueue: %m"
msgstr "kqueue에 추가할 수 없음: %m"
#: ../libpq-oauth/oauth-curl.c:1423
#, c-format
msgid "could not comb kqueue: %m"
msgstr "kqueue 처리(comb) 실패: %m"
#: ../libpq-oauth/oauth-curl.c:1473
#, c-format
msgid "setting timerfd to %ld: %m"
msgstr "timerfd를 %ld로 설정 중: %m"
#: ../libpq-oauth/oauth-curl.c:1503
#, c-format
msgid "deleting kqueue timer: %m"
msgstr "kqueue timer 삭제 중: %m"
#: ../libpq-oauth/oauth-curl.c:1510
#, c-format
msgid "removing kqueue timer from multiplexer: %m"
msgstr "multiplexer에서 kqueue timer 삭제 중: %m"
#: ../libpq-oauth/oauth-curl.c:1521
#, c-format
msgid "setting kqueue timer to %ld: %m"
msgstr "kqueue timer를 %ld로 설정 중: %m"
#: ../libpq-oauth/oauth-curl.c:1528
#, c-format
msgid "adding kqueue timer to multiplexer: %m"
msgstr "kqueue timer를 multiplexer에 추가 중: %m"
#: ../libpq-oauth/oauth-curl.c:1553
#, c-format
msgid "checking timer expiration: %m"
msgstr "timer 제한시간 검사 중: %m"
#: ../libpq-oauth/oauth-curl.c:1715
#, c-format
msgid "failed to create libcurl multi handle"
msgstr "libcurl 멀티 핸들러 만들기 실패"
#: ../libpq-oauth/oauth-curl.c:1735
#, c-format
msgid "failed to create libcurl handle"
msgstr "libcurl 핸들러 만들기 실패"
#: ../libpq-oauth/oauth-curl.c:1819 ../libpq-oauth/oauth-curl.c:1860
#: ../libpq-oauth/oauth-curl.c:2173 ../libpq-oauth/oauth-curl.c:2334
#: ../libpq-oauth/oauth-curl.c:2395 ../libpq-oauth/oauth-curl.c:2484
#: ../libpq-oauth/oauth-curl.c:2778 ../libpq-oauth/oauth-curl.c:2995
#: fe-auth-scram.c:374 fe-auth-scram.c:447 fe-auth-scram.c:599
#: fe-auth-scram.c:619 fe-auth-scram.c:643 fe-auth-scram.c:657
#: fe-auth-scram.c:703 fe-auth-scram.c:739 fe-auth-scram.c:931 fe-auth.c:308
#: fe-auth.c:382 fe-auth.c:416 fe-auth.c:694 fe-auth.c:827 fe-auth.c:1330
#: fe-auth.c:1493 fe-cancel.c:178 fe-connect.c:1011 fe-connect.c:1051
#: fe-connect.c:2171 fe-connect.c:2333 fe-connect.c:3726 fe-connect.c:5182
#: fe-connect.c:5495 fe-connect.c:5750 fe-connect.c:5868 fe-connect.c:6115
#: fe-connect.c:6195 fe-connect.c:6293 fe-connect.c:6544 fe-connect.c:6571
#: fe-connect.c:6647 fe-connect.c:6670 fe-connect.c:6694 fe-connect.c:6729
#: fe-connect.c:6815 fe-connect.c:6823 fe-connect.c:7180 fe-connect.c:7362
#: fe-exec.c:530 fe-exec.c:1326 fe-exec.c:3265 fe-exec.c:4304 fe-exec.c:4470
#: fe-gssapi-common.c:109 fe-lobj.c:870 fe-protocol3.c:211 fe-protocol3.c:234
#: fe-protocol3.c:257 fe-protocol3.c:274 fe-protocol3.c:295 fe-protocol3.c:369
#: fe-protocol3.c:750 fe-protocol3.c:990 fe-protocol3.c:1542
#: fe-protocol3.c:1596 fe-protocol3.c:1642 fe-protocol3.c:1663
#: fe-protocol3.c:1920 fe-protocol3.c:2321 fe-secure-common.c:110
#: fe-secure-gssapi.c:506 fe-secure-gssapi.c:696 fe-secure-openssl.c:405
#: fe-secure-openssl.c:1135
#, c-format
msgid "out of memory"
msgstr "메모리 부족"
#: ../libpq-oauth/oauth-curl.c:1847
#, c-format
msgid "response is too large"
msgstr "응답 길이가 너무 깁니다"
#: ../libpq-oauth/oauth-curl.c:1889
#, c-format
msgid "failed to queue HTTP request: %s"
msgstr "HTTP 요청 큐 처리 실패: %s"
#: ../libpq-oauth/oauth-curl.c:1906 ../libpq-oauth/oauth-curl.c:1959
#, c-format
msgid "asynchronous HTTP request failed: %s"
msgstr "비동기 HTTP 요청 실패: %s"
#: ../libpq-oauth/oauth-curl.c:2011
#, c-format
msgid "no result was retrieved for the finished handle"
msgstr "완료된 핸들에 대한 결과가 없음"
#: ../libpq-oauth/oauth-curl.c:2144 ../libpq-oauth/oauth-curl.c:2450
#: ../libpq-oauth/oauth-curl.c:2529
#, c-format
msgid "unexpected response code %ld"
msgstr "예상치 못한 응답 코드 %ld"
#: ../libpq-oauth/oauth-curl.c:2216
#, c-format
msgid "the issuer identifier (%s) does not match oauth_issuer (%s)"
msgstr "이슈 식별자 (%s)와, oauth_issuer (%s) 가 매칭되지 않음"
#: ../libpq-oauth/oauth-curl.c:2243
#, c-format
msgid "issuer \"%s\" does not provide a device authorization endpoint"
msgstr "\"%s\" issuer가 장치 인가 엔드포인트를 제공하지 않음"
#: ../libpq-oauth/oauth-curl.c:2269
#, c-format
msgid "device authorization endpoint \"%s\" must use HTTPS"
msgstr "\"%s\" 장치 인가 엔드포인트는 HTTPS를 사용해야함"
#: ../libpq-oauth/oauth-curl.c:2278
#, c-format
msgid "token endpoint \"%s\" must use HTTPS"
msgstr "\"%s\" 토큰 엔드포인트는 HTTPS를 사용해야함"
#: ../libpq-oauth/oauth-curl.c:2587
#, c-format
msgid "slow_down interval overflow"
msgstr "slow_down 인터벌이 넘침"
#. translator: The first %s is a URL for the user to visit in a
#. browser, and the second %s is a code to be copy-pasted there.
#.
#: ../libpq-oauth/oauth-curl.c:2623
#, c-format
msgid "Visit %s and enter the code: %s\n"
msgstr "%s 방문해서 다음 코드를 입력하세요: %s\n"
#: ../libpq-oauth/oauth-curl.c:2628
#, c-format
msgid "device prompt failed"
msgstr "장치 프롬프트 실패"
#: ../libpq-oauth/oauth-curl.c:2684
#, c-format
msgid "curl_global_init previously failed during OAuth setup"
msgstr "OAuth 설정 중 앞서 curl_global_init 실패"
#: ../libpq-oauth/oauth-curl.c:2703
#, c-format
msgid "curl_global_init failed during OAuth setup"
msgstr "OAuth 설정 중 curl_global_init 실패"
#: ../libpq-oauth/oauth-curl.c:2724
#, c-format
msgid ""
"libcurl is no longer thread-safe\n"
"\tCurl initialization was reported thread-safe when libpq\n"
"\twas compiled, but the currently installed version of\n"
"\tlibcurl reports that it is not. Recompile libpq against\n"
"\tthe installed version of libcurl."
msgstr ""
"libcurl 이 쓰레드에 안전하게 컴파일 되지 않았습니다.\n"
"\tlibpq가 컴파일될 때 Curl 초기화가 스레드에 안전하다고 \t보고되었지만, 현재 "
"설치된 libcurl 버전에서는 그렇지 않습니다.\t 설치된 libcurl 버전에 맞춰 libpq"
"를 다시 컴파일하세요."
#: fe-auth-scram.c:228
#, c-format
msgid "malformed SCRAM message (empty message)"
msgstr "SCRAM 메시지가 형식에 안맞음 (메시지 비었음)"
#: fe-auth-scram.c:233
#, c-format
msgid "malformed SCRAM message (length mismatch)"
msgstr "SCRAM 메시지가 형식에 안맞음 (길이 불일치)"
#: fe-auth-scram.c:277
#, c-format
msgid "could not verify server signature: %s"
msgstr "서버 서명을 검사 할 수 없음: %s"
#: fe-auth-scram.c:283
#, c-format
msgid "incorrect server signature"
msgstr "잘못된 서버 서명"
#: fe-auth-scram.c:292
#, c-format
msgid "invalid SCRAM exchange state"
msgstr "SCRAM 교환 상태가 바르지 않음"
#: fe-auth-scram.c:316
#, c-format
msgid "malformed SCRAM message (attribute \"%c\" expected)"
msgstr "SCRAM 메시지가 형식에 안맞음 (\"%c\" 속성이 예상됨)"
#: fe-auth-scram.c:325
#, c-format
msgid "malformed SCRAM message (expected character \"=\" for attribute \"%c\")"
msgstr "SCRAM 메시지가 형식에 안맞음 (\"%c\" 속성 예상값은 \"=\")"
#: fe-auth-scram.c:365
#, c-format
msgid "could not generate nonce"
msgstr "암호화 토큰(nonce)을 만들 수 없음"
#: fe-auth-scram.c:381
#, c-format
msgid "could not encode nonce"
msgstr "암호화 토큰(nonce)을 인코딩할 수 없음"
#: fe-auth-scram.c:569
#, c-format
msgid "could not calculate client proof: %s"
msgstr "클라이언트 프루프(proof)를 계산할 수 없음: %s"
#: fe-auth-scram.c:584
#, c-format
msgid "could not encode client proof"
msgstr "클라이언트 프루프(proof)를 인코딩할 수 없음"
#: fe-auth-scram.c:636
#, c-format
msgid "invalid SCRAM response (nonce mismatch)"
msgstr "잘못된 SCRAM 응답 (토큰 불일치)"
#: fe-auth-scram.c:666
#, c-format
msgid "malformed SCRAM message (invalid salt)"
msgstr "형식에 맞지 않은 SCRAM 메시지 (잘못된 소금 salt)"
#: fe-auth-scram.c:679
#, c-format
msgid "malformed SCRAM message (invalid iteration count)"
msgstr "형식에 맞지 않은 SCRAM 메시지 (나열 숫자가 이상함)"
#: fe-auth-scram.c:684
#, c-format
msgid "malformed SCRAM message (garbage at end of server-first-message)"
msgstr ""
"형식에 맞지 않은 SCRAM 메시지 (서버 첫 메시지 끝에 쓸모 없는 값이 있음)"
#: fe-auth-scram.c:718
#, c-format
msgid "error received from server in SCRAM exchange: %s"
msgstr "SCRAM 교환작업에서 서버로부터 데이터를 받지 못했음: %s"
#: fe-auth-scram.c:733
#, c-format
msgid "malformed SCRAM message (garbage at end of server-final-message)"
msgstr ""
"형식에 맞지 않은 SCRAM 메시지 (서버 끝 메시지 뒤에 쓸모 없는 값이 있음)"
#: fe-auth-scram.c:750
#, c-format
msgid "malformed SCRAM message (invalid server signature)"
msgstr "형식에 맞지 않은 SCRAM 메시지 (서버 서명이 이상함)"
#: fe-auth-scram.c:940
msgid "could not generate random salt"
msgstr "무작위 솔트 생성 실패"
#: fe-auth.c:80
#, c-format
msgid "out of memory allocating GSSAPI buffer (%d)"
msgstr "GSSAPI 버퍼(%d)에 할당할 메모리 부족"
#: fe-auth.c:146
msgid "GSSAPI continuation error"
msgstr "GSSAPI 연속 오류"
#: fe-auth.c:176 fe-auth.c:410 fe-gssapi-common.c:97 fe-secure-common.c:99
#: fe-secure-common.c:173
#, c-format
msgid "host name must be specified"
msgstr "호스트 이름을 지정해야 함"
#: fe-auth.c:182
#, c-format
msgid "duplicate GSS authentication request"
msgstr "중복된 GSS 인증 요청"
#: fe-auth.c:246
#, c-format
msgid "out of memory allocating SSPI buffer (%d)"
msgstr "SSPI 버퍼(%d)에 할당할 메모리 부족"
#: fe-auth.c:297
msgid "SSPI continuation error"
msgstr "SSPI 연속 오류"
#: fe-auth.c:372
#, c-format
msgid "duplicate SSPI authentication request"
msgstr "중복된 SSPI 인증 요청"
#: fe-auth.c:397
msgid "could not acquire SSPI credentials"
msgstr "SSPI 자격 증명을 가져올 수 없음"
#: fe-auth.c:449
#, c-format
msgid "channel binding required, but SSL not in use"
msgstr "채널 바인딩이 필요한데, SSL 기능이 꺼져있음"
#: fe-auth.c:455
#, c-format
msgid "duplicate SASL authentication request"
msgstr "중복된 SASL 인증 요청"
#: fe-auth.c:513
#, c-format
msgid "channel binding is required, but client does not support it"
msgstr "채널 바인딩이 필요한데, 클라이언트에서 지원하지 않음"
#: fe-auth.c:529
#, c-format
msgid ""
"server offered SCRAM-SHA-256-PLUS authentication over a non-SSL connection"
msgstr "서버는 non-SSL 접속으로 SCRAM-SHA-256-PLUS 인증을 제공함"
#: fe-auth.c:551
#, c-format
msgid "none of the server's SASL authentication mechanisms are supported"
msgstr "SASL 인증 메커니즘을 지원하는 서버가 없습니다."
#: fe-auth.c:571
#, c-format
msgid ""
"authentication method requirement \"%s\" failed: server requested %s "
"authentication"
msgstr "\"%s\" 인증 방법 요건이 실패함: 서버는 %s 인증을 요청했음"
#: fe-auth.c:580
#, c-format
msgid ""
"channel binding is required, but server did not offer an authentication "
"method that supports channel binding"
msgstr ""
"채널 바인딩 기능을 사용하도록 지정했지만, 서버가 이 기능을 지원하지 않음"
#: fe-auth.c:716
#, c-format
msgid "out of memory allocating SASL buffer (%d)"
msgstr "SASL 버퍼(%d)에 할당할 메모리 부족"
#: fe-auth.c:758
#, c-format
msgid ""
"AuthenticationSASLFinal received from server, but SASL authentication was "
"not completed"
msgstr ""
"서버에서 AuthenticationSASLFinal 응답을 받았지만, SASL 인증이 끝나지 않았음"
#: fe-auth.c:768
#, c-format
msgid "no client response found after SASL exchange success"
msgstr "SASL 교환 성공 후 클라이언트 반응 없음"
#: fe-auth.c:836 fe-auth.c:843 fe-auth.c:1476 fe-auth.c:1487
#, c-format
msgid "could not encrypt password: %s"
msgstr "비밀번호를 암호화 할 수 없음: %s"
#: fe-auth.c:873
msgid "server requested a cleartext password"
msgstr "서버가 평문 비밀번호를 요청했음"
#: fe-auth.c:875
msgid "server requested a hashed password"
msgstr "서버가 해시된 비밀번호를 요청했음"
#: fe-auth.c:878
msgid "server requested GSSAPI authentication"
msgstr "서버가 GSSAPI 인증을 요청했음"
#: fe-auth.c:880
msgid "server requested SSPI authentication"
msgstr "서버가 SSPI 인증을 요청했음"
#: fe-auth.c:884
msgid "server requested SASL authentication"
msgstr "서버가 SASL 인증을 요청했음"
#: fe-auth.c:887
msgid "server requested an unknown authentication type"
msgstr "서버가 알 수 없는 인증 형식을 요청했음"
#: fe-auth.c:920
#, c-format
msgid "server did not request an SSL certificate"
msgstr "서버가 SSL 인증서를 요청하지 않았음"
#: fe-auth.c:925
#, c-format
msgid "server accepted connection without a valid SSL certificate"
msgstr "서버가 SSL 인증서 유효성 검사 없이 접속을 허용했음"
#: fe-auth.c:979
msgid "server did not complete authentication"
msgstr "서버가 인증 절차를 완료하지 못했음"
#: fe-auth.c:1013
#, c-format
msgid "authentication method requirement \"%s\" failed: %s"
msgstr "\"%s\" 인증 방법 요구 사항 실패: %s"
#: fe-auth.c:1036
#, c-format
msgid ""
"channel binding required, but server authenticated client without channel "
"binding"
msgstr "채널 바인딩이 필요한데, 서버가 체널 바인딩 없이 클라이언트를 인증함"
#: fe-auth.c:1041
#, c-format
msgid ""
"channel binding required but not supported by server's authentication request"
msgstr "채널 바인딩이 필요한데, 서버 인증 요청에서 지원하지 않음"
#: fe-auth.c:1081
#, c-format
msgid "Kerberos 4 authentication not supported"
msgstr "Kerberos 4 인증 방법이 지원되지 않음"
#: fe-auth.c:1085
#, c-format
msgid "Kerberos 5 authentication not supported"
msgstr "Kerberos 5 인증 방법이 지원되지 않음"
#: fe-auth.c:1155
#, c-format
msgid "GSSAPI authentication not supported"
msgstr "GSSAPI 인증은 지원되지 않음"
#: fe-auth.c:1186
#, c-format
msgid "SSPI authentication not supported"
msgstr "SSPI 인증은 지원되지 않음"
#: fe-auth.c:1193
#, c-format
msgid "Crypt authentication not supported"
msgstr "crypt 인증은 지원되지 않음"
#: fe-auth.c:1267
#, c-format
msgid "authentication method %u not supported"
msgstr "%u 인증 방법이 지원되지 않음"
#: fe-auth.c:1307
#, c-format
msgid "user name lookup failure: error code %lu"
msgstr "사용자 이름 찾기 실패: 오류 코드 %lu"
#: fe-auth.c:1315
#, c-format
msgid "could not look up local user ID %ld: %m"
msgstr "로컬 사용자 ID %ld 해당하는 사용자를 찾을 수 없음: %m"
#: fe-auth.c:1320
#, c-format
msgid "local user with ID %ld does not exist"
msgstr "ID %ld 로컬 사용자 없음"
#: fe-auth.c:1439
#, c-format
msgid "unexpected shape of result set returned for SHOW"
msgstr "SHOW 명령의 결과 자료가 비정상임"
#: fe-auth.c:1447
#, c-format
msgid "\"password_encryption\" value too long"
msgstr "\"password_encryption\" 설정값이 너무 긺"
#: fe-auth.c:1497
#, c-format
msgid "unrecognized password encryption algorithm \"%s\""
msgstr "알 수 없는 비밀번호 암호화 알고리즘: \"%s\""
#: fe-cancel.c:79
#, c-format
msgid "connection pointer is NULL"
msgstr "연결 포인터가 NULL"
#: fe-cancel.c:85 fe-misc.c:613
#, c-format
msgid "connection not open"
msgstr "연결 열기 실패"
#: fe-cancel.c:92
#, c-format
msgid "no cancellation key received"
msgstr "중지 작업 키를 받지 못했음"
#: fe-cancel.c:212
#, c-format
msgid "cancel request is already being sent on this connection"
msgstr "취소 요청을 이미 해당 연결에 보냈음"
#: fe-cancel.c:282
#, c-format
msgid "unexpected response from server"
msgstr "서버로부터 기대되지 않는 응답"
#: fe-connect.c:1308
#, c-format
msgid "could not match %d host names to %d hostaddr values"
msgstr "호스트 이름은 %d개인데, 호스트 주소는 %d개임"
#: fe-connect.c:1388
#, c-format
msgid "could not match %d port numbers to %d hosts"
msgstr "포트 번호는 %d개인데, 호스트는 %d개입니다."
#: fe-connect.c:1516
#, c-format
msgid ""
"negative require_auth method \"%s\" cannot be mixed with non-negative methods"
msgstr ""
"\"%s\" negative require_auth 방법은 non-negative 방법과 함께 쓸 수 없음"
#: fe-connect.c:1529
#, c-format
msgid "require_auth method \"%s\" cannot be mixed with negative methods"
msgstr "\"%s\" require_auth 방법은 negative 방법과 함께 쓸 수 없음"
#: fe-connect.c:1605 fe-connect.c:1734 fe-connect.c:1776 fe-connect.c:1819
#: fe-connect.c:1922 fe-connect.c:1968 fe-connect.c:2008 fe-connect.c:2075
#: fe-connect.c:8248
#, c-format
msgid "invalid %s value: \"%s\""
msgstr "잘못된 %s 값: \"%s\""
#: fe-connect.c:1647
#, c-format
msgid "internal error: no space in allowed_sasl_mechs"
msgstr "내부 오류: allowed_sasl_mechs 안에 여유 공간 없음"
#: fe-connect.c:1686
#, c-format
msgid "require_auth method \"%s\" is specified more than once"
msgstr "\"%s\" require_auth 방법을 한 번 이상 지정했음"
#: fe-connect.c:1757 fe-connect.c:1796 fe-connect.c:1828 fe-connect.c:1930
#, c-format
msgid "%s value \"%s\" invalid when SSL support is not compiled in"
msgstr ""
"SSL 연결 기능을 지원하지 않고 컴파일 된 경우는 %s 값으로 \"%s\" 값은 타당치 "
"않습니다."
#: fe-connect.c:1848
#, c-format
msgid ""
"weak sslmode \"%s\" may not be used with sslnegotiation=direct (use \"require"
"\", \"verify-ca\", or \"verify-full\")"
msgstr ""
"\"%s\" 엄격하지 않은 sslmode 설정일 때는 sslnegotiation=direct 설정을 할 수 "
"없음 (\"require\", \"verify-ca\", 또는 \"verify-full\" 설정을 사용하세요)"
#: fe-connect.c:1870
#, c-format
msgid ""
"weak sslmode \"%s\" may not be used with sslrootcert=system (use \"verify-"
"full\")"
msgstr ""
"\"%s\" 엄격하지 않은 sslmode 설정일 때는 sslrootcert=system 설정을 할 수 없"
"음 (\"verify-full\" 설정을 사용하세요)"
#: fe-connect.c:1883 fe-connect.c:1891
#, c-format
msgid "invalid \"%s\" value: \"%s\""
msgstr "잘못된 \"%s\" 값: \"%s\""
#: fe-connect.c:1908
#, c-format
msgid "invalid SSL protocol version range"
msgstr "잘못된 SSL 프로토콜 버전 범위"
#: fe-connect.c:1945
#, c-format
msgid "%s value \"%s\" is not supported (check OpenSSL version)"
msgstr "%s 설정 \"%s\" 값은 지원하지 않음 (OpenSSL 버전을 확인하세요)"
#: fe-connect.c:1975
#, c-format
msgid "gssencmode value \"%s\" invalid when GSSAPI support is not compiled in"
msgstr ""
"GSSAPI 접속을 지원하지 않는 서버에서는 gssencmode 값(\"%s\")이 적당하지 않음"
#: fe-connect.c:2029
#, c-format
msgid "invalid SCRAM client key"
msgstr "잘못된 SCRAM 클라이언트 키"
#: fe-connect.c:2034
#, c-format
msgid "invalid SCRAM client key length: %d"
msgstr "잘못된 SCRAM 클라이언트 키 길이: %d"
#: fe-connect.c:2052
#, c-format
msgid "invalid SCRAM server key"
msgstr "잘못된 SCRAM 서버 키"
#: fe-connect.c:2057
#, c-format
msgid "invalid SCRAM server key length: %d"
msgstr "잘못된 SCRAM 서버 키 길이: %d"
#: fe-connect.c:2144
#, c-format
msgid "\"%s\" is greater than \"%s\""
msgstr "\"%s\" 값은 \"%s\" 보다 큽니다"
#: fe-connect.c:2356
#, c-format
msgid "could not set socket to TCP no delay mode: %s"
msgstr "소켓을 TCP에 no delay 모드로 지정할 수 없음: %s"
#: fe-connect.c:2415
#, c-format
msgid "connection to server on socket \"%s\" failed: "
msgstr "\"%s\" 소켓으로 서버 접속 할 수 없음: "
#: fe-connect.c:2441
#, c-format
msgid "connection to server at \"%s\" (%s), port %s failed: "
msgstr "\"%s\" (%s), %s 포트로 서버 접속 할 수 없음: "
#: fe-connect.c:2446
#, c-format
msgid "connection to server at \"%s\", port %s failed: "
msgstr "\"%s\" 포트 %s 서버에 접속 할 수 없음: "
#: fe-connect.c:2469
#, c-format
msgid ""
"\tIs the server running locally and accepting connections on that socket?"
msgstr ""
"\t로컬 연결을 시도 중이고, 유닉스 도메인 소켓 접속을 허용하는지 확인하세요."
#: fe-connect.c:2471
#, c-format
msgid "\tIs the server running on that host and accepting TCP/IP connections?"
msgstr ""
"\t해당 호스트에 서버가 실행 중이고, TCP/IP 접속을 허용하는지 확인하세요."
#: fe-connect.c:2517 fe-connect.c:2551 fe-connect.c:2586 fe-connect.c:2684
#: fe-connect.c:3410
#, c-format
msgid "%s(%s) failed: %s"
msgstr "%s(%s) 실패: %s"
#: fe-connect.c:2650
#, c-format
msgid "%s(%s) failed: error code %d"
msgstr "%s(%s) 실패: 오류 코드 %d"
#: fe-connect.c:2962
#, c-format
msgid "invalid connection state, probably indicative of memory corruption"
msgstr "잘못된 연결 상태, 메모리 손상일 가능성이 큼"
#: fe-connect.c:3045
#, c-format
msgid "invalid port number: \"%s\""
msgstr "잘못된 포트 번호: \"%s\""
#: fe-connect.c:3059
#, c-format
msgid "could not translate host name \"%s\" to address: %s"
msgstr "\"%s\" 호스트 이름 IP 주소로 바꿀 수 없음: %s"
#: fe-connect.c:3071
#, c-format
msgid "could not parse network address \"%s\": %s"
msgstr "\"%s\" 네트워크 주소를 해석할 수 없음: %s"
#: fe-connect.c:3082
#, c-format
msgid "Unix-domain socket path \"%s\" is too long (maximum %d bytes)"
msgstr "\"%s\" 유닉스 도메인 소켓 경로가 너무 깁니다 (최대 %d 바이트)"
#: fe-connect.c:3096
#, c-format
msgid "could not translate Unix-domain socket path \"%s\" to address: %s"
msgstr "\"%s\" 유닉스 도메인 소켓 경로를 주소로 바꿀 수 없음: %s"
#: fe-connect.c:3262 fe-connect.c:4709
#, c-format
msgid "GSSAPI encryption required but it is not supported over a local socket"
msgstr "GSSAPI 암호화가 필요하지만 로컬 소켓을 사용할 때는 지원하지 않음"
#: fe-connect.c:3270 fe-connect.c:4838
#, c-format
msgid "GSSAPI encryption required but no credential cache"
msgstr "GSSAPI 암호화가 필요한데 자격 증명 캐시가 없음"
#: fe-connect.c:3338
#, c-format
msgid "could not create socket: %s"
msgstr "소켓을 만들 수 없음: %s"
#: fe-connect.c:3369
#, c-format
msgid "could not set socket to nonblocking mode: %s"
msgstr "소켓을 nonblocking 모드로 지정할 수 없음: %s"
#: fe-connect.c:3380
#, c-format
msgid "could not set socket to close-on-exec mode: %s"
msgstr "소켓을 close-on-exec 모드로 지정할 수 없음: %s"
#: fe-connect.c:3537
#, c-format
msgid "could not get socket error status: %s"
msgstr "소켓 오류 상태를 구할 수 없음: %s"
#: fe-connect.c:3564
#, c-format
msgid "could not get client address from socket: %s"
msgstr "소켓에서 클라이언트 주소를 구할 수 없음: %s"
#: fe-connect.c:3590
#, c-format
msgid "requirepeer parameter is not supported on this platform"
msgstr "requirepeer 매개변수는 이 운영체제에서 지원하지 않음"
#: fe-connect.c:3592
#, c-format
msgid "could not get peer credentials: %s"
msgstr "신뢰성 피어를 얻을 수 없습니다: %s"
#: fe-connect.c:3605
#, c-format
msgid "requirepeer specifies \"%s\", but actual peer user name is \"%s\""
msgstr ""
"\"%s\" 이름으로 requirepeer를 지정했지만, 실재 사용자 이름은 \"%s\" 입니다."
#: fe-connect.c:3643
#, c-format
msgid "could not send GSSAPI negotiation packet: %s"
msgstr "GSSAPI 교섭 패킷을 보낼 수 없음: %s"
#: fe-connect.c:3682
#, c-format
msgid "could not send SSL negotiation packet: %s"
msgstr "SSL 교섭 패킷을 보낼 수 없음: %s"
#: fe-connect.c:3708
#, c-format
msgid "could not send cancel packet: %s"
msgstr "취소 패킷을 보낼 수 없음: %s"
#: fe-connect.c:3738
#, c-format
msgid "could not send startup packet: %s"
msgstr "시작 패킷을 보낼 수 없음: %s"
#: fe-connect.c:3811
msgid "server does not support SSL, but SSL was required"
msgstr "서버가 SSL 기능을 지원하지 않는데, SSL 기능을 요구했음"
#: fe-connect.c:3821
#, c-format
msgid "server sent an error response during SSL exchange"
msgstr "SSL 교환 중에 서버가 오류 응답을 보냈음"
#: fe-connect.c:3826
#, c-format
msgid "received invalid response to SSL negotiation: %c"
msgstr "SSL 교섭에 대한 잘못된 응답을 감지했음: %c"
#: fe-connect.c:3846
#, c-format
msgid "received unencrypted data after SSL response"
msgstr "SSL 응답 후에 비암호화 데이터를 받았음"
#: fe-connect.c:3909
#, c-format
msgid "server sent an error response during GSS encryption exchange"
msgstr "GSS 암호화 교환 중에 서버가 오류 응답을 보냈음"
#: fe-connect.c:3927
msgid "server doesn't support GSSAPI encryption, but it was required"
msgstr "서버가 GSSAPI 암호화 기능을 지원하지 않는데, 이것이 필요함"
#: fe-connect.c:3931
#, c-format
msgid "received invalid response to GSSAPI negotiation: %c"
msgstr "GSSAPI 교섭에 대한 잘못된 응답을 감지했음: %c"
#: fe-connect.c:3953
#, c-format
msgid "received unencrypted data after GSSAPI encryption response"
msgstr "GSSAPI 암호화 응답 후 비암호화 데이터 받았음"
#: fe-connect.c:4014
#, c-format
msgid "expected authentication request from server, but received %c"
msgstr "서버가 인증을 요구했지만, %c 받았음"
#: fe-connect.c:4042 fe-connect.c:4174
#, c-format
msgid "received invalid authentication request"
msgstr "잘못된 인증 요청을 받았음"
#: fe-connect.c:4048
#, c-format
msgid "received invalid protocol negotiation message"
msgstr "잘못된 프로토콜 교섭 메시지를 받았음"
#: fe-connect.c:4067 fe-connect.c:4121
#, c-format
msgid "received invalid error message"
msgstr "잘못된 오류 메시지를 받았음"
#: fe-connect.c:4151
#, c-format
msgid "received duplicate protocol negotiation message"
msgstr "프로토콜 교섭 메시지를 중복해서 받았음"
#: fe-connect.c:4253
#, c-format
msgid "internal error: async authentication has no handler"
msgstr "내부 오류: async 인증용 핸들러가 없음"
#: fe-connect.c:4278
#, c-format
msgid "internal error: async cleanup did not release polling socket"
msgstr "내부 오류: async cleanup 작업이 polling 소켓을 반환하지 않았음"
#: fe-connect.c:4301
#, c-format
msgid "internal error: async authentication did not set a socket for polling"
msgstr "내부 오류: async 인증이 polling을 위해 소켓 지정되지 않았음"
#: fe-connect.c:4334
#, c-format
msgid "unexpected message from server during startup"
msgstr "시작하는 동안 서버로부터 기대되지 않는 메시지"
#: fe-connect.c:4425
#, c-format
msgid "session is read-only"
msgstr "세션이 읽기 전용임"
#: fe-connect.c:4427
#, c-format
msgid "session is not read-only"
msgstr "세션이 읽기 전용이 아님"
#: fe-connect.c:4480
#, c-format
msgid "server is in hot standby mode"
msgstr "서버가 hot standby 모드 상태임"
#: fe-connect.c:4482
#, c-format
msgid "server is not in hot standby mode"
msgstr "서버가 hot standby 모드 상태가 아님"
#: fe-connect.c:4607 fe-connect.c:4657
#, c-format
msgid "\"%s\" failed"
msgstr "\"%s\" 실패"
#: fe-connect.c:4671
#, c-format
msgid "invalid connection state %d, probably indicative of memory corruption"
msgstr "잘못된 연결 상태 %d, 메모리 손상일 가능성이 큼"
#: fe-connect.c:5508
#, c-format
msgid "invalid LDAP URL \"%s\": scheme must be ldap://"
msgstr "잘못된 LDAP URL \"%s\": 스키마는 ldap:// 여야함"
#: fe-connect.c:5523
#, c-format
msgid "invalid LDAP URL \"%s\": missing distinguished name"
msgstr "잘못된 LDAP URL \"%s\": 식별자 이름이 빠졌음"
#: fe-connect.c:5535 fe-connect.c:5593
#, c-format
msgid "invalid LDAP URL \"%s\": must have exactly one attribute"
msgstr "잘못된 LDAP URL \"%s\": 단 하나의 속성만 가져야함"
#: fe-connect.c:5547 fe-connect.c:5609
#, c-format
msgid "invalid LDAP URL \"%s\": must have search scope (base/one/sub)"
msgstr "잘못된 LDAP URL \"%s\": 검색범위(base/one/sub)를 지정해야함"
#: fe-connect.c:5559
#, c-format
msgid "invalid LDAP URL \"%s\": no filter"
msgstr "잘못된 LDAP URL \"%s\": 필터 없음"
#: fe-connect.c:5581
#, c-format
msgid "invalid LDAP URL \"%s\": invalid port number"
msgstr "잘못된 LDAP URL \"%s\": 포트번호가 잘못됨"
#: fe-connect.c:5618
#, c-format
msgid "could not create LDAP structure"
msgstr "LDAP 구조를 만들 수 없음"
#: fe-connect.c:5693
#, c-format
msgid "lookup on LDAP server failed: %s"
msgstr "LDAP 서버를 찾을 수 없음: %s"
#: fe-connect.c:5703
#, c-format
msgid "more than one entry found on LDAP lookup"
msgstr "LDAP 검색에서 하나 이상의 엔트리가 발견되었음"
#: fe-connect.c:5705 fe-connect.c:5716
#, c-format
msgid "no entry found on LDAP lookup"
msgstr "LDAP 검색에서 해당 항목 없음"
#: fe-connect.c:5726 fe-connect.c:5738
#, c-format
msgid "attribute has no values on LDAP lookup"
msgstr "LDAP 검색에서 속성의 값이 없음"
#: fe-connect.c:5789 fe-connect.c:5808 fe-connect.c:6332
#, c-format
msgid "missing \"=\" after \"%s\" in connection info string"
msgstr "연결문자열에서 \"%s\" 다음에 \"=\" 문자 빠졌음"
#: fe-connect.c:5879 fe-connect.c:6515 fe-connect.c:7345
#, c-format
msgid "invalid connection option \"%s\""
msgstr "잘못된 연결 옵션 \"%s\""
#: fe-connect.c:5894 fe-connect.c:6380
#, c-format
msgid "unterminated quoted string in connection info string"
msgstr "연결문자열에서 완성되지 못한 따옴표문자열이 있음"
#: fe-connect.c:5974
#, c-format
msgid "definition of service \"%s\" not found"
msgstr "\"%s\" 서비스 정의를 찾을 수 없음"
#: fe-connect.c:6000
#, c-format
msgid "service file \"%s\" not found"
msgstr "\"%s\" 서비스 파일을 찾을 수 없음"
#: fe-connect.c:6013
#, c-format
msgid "line %d too long in service file \"%s\""
msgstr "%d번째 줄이 \"%s\" 서비스 파일에서 너무 깁니다"
#: fe-connect.c:6084 fe-connect.c:6127
#, c-format
msgid "syntax error in service file \"%s\", line %d"
msgstr "\"%s\" 서비스 파일의 %d번째 줄에 구문 오류 있음"
#: fe-connect.c:6095
#, c-format
msgid ""
"nested service specifications not supported in service file \"%s\", line %d"
msgstr "\"%s\" 서비스 파일의 %d번째 줄에 설정을 지원하지 않음"
#: fe-connect.c:6834
#, c-format
msgid "invalid URI propagated to internal parser routine: \"%s\""
msgstr "URI 구문 분석을 할 수 없음: \"%s\""
#: fe-connect.c:6911
#, c-format
msgid ""
"end of string reached when looking for matching \"]\" in IPv6 host address "
"in URI: \"%s\""
msgstr ""
"URI의 IPv6 호스트 주소에서 \"]\" 매칭 검색을 실패했습니다, 해당 URI: \"%s\""
#: fe-connect.c:6918
#, c-format
msgid "IPv6 host address may not be empty in URI: \"%s\""
msgstr "IPv6 호스트 주소가 없습니다, 해당 URI: \"%s\""
#: fe-connect.c:6933
#, c-format
msgid ""
"unexpected character \"%c\" at position %d in URI (expected \":\" or \"/\"): "
"\"%s\""
msgstr ""
"잘못된 \"%c\" 문자가 URI 문자열 가운데 %d 번째 있습니다(\":\" 또는 \"/\" 문자"
"가 있어야 함): \"%s\""
#: fe-connect.c:7062
#, c-format
msgid "extra key/value separator \"=\" in URI query parameter: \"%s\""
msgstr ""
"키/밸류 구분자 \"=\" 문자가 필요 이상 더 있음, 해당 URI 쿼리 매개변수: \"%s\""
#: fe-connect.c:7082
#, c-format
msgid "missing key/value separator \"=\" in URI query parameter: \"%s\""
msgstr "키/밸류 구분자 \"=\" 문자가 필요함, 해당 URI 쿼리 매개변수: \"%s\""
#: fe-connect.c:7134
#, c-format
msgid "invalid URI query parameter: \"%s\""
msgstr "잘못된 URL 쿼리 매개변수값: \"%s\""
#: fe-connect.c:7218
#, c-format
msgid "invalid percent-encoded token: \"%s\""
msgstr "잘못된 퍼센트 인코드 토큰: \"%s\""
#: fe-connect.c:7228
#, c-format
msgid "forbidden value %%00 in percent-encoded value: \"%s\""
msgstr "퍼센트 인코드 값에 %%00 숨김 값이 있음: \"%s\""
#: fe-connect.c:7250
#, c-format
msgid ""
"unexpected spaces found in \"%s\", use percent-encoded spaces (%%20) instead"
msgstr ""
"\"%s\" 안에 예상치 못한 공백 발견, 퍼센트 기호를 사용한 공백(%%20)을 사용하세"
"요"
#: fe-connect.c:7626
msgid "connection pointer is NULL\n"
msgstr "연결 포인터가 NULL\n"
#: fe-connect.c:7634 fe-exec.c:713 fe-exec.c:975 fe-exec.c:3470
#: fe-protocol3.c:1005 fe-protocol3.c:1038
msgid "out of memory\n"
msgstr "메모리 부족\n"
#: fe-connect.c:7936
#, c-format
msgid "WARNING: password file \"%s\" is not a plain file\n"
msgstr "경고: \"%s\" 패스워드 파일이 plain 파일이 아님\n"
#: fe-connect.c:7946
#, c-format
msgid ""
"WARNING: password file \"%s\" has group or world access; permissions should "
"be u=rw (0600) or less\n"
msgstr ""
"경고: 패스워드 파일 \"%s\"에 그룹 또는 범용 액세스 권한이 있습니다. 권한은 "
"u=rw(0600) 이하여야 합니다.\n"
#: fe-connect.c:8050
#, c-format
msgid "password retrieved from file \"%s\""
msgstr "\"%s\" 파일에서 암호를 찾을 수 없음"
#: fe-connect.c:8216
#, c-format
msgid "invalid integer value \"%s\" for connection option \"%s\""
msgstr "잘못된 정수값: \"%s\", 해당 연결 옵션: \"%s\""
#: fe-exec.c:469 fe-exec.c:3544
#, c-format
msgid "row number %d is out of range 0..%d"
msgstr "%d 번째 행(row)은 0..%d 범위를 벗어났음"
#: fe-exec.c:531 fe-protocol3.c:2126
#, c-format
msgid "%s"
msgstr "%s"
#: fe-exec.c:834
#, c-format
msgid "write to server failed"
msgstr "서버에 쓰기 실패"
#: fe-exec.c:874
#, c-format
msgid "no error text available"
msgstr "보여줄 오류 메시지가 없음"
#: fe-exec.c:963
msgid "NOTICE"
msgstr "알림"
#: fe-exec.c:1021
msgid "PGresult cannot support more than INT_MAX tuples"
msgstr "PGresult 함수는 INT_MAX 튜플보다 많은 경우를 지원하지 않음"
#: fe-exec.c:1033
msgid "size_t overflow"
msgstr "size_t 초과"
#: fe-exec.c:1449 fe-exec.c:1518 fe-exec.c:1564
#, c-format
msgid "command string is a null pointer"
msgstr "명령 문자열이 null 포인터"
#: fe-exec.c:1455 fe-exec.c:3014
#, c-format
msgid "%s not allowed in pipeline mode"
msgstr "파이프라인 모드에서는 %s 사용할 수 없음"
#: fe-exec.c:1523 fe-exec.c:1569 fe-exec.c:1663
#, c-format
msgid "number of parameters must be between 0 and %d"
msgstr "매개변수값으로 숫자는 0에서 %d까지만 쓸 수 있음"
#: fe-exec.c:1559 fe-exec.c:1658
#, c-format
msgid "statement name is a null pointer"
msgstr "실행 구문 이름이 null 포인트(값이 없음)입니다"
#: fe-exec.c:1700 fe-exec.c:3390
#, c-format
msgid "no connection to the server"
msgstr "서버에 대한 연결이 없음"
#: fe-exec.c:1708 fe-exec.c:3398
#, c-format
msgid "another command is already in progress"
msgstr "처리 중에 이미 다른 명령이 존재함"
#: fe-exec.c:1738
#, c-format
msgid "cannot queue commands during COPY"
msgstr "COPY 작업 중 명령들을 큐에 담을 수 없음"
#: fe-exec.c:1857
#, c-format
msgid "length must be given for binary parameter"
msgstr "바이너리 자료 매개 변수를 사용할 때는 그 길이를 지정해야 함"
#: fe-exec.c:2216
#, c-format
msgid "unexpected asyncStatus: %d"
msgstr "기대되지 않은 asyncStatus: %d"
#: fe-exec.c:2372
#, c-format
msgid ""
"synchronous command execution functions are not allowed in pipeline mode"
msgstr "파이프라인 모드에서는 동기식 명령 실행 함수는 사용할 수 없음"
#: fe-exec.c:2389
msgid "COPY terminated by new PQexec"
msgstr "새 PQexec 호출로 COPY 작업이 중지 되었습니다"
#: fe-exec.c:2405
#, c-format
msgid "PQexec not allowed during COPY BOTH"
msgstr "COPY BOTH 작업 중에는 PQexec 사용할 수 없음"
#: fe-exec.c:2641
#, c-format
msgid "unrecognized message type \"%c\""
msgstr "알 수 없는 메시지 형 \"%c\""
#: fe-exec.c:2713 fe-exec.c:2767 fe-exec.c:2835 fe-protocol3.c:2057
#, c-format
msgid "no COPY in progress"
msgstr "처리 가운데 COPY가 없음"
#: fe-exec.c:3021
#, c-format
msgid "connection in wrong state"
msgstr "잘못된 상태의 연결"
#: fe-exec.c:3064
#, c-format
msgid "cannot enter pipeline mode, connection not idle"
msgstr "파이프라인 모드로 바꿀 수 없음, 연결이 idle 상태가 아님"
#: fe-exec.c:3100 fe-exec.c:3121
#, c-format
msgid "cannot exit pipeline mode with uncollected results"
msgstr "수집할 수 없는 결과로 파이프라인 모드를 종료할 수 없음"
#: fe-exec.c:3104
#, c-format
msgid "cannot exit pipeline mode while busy"
msgstr "바빠서 파이프라인 모드를 종료할 수 없음"
#: fe-exec.c:3115
#, c-format
msgid "cannot exit pipeline mode while in COPY"
msgstr "COPY 하고 있어 파이프라인 모드를 종료할 수 없음"
#: fe-exec.c:3314
#, c-format
msgid "cannot send pipeline when not in pipeline mode"
msgstr "파이프라인 모드 상태가 아닐 때는 파이프라인을 보낼 수 없음"
#: fe-exec.c:3433
msgid "invalid ExecStatusType code"
msgstr "잘못된 ExecStatusType 코드"
#: fe-exec.c:3460
msgid "PGresult is not an error result\n"
msgstr "PGresult가 오류 결과가 아님\n"
#: fe-exec.c:3528 fe-exec.c:3551
#, c-format
msgid "column number %d is out of range 0..%d"
msgstr "%d 번째 열은 0..%d 범위를 벗어났음"
#: fe-exec.c:3566
#, c-format
msgid "parameter number %d is out of range 0..%d"
msgstr "%d개의 매개 변수는 0..%d 범위를 벗어났음"
#: fe-exec.c:3877
#, c-format
msgid "could not interpret result from server: %s"
msgstr "서버로부터 결과처리를 중지 시킬 수 없음: %s"
#: fe-exec.c:4152 fe-exec.c:4266
#, c-format
msgid "incomplete multibyte character"
msgstr "완성되지 않은 멀티바이트 문자"
#: fe-exec.c:4154 fe-exec.c:4285
#, c-format
msgid "invalid multibyte character"
msgstr "잘못된 멀티바이트 문자"
#: fe-gssapi-common.c:122
msgid "GSSAPI name import error"
msgstr "GSSAPI 이름 가져오기 오류"
#: fe-lobj.c:144 fe-lobj.c:207 fe-lobj.c:397 fe-lobj.c:487 fe-lobj.c:560
#: fe-lobj.c:956 fe-lobj.c:963 fe-lobj.c:970 fe-lobj.c:977 fe-lobj.c:984
#: fe-lobj.c:991 fe-lobj.c:998 fe-lobj.c:1005
#, c-format
msgid "cannot determine OID of function %s"
msgstr "%s 함수의 OID 조사를 할 수 없음"
#: fe-lobj.c:160
#, c-format
msgid "argument of lo_truncate exceeds integer range"
msgstr "lo_truncate 함수의 인자값이 정수 범위가 아님"
#: fe-lobj.c:262
#, c-format
msgid "argument of lo_read exceeds integer range"
msgstr "lo_read 함수의 인자값이 정수 범위가 아님"
#: fe-lobj.c:313
#, c-format
msgid "argument of lo_write exceeds integer range"
msgstr "lo_write 함수의 인자값이 정수 범위가 아님"
#: fe-lobj.c:669 fe-lobj.c:780
#, c-format
msgid "could not open file \"%s\": %s"
msgstr "\"%s\" 파일을 열 수 없음: %s"
#: fe-lobj.c:725
#, c-format
msgid "could not read from file \"%s\": %s"
msgstr "\"%s\" 파일을 읽을 수 없음: %s"
#: fe-lobj.c:801 fe-lobj.c:824
#, c-format
msgid "could not write to file \"%s\": %s"
msgstr "\"%s\" 파일을 쓸 수 없음: %s"
#: fe-lobj.c:908
#, c-format
msgid "query to initialize large object functions did not return data"
msgstr "large object function을 초기화 하는 쿼리가 데이터를 리턴하지 않았음"
#: fe-misc.c:239
#, c-format
msgid "integer of size %lu not supported by pqGetInt"
msgstr "%lu 정수형 크기는 pqGetInt 함수에서 지원하지 않음"
#: fe-misc.c:272
#, c-format
msgid "integer of size %lu not supported by pqPutInt"
msgstr "%lu 정수형 크기는 pqPutInt 함수에서 지원하지 않음"
#: fe-misc.c:791 fe-secure-openssl.c:181 fe-secure-openssl.c:287
#: fe-secure.c:222 fe-secure.c:389
#, c-format
msgid ""
"server closed the connection unexpectedly\n"
"\tThis probably means the server terminated abnormally\n"
"\tbefore or while processing the request."
msgstr ""
"서버가 갑자기 연결을 닫았음.\n"
"\t이런 처리는 클라이언트의 요구를 처리하는 동안이나\n"
"\t처리하기 전에 서버가 갑자기 종료되었음을 의미함."
#: fe-misc.c:858
msgid "connection not open\n"
msgstr "연결 열기 실패\n"
#: fe-misc.c:1046
#, c-format
msgid "timeout expired"
msgstr "시간 초과"
#: fe-misc.c:1098
#, c-format
msgid "invalid socket"
msgstr "잘못된 소켓"
#: fe-misc.c:1121
#, c-format
msgid "%s() failed: %s"
msgstr "%s() 실패: %s"
#: fe-protocol3.c:189
#, c-format
msgid "message type 0x%02x arrived from server while idle"
msgstr "휴지(idle)동안 서버로 부터 0x%02x 형태 메시지를 받았음"
#: fe-protocol3.c:402
#, c-format
msgid ""
"server sent data (\"D\" message) without prior row description (\"T\" "
"message)"
msgstr ""
"서버에서 먼저 행(row) 설명(\"T\" 메시지) 없이 자료(\"D\" 메시지)를 보냈음"
#: fe-protocol3.c:444
#, c-format
msgid "unexpected response from server; first received character was \"%c\""
msgstr "서버로부터 예상치 못한 응답을 받았음; \"%c\" 문자를 첫문자로 받았음"
#: fe-protocol3.c:468
#, c-format
msgid "message contents do not agree with length in message type \"%c\""
msgstr "메시지 내용이 \"%c\" 메시지 형태의 길이를 허락하지 않음"
#: fe-protocol3.c:503
#, c-format
msgid "lost synchronization with server: got message type \"%c\", length %d"
msgstr "서버와의 동기화가 끊김: \"%c\" 형태 길이 %d 메시지 받음"
#: fe-protocol3.c:550 fe-protocol3.c:590
msgid "insufficient data in \"T\" message"
msgstr "\"T\" 메시지 안에 부족자 데이터"
#: fe-protocol3.c:661 fe-protocol3.c:867
msgid "out of memory for query result"
msgstr "쿼리 결과 처리를 위한 메모리 부족"
#: fe-protocol3.c:730
msgid "insufficient data in \"t\" message"
msgstr "\"t\" 메시지 안에 데이터가 충분하지 않음"
#: fe-protocol3.c:789 fe-protocol3.c:821 fe-protocol3.c:839
msgid "insufficient data in \"D\" message"
msgstr "\"D\" 메시지 안에 불충분한 데이터"
#: fe-protocol3.c:795
msgid "unexpected field count in \"D\" message"
msgstr "\"D\" 메시지 안에 예상치 못한 필드 수"
#: fe-protocol3.c:1051
msgid "no error message available\n"
msgstr "보여줄 오류 메시지가 없음\n"
#. translator: %s represents a digit string
#: fe-protocol3.c:1099 fe-protocol3.c:1118
#, c-format
msgid " at character %s"
msgstr " 위치: %s"
#: fe-protocol3.c:1131
#, c-format
msgid "DETAIL: %s\n"
msgstr "상세정보: %s\n"
#: fe-protocol3.c:1134
#, c-format
msgid "HINT: %s\n"
msgstr "힌트: %s\n"
#: fe-protocol3.c:1137
#, c-format
msgid "QUERY: %s\n"
msgstr "쿼리: %s\n"
#: fe-protocol3.c:1144
#, c-format
msgid "CONTEXT: %s\n"
msgstr "구문: %s\n"
#: fe-protocol3.c:1153
#, c-format
msgid "SCHEMA NAME: %s\n"
msgstr "스키마 이름: %s\n"
#: fe-protocol3.c:1157
#, c-format
msgid "TABLE NAME: %s\n"
msgstr "테이블 이름: %s\n"
#: fe-protocol3.c:1161
#, c-format
msgid "COLUMN NAME: %s\n"
msgstr "칼럼 이름: %s\n"
#: fe-protocol3.c:1165
#, c-format
msgid "DATATYPE NAME: %s\n"
msgstr "자료형 이름: %s\n"
#: fe-protocol3.c:1169
#, c-format
msgid "CONSTRAINT NAME: %s\n"
msgstr "제약조건 이름: %s\n"
#: fe-protocol3.c:1181
msgid "LOCATION: "
msgstr "위치: "
#: fe-protocol3.c:1183
#, c-format
msgid "%s, "
msgstr "%s, "
#: fe-protocol3.c:1185
#, c-format
msgid "%s:%s"
msgstr "%s:%s"
#: fe-protocol3.c:1380
#, c-format
msgid "LINE %d: "
msgstr "줄 %d: "
#: fe-protocol3.c:1442
#, c-format
msgid ""
"received invalid protocol negotiation message: server requested downgrade to "
"a higher-numbered version"
msgstr ""
"잘못된 프로토콜 교섭 메시지를 받았음: 서버에서 더 높은 번호의 버전으로 다운그"
"레이드를 요청했음"
#: fe-protocol3.c:1448
#, c-format
msgid ""
"received invalid protocol negotiation message: server requested downgrade to "
"pre-3.0 protocol version"
msgstr ""
"잘못된 프로토콜 교섭 메시지를 받았음: 서버가 3.0 이전 프로토콜 버전으로 다운"
"그레이드를 요청했습니다."
#: fe-protocol3.c:1455
#, c-format
msgid ""
"received invalid protocol negotiation message: server requested downgrade to "
"non-existent 3.1 protocol version"
msgstr ""
"잘못된 프로토콜 교섭 메시지를 받았음: 서버가 존재하지 않는 3.1 프로토콜 버전"
"으로 다운그레이드를 요청했습니다."
#: fe-protocol3.c:1461
#, c-format
msgid ""
"received invalid protocol negotiation message: server reported negative "
"number of unsupported parameters"
msgstr ""
"잘못된 프로토콜 교섭 메시지를 받았음: 서버에서 지원되지 않는 매개변수의 값이 "
"음수라고 보고했음"
#: fe-protocol3.c:1467
#, c-format
msgid ""
"received invalid protocol negotiation message: server negotiated but asks "
"for no changes"
msgstr ""
"잘못된 프로토콜 교섭 메시지를 받았음: 서버는 협상했지만 변경 사항을 요구하지 "
"않음"
#: fe-protocol3.c:1473
#, c-format
msgid ""
"server only supports protocol version %d.%d, but \"%s\" was set to %d.%d"
msgstr ""
"서버는 %d.%d 프로토콜 버전을 지원함, 하지만 \"%s\"에서는 %d.%d 버전을 지정했"
"음"
#: fe-protocol3.c:1498
#, c-format
msgid ""
"received invalid protocol negotiation message: server reported unsupported "
"parameter name without a \"%s\" prefix (\"%s\")"
msgstr ""
"잘못된 프로토콜 교섭 메시지를 받았음: 서버가 지원하지 않는 매개 변수 이름을 "
"보고함: \"%s\" 접두사 빠짐 (\"%s\")"
#: fe-protocol3.c:1501
#, c-format
msgid ""
"received invalid protocol negotiation message: server reported an "
"unsupported parameter that was not requested (\"%s\")"
msgstr ""
"잘못된 프로토콜 교섭 메시지를 받았음: 서버가 지원하지 않는 매개 변수 이름을 "
"보고함: 요청되지 않은 매개 변수 (\"%s\")"
#: fe-protocol3.c:1508
#, c-format
msgid "received invalid protocol negotiation message: message too short"
msgstr "잘못된 프로토콜 교섭 메시지를 받았음: 메시지가 너무 짧음"
#: fe-protocol3.c:1574
#, c-format
msgid ""
"received invalid BackendKeyData message: cancel key with length %d not "
"allowed in protocol version 3.0 (must be 4 bytes)"
msgstr ""
"잘못된 BackendKeyData 메시지 받았음: 길이가 %d인 중지 키는 3.0 버전 프로토콜"
"에서 허용하지 않음 (4 바이트여야 함)"
#: fe-protocol3.c:1581
#, c-format
msgid ""
"received invalid BackendKeyData message: cancel key with length %d is too "
"short (minimum 4 bytes)"
msgstr ""
"잘못된 BackendKeyData 메시지 받았음: 길이가 %d인 중지 키는 길이가 너무 짧음"
"(최소 4 바이트여야 함)"
#: fe-protocol3.c:1588
#, c-format
msgid ""
"received invalid BackendKeyData message: cancel key with length %d is too "
"long (maximum 256 bytes)"
msgstr ""
"잘못된 BackendKeyData 메시지 받았음: 길이가 %d인 중지 키는 길이가 너무 긺(최"
"대 256 바이트여야 함)"
#: fe-protocol3.c:1952
#, c-format
msgid "PQgetline: not doing text COPY OUT"
msgstr "PQgetline: text COPY OUT 작업을 할 수 없음"
#: fe-protocol3.c:2327
#, c-format
msgid "protocol error: no function result"
msgstr "프로토콜 오류: 함수 결과 없음"
#: fe-protocol3.c:2339
#, c-format
msgid "protocol error: id=0x%x"
msgstr "프로토콜 오류: id=0x%x"
#: fe-secure-common.c:123
#, c-format
msgid "SSL certificate's name contains embedded null"
msgstr "SSL 인증서의 이름에 null 문자가 있음"
#: fe-secure-common.c:228
#, c-format
msgid "certificate contains IP address with invalid length %zu"
msgstr "인증서에 IP 주소용 %zu 길이가 잘못됨"
#: fe-secure-common.c:237
#, c-format
msgid "could not convert certificate's IP address to string: %s"
msgstr "인증서의 IP 주소를 문자열로 바꿀 수 없음: %s"
#: fe-secure-common.c:269
#, c-format
msgid "host name must be specified for a verified SSL connection"
msgstr "인증된 SSL 접속을 위해서는 호스트 이름을 지정해야 함"
#: fe-secure-common.c:286
#, c-format
msgid ""
"server certificate for \"%s\" (and %d other name) does not match host name "
"\"%s\""
msgid_plural ""
"server certificate for \"%s\" (and %d other names) does not match host name "
"\"%s\""
msgstr[0] ""
"서버 인증서의 이름 \"%s\" (%d 기타 이름)이 \"%s\" 호스트 이름과 일치하지 않음"
#: fe-secure-common.c:294
#, c-format
msgid "server certificate for \"%s\" does not match host name \"%s\""
msgstr "서버 인증서의 이름 \"%s\"이(가) \"%s\" 호스트 이름과 일치하지 않음"
#: fe-secure-common.c:299
#, c-format
msgid "could not get server's host name from server certificate"
msgstr "서버 인증서에서 서버 호스트 이름을 찾을 수 없음"
#: fe-secure-gssapi.c:201
msgid "GSSAPI wrap error"
msgstr "GSSAPI 감싸기 오류"
#: fe-secure-gssapi.c:208
#, c-format
msgid "outgoing GSSAPI message would not use confidentiality"
msgstr "GSSAPI 송출 메시지는 기밀성을 사용하지 말아야함"
#: fe-secure-gssapi.c:215 fe-secure-gssapi.c:723
#, c-format
msgid "client tried to send oversize GSSAPI packet (%zu > %zu)"
msgstr "클라이언트의 GSSAPI 패킷이 너무 큼 (%zu > %zu)"
#: fe-secure-gssapi.c:354 fe-secure-gssapi.c:599
#, c-format
msgid "oversize GSSAPI packet sent by the server (%zu > %zu)"
msgstr "서버의 GSSAPI 패킷이 너무 큼 (%zu > %zu)"
#: fe-secure-gssapi.c:393
msgid "GSSAPI unwrap error"
msgstr "GSSAPI 벗기기 오류"
#: fe-secure-gssapi.c:402
#, c-format
msgid "incoming GSSAPI message did not use confidentiality"
msgstr "GSSAPI 수신 메시지는 기밀성을 사용하지 말아야 함"
#: fe-secure-gssapi.c:662
msgid "could not initiate GSSAPI security context"
msgstr "GSSAPI 보안 context 초기화 실패"
#: fe-secure-gssapi.c:712
msgid "GSSAPI size check error"
msgstr "GSSAPI 크기 검사 오류"
#: fe-secure-openssl.c:185 fe-secure-openssl.c:291 fe-secure-openssl.c:1382
#, c-format
msgid "SSL SYSCALL error: %s"
msgstr "SSL SYSCALL 오류: %s"
#: fe-secure-openssl.c:191 fe-secure-openssl.c:297 fe-secure-openssl.c:1385
#, c-format
msgid "SSL SYSCALL error: EOF detected"
msgstr "SSL SYSCALL 오류: EOF 감지됨"
#: fe-secure-openssl.c:201 fe-secure-openssl.c:307 fe-secure-openssl.c:1393
#, c-format
msgid "SSL error: %s"
msgstr "SSL 오류: %s"
#: fe-secure-openssl.c:215 fe-secure-openssl.c:321
#, c-format
msgid "SSL connection has been closed unexpectedly"
msgstr "SSL 연결이 예상치 못하게 끊김"
#: fe-secure-openssl.c:220 fe-secure-openssl.c:326 fe-secure-openssl.c:1440
#, c-format
msgid "unrecognized SSL error code: %d"
msgstr "알 수 없는 SSL 오류 코드: %d"
#: fe-secure-openssl.c:368
#, c-format
msgid "could not determine server certificate signature algorithm"
msgstr "서버 인증서 서명 알고리즘을 알 수 없음"
#: fe-secure-openssl.c:388
#, c-format
msgid "could not find digest for NID %s"
msgstr "%s NID용 다이제스트를 찾을 수 없음"
#: fe-secure-openssl.c:397
#, c-format
msgid "could not generate peer certificate hash"
msgstr "피어 인증 해시 값을 만들 수 없음"
#: fe-secure-openssl.c:479
#, c-format
msgid "SSL certificate's name entry is missing"
msgstr "SSL 인증서의 이름 항목이 잘못됨"
#: fe-secure-openssl.c:509
#, c-format
msgid "SSL certificate's address entry is missing"
msgstr "SSL 인증서의 주소 항목이 빠졌음"
#: fe-secure-openssl.c:715
#, c-format
msgid "WARNING: could not open SSL key logging file \"%s\": %m\n"
msgstr "경고: \"%s\" SSL 키 로그 파일을 열 수 없음: %m\n"
#: fe-secure-openssl.c:723
#, c-format
msgid "WARNING: could not write to SSL key logging file \"%s\": %m\n"
msgstr "경고: \"%s\" SSL 키 로그 파일을 쓸 수 없음: %m\n"
#: fe-secure-openssl.c:776
#, c-format
msgid "could not create SSL context: %s"
msgstr "SSL context를 만들 수 없음: %s"
#: fe-secure-openssl.c:818
#, c-format
msgid "invalid value \"%s\" for minimum SSL protocol version"
msgstr "잘못된 값: \"%s\", 대상: 최소 SSL 프로토콜 버전"
#: fe-secure-openssl.c:828
#, c-format
msgid "could not set minimum SSL protocol version: %s"
msgstr "최소 SSL 프로토콜 버전을 지정할 수 없음: %s"
#: fe-secure-openssl.c:844
#, c-format
msgid "invalid value \"%s\" for maximum SSL protocol version"
msgstr "잘못된 값: \"%s\", 대상: 최대 SSL 프로토콜 버전"
#: fe-secure-openssl.c:854
#, c-format
msgid "could not set maximum SSL protocol version: %s"
msgstr "최대 SSL 프로토콜 버전을 지정할 수 없음: %s"
#: fe-secure-openssl.c:892
#, c-format
msgid "could not load system root certificate paths: %s"
msgstr "시스템 루트 인증서 경로 불러오기 실패: %s"
#: fe-secure-openssl.c:909
#, c-format
msgid "could not read root certificate file \"%s\": %s"
msgstr "\"%s\" 루트 인증서 파일을 읽을 수 없음: %s"
#: fe-secure-openssl.c:961
#, c-format
msgid ""
"could not get home directory to locate root certificate file\n"
"Either provide the file, use the system's trusted roots with "
"sslrootcert=system, or change sslmode to disable server certificate "
"verification."
msgstr ""
"루트 인증서 파일이 있는 홈 디렉터리를 찾을 수 없음\n"
"해당 파일을 제공하거나, sslrootcert=system 설정으로 신뢰할 수 있는 시스템 루"
"트 인증서를 사용하거나, 서버 인증서 확인을 사용하지 않도록 sslmode를 변경하십"
"시오."
#: fe-secure-openssl.c:964
#, c-format
msgid ""
"root certificate file \"%s\" does not exist\n"
"Either provide the file, use the system's trusted roots with "
"sslrootcert=system, or change sslmode to disable server certificate "
"verification."
msgstr ""
"루트 인증서 파일 \"%s\"이(가) 없습니다.\n"
"해당 파일을 제공하거나, sslrootcert=system 설정으로 신뢰할 수 있는 시스템 루"
"트 인증서를 사용하거나, 서버 인증서 확인을 사용하지 않도록 sslmode를 변경하십"
"시오."
#: fe-secure-openssl.c:999
#, c-format
msgid "could not open certificate file \"%s\": %s"
msgstr "\"%s\" 인증서 파일을 열수 없음: %s"
#: fe-secure-openssl.c:1017
#, c-format
msgid "could not read certificate file \"%s\": %s"
msgstr "\"%s\" 인증서 파일을 읽을 수 없음: %s"
#: fe-secure-openssl.c:1041
#, c-format
msgid "could not establish SSL connection: %s"
msgstr "SSL 연결을 확립할 수 없음: %s"
#: fe-secure-openssl.c:1058
#, c-format
msgid "WARNING: sslkeylogfile support requires OpenSSL\n"
msgstr "경고: sslkeylogfile 설정은 OpenSSL 에서만 지원합니다\n"
#: fe-secure-openssl.c:1060
#, c-format
msgid "WARNING: libpq was not built with sslkeylogfile support\n"
msgstr "경고: libpq가 sslkeylogfile 설정을 지원하지 않도록 빌드되었음\n"
#: fe-secure-openssl.c:1090
#, c-format
msgid "could not set SSL Server Name Indication (SNI): %s"
msgstr "서버 이름 표시(SNI)를 설정할 수 없음: %s"
#: fe-secure-openssl.c:1107
#, c-format
msgid "could not set SSL ALPN extension: %s"
msgstr "SSL ALPN 확장을 지정할 수 없음: %s"
#: fe-secure-openssl.c:1150
#, c-format
msgid "could not load SSL engine \"%s\": %s"
msgstr "SSL 엔진 \"%s\"을(를) 로드할 수 없음: %s"
#: fe-secure-openssl.c:1161
#, c-format
msgid "could not initialize SSL engine \"%s\": %s"
msgstr "SSL 엔진 \"%s\"을(를) 초기화할 수 없음: %s"
#: fe-secure-openssl.c:1176
#, c-format
msgid "could not read private SSL key \"%s\" from engine \"%s\": %s"
msgstr "개인 SSL 키 \"%s\"을(를) \"%s\" 엔진에서 읽을 수 없음: %s"
#: fe-secure-openssl.c:1189
#, c-format
msgid "could not load private SSL key \"%s\" from engine \"%s\": %s"
msgstr "개인 SSL 키 \"%s\"을(를) \"%s\" 엔진에서 읽을 수 없음: %s"
#: fe-secure-openssl.c:1226
#, c-format
msgid "certificate present, but not private key file \"%s\""
msgstr "인증서가 있지만, \"%s\" 개인키가 아닙니다."
#: fe-secure-openssl.c:1229
#, c-format
msgid "could not stat private key file \"%s\": %m"
msgstr "\"%s\" 개인키 파일 상태를 알 수 없음: %m"
#: fe-secure-openssl.c:1237
#, c-format
msgid "private key file \"%s\" is not a regular file"
msgstr "\"%s\" 개인키 파일은 일반 파일이 아님"
#: fe-secure-openssl.c:1270
#, c-format
msgid ""
"private key file \"%s\" has group or world access; file must have "
"permissions u=rw (0600) or less if owned by the current user, or permissions "
"u=rw,g=r (0640) or less if owned by root"
msgstr ""
"\"%s\" 개인키 파일의 접근권한이 그룹 또는 그외 사용자도 접근 가능함; 파일 소"
"유주가 현재 사용자라면, 접근권한을 u=rw (0600) 또는 더 작게 설정하고, root가 "
"소유주라면 u=rw,g=r (0640) 권한으로 지정하세요."
#: fe-secure-openssl.c:1294
#, c-format
msgid "could not load private key file \"%s\": %s"
msgstr "\"%s\" 개인키 파일을 불러들일 수 없습니다: %s"
#: fe-secure-openssl.c:1310
#, c-format
msgid "certificate does not match private key file \"%s\": %s"
msgstr "인증서가 \"%s\" 개인키 파일과 맞지 않습니다: %s"
#: fe-secure-openssl.c:1379
#, c-format
msgid "SSL error: certificate verify failed: %s"
msgstr "SSL 오류: 인증서 유효성 검사 실패: %s"
#: fe-secure-openssl.c:1424
#, c-format
msgid ""
"This may indicate that the server does not support any SSL protocol version "
"between %s and %s."
msgstr "해당 서버는 SSL 프로토콜 버전 %s - %s 사이를 지원하지 않습니다."
#: fe-secure-openssl.c:1456
#, c-format
msgid ""
"direct SSL connection was established without ALPN protocol negotiation "
"extension"
msgstr "ALPN 프로토콜 협상 확장 없이 직접 SSL 연결이 수립되었습니다."
#: fe-secure-openssl.c:1468
#, c-format
msgid "SSL connection was established with unexpected ALPN protocol"
msgstr "예상치 못한 ALPN 프로토콜로 SSL 연결이 수립되었습니다."
#: fe-secure-openssl.c:1485
#, c-format
msgid "certificate could not be obtained: %s"
msgstr "인증서를 구하질 못했습니다: %s"
#: fe-secure-openssl.c:1564
#, c-format
msgid "no SSL error reported"
msgstr "SSL 오류 없음이 보고됨"
#: fe-secure-openssl.c:1607
#, c-format
msgid "SSL error code %lu"
msgstr "SSL 오류 번호 %lu"
#: fe-secure-openssl.c:1909
#, c-format
msgid "WARNING: sslpassword truncated\n"
msgstr "경고: sslpassword 삭제됨\n"
#: fe-secure.c:233
#, c-format
msgid "could not receive data from server: %s"
msgstr "서버로부터 데이터를 받지 못했음: %s"
#: fe-secure.c:404
#, c-format
msgid "could not send data to server: %s"
msgstr "서버에 데이터를 보낼 수 없음: %s"
#: win32.c:310
#, c-format
msgid "unrecognized socket error: 0x%08X/%d"
msgstr "알 수 없는 소켓오류: 0x%08X/%d"
#~ msgid "GSSAPI context establishment error"
#~ msgstr "GSSAPI context 설정 오류"
#~ msgid "could not look up local user ID %d: %s"
#~ msgstr "UID %d 해당하는 로컬 사용자를 찾을 수 없음: %s"
#~ msgid "invalid %s message"
#~ msgstr "잘못된 %s 메시지"
#~ msgid "keepalives parameter must be an integer"
#~ msgstr "keepalives 매개변수값은 정수여야 합니다."
#~ msgid "protocol extension not supported by server: %s"
#~ msgid_plural "protocol extensions not supported by server: %s"
#~ msgstr[0] "서버가 해당 프로토콜 확장을 지원하지 않음: %s"
#~ msgid ""
#~ "protocol version not supported by server: client uses %u.%u, server "
#~ "supports up to %u.%u"
#~ msgstr ""
#~ "서버가 해당 프로토콜 버전을 지원하지 않음: 클라이언트=%u.%u, 서버=%u.%u"
|