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

Skip to content

Commit 9735f0f

Browse files
author
Autobuild bot on TravisCI
committed
[skip ci] Update .po files
1 parent 1679e17 commit 9735f0f

File tree

2 files changed

+135
-126
lines changed

2 files changed

+135
-126
lines changed

library/pathlib.po

Lines changed: 72 additions & 64 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ msgid ""
1212
msgstr ""
1313
"Project-Id-Version: Python 3.8\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2021-01-01 16:06+0000\n"
15+
"POT-Creation-Date: 2021-04-08 17:01+0000\n"
1616
"PO-Revision-Date: 2020-05-30 12:07+0000\n"
1717
"Last-Translator: Naoki Nakamura <[email protected]>, 2020\n"
1818
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
@@ -886,6 +886,18 @@ msgid ""
886886
msgstr "引数の並び (link, target) は :func:`os.symlink` とは逆です。"
887887

888888
#: ../../library/pathlib.rst:1068
889+
msgid "Make *target* a hard link to this path."
890+
msgstr ""
891+
892+
#: ../../library/pathlib.rst:1072
893+
msgid ""
894+
"This function does not make this path a hard link to *target*, despite the "
895+
"implication of the function and argument names. The argument order (target, "
896+
"link) is the reverse of :func:`Path.symlink_to`, but matches that of "
897+
":func:`os.link`."
898+
msgstr ""
899+
900+
#: ../../library/pathlib.rst:1082
889901
msgid ""
890902
"Create a file at this given path. If *mode* is given, it is combined with "
891903
"the process' ``umask`` value to determine the file mode and access flags. "
@@ -897,70 +909,66 @@ msgstr ""
897909
"値と組み合わせてファイルのモードとアクセスフラグが決定されます。ファイルがすでに存在した場合、*exist_ok* が真ならばこの関数は正常に終了します"
898910
" (そしてファイルの更新日付が現在の日時に変更されます)。その他の場合は :exc:`FileExistsError` が送出されます。"
899911

900-
#: ../../library/pathlib.rst:1077
912+
#: ../../library/pathlib.rst:1091
901913
msgid ""
902914
"Remove this file or symbolic link. If the path points to a directory, use "
903915
":func:`Path.rmdir` instead."
904916
msgstr ""
905917
"このファイルまたはシンボリックリンクを削除します。パスがディレクトリを指している場合は :func:`Path.rmdir` を使用してください。"
906918

907-
#: ../../library/pathlib.rst:1080
919+
#: ../../library/pathlib.rst:1094
908920
msgid ""
909921
"If *missing_ok* is false (the default), :exc:`FileNotFoundError` is raised "
910922
"if the path does not exist."
911923
msgstr ""
912924
"*missing_ok* の値が (デフォルトの) 偽の場合、対象のファイルが存在しないと :exc:`FileNotFoundError` "
913925
"を送出します。"
914926

915-
#: ../../library/pathlib.rst:1083
927+
#: ../../library/pathlib.rst:1097
916928
msgid ""
917929
"If *missing_ok* is true, :exc:`FileNotFoundError` exceptions will be ignored"
918930
" (same behavior as the POSIX ``rm -f`` command)."
919931
msgstr ""
920932

921-
#: ../../library/pathlib.rst:1086
933+
#: ../../library/pathlib.rst:1100
922934
msgid "The *missing_ok* parameter was added."
923935
msgstr ""
924936

925-
#: ../../library/pathlib.rst:1092
926-
msgid "Create a hard link pointing to a path named *target*."
927-
msgstr ""
928-
929-
#: ../../library/pathlib.rst:1099
937+
#: ../../library/pathlib.rst:1106
930938
msgid ""
931939
"Open the file pointed to in bytes mode, write *data* to it, and close the "
932940
"file::"
933941
msgstr "指定されたファイルをバイトモードで開き、*data* を書き込み、ファイルを閉じます::"
934942

935-
#: ../../library/pathlib.rst:1108
943+
#: ../../library/pathlib.rst:1115
936944
msgid "An existing file of the same name is overwritten."
937945
msgstr "同じ名前のファイルがすでにあれば上書きされます。"
938946

939-
#: ../../library/pathlib.rst:1115
947+
#: ../../library/pathlib.rst:1122
940948
msgid ""
941949
"Open the file pointed to in text mode, write *data* to it, and close the "
942950
"file::"
943951
msgstr "指定されたファイルをテキストモードで開き、*data* を書き込み、ファイルを閉じます::"
944952

945-
#: ../../library/pathlib.rst:1124
953+
#: ../../library/pathlib.rst:1131
946954
msgid ""
947955
"An existing file of the same name is overwritten. The optional parameters "
948956
"have the same meaning as in :func:`open`."
949957
msgstr ""
950958

951-
#: ../../library/pathlib.rst:1130
959+
#: ../../library/pathlib.rst:1137
952960
msgid "Correspondence to tools in the :mod:`os` module"
953961
msgstr ":mod:`os` モジュールにあるツールとの対応付け"
954962

955-
#: ../../library/pathlib.rst:1132
963+
#: ../../library/pathlib.rst:1139
956964
msgid ""
957965
"Below is a table mapping various :mod:`os` functions to their corresponding "
958966
":class:`PurePath`/:class:`Path` equivalent."
959967
msgstr ""
960968
"下にあるのは、様々な :mod:`os` 関数とそれに相当する :class:`PurePath` あるいは :class:`Path` "
961969
"の同等のものとの対応表です。"
962970

963-
#: ../../library/pathlib.rst:1137
971+
#: ../../library/pathlib.rst:1144
964972
msgid ""
965973
"Although :func:`os.path.relpath` and :meth:`PurePath.relative_to` have some "
966974
"overlapping use-cases, their semantics differ enough to warrant not "
@@ -969,194 +977,194 @@ msgstr ""
969977
":func:`os.path.relpath` および :meth:`PurePath.relative_to` "
970978
"は使い道が重なるところもありますが、それらの意味論は同等だと見なすには違い過ぎています。"
971979

972-
#: ../../library/pathlib.rst:1142
980+
#: ../../library/pathlib.rst:1149
973981
msgid "os and os.path"
974982
msgstr "os および os.path"
975983

976-
#: ../../library/pathlib.rst:1142
984+
#: ../../library/pathlib.rst:1149
977985
msgid "pathlib"
978986
msgstr "pathlib"
979987

980-
#: ../../library/pathlib.rst:1144
988+
#: ../../library/pathlib.rst:1151
981989
msgid ":func:`os.path.abspath`"
982990
msgstr ":func:`os.path.abspath`"
983991

984-
#: ../../library/pathlib.rst:1144
992+
#: ../../library/pathlib.rst:1151
985993
msgid ":meth:`Path.resolve`"
986994
msgstr ":meth:`Path.resolve`"
987995

988-
#: ../../library/pathlib.rst:1145
996+
#: ../../library/pathlib.rst:1152
989997
msgid ":func:`os.chmod`"
990998
msgstr ""
991999

992-
#: ../../library/pathlib.rst:1145
1000+
#: ../../library/pathlib.rst:1152
9931001
msgid ":meth:`Path.chmod`"
9941002
msgstr ""
9951003

996-
#: ../../library/pathlib.rst:1146
1004+
#: ../../library/pathlib.rst:1153
9971005
msgid ":func:`os.mkdir`"
9981006
msgstr ""
9991007

1000-
#: ../../library/pathlib.rst:1146
1008+
#: ../../library/pathlib.rst:1153
10011009
msgid ":meth:`Path.mkdir`"
10021010
msgstr ""
10031011

1004-
#: ../../library/pathlib.rst:1147
1012+
#: ../../library/pathlib.rst:1154
10051013
msgid ":func:`os.rename`"
10061014
msgstr ""
10071015

1008-
#: ../../library/pathlib.rst:1147
1016+
#: ../../library/pathlib.rst:1154
10091017
msgid ":meth:`Path.rename`"
10101018
msgstr ""
10111019

1012-
#: ../../library/pathlib.rst:1148
1020+
#: ../../library/pathlib.rst:1155
10131021
msgid ":func:`os.replace`"
10141022
msgstr ""
10151023

1016-
#: ../../library/pathlib.rst:1148
1024+
#: ../../library/pathlib.rst:1155
10171025
msgid ":meth:`Path.replace`"
10181026
msgstr ""
10191027

1020-
#: ../../library/pathlib.rst:1149
1028+
#: ../../library/pathlib.rst:1156
10211029
msgid ":func:`os.rmdir`"
10221030
msgstr ""
10231031

1024-
#: ../../library/pathlib.rst:1149
1032+
#: ../../library/pathlib.rst:1156
10251033
msgid ":meth:`Path.rmdir`"
10261034
msgstr ""
10271035

1028-
#: ../../library/pathlib.rst:1150
1036+
#: ../../library/pathlib.rst:1157
10291037
msgid ":func:`os.remove`, :func:`os.unlink`"
10301038
msgstr ""
10311039

1032-
#: ../../library/pathlib.rst:1150
1040+
#: ../../library/pathlib.rst:1157
10331041
msgid ":meth:`Path.unlink`"
10341042
msgstr ""
10351043

1036-
#: ../../library/pathlib.rst:1151
1044+
#: ../../library/pathlib.rst:1158
10371045
msgid ":func:`os.getcwd`"
10381046
msgstr ":func:`os.getcwd`"
10391047

1040-
#: ../../library/pathlib.rst:1151
1048+
#: ../../library/pathlib.rst:1158
10411049
msgid ":func:`Path.cwd`"
10421050
msgstr ":func:`Path.cwd`"
10431051

1044-
#: ../../library/pathlib.rst:1152
1052+
#: ../../library/pathlib.rst:1159
10451053
msgid ":func:`os.path.exists`"
10461054
msgstr ":func:`os.path.exists`"
10471055

1048-
#: ../../library/pathlib.rst:1152
1056+
#: ../../library/pathlib.rst:1159
10491057
msgid ":meth:`Path.exists`"
10501058
msgstr ":meth:`Path.exists`"
10511059

1052-
#: ../../library/pathlib.rst:1153
1060+
#: ../../library/pathlib.rst:1160
10531061
msgid ":func:`os.path.expanduser`"
10541062
msgstr ":func:`os.path.expanduser`"
10551063

1056-
#: ../../library/pathlib.rst:1153
1064+
#: ../../library/pathlib.rst:1160
10571065
msgid ":meth:`Path.expanduser` and :meth:`Path.home`"
10581066
msgstr ":meth:`Path.expanduser` および :meth:`Path.home`"
10591067

1060-
#: ../../library/pathlib.rst:1155
1068+
#: ../../library/pathlib.rst:1162
10611069
msgid ":func:`os.listdir`"
10621070
msgstr ""
10631071

1064-
#: ../../library/pathlib.rst:1155
1072+
#: ../../library/pathlib.rst:1162
10651073
msgid ":meth:`Path.iterdir`"
10661074
msgstr ""
10671075

1068-
#: ../../library/pathlib.rst:1156
1076+
#: ../../library/pathlib.rst:1163
10691077
msgid ":func:`os.path.isdir`"
10701078
msgstr ":func:`os.path.isdir`"
10711079

1072-
#: ../../library/pathlib.rst:1156
1080+
#: ../../library/pathlib.rst:1163
10731081
msgid ":meth:`Path.is_dir`"
10741082
msgstr ":meth:`Path.is_dir`"
10751083

1076-
#: ../../library/pathlib.rst:1157
1084+
#: ../../library/pathlib.rst:1164
10771085
msgid ":func:`os.path.isfile`"
10781086
msgstr ":func:`os.path.isfile`"
10791087

1080-
#: ../../library/pathlib.rst:1157
1088+
#: ../../library/pathlib.rst:1164
10811089
msgid ":meth:`Path.is_file`"
10821090
msgstr ":meth:`Path.is_file`"
10831091

1084-
#: ../../library/pathlib.rst:1158
1092+
#: ../../library/pathlib.rst:1165
10851093
msgid ":func:`os.path.islink`"
10861094
msgstr ":func:`os.path.islink`"
10871095

1088-
#: ../../library/pathlib.rst:1158
1096+
#: ../../library/pathlib.rst:1165
10891097
msgid ":meth:`Path.is_symlink`"
10901098
msgstr ":meth:`Path.is_symlink`"
10911099

1092-
#: ../../library/pathlib.rst:1159
1100+
#: ../../library/pathlib.rst:1166
10931101
msgid ":func:`os.link`"
10941102
msgstr ""
10951103

1096-
#: ../../library/pathlib.rst:1159
1104+
#: ../../library/pathlib.rst:1166
10971105
msgid ":meth:`Path.link_to`"
10981106
msgstr ""
10991107

1100-
#: ../../library/pathlib.rst:1160
1108+
#: ../../library/pathlib.rst:1167
11011109
msgid ":func:`os.symlink`"
11021110
msgstr ""
11031111

1104-
#: ../../library/pathlib.rst:1160
1112+
#: ../../library/pathlib.rst:1167
11051113
msgid ":meth:`Path.symlink_to`"
11061114
msgstr ""
11071115

1108-
#: ../../library/pathlib.rst:1161
1116+
#: ../../library/pathlib.rst:1168
11091117
msgid ":func:`os.stat`"
11101118
msgstr ":func:`os.stat`"
11111119

1112-
#: ../../library/pathlib.rst:1161
1120+
#: ../../library/pathlib.rst:1168
11131121
msgid ":meth:`Path.stat`, :meth:`Path.owner`, :meth:`Path.group`"
11141122
msgstr ":meth:`Path.stat`, :meth:`Path.owner`, :meth:`Path.group`"
11151123

1116-
#: ../../library/pathlib.rst:1164
1124+
#: ../../library/pathlib.rst:1171
11171125
msgid ":func:`os.path.isabs`"
11181126
msgstr ":func:`os.path.isabs`"
11191127

1120-
#: ../../library/pathlib.rst:1164
1128+
#: ../../library/pathlib.rst:1171
11211129
msgid ":meth:`PurePath.is_absolute`"
11221130
msgstr ":meth:`PurePath.is_absolute`"
11231131

1124-
#: ../../library/pathlib.rst:1165
1132+
#: ../../library/pathlib.rst:1172
11251133
msgid ":func:`os.path.join`"
11261134
msgstr ":func:`os.path.join`"
11271135

1128-
#: ../../library/pathlib.rst:1165
1136+
#: ../../library/pathlib.rst:1172
11291137
msgid ":func:`PurePath.joinpath`"
11301138
msgstr ":func:`PurePath.joinpath`"
11311139

1132-
#: ../../library/pathlib.rst:1166
1140+
#: ../../library/pathlib.rst:1173
11331141
msgid ":func:`os.path.basename`"
11341142
msgstr ":func:`os.path.basename`"
11351143

1136-
#: ../../library/pathlib.rst:1166
1144+
#: ../../library/pathlib.rst:1173
11371145
msgid ":data:`PurePath.name`"
11381146
msgstr ":data:`PurePath.name`"
11391147

1140-
#: ../../library/pathlib.rst:1167
1148+
#: ../../library/pathlib.rst:1174
11411149
msgid ":func:`os.path.dirname`"
11421150
msgstr ":func:`os.path.dirname`"
11431151

1144-
#: ../../library/pathlib.rst:1167
1152+
#: ../../library/pathlib.rst:1174
11451153
msgid ":data:`PurePath.parent`"
11461154
msgstr ":data:`PurePath.parent`"
11471155

1148-
#: ../../library/pathlib.rst:1168
1156+
#: ../../library/pathlib.rst:1175
11491157
msgid ":func:`os.path.samefile`"
11501158
msgstr ""
11511159

1152-
#: ../../library/pathlib.rst:1168
1160+
#: ../../library/pathlib.rst:1175
11531161
msgid ":meth:`Path.samefile`"
11541162
msgstr ""
11551163

1156-
#: ../../library/pathlib.rst:1169
1164+
#: ../../library/pathlib.rst:1176
11571165
msgid ":func:`os.path.splitext`"
11581166
msgstr ":func:`os.path.splitext`"
11591167

1160-
#: ../../library/pathlib.rst:1169
1168+
#: ../../library/pathlib.rst:1176
11611169
msgid ":data:`PurePath.suffix`"
11621170
msgstr ":data:`PurePath.suffix`"

0 commit comments

Comments
 (0)