8
8
msgstr ""
9
9
"Project-Id-Version : Python 3.7\n "
10
10
"Report-Msgid-Bugs-To : \n "
11
- "POT-Creation-Date : 2018-08-04 08:47 +0900\n "
11
+ "POT-Creation-Date : 2018-08-07 08:48 +0900\n "
12
12
"PO-Revision-Date : YEAR-MO-DA HO:MI+ZONE\n "
13
13
"Last-Translator : Osamu NAKAMURA, 2017\n "
14
14
"Language-Team : Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n "
@@ -748,10 +748,12 @@ msgid "Return the decoded contents of the pointed-to file as a string::"
748
748
msgstr "指定されたファイルの内容を文字列としてデコードして返します::"
749
749
750
750
#: ../../library/pathlib.rst:918
751
- msgid "The optional parameters have the same meaning as in :func:`open`."
752
- msgstr "任意のパラメーターは :func:`open` と同じです。"
751
+ msgid ""
752
+ "The file is opened and then closed. The optional parameters have the same "
753
+ "meaning as in :func:`open`."
754
+ msgstr ""
753
755
754
- #: ../../library/pathlib.rst:925
756
+ #: ../../library/pathlib.rst:926
755
757
msgid ""
756
758
"Rename this file or directory to the given *target*. On Unix, if *target* "
757
759
"exists and is a file, it will be replaced silently if the user has "
@@ -761,27 +763,27 @@ msgstr ""
761
763
"Unix では *target* が存在するファイルの場合、ユーザにパーミッションがあれば静かに置換されます。\n"
762
764
"*target* は文字列か別のパスオブジェクトです::"
763
765
764
- #: ../../library/pathlib.rst:940
766
+ #: ../../library/pathlib.rst:941
765
767
msgid ""
766
768
"Rename this file or directory to the given *target*. If *target* points to "
767
769
"an existing file or directory, it will be unconditionally replaced."
768
770
msgstr ""
769
771
"現在のファイルまたはディレクトリの名前を *target* に変更します。*target* "
770
772
"が既存のファイルかディレクトリを指していた場合、無条件に置き換えられます。"
771
773
772
- #: ../../library/pathlib.rst:946
774
+ #: ../../library/pathlib.rst:947
773
775
msgid ""
774
776
"Make the path absolute, resolving any symlinks. A new path object is "
775
777
"returned::"
776
778
msgstr "パスを絶対パスにし、あらゆるシンボリックリンクを解決します。新しいパスオブジェクトが返されます::"
777
779
778
- #: ../../library/pathlib.rst:955
780
+ #: ../../library/pathlib.rst:956
779
781
msgid ""
780
782
"\" ``..``\" components are also eliminated (this is the only method to do "
781
783
"so)::"
782
784
msgstr "\" ``..``\" 要素は除去されます (このような挙動を示すのはこのメソッドだけです)::"
783
785
784
- #: ../../library/pathlib.rst:961
786
+ #: ../../library/pathlib.rst:962
785
787
msgid ""
786
788
"If the path doesn't exist and *strict* is ``True``, :exc:`FileNotFoundError`"
787
789
" is raised. If *strict* is ``False``, the path is resolved as far as "
@@ -793,21 +795,21 @@ msgstr ""
793
795
"*strict* が ``False`` の場合は、パスは可能な限り解決され、残りの部分は存在するかのチェックをせずに追加されます。\n"
794
796
"もしパスの解決にあたって無限ループする場合は、:exc:`RuntimeError` が送出されます。"
795
797
796
- #: ../../library/pathlib.rst:967
798
+ #: ../../library/pathlib.rst:968
797
799
msgid "The *strict* argument."
798
800
msgstr "*strict* 引数"
799
801
800
- #: ../../library/pathlib.rst:972
802
+ #: ../../library/pathlib.rst:973
801
803
msgid ""
802
804
"This is like calling :meth:`Path.glob` with \" ``**``\" added in front of the"
803
805
" given *pattern*::"
804
806
msgstr ""
805
807
806
- #: ../../library/pathlib.rst:985
808
+ #: ../../library/pathlib.rst:986
807
809
msgid "Remove this directory. The directory must be empty."
808
810
msgstr "現在のディレクトリを削除します。ディレクトリは空でなければなりません。"
809
811
810
- #: ../../library/pathlib.rst:990
812
+ #: ../../library/pathlib.rst:991
811
813
msgid ""
812
814
"Return whether this path points to the same file as *other_path*, which can "
813
815
"be either a Path object, or a string. The semantics are similar to "
@@ -817,13 +819,13 @@ msgstr ""
817
819
" ``False`` を返します。意味的には :func:`os.path.samefile` および :func:`os.path.samestat`"
818
820
" と同じです。"
819
821
820
- #: ../../library/pathlib.rst:994
822
+ #: ../../library/pathlib.rst:995
821
823
msgid ""
822
824
"An :exc:`OSError` can be raised if either file cannot be accessed for some "
823
825
"reason."
824
826
msgstr "なんらかの理由でどちらかのファイルにアクセスできない場合は :exc:`OSError` が送出されます。"
825
827
826
- #: ../../library/pathlib.rst:1011
828
+ #: ../../library/pathlib.rst:1012
827
829
msgid ""
828
830
"Make this path a symbolic link to *target*. Under Windows, "
829
831
"*target_is_directory* must be true (default ``False``) if the link's target "
@@ -833,13 +835,13 @@ msgstr ""
833
835
"*target_is_directory* が真でなければなりません (デフォルトは ``False``)。POSIX "
834
836
"では、*target_is_directory* の値は無視されます。"
835
837
836
- #: ../../library/pathlib.rst:1027
838
+ #: ../../library/pathlib.rst:1028
837
839
msgid ""
838
840
"The order of arguments (link, target) is the reverse of "
839
841
":func:`os.symlink`'s."
840
842
msgstr "引数の並び (link, target) は :func:`os.symlink` とは逆です。"
841
843
842
- #: ../../library/pathlib.rst:1033
844
+ #: ../../library/pathlib.rst:1034
843
845
msgid ""
844
846
"Create a file at this given path. If *mode* is given, it is combined with "
845
847
"the process' ``umask`` value to determine the file mode and access flags. "
@@ -851,154 +853,154 @@ msgstr ""
851
853
"値と組み合わせてファイルのモードとアクセスフラグが決定されます。ファイルがすでに存在した場合、*exist_ok* が真ならばこの関数は正常に終了します"
852
854
" (そしてファイルの更新日付が現在の日時に変更されます)。その他の場合は :exc:`FileExistsError` が送出されます。"
853
855
854
- #: ../../library/pathlib.rst:1042
856
+ #: ../../library/pathlib.rst:1043
855
857
msgid ""
856
858
"Remove this file or symbolic link. If the path points to a directory, use "
857
859
":func:`Path.rmdir` instead."
858
860
msgstr ""
859
861
"このファイルまたはシンボリックリンクを削除します。パスがディレクトリを指している場合は :func:`Path.rmdir` を使用してください。"
860
862
861
- #: ../../library/pathlib.rst:1048
863
+ #: ../../library/pathlib.rst:1049
862
864
msgid ""
863
865
"Open the file pointed to in bytes mode, write *data* to it, and close the "
864
866
"file::"
865
867
msgstr "指定されたファイルをバイトモードで開き、*data* を書き込み、ファイルを閉じます::"
866
868
867
- #: ../../library/pathlib.rst:1057
869
+ #: ../../library/pathlib.rst:1058
868
870
msgid "An existing file of the same name is overwritten."
869
871
msgstr "同じ名前のファイルがすでにあれば上書きされます。"
870
872
871
- #: ../../library/pathlib.rst:1064
873
+ #: ../../library/pathlib.rst:1065
872
874
msgid ""
873
875
"Open the file pointed to in text mode, write *data* to it, and close the "
874
876
"file::"
875
877
msgstr "指定されたファイルをテキストモードで開き、*data* を書き込み、ファイルを閉じます::"
876
878
877
- #: ../../library/pathlib.rst:1076
879
+ #: ../../library/pathlib.rst:1077
878
880
msgid "Correspondence to tools in the :mod:`os` module"
879
881
msgstr ""
880
882
881
- #: ../../library/pathlib.rst:1078
883
+ #: ../../library/pathlib.rst:1079
882
884
msgid ""
883
885
"Below is a table mapping various :mod:`os` functions to their corresponding "
884
886
":class:`PurePath`/:class:`Path` equivalent."
885
887
msgstr ""
886
888
887
- #: ../../library/pathlib.rst:1083
889
+ #: ../../library/pathlib.rst:1084
888
890
msgid ""
889
891
"Although :func:`os.path.relpath` and :meth:`PurePath.relative_to` have some "
890
892
"overlapping use-cases, their semantics differ enough to warrant not "
891
893
"considering them equivalent."
892
894
msgstr ""
893
895
894
- #: ../../library/pathlib.rst:1088
896
+ #: ../../library/pathlib.rst:1089
895
897
msgid "os and os.path"
896
898
msgstr ""
897
899
898
- #: ../../library/pathlib.rst:1088
900
+ #: ../../library/pathlib.rst:1089
899
901
msgid "pathlib"
900
902
msgstr "pathlib"
901
903
902
- #: ../../library/pathlib.rst:1090
904
+ #: ../../library/pathlib.rst:1091
903
905
msgid ":func:`os.path.abspath`"
904
906
msgstr ""
905
907
906
- #: ../../library/pathlib.rst:1090
908
+ #: ../../library/pathlib.rst:1091
907
909
msgid ":meth:`Path.resolve`"
908
910
msgstr ""
909
911
910
- #: ../../library/pathlib.rst:1091
912
+ #: ../../library/pathlib.rst:1092
911
913
msgid ":func:`os.getcwd`"
912
914
msgstr ""
913
915
914
- #: ../../library/pathlib.rst:1091
916
+ #: ../../library/pathlib.rst:1092
915
917
msgid ":func:`Path.cwd`"
916
918
msgstr ""
917
919
918
- #: ../../library/pathlib.rst:1092
920
+ #: ../../library/pathlib.rst:1093
919
921
msgid ":func:`os.path.exists`"
920
922
msgstr ""
921
923
922
- #: ../../library/pathlib.rst:1092
924
+ #: ../../library/pathlib.rst:1093
923
925
msgid ":meth:`Path.exists`"
924
926
msgstr ""
925
927
926
- #: ../../library/pathlib.rst:1093
928
+ #: ../../library/pathlib.rst:1094
927
929
msgid ":func:`os.path.expanduser`"
928
930
msgstr ""
929
931
930
- #: ../../library/pathlib.rst:1093
932
+ #: ../../library/pathlib.rst:1094
931
933
msgid ":meth:`Path.expanduser` and :meth:`Path.home`"
932
934
msgstr ""
933
935
934
- #: ../../library/pathlib.rst:1095
936
+ #: ../../library/pathlib.rst:1096
935
937
msgid ":func:`os.path.isdir`"
936
938
msgstr ""
937
939
938
- #: ../../library/pathlib.rst:1095
940
+ #: ../../library/pathlib.rst:1096
939
941
msgid ":meth:`Path.is_dir`"
940
942
msgstr ""
941
943
942
- #: ../../library/pathlib.rst:1096
944
+ #: ../../library/pathlib.rst:1097
943
945
msgid ":func:`os.path.isfile`"
944
946
msgstr ""
945
947
946
- #: ../../library/pathlib.rst:1096
948
+ #: ../../library/pathlib.rst:1097
947
949
msgid ":meth:`Path.is_file`"
948
950
msgstr ""
949
951
950
- #: ../../library/pathlib.rst:1097
952
+ #: ../../library/pathlib.rst:1098
951
953
msgid ":func:`os.path.islink`"
952
954
msgstr ""
953
955
954
- #: ../../library/pathlib.rst:1097
956
+ #: ../../library/pathlib.rst:1098
955
957
msgid ":meth:`Path.is_symlink`"
956
958
msgstr ""
957
959
958
- #: ../../library/pathlib.rst:1098
960
+ #: ../../library/pathlib.rst:1099
959
961
msgid ":func:`os.stat`"
960
962
msgstr ""
961
963
962
- #: ../../library/pathlib.rst:1098
964
+ #: ../../library/pathlib.rst:1099
963
965
msgid ":meth:`Path.stat`, :meth:`Path.owner`, :meth:`Path.group`"
964
966
msgstr ""
965
967
966
- #: ../../library/pathlib.rst:1101
968
+ #: ../../library/pathlib.rst:1102
967
969
msgid ":func:`os.path.isabs`"
968
970
msgstr ""
969
971
970
- #: ../../library/pathlib.rst:1101
972
+ #: ../../library/pathlib.rst:1102
971
973
msgid ":meth:`PurePath.is_absolute`"
972
974
msgstr ""
973
975
974
- #: ../../library/pathlib.rst:1102
976
+ #: ../../library/pathlib.rst:1103
975
977
msgid ":func:`os.path.join`"
976
978
msgstr ""
977
979
978
- #: ../../library/pathlib.rst:1102
980
+ #: ../../library/pathlib.rst:1103
979
981
msgid ":func:`PurePath.joinpath`"
980
982
msgstr ""
981
983
982
- #: ../../library/pathlib.rst:1103
984
+ #: ../../library/pathlib.rst:1104
983
985
msgid ":func:`os.path.basename`"
984
986
msgstr ""
985
987
986
- #: ../../library/pathlib.rst:1103
988
+ #: ../../library/pathlib.rst:1104
987
989
msgid ":data:`PurePath.name`"
988
990
msgstr ""
989
991
990
- #: ../../library/pathlib.rst:1104
992
+ #: ../../library/pathlib.rst:1105
991
993
msgid ":func:`os.path.dirname`"
992
994
msgstr ""
993
995
994
- #: ../../library/pathlib.rst:1104
996
+ #: ../../library/pathlib.rst:1105
995
997
msgid ":data:`PurePath.parent`"
996
998
msgstr ""
997
999
998
- #: ../../library/pathlib.rst:1105
1000
+ #: ../../library/pathlib.rst:1106
999
1001
msgid ":func:`os.path.splitext`"
1000
1002
msgstr ""
1001
1003
1002
- #: ../../library/pathlib.rst:1105
1004
+ #: ../../library/pathlib.rst:1106
1003
1005
msgid ":data:`PurePath.suffix`"
1004
1006
msgstr ""
0 commit comments