Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 0fc2682

Browse files
author
Autobuild bot on TravisCI
committed
[skip ci] Update .po files
1 parent 2f7c32a commit 0fc2682

File tree

1 file changed

+20
-19
lines changed

1 file changed

+20
-19
lines changed

library/csv.po

Lines changed: 20 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ msgid ""
99
msgstr ""
1010
"Project-Id-Version: Python 2.7\n"
1111
"Report-Msgid-Bugs-To: \n"
12-
"POT-Creation-Date: 2018-02-08 12:29+0900\n"
13-
"PO-Revision-Date: 2018-02-08 03:36+0000\n"
12+
"POT-Creation-Date: 2018-06-03 13:27+0900\n"
13+
"PO-Revision-Date: 2018-06-03 04:32+0000\n"
1414
"Last-Translator: cocoatomo\n"
1515
"Language-Team: Japanese (http://www.transifex.com/python-doc/python-27/language/ja/)\n"
1616
"MIME-Version: 1.0\n"
@@ -464,59 +464,60 @@ msgstr "*row* パラメタを現在の表現形式に基づいて書式化し、
464464

465465
#: ../../library/csv.rst:456
466466
msgid ""
467-
"Write all the *rows* parameters (a list of *row* objects as described above)"
468-
" to the writer's file object, formatted according to the current dialect."
469-
msgstr "*rows* パラメタ(上記 *row* のリスト)全てを現在の表現形式に基づいて書式化し、 writer のファイルオブジェクトに書き込みます。"
467+
"Write all elements in *rows* (an iterable of *row* objects as described "
468+
"above) to the writer's file object, formatted according to the current "
469+
"dialect."
470+
msgstr ""
470471

471-
#: ../../library/csv.rst:459
472+
#: ../../library/csv.rst:460
472473
msgid "Writer objects have the following public attribute:"
473474
msgstr "writer オブジェクトには以下の公開属性があります:"
474475

475-
#: ../../library/csv.rst:464
476+
#: ../../library/csv.rst:465
476477
msgid "A read-only description of the dialect in use by the writer."
477478
msgstr "writer で使われる表現形式の読み取り専用の記述です。"
478479

479-
#: ../../library/csv.rst:467
480+
#: ../../library/csv.rst:468
480481
msgid "DictWriter objects have the following public method:"
481482
msgstr "DictWriter のオブジェクトは以下の public メソッドを持っています:"
482483

483-
#: ../../library/csv.rst:472
484+
#: ../../library/csv.rst:473
484485
msgid "Write a row with the field names (as specified in the constructor)."
485486
msgstr "(コンストラクタで指定された)フィールド名の行を出力します。"
486487

487-
#: ../../library/csv.rst:480
488+
#: ../../library/csv.rst:481
488489
msgid "Examples"
489490
msgstr "使用例"
490491

491-
#: ../../library/csv.rst:482
492+
#: ../../library/csv.rst:483
492493
msgid "The simplest example of reading a CSV file::"
493494
msgstr "最も簡単な CSV ファイル読み込みの例です::"
494495

495-
#: ../../library/csv.rst:490
496+
#: ../../library/csv.rst:491
496497
msgid "Reading a file with an alternate format::"
497498
msgstr "別の書式での読み込み::"
498499

499-
#: ../../library/csv.rst:498
500+
#: ../../library/csv.rst:499
500501
msgid "The corresponding simplest possible writing example is::"
501502
msgstr "上に対して、単純な書き込みのプログラム例は以下のようになります。 ::"
502503

503-
#: ../../library/csv.rst:505
504+
#: ../../library/csv.rst:506
504505
msgid "Registering a new dialect::"
505506
msgstr "新しい表現形式の登録::"
506507

507-
#: ../../library/csv.rst:512
508+
#: ../../library/csv.rst:513
508509
msgid ""
509510
"A slightly more advanced use of the reader --- catching and reporting "
510511
"errors::"
511512
msgstr "もう少し手の込んだ reader の使い方 --- エラーを捉えてレポートします。 ::"
512513

513-
#: ../../library/csv.rst:524
514+
#: ../../library/csv.rst:525
514515
msgid ""
515516
"And while the module doesn't directly support parsing strings, it can easily"
516517
" be done::"
517518
msgstr "このモジュールは文字列の解析は直接サポートしませんが、簡単にできます。 ::"
518519

519-
#: ../../library/csv.rst:531
520+
#: ../../library/csv.rst:532
520521
msgid ""
521522
"The :mod:`csv` module doesn't directly support reading and writing Unicode, "
522523
"but it is 8-bit-clean save for some problems with ASCII NUL characters. So "
@@ -525,7 +526,7 @@ msgid ""
525526
"recommended."
526527
msgstr ":mod:`csv` モジュールは直接は Unicode の読み書きをサポートしませんが、 ASCII NUL 文字に関わる問題のために8ビットクリーンに書き込みます。ですから、NUL を使う UTF-16 のようなエンコーディングを避ける限り エンコード・デコードを行なう関数やクラスを書くことができます。 UTF-8 がお勧めです。"
527528

528-
#: ../../library/csv.rst:536
529+
#: ../../library/csv.rst:537
529530
msgid ""
530531
":func:`unicode_csv_reader` below is a :term:`generator` that wraps "
531532
":class:`csv.reader` to handle Unicode CSV data (a list of Unicode strings)."
@@ -535,7 +536,7 @@ msgid ""
535536
"UTF-8-encoded cells back into Unicode::"
536537
msgstr "以下の :func:`unicode_csv_reader` は Unicode の CSV データ (Unicode 文字列のリスト)を扱うための :class:`csv.reader` をラップするジェネレータ(:term:`generator`)です。 :func:`utf_8_encoder` は一度に 1 文字列(または行) ずつ Unicode 文字列を UTF-8 としてエンコードするジェネレータです。エンコードされた文字列は CSV reader により分解され、 :func:`unicode_csv_reader` が UTF-8 エンコードの分解された文字列をデコードして Unicode に戻します。 ::"
537538

538-
#: ../../library/csv.rst:556
539+
#: ../../library/csv.rst:557
539540
msgid ""
540541
"For all other encodings the following :class:`UnicodeReader` and "
541542
":class:`UnicodeWriter` classes can be used. They take an additional "

0 commit comments

Comments
 (0)