|
| 1 | +# SOME DESCRIPTIVE TITLE. |
| 2 | +# Copyright (C) 2001-2025, Python Software Foundation |
| 3 | +# This file is distributed under the same license as the Python package. |
| 4 | +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. |
| 5 | +# |
| 6 | +# Translators: |
| 7 | +# Rafael Fontenelle <[email protected]>, 2025 |
| 8 | +# |
| 9 | +#, fuzzy |
| 10 | +msgid "" |
| 11 | +msgstr "" |
| 12 | +"Project-Id-Version: Python 3.11\n" |
| 13 | +"Report-Msgid-Bugs-To: \n" |
| 14 | +"POT-Creation-Date: 2025-07-11 16:41+0000\n" |
| 15 | +"PO-Revision-Date: 2023-05-24 02:20+0000\n" |
| 16 | +" Last-Translator: Rafael Fontenelle <[email protected]>, 2025\n" |
| 17 | +"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n" |
| 18 | +"MIME-Version: 1.0\n" |
| 19 | +"Content-Type: text/plain; charset=UTF-8\n" |
| 20 | +"Content-Transfer-Encoding: 8bit\n" |
| 21 | +"Language: pl\n" |
| 22 | +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && " |
| 23 | +"(n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && " |
| 24 | +"n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" |
| 25 | + |
| 26 | +msgid "The initialization of the :data:`sys.path` module search path" |
| 27 | +msgstr "" |
| 28 | + |
| 29 | +msgid "" |
| 30 | +"A module search path is initialized when Python starts. This module search " |
| 31 | +"path may be accessed at :data:`sys.path`." |
| 32 | +msgstr "" |
| 33 | + |
| 34 | +msgid "" |
| 35 | +"The first entry in the module search path is the directory that contains the " |
| 36 | +"input script, if there is one. Otherwise, the first entry is the current " |
| 37 | +"directory, which is the case when executing the interactive shell, a :option:" |
| 38 | +"`-c` command, or :option:`-m` module." |
| 39 | +msgstr "" |
| 40 | + |
| 41 | +msgid "" |
| 42 | +"The :envvar:`PYTHONPATH` environment variable is often used to add " |
| 43 | +"directories to the search path. If this environment variable is found then " |
| 44 | +"the contents are added to the module search path." |
| 45 | +msgstr "" |
| 46 | + |
| 47 | +msgid "" |
| 48 | +":envvar:`PYTHONPATH` will affect all installed Python versions/environments. " |
| 49 | +"Be wary of setting this in your shell profile or global environment " |
| 50 | +"variables. The :mod:`site` module offers more nuanced techniques as " |
| 51 | +"mentioned below." |
| 52 | +msgstr "" |
| 53 | + |
| 54 | +msgid "" |
| 55 | +"The next items added are the directories containing standard Python modules " |
| 56 | +"as well as any :term:`extension module`\\s that these modules depend on. " |
| 57 | +"Extension modules are ``.pyd`` files on Windows and ``.so`` files on other " |
| 58 | +"platforms. The directory with the platform-independent Python modules is " |
| 59 | +"called ``prefix``. The directory with the extension modules is called " |
| 60 | +"``exec_prefix``." |
| 61 | +msgstr "" |
| 62 | + |
| 63 | +msgid "" |
| 64 | +"The :envvar:`PYTHONHOME` environment variable may be used to set the " |
| 65 | +"``prefix`` and ``exec_prefix`` locations. Otherwise these directories are " |
| 66 | +"found by using the Python executable as a starting point and then looking " |
| 67 | +"for various 'landmark' files and directories. Note that any symbolic links " |
| 68 | +"are followed so the real Python executable location is used as the search " |
| 69 | +"starting point. The Python executable location is called ``home``." |
| 70 | +msgstr "" |
| 71 | + |
| 72 | +msgid "" |
| 73 | +"Once ``home`` is determined, the ``prefix`` directory is found by first " |
| 74 | +"looking for :file:`python{majorversion}{minorversion}.zip` (``python311." |
| 75 | +"zip``). On Windows the zip archive is searched for in ``home`` and on Unix " |
| 76 | +"the archive is expected to be in :file:`lib`. Note that the expected zip " |
| 77 | +"archive location is added to the module search path even if the archive does " |
| 78 | +"not exist. If no archive was found, Python on Windows will continue the " |
| 79 | +"search for ``prefix`` by looking for :file:`Lib\\\\os.py`. Python on Unix " |
| 80 | +"will look for :file:`lib/python{majorversion}.{minorversion}/os.py` (``lib/" |
| 81 | +"python3.11/os.py``). On Windows ``prefix`` and ``exec_prefix`` are the same, " |
| 82 | +"however on other platforms :file:`lib/python{majorversion}.{minorversion}/" |
| 83 | +"lib-dynload` (``lib/python3.11/lib-dynload``) is searched for and used as an " |
| 84 | +"anchor for ``exec_prefix``. On some platforms :file:`lib` may be :file:" |
| 85 | +"`lib64` or another value, see :data:`sys.platlibdir` and :envvar:" |
| 86 | +"`PYTHONPLATLIBDIR`." |
| 87 | +msgstr "" |
| 88 | + |
| 89 | +msgid "" |
| 90 | +"Once found, ``prefix`` and ``exec_prefix`` are available at :data:`sys." |
| 91 | +"prefix` and :data:`sys.exec_prefix` respectively." |
| 92 | +msgstr "" |
| 93 | + |
| 94 | +msgid "" |
| 95 | +"Finally, the :mod:`site` module is processed and :file:`site-packages` " |
| 96 | +"directories are added to the module search path. A common way to customize " |
| 97 | +"the search path is to create :mod:`sitecustomize` or :mod:`usercustomize` " |
| 98 | +"modules as described in the :mod:`site` module documentation." |
| 99 | +msgstr "" |
| 100 | + |
| 101 | +msgid "" |
| 102 | +"Certain command line options may further affect path calculations. See :" |
| 103 | +"option:`-E`, :option:`-I`, :option:`-s` and :option:`-S` for further details." |
| 104 | +msgstr "" |
| 105 | + |
| 106 | +msgid "Virtual environments" |
| 107 | +msgstr "Lingkungan virtual" |
| 108 | + |
| 109 | +msgid "" |
| 110 | +"If Python is run in a virtual environment (as described at :ref:`tut-venv`) " |
| 111 | +"then ``prefix`` and ``exec_prefix`` are specific to the virtual environment." |
| 112 | +msgstr "" |
| 113 | + |
| 114 | +msgid "" |
| 115 | +"If a ``pyvenv.cfg`` file is found alongside the main executable, or in the " |
| 116 | +"directory one level above the executable, the following variations apply:" |
| 117 | +msgstr "" |
| 118 | + |
| 119 | +msgid "" |
| 120 | +"If ``home`` is an absolute path and :envvar:`PYTHONHOME` is not set, this " |
| 121 | +"path is used instead of the path to the main executable when deducing " |
| 122 | +"``prefix`` and ``exec_prefix``." |
| 123 | +msgstr "" |
| 124 | + |
| 125 | +msgid "_pth files" |
| 126 | +msgstr "" |
| 127 | + |
| 128 | +msgid "" |
| 129 | +"To completely override :data:`sys.path` create a ``._pth`` file with the " |
| 130 | +"same name as the shared library or executable (``python._pth`` or " |
| 131 | +"``python311._pth``). The shared library path is always known on Windows, " |
| 132 | +"however it may not be available on other platforms. In the ``._pth`` file " |
| 133 | +"specify one line for each path to add to :data:`sys.path`. The file based on " |
| 134 | +"the shared library name overrides the one based on the executable, which " |
| 135 | +"allows paths to be restricted for any program loading the runtime if desired." |
| 136 | +msgstr "" |
| 137 | + |
| 138 | +msgid "" |
| 139 | +"When the file exists, all registry and environment variables are ignored, " |
| 140 | +"isolated mode is enabled, and :mod:`site` is not imported unless one line in " |
| 141 | +"the file specifies ``import site``. Blank paths and lines starting with " |
| 142 | +"``#`` are ignored. Each path may be absolute or relative to the location of " |
| 143 | +"the file. Import statements other than to ``site`` are not permitted, and " |
| 144 | +"arbitrary code cannot be specified." |
| 145 | +msgstr "" |
| 146 | + |
| 147 | +msgid "" |
| 148 | +"Note that ``.pth`` files (without leading underscore) will be processed " |
| 149 | +"normally by the :mod:`site` module when ``import site`` has been specified." |
| 150 | +msgstr "" |
| 151 | + |
| 152 | +msgid "Embedded Python" |
| 153 | +msgstr "" |
| 154 | + |
| 155 | +msgid "" |
| 156 | +"If Python is embedded within another application :c:func:" |
| 157 | +"`Py_InitializeFromConfig` and the :c:type:`PyConfig` structure can be used " |
| 158 | +"to initialize Python. The path specific details are described at :ref:`init-" |
| 159 | +"path-config`. Alternatively the older :c:func:`Py_SetPath` can be used to " |
| 160 | +"bypass the initialization of the module search path." |
| 161 | +msgstr "" |
| 162 | + |
| 163 | +msgid ":ref:`windows_finding_modules` for detailed Windows notes." |
| 164 | +msgstr "" |
| 165 | + |
| 166 | +msgid ":ref:`using-on-unix` for Unix details." |
| 167 | +msgstr "" |
0 commit comments