~ubuntu-branches/ubuntu/natty/postgresql-8.4/natty

« back to all changes in this revision

Viewing changes to src/bin/scripts/po/ko.po

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2010-10-05 20:41:08 UTC
  • mfrom: (1.2.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20101005204108-e32jzj8hiexjffss
Tags: 8.4.5-0ubuntu10.10
* New upstream security/bug fix update: (LP: #655293)
  - Use a separate interpreter for each calling SQL userid in PL/Perl
    and PL/Tcl.
    This change prevents security problems that can be caused by
    subverting Perl or Tcl code that will be executed later in the same
    session under another SQL user identity (for example, within a
    SECURITY DEFINER function). Most scripting languages offer numerous
    ways that that might be done, such as redefining standard functions
    or operators called by the target function. Without this change,
    any SQL user with Perl or Tcl language usage rights can do
    essentially anything with the SQL privileges of the target
    function's owner.
    The cost of this change is that intentional communication among
    Perl and Tcl functions becomes more difficult. To provide an escape
    hatch, PL/PerlU and PL/TclU functions continue to use only one
    interpreter per session. This is not considered a security issue
    since all such functions execute at the trust level of a database
    superuser already.
    It is likely that third-party procedural languages that claim to
    offer trusted execution have similar security issues. We advise
    contacting the authors of any PL you are depending on for
    security-critical purposes.
    Our thanks to Tim Bunce for pointing out this issue
    (CVE-2010-3433).
  - Prevent possible crashes in pg_get_expr() by disallowing it from
    being called with an argument that is not one of the system catalog
    columns it's intended to be used with.
  - Fix incorrect placement of placeholder evaluation.
    This bug could result in query outputs being non-null when they
    should be null, in cases where the inner side of an outer join is a
    sub-select with non-strict expressions in its output list.
  - Fix possible duplicate scans of UNION ALL member relations.
  - Fix "cannot handle unplanned sub-select" error.
    This occurred when a sub-select contains a join alias reference
    that expands into an expression containing another sub-select.
  - Fix mishandling of whole-row Vars that reference a view or
    sub-select and appear within a nested sub-select.
  - Fix mishandling of cross-type IN comparisons.
    This could result in failures if the planner tried to implement an
    IN join with a sort-then-unique-then-plain-join plan.
  - Fix computation of "ANALYZE" statistics for tsvector columns.
    The original coding could produce incorrect statistics, leading to
    poor plan choices later.
  - Improve planner's estimate of memory used by array_agg(),
    string_agg(), and similar aggregate functions.
    The previous drastic underestimate could lead to out-of-memory
    failures due to inappropriate choice of a hash-aggregation plan.
  - Fix failure to mark cached plans as transient.
    If a plan is prepared while "CREATE INDEX CONCURRENTLY" is in
    progress for one of the referenced tables, it is supposed to be
    re-planned once the index is ready for use. This was not happening
    reliably.
  - Reduce PANIC to ERROR in some occasionally-reported btree failure
    cases, and provide additional detail in the resulting error
    messages.
    This should improve the system's robustness with corrupted indexes.
  - Fix incorrect search logic for partial-match queries with GIN
    indexes.
    Cases involving AND/OR combination of several GIN index conditions
    didn't always give the right answer, and were sometimes much slower
    than necessary.
  - Prevent show_session_authorization() from crashing within
    autovacuum processes.
  - Defend against functions returning setof record where not all the
    returned rows are actually of the same rowtype.
  - Fix possible corruption of pending trigger event lists during
    subtransaction rollback.
    This could lead to a crash or incorrect firing of triggers.
  - Fix possible failure when hashing a pass-by-reference function
    result.
  - Improve merge join's handling of NULLs in the join columns.
    A merge join can now stop entirely upon reaching the first NULL, if
    the sort order is such that NULLs sort high.
  - Take care to fsync the contents of lockfiles (both "postmaster.pid"
    and the socket lockfile) while writing them.
    This omission could result in corrupted lockfile contents if the
    machine crashes shortly after postmaster start. That could in turn
    prevent subsequent attempts to start the postmaster from
    succeeding, until the lockfile is manually removed.
  - Avoid recursion while assigning XIDs to heavily-nested
    subtransactions.
    The original coding could result in a crash if there was limited
    stack space.
  - Avoid holding open old WAL segments in the walwriter process.
    The previous coding would prevent removal of no-longer-needed
    segments.
  - Fix log_line_prefix's %i escape, which could produce junk early in
    backend startup.
  - Prevent misinterpretation of partially-specified relation options
    for TOAST tables.
    In particular, fillfactor would be read as zero if any other
    reloption had been set for the table, leading to serious bloat.
  - Fix inheritance count tracking in "ALTER TABLE ... ADD CONSTRAINT"
  - Fix possible data corruption in "ALTER TABLE ... SET TABLESPACE"
    when archiving is enabled.
  - Allow "CREATE DATABASE" and "ALTER DATABASE ... SET TABLESPACE" to
    be interrupted by query-cancel.
  - Improve "CREATE INDEX"'s checking of whether proposed index
    expressions are immutable.
  - Fix "REASSIGN OWNED" to handle operator classes and families.
  - Fix possible core dump when comparing two empty tsquery values.
  - Fix LIKE's handling of patterns containing % followed by _.
    We've fixed this before, but there were still some
    incorrectly-handled cases.
  - Re-allow input of Julian dates prior to 0001-01-01 AD.
    Input such as 'J100000'::date worked before 8.4, but was
    unintentionally broken by added error-checking.
  - Fix PL/pgSQL to throw an error, not crash, if a cursor is closed
    within a FOR loop that is iterating over that cursor.
  - In PL/Python, defend against null pointer results from
    PyCObject_AsVoidPtr and PyCObject_FromVoidPtr.
  - In libpq, fix full SSL certificate verification for the case where
    both host and hostaddr are specified.
  - Make psql recognize "DISCARD ALL" as a command that should not be
    encased in a transaction block in autocommit-off mode.
  - Fix some issues in pg_dump's handling of SQL/MED objects.
    Notably, pg_dump would always fail if run by a non-superuser, which
    was not intended.
  - Improve pg_dump and pg_restore's handling of non-seekable archive
    files.
    This is important for proper functioning of parallel restore.
  - Improve parallel pg_restore's ability to cope with selective
    restore (-L option).
    The original code tended to fail if the -L file commanded a
    non-default restore ordering.
  - Fix ecpg to process data from RETURNING clauses correctly.
  - Fix some memory leaks in ecpg.
  - Improve "contrib/dblink"'s handling of tables containing dropped
    columns.
  - Fix connection leak after "duplicate connection name" errors in
    "contrib/dblink".
  - Fix "contrib/dblink" to handle connection names longer than 62
    bytes correctly.
  - Add hstore(text, text) function to "contrib/hstore".
    This function is the recommended substitute for the now-deprecated
    => operator. It was back-patched so that future-proofed code can be
    used with older server versions. Note that the patch will be
    effective only after "contrib/hstore" is installed or reinstalled
    in a particular database. Users might prefer to execute the "CREATE
    FUNCTION" command by hand, instead.
  - Update build infrastructure and documentation to reflect the source
    code repository's move from CVS to Git.
* debian/postgresql-8.4.preinst: Add missing debhelper token.
* debian/control: Bump Standards-Version to 3.9.1 (no changes necessary).

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
#
4
4
msgid ""
5
5
msgstr ""
6
 
"Project-Id-Version: PostgreSQL 8.2\n"
7
 
"Report-Msgid-Bugs-To: \n"
8
 
"POT-Creation-Date: 2007-02-07 00:40+0900\n"
9
 
"PO-Revision-Date: 2004-12-16 02:11+0900\n"
10
 
"Last-Translator: Ioseph Kim <ioseph@uri.sarang.net>\n"
11
 
"Language-Team: KOREAN <pgsql-kr@postgresql.or.kr>\n"
 
6
"Project-Id-Version: PostgreSQL 8.4\n"
 
7
"Report-Msgid-Bugs-To: pgsql-bugs@postgresql.org\n"
 
8
"POT-Creation-Date: 2010-09-09 16:34+0000\n"
 
9
"PO-Revision-Date: 2010-09-24 12:37-0400\n"
 
10
"Last-Translator: EnterpriseDB translation team <dev-escalations@enterprisedb.com>\n"
 
11
"Language-Team: EnterpriseDB translation team <dev-escalations@enterprisedb.com>\n"
12
12
"MIME-Version: 1.0\n"
13
13
"Content-Type: text/plain; charset=euc-kr\n"
14
14
"Content-Transfer-Encoding: 8bit\n"
 
15
"Plural-Forms: nplurals=1; plural=0;\n"
15
16
 
16
 
#: createdb.c:102 createdb.c:121 createlang.c:85 createlang.c:106
17
 
#: createlang.c:152 createuser.c:157 createuser.c:172 dropdb.c:84 dropdb.c:93
18
 
#: dropdb.c:101 droplang.c:96 droplang.c:117 droplang.c:164 dropuser.c:84
19
 
#: dropuser.c:99 clusterdb.c:95 clusterdb.c:110 vacuumdb.c:112 vacuumdb.c:127
20
 
#: reindexdb.c:111 reindexdb.c:125
 
17
#: createdb.c:114 createdb.c:133 createlang.c:89 createlang.c:110
 
18
#: createlang.c:163 createuser.c:149 createuser.c:164 dropdb.c:83 dropdb.c:92
 
19
#: dropdb.c:100 droplang.c:100 droplang.c:121 droplang.c:175 dropuser.c:83
 
20
#: dropuser.c:98 clusterdb.c:104 clusterdb.c:119 vacuumdb.c:121 vacuumdb.c:136
 
21
#: reindexdb.c:114 reindexdb.c:128
21
22
#, c-format
22
23
msgid "Try \"%s --help\" for more information.\n"
23
24
msgstr "���� �ڼ��� ������ \"%s --help\"\n"
24
25
 
25
 
#: createdb.c:119 createlang.c:104 createuser.c:170 dropdb.c:99 droplang.c:115
26
 
#: dropuser.c:97 clusterdb.c:108 vacuumdb.c:125 reindexdb.c:124
 
26
#: createdb.c:131 createlang.c:108 createuser.c:162 dropdb.c:98 droplang.c:119
 
27
#: dropuser.c:96 clusterdb.c:117 vacuumdb.c:134 reindexdb.c:127
27
28
#, c-format
28
29
msgid "%s: too many command-line arguments (first is \"%s\")\n"
29
 
msgstr "%s: �ʹ� ���� ������ ���ڵ� (���� \"%s\")\n"
30
 
 
31
 
#: createdb.c:129
 
30
msgstr "%s: �ʹ� ���� ������ �μ��� (���� \"%s\")\n"
 
31
 
 
32
#: createdb.c:141
 
33
#, c-format
 
34
msgid "%s: only one of --locale and --lc-ctype can be specified\n"
 
35
msgstr "%s: --locale �� --lc-ctype �� �ϳ��� ������ �� ����\n"
 
36
 
 
37
#: createdb.c:147
 
38
#, c-format
 
39
msgid "%s: only one of --locale and --lc-collate can be specified\n"
 
40
msgstr "%s: --locale �� --lc-collate �� �ϳ��� ������ �� ����\n"
 
41
 
 
42
#: createdb.c:159
32
43
#, c-format
33
44
msgid "%s: \"%s\" is not a valid encoding name\n"
34
45
msgstr "%s: \"%s\" ���ڵ��� ��� ������ ���ڵ� �̸��� �ƴ�\n"
35
46
 
36
 
#: createdb.c:169
 
47
#: createdb.c:204
37
48
#, c-format
38
49
msgid "%s: database creation failed: %s"
39
50
msgstr "%s: �����ͺ��̽� ����� ����: %s"
40
51
 
41
 
#: createdb.c:198
 
52
#: createdb.c:227
42
53
#, c-format
43
54
msgid "%s: comment creation failed (database was created): %s"
44
55
msgstr "%s: �ڸ�Ʈ �߰��ϱ� ���� (�����ͺ��̽��� ���������): %s"
45
56
 
46
 
#: createdb.c:220
 
57
#: createdb.c:244
47
58
#, c-format
48
59
msgid ""
49
60
"%s creates a PostgreSQL database.\n"
52
63
"%s ���α׷��� PostgreSQL �����ͺ��̽��� ����ϴ�.\n"
53
64
"\n"
54
65
 
55
 
#: createdb.c:221 createlang.c:204 createuser.c:313 dropdb.c:146
56
 
#: droplang.c:321 dropuser.c:145 clusterdb.c:234 vacuumdb.c:260
57
 
#: reindexdb.c:332
 
66
#: createdb.c:245 createlang.c:215 createuser.c:300 dropdb.c:140
 
67
#: droplang.c:332 dropuser.c:139 clusterdb.c:236 vacuumdb.c:262
 
68
#: reindexdb.c:313
58
69
#, c-format
59
70
msgid "Usage:\n"
60
71
msgstr "����:\n"
61
72
 
62
 
#: createdb.c:222
 
73
#: createdb.c:246
63
74
#, c-format
64
75
msgid "  %s [OPTION]... [DBNAME] [DESCRIPTION]\n"
65
76
msgstr "  %s [�ɼ�]... [DB�̸�] [����]\n"
66
77
 
67
 
#: createdb.c:223 createlang.c:206 createuser.c:315 dropdb.c:148
68
 
#: droplang.c:323 dropuser.c:147 clusterdb.c:236 vacuumdb.c:262
69
 
#: reindexdb.c:334
 
78
#: createdb.c:247 createlang.c:217 createuser.c:302 dropdb.c:142
 
79
#: droplang.c:334 dropuser.c:141 clusterdb.c:238 vacuumdb.c:264
 
80
#: reindexdb.c:315
70
81
#, c-format
71
82
msgid ""
72
83
"\n"
75
86
"\n"
76
87
"�ɼǵ�:\n"
77
88
 
78
 
#: createdb.c:224
 
89
#: createdb.c:248
79
90
#, c-format
80
91
msgid "  -D, --tablespace=TABLESPACE  default tablespace for the database\n"
81
92
msgstr ""
82
93
"  -D, --tablespace=TABLESPACE  �����ͺ��̽��� ���� �⺻ ���̺������̽�\n"
83
94
 
84
 
#: createdb.c:225
 
95
#: createdb.c:249
 
96
#, c-format
 
97
msgid ""
 
98
"  -e, --echo                   show the commands being sent to the server\n"
 
99
msgstr "  -e, --echo                   ������ ������ �۾� ���ɵ��� ������\n"
 
100
 
 
101
#: createdb.c:250
85
102
#, c-format
86
103
msgid "  -E, --encoding=ENCODING      encoding for the database\n"
87
104
msgstr "  -E, --encoding=ENCODING      �����ͺ��̽� ���ڵ�\n"
88
105
 
89
 
#: createdb.c:226
 
106
#: createdb.c:251
 
107
#, c-format
 
108
msgid "  -l, --locale=LOCALE          locale settings for the database\n"
 
109
msgstr "  -l, --locale=LOCALE          �����ͺ��̽��� ��Ķ ����\n"
 
110
 
 
111
#: createdb.c:252
 
112
#, c-format
 
113
msgid "      --lc-collate=LOCALE      LC_COLLATE setting for the database\n"
 
114
msgstr "      --lc-collate=LOCALE      �����ͺ��̽��� LC_COLLATE ����\n"
 
115
 
 
116
#: createdb.c:253
 
117
#, c-format
 
118
msgid "      --lc-ctype=LOCALE        LC_CTYPE setting for the database\n"
 
119
msgstr "      --lc-ctype=LOCALE        �����ͺ��̽��� LC_CTYPE ����\n"
 
120
 
 
121
#: createdb.c:254
90
122
#, c-format
91
123
msgid "  -O, --owner=OWNER            database user to own the new database\n"
92
124
msgstr "  -O, --owner=OWNER            �����ͺ��̽� ������\n"
93
125
 
94
 
#: createdb.c:227
 
126
#: createdb.c:255
95
127
#, c-format
96
128
msgid "  -T, --template=TEMPLATE      template database to copy\n"
97
129
msgstr "  -T, --template=TEMPLATE      ������ ���ø� �����ͺ��̽�\n"
98
130
 
99
 
#: createdb.c:228
100
 
#, c-format
101
 
msgid ""
102
 
"  -e, --echo                   show the commands being sent to the server\n"
103
 
msgstr "  -e, --echo                   ������ ������ �۾� ���ɵ��� ������\n"
104
 
 
105
 
#: createdb.c:229
106
 
#, c-format
107
 
msgid "  -q, --quiet                  don't write any messages\n"
108
 
msgstr "  -q, --quiet                  ��� �޽����� ������ ����\n"
109
 
 
110
 
#: createdb.c:230
 
131
#: createdb.c:256
111
132
#, c-format
112
133
msgid "  --help                       show this help, then exit\n"
113
134
msgstr "  --help                       �� ������ �����ְ� ��ħ\n"
114
135
 
115
 
#: createdb.c:231
 
136
#: createdb.c:257
116
137
#, c-format
117
138
msgid "  --version                    output version information, then exit\n"
118
139
msgstr "  --version                    ���� ������ �����ְ� ��ħ\n"
119
140
 
120
 
#: createdb.c:232 createuser.c:335 clusterdb.c:244 vacuumdb.c:273
121
 
#: reindexdb.c:344
 
141
#: createdb.c:258 createlang.c:223 createuser.c:321 dropdb.c:147
 
142
#: droplang.c:340 dropuser.c:146 clusterdb.c:247 vacuumdb.c:276
 
143
#: reindexdb.c:325
122
144
#, c-format
123
145
msgid ""
124
146
"\n"
127
149
"\n"
128
150
"���� �ɼǵ�:\n"
129
151
 
130
 
#: createdb.c:233
 
152
#: createdb.c:259
131
153
#, c-format
132
154
msgid ""
133
155
"  -h, --host=HOSTNAME          database server host or socket directory\n"
134
156
msgstr ""
135
 
"  -h, --host=HOSTNAME          �����ͺ��̽� ���� ȣ��Ʈ�� ���� ���丮\n"
 
157
"  -h, --host=HOSTNAME          �����ͺ��̽� ���� ȣ��Ʈ�� ���� ���͸�\n"
136
158
 
137
 
#: createdb.c:234
 
159
#: createdb.c:260
138
160
#, c-format
139
161
msgid "  -p, --port=PORT              database server port\n"
140
162
msgstr "  -p, --port=PORT              �����ͺ��̽� ���� ��Ʈ\n"
141
163
 
142
 
#: createdb.c:235
 
164
#: createdb.c:261
143
165
#, c-format
144
166
msgid "  -U, --username=USERNAME      user name to connect as\n"
145
167
msgstr "  -U, --username=USERNAME      ������ �����\n"
146
168
 
147
 
#: createdb.c:236
148
 
#, c-format
149
 
msgid "  -W, --password               prompt for password\n"
150
 
msgstr "  -W, --password               ��й�ȣ �Է��� ���� ������Ʈ\n"
151
 
 
152
 
#: createdb.c:237
 
169
#: createdb.c:262
 
170
#, c-format
 
171
msgid "  -w, --no-password            never prompt for password\n"
 
172
msgstr "  -w, --no-password            ��ȣ ������Ʈ ǥ�� �� ��\n"
 
173
 
 
174
#: createdb.c:263
 
175
#, c-format
 
176
msgid "  -W, --password               force password prompt\n"
 
177
msgstr "  -W, --password               ��ȣ ������Ʈ ǥ����\n"
 
178
 
 
179
#: createdb.c:264
153
180
#, c-format
154
181
msgid ""
155
182
"\n"
159
186
"�ʱⰪ����, DB�̸��� �������� ������, ���� ������� �̸��� ���� �����ͺ��̽�"
160
187
"�� ��������ϴ�.\n"
161
188
 
162
 
#: createdb.c:238 createlang.c:216 createuser.c:342 dropdb.c:158
163
 
#: droplang.c:333 dropuser.c:157 clusterdb.c:250 vacuumdb.c:279
164
 
#: reindexdb.c:350
 
189
#: createdb.c:265 createlang.c:229 createuser.c:329 dropdb.c:153
 
190
#: droplang.c:346 dropuser.c:152 clusterdb.c:254 vacuumdb.c:283
 
191
#: reindexdb.c:332
165
192
#, c-format
166
193
msgid ""
167
194
"\n"
170
197
"\n"
171
198
"��������: <pgsql-bugs@postgresql.org>.\n"
172
199
 
173
 
#: createlang.c:135 droplang.c:146
 
200
#: createlang.c:140 droplang.c:151
174
201
msgid "Name"
175
202
msgstr "�̸�"
176
203
 
177
 
#: createlang.c:135 droplang.c:146
 
204
#: createlang.c:141 droplang.c:152
178
205
msgid "yes"
179
206
msgstr "��"
180
207
 
181
 
#: createlang.c:135 droplang.c:146
 
208
#: createlang.c:141 droplang.c:152
182
209
msgid "no"
183
210
msgstr "�ƴϿ�"
184
211
 
185
 
#: createlang.c:135 droplang.c:146
 
212
#: createlang.c:142 droplang.c:153
186
213
msgid "Trusted?"
187
214
msgstr "�ŷڵ�?"
188
215
 
189
 
#: createlang.c:142 droplang.c:153
 
216
#: createlang.c:151 droplang.c:162
190
217
msgid "Procedural Languages"
191
218
msgstr "���ν���� ����"
192
219
 
193
 
#: createlang.c:151 droplang.c:162
 
220
#: createlang.c:162 droplang.c:173
194
221
#, c-format
195
222
msgid "%s: missing required argument language name\n"
196
 
msgstr "%s: �ʼ� �׸���, ��� �̸��� ������ ���ڰ� �������ϴ�\n"
 
223
msgstr "%s: �ʼ� �׸���, ��� �̸��� ������ �μ��� �������ϴ�\n"
197
224
 
198
 
#: createlang.c:173
 
225
#: createlang.c:184
199
226
#, c-format
200
227
msgid "%s: language \"%s\" is already installed in database \"%s\"\n"
201
228
msgstr "%s: \"%s\" ���� �̹� \"%s\" �����ͺ��̽��� ��ġ�Ǿ� �ֽ��ϴ�.\n"
202
229
 
203
 
#: createlang.c:187
 
230
#: createlang.c:198
204
231
#, c-format
205
232
msgid "%s: language installation failed: %s"
206
233
msgstr "%s: ��� ��ġ ����: %s"
207
234
 
208
 
#: createlang.c:203
 
235
#: createlang.c:214
209
236
#, c-format
210
237
msgid ""
211
238
"%s installs a procedural language into a PostgreSQL database.\n"
214
241
"%s ���α׷��� PostgreSQL �����ͺ��̽��� ���ν���� �� ��ġ�մϴ�.\n"
215
242
"\n"
216
243
 
217
 
#: createlang.c:205 droplang.c:322
 
244
#: createlang.c:216 droplang.c:333
218
245
#, c-format
219
246
msgid "  %s [OPTION]... LANGNAME [DBNAME]\n"
220
247
msgstr "  %s [�ɼ�]... ����̸� [DB�̸�]\n"
221
248
 
222
 
#: createlang.c:207
 
249
#: createlang.c:218
223
250
#, c-format
224
251
msgid "  -d, --dbname=DBNAME       database to install language in\n"
225
252
msgstr "  -d, --dbname=DBNAME       �� ��ġ�� DB�̸�\n"
226
253
 
227
 
#: createlang.c:208 createuser.c:331 dropdb.c:149 droplang.c:325
228
 
#: dropuser.c:148 clusterdb.c:240 reindexdb.c:340
 
254
#: createlang.c:219 createuser.c:306 dropdb.c:143 droplang.c:336
 
255
#: dropuser.c:142 clusterdb.c:241 reindexdb.c:318
229
256
#, c-format
230
257
msgid ""
231
258
"  -e, --echo                show the commands being sent to the server\n"
232
259
msgstr "  -e, --echo                ������ ������ �۾� ������ ������\n"
233
260
 
234
 
#: createlang.c:209 droplang.c:326
 
261
#: createlang.c:220 droplang.c:337
235
262
#, c-format
236
263
msgid ""
237
264
"  -l, --list                show a list of currently installed languages\n"
238
265
msgstr "  -l, --list                ���� ��ġ �Ǿ��ִ� ������ ������\n"
239
266
 
240
 
#: createlang.c:210 createuser.c:336 dropdb.c:152 droplang.c:327
241
 
#: dropuser.c:151 clusterdb.c:245 vacuumdb.c:274 reindexdb.c:345
 
267
#: createlang.c:221 createuser.c:319 dropdb.c:145 droplang.c:338
 
268
#: dropuser.c:144 clusterdb.c:245 reindexdb.c:323
 
269
#, c-format
 
270
msgid "  --help                    show this help, then exit\n"
 
271
msgstr "  --help                    �� ������ �����ְ� ��ħ\n"
 
272
 
 
273
#: createlang.c:222 createuser.c:320 dropdb.c:146 droplang.c:339
 
274
#: dropuser.c:145 clusterdb.c:246 reindexdb.c:324
 
275
#, c-format
 
276
msgid "  --version                 output version information, then exit\n"
 
277
msgstr "  --version                 ���� ������ �����ְ� ��ħ\n"
 
278
 
 
279
#: createlang.c:224 createuser.c:322 dropdb.c:148 droplang.c:341
 
280
#: dropuser.c:147 clusterdb.c:248 vacuumdb.c:277 reindexdb.c:326
242
281
#, c-format
243
282
msgid "  -h, --host=HOSTNAME       database server host or socket directory\n"
244
283
msgstr ""
245
 
"  -h, --host=HOSTNAME       �����ͺ��̽� ���� ȣ��Ʈ �Ǵ� ���� ���丮\n"
 
284
"  -h, --host=HOSTNAME       �����ͺ��̽� ���� ȣ��Ʈ �Ǵ� ���� ���͸�\n"
246
285
 
247
 
#: createlang.c:211 createuser.c:337 dropdb.c:153 droplang.c:328
248
 
#: dropuser.c:152 clusterdb.c:246 vacuumdb.c:275 reindexdb.c:346
 
286
#: createlang.c:225 createuser.c:323 dropdb.c:149 droplang.c:342
 
287
#: dropuser.c:148 clusterdb.c:249 vacuumdb.c:278 reindexdb.c:327
249
288
#, c-format
250
289
msgid "  -p, --port=PORT           database server port\n"
251
290
msgstr "  -p, --port=PORT           �����ͺ��̽� ���� ��Ʈ\n"
252
291
 
253
 
#: createlang.c:212 dropdb.c:154 droplang.c:329 clusterdb.c:247 vacuumdb.c:276
254
 
#: reindexdb.c:347
 
292
#: createlang.c:226 dropdb.c:150 droplang.c:343 clusterdb.c:250 vacuumdb.c:279
 
293
#: reindexdb.c:328
255
294
#, c-format
256
295
msgid "  -U, --username=USERNAME   user name to connect as\n"
257
296
msgstr "  -U, --username=USERNAME   ������ ������̸�\n"
258
297
 
259
 
#: createlang.c:213 dropdb.c:155 droplang.c:330 clusterdb.c:248 vacuumdb.c:277
260
 
#: reindexdb.c:348
261
 
#, c-format
262
 
msgid "  -W, --password            prompt for password\n"
263
 
msgstr "  -W, --password            ��й�ȣ �Է��� ���� ������Ʈ\n"
264
 
 
265
 
#: createlang.c:214 createuser.c:333 dropdb.c:156 droplang.c:331
266
 
#: dropuser.c:155 clusterdb.c:242 reindexdb.c:342
267
 
#, c-format
268
 
msgid "  --help                    show this help, then exit\n"
269
 
msgstr "  --help                    �� ������ �����ְ� ��ħ\n"
270
 
 
271
 
#: createlang.c:215 createuser.c:334 dropdb.c:157 droplang.c:332
272
 
#: dropuser.c:156 clusterdb.c:243 reindexdb.c:343
273
 
#, c-format
274
 
msgid "  --version                 output version information, then exit\n"
275
 
msgstr "  --version                 ���� ������ �����ְ� ��ħ\n"
276
 
 
277
 
#: createuser.c:177
 
298
#: createlang.c:227 createuser.c:325 dropdb.c:151 droplang.c:344
 
299
#: dropuser.c:150 clusterdb.c:251 vacuumdb.c:280 reindexdb.c:329
 
300
#, c-format
 
301
msgid "  -w, --no-password         never prompt for password\n"
 
302
msgstr "  -w, --no-password         ��ȣ ������Ʈ ǥ�� �� ��\n"
 
303
 
 
304
#: createlang.c:228 createuser.c:326 dropdb.c:152 droplang.c:345
 
305
#: dropuser.c:151 clusterdb.c:252 vacuumdb.c:281 reindexdb.c:330
 
306
#, c-format
 
307
msgid "  -W, --password            force password prompt\n"
 
308
msgstr "  -W, --password            ��ȣ ������Ʈ ǥ����\n"
 
309
 
 
310
#: createuser.c:169
278
311
msgid "Enter name of role to add: "
279
312
msgstr "�߰��� �� ��(role)�̸�: "
280
313
 
281
 
#: createuser.c:184
 
314
#: createuser.c:176
282
315
msgid "Enter password for new role: "
283
 
msgstr "�� ���� ��й�ȣ: "
 
316
msgstr "�� ���� ��ȣ: "
284
317
 
285
 
#: createuser.c:185
 
318
#: createuser.c:177
286
319
msgid "Enter it again: "
287
 
msgstr "��й�ȣ Ȯ��: "
 
320
msgstr "��ȣ Ȯ��: "
288
321
 
289
 
#: createuser.c:188
 
322
#: createuser.c:180
290
323
#, c-format
291
324
msgid "Passwords didn't match.\n"
292
 
msgstr "��й�ȣ�� ���� Ʋ��.\n"
 
325
msgstr "��ȣ�� ���� Ʋ��.\n"
293
326
 
294
 
#: createuser.c:197
 
327
#: createuser.c:189
295
328
msgid "Shall the new role be a superuser?"
296
 
msgstr "�� ���� �������� �������� �����ұ��?"
 
329
msgstr "�� ���� superuser �������� �����ұ��?"
297
330
 
298
 
#: createuser.c:212
 
331
#: createuser.c:204
299
332
msgid "Shall the new role be allowed to create databases?"
300
333
msgstr "�� �� �ѿ��� �����ͺ��̽��� ���� �� �ִ� ������ �ٱ��?"
301
334
 
302
 
#: createuser.c:220
 
335
#: createuser.c:212
303
336
msgid "Shall the new role be allowed to create more new roles?"
304
337
msgstr "�� �� �ѿ��� �� �ٸ� ���� ���� �� �ִ� ������ �ٱ��?"
305
338
 
306
 
#: createuser.c:253
 
339
#: createuser.c:245
307
340
#, c-format
308
341
msgid "Password encryption failed.\n"
309
 
msgstr "��й�ȣ ��ȣȭ ����.\n"
 
342
msgstr "��ȣ ��ȣȭ ����.\n"
310
343
 
311
 
#: createuser.c:292
 
344
#: createuser.c:284
312
345
#, c-format
313
346
msgid "%s: creation of new role failed: %s"
314
347
msgstr "%s: �� �� ����� ����: %s"
315
348
 
316
 
#: createuser.c:312
 
349
#: createuser.c:299
317
350
#, c-format
318
351
msgid ""
319
352
"%s creates a new PostgreSQL role.\n"
322
355
"%s ���α׷��� PostgreSQL ���� ����ϴ�.\n"
323
356
"\n"
324
357
 
325
 
#: createuser.c:314 dropuser.c:146
 
358
#: createuser.c:301 dropuser.c:140
326
359
#, c-format
327
360
msgid "  %s [OPTION]... [ROLENAME]\n"
328
361
msgstr "  %s [�ɼ�]... [���̸�]\n"
329
362
 
330
 
#: createuser.c:316
331
 
#, c-format
332
 
msgid "  -s, --superuser           role will be superuser\n"
333
 
msgstr "  -s, --superuser           �������� �������� ����\n"
334
 
 
335
 
#: createuser.c:317
336
 
#, c-format
337
 
msgid "  -S, --no-superuser        role will not be superuser\n"
338
 
msgstr "  -S, --no-superuser        �Ϲ� ����� �������� ����\n"
339
 
 
340
 
#: createuser.c:318
 
363
#: createuser.c:303
 
364
#, c-format
 
365
msgid ""
 
366
"  -c, --connection-limit=N  connection limit for role (default: no limit)\n"
 
367
msgstr "  -c, --connection-limit=N  ���� ���� �� (�ʱⰪ: ������)\n"
 
368
 
 
369
#: createuser.c:304
341
370
#, c-format
342
371
msgid "  -d, --createdb            role can create new databases\n"
343
372
msgstr "  -d, --createdb            �� �����ͺ��̽��� ���� �� ����\n"
344
373
 
345
 
#: createuser.c:319
 
374
#: createuser.c:305
346
375
#, c-format
347
376
msgid "  -D, --no-createdb         role cannot create databases\n"
348
377
msgstr "  -D, --no-createdb         �� �����ͺ��̽��� ���� �� ����\n"
349
378
 
350
 
#: createuser.c:320
351
 
#, c-format
352
 
msgid "  -r, --createrole          role can create new roles\n"
353
 
msgstr "  -r, --createrole          �� ���� ���� �� ����\n"
354
 
 
355
 
#: createuser.c:321
356
 
#, c-format
357
 
msgid "  -R, --no-createrole       role cannot create roles\n"
358
 
msgstr "  -R, --no-createrole       �� ���� ���� �� ����\n"
359
 
 
360
 
#: createuser.c:322
361
 
#, c-format
362
 
msgid "  -l, --login               role can login (default)\n"
363
 
msgstr "  -l, --login               �α��� ��� (�ʱⰪ)\n"
364
 
 
365
 
#: createuser.c:323
366
 
#, c-format
367
 
msgid "  -L, --no-login            role cannot login\n"
368
 
msgstr "  -L, --no-login            �α��� �� �� ����\n"
369
 
 
370
 
#: createuser.c:324
 
379
#: createuser.c:307
 
380
#, c-format
 
381
msgid "  -E, --encrypted           encrypt stored password\n"
 
382
msgstr "  -E, --encrypted           ��ȣȭ�� ��ȣ ���\n"
 
383
 
 
384
#: createuser.c:308
371
385
#, c-format
372
386
msgid ""
373
387
"  -i, --inherit             role inherits privileges of roles it is a\n"
376
390
"  -i, --inherit             ���� ������ ����� �� ����\n"
377
391
"                            (�ʱⰪ)\n"
378
392
 
379
 
#: createuser.c:326
 
393
#: createuser.c:310
380
394
#, c-format
381
395
msgid "  -I, --no-inherit          role does not inherit privileges\n"
382
396
msgstr "  -I, --no-inherit          �� ���� ������ ����� �� ����\n"
383
397
 
384
 
#: createuser.c:327
385
 
#, c-format
386
 
msgid ""
387
 
"  -c, --connection-limit=N  connection limit for role (default: no limit)\n"
388
 
msgstr "  -c, --connection-limit=N  ���� ���� �� (�ʱⰪ: ������)\n"
389
 
 
390
 
#: createuser.c:328
 
398
#: createuser.c:311
 
399
#, c-format
 
400
msgid "  -l, --login               role can login (default)\n"
 
401
msgstr "  -l, --login               �α��� ��� (�ʱⰪ)\n"
 
402
 
 
403
#: createuser.c:312
 
404
#, c-format
 
405
msgid "  -L, --no-login            role cannot login\n"
 
406
msgstr "  -L, --no-login            �α��� �� �� ����\n"
 
407
 
 
408
#: createuser.c:313
 
409
#, c-format
 
410
msgid "  -N, --unencrypted         do not encrypt stored password\n"
 
411
msgstr "  -N, --unencrypted         ��ȣȭ ���� ���� ��ȣ ���\n"
 
412
 
 
413
#: createuser.c:314
391
414
#, c-format
392
415
msgid "  -P, --pwprompt            assign a password to new role\n"
393
 
msgstr "  -P, --pwprompt            �� ���� ��й�ȣ ����\n"
394
 
 
395
 
#: createuser.c:329
396
 
#, c-format
397
 
msgid "  -E, --encrypted           encrypt stored password\n"
398
 
msgstr "  -E, --encrypted           ��ȣȭ�� ��й�ȣ ���\n"
399
 
 
400
 
#: createuser.c:330
401
 
#, c-format
402
 
msgid "  -N, --unencrypted         do not encrypt stored password\n"
403
 
msgstr "  -N, --unencrypted         ��ȣȭ ���� ���� ��й�ȣ ���\n"
404
 
 
405
 
#: createuser.c:332 dropdb.c:151 dropuser.c:150 clusterdb.c:241
406
 
#: reindexdb.c:341
407
 
#, c-format
408
 
msgid "  -q, --quiet               don't write any messages\n"
409
 
msgstr "  -q, --quiet               ��� �޽����� �������� ����\n"
410
 
 
411
 
#: createuser.c:338
 
416
msgstr "  -P, --pwprompt            �� ���� ��ȣ ����\n"
 
417
 
 
418
#: createuser.c:315
 
419
#, c-format
 
420
msgid "  -r, --createrole          role can create new roles\n"
 
421
msgstr "  -r, --createrole          �� ���� ���� �� ����\n"
 
422
 
 
423
#: createuser.c:316
 
424
#, c-format
 
425
msgid "  -R, --no-createrole       role cannot create roles\n"
 
426
msgstr "  -R, --no-createrole       �� ���� ���� �� ����\n"
 
427
 
 
428
#: createuser.c:317
 
429
#, c-format
 
430
msgid "  -s, --superuser           role will be superuser\n"
 
431
msgstr "  -s, --superuser           superuser �������� ����\n"
 
432
 
 
433
#: createuser.c:318
 
434
#, c-format
 
435
msgid "  -S, --no-superuser        role will not be superuser\n"
 
436
msgstr "  -S, --no-superuser        �Ϲ� ����� �������� ����\n"
 
437
 
 
438
#: createuser.c:324
412
439
#, c-format
413
440
msgid ""
414
441
"  -U, --username=USERNAME   user name to connect as (not the one to create)\n"
416
443
"  -U, --username=USERNAME   ������ ������ �����\n"
417
444
"                            (����ڸ���� �۾��� �� �����)\n"
418
445
 
419
 
#: createuser.c:339 dropuser.c:154
420
 
#, c-format
421
 
msgid "  -W, --password            prompt for password to connect\n"
422
 
msgstr "  -W, --password            �����۾��� �ʿ��� ��й�ȣ �Է� ������Ʈ\n"
423
 
 
424
 
#: createuser.c:340
 
446
#: createuser.c:327
425
447
#, c-format
426
448
msgid ""
427
449
"\n"
428
 
"If one of -s, -S, -d, -D, -r, -R and ROLENAME is not specified, you will\n"
 
450
"If one of -d, -D, -r, -R, -s, -S, and ROLENAME is not specified, you will\n"
429
451
"be prompted interactively.\n"
430
452
msgstr ""
431
453
"\n"
432
 
"-s, -S, -d, -D, -r, -R, ���̸� ���ڵ� �� ��� �ϳ��� ������\n"
433
 
"���α׷��� �� ���� ���� ������Ʈ�� ����, ��ȭ������ ó���� ���Դϴ�.\n"
 
454
"-d, -D, -r, -R, -s, -S �� ROLENAME �� �ϳ��� �������� ������\n"
 
455
"��ȭ�� ������Ʈ�� ǥ�õ˴ϴ�.\n"
434
456
 
435
 
#: dropdb.c:92
 
457
#: dropdb.c:91
436
458
#, c-format
437
459
msgid "%s: missing required argument database name\n"
438
460
msgstr "%s: �ʼ� �׸��� �����ͺ��̽� �̸��� �������ϴ�\n"
439
461
 
440
 
#: dropdb.c:107
 
462
#: dropdb.c:106
441
463
#, c-format
442
464
msgid "Database \"%s\" will be permanently removed.\n"
443
465
msgstr "\"%s\" �����ͺ��̽��� ������ ���� �� ���Դϴ�.\n"
444
466
 
445
 
#: dropdb.c:108 dropuser.c:109
 
467
#: dropdb.c:107 dropuser.c:108
446
468
msgid "Are you sure?"
447
469
msgstr "���� ��� �ұ��? (y/n) "
448
470
 
449
 
#: dropdb.c:125
 
471
#: dropdb.c:124
450
472
#, c-format
451
473
msgid "%s: database removal failed: %s"
452
474
msgstr "%s: �����ͺ��̽� ���� ����: %s"
453
475
 
454
 
#: dropdb.c:145
 
476
#: dropdb.c:139
455
477
#, c-format
456
478
msgid ""
457
479
"%s removes a PostgreSQL database.\n"
460
482
"%s ���α׷��� PostgreSQL �����ͺ��̽��� �����մϴ�.\n"
461
483
"\n"
462
484
 
463
 
#: dropdb.c:147
 
485
#: dropdb.c:141
464
486
#, c-format
465
487
msgid "  %s [OPTION]... DBNAME\n"
466
488
msgstr "  %s [�ɼ�]... DB�̸�\n"
467
489
 
468
 
#: dropdb.c:150 dropuser.c:149
 
490
#: dropdb.c:144 dropuser.c:143
469
491
#, c-format
470
492
msgid "  -i, --interactive         prompt before deleting anything\n"
471
493
msgstr "  -i, --interactive         ����� ���� �� �� �� ���\n"
472
494
 
473
 
#: droplang.c:192
 
495
#: droplang.c:203
474
496
#, c-format
475
497
msgid "%s: language \"%s\" is not installed in database \"%s\"\n"
476
498
msgstr "%s: \"%s\" ���� \"%s\" �����ͺ��̽��� ��ġ �Ǿ����� �ʽ��ϴ�\n"
477
499
 
478
 
#: droplang.c:212
 
500
#: droplang.c:223
479
501
#, c-format
480
502
msgid ""
481
503
"%s: still %s functions declared in language \"%s\"; language not removed\n"
483
505
"%s: ���� %s���� �Լ��� \"%s\" ��� ������� �ۼ��Ǿ� ���ǰ� �ֽ��ϴ�; �� ��"
484
506
"��� ������ �� �����ϴ�.\n"
485
507
 
486
 
#: droplang.c:305
 
508
#: droplang.c:316
487
509
#, c-format
488
510
msgid "%s: language removal failed: %s"
489
511
msgstr "%s: ��� ���� ����: %s"
490
512
 
491
 
#: droplang.c:320
 
513
#: droplang.c:331
492
514
#, c-format
493
515
msgid ""
494
516
"%s removes a procedural language from a database.\n"
497
519
"%s ���α׷��� �����ͺ��̽����� ���ν���� �� �����մϴ�.\n"
498
520
"\n"
499
521
 
500
 
#: droplang.c:324
 
522
#: droplang.c:335
501
523
#, c-format
502
524
msgid ""
503
525
"  -d, --dbname=DBNAME       database from which to remove the language\n"
504
526
msgstr "  -d, --dbname=DBNAME       �� ������ �����ͺ��̽�\n"
505
527
 
506
 
#: dropuser.c:104
 
528
#: dropuser.c:103
507
529
msgid "Enter name of role to drop: "
508
530
msgstr "������ �� �̸��� �Է��Ͻʽÿ�: "
509
531
 
510
 
#: dropuser.c:108
 
532
#: dropuser.c:107
511
533
#, c-format
512
534
msgid "Role \"%s\" will be permanently removed.\n"
513
535
msgstr "\"%s\" ���� ������ ������ ���Դϴ�.\n"
514
536
 
515
 
#: dropuser.c:124
 
537
#: dropuser.c:123
516
538
#, c-format
517
539
msgid "%s: removal of role \"%s\" failed: %s"
518
540
msgstr "%s: \"%s\" �� ���� ����: %s"
519
541
 
520
 
#: dropuser.c:144
 
542
#: dropuser.c:138
521
543
#, c-format
522
544
msgid ""
523
545
"%s removes a PostgreSQL role.\n"
526
548
"%s ���α׷��� PostgreSQL ���� �����մϴ�.\n"
527
549
"\n"
528
550
 
529
 
#: dropuser.c:153
 
551
#: dropuser.c:149
530
552
#, c-format
531
553
msgid ""
532
554
"  -U, --username=USERNAME   user name to connect as (not the one to drop)\n"
533
555
msgstr "  -U, --username=USERNAME   �� �۾��� ������ DB�� ������ �����\n"
534
556
 
535
 
#: clusterdb.c:118
 
557
#: clusterdb.c:129
536
558
#, c-format
537
559
msgid "%s: cannot cluster all databases and a specific one at the same time\n"
538
560
msgstr "%s: ��� DB �۾��� Ư�� DB �۾��� ���ÿ� �� �� �����ϴ�.\n"
539
561
 
540
 
#: clusterdb.c:124
 
562
#: clusterdb.c:135
541
563
#, c-format
542
564
msgid "%s: cannot cluster a specific table in all databases\n"
543
565
msgstr "%s: ��� DB�� ������� Ư�� ���̺��� Ŭ�������� �� �����ϴ�.\n"
544
566
 
545
 
#: clusterdb.c:180
 
567
#: clusterdb.c:187
546
568
#, c-format
547
569
msgid "%s: clustering of table \"%s\" in database \"%s\" failed: %s"
548
570
msgstr "%s: \"%s\" ���̺�(�ش�DB: \"%s\") Ŭ������ �۾� ����: %s"
549
571
 
550
 
#: clusterdb.c:183
 
572
#: clusterdb.c:190
551
573
#, c-format
552
574
msgid "%s: clustering of database \"%s\" failed: %s"
553
575
msgstr "%s: \"%s\" �����ͺ��̽� Ŭ������ ����: %s"
557
579
msgid "%s: clustering database \"%s\"\n"
558
580
msgstr "%s: \"%s\" �����ͺ��̽� Ŭ������ �۾� ��\n"
559
581
 
560
 
#: clusterdb.c:233
 
582
#: clusterdb.c:235
561
583
#, c-format
562
584
msgid ""
563
585
"%s clusters all previously clustered tables in a database.\n"
567
589
"�ٽ� Ŭ������ �۾��� �մϴ�.\n"
568
590
"\n"
569
591
 
570
 
#: clusterdb.c:235 vacuumdb.c:261 reindexdb.c:333
 
592
#: clusterdb.c:237 vacuumdb.c:263 reindexdb.c:314
571
593
#, c-format
572
594
msgid "  %s [OPTION]... [DBNAME]\n"
573
595
msgstr "  %s [�ɼ�]... [DB�̸�]\n"
574
596
 
575
 
#: clusterdb.c:237
 
597
#: clusterdb.c:239
576
598
#, c-format
577
599
msgid "  -a, --all                 cluster all databases\n"
578
600
msgstr "  -a, --all                 ��� �����ͺ��̽��� �������\n"
579
601
 
580
 
#: clusterdb.c:238
 
602
#: clusterdb.c:240
581
603
#, c-format
582
604
msgid "  -d, --dbname=DBNAME       database to cluster\n"
583
605
msgstr "  -d, --dbname=DBNAME       Ŭ������ �۾��� DB\n"
584
606
 
585
 
#: clusterdb.c:239
 
607
#: clusterdb.c:242 reindexdb.c:320
 
608
#, c-format
 
609
msgid "  -q, --quiet               don't write any messages\n"
 
610
msgstr "  -q, --quiet               ��� �޽����� �������� ����\n"
 
611
 
 
612
#: clusterdb.c:243
586
613
#, c-format
587
614
msgid "  -t, --table=TABLE         cluster specific table only\n"
588
615
msgstr "  -t, --table=TABLE         ������ ���̺��� Ŭ������\n"
589
616
 
590
 
#: clusterdb.c:249
 
617
#: clusterdb.c:244
 
618
#, c-format
 
619
msgid "  -v, --verbose             write a lot of output\n"
 
620
msgstr "  -v, --verbose             ���� ��� �ۼ�\n"
 
621
 
 
622
#: clusterdb.c:253
591
623
#, c-format
592
624
msgid ""
593
625
"\n"
596
628
"\n"
597
629
"���� �ڼ��� ������ CLUSTER SQL ���ɾ� �������� �����Ͻʽÿ�.\n"
598
630
 
599
 
#: vacuumdb.c:135
 
631
#: vacuumdb.c:146
600
632
#, c-format
601
633
msgid "%s: cannot vacuum all databases and a specific one at the same time\n"
602
634
msgstr ""
603
635
"%s: -a �ɼ��� ���� ���� �� �����ͺ��̽��� ������� �۾��� ������ �� ������"
604
636
"��.\n"
605
637
 
606
 
#: vacuumdb.c:141
 
638
#: vacuumdb.c:152
607
639
#, c-format
608
640
msgid "%s: cannot vacuum a specific table in all databases\n"
609
641
msgstr "%s: ��� �����ͺ��̽��� ������� Ư�� ���̺��� û���� ���� ����\n"
610
642
 
611
 
#: vacuumdb.c:205
 
643
#: vacuumdb.c:212
612
644
#, c-format
613
645
msgid "%s: vacuuming of table \"%s\" in database \"%s\" failed: %s"
614
646
msgstr "%s: \"%s\" ���̺� (�ش� DB: \"%s\") û���ϱ� ����: %s"
615
647
 
616
 
#: vacuumdb.c:208
 
648
#: vacuumdb.c:215
617
649
#, c-format
618
650
msgid "%s: vacuuming of database \"%s\" failed: %s"
619
651
msgstr "%s: \"%s\" �����ͺ��̽� û���ϱ� ����: %s"
623
655
msgid "%s: vacuuming database \"%s\"\n"
624
656
msgstr "%s: \"%s\" �����ͺ��̽��� û�� ��\n"
625
657
 
626
 
#: vacuumdb.c:259
 
658
#: vacuumdb.c:261
627
659
#, c-format
628
660
msgid ""
629
661
"%s cleans and analyzes a PostgreSQL database.\n"
633
665
"���� ����ȭ���� ���� �ڷḦ �����մϴ�.\n"
634
666
"\n"
635
667
 
636
 
#: vacuumdb.c:263
 
668
#: vacuumdb.c:265
637
669
#, c-format
638
670
msgid "  -a, --all                       vacuum all databases\n"
639
671
msgstr "  -a, --all                       ��� �����ͺ��̽� û��\n"
640
672
 
641
 
#: vacuumdb.c:264
 
673
#: vacuumdb.c:266
642
674
#, c-format
643
675
msgid "  -d, --dbname=DBNAME             database to vacuum\n"
644
676
msgstr "  -d, --dbname=DBNAME             DBNAME �����ͺ��̽� û��\n"
645
677
 
646
 
#: vacuumdb.c:265
647
 
#, c-format
648
 
msgid "  -t, --table='TABLE[(COLUMNS)]'  vacuum specific table only\n"
649
 
msgstr "  -t, --table='TABLE[(COLUMNS)]'  ������ Ư�� ���̺��� û��\n"
650
 
 
651
 
#: vacuumdb.c:266
652
 
#, c-format
653
 
msgid "  -f, --full                      do full vacuuming\n"
654
 
msgstr "  -f, --full                      ��û��\n"
655
 
 
656
678
#: vacuumdb.c:267
657
679
#, c-format
658
 
msgid "  -z, --analyze                   update optimizer hints\n"
659
 
msgstr "  -z, --analyze                   ��������ȭ�� ��Ʈ �ڷḦ ������\n"
660
 
 
661
 
#: vacuumdb.c:268
662
 
#, c-format
663
680
msgid ""
664
681
"  -e, --echo                      show the commands being sent to the "
665
682
"server\n"
666
683
msgstr "  -e, --echo                      ������ ������ ���ɵ��� ������\n"
667
684
 
 
685
#: vacuumdb.c:268
 
686
#, c-format
 
687
msgid "  -f, --full                      do full vacuuming\n"
 
688
msgstr "  -f, --full                      ��û��\n"
 
689
 
668
690
#: vacuumdb.c:269
669
691
#, c-format
 
692
msgid "  -F, --freeze                    freeze row transaction information\n"
 
693
msgstr "  -F, --freeze                    �� Ʈ����� ���� ����\n"
 
694
 
 
695
#: vacuumdb.c:270
 
696
#, c-format
670
697
msgid "  -q, --quiet                     don't write any messages\n"
671
698
msgstr "  -q, --quiet                     ��� �޽����� �������� ����\n"
672
699
 
673
 
#: vacuumdb.c:270
 
700
#: vacuumdb.c:271
 
701
#, c-format
 
702
msgid "  -t, --table='TABLE[(COLUMNS)]'  vacuum specific table only\n"
 
703
msgstr "  -t, --table='TABLE[(COLUMNS)]'  ������ Ư�� ���̺��� û��\n"
 
704
 
 
705
#: vacuumdb.c:272
674
706
#, c-format
675
707
msgid "  -v, --verbose                   write a lot of output\n"
676
708
msgstr "  -v, --verbose                   �۾������� �ڼ��� ���\n"
677
709
 
678
 
#: vacuumdb.c:271
 
710
#: vacuumdb.c:273
 
711
#, c-format
 
712
msgid "  -z, --analyze                   update optimizer hints\n"
 
713
msgstr "  -z, --analyze                   ��������ȭ�� ��Ʈ �ڷḦ ������\n"
 
714
 
 
715
#: vacuumdb.c:274
679
716
#, c-format
680
717
msgid "  --help                          show this help, then exit\n"
681
718
msgstr "  --help                          �� ������ �����ְ� ��ħ\n"
682
719
 
683
 
#: vacuumdb.c:272
 
720
#: vacuumdb.c:275
684
721
#, c-format
685
722
msgid ""
686
723
"  --version                       output version information, then exit\n"
687
724
msgstr "  --version                       ���� ������ �����ְ� ��ħ\n"
688
725
 
689
 
#: vacuumdb.c:278
 
726
#: vacuumdb.c:282
690
727
#, c-format
691
728
msgid ""
692
729
"\n"
695
732
"\n"
696
733
"���� �ڼ��� ������ VACUUM SQL ���ɾ� �������� �����Ͻʽÿ�.\n"
697
734
 
698
 
#: reindexdb.c:133
 
735
#: reindexdb.c:138
699
736
#, c-format
700
737
msgid "%s: cannot reindex all databases and a specific one at the same time\n"
701
738
msgstr ""
702
739
"%s: ��� �����ͺ��̽� ����� �۾��� Ư�� �����ͺ��̽� ����� �۾��� ���ÿ� ��"
703
740
"���� �� �����ϴ�\n"
704
741
 
705
 
#: reindexdb.c:138
 
742
#: reindexdb.c:143
706
743
#, c-format
707
744
msgid "%s: cannot reindex all databases and system catalogs at the same time\n"
708
745
msgstr ""
709
746
"%s: ��� �����ͺ��̽� ����� �۾��� �ý��� īŻ�α� ����� �۾��� ���ÿ� ����"
710
747
"�� �� �����ϴ�\n"
711
748
 
712
 
#: reindexdb.c:143
 
749
#: reindexdb.c:148
713
750
#, c-format
714
751
msgid "%s: cannot reindex a specific table in all databases\n"
715
752
msgstr ""
716
753
"%s: ��� �����ͺ��̽� ����� �۾����� Ư�� ���̺��� ����� �۾��� ������ �� "
717
754
"�����ϴ�\n"
718
755
 
719
 
#: reindexdb.c:148
 
756
#: reindexdb.c:153
720
757
#, c-format
721
758
msgid "%s: cannot reindex a specific index in all databases\n"
722
759
msgstr ""
723
760
"%s: ��� �����ͺ��̽� ����� �۾����� Ư�� �ε��� ����� �۾��� ������ �� ��"
724
761
"���ϴ�\n"
725
762
 
726
 
#: reindexdb.c:159
 
763
#: reindexdb.c:164
727
764
#, c-format
728
765
msgid ""
729
766
"%s: cannot reindex a specific table and system catalogs at the same time\n"
730
767
msgstr ""
731
768
"%s: Ư�� ���̺��� �ý��� īŻ�α� ����� �۾��� ���ÿ� ������ �� �����ϴ�\n"
732
769
 
733
 
#: reindexdb.c:164
 
770
#: reindexdb.c:169
734
771
#, c-format
735
772
msgid ""
736
773
"%s: cannot reindex a specific index and system catalogs at the same time\n"
737
774
msgstr ""
738
775
"%s: Ư�� �ε����� �ý��� īŻ�α� ����� �۾��� ���ÿ� ������ �� �����ϴ�\n"
739
776
 
740
 
#: reindexdb.c:239
 
777
#: reindexdb.c:238
741
778
#, c-format
742
779
msgid "%s: reindexing of table \"%s\" in database \"%s\" failed: %s"
743
780
msgstr "%s: \"%s\" ���̺�(�ش�DB: \"%s\") ����� �۾� ����: %s"
744
781
 
745
 
#: reindexdb.c:242
 
782
#: reindexdb.c:241
746
783
#, c-format
747
784
msgid "%s: reindexing of index \"%s\" in database \"%s\" failed: %s"
748
785
msgstr "%s: \"%s\" �ε���(�ش�DB: \"%s\") ����� �۾� ����: %s"
749
786
 
750
 
#: reindexdb.c:245
 
787
#: reindexdb.c:244
751
788
#, c-format
752
789
msgid "%s: reindexing of database \"%s\" failed: %s"
753
790
msgstr "%s: \"%s\" �����ͺ��̽� ����� �۾� ����: %s"
754
791
 
755
 
#: reindexdb.c:280
 
792
#: reindexdb.c:273
756
793
#, c-format
757
794
msgid "%s: reindexing database \"%s\"\n"
758
795
msgstr "%s: \"%s\" �����ͺ��̽� ����� �۾� ��\n"
759
796
 
760
 
#: reindexdb.c:311
 
797
#: reindexdb.c:300
761
798
#, c-format
762
799
msgid "%s: reindexing of system catalogs failed: %s"
763
800
msgstr "%s: �ý��� īŻ�α� ����� �۾� ����: %s"
764
801
 
765
 
#: reindexdb.c:331
 
802
#: reindexdb.c:312
766
803
#, c-format
767
804
msgid ""
768
805
"%s reindexes a PostgreSQL database.\n"
771
808
"%s ���α׷��� PostgreSQL �����ͺ��̽� ����� �۾��� �մϴ�.\n"
772
809
"\n"
773
810
 
774
 
#: reindexdb.c:335
 
811
#: reindexdb.c:316
775
812
#, c-format
776
813
msgid "  -a, --all                 reindex all databases\n"
777
814
msgstr "  -a, --all                 ��� �����ͺ��̽� �����\n"
778
815
 
779
 
#: reindexdb.c:336
 
816
#: reindexdb.c:317
 
817
#, c-format
 
818
msgid "  -d, --dbname=DBNAME       database to reindex\n"
 
819
msgstr "  -d, --dbname=DBNAME       ������ �����ͺ��̽��� ����� �۾�\n"
 
820
 
 
821
#: reindexdb.c:319
 
822
#, c-format
 
823
msgid "  -i, --index=INDEX         recreate specific index only\n"
 
824
msgstr "  -i, --index=INDEX         ������ �ε����� �ٽ� ����\n"
 
825
 
 
826
#: reindexdb.c:321
780
827
#, c-format
781
828
msgid "  -s, --system              reindex system catalogs\n"
782
829
msgstr "  -s, --system              �ý��� īŻ�α� �����\n"
783
830
 
784
 
#: reindexdb.c:337
785
 
#, c-format
786
 
msgid "  -d, --dbname=DBNAME       database to reindex\n"
787
 
msgstr "  -d, --dbname=DBNAME       ������ �����ͺ��̽��� ����� �۾�\n"
788
 
 
789
 
#: reindexdb.c:338
 
831
#: reindexdb.c:322
790
832
#, c-format
791
833
msgid "  -t, --table=TABLE         reindex specific table only\n"
792
834
msgstr "  -t, --table=TABLE         ������ ���̺��� ����� �۾�\n"
793
835
 
794
 
#: reindexdb.c:339
795
 
#, c-format
796
 
msgid "  -i, --index=INDEX         recreate specific index only\n"
797
 
msgstr "  -i, --index=INDEX         ������ �ε����� �ٽ� ����\n"
798
 
 
799
 
#: reindexdb.c:349
 
836
#: reindexdb.c:331
800
837
#, c-format
801
838
msgid ""
802
839
"\n"
805
842
"\n"
806
843
"���� �ڼ��� ������ REINDEX SQL ���ɾ� �������� �����Ͻʽÿ�.\n"
807
844
 
808
 
#: common.c:39
 
845
#: common.c:45
809
846
#, c-format
810
847
msgid "%s: could not obtain information about current user: %s\n"
811
848
msgstr "%s: ���� ����� ������ ���� �� ����: %s\n"
812
849
 
813
 
#: common.c:50
 
850
#: common.c:56
814
851
#, c-format
815
852
msgid "%s: could not get current user name: %s\n"
816
853
msgstr "%s: ���� ����� �̸��� ���� �� ����: %s\n"
817
854
 
818
 
#: common.c:97 common.c:123
 
855
#: common.c:103 common.c:127
819
856
msgid "Password: "
820
 
msgstr "��й�ȣ:"
 
857
msgstr "��ȣ:"
821
858
 
822
 
#: common.c:110
 
859
#: common.c:116
823
860
#, c-format
824
861
msgid "%s: could not connect to database %s\n"
825
862
msgstr "%s: %s �����ͺ��̽��� ���� �� �� ����\n"
826
863
 
827
 
#: common.c:133
 
864
#: common.c:138
828
865
#, c-format
829
866
msgid "%s: could not connect to database %s: %s"
830
867
msgstr "%s: %s �����ͺ��̽��� ���� �� �� ����: %s"
831
868
 
832
 
#: common.c:157 common.c:185
 
869
#: common.c:162 common.c:190
833
870
#, c-format
834
871
msgid "%s: query failed: %s"
835
872
msgstr "%s: ���� ����: %s"
836
873
 
837
 
#: common.c:159 common.c:187
 
874
#: common.c:164 common.c:192
838
875
#, c-format
839
876
msgid "%s: query was: %s\n"
840
877
msgstr "%s: ���� ����: %s\n"
841
878
 
 
879
#: common.c:238
 
880
#, c-format
 
881
msgid "pg_strdup: cannot duplicate null pointer (internal error)\n"
 
882
msgstr "pg_strdup: null �����͸� �ߺ��� �� ����(���� ����)\n"
 
883
 
 
884
#: common.c:244
 
885
#, c-format
 
886
msgid "out of memory\n"
 
887
msgstr "�޸� ����\n"
 
888
 
842
889
#. translator: abbreviation for "yes"
843
 
#: common.c:202
 
890
#: common.c:255
844
891
msgid "y"
845
892
msgstr "y"
846
893
 
847
894
#. translator: abbreviation for "no"
848
 
#: common.c:204
 
895
#: common.c:257
849
896
msgid "n"
850
897
msgstr "n"
851
898
 
852
 
#: common.c:215
 
899
#: common.c:268
853
900
#, c-format
854
901
msgid "%s (%s/%s) "
855
902
msgstr "%s (%s/%s) "
856
903
 
857
 
#: common.c:236
 
904
#: common.c:289
858
905
#, c-format
859
906
msgid "Please answer \"%s\" or \"%s\".\n"
860
907
msgstr "\"%s\" �Ǵ� \"%s\" �� ����մϴ�.\n"
 
908
 
 
909
#: common.c:367 common.c:400
 
910
#, c-format
 
911
msgid "Cancel request sent\n"
 
912
msgstr "��� ��û�� ������\n"
 
913
 
 
914
#: common.c:369 common.c:402
 
915
#, c-format
 
916
msgid "Could not send cancel request: %s"
 
917
msgstr "��� ��û�� ������ �� ����: %s"