Skip to content

Commit

Permalink
Update translations from Transifex
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Jan 17, 2025
1 parent c788a84 commit a9885da
Show file tree
Hide file tree
Showing 6 changed files with 13,440 additions and 13,398 deletions.
52 changes: 26 additions & 26 deletions library/fnmatch.po
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2001-2024, Python Software Foundation
# Copyright (C) 2001-2025, Python Software Foundation
# This file is distributed under the same license as the Python package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
Expand All @@ -16,7 +16,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Python 3.13\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-12-27 14:16+0000\n"
"POT-Creation-Date: 2025-01-17 14:16+0000\n"
"PO-Revision-Date: 2021-06-28 01:06+0000\n"
"Last-Translator: 石井明久, 2024\n"
"Language-Team: Japanese (https://app.transifex.com/python-doc/teams/5390/"
Expand Down Expand Up @@ -109,15 +109,20 @@ msgstr ""

#: ../../library/fnmatch.rst:49
msgid ""
"Also note that :func:`functools.lru_cache` with the *maxsize* of 32768 is "
"used to cache the compiled regex patterns in the following functions: :func:"
"`fnmatch`, :func:`fnmatchcase`, :func:`.filter`."
"Unless stated otherwise, \"filename string\" and \"pattern string\" either "
"refer to :class:`str` or ``ISO-8859-1`` encoded :class:`bytes` objects. Note "
"that the functions documented below do not allow to mix a :class:`!bytes` "
"pattern with a :class:`!str` filename, and vice-versa."
msgstr ""
"以下の関数 :func:`fnmatch`, :func:`fnmatchcase`, :func:`.filter` では、 *最大"
"サイズ* 32768の :func:`functools.lru_cache` をコンパイル済みの正規表現パター"
"ンのキャッシュに使用していることにも注意してください。"

#: ../../library/fnmatch.rst:55
#: ../../library/fnmatch.rst:54
msgid ""
"Finally, note that :func:`functools.lru_cache` with a *maxsize* of 32768 is "
"used to cache the (typed) compiled regex patterns in the following "
"functions: :func:`fnmatch`, :func:`fnmatchcase`, :func:`.filter`."
msgstr ""

#: ../../library/fnmatch.rst:61
msgid ""
"Test whether the filename string *name* matches the pattern string *pat*, "
"returning ``True`` or ``False``. Both parameters are case-normalized using :"
Expand All @@ -131,15 +136,15 @@ msgstr ""
"テムが標準でどうなっているかに関係なく、大文字、小文字を区別して比較する場合"
"には、 :func:`fnmatchcase` が使用できます。"

#: ../../library/fnmatch.rst:61
#: ../../library/fnmatch.rst:67
msgid ""
"This example will print all file names in the current directory with the "
"extension ``.txt``::"
msgstr ""
"次の例では、カレントディレクトリにある、拡張子が ``.txt`` である全てのファイ"
"ルを表示しています::"

#: ../../library/fnmatch.rst:64
#: ../../library/fnmatch.rst:70
msgid ""
"import fnmatch\n"
"import os\n"
Expand All @@ -149,7 +154,7 @@ msgid ""
" print(file)"
msgstr ""

#: ../../library/fnmatch.rst:74
#: ../../library/fnmatch.rst:80
msgid ""
"Test whether the filename string *name* matches the pattern string *pat*, "
"returning ``True`` or ``False``; the comparison is case-sensitive and does "
Expand All @@ -159,33 +164,28 @@ msgstr ""
"``True`` または ``False`` を返します。比較は大文字、小文字を区別し、 :func:"
"`os.path.normcase` は適用しません。"

#: ../../library/fnmatch.rst:81
#: ../../library/fnmatch.rst:87
msgid ""
"Construct a list from those elements of the :term:`iterable` *names* that "
"match pattern *pat*. It is the same as ``[n for n in names if fnmatch(n, "
"pat)]``, but implemented more efficiently."
"Construct a list from those elements of the :term:`iterable` of filename "
"strings *names* that match the pattern string *pat*. It is the same as ``[n "
"for n in names if fnmatch(n, pat)]``, but implemented more efficiently."
msgstr ""
"パターン *pat* にマッチする :term:`iterable` の *names* を要素とするリストを"
"構築します。``[n for n in names if fnmatch(n, pat)]`` と同じですが、より効率"
"よく実装されています。"

#: ../../library/fnmatch.rst:89
#: ../../library/fnmatch.rst:95
msgid ""
"Return the shell-style pattern *pat* converted to a regular expression for "
"using with :func:`re.match`."
"using with :func:`re.match`. The pattern is expected to be a :class:`str`."
msgstr ""
"シェルスタイルのパターン *pat* を、:func:`re.match` で使用するための正規表現"
"に変換して返します。"

#: ../../library/fnmatch.rst:92
#: ../../library/fnmatch.rst:98
msgid "Example:"
msgstr "例:"

#: ../../library/fnmatch.rst:106
#: ../../library/fnmatch.rst:112
msgid "Module :mod:`glob`"
msgstr ":mod:`glob` モジュール"

#: ../../library/fnmatch.rst:107
#: ../../library/fnmatch.rst:113
msgid "Unix shell-style path expansion."
msgstr "Unix シェル形式のパス展開。"

Expand Down
Loading

0 comments on commit a9885da

Please sign in to comment.