@@ -18,7 +18,7 @@ msgid ""
18
18
msgstr ""
19
19
"Project-Id-Version : Python 3.12\n "
20
20
"Report-Msgid-Bugs-To : \n "
21
- "POT-Creation-Date : 2024-03-15 14:13 +0000\n "
21
+ "POT-Creation-Date : 2024-03-22 14:14 +0000\n "
22
22
"PO-Revision-Date : 2021-06-28 00:47+0000\n "
23
23
"Last-Translator : TENMYO Masakazu, 2024\n "
24
24
"Language-Team : Japanese (https://app.transifex.com/python-doc/teams/5390/ "
@@ -1603,48 +1603,21 @@ msgstr ""
1603
1603
"プローチを使うことで解決できます。"
1604
1604
1605
1605
#: ../../glossary.rst:728
1606
- msgid "locale encoding"
1607
- msgstr "ロケールエンコーディング"
1608
-
1609
- #: ../../glossary.rst:730
1610
- msgid ""
1611
- "On Unix, it is the encoding of the LC_CTYPE locale. It can be set with :func:"
1612
- "`locale.setlocale(locale.LC_CTYPE, new_locale) <locale.setlocale>`."
1613
- msgstr ""
1614
-
1615
- #: ../../glossary.rst:733
1616
- msgid "On Windows, it is the ANSI code page (ex: ``\" cp1252\" ``)."
1617
- msgstr ""
1618
-
1619
- #: ../../glossary.rst:735
1620
- msgid ""
1621
- "On Android and VxWorks, Python uses ``\" utf-8\" `` as the locale encoding."
1622
- msgstr ""
1623
-
1624
- #: ../../glossary.rst:737
1625
- msgid "``locale.getencoding()`` can be used to get the locale encoding."
1626
- msgstr ""
1627
-
1628
- #: ../../glossary.rst:739
1629
- msgid "See also the :term:`filesystem encoding and error handler`."
1630
- msgstr ""
1631
-
1632
- #: ../../glossary.rst:740
1633
1606
msgid "list"
1634
1607
msgstr "list"
1635
1608
1636
- #: ../../glossary.rst:742
1609
+ #: ../../glossary.rst:730
1637
1610
msgid ""
1638
1611
"A built-in Python :term:`sequence`. Despite its name it is more akin to an "
1639
1612
"array in other languages than to a linked list since access to elements is "
1640
1613
"*O*\\ (1)."
1641
1614
msgstr ""
1642
1615
1643
- #: ../../glossary.rst:745
1616
+ #: ../../glossary.rst:733
1644
1617
msgid "list comprehension"
1645
1618
msgstr "list comprehension"
1646
1619
1647
- #: ../../glossary.rst:747
1620
+ #: ../../glossary.rst:735
1648
1621
msgid ""
1649
1622
"A compact way to process all or part of the elements in a sequence and "
1650
1623
"return a list with the results. ``result = ['{:#04x}'.format(x) for x in "
@@ -1659,11 +1632,11 @@ msgstr ""
1659
1632
"です。 :keyword:`if` 節がない場合、 ``range(256)`` の全ての要素が処理されま"
1660
1633
"す。"
1661
1634
1662
- #: ../../glossary.rst:753
1635
+ #: ../../glossary.rst:741
1663
1636
msgid "loader"
1664
1637
msgstr "loader"
1665
1638
1666
- #: ../../glossary.rst:755
1639
+ #: ../../glossary.rst:743
1667
1640
msgid ""
1668
1641
"An object that loads a module. It must define a method named :meth:"
1669
1642
"`load_module`. A loader is typically returned by a :term:`finder`. See :pep:"
@@ -1675,6 +1648,33 @@ msgstr ""
1675
1648
"ます。詳細は :pep:`302` を、 :term:`abstract base class` については :class:"
1676
1649
"`importlib.abc.Loader` を参照してください。"
1677
1650
1651
+ #: ../../glossary.rst:747
1652
+ msgid "locale encoding"
1653
+ msgstr "ロケールエンコーディング"
1654
+
1655
+ #: ../../glossary.rst:749
1656
+ msgid ""
1657
+ "On Unix, it is the encoding of the LC_CTYPE locale. It can be set with :func:"
1658
+ "`locale.setlocale(locale.LC_CTYPE, new_locale) <locale.setlocale>`."
1659
+ msgstr ""
1660
+
1661
+ #: ../../glossary.rst:752
1662
+ msgid "On Windows, it is the ANSI code page (ex: ``\" cp1252\" ``)."
1663
+ msgstr ""
1664
+
1665
+ #: ../../glossary.rst:754
1666
+ msgid ""
1667
+ "On Android and VxWorks, Python uses ``\" utf-8\" `` as the locale encoding."
1668
+ msgstr ""
1669
+
1670
+ #: ../../glossary.rst:756
1671
+ msgid ":func:`locale.getencoding` can be used to get the locale encoding."
1672
+ msgstr ""
1673
+
1674
+ #: ../../glossary.rst:758
1675
+ msgid "See also the :term:`filesystem encoding and error handler`."
1676
+ msgstr ""
1677
+
1678
1678
#: ../../glossary.rst:759
1679
1679
msgid "magic method"
1680
1680
msgstr "magic method"
0 commit comments