|
| 1 | +# SOME DESCRIPTIVE TITLE. |
| 2 | +# Copyright (C) 2001-2021, 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 | +# Chris Abramowicz, 2022 |
| 8 | +# |
| 9 | +#, fuzzy |
| 10 | +msgid "" |
| 11 | +msgstr "" |
| 12 | +"Project-Id-Version: Python 3.9\n" |
| 13 | +"Report-Msgid-Bugs-To: \n" |
| 14 | +"POT-Creation-Date: 2021-01-01 05:02+0000\n" |
| 15 | +"PO-Revision-Date: 2017-02-16 17:42+0000\n" |
| 16 | +"Last-Translator: Chris Abramowicz, 2022\n" |
| 17 | +"Language-Team: Polish (https://www.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) && (n" |
| 23 | +"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" |
| 24 | +"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" |
| 25 | + |
| 26 | +msgid "Extending and Embedding the Python Interpreter" |
| 27 | +msgstr "Rozszerzony i wbudowany interpreter Python" |
| 28 | + |
| 29 | +msgid "" |
| 30 | +"This document describes how to write modules in C or C++ to extend the " |
| 31 | +"Python interpreter with new modules. Those modules can not only define new " |
| 32 | +"functions but also new object types and their methods. The document also " |
| 33 | +"describes how to embed the Python interpreter in another application, for " |
| 34 | +"use as an extension language. Finally, it shows how to compile and link " |
| 35 | +"extension modules so that they can be loaded dynamically (at run time) into " |
| 36 | +"the interpreter, if the underlying operating system supports this feature." |
| 37 | +msgstr "" |
| 38 | +"Ten dokument opisuje jak pisać moduły w C lub C++ do rozszerzania Python " |
| 39 | +"Interpreter o nowe moduły. Te moduły mogą nie tylko zawierać nowe funkcje, " |
| 40 | +"ale też nowe obiekty i ich metody. Dokument również zawiera opis jak " |
| 41 | +"wbudować interpreter Pyhona do innej aplikacji w celu rozszerzenia języka. " |
| 42 | +"Podsumowując pokażemy ci jak kompilować i linkować rozszerzone moduły, tak " |
| 43 | +"że mogą być załadowane dynamicznie w danej chwili przez interpreter, o ile " |
| 44 | +"dany system operacyjny wspiera tą funkcję." |
| 45 | + |
| 46 | +msgid "" |
| 47 | +"This document assumes basic knowledge about Python. For an informal " |
| 48 | +"introduction to the language, see :ref:`tutorial-index`. :ref:`reference-" |
| 49 | +"index` gives a more formal definition of the language. :ref:`library-index` " |
| 50 | +"documents the existing object types, functions and modules (both built-in " |
| 51 | +"and written in Python) that give the language its wide application range." |
| 52 | +msgstr "" |
| 53 | + |
| 54 | +msgid "" |
| 55 | +"For a detailed description of the whole Python/C API, see the separate :ref:" |
| 56 | +"`c-api-index`." |
| 57 | +msgstr "" |
| 58 | + |
| 59 | +msgid "Recommended third party tools" |
| 60 | +msgstr "" |
| 61 | + |
| 62 | +msgid "" |
| 63 | +"This guide only covers the basic tools for creating extensions provided as " |
| 64 | +"part of this version of CPython. Third party tools like `Cython <http://" |
| 65 | +"cython.org/>`_, `cffi <https://cffi.readthedocs.io>`_, `SWIG <http://www." |
| 66 | +"swig.org>`_ and `Numba <https://numba.pydata.org/>`_ offer both simpler and " |
| 67 | +"more sophisticated approaches to creating C and C++ extensions for Python." |
| 68 | +msgstr "" |
| 69 | + |
| 70 | +msgid "" |
| 71 | +"`Python Packaging User Guide: Binary Extensions <https://packaging.python." |
| 72 | +"org/guides/packaging-binary-extensions/>`_" |
| 73 | +msgstr "" |
| 74 | + |
| 75 | +msgid "" |
| 76 | +"The Python Packaging User Guide not only covers several available tools that " |
| 77 | +"simplify the creation of binary extensions, but also discusses the various " |
| 78 | +"reasons why creating an extension module may be desirable in the first place." |
| 79 | +msgstr "" |
| 80 | + |
| 81 | +msgid "Creating extensions without third party tools" |
| 82 | +msgstr "" |
| 83 | + |
| 84 | +msgid "" |
| 85 | +"This section of the guide covers creating C and C++ extensions without " |
| 86 | +"assistance from third party tools. It is intended primarily for creators of " |
| 87 | +"those tools, rather than being a recommended way to create your own C " |
| 88 | +"extensions." |
| 89 | +msgstr "" |
| 90 | + |
| 91 | +msgid "Embedding the CPython runtime in a larger application" |
| 92 | +msgstr "" |
| 93 | + |
| 94 | +msgid "" |
| 95 | +"Sometimes, rather than creating an extension that runs inside the Python " |
| 96 | +"interpreter as the main application, it is desirable to instead embed the " |
| 97 | +"CPython runtime inside a larger application. This section covers some of the " |
| 98 | +"details involved in doing that successfully." |
| 99 | +msgstr "" |
0 commit comments