@@ -11,7 +11,7 @@ msgid ""
1111msgstr ""
1212"Project-Id-Version : Python 3.14\n "
1313"Report-Msgid-Bugs-To : \n "
14- "POT-Creation-Date : 2026-01-05 14:19 +0000\n "
14+ "POT-Creation-Date : 2026-01-23 14:20 +0000\n "
1515"PO-Revision-Date : 2025-09-16 00:01+0000\n "
1616"Last-Translator : python-doc bot, 2025\n "
1717"Language-Team : Indonesian (https://app.transifex.com/python-doc/teams/5390/ "
@@ -705,146 +705,6 @@ msgid ""
705705"``__init__``."
706706msgstr ""
707707
708- msgid ""
709- "An :term:`abstract base class` to provide the ability to read *resources*."
710- msgstr ""
711-
712- msgid ""
713- "From the perspective of this ABC, a *resource* is a binary artifact that is "
714- "shipped within a package. Typically this is something like a data file that "
715- "lives next to the ``__init__.py`` file of the package. The purpose of this "
716- "class is to help abstract out the accessing of such data files so that it "
717- "does not matter if the package and its data file(s) are stored e.g. in a zip "
718- "file versus on the file system."
719- msgstr ""
720-
721- msgid ""
722- "For any of methods of this class, a *resource* argument is expected to be a :"
723- "term:`path-like object` which represents conceptually just a file name. This "
724- "means that no subdirectory paths should be included in the *resource* "
725- "argument. This is because the location of the package the reader is for, "
726- "acts as the \" directory\" . Hence the metaphor for directories and file names "
727- "is packages and resources, respectively. This is also why instances of this "
728- "class are expected to directly correlate to a specific package (instead of "
729- "potentially representing multiple packages or a module)."
730- msgstr ""
731-
732- msgid ""
733- "Loaders that wish to support resource reading are expected to provide a "
734- "method called ``get_resource_reader(fullname)`` which returns an object "
735- "implementing this ABC's interface. If the module specified by fullname is "
736- "not a package, this method should return :const:`None`. An object compatible "
737- "with this ABC should only be returned when the specified module is a package."
738- msgstr ""
739-
740- msgid "Use :class:`importlib.resources.abc.TraversableResources` instead."
741- msgstr ""
742-
743- msgid ""
744- "Returns an opened, :term:`file-like object` for binary reading of the "
745- "*resource*."
746- msgstr ""
747-
748- msgid "If the resource cannot be found, :exc:`FileNotFoundError` is raised."
749- msgstr ""
750-
751- msgid "Returns the file system path to the *resource*."
752- msgstr ""
753-
754- msgid ""
755- "If the resource does not concretely exist on the file system, raise :exc:"
756- "`FileNotFoundError`."
757- msgstr ""
758-
759- msgid ""
760- "Returns ``True`` if the named *name* is considered a resource. :exc:"
761- "`FileNotFoundError` is raised if *name* does not exist."
762- msgstr ""
763-
764- msgid ""
765- "Returns an :term:`iterable` of strings over the contents of the package. Do "
766- "note that it is not required that all names returned by the iterator be "
767- "actual resources, e.g. it is acceptable to return names for which :meth:"
768- "`is_resource` would be false."
769- msgstr ""
770-
771- msgid ""
772- "Allowing non-resource names to be returned is to allow for situations where "
773- "how a package and its resources are stored are known a priori and the non-"
774- "resource names would be useful. For instance, returning subdirectory names "
775- "is allowed so that when it is known that the package and resources are "
776- "stored on the file system then those subdirectory names can be used directly."
777- msgstr ""
778-
779- msgid "The abstract method returns an iterable of no items."
780- msgstr ""
781-
782- msgid ""
783- "An object with a subset of :class:`pathlib.Path` methods suitable for "
784- "traversing directories and opening files."
785- msgstr ""
786-
787- msgid ""
788- "For a representation of the object on the file-system, use :meth:`importlib."
789- "resources.as_file`."
790- msgstr ""
791-
792- msgid "Use :class:`importlib.resources.abc.Traversable` instead."
793- msgstr ""
794-
795- msgid "Abstract. The base name of this object without any parent references."
796- msgstr ""
797-
798- msgid "Yield ``Traversable`` objects in ``self``."
799- msgstr ""
800-
801- msgid "Return ``True`` if ``self`` is a directory."
802- msgstr ""
803-
804- msgid "Return ``True`` if ``self`` is a file."
805- msgstr ""
806-
807- msgid "Return Traversable child in ``self``."
808- msgstr ""
809-
810- msgid "Return ``Traversable`` child in ``self``."
811- msgstr ""
812-
813- msgid ""
814- "*mode* may be 'r' or 'rb' to open as text or binary. Return a handle "
815- "suitable for reading (same as :attr:`pathlib.Path.open`)."
816- msgstr ""
817-
818- msgid ""
819- "When opening as text, accepts encoding parameters such as those accepted by :"
820- "class:`io.TextIOWrapper`."
821- msgstr ""
822-
823- msgid "Read contents of ``self`` as bytes."
824- msgstr ""
825-
826- msgid "Read contents of ``self`` as text."
827- msgstr ""
828-
829- msgid ""
830- "An abstract base class for resource readers capable of serving the :meth:"
831- "`importlib.resources.files` interface. Subclasses :class:`importlib."
832- "resources.abc.ResourceReader` and provides concrete implementations of the :"
833- "class:`importlib.resources.abc.ResourceReader`'s abstract methods. "
834- "Therefore, any loader supplying :class:`importlib.abc.TraversableResources` "
835- "also supplies ResourceReader."
836- msgstr ""
837-
838- msgid ""
839- "Loaders that wish to support resource reading are expected to implement this "
840- "interface."
841- msgstr ""
842-
843- msgid ""
844- "Returns a :class:`importlib.resources.abc.Traversable` object for the loaded "
845- "package."
846- msgstr ""
847-
848708msgid ":mod:`importlib.machinery` -- Importers and path hooks"
849709msgstr ""
850710
0 commit comments