Skip to content

Commit 803a14f

Browse files
author
Autobuild bot on TravisCI
committed
[skip ci] Update .po files
1 parent d24e351 commit 803a14f

File tree

2 files changed

+17
-17
lines changed

2 files changed

+17
-17
lines changed

library/importlib.po

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ msgid ""
1717
msgstr ""
1818
"Project-Id-Version: Python 3.7\n"
1919
"Report-Msgid-Bugs-To: \n"
20-
"POT-Creation-Date: 2018-10-27 09:37+0900\n"
20+
"POT-Creation-Date: 2018-11-06 09:47+0900\n"
2121
"PO-Revision-Date: 2017-02-16 23:15+0000\n"
2222
"Last-Translator: tomo🐧, 2018\n"
2323
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
@@ -2205,8 +2205,8 @@ msgstr "ソースファイルから直接インポートする"
22052205
#: ../../library/importlib.rst:1655
22062206
msgid ""
22072207
"To import a Python source file directly, use the following recipe (Python "
2208-
"3.4 and newer only)::"
2209-
msgstr "Python のソースファイルから直接インポートするには、次のレシピを使ってください (Python 3.4 以降のみ)::"
2208+
"3.5 and newer only)::"
2209+
msgstr ""
22102210

22112211
#: ../../library/importlib.rst:1675
22122212
msgid "Setting up an importer"

library/json.po

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ msgid ""
1818
msgstr ""
1919
"Project-Id-Version: Python 3.7\n"
2020
"Report-Msgid-Bugs-To: \n"
21-
"POT-Creation-Date: 2018-08-12 08:50+0900\n"
21+
"POT-Creation-Date: 2018-11-06 09:47+0900\n"
2222
"PO-Revision-Date: 2017-02-16 23:16+0000\n"
2323
"Last-Translator: yudetamago <yudetamago.orz@gmail.com>, 2018\n"
2424
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
@@ -879,69 +879,69 @@ msgstr ""
879879
":class:`int` をシリアライズするとき、あるいは :class:`decimal.Decimal` のような \"風変わりな\" "
880880
"数値型をシリアライズするとき、に特に関係があります。"
881881

882-
#: ../../library/json.rst:654
882+
#: ../../library/json.rst:656
883883
msgid "Command Line Interface"
884884
msgstr "コマンドラインインターフェイス"
885885

886-
#: ../../library/json.rst:659
886+
#: ../../library/json.rst:661
887887
msgid "**Source code:** :source:`Lib/json/tool.py`"
888888
msgstr "**ソースコード:** :source:`Lib/json/tool.py`"
889889

890-
#: ../../library/json.rst:663
890+
#: ../../library/json.rst:665
891891
msgid ""
892892
"The :mod:`json.tool` module provides a simple command line interface to "
893893
"validate and pretty-print JSON objects."
894894
msgstr ""
895895
":mod:`json.tool` モジュールは JSON オブジェクトの検証と整形出力のための、単純なコマンドラインインターフェイスを提供します。"
896896

897-
#: ../../library/json.rst:666
897+
#: ../../library/json.rst:668
898898
msgid ""
899899
"If the optional ``infile`` and ``outfile`` arguments are not specified, "
900900
":attr:`sys.stdin` and :attr:`sys.stdout` will be used respectively:"
901901
msgstr ""
902902
"オプショナルな ``infile`` 引数、 ``outfile`` 引数が指定されない場合、それぞれ :attr:`sys.stdin` と "
903903
":attr:`sys.stdout` が使われます:"
904904

905-
#: ../../library/json.rst:678
905+
#: ../../library/json.rst:680
906906
msgid ""
907907
"The output is now in the same order as the input. Use the :option:`--sort-"
908908
"keys` option to sort the output of dictionaries alphabetically by key."
909909
msgstr ""
910910
"出力が、入力と同じ順序になりました。辞書をキーでアルファベット順に並べ替えた出力が欲しければ、 :option:`--sort-keys` "
911911
"オプションを使ってください。"
912912

913-
#: ../../library/json.rst:684
913+
#: ../../library/json.rst:687
914914
msgid "Command line options"
915915
msgstr "コマンドラインオプション"
916916

917-
#: ../../library/json.rst:688
917+
#: ../../library/json.rst:691
918918
msgid "The JSON file to be validated or pretty-printed:"
919919
msgstr "検証を行う、あるいは整形出力を行う JSON ファイルを指定します:"
920920

921-
#: ../../library/json.rst:704
921+
#: ../../library/json.rst:707
922922
msgid "If *infile* is not specified, read from :attr:`sys.stdin`."
923923
msgstr "*infile* を指定しない場合、 :attr:`sys.stdin` から読み込みます。"
924924

925-
#: ../../library/json.rst:708
925+
#: ../../library/json.rst:711
926926
msgid ""
927927
"Write the output of the *infile* to the given *outfile*. Otherwise, write it"
928928
" to :attr:`sys.stdout`."
929929
msgstr ""
930930
"*infile* に対する出力を、この *outfile* ファイルに出力します。指定しない場合 :attr:`sys.stdout` に出力します。"
931931

932-
#: ../../library/json.rst:713
932+
#: ../../library/json.rst:716
933933
msgid "Sort the output of dictionaries alphabetically by key."
934934
msgstr "辞書の出力を、キーのアルファベット順にソートします。"
935935

936-
#: ../../library/json.rst:719
936+
#: ../../library/json.rst:722
937937
msgid "Show the help message."
938938
msgstr "ヘルプメッセージを出力します"
939939

940-
#: ../../library/json.rst:723
940+
#: ../../library/json.rst:726
941941
msgid "Footnotes"
942942
msgstr "脚注"
943943

944-
#: ../../library/json.rst:724
944+
#: ../../library/json.rst:727
945945
msgid ""
946946
"As noted in `the errata for RFC 7159 <https://www.rfc-"
947947
"editor.org/errata_search.php?rfc=7159>`_, JSON permits literal U+2028 (LINE "

0 commit comments

Comments
 (0)