|
| 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-12-27 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 "DateTime Objects" |
| 27 | +msgstr "" |
| 28 | + |
| 29 | +msgid "" |
| 30 | +"Various date and time objects are supplied by the :mod:`datetime` module. " |
| 31 | +"Before using any of these functions, the header file :file:`datetime.h` must " |
| 32 | +"be included in your source (note that this is not included by :file:`Python." |
| 33 | +"h`), and the macro :c:macro:`PyDateTime_IMPORT` must be invoked, usually as " |
| 34 | +"part of the module initialisation function. The macro puts a pointer to a C " |
| 35 | +"structure into a static variable, :c:data:`PyDateTimeAPI`, that is used by " |
| 36 | +"the following macros." |
| 37 | +msgstr "" |
| 38 | + |
| 39 | +msgid "Macro for access to the UTC singleton:" |
| 40 | +msgstr "" |
| 41 | + |
| 42 | +msgid "" |
| 43 | +"Returns the time zone singleton representing UTC, the same object as :attr:" |
| 44 | +"`datetime.timezone.utc`." |
| 45 | +msgstr "" |
| 46 | + |
| 47 | +msgid "Type-check macros:" |
| 48 | +msgstr "Sprawdzanie typu makr:" |
| 49 | + |
| 50 | +msgid "" |
| 51 | +"Return true if *ob* is of type :c:data:`PyDateTime_DateType` or a subtype " |
| 52 | +"of :c:data:`PyDateTime_DateType`. *ob* must not be ``NULL``. This function " |
| 53 | +"always succeeds." |
| 54 | +msgstr "" |
| 55 | + |
| 56 | +msgid "" |
| 57 | +"Return true if *ob* is of type :c:data:`PyDateTime_DateType`. *ob* must not " |
| 58 | +"be ``NULL``. This function always succeeds." |
| 59 | +msgstr "" |
| 60 | + |
| 61 | +msgid "" |
| 62 | +"Return true if *ob* is of type :c:data:`PyDateTime_DateTimeType` or a " |
| 63 | +"subtype of :c:data:`PyDateTime_DateTimeType`. *ob* must not be ``NULL``. " |
| 64 | +"This function always succeeds." |
| 65 | +msgstr "" |
| 66 | + |
| 67 | +msgid "" |
| 68 | +"Return true if *ob* is of type :c:data:`PyDateTime_DateTimeType`. *ob* must " |
| 69 | +"not be ``NULL``. This function always succeeds." |
| 70 | +msgstr "" |
| 71 | + |
| 72 | +msgid "" |
| 73 | +"Return true if *ob* is of type :c:data:`PyDateTime_TimeType` or a subtype " |
| 74 | +"of :c:data:`PyDateTime_TimeType`. *ob* must not be ``NULL``. This function " |
| 75 | +"always succeeds." |
| 76 | +msgstr "" |
| 77 | + |
| 78 | +msgid "" |
| 79 | +"Return true if *ob* is of type :c:data:`PyDateTime_TimeType`. *ob* must not " |
| 80 | +"be ``NULL``. This function always succeeds." |
| 81 | +msgstr "" |
| 82 | + |
| 83 | +msgid "" |
| 84 | +"Return true if *ob* is of type :c:data:`PyDateTime_DeltaType` or a subtype " |
| 85 | +"of :c:data:`PyDateTime_DeltaType`. *ob* must not be ``NULL``. This " |
| 86 | +"function always succeeds." |
| 87 | +msgstr "" |
| 88 | + |
| 89 | +msgid "" |
| 90 | +"Return true if *ob* is of type :c:data:`PyDateTime_DeltaType`. *ob* must not " |
| 91 | +"be ``NULL``. This function always succeeds." |
| 92 | +msgstr "" |
| 93 | + |
| 94 | +msgid "" |
| 95 | +"Return true if *ob* is of type :c:data:`PyDateTime_TZInfoType` or a subtype " |
| 96 | +"of :c:data:`PyDateTime_TZInfoType`. *ob* must not be ``NULL``. This " |
| 97 | +"function always succeeds." |
| 98 | +msgstr "" |
| 99 | + |
| 100 | +msgid "" |
| 101 | +"Return true if *ob* is of type :c:data:`PyDateTime_TZInfoType`. *ob* must " |
| 102 | +"not be ``NULL``. This function always succeeds." |
| 103 | +msgstr "" |
| 104 | + |
| 105 | +msgid "Macros to create objects:" |
| 106 | +msgstr "" |
| 107 | + |
| 108 | +msgid "" |
| 109 | +"Return a :class:`datetime.date` object with the specified year, month and " |
| 110 | +"day." |
| 111 | +msgstr "" |
| 112 | + |
| 113 | +msgid "" |
| 114 | +"Return a :class:`datetime.datetime` object with the specified year, month, " |
| 115 | +"day, hour, minute, second and microsecond." |
| 116 | +msgstr "" |
| 117 | + |
| 118 | +msgid "" |
| 119 | +"Return a :class:`datetime.datetime` object with the specified year, month, " |
| 120 | +"day, hour, minute, second, microsecond and fold." |
| 121 | +msgstr "" |
| 122 | + |
| 123 | +msgid "" |
| 124 | +"Return a :class:`datetime.time` object with the specified hour, minute, " |
| 125 | +"second and microsecond." |
| 126 | +msgstr "" |
| 127 | + |
| 128 | +msgid "" |
| 129 | +"Return a :class:`datetime.time` object with the specified hour, minute, " |
| 130 | +"second, microsecond and fold." |
| 131 | +msgstr "" |
| 132 | + |
| 133 | +msgid "" |
| 134 | +"Return a :class:`datetime.timedelta` object representing the given number of " |
| 135 | +"days, seconds and microseconds. Normalization is performed so that the " |
| 136 | +"resulting number of microseconds and seconds lie in the ranges documented " |
| 137 | +"for :class:`datetime.timedelta` objects." |
| 138 | +msgstr "" |
| 139 | + |
| 140 | +msgid "" |
| 141 | +"Return a :class:`datetime.timezone` object with an unnamed fixed offset " |
| 142 | +"represented by the *offset* argument." |
| 143 | +msgstr "" |
| 144 | + |
| 145 | +msgid "" |
| 146 | +"Return a :class:`datetime.timezone` object with a fixed offset represented " |
| 147 | +"by the *offset* argument and with tzname *name*." |
| 148 | +msgstr "" |
| 149 | + |
| 150 | +msgid "" |
| 151 | +"Macros to extract fields from date objects. The argument must be an " |
| 152 | +"instance of :c:data:`PyDateTime_Date`, including subclasses (such as :c:data:" |
| 153 | +"`PyDateTime_DateTime`). The argument must not be ``NULL``, and the type is " |
| 154 | +"not checked:" |
| 155 | +msgstr "" |
| 156 | + |
| 157 | +msgid "Return the year, as a positive int." |
| 158 | +msgstr "" |
| 159 | + |
| 160 | +msgid "Return the month, as an int from 1 through 12." |
| 161 | +msgstr "" |
| 162 | + |
| 163 | +msgid "Return the day, as an int from 1 through 31." |
| 164 | +msgstr "" |
| 165 | + |
| 166 | +msgid "" |
| 167 | +"Macros to extract fields from datetime objects. The argument must be an " |
| 168 | +"instance of :c:data:`PyDateTime_DateTime`, including subclasses. The " |
| 169 | +"argument must not be ``NULL``, and the type is not checked:" |
| 170 | +msgstr "" |
| 171 | + |
| 172 | +msgid "Return the hour, as an int from 0 through 23." |
| 173 | +msgstr "" |
| 174 | + |
| 175 | +msgid "Return the minute, as an int from 0 through 59." |
| 176 | +msgstr "" |
| 177 | + |
| 178 | +msgid "Return the second, as an int from 0 through 59." |
| 179 | +msgstr "" |
| 180 | + |
| 181 | +msgid "Return the microsecond, as an int from 0 through 999999." |
| 182 | +msgstr "" |
| 183 | + |
| 184 | +msgid "Return the fold, as an int from 0 through 1." |
| 185 | +msgstr "" |
| 186 | + |
| 187 | +msgid "Return the tzinfo (which may be ``None``)." |
| 188 | +msgstr "" |
| 189 | + |
| 190 | +msgid "" |
| 191 | +"Macros to extract fields from time objects. The argument must be an " |
| 192 | +"instance of :c:data:`PyDateTime_Time`, including subclasses. The argument " |
| 193 | +"must not be ``NULL``, and the type is not checked:" |
| 194 | +msgstr "" |
| 195 | + |
| 196 | +msgid "" |
| 197 | +"Macros to extract fields from time delta objects. The argument must be an " |
| 198 | +"instance of :c:data:`PyDateTime_Delta`, including subclasses. The argument " |
| 199 | +"must not be ``NULL``, and the type is not checked:" |
| 200 | +msgstr "" |
| 201 | + |
| 202 | +msgid "Return the number of days, as an int from -999999999 to 999999999." |
| 203 | +msgstr "" |
| 204 | + |
| 205 | +msgid "Return the number of seconds, as an int from 0 through 86399." |
| 206 | +msgstr "" |
| 207 | + |
| 208 | +msgid "Return the number of microseconds, as an int from 0 through 999999." |
| 209 | +msgstr "" |
| 210 | + |
| 211 | +msgid "Macros for the convenience of modules implementing the DB API:" |
| 212 | +msgstr "" |
| 213 | + |
| 214 | +msgid "" |
| 215 | +"Create and return a new :class:`datetime.datetime` object given an argument " |
| 216 | +"tuple suitable for passing to :meth:`datetime.datetime.fromtimestamp()`." |
| 217 | +msgstr "" |
| 218 | + |
| 219 | +msgid "" |
| 220 | +"Create and return a new :class:`datetime.date` object given an argument " |
| 221 | +"tuple suitable for passing to :meth:`datetime.date.fromtimestamp()`." |
| 222 | +msgstr "" |
0 commit comments