Skip to content

Commit a7bf6c7

Browse files
author
Autobuild bot on TravisCI
committed
[skip ci] Update .po files
1 parent 04ca306 commit a7bf6c7

File tree

5 files changed

+7237
-7197
lines changed

5 files changed

+7237
-7197
lines changed

library/pathlib.po

Lines changed: 75 additions & 67 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ msgid ""
1818
msgstr ""
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 ""
928928
msgstr "引数の並び (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
931943
msgid ""
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
943955
msgid ""
944956
"Remove this file or symbolic link. If the path points to a directory, use "
945957
":func:`Path.rmdir` instead."
946958
msgstr ""
947959
"このファイルまたはシンボリックリンクを削除します。パスがディレクトリを指している場合は :func:`Path.rmdir` を使用してください。"
948960

949-
#: ../../library/pathlib.rst:1136
961+
#: ../../library/pathlib.rst:1150
950962
msgid ""
951963
"If *missing_ok* is false (the default), :exc:`FileNotFoundError` is raised "
952964
"if the path does not exist."
953965
msgstr ""
954966
"*missing_ok* の値が (デフォルトの) 偽の場合、対象のファイルが存在しないと :exc:`FileNotFoundError` "
955967
"を送出します。"
956968

957-
#: ../../library/pathlib.rst:1139
969+
#: ../../library/pathlib.rst:1153
958970
msgid ""
959971
"If *missing_ok* is true, :exc:`FileNotFoundError` exceptions will be ignored"
960972
" (same behavior as the POSIX ``rm -f`` command)."
961973
msgstr ""
962974

963-
#: ../../library/pathlib.rst:1142
975+
#: ../../library/pathlib.rst:1156
964976
msgid "The *missing_ok* parameter was added."
965977
msgstr ""
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
972980
msgid ""
973981
"Open the file pointed to in bytes mode, write *data* to it, and close the "
974982
"file::"
975983
msgstr "指定されたファイルをバイトモードで開き、*data* を書き込み、ファイルを閉じます::"
976984

977-
#: ../../library/pathlib.rst:1164
985+
#: ../../library/pathlib.rst:1171
978986
msgid "An existing file of the same name is overwritten."
979987
msgstr "同じ名前のファイルがすでにあれば上書きされます。"
980988

981-
#: ../../library/pathlib.rst:1171
989+
#: ../../library/pathlib.rst:1178
982990
msgid ""
983991
"Open the file pointed to in text mode, write *data* to it, and close the "
984992
"file::"
985993
msgstr "指定されたファイルをテキストモードで開き、*data* を書き込み、ファイルを閉じます::"
986994

987-
#: ../../library/pathlib.rst:1180
995+
#: ../../library/pathlib.rst:1187
988996
msgid ""
989997
"An existing file of the same name is overwritten. The optional parameters "
990998
"have the same meaning as in :func:`open`."
991999
msgstr ""
9921000

993-
#: ../../library/pathlib.rst:1186
1001+
#: ../../library/pathlib.rst:1193
9941002
msgid "Correspondence to tools in the :mod:`os` module"
9951003
msgstr ":mod:`os` モジュールにあるツールとの対応付け"
9961004

997-
#: ../../library/pathlib.rst:1188
1005+
#: ../../library/pathlib.rst:1195
9981006
msgid ""
9991007
"Below is a table mapping various :mod:`os` functions to their corresponding "
10001008
":class:`PurePath`/:class:`Path` equivalent."
10011009
msgstr ""
10021010
"下にあるのは、様々な :mod:`os` 関数とそれに相当する :class:`PurePath` あるいは :class:`Path` "
10031011
"の同等のものとの対応表です。"
10041012

1005-
#: ../../library/pathlib.rst:1193
1013+
#: ../../library/pathlib.rst:1200
10061014
msgid ""
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
10151023
msgid "os and os.path"
10161024
msgstr "os および os.path"
10171025

1018-
#: ../../library/pathlib.rst:1198
1026+
#: ../../library/pathlib.rst:1205
10191027
msgid "pathlib"
10201028
msgstr "pathlib"
10211029

1022-
#: ../../library/pathlib.rst:1200
1030+
#: ../../library/pathlib.rst:1207
10231031
msgid ":func:`os.path.abspath`"
10241032
msgstr ":func:`os.path.abspath`"
10251033

1026-
#: ../../library/pathlib.rst:1200
1034+
#: ../../library/pathlib.rst:1207
10271035
msgid ":meth:`Path.resolve`"
10281036
msgstr ":meth:`Path.resolve`"
10291037

1030-
#: ../../library/pathlib.rst:1201
1038+
#: ../../library/pathlib.rst:1208
10311039
msgid ":func:`os.chmod`"
10321040
msgstr ""
10331041

1034-
#: ../../library/pathlib.rst:1201
1042+
#: ../../library/pathlib.rst:1208
10351043
msgid ":meth:`Path.chmod`"
10361044
msgstr ""
10371045

1038-
#: ../../library/pathlib.rst:1202
1046+
#: ../../library/pathlib.rst:1209
10391047
msgid ":func:`os.mkdir`"
10401048
msgstr ""
10411049

1042-
#: ../../library/pathlib.rst:1202 ../../library/pathlib.rst:1203
1050+
#: ../../library/pathlib.rst:1209 ../../library/pathlib.rst:1210
10431051
msgid ":meth:`Path.mkdir`"
10441052
msgstr ""
10451053

1046-
#: ../../library/pathlib.rst:1203
1054+
#: ../../library/pathlib.rst:1210
10471055
msgid ":func:`os.makedirs`"
10481056
msgstr ""
10491057

1050-
#: ../../library/pathlib.rst:1204
1058+
#: ../../library/pathlib.rst:1211
10511059
msgid ":func:`os.rename`"
10521060
msgstr ""
10531061

1054-
#: ../../library/pathlib.rst:1204
1062+
#: ../../library/pathlib.rst:1211
10551063
msgid ":meth:`Path.rename`"
10561064
msgstr ""
10571065

1058-
#: ../../library/pathlib.rst:1205
1066+
#: ../../library/pathlib.rst:1212
10591067
msgid ":func:`os.replace`"
10601068
msgstr ""
10611069

1062-
#: ../../library/pathlib.rst:1205
1070+
#: ../../library/pathlib.rst:1212
10631071
msgid ":meth:`Path.replace`"
10641072
msgstr ""
10651073

1066-
#: ../../library/pathlib.rst:1206
1074+
#: ../../library/pathlib.rst:1213
10671075
msgid ":func:`os.rmdir`"
10681076
msgstr ""
10691077

1070-
#: ../../library/pathlib.rst:1206
1078+
#: ../../library/pathlib.rst:1213
10711079
msgid ":meth:`Path.rmdir`"
10721080
msgstr ""
10731081

1074-
#: ../../library/pathlib.rst:1207
1082+
#: ../../library/pathlib.rst:1214
10751083
msgid ":func:`os.remove`, :func:`os.unlink`"
10761084
msgstr ""
10771085

1078-
#: ../../library/pathlib.rst:1207
1086+
#: ../../library/pathlib.rst:1214
10791087
msgid ":meth:`Path.unlink`"
10801088
msgstr ""
10811089

1082-
#: ../../library/pathlib.rst:1208
1090+
#: ../../library/pathlib.rst:1215
10831091
msgid ":func:`os.getcwd`"
10841092
msgstr ":func:`os.getcwd`"
10851093

1086-
#: ../../library/pathlib.rst:1208
1094+
#: ../../library/pathlib.rst:1215
10871095
msgid ":func:`Path.cwd`"
10881096
msgstr ":func:`Path.cwd`"
10891097

1090-
#: ../../library/pathlib.rst:1209
1098+
#: ../../library/pathlib.rst:1216
10911099
msgid ":func:`os.path.exists`"
10921100
msgstr ":func:`os.path.exists`"
10931101

1094-
#: ../../library/pathlib.rst:1209
1102+
#: ../../library/pathlib.rst:1216
10951103
msgid ":meth:`Path.exists`"
10961104
msgstr ":meth:`Path.exists`"
10971105

1098-
#: ../../library/pathlib.rst:1210
1106+
#: ../../library/pathlib.rst:1217
10991107
msgid ":func:`os.path.expanduser`"
11001108
msgstr ":func:`os.path.expanduser`"
11011109

1102-
#: ../../library/pathlib.rst:1210
1110+
#: ../../library/pathlib.rst:1217
11031111
msgid ":meth:`Path.expanduser` and :meth:`Path.home`"
11041112
msgstr ":meth:`Path.expanduser` および :meth:`Path.home`"
11051113

1106-
#: ../../library/pathlib.rst:1212
1114+
#: ../../library/pathlib.rst:1219
11071115
msgid ":func:`os.listdir`"
11081116
msgstr ""
11091117

1110-
#: ../../library/pathlib.rst:1212
1118+
#: ../../library/pathlib.rst:1219
11111119
msgid ":meth:`Path.iterdir`"
11121120
msgstr ""
11131121

1114-
#: ../../library/pathlib.rst:1213
1122+
#: ../../library/pathlib.rst:1220
11151123
msgid ":func:`os.path.isdir`"
11161124
msgstr ":func:`os.path.isdir`"
11171125

1118-
#: ../../library/pathlib.rst:1213
1126+
#: ../../library/pathlib.rst:1220
11191127
msgid ":meth:`Path.is_dir`"
11201128
msgstr ":meth:`Path.is_dir`"
11211129

1122-
#: ../../library/pathlib.rst:1214
1130+
#: ../../library/pathlib.rst:1221
11231131
msgid ":func:`os.path.isfile`"
11241132
msgstr ":func:`os.path.isfile`"
11251133

1126-
#: ../../library/pathlib.rst:1214
1134+
#: ../../library/pathlib.rst:1221
11271135
msgid ":meth:`Path.is_file`"
11281136
msgstr ":meth:`Path.is_file`"
11291137

1130-
#: ../../library/pathlib.rst:1215
1138+
#: ../../library/pathlib.rst:1222
11311139
msgid ":func:`os.path.islink`"
11321140
msgstr ":func:`os.path.islink`"
11331141

1134-
#: ../../library/pathlib.rst:1215
1142+
#: ../../library/pathlib.rst:1222
11351143
msgid ":meth:`Path.is_symlink`"
11361144
msgstr ":meth:`Path.is_symlink`"
11371145

1138-
#: ../../library/pathlib.rst:1216
1146+
#: ../../library/pathlib.rst:1223
11391147
msgid ":func:`os.link`"
11401148
msgstr ""
11411149

1142-
#: ../../library/pathlib.rst:1216
1150+
#: ../../library/pathlib.rst:1223
11431151
msgid ":meth:`Path.link_to`"
11441152
msgstr ""
11451153

1146-
#: ../../library/pathlib.rst:1217
1154+
#: ../../library/pathlib.rst:1224
11471155
msgid ":func:`os.symlink`"
11481156
msgstr ""
11491157

1150-
#: ../../library/pathlib.rst:1217
1158+
#: ../../library/pathlib.rst:1224
11511159
msgid ":meth:`Path.symlink_to`"
11521160
msgstr ""
11531161

1154-
#: ../../library/pathlib.rst:1218
1162+
#: ../../library/pathlib.rst:1225
11551163
msgid ":func:`os.readlink`"
11561164
msgstr ""
11571165

1158-
#: ../../library/pathlib.rst:1218
1166+
#: ../../library/pathlib.rst:1225
11591167
msgid ":meth:`Path.readlink`"
11601168
msgstr ""
11611169

1162-
#: ../../library/pathlib.rst:1219
1170+
#: ../../library/pathlib.rst:1226
11631171
msgid ":func:`os.stat`"
11641172
msgstr ":func:`os.stat`"
11651173

1166-
#: ../../library/pathlib.rst:1219
1174+
#: ../../library/pathlib.rst:1226
11671175
msgid ":meth:`Path.stat`, :meth:`Path.owner`, :meth:`Path.group`"
11681176
msgstr ":meth:`Path.stat`, :meth:`Path.owner`, :meth:`Path.group`"
11691177

1170-
#: ../../library/pathlib.rst:1222
1178+
#: ../../library/pathlib.rst:1229
11711179
msgid ":func:`os.path.isabs`"
11721180
msgstr ":func:`os.path.isabs`"
11731181

1174-
#: ../../library/pathlib.rst:1222
1182+
#: ../../library/pathlib.rst:1229
11751183
msgid ":meth:`PurePath.is_absolute`"
11761184
msgstr ":meth:`PurePath.is_absolute`"
11771185

1178-
#: ../../library/pathlib.rst:1223
1186+
#: ../../library/pathlib.rst:1230
11791187
msgid ":func:`os.path.join`"
11801188
msgstr ":func:`os.path.join`"
11811189

1182-
#: ../../library/pathlib.rst:1223
1190+
#: ../../library/pathlib.rst:1230
11831191
msgid ":func:`PurePath.joinpath`"
11841192
msgstr ":func:`PurePath.joinpath`"
11851193

1186-
#: ../../library/pathlib.rst:1224
1194+
#: ../../library/pathlib.rst:1231
11871195
msgid ":func:`os.path.basename`"
11881196
msgstr ":func:`os.path.basename`"
11891197

1190-
#: ../../library/pathlib.rst:1224
1198+
#: ../../library/pathlib.rst:1231
11911199
msgid ":data:`PurePath.name`"
11921200
msgstr ":data:`PurePath.name`"
11931201

1194-
#: ../../library/pathlib.rst:1225
1202+
#: ../../library/pathlib.rst:1232
11951203
msgid ":func:`os.path.dirname`"
11961204
msgstr ":func:`os.path.dirname`"
11971205

1198-
#: ../../library/pathlib.rst:1225
1206+
#: ../../library/pathlib.rst:1232
11991207
msgid ":data:`PurePath.parent`"
12001208
msgstr ":data:`PurePath.parent`"
12011209

1202-
#: ../../library/pathlib.rst:1226
1210+
#: ../../library/pathlib.rst:1233
12031211
msgid ":func:`os.path.samefile`"
12041212
msgstr ""
12051213

1206-
#: ../../library/pathlib.rst:1226
1214+
#: ../../library/pathlib.rst:1233
12071215
msgid ":meth:`Path.samefile`"
12081216
msgstr ""
12091217

1210-
#: ../../library/pathlib.rst:1227
1218+
#: ../../library/pathlib.rst:1234
12111219
msgid ":func:`os.path.splitext`"
12121220
msgstr ":func:`os.path.splitext`"
12131221

1214-
#: ../../library/pathlib.rst:1227
1222+
#: ../../library/pathlib.rst:1234
12151223
msgid ":data:`PurePath.suffix`"
12161224
msgstr ":data:`PurePath.suffix`"

0 commit comments

Comments
 (0)