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
|
# Korean message translation file for PostgreSQL pgscripts
# Ioseph Kim <ioseph@uri.sarang.net>, 2004.
#
msgid ""
msgstr ""
"Project-Id-Version: PostgreSQL 8.2\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2007-02-07 00:40+0900\n"
"PO-Revision-Date: 2004-12-16 02:11+0900\n"
"Last-Translator: Ioseph Kim <ioseph@uri.sarang.net>\n"
"Language-Team: KOREAN <pgsql-kr@postgresql.or.kr>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=euc-kr\n"
"Content-Transfer-Encoding: 8bit\n"
#: createdb.c:102 createdb.c:121 createlang.c:85 createlang.c:106
#: createlang.c:152 createuser.c:157 createuser.c:172 dropdb.c:84 dropdb.c:93
#: dropdb.c:101 droplang.c:96 droplang.c:117 droplang.c:164 dropuser.c:84
#: dropuser.c:99 clusterdb.c:95 clusterdb.c:110 vacuumdb.c:112 vacuumdb.c:127
#: reindexdb.c:111 reindexdb.c:125
#, c-format
msgid "Try \"%s --help\" for more information.\n"
msgstr "º¸´Ù ÀÚ¼¼ÇÑ »ç¿ë¹ýÀº \"%s --help\"\n"
#: createdb.c:119 createlang.c:104 createuser.c:170 dropdb.c:99 droplang.c:115
#: dropuser.c:97 clusterdb.c:108 vacuumdb.c:125 reindexdb.c:124
#, c-format
msgid "%s: too many command-line arguments (first is \"%s\")\n"
msgstr "%s: ³Ê¹« ¸¹Àº ¸í·ÉÇà ÀÎÀÚµé (½ÃÀÛ \"%s\")\n"
#: createdb.c:129
#, c-format
msgid "%s: \"%s\" is not a valid encoding name\n"
msgstr "%s: \"%s\" ÀÎÄÚµùÀº »ç¿ë °¡´ÉÇÑ ÀÎÄÚµù À̸§ÀÌ ¾Æ´Ô\n"
#: createdb.c:169
#, c-format
msgid "%s: database creation failed: %s"
msgstr "%s: µ¥ÀÌÅͺ£À̽º ¸¸µé±â ½ÇÆÐ: %s"
#: createdb.c:198
#, c-format
msgid "%s: comment creation failed (database was created): %s"
msgstr "%s: ÄÚ¸àÆ® Ãß°¡ÇÏ±â ½ÇÆÐ (µ¥ÀÌÅͺ£À̽º´Â ¸¸µé¾îÁ³À½): %s"
#: createdb.c:220
#, c-format
msgid ""
"%s creates a PostgreSQL database.\n"
"\n"
msgstr ""
"%s ÇÁ·Î±×·¥Àº PostgreSQL µ¥ÀÌÅͺ£À̽º¸¦ ¸¸µì´Ï´Ù.\n"
"\n"
#: createdb.c:221 createlang.c:204 createuser.c:313 dropdb.c:146
#: droplang.c:321 dropuser.c:145 clusterdb.c:234 vacuumdb.c:260
#: reindexdb.c:332
#, c-format
msgid "Usage:\n"
msgstr "»ç¿ë¹ý:\n"
#: createdb.c:222
#, c-format
msgid " %s [OPTION]... [DBNAME] [DESCRIPTION]\n"
msgstr " %s [¿É¼Ç]... [DBÀ̸§] [¼³¸í]\n"
#: createdb.c:223 createlang.c:206 createuser.c:315 dropdb.c:148
#: droplang.c:323 dropuser.c:147 clusterdb.c:236 vacuumdb.c:262
#: reindexdb.c:334
#, c-format
msgid ""
"\n"
"Options:\n"
msgstr ""
"\n"
"¿É¼Çµé:\n"
#: createdb.c:224
#, c-format
msgid " -D, --tablespace=TABLESPACE default tablespace for the database\n"
msgstr ""
" -D, --tablespace=TABLESPACE µ¥ÀÌÅͺ£À̽º¸¦ À§ÇÑ ±âº» Å×ÀÌºí½ºÆäÀ̽º\n"
#: createdb.c:225
#, c-format
msgid " -E, --encoding=ENCODING encoding for the database\n"
msgstr " -E, --encoding=ENCODING µ¥ÀÌÅͺ£À̽º ÀÎÄÚµù\n"
#: createdb.c:226
#, c-format
msgid " -O, --owner=OWNER database user to own the new database\n"
msgstr " -O, --owner=OWNER µ¥ÀÌÅͺ£À̽º ¼ÒÀ¯ÁÖ\n"
#: createdb.c:227
#, c-format
msgid " -T, --template=TEMPLATE template database to copy\n"
msgstr " -T, --template=TEMPLATE º¹»çÇÒ ÅÛÇø´ µ¥ÀÌÅͺ£À̽º\n"
#: createdb.c:228
#, c-format
msgid ""
" -e, --echo show the commands being sent to the server\n"
msgstr " -e, --echo ¼¹ö·Î º¸³»´Â ÀÛ¾÷ ¸í·ÉµéÀ» º¸¿©ÁÜ\n"
#: createdb.c:229
#, c-format
msgid " -q, --quiet don't write any messages\n"
msgstr " -q, --quiet ¾î¶°ÇÑ ¸Þ½ÃÁöµµ º¸ÀÌÁö ¾ÊÀ½\n"
#: createdb.c:230
#, c-format
msgid " --help show this help, then exit\n"
msgstr " --help ÀÌ µµ¿ò¸»À» º¸¿©ÁÖ°í ¸¶Ä§\n"
#: createdb.c:231
#, c-format
msgid " --version output version information, then exit\n"
msgstr " --version ¹öÀü Á¤º¸¸¦ º¸¿©ÁÖ°í ¸¶Ä§\n"
#: createdb.c:232 createuser.c:335 clusterdb.c:244 vacuumdb.c:273
#: reindexdb.c:344
#, c-format
msgid ""
"\n"
"Connection options:\n"
msgstr ""
"\n"
"¿¬°á ¿É¼Çµé:\n"
#: createdb.c:233
#, c-format
msgid ""
" -h, --host=HOSTNAME database server host or socket directory\n"
msgstr ""
" -h, --host=HOSTNAME µ¥ÀÌÅͺ£À̽º ¼¹ö È£½ºÆ®³ª ¼ÒÄÏ µð·ºÅ丮\n"
#: createdb.c:234
#, c-format
msgid " -p, --port=PORT database server port\n"
msgstr " -p, --port=PORT µ¥ÀÌÅͺ£À̽º ¼¹ö Æ÷Æ®\n"
#: createdb.c:235
#, c-format
msgid " -U, --username=USERNAME user name to connect as\n"
msgstr " -U, --username=USERNAME Á¢¼ÓÇÒ »ç¿ëÀÚ\n"
#: createdb.c:236
#, c-format
msgid " -W, --password prompt for password\n"
msgstr " -W, --password ºñ¹Ð¹øÈ£ ÀÔ·ÂÀ» À§ÇÑ ÇÁ·ÒÇÁÆ®\n"
#: createdb.c:237
#, c-format
msgid ""
"\n"
"By default, a database with the same name as the current user is created.\n"
msgstr ""
"\n"
"ÃʱⰪÀ¸·Î, DBÀ̸§À» ÁöÁ¤ÇÏÁö ¾ÊÀ¸¸é, ÇöÀç »ç¿ëÀÚÀÇ À̸§°ú °°Àº µ¥ÀÌÅͺ£À̽º"
"°¡ ¸¸µé¾îÁý´Ï´Ù.\n"
#: createdb.c:238 createlang.c:216 createuser.c:342 dropdb.c:158
#: droplang.c:333 dropuser.c:157 clusterdb.c:250 vacuumdb.c:279
#: reindexdb.c:350
#, c-format
msgid ""
"\n"
"Report bugs to <pgsql-bugs@postgresql.org>.\n"
msgstr ""
"\n"
"¿À·ùº¸°í: <pgsql-bugs@postgresql.org>.\n"
#: createlang.c:135 droplang.c:146
msgid "Name"
msgstr "À̸§"
#: createlang.c:135 droplang.c:146
msgid "yes"
msgstr "¿¹"
#: createlang.c:135 droplang.c:146
msgid "no"
msgstr "¾Æ´Ï¿À"
#: createlang.c:135 droplang.c:146
msgid "Trusted?"
msgstr "½Å·ÚµÈ?"
#: createlang.c:142 droplang.c:153
msgid "Procedural Languages"
msgstr "ÇÁ·Î½ÃÁê¾ó ¾ð¾îµé"
#: createlang.c:151 droplang.c:162
#, c-format
msgid "%s: missing required argument language name\n"
msgstr "%s: Çʼö Ç׸ñÀÎ, ¾ð¾î À̸§À» ÁöÁ¤ÇÒ ÀÎÀÚ°¡ ºüÁ³½À´Ï´Ù\n"
#: createlang.c:173
#, c-format
msgid "%s: language \"%s\" is already installed in database \"%s\"\n"
msgstr "%s: \"%s\" ¾ð¾î´Â ÀÌ¹Ì \"%s\" µ¥ÀÌÅͺ£À̽º¿¡ ¼³Ä¡µÇ¾î ÀÖ½À´Ï´Ù.\n"
#: createlang.c:187
#, c-format
msgid "%s: language installation failed: %s"
msgstr "%s: ¾ð¾î ¼³Ä¡ ½ÇÆÐ: %s"
#: createlang.c:203
#, c-format
msgid ""
"%s installs a procedural language into a PostgreSQL database.\n"
"\n"
msgstr ""
"%s ÇÁ·Î±×·¥Àº PostgreSQL µ¥ÀÌÅͺ£À̽º¿¡ ÇÁ·Î½ÃÁê¾ó ¾ð¾î¸¦ ¼³Ä¡ÇÕ´Ï´Ù.\n"
"\n"
#: createlang.c:205 droplang.c:322
#, c-format
msgid " %s [OPTION]... LANGNAME [DBNAME]\n"
msgstr " %s [¿É¼Ç]... ¾ð¾îÀ̸§ [DBÀ̸§]\n"
#: createlang.c:207
#, c-format
msgid " -d, --dbname=DBNAME database to install language in\n"
msgstr " -d, --dbname=DBNAME ¾ð¾î¸¦ ¼³Ä¡ÇÒ DBÀ̸§\n"
#: createlang.c:208 createuser.c:331 dropdb.c:149 droplang.c:325
#: dropuser.c:148 clusterdb.c:240 reindexdb.c:340
#, c-format
msgid ""
" -e, --echo show the commands being sent to the server\n"
msgstr " -e, --echo ¼¹ö·Î º¸³»´Â ÀÛ¾÷ ¸í·ÉÀ» º¸¿©ÁÜ\n"
#: createlang.c:209 droplang.c:326
#, c-format
msgid ""
" -l, --list show a list of currently installed languages\n"
msgstr " -l, --list ÇöÀç ¼³Ä¡ µÇ¾îÀÖ´Â ¾ð¾îµéÀ» º¸¿©ÁÜ\n"
#: createlang.c:210 createuser.c:336 dropdb.c:152 droplang.c:327
#: dropuser.c:151 clusterdb.c:245 vacuumdb.c:274 reindexdb.c:345
#, c-format
msgid " -h, --host=HOSTNAME database server host or socket directory\n"
msgstr ""
" -h, --host=HOSTNAME µ¥ÀÌÅͺ£À̽º ¼¹ö È£½ºÆ® ¶Ç´Â ¼ÒÄÏ µð·ºÅ丮\n"
#: createlang.c:211 createuser.c:337 dropdb.c:153 droplang.c:328
#: dropuser.c:152 clusterdb.c:246 vacuumdb.c:275 reindexdb.c:346
#, c-format
msgid " -p, --port=PORT database server port\n"
msgstr " -p, --port=PORT µ¥ÀÌÅͺ£À̽º ¼¹ö Æ÷Æ®\n"
#: createlang.c:212 dropdb.c:154 droplang.c:329 clusterdb.c:247 vacuumdb.c:276
#: reindexdb.c:347
#, c-format
msgid " -U, --username=USERNAME user name to connect as\n"
msgstr " -U, --username=USERNAME Á¢¼ÓÇÒ »ç¿ëÀÚÀ̸§\n"
#: createlang.c:213 dropdb.c:155 droplang.c:330 clusterdb.c:248 vacuumdb.c:277
#: reindexdb.c:348
#, c-format
msgid " -W, --password prompt for password\n"
msgstr " -W, --password ºñ¹Ð¹øÈ£ ÀÔ·ÂÀ» À§ÇÑ ÇÁ·ÒÇÁÆ®\n"
#: createlang.c:214 createuser.c:333 dropdb.c:156 droplang.c:331
#: dropuser.c:155 clusterdb.c:242 reindexdb.c:342
#, c-format
msgid " --help show this help, then exit\n"
msgstr " --help ÀÌ µµ¿ò¸»À» º¸¿©ÁÖ°í ¸¶Ä§\n"
#: createlang.c:215 createuser.c:334 dropdb.c:157 droplang.c:332
#: dropuser.c:156 clusterdb.c:243 reindexdb.c:343
#, c-format
msgid " --version output version information, then exit\n"
msgstr " --version ¹öÀü Á¤º¸¸¦ º¸¿©ÁÖ°í ¸¶Ä§\n"
#: createuser.c:177
msgid "Enter name of role to add: "
msgstr "Ãß°¡ÇÒ »õ ·Ñ(role)À̸§: "
#: createuser.c:184
msgid "Enter password for new role: "
msgstr "»õ ·ÑÀÇ ºñ¹Ð¹øÈ£: "
#: createuser.c:185
msgid "Enter it again: "
msgstr "ºñ¹Ð¹øÈ£ È®ÀÎ: "
#: createuser.c:188
#, c-format
msgid "Passwords didn't match.\n"
msgstr "ºñ¹Ð¹øÈ£°¡ ¼·Î Ʋ¸².\n"
#: createuser.c:197
msgid "Shall the new role be a superuser?"
msgstr "»õ ·ÑÀ» ½´ÆÛÀ¯Àú ±ÇÇÑÀ¸·Î ÁöÁ¤ÇÒ±î¿ä?"
#: createuser.c:212
msgid "Shall the new role be allowed to create databases?"
msgstr "ÀÌ »õ ·Ñ¿¡°Ô µ¥ÀÌÅͺ£À̽º¸¦ ¸¸µé ¼ö ÀÖ´Â ±ÇÇÒÀ» ÁÙ±î¿ä?"
#: createuser.c:220
msgid "Shall the new role be allowed to create more new roles?"
msgstr "ÀÌ »õ ·Ñ¿¡°Ô ¶Ç ´Ù¸¥ ·ÑÀ» ¸¸µé ¼ö ÀÖ´Â ±ÇÇÑÀ» ÁÙ±î¿ä?"
#: createuser.c:253
#, c-format
msgid "Password encryption failed.\n"
msgstr "ºñ¹Ð¹øÈ£ ¾ÏÈ£È ½ÇÆÐ.\n"
#: createuser.c:292
#, c-format
msgid "%s: creation of new role failed: %s"
msgstr "%s: »õ ·Ñ ¸¸µé±â ½ÇÆÐ: %s"
#: createuser.c:312
#, c-format
msgid ""
"%s creates a new PostgreSQL role.\n"
"\n"
msgstr ""
"%s ÇÁ·Î±×·¥Àº PostgreSQL ·ÑÀ» ¸¸µì´Ï´Ù.\n"
"\n"
#: createuser.c:314 dropuser.c:146
#, c-format
msgid " %s [OPTION]... [ROLENAME]\n"
msgstr " %s [¿É¼Ç]... [·ÑÀ̸§]\n"
#: createuser.c:316
#, c-format
msgid " -s, --superuser role will be superuser\n"
msgstr " -s, --superuser ½´ÆÛÀ¯Àú ±ÇÇÑÀ¸·Î ÁöÁ¤\n"
#: createuser.c:317
#, c-format
msgid " -S, --no-superuser role will not be superuser\n"
msgstr " -S, --no-superuser ÀÏ¹Ý »ç¿ëÀÚ ±ÇÇÑÀ¸·Î ÁöÁ¤\n"
#: createuser.c:318
#, c-format
msgid " -d, --createdb role can create new databases\n"
msgstr " -d, --createdb »õ µ¥ÀÌÅͺ£À̽º¸¦ ¸¸µé ¼ö ÀÖÀ½\n"
#: createuser.c:319
#, c-format
msgid " -D, --no-createdb role cannot create databases\n"
msgstr " -D, --no-createdb »õ µ¥ÀÌÅͺ£À̽º¸¦ ¸¸µé ¼ö ¾øÀ½\n"
#: createuser.c:320
#, c-format
msgid " -r, --createrole role can create new roles\n"
msgstr " -r, --createrole »õ ·ÑÀ» ¸¸µé ¼ö ÀÖÀ½\n"
#: createuser.c:321
#, c-format
msgid " -R, --no-createrole role cannot create roles\n"
msgstr " -R, --no-createrole »õ ·ÑÀ» ¸¸µé ¼ö ¾øÀ½\n"
#: createuser.c:322
#, c-format
msgid " -l, --login role can login (default)\n"
msgstr " -l, --login ·Î±×ÀÎ Çã¿ë (ÃʱⰪ)\n"
#: createuser.c:323
#, c-format
msgid " -L, --no-login role cannot login\n"
msgstr " -L, --no-login ·Î±×ÀÎ ÇÒ ¼ö ¾øÀ½\n"
#: createuser.c:324
#, c-format
msgid ""
" -i, --inherit role inherits privileges of roles it is a\n"
" member of (default)\n"
msgstr ""
" -i, --inherit ·ÑÀÇ ±ÇÇÑÀ» »ó¼ÓÇÒ ¼ö ÀÖÀ½\n"
" (ÃʱⰪ)\n"
#: createuser.c:326
#, c-format
msgid " -I, --no-inherit role does not inherit privileges\n"
msgstr " -I, --no-inherit ÀÌ ·ÑÀÇ ±ÇÇÑÀ» »ó¼ÓÇÒ ¼ö ¾øÀ½\n"
#: createuser.c:327
#, c-format
msgid ""
" -c, --connection-limit=N connection limit for role (default: no limit)\n"
msgstr " -c, --connection-limit=N ¿¬°á Á¦ÇÑ ¼ö (ÃʱⰪ: ¹«Á¦ÇÑ)\n"
#: createuser.c:328
#, c-format
msgid " -P, --pwprompt assign a password to new role\n"
msgstr " -P, --pwprompt »õ ·ÑÀÇ ºñ¹Ð¹øÈ£ ÁöÁ¤\n"
#: createuser.c:329
#, c-format
msgid " -E, --encrypted encrypt stored password\n"
msgstr " -E, --encrypted ¾ÏÈ£ÈµÈ ºñ¹Ð¹øÈ£ »ç¿ë\n"
#: createuser.c:330
#, c-format
msgid " -N, --unencrypted do not encrypt stored password\n"
msgstr " -N, --unencrypted ¾ÏÈ£È µÇÁö ¾ÊÀº ºñ¹Ð¹øÈ£ »ç¿ë\n"
#: createuser.c:332 dropdb.c:151 dropuser.c:150 clusterdb.c:241
#: reindexdb.c:341
#, c-format
msgid " -q, --quiet don't write any messages\n"
msgstr " -q, --quiet ¾î¶°ÇÑ ¸Þ½ÃÁöµµ º¸¿©ÁÖÁö ¾ÊÀ½\n"
#: createuser.c:338
#, c-format
msgid ""
" -U, --username=USERNAME user name to connect as (not the one to create)\n"
msgstr ""
" -U, --username=USERNAME ¼¹ö¿¡ Á¢¼ÓÇÒ »ç¿ëÀÚ\n"
" (»ç¿ëÀÚ¸¸µé±â ÀÛ¾÷À» ÇÒ »ç¿ëÀÚ)\n"
#: createuser.c:339 dropuser.c:154
#, c-format
msgid " -W, --password prompt for password to connect\n"
msgstr " -W, --password ¿¬°áÀÛ¾÷¿¡ ÇÊ¿äÇÑ ºñ¹Ð¹øÈ£ ÀÔ·Â ÇÁ·ÒÇÁÆ®\n"
#: createuser.c:340
#, c-format
msgid ""
"\n"
"If one of -s, -S, -d, -D, -r, -R and ROLENAME is not specified, you will\n"
"be prompted interactively.\n"
msgstr ""
"\n"
"-s, -S, -d, -D, -r, -R, ·ÑÀ̸§ ÀÎÀÚµé Áß ¾î´À Çϳª°¡ ºüÁö¸é\n"
"ÇÁ·Î±×·¥Àº ÀÌ °ªÀ» ¹¯´Â ÇÁ·ÒÇÁÆ®¸¦ º¸¿©, ´ëÈÇüÀ¸·Î ó¸®ÇÒ °ÍÀÔ´Ï´Ù.\n"
#: dropdb.c:92
#, c-format
msgid "%s: missing required argument database name\n"
msgstr "%s: Çʼö Ç׸ñÀÎ µ¥ÀÌÅͺ£À̽º À̸§ÀÌ ºüÁ³½À´Ï´Ù\n"
#: dropdb.c:107
#, c-format
msgid "Database \"%s\" will be permanently removed.\n"
msgstr "\"%s\" µ¥ÀÌÅͺ£À̽º°¡ ¿ÏÀüÈ÷ »èÁ¦ µÉ °ÍÀÔ´Ï´Ù.\n"
#: dropdb.c:108 dropuser.c:109
msgid "Are you sure?"
msgstr "Á¤¸» °è¼Ó ÇÒ±î¿ä? (y/n) "
#: dropdb.c:125
#, c-format
msgid "%s: database removal failed: %s"
msgstr "%s: µ¥ÀÌÅͺ£À̽º »èÁ¦ ½ÇÆÐ: %s"
#: dropdb.c:145
#, c-format
msgid ""
"%s removes a PostgreSQL database.\n"
"\n"
msgstr ""
"%s ÇÁ·Î±×·¥Àº PostgreSQL µ¥ÀÌÅͺ£À̽º¸¦ »èÁ¦ÇÕ´Ï´Ù.\n"
"\n"
#: dropdb.c:147
#, c-format
msgid " %s [OPTION]... DBNAME\n"
msgstr " %s [¿É¼Ç]... DBÀ̸§\n"
#: dropdb.c:150 dropuser.c:149
#, c-format
msgid " -i, --interactive prompt before deleting anything\n"
msgstr " -i, --interactive Áö¿ì±â Àü¿¡ ÇÑ ¹ø ´õ ¹°¾îº½\n"
#: droplang.c:192
#, c-format
msgid "%s: language \"%s\" is not installed in database \"%s\"\n"
msgstr "%s: \"%s\" ¾ð¾î´Â \"%s\" µ¥ÀÌÅͺ£À̽º¿¡ ¼³Ä¡ µÇ¾îÀÖÁö ¾Ê½À´Ï´Ù\n"
#: droplang.c:212
#, c-format
msgid ""
"%s: still %s functions declared in language \"%s\"; language not removed\n"
msgstr ""
"%s: ÇöÀç %s°³ÀÇ ÇÔ¼ö°¡ \"%s\" ¾ð¾î ±â¹ÝÀ¸·Î ÀÛ¼ºµÇ¾î »ç¿ëµÇ°í ÀÖ½À´Ï´Ù; ÀÌ ¾ð"
"¾î´Â »èÁ¦µÉ ¼ö ¾ø½À´Ï´Ù.\n"
#: droplang.c:305
#, c-format
msgid "%s: language removal failed: %s"
msgstr "%s: ¾ð¾î »èÁ¦ ½ÇÆÐ: %s"
#: droplang.c:320
#, c-format
msgid ""
"%s removes a procedural language from a database.\n"
"\n"
msgstr ""
"%s ÇÁ·Î±×·¥Àº µ¥ÀÌÅͺ£À̽º¿¡¼ ÇÁ·Î½ÃÁê¾ó ¾ð¾î¸¦ »èÁ¦ÇÕ´Ï´Ù.\n"
"\n"
#: droplang.c:324
#, c-format
msgid ""
" -d, --dbname=DBNAME database from which to remove the language\n"
msgstr " -d, --dbname=DBNAME ¾ð¾î¸¦ »èÁ¦ÇÒ µ¥ÀÌÅͺ£À̽º\n"
#: dropuser.c:104
msgid "Enter name of role to drop: "
msgstr "»èÁ¦ÇÒ ·Ñ À̸§À» ÀÔ·ÂÇϽʽÿÀ: "
#: dropuser.c:108
#, c-format
msgid "Role \"%s\" will be permanently removed.\n"
msgstr "\"%s\" ·ÑÀº ¿µ±¸È÷ »èÁ¦µÉ °ÍÀÔ´Ï´Ù.\n"
#: dropuser.c:124
#, c-format
msgid "%s: removal of role \"%s\" failed: %s"
msgstr "%s: \"%s\" ·Ñ »èÁ¦ ½ÇÆÐ: %s"
#: dropuser.c:144
#, c-format
msgid ""
"%s removes a PostgreSQL role.\n"
"\n"
msgstr ""
"%s ÇÁ·Î±×·¥Àº PostgreSQL ·ÑÀ» »èÁ¦ÇÕ´Ï´Ù.\n"
"\n"
#: dropuser.c:153
#, c-format
msgid ""
" -U, --username=USERNAME user name to connect as (not the one to drop)\n"
msgstr " -U, --username=USERNAME ÀÌ ÀÛ¾÷À» ÁøÇàÇÒ DB¿¡ Á¢¼ÓÇÒ »ç¿ëÀÚ\n"
#: clusterdb.c:118
#, c-format
msgid "%s: cannot cluster all databases and a specific one at the same time\n"
msgstr "%s: ¸ðµç DB ÀÛ¾÷°ú ƯÁ¤ DB ÀÛ¾÷Àº µ¿½Ã¿¡ ÇÒ ¼ö ¾ø½À´Ï´Ù.\n"
#: clusterdb.c:124
#, c-format
msgid "%s: cannot cluster a specific table in all databases\n"
msgstr "%s: ¸ðµç DB¸¦ ´ë»óÀ¸·Î ƯÁ¤ Å×À̺íÀ» Ŭ·¯½ºÅÍÇÒ ¼ö ¾ø½À´Ï´Ù.\n"
#: clusterdb.c:180
#, c-format
msgid "%s: clustering of table \"%s\" in database \"%s\" failed: %s"
msgstr "%s: \"%s\" Å×À̺í(ÇØ´çDB: \"%s\") Ŭ·¯½ºÅÍ ÀÛ¾÷ ½ÇÆÐ: %s"
#: clusterdb.c:183
#, c-format
msgid "%s: clustering of database \"%s\" failed: %s"
msgstr "%s: \"%s\" µ¥ÀÌÅͺ£À̽º Ŭ·¯½ºÅÍ ½ÇÆÐ: %s"
#: clusterdb.c:219
#, c-format
msgid "%s: clustering database \"%s\"\n"
msgstr "%s: \"%s\" µ¥ÀÌÅͺ£À̽º Ŭ·¯½ºÅÍ ÀÛ¾÷ Áß\n"
#: clusterdb.c:233
#, c-format
msgid ""
"%s clusters all previously clustered tables in a database.\n"
"\n"
msgstr ""
"%s ÇÁ·Î±×·¥Àº DB ¾È¿¡¼ ÀÌÀü¿¡ Ŭ·¯½ºÅÍµÈ ¸ðµç Å×À̺íÀ» ã¾Æ\n"
"´Ù½Ã Ŭ·¯½ºÅÍ ÀÛ¾÷À» ÇÕ´Ï´Ù.\n"
"\n"
#: clusterdb.c:235 vacuumdb.c:261 reindexdb.c:333
#, c-format
msgid " %s [OPTION]... [DBNAME]\n"
msgstr " %s [¿É¼Ç]... [DBÀ̸§]\n"
#: clusterdb.c:237
#, c-format
msgid " -a, --all cluster all databases\n"
msgstr " -a, --all ¸ðµç µ¥ÀÌÅͺ£À̽º¸¦ ´ë»óÀ¸·Î\n"
#: clusterdb.c:238
#, c-format
msgid " -d, --dbname=DBNAME database to cluster\n"
msgstr " -d, --dbname=DBNAME Ŭ·¯½ºÅÍ ÀÛ¾÷ÇÒ DB\n"
#: clusterdb.c:239
#, c-format
msgid " -t, --table=TABLE cluster specific table only\n"
msgstr " -t, --table=TABLE ÁöÁ¤ÇÑ Å×ÀÌºí¸¸ Ŭ·¯½ºÅÍ\n"
#: clusterdb.c:249
#, c-format
msgid ""
"\n"
"Read the description of the SQL command CLUSTER for details.\n"
msgstr ""
"\n"
"º¸´Ù ÀÚ¼¼ÇÑ ³»¿ëÀº CLUSTER SQL ¸í·É¾î ¼³¸í¼¸¦ ÂüÁ¶ÇϽʽÿÀ.\n"
#: vacuumdb.c:135
#, c-format
msgid "%s: cannot vacuum all databases and a specific one at the same time\n"
msgstr ""
"%s: -a ¿É¼ÇÀÌ ÀÖÀ» °æ¿ì´Â ÇÑ µ¥ÀÌÅͺ£À̽º¸¦ ´ë»óÀ¸·Î ÀÛ¾÷À» ÁøÇàÇÒ ¼ö ¾ø½À´Ï"
"´Ù.\n"
#: vacuumdb.c:141
#, c-format
msgid "%s: cannot vacuum a specific table in all databases\n"
msgstr "%s: ¸ðµç µ¥ÀÌÅͺ£À̽º¸¦ ´ë»óÀ¸·Î ƯÁ¤ Å×À̺íÀ» û¼ÒÇÒ ¼ö´Â ¾øÀ½\n"
#: vacuumdb.c:205
#, c-format
msgid "%s: vacuuming of table \"%s\" in database \"%s\" failed: %s"
msgstr "%s: \"%s\" Å×À̺í (ÇØ´ç DB: \"%s\") û¼ÒÇÏ±â ½ÇÆÐ: %s"
#: vacuumdb.c:208
#, c-format
msgid "%s: vacuuming of database \"%s\" failed: %s"
msgstr "%s: \"%s\" µ¥ÀÌÅͺ£À̽º û¼ÒÇÏ±â ½ÇÆÐ: %s"
#: vacuumdb.c:245
#, c-format
msgid "%s: vacuuming database \"%s\"\n"
msgstr "%s: \"%s\" µ¥ÀÌÅͺ£À̽º¸¦ û¼Ò Áß\n"
#: vacuumdb.c:259
#, c-format
msgid ""
"%s cleans and analyzes a PostgreSQL database.\n"
"\n"
msgstr ""
"%s ÇÁ·Î±×·¥Àº PostgreSQL µ¥ÀÌÅͺ£À̽º ÀÚ·á Á¤¸® ¹×\n"
"Äû¸® ÃÖÀûȱâÀÇ Âü°í ÀڷḦ °»½ÅÇÕ´Ï´Ù.\n"
"\n"
#: vacuumdb.c:263
#, c-format
msgid " -a, --all vacuum all databases\n"
msgstr " -a, --all ¸ðµç µ¥ÀÌÅͺ£À̽º û¼Ò\n"
#: vacuumdb.c:264
#, c-format
msgid " -d, --dbname=DBNAME database to vacuum\n"
msgstr " -d, --dbname=DBNAME DBNAME µ¥ÀÌÅͺ£À̽º û¼Ò\n"
#: vacuumdb.c:265
#, c-format
msgid " -t, --table='TABLE[(COLUMNS)]' vacuum specific table only\n"
msgstr " -t, --table='TABLE[(COLUMNS)]' ÁöÁ¤ÇÑ Æ¯Á¤ Å×ÀÌºí¸¸ û¼Ò\n"
#: vacuumdb.c:266
#, c-format
msgid " -f, --full do full vacuuming\n"
msgstr " -f, --full ´ëû¼Ò\n"
#: vacuumdb.c:267
#, c-format
msgid " -z, --analyze update optimizer hints\n"
msgstr " -z, --analyze Äõ¸®ÃÖÀûȱâ ÈùÆ® ÀڷḦ °»½ÅÇÔ\n"
#: vacuumdb.c:268
#, c-format
msgid ""
" -e, --echo show the commands being sent to the "
"server\n"
msgstr " -e, --echo ¼¹ö·Î º¸³»´Â ¸í·ÉµéÀ» º¸¿©ÁÜ\n"
#: vacuumdb.c:269
#, c-format
msgid " -q, --quiet don't write any messages\n"
msgstr " -q, --quiet ¾î¶°ÇÑ ¸Þ½ÃÁöµµ º¸¿©ÁÖÁö ¾ÊÀ½\n"
#: vacuumdb.c:270
#, c-format
msgid " -v, --verbose write a lot of output\n"
msgstr " -v, --verbose ÀÛ¾÷³»¿ªÀÇ ÀÚ¼¼ÇÑ Ãâ·Â\n"
#: vacuumdb.c:271
#, c-format
msgid " --help show this help, then exit\n"
msgstr " --help ÀÌ µµ¿ò¸»À» º¸¿©ÁÖ°í ¸¶Ä§\n"
#: vacuumdb.c:272
#, c-format
msgid ""
" --version output version information, then exit\n"
msgstr " --version ¹öÀü Á¤º¸¸¦ º¸¿©ÁÖ°í ¸¶Ä§\n"
#: vacuumdb.c:278
#, c-format
msgid ""
"\n"
"Read the description of the SQL command VACUUM for details.\n"
msgstr ""
"\n"
"º¸´Ù ÀÚ¼¼ÇÑ ³»¿ëÀº VACUUM SQL ¸í·É¾î ¼³¸í¼¸¦ ÂüÁ¶ÇϽʽÿÀ.\n"
#: reindexdb.c:133
#, c-format
msgid "%s: cannot reindex all databases and a specific one at the same time\n"
msgstr ""
"%s: ¸ðµç µ¥ÀÌÅͺ£À̽º Àç»öÀÎ ÀÛ¾÷°ú ƯÁ¤ µ¥ÀÌÅͺ£À̽º Àç»öÀÎ ÀÛ¾÷Àº µ¿½Ã¿¡ Áø"
"ÇàÇÒ ¼ö ¾ø½À´Ï´Ù\n"
#: reindexdb.c:138
#, c-format
msgid "%s: cannot reindex all databases and system catalogs at the same time\n"
msgstr ""
"%s: ¸ðµç µ¥ÀÌÅͺ£À̽º Àç»öÀÎ ÀÛ¾÷°ú ½Ã½ºÅÛ Ä«Å»·Î±× Àç»öÀÎ ÀÛ¾÷Àº µ¿½Ã¿¡ ÁøÇà"
"ÇÒ ¼ö ¾ø½À´Ï´Ù\n"
#: reindexdb.c:143
#, c-format
msgid "%s: cannot reindex a specific table in all databases\n"
msgstr ""
"%s: ¸ðµç µ¥ÀÌÅͺ£À̽º Àç»öÀÎ ÀÛ¾÷¿¡¼ ƯÁ¤ Å×À̺íÀÇ Àç»öÀÎ ÀÛ¾÷À» ÁöÁ¤ÇÒ ¼ö "
"¾ø½À´Ï´Ù\n"
#: reindexdb.c:148
#, c-format
msgid "%s: cannot reindex a specific index in all databases\n"
msgstr ""
"%s: ¸ðµç µ¥ÀÌÅͺ£À̽º Àç»öÀÎ ÀÛ¾÷¿¡¼ ƯÁ¤ À妽º Àç»öÀÎ ÀÛ¾÷À» ÁöÁ¤ÇÒ ¼ö ¾ø"
"½À´Ï´Ù\n"
#: reindexdb.c:159
#, c-format
msgid ""
"%s: cannot reindex a specific table and system catalogs at the same time\n"
msgstr ""
"%s: ƯÁ¤ Å×À̺í°ú ½Ã½ºÅÛ Ä«Å»·Î±× Àç»öÀÎ ÀÛ¾÷Àº µ¿½Ã¿¡ ÁøÇàÇÒ ¼ö ¾ø½À´Ï´Ù\n"
#: reindexdb.c:164
#, c-format
msgid ""
"%s: cannot reindex a specific index and system catalogs at the same time\n"
msgstr ""
"%s: ƯÁ¤ À妽º¿Í ½Ã½ºÅÛ Ä«Å»·Î±× Àç»öÀÎ ÀÛ¾÷Àº µ¿½Ã¿¡ ÁøÇàÇÒ ¼ö ¾ø½À´Ï´Ù\n"
#: reindexdb.c:239
#, c-format
msgid "%s: reindexing of table \"%s\" in database \"%s\" failed: %s"
msgstr "%s: \"%s\" Å×À̺í(ÇØ´çDB: \"%s\") Àç»öÀÎ ÀÛ¾÷ ½ÇÆÐ: %s"
#: reindexdb.c:242
#, c-format
msgid "%s: reindexing of index \"%s\" in database \"%s\" failed: %s"
msgstr "%s: \"%s\" À妽º(ÇØ´çDB: \"%s\") Àç»öÀÎ ÀÛ¾÷ ½ÇÆÐ: %s"
#: reindexdb.c:245
#, c-format
msgid "%s: reindexing of database \"%s\" failed: %s"
msgstr "%s: \"%s\" µ¥ÀÌÅͺ£À̽º Àç»öÀÎ ÀÛ¾÷ ½ÇÆÐ: %s"
#: reindexdb.c:280
#, c-format
msgid "%s: reindexing database \"%s\"\n"
msgstr "%s: \"%s\" µ¥ÀÌÅͺ£À̽º Àç»öÀÎ ÀÛ¾÷ Áß\n"
#: reindexdb.c:311
#, c-format
msgid "%s: reindexing of system catalogs failed: %s"
msgstr "%s: ½Ã½ºÅÛ Ä«Å»·Î±× Àç»öÀÎ ÀÛ¾÷ ½ÇÆÐ: %s"
#: reindexdb.c:331
#, c-format
msgid ""
"%s reindexes a PostgreSQL database.\n"
"\n"
msgstr ""
"%s ÇÁ·Î±×·¥Àº PostgreSQL µ¥ÀÌÅͺ£À̽º Àç»öÀÎ ÀÛ¾÷À» ÇÕ´Ï´Ù.\n"
"\n"
#: reindexdb.c:335
#, c-format
msgid " -a, --all reindex all databases\n"
msgstr " -a, --all ¸ðµç µ¥ÀÌÅͺ£À̽º Àç»öÀÎ\n"
#: reindexdb.c:336
#, c-format
msgid " -s, --system reindex system catalogs\n"
msgstr " -s, --system ½Ã½ºÅÛ Ä«Å»·Î±× Àç»öÀÎ\n"
#: reindexdb.c:337
#, c-format
msgid " -d, --dbname=DBNAME database to reindex\n"
msgstr " -d, --dbname=DBNAME ÁöÁ¤ÇÑ µ¥ÀÌÅͺ£À̽ºÀÇ Àç»öÀÎ ÀÛ¾÷\n"
#: reindexdb.c:338
#, c-format
msgid " -t, --table=TABLE reindex specific table only\n"
msgstr " -t, --table=TABLE ÁöÁ¤ÇÑ Å×ÀÌºí¸¸ Àç»öÀÎ ÀÛ¾÷\n"
#: reindexdb.c:339
#, c-format
msgid " -i, --index=INDEX recreate specific index only\n"
msgstr " -i, --index=INDEX ÁöÁ¤ÇÑ À妽º¸¸ ´Ù½Ã ¸¸µë\n"
#: reindexdb.c:349
#, c-format
msgid ""
"\n"
"Read the description of the SQL command REINDEX for details.\n"
msgstr ""
"\n"
"º¸´Ù ÀÚ¼¼ÇÑ ³»¿ëÀº REINDEX SQL ¸í·É¾î ¼³¸í¼¸¦ ÂüÁ¶ÇϽʽÿÀ.\n"
#: common.c:39
#, c-format
msgid "%s: could not obtain information about current user: %s\n"
msgstr "%s: ÇöÀç »ç¿ëÀÚ Á¤º¸¸¦ ±¸ÇÒ ¼ö ¾øÀ½: %s\n"
#: common.c:50
#, c-format
msgid "%s: could not get current user name: %s\n"
msgstr "%s: ÇöÀç »ç¿ëÀÚ À̸§À» ±¸ÇÒ ¼ö ¾øÀ½: %s\n"
#: common.c:97 common.c:123
msgid "Password: "
msgstr "ºñ¹Ð¹øÈ£:"
#: common.c:110
#, c-format
msgid "%s: could not connect to database %s\n"
msgstr "%s: %s µ¥ÀÌÅͺ£À̽º¿¡ ¿¬°á ÇÒ ¼ö ¾øÀ½\n"
#: common.c:133
#, c-format
msgid "%s: could not connect to database %s: %s"
msgstr "%s: %s µ¥ÀÌÅͺ£À̽º¿¡ ¿¬°á ÇÒ ¼ö ¾øÀ½: %s"
#: common.c:157 common.c:185
#, c-format
msgid "%s: query failed: %s"
msgstr "%s: Äõ¸® ½ÇÆÐ: %s"
#: common.c:159 common.c:187
#, c-format
msgid "%s: query was: %s\n"
msgstr "%s: »ç¿ëµÈ Äõ¸®: %s\n"
#. translator: abbreviation for "yes"
#: common.c:202
msgid "y"
msgstr "y"
#. translator: abbreviation for "no"
#: common.c:204
msgid "n"
msgstr "n"
#: common.c:215
#, c-format
msgid "%s (%s/%s) "
msgstr "%s (%s/%s) "
#: common.c:236
#, c-format
msgid "Please answer \"%s\" or \"%s\".\n"
msgstr "\"%s\" ¶Ç´Â \"%s\" ¸¸ Çã¿ëÇÕ´Ï´Ù.\n"
|