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
|
# LANGUAGE message translation file for plpython
# Copyright (C) 2009 PostgreSQL Global Development Group
# This file is distributed under the same license as the PostgreSQL package.
#
msgid ""
msgstr ""
"Project-Id-Version: PostgreSQL 9.6.3\n"
"Report-Msgid-Bugs-To: pgsql-bugs@postgresql.org\n"
"POT-Creation-Date: 2017-04-04 11:54+0900\n"
"PO-Revision-Date: 2012-08-11 16:37+0900\n"
"Last-Translator: Daisuke Higuchi <higuchi.daisuke@jp.fujitsu.com>\n"
"Language-Team: Japan PostgreSQL Users Group <jpug-doc@ml.postgresql.jp>\n"
"Language: ja\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"
#: plpy_cursorobject.c:101
#, c-format
msgid "plpy.cursor expected a query or a plan"
msgstr "plpy.cursorはクエリーもしくは実行計画を期待していました"
#: plpy_cursorobject.c:177
#, c-format
msgid "plpy.cursor takes a sequence as its second argument"
msgstr "plpy.cursorは第二引数としてシーケンスを取ります"
#: plpy_cursorobject.c:193 plpy_spi.c:227
#, c-format
msgid "could not execute plan"
msgstr "プランを実行できませんでした"
#: plpy_cursorobject.c:196 plpy_spi.c:230
#, c-format
msgid "Expected sequence of %d argument, got %d: %s"
msgid_plural "Expected sequence of %d arguments, got %d: %s"
msgstr[0] "%d 番目の引数はシーケンスを期待していましたが、%d が現れました:%s"
#: plpy_cursorobject.c:350
#, c-format
msgid "iterating a closed cursor"
msgstr "クローズされたカーソルの反復"
#: plpy_cursorobject.c:358 plpy_cursorobject.c:423
#, c-format
msgid "iterating a cursor in an aborted subtransaction"
msgstr "アボートされたサブトランザクション内のカーソルの反復"
#: plpy_cursorobject.c:415
#, c-format
msgid "fetch from a closed cursor"
msgstr "クローズされたカーソルからのフェッチ"
#: plpy_cursorobject.c:463 plpy_spi.c:434
#, c-format
msgid "query result has too many rows to fit in a Python list"
msgstr "問い合わせ結果の行が多すぎてPythonリストに収まりません"
#: plpy_cursorobject.c:504
#, c-format
msgid "closing a cursor in an aborted subtransaction"
msgstr "アボートされたサブトランザクションにおけるカーソルクローズ"
#: plpy_elog.c:127 plpy_elog.c:128 plpy_plpymodule.c:548
#, c-format
msgid "%s"
msgstr "%s"
#: plpy_exec.c:140
#, c-format
msgid "unsupported set function return mode"
msgstr "未サポートの集合関数リターンモードです"
#: plpy_exec.c:141
#, c-format
msgid "PL/Python set-returning functions only support returning one value per call."
msgstr "PL/Python の集合を返す関数では、1回のコールのたびに値を一つ返すことだけがサポートされています"
#: plpy_exec.c:154
#, c-format
msgid "returned object cannot be iterated"
msgstr "返されたオブジェクトは反復適用できません"
#: plpy_exec.c:155
#, c-format
msgid "PL/Python set-returning functions must return an iterable object."
msgstr "PL/Python の集合を返す関数では、イテレータ(反復子)オブジェクトを返さなければなりません"
#: plpy_exec.c:169
#, c-format
msgid "error fetching next item from iterator"
msgstr "イテレータ(反復子)から次の項目をフェッチ(取り出し)できません"
#: plpy_exec.c:210
#, c-format
msgid "PL/Python function with return type \"void\" did not return None"
msgstr "\"void\" 型を返す PL/Python 関数は None 型を返しません"
#: plpy_exec.c:374 plpy_exec.c:400
#, c-format
msgid "unexpected return value from trigger procedure"
msgstr "トリガー手続きから期待しない戻り値が返されました"
#: plpy_exec.c:375
#, c-format
msgid "Expected None or a string."
msgstr "None もしくは文字列を期待していました。"
#: plpy_exec.c:390
#, c-format
msgid "PL/Python trigger function returned \"MODIFY\" in a DELETE trigger -- ignored"
msgstr "PL/Python トリガー関数が、DELETE トリガーで \"MODIFY\" を返しました-- 無視しました"
#: plpy_exec.c:401
#, c-format
msgid "Expected None, \"OK\", \"SKIP\", or \"MODIFY\"."
msgstr "None, \"OK\", \"SKIP\", \"MODIFY\" のいずれかを期待していました。"
#: plpy_exec.c:482
#, c-format
msgid "PyList_SetItem() failed, while setting up arguments"
msgstr "引数を設定する際に、PyList_SetItem() に失敗しました"
#: plpy_exec.c:486
#, c-format
msgid "PyDict_SetItemString() failed, while setting up arguments"
msgstr "引数を設定する際に、PyDict_SetItemString() に失敗しました"
#: plpy_exec.c:498
#, c-format
msgid "function returning record called in context that cannot accept type record"
msgstr "レコード型を受け付けられないコンテキストでレコードを返す関数が呼び出されました"
#: plpy_exec.c:714
#, c-format
msgid "while creating return value"
msgstr "戻り値を生成する際に"
#: plpy_exec.c:738
#, c-format
msgid "could not create new dictionary while building trigger arguments"
msgstr "トリガーの引数を構成中に、新しい辞書を生成できませんでした"
#: plpy_exec.c:927
#, c-format
msgid "TD[\"new\"] deleted, cannot modify row"
msgstr "TD[\"new\"] は削除されました。もはや変更できません"
#: plpy_exec.c:932
#, c-format
msgid "TD[\"new\"] is not a dictionary"
msgstr "TD[\"new\"] は辞書ではありません"
#: plpy_exec.c:957
#, c-format
msgid "TD[\"new\"] dictionary key at ordinal position %d is not a string"
msgstr "TD[\"new\"] 辞書の%d番目のキーが文字列ではありません"
#: plpy_exec.c:964
#, c-format
msgid "key \"%s\" found in TD[\"new\"] does not exist as a column in the triggering row"
msgstr "TD[\"new\"] で見つかったキー \"%s\" は、行レベルトリガーにおけるカラムとしては存在しません"
#: plpy_exec.c:1044
#, c-format
msgid "while modifying trigger row"
msgstr "トリガー行を変更する際に"
#: plpy_exec.c:1105
#, c-format
msgid "forcibly aborting a subtransaction that has not been exited"
msgstr "終了していないサブトランザクションを強制的にアボートしています"
#: plpy_main.c:125
#, c-format
msgid "multiple Python libraries are present in session"
msgstr "セッション内に複数の Python ライブラリが存在します"
#: plpy_main.c:126
#, c-format
msgid "Only one Python major version can be used in one session."
msgstr "一つのセッションにおいて使うことができる Python のメジャーバージョンは一つだけです。"
#: plpy_main.c:142
#, c-format
msgid "untrapped error in initialization"
msgstr "初期化中に捕獲できないエラーがありました"
#: plpy_main.c:165
#, c-format
msgid "could not import \"__main__\" module"
msgstr "\"__main__\" モジュールをインポートできませんでした"
#: plpy_main.c:170
#, c-format
msgid "could not create globals"
msgstr "globalsを作成できませんでした"
#: plpy_main.c:174
#, c-format
msgid "could not initialize globals"
msgstr "グローバル変数(globals)を初期化できませんでした"
#: plpy_main.c:387
#, c-format
msgid "PL/Python function \"%s\""
msgstr "PL/Python 関数 \"%s\""
#: plpy_main.c:394
#, c-format
msgid "PL/Python anonymous code block"
msgstr "PL/Python の無名コードブロック"
#: plpy_planobject.c:123
#, c-format
msgid "plan.status takes no arguments"
msgstr "plan.status は引数を取りません"
#: plpy_plpymodule.c:181 plpy_plpymodule.c:184
#, c-format
msgid "could not import \"plpy\" module"
msgstr "\"plpy\"モジュールをインポートできませんでした"
#: plpy_plpymodule.c:199
#, c-format
msgid "could not create the spiexceptions module"
msgstr "spiexceptionsモジュールを作成できませんでした"
#: plpy_plpymodule.c:207
#, c-format
msgid "could not add the spiexceptions module"
msgstr "spiexceptionsモジュールを追加できませんでした"
#: plpy_plpymodule.c:236
#, c-format
msgid "could not create exception \"%s\""
msgstr "例外 \"%s\" を作成できませんでした"
#: plpy_plpymodule.c:271 plpy_plpymodule.c:275
#, c-format
msgid "could not generate SPI exceptions"
msgstr "SPI例外を生成できませんでした"
#: plpy_plpymodule.c:443
#, c-format
msgid "could not unpack arguments in plpy.elog"
msgstr "plpy.elogで引数を展開することができませんでした"
#: plpy_plpymodule.c:452
msgid "could not parse error message in plpy.elog"
msgstr "plpy.elog でエラーメッセージをパースできませんでした"
#: plpy_plpymodule.c:469
#, c-format
msgid "Argument 'message' given by name and position"
msgstr "名前と位置で与えられる引数 'message'"
#: plpy_plpymodule.c:496
#, c-format
msgid "'%s' is an invalid keyword argument for this function"
msgstr "'%s' はこの関数には無効なキーワード引数です"
#: plpy_plpymodule.c:507 plpy_plpymodule.c:513
#, c-format
msgid "invalid SQLSTATE code"
msgstr "無効な SQLSTATE コードです"
#: plpy_procedure.c:230
#, c-format
msgid "trigger functions can only be called as triggers"
msgstr "トリガー関数はトリガーとしてのみコールできます"
#: plpy_procedure.c:235
#, c-format
msgid "PL/Python functions cannot return type %s"
msgstr "PL/Python 関数は %s 型を返せません"
#: plpy_procedure.c:316
#, c-format
msgid "PL/Python functions cannot accept type %s"
msgstr "PL/Python 関数は %s 型を受け付けません"
#: plpy_procedure.c:412
#, c-format
msgid "could not compile PL/Python function \"%s\""
msgstr "PL/Python 関数 \"%s\" をコンパイルできません"
#: plpy_procedure.c:415
#, c-format
msgid "could not compile anonymous PL/Python code block"
msgstr "PL/Python匿名コードブロックをコンパイルできません"
#: plpy_resultobject.c:145 plpy_resultobject.c:165 plpy_resultobject.c:185
#, c-format
msgid "command did not produce a result set"
msgstr "コマンドは結果セットを生成しませんでした"
#: plpy_spi.c:60
#, c-format
msgid "second argument of plpy.prepare must be a sequence"
msgstr "plpy.prepare の第二引数はシーケンスでなければなりません"
#: plpy_spi.c:116
#, c-format
msgid "plpy.prepare: type name at ordinal position %d is not a string"
msgstr "plpy.prepare: %d 番目の型名が文字列ではありません"
#: plpy_spi.c:192
#, c-format
msgid "plpy.execute expected a query or a plan"
msgstr "plpy.execute はクエリーもしくは実行計画を期待していました"
#: plpy_spi.c:211
#, c-format
msgid "plpy.execute takes a sequence as its second argument"
msgstr "plpy.execute は第二引数としてシーケンスを取ります"
#: plpy_spi.c:335
#, c-format
msgid "SPI_execute_plan failed: %s"
msgstr "SPI_execute_plan が失敗しました:%s"
#: plpy_spi.c:377
#, c-format
msgid "SPI_execute failed: %s"
msgstr "SPI_execute が失敗しました:%s"
#: plpy_subxactobject.c:123
#, c-format
msgid "this subtransaction has already been entered"
msgstr "このサブトランザクションは到達済みです"
#: plpy_subxactobject.c:129 plpy_subxactobject.c:187
#, c-format
msgid "this subtransaction has already been exited"
msgstr "このサブトランザクションは終了済みです"
#: plpy_subxactobject.c:181
#, c-format
msgid "this subtransaction has not been entered"
msgstr "このサブトランザクションには到達しません"
#: plpy_subxactobject.c:193
#, c-format
msgid "there is no subtransaction to exit from"
msgstr "終了するためのサブトランザクションがありません"
#: plpy_typeio.c:286
#, c-format
msgid "could not create new dictionary"
msgstr "新しいディレクトリを作れません"
#: plpy_typeio.c:560
#, c-format
msgid "could not import a module for Decimal constructor"
msgstr "Decimalコンストラクタにモジュールをインポートできませんでした"
#: plpy_typeio.c:564
#, c-format
msgid "no Decimal attribute in module"
msgstr "モジュールの中にDecimal属性がありません"
#: plpy_typeio.c:570
#, c-format
msgid "conversion from numeric to Decimal failed"
msgstr "numericからDecimalへの変換が失敗しました"
#: plpy_typeio.c:645
#, c-format
msgid "cannot convert multidimensional array to Python list"
msgstr "多次元配列を Python の list に変換できません"
#: plpy_typeio.c:646
#, c-format
msgid "PL/Python only supports one-dimensional arrays."
msgstr "PL/Python でサポートしているのは一次元配列のみです。"
#: plpy_typeio.c:652
#, c-format
msgid "could not create new Python list"
msgstr "新しいPythonリストを作成できませんでした"
#: plpy_typeio.c:711
#, c-format
msgid "could not create bytes representation of Python object"
msgstr "バイト表現の Python オブジェクトを生成できませんでした"
#: plpy_typeio.c:820
#, c-format
msgid "could not create string representation of Python object"
msgstr "文字列表現の Python オブジェクトを生成できませんでした"
#: plpy_typeio.c:831
#, c-format
msgid "could not convert Python object into cstring: Python string representation appears to contain null bytes"
msgstr "Python オブジェクトを cstring に変換できませんでした:Python の文字列表現が null バイトを持つことになってしまいます"
#: plpy_typeio.c:877
#, c-format
msgid "return value of function with array return type is not a Python sequence"
msgstr "戻り値が配列である関数の戻り値が Python シーケンスではありません"
#: plpy_typeio.c:996
#, c-format
msgid "key \"%s\" not found in mapping"
msgstr "マッピング上にキー \"%s\" が見つかりません"
#: plpy_typeio.c:997
#, c-format
msgid "To return null in a column, add the value None to the mapping with the key named after the column."
msgstr "カラムに null を入れて返すには、カラムの後につけた名前をキーとして、マッピングに None 値を追加してください"
#: plpy_typeio.c:1048
#, c-format
msgid "length of returned sequence did not match number of columns in row"
msgstr "返されたシーケンスの長さが、その行のカラム数と異なります"
#: plpy_typeio.c:1159
#, c-format
msgid "attribute \"%s\" does not exist in Python object"
msgstr "属性 \"%s\" が Python オブジェクト中に存在しません"
#: plpy_typeio.c:1160
#, c-format
msgid "To return null in a column, let the returned object have an attribute named after column with value None."
msgstr "カラムに null を入れて返す場合は、そのカラムの後につけた名前で表される属性が値として None を持ち、返されるオブジェクトがその属性を含むようにしてください"
#: plpy_util.c:36
#, c-format
msgid "could not convert Python Unicode object to bytes"
msgstr "PythonのUnicodeオブジェクトをバイトに変換できませんでした"
#: plpy_util.c:42
#, c-format
msgid "could not extract bytes from encoded string"
msgstr "符号化された文字列からバイトを抽出できませんでした"
|