|
| 1 | +# SOME DESCRIPTIVE TITLE. |
| 2 | +# Copyright (C) 2001-2024, 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 <rffontenelle@gmail.com>, 2024 |
| 8 | +# |
| 9 | +#, fuzzy |
| 10 | +msgid "" |
| 11 | +msgstr "" |
| 12 | +"Project-Id-Version: Python 3.10\n" |
| 13 | +"Report-Msgid-Bugs-To: \n" |
| 14 | +"POT-Creation-Date: 2024-11-15 16:02+0000\n" |
| 15 | +"PO-Revision-Date: 2022-11-05 17:21+0000\n" |
| 16 | +"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2024\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 "Instance Method Objects" |
| 27 | +msgstr "" |
| 28 | + |
| 29 | +msgid "" |
| 30 | +"An instance method is a wrapper for a :c:data:`PyCFunction` and the new way " |
| 31 | +"to bind a :c:data:`PyCFunction` to a class object. It replaces the former " |
| 32 | +"call ``PyMethod_New(func, NULL, class)``." |
| 33 | +msgstr "" |
| 34 | + |
| 35 | +msgid "" |
| 36 | +"This instance of :c:type:`PyTypeObject` represents the Python instance " |
| 37 | +"method type. It is not exposed to Python programs." |
| 38 | +msgstr "" |
| 39 | + |
| 40 | +msgid "" |
| 41 | +"Return true if *o* is an instance method object (has type :c:data:" |
| 42 | +"`PyInstanceMethod_Type`). The parameter must not be ``NULL``. This function " |
| 43 | +"always succeeds." |
| 44 | +msgstr "" |
| 45 | + |
| 46 | +msgid "" |
| 47 | +"Return a new instance method object, with *func* being any callable object. " |
| 48 | +"*func* is the function that will be called when the instance method is " |
| 49 | +"called." |
| 50 | +msgstr "" |
| 51 | + |
| 52 | +msgid "Return the function object associated with the instance method *im*." |
| 53 | +msgstr "" |
| 54 | + |
| 55 | +msgid "" |
| 56 | +"Macro version of :c:func:`PyInstanceMethod_Function` which avoids error " |
| 57 | +"checking." |
| 58 | +msgstr "" |
| 59 | + |
| 60 | +msgid "Method Objects" |
| 61 | +msgstr "Obiekty metod" |
| 62 | + |
| 63 | +msgid "" |
| 64 | +"Methods are bound function objects. Methods are always bound to an instance " |
| 65 | +"of a user-defined class. Unbound methods (methods bound to a class object) " |
| 66 | +"are no longer available." |
| 67 | +msgstr "" |
| 68 | + |
| 69 | +msgid "" |
| 70 | +"This instance of :c:type:`PyTypeObject` represents the Python method type. " |
| 71 | +"This is exposed to Python programs as ``types.MethodType``." |
| 72 | +msgstr "" |
| 73 | + |
| 74 | +msgid "" |
| 75 | +"Return true if *o* is a method object (has type :c:data:`PyMethod_Type`). " |
| 76 | +"The parameter must not be ``NULL``. This function always succeeds." |
| 77 | +msgstr "" |
| 78 | + |
| 79 | +msgid "" |
| 80 | +"Return a new method object, with *func* being any callable object and *self* " |
| 81 | +"the instance the method should be bound. *func* is the function that will be " |
| 82 | +"called when the method is called. *self* must not be ``NULL``." |
| 83 | +msgstr "" |
| 84 | + |
| 85 | +msgid "Return the function object associated with the method *meth*." |
| 86 | +msgstr "" |
| 87 | + |
| 88 | +msgid "" |
| 89 | +"Macro version of :c:func:`PyMethod_Function` which avoids error checking." |
| 90 | +msgstr "" |
| 91 | + |
| 92 | +msgid "Return the instance associated with the method *meth*." |
| 93 | +msgstr "" |
| 94 | + |
| 95 | +msgid "Macro version of :c:func:`PyMethod_Self` which avoids error checking." |
| 96 | +msgstr "" |
0 commit comments