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