8
8
msgstr ""
9
9
"Project-Id-Version : Python 3.6\n "
10
10
"Report-Msgid-Bugs-To : \n "
11
- "POT-Creation-Date : 2018-01-05 15:01+0000 \n "
11
+ "POT-Creation-Date : 2018-06-03 13:28+0900 \n "
12
12
"PO-Revision-Date : YEAR-MO-DA HO:MI+ZONE\n "
13
13
"Last-Translator : Nakamura Masahito <randomstep@gmail.com>, 2018\n "
14
14
"Language-Team : Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n "
@@ -592,44 +592,44 @@ msgstr "任意のイテラブルのサポートの追加。"
592
592
593
593
#: ../../library/csv.rst:455
594
594
msgid ""
595
- "Write all the *rows* parameters (a list of *row* objects as described above)"
596
- " to the writer's file object, formatted according to the current dialect."
595
+ "Write all elements in *rows* (an iterable of *row* objects as described "
596
+ "above) to the writer's file object, formatted according to the current "
597
+ "dialect."
597
598
msgstr ""
598
- "*rows* 引数(上記 *row* のリスト)全てを現在の表現形式に基づいて書式化し、writer のファイルオブジェクトに書き込みます。"
599
599
600
- #: ../../library/csv.rst:458
600
+ #: ../../library/csv.rst:459
601
601
msgid "Writer objects have the following public attribute:"
602
602
msgstr "writer オブジェクトには以下の公開属性があります:"
603
603
604
- #: ../../library/csv.rst:463
604
+ #: ../../library/csv.rst:464
605
605
msgid "A read-only description of the dialect in use by the writer."
606
606
msgstr "writer で使われる表現形式の読み出し専用の記述です。"
607
607
608
- #: ../../library/csv.rst:466
608
+ #: ../../library/csv.rst:467
609
609
msgid "DictWriter objects have the following public method:"
610
610
msgstr "DictWriter のオブジェクトは以下の public メソッドを持っています:"
611
611
612
- #: ../../library/csv.rst:471
612
+ #: ../../library/csv.rst:472
613
613
msgid "Write a row with the field names (as specified in the constructor)."
614
614
msgstr "(コンストラクタで指定された)フィールド名の行を出力します。"
615
615
616
- #: ../../library/csv.rst:479
616
+ #: ../../library/csv.rst:480
617
617
msgid "Examples"
618
618
msgstr "使用例"
619
619
620
- #: ../../library/csv.rst:481
620
+ #: ../../library/csv.rst:482
621
621
msgid "The simplest example of reading a CSV file::"
622
622
msgstr "最も簡単な CSV ファイル読み込みの例です::"
623
623
624
- #: ../../library/csv.rst:489
624
+ #: ../../library/csv.rst:490
625
625
msgid "Reading a file with an alternate format::"
626
626
msgstr "別の書式での読み込み::"
627
627
628
- #: ../../library/csv.rst:497
628
+ #: ../../library/csv.rst:498
629
629
msgid "The corresponding simplest possible writing example is::"
630
630
msgstr "上に対して、単純な書き込みのプログラム例は以下のようになります。 ::"
631
631
632
- #: ../../library/csv.rst:504
632
+ #: ../../library/csv.rst:505
633
633
msgid ""
634
634
"Since :func:`open` is used to open a CSV file for reading, the file will by "
635
635
"default be decoded into unicode using the system default encoding (see "
@@ -641,34 +641,34 @@ msgstr ""
641
641
"(:func:`locale.getpreferredencoding` を参照)。他のエンコーディングを用いてデコードするには、open の引数 "
642
642
"``encoding`` を設定して、以下のようにします::"
643
643
644
- #: ../../library/csv.rst:515
644
+ #: ../../library/csv.rst:516
645
645
msgid ""
646
646
"The same applies to writing in something other than the system default "
647
647
"encoding: specify the encoding argument when opening the output file."
648
648
msgstr ""
649
649
"システムのデフォルトエンコーディング以外で書き込む場合も同様です。出力ファイルを開く際に引数 ``encoding`` を明示してください。"
650
650
651
- #: ../../library/csv.rst:518
651
+ #: ../../library/csv.rst:519
652
652
msgid "Registering a new dialect::"
653
653
msgstr "新しい表現形式の登録::"
654
654
655
- #: ../../library/csv.rst:525
655
+ #: ../../library/csv.rst:526
656
656
msgid ""
657
657
"A slightly more advanced use of the reader --- catching and reporting "
658
658
"errors::"
659
659
msgstr "もう少し手の込んだ reader の使い方 --- エラーを捉えてレポートします。 ::"
660
660
661
- #: ../../library/csv.rst:537
661
+ #: ../../library/csv.rst:538
662
662
msgid ""
663
663
"And while the module doesn't directly support parsing strings, it can easily"
664
664
" be done::"
665
665
msgstr "このモジュールは文字列の解析は直接サポートしませんが、簡単にできます。 ::"
666
666
667
- #: ../../library/csv.rst:546
667
+ #: ../../library/csv.rst:547
668
668
msgid "Footnotes"
669
669
msgstr "脚注"
670
670
671
- #: ../../library/csv.rst:547
671
+ #: ../../library/csv.rst:548
672
672
msgid ""
673
673
"If ``newline=''`` is not specified, newlines embedded inside quoted fields "
674
674
"will not be interpreted correctly, and on platforms that use ``\\ r\\ n`` "
0 commit comments