@@ -18,7 +18,7 @@ msgid ""
1818msgstr ""
1919"Project-Id-Version : Python 3.9\n "
2020"Report-Msgid-Bugs-To : \n "
21- "POT-Creation-Date : 2021-01-01 05:02 +0000\n "
21+ "POT-Creation-Date : 2021-04-08 05:59 +0000\n "
2222"PO-Revision-Date : 2017-02-16 23:21+0000\n "
2323"Last-Translator : tomo, 2020\n "
2424"Language-Team : Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n "
@@ -928,6 +928,18 @@ msgid ""
928928msgstr "引数の並び (link, target) は :func:`os.symlink` とは逆です。"
929929
930930#: ../../library/pathlib.rst:1124
931+ msgid "Make *target* a hard link to this path."
932+ msgstr ""
933+
934+ #: ../../library/pathlib.rst:1128
935+ msgid ""
936+ "This function does not make this path a hard link to *target*, despite the "
937+ "implication of the function and argument names. The argument order (target, "
938+ "link) is the reverse of :func:`Path.symlink_to`, but matches that of "
939+ ":func:`os.link`."
940+ msgstr ""
941+
942+ #: ../../library/pathlib.rst:1138
931943msgid ""
932944"Create a file at this given path. If *mode* is given, it is combined with "
933945"the process' ``umask`` value to determine the file mode and access flags. "
@@ -939,70 +951,66 @@ msgstr ""
939951"値と組み合わせてファイルのモードとアクセスフラグが決定されます。ファイルがすでに存在した場合、*exist_ok* が真ならばこの関数は正常に終了します"
940952" (そしてファイルの更新日付が現在の日時に変更されます)。その他の場合は :exc:`FileExistsError` が送出されます。"
941953
942- #: ../../library/pathlib.rst:1133
954+ #: ../../library/pathlib.rst:1147
943955msgid ""
944956"Remove this file or symbolic link. If the path points to a directory, use "
945957":func:`Path.rmdir` instead."
946958msgstr ""
947959"このファイルまたはシンボリックリンクを削除します。パスがディレクトリを指している場合は :func:`Path.rmdir` を使用してください。"
948960
949- #: ../../library/pathlib.rst:1136
961+ #: ../../library/pathlib.rst:1150
950962msgid ""
951963"If *missing_ok* is false (the default), :exc:`FileNotFoundError` is raised "
952964"if the path does not exist."
953965msgstr ""
954966"*missing_ok* の値が (デフォルトの) 偽の場合、対象のファイルが存在しないと :exc:`FileNotFoundError` "
955967"を送出します。"
956968
957- #: ../../library/pathlib.rst:1139
969+ #: ../../library/pathlib.rst:1153
958970msgid ""
959971"If *missing_ok* is true, :exc:`FileNotFoundError` exceptions will be ignored"
960972" (same behavior as the POSIX ``rm -f`` command)."
961973msgstr ""
962974
963- #: ../../library/pathlib.rst:1142
975+ #: ../../library/pathlib.rst:1156
964976msgid "The *missing_ok* parameter was added."
965977msgstr ""
966978
967- #: ../../library/pathlib.rst:1148
968- msgid "Create a hard link pointing to a path named *target*."
969- msgstr ""
970-
971- #: ../../library/pathlib.rst:1155
979+ #: ../../library/pathlib.rst:1162
972980msgid ""
973981"Open the file pointed to in bytes mode, write *data* to it, and close the "
974982"file::"
975983msgstr "指定されたファイルをバイトモードで開き、*data* を書き込み、ファイルを閉じます::"
976984
977- #: ../../library/pathlib.rst:1164
985+ #: ../../library/pathlib.rst:1171
978986msgid "An existing file of the same name is overwritten."
979987msgstr "同じ名前のファイルがすでにあれば上書きされます。"
980988
981- #: ../../library/pathlib.rst:1171
989+ #: ../../library/pathlib.rst:1178
982990msgid ""
983991"Open the file pointed to in text mode, write *data* to it, and close the "
984992"file::"
985993msgstr "指定されたファイルをテキストモードで開き、*data* を書き込み、ファイルを閉じます::"
986994
987- #: ../../library/pathlib.rst:1180
995+ #: ../../library/pathlib.rst:1187
988996msgid ""
989997"An existing file of the same name is overwritten. The optional parameters "
990998"have the same meaning as in :func:`open`."
991999msgstr ""
9921000
993- #: ../../library/pathlib.rst:1186
1001+ #: ../../library/pathlib.rst:1193
9941002msgid "Correspondence to tools in the :mod:`os` module"
9951003msgstr ":mod:`os` モジュールにあるツールとの対応付け"
9961004
997- #: ../../library/pathlib.rst:1188
1005+ #: ../../library/pathlib.rst:1195
9981006msgid ""
9991007"Below is a table mapping various :mod:`os` functions to their corresponding "
10001008":class:`PurePath`/:class:`Path` equivalent."
10011009msgstr ""
10021010"下にあるのは、様々な :mod:`os` 関数とそれに相当する :class:`PurePath` あるいは :class:`Path` "
10031011"の同等のものとの対応表です。"
10041012
1005- #: ../../library/pathlib.rst:1193
1013+ #: ../../library/pathlib.rst:1200
10061014msgid ""
10071015"Although :func:`os.path.relpath` and :meth:`PurePath.relative_to` have some "
10081016"overlapping use-cases, their semantics differ enough to warrant not "
@@ -1011,206 +1019,206 @@ msgstr ""
10111019":func:`os.path.relpath` および :meth:`PurePath.relative_to` "
10121020"は使い道が重なるところもありますが、それらの意味論は同等だと見なすには違い過ぎています。"
10131021
1014- #: ../../library/pathlib.rst:1198
1022+ #: ../../library/pathlib.rst:1205
10151023msgid "os and os.path"
10161024msgstr "os および os.path"
10171025
1018- #: ../../library/pathlib.rst:1198
1026+ #: ../../library/pathlib.rst:1205
10191027msgid "pathlib"
10201028msgstr "pathlib"
10211029
1022- #: ../../library/pathlib.rst:1200
1030+ #: ../../library/pathlib.rst:1207
10231031msgid ":func:`os.path.abspath`"
10241032msgstr ":func:`os.path.abspath`"
10251033
1026- #: ../../library/pathlib.rst:1200
1034+ #: ../../library/pathlib.rst:1207
10271035msgid ":meth:`Path.resolve`"
10281036msgstr ":meth:`Path.resolve`"
10291037
1030- #: ../../library/pathlib.rst:1201
1038+ #: ../../library/pathlib.rst:1208
10311039msgid ":func:`os.chmod`"
10321040msgstr ""
10331041
1034- #: ../../library/pathlib.rst:1201
1042+ #: ../../library/pathlib.rst:1208
10351043msgid ":meth:`Path.chmod`"
10361044msgstr ""
10371045
1038- #: ../../library/pathlib.rst:1202
1046+ #: ../../library/pathlib.rst:1209
10391047msgid ":func:`os.mkdir`"
10401048msgstr ""
10411049
1042- #: ../../library/pathlib.rst:1202 ../../library/pathlib.rst:1203
1050+ #: ../../library/pathlib.rst:1209 ../../library/pathlib.rst:1210
10431051msgid ":meth:`Path.mkdir`"
10441052msgstr ""
10451053
1046- #: ../../library/pathlib.rst:1203
1054+ #: ../../library/pathlib.rst:1210
10471055msgid ":func:`os.makedirs`"
10481056msgstr ""
10491057
1050- #: ../../library/pathlib.rst:1204
1058+ #: ../../library/pathlib.rst:1211
10511059msgid ":func:`os.rename`"
10521060msgstr ""
10531061
1054- #: ../../library/pathlib.rst:1204
1062+ #: ../../library/pathlib.rst:1211
10551063msgid ":meth:`Path.rename`"
10561064msgstr ""
10571065
1058- #: ../../library/pathlib.rst:1205
1066+ #: ../../library/pathlib.rst:1212
10591067msgid ":func:`os.replace`"
10601068msgstr ""
10611069
1062- #: ../../library/pathlib.rst:1205
1070+ #: ../../library/pathlib.rst:1212
10631071msgid ":meth:`Path.replace`"
10641072msgstr ""
10651073
1066- #: ../../library/pathlib.rst:1206
1074+ #: ../../library/pathlib.rst:1213
10671075msgid ":func:`os.rmdir`"
10681076msgstr ""
10691077
1070- #: ../../library/pathlib.rst:1206
1078+ #: ../../library/pathlib.rst:1213
10711079msgid ":meth:`Path.rmdir`"
10721080msgstr ""
10731081
1074- #: ../../library/pathlib.rst:1207
1082+ #: ../../library/pathlib.rst:1214
10751083msgid ":func:`os.remove`, :func:`os.unlink`"
10761084msgstr ""
10771085
1078- #: ../../library/pathlib.rst:1207
1086+ #: ../../library/pathlib.rst:1214
10791087msgid ":meth:`Path.unlink`"
10801088msgstr ""
10811089
1082- #: ../../library/pathlib.rst:1208
1090+ #: ../../library/pathlib.rst:1215
10831091msgid ":func:`os.getcwd`"
10841092msgstr ":func:`os.getcwd`"
10851093
1086- #: ../../library/pathlib.rst:1208
1094+ #: ../../library/pathlib.rst:1215
10871095msgid ":func:`Path.cwd`"
10881096msgstr ":func:`Path.cwd`"
10891097
1090- #: ../../library/pathlib.rst:1209
1098+ #: ../../library/pathlib.rst:1216
10911099msgid ":func:`os.path.exists`"
10921100msgstr ":func:`os.path.exists`"
10931101
1094- #: ../../library/pathlib.rst:1209
1102+ #: ../../library/pathlib.rst:1216
10951103msgid ":meth:`Path.exists`"
10961104msgstr ":meth:`Path.exists`"
10971105
1098- #: ../../library/pathlib.rst:1210
1106+ #: ../../library/pathlib.rst:1217
10991107msgid ":func:`os.path.expanduser`"
11001108msgstr ":func:`os.path.expanduser`"
11011109
1102- #: ../../library/pathlib.rst:1210
1110+ #: ../../library/pathlib.rst:1217
11031111msgid ":meth:`Path.expanduser` and :meth:`Path.home`"
11041112msgstr ":meth:`Path.expanduser` および :meth:`Path.home`"
11051113
1106- #: ../../library/pathlib.rst:1212
1114+ #: ../../library/pathlib.rst:1219
11071115msgid ":func:`os.listdir`"
11081116msgstr ""
11091117
1110- #: ../../library/pathlib.rst:1212
1118+ #: ../../library/pathlib.rst:1219
11111119msgid ":meth:`Path.iterdir`"
11121120msgstr ""
11131121
1114- #: ../../library/pathlib.rst:1213
1122+ #: ../../library/pathlib.rst:1220
11151123msgid ":func:`os.path.isdir`"
11161124msgstr ":func:`os.path.isdir`"
11171125
1118- #: ../../library/pathlib.rst:1213
1126+ #: ../../library/pathlib.rst:1220
11191127msgid ":meth:`Path.is_dir`"
11201128msgstr ":meth:`Path.is_dir`"
11211129
1122- #: ../../library/pathlib.rst:1214
1130+ #: ../../library/pathlib.rst:1221
11231131msgid ":func:`os.path.isfile`"
11241132msgstr ":func:`os.path.isfile`"
11251133
1126- #: ../../library/pathlib.rst:1214
1134+ #: ../../library/pathlib.rst:1221
11271135msgid ":meth:`Path.is_file`"
11281136msgstr ":meth:`Path.is_file`"
11291137
1130- #: ../../library/pathlib.rst:1215
1138+ #: ../../library/pathlib.rst:1222
11311139msgid ":func:`os.path.islink`"
11321140msgstr ":func:`os.path.islink`"
11331141
1134- #: ../../library/pathlib.rst:1215
1142+ #: ../../library/pathlib.rst:1222
11351143msgid ":meth:`Path.is_symlink`"
11361144msgstr ":meth:`Path.is_symlink`"
11371145
1138- #: ../../library/pathlib.rst:1216
1146+ #: ../../library/pathlib.rst:1223
11391147msgid ":func:`os.link`"
11401148msgstr ""
11411149
1142- #: ../../library/pathlib.rst:1216
1150+ #: ../../library/pathlib.rst:1223
11431151msgid ":meth:`Path.link_to`"
11441152msgstr ""
11451153
1146- #: ../../library/pathlib.rst:1217
1154+ #: ../../library/pathlib.rst:1224
11471155msgid ":func:`os.symlink`"
11481156msgstr ""
11491157
1150- #: ../../library/pathlib.rst:1217
1158+ #: ../../library/pathlib.rst:1224
11511159msgid ":meth:`Path.symlink_to`"
11521160msgstr ""
11531161
1154- #: ../../library/pathlib.rst:1218
1162+ #: ../../library/pathlib.rst:1225
11551163msgid ":func:`os.readlink`"
11561164msgstr ""
11571165
1158- #: ../../library/pathlib.rst:1218
1166+ #: ../../library/pathlib.rst:1225
11591167msgid ":meth:`Path.readlink`"
11601168msgstr ""
11611169
1162- #: ../../library/pathlib.rst:1219
1170+ #: ../../library/pathlib.rst:1226
11631171msgid ":func:`os.stat`"
11641172msgstr ":func:`os.stat`"
11651173
1166- #: ../../library/pathlib.rst:1219
1174+ #: ../../library/pathlib.rst:1226
11671175msgid ":meth:`Path.stat`, :meth:`Path.owner`, :meth:`Path.group`"
11681176msgstr ":meth:`Path.stat`, :meth:`Path.owner`, :meth:`Path.group`"
11691177
1170- #: ../../library/pathlib.rst:1222
1178+ #: ../../library/pathlib.rst:1229
11711179msgid ":func:`os.path.isabs`"
11721180msgstr ":func:`os.path.isabs`"
11731181
1174- #: ../../library/pathlib.rst:1222
1182+ #: ../../library/pathlib.rst:1229
11751183msgid ":meth:`PurePath.is_absolute`"
11761184msgstr ":meth:`PurePath.is_absolute`"
11771185
1178- #: ../../library/pathlib.rst:1223
1186+ #: ../../library/pathlib.rst:1230
11791187msgid ":func:`os.path.join`"
11801188msgstr ":func:`os.path.join`"
11811189
1182- #: ../../library/pathlib.rst:1223
1190+ #: ../../library/pathlib.rst:1230
11831191msgid ":func:`PurePath.joinpath`"
11841192msgstr ":func:`PurePath.joinpath`"
11851193
1186- #: ../../library/pathlib.rst:1224
1194+ #: ../../library/pathlib.rst:1231
11871195msgid ":func:`os.path.basename`"
11881196msgstr ":func:`os.path.basename`"
11891197
1190- #: ../../library/pathlib.rst:1224
1198+ #: ../../library/pathlib.rst:1231
11911199msgid ":data:`PurePath.name`"
11921200msgstr ":data:`PurePath.name`"
11931201
1194- #: ../../library/pathlib.rst:1225
1202+ #: ../../library/pathlib.rst:1232
11951203msgid ":func:`os.path.dirname`"
11961204msgstr ":func:`os.path.dirname`"
11971205
1198- #: ../../library/pathlib.rst:1225
1206+ #: ../../library/pathlib.rst:1232
11991207msgid ":data:`PurePath.parent`"
12001208msgstr ":data:`PurePath.parent`"
12011209
1202- #: ../../library/pathlib.rst:1226
1210+ #: ../../library/pathlib.rst:1233
12031211msgid ":func:`os.path.samefile`"
12041212msgstr ""
12051213
1206- #: ../../library/pathlib.rst:1226
1214+ #: ../../library/pathlib.rst:1233
12071215msgid ":meth:`Path.samefile`"
12081216msgstr ""
12091217
1210- #: ../../library/pathlib.rst:1227
1218+ #: ../../library/pathlib.rst:1234
12111219msgid ":func:`os.path.splitext`"
12121220msgstr ":func:`os.path.splitext`"
12131221
1214- #: ../../library/pathlib.rst:1227
1222+ #: ../../library/pathlib.rst:1234
12151223msgid ":data:`PurePath.suffix`"
12161224msgstr ":data:`PurePath.suffix`"
0 commit comments