@@ -11,7 +11,7 @@ msgid ""
1111msgstr ""
1212"Project-Id-Version :Python 3.14\n "
1313"Report-Msgid-Bugs-To :\n "
14- "POT-Creation-Date :2025-10-05 14:11 +0000\n "
14+ "POT-Creation-Date :2025-10-15 14:16 +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 "
@@ -106,14 +106,14 @@ msgstr ""
106106msgid ""
107107"An :class:`SMTP_SSL` instance behaves exactly the same as instances of :"
108108"class:`SMTP`. :class:`SMTP_SSL` should be used for situations where SSL is "
109- "required from the beginning of the connection and using :meth:`starttls` is "
110- "not appropriate. If *host* is not specified, the local host is used. If "
111- "*port* is zero, the standard SMTP-over-SSL port (465) is used. The optional "
112- "arguments *local_hostname*, *timeout* and *source_address* have the same "
113- "meaning as they do in the :class:`SMTP` class. *context*, also optional, "
114- "can contain a :class:`~ssl.SSLContext` and allows configuring various "
115- "aspects of the secure connection. Please read :ref:`ssl-security` for best "
116- "practices."
109+ "required from the beginning of the connection and using :meth:`~SMTP. "
110+ "starttls` is not appropriate. If *host* is not specified, the local host is "
111+ "used. If *port* is zero, the standard SMTP-over-SSL port (465) is used. The "
112+ "optional arguments *local_hostname*, *timeout* and *source_address* have the "
113+ "same meaning as they do in the :class:`SMTP` class. *context*, also "
114+ "optional, can contain a :class:`~ssl.SSLContext` and allows configuring "
115+ "various aspects of the secure connection. Please read :ref:`ssl-security` "
116+ "for best practices."
117117msgstr ""
118118
119119msgid "*context* was added."
@@ -138,10 +138,10 @@ msgstr ""
138138msgid ""
139139"The LMTP protocol, which is very similar to ESMTP, is heavily based on the "
140140"standard SMTP client. It's common to use Unix sockets for LMTP, so our :meth:"
141- "`connect` method must support that as well as a regular host:port server. "
142- "The optional arguments *local_hostname* and *source_address* have the same "
143- "meaning as they do in the :class:`SMTP` class. To specify a Unix socket, you "
144- "must use an absolute path for *host*, starting with a '/'."
141+ "`~SMTP. connect` method must support that as well as a regular host:port "
142+ "server. The optional arguments *local_hostname* and *source_address* have "
143+ "the same meaning as they do in the :class:`SMTP` class. To specify a Unix "
144+ "socket, you must use an absolute path for *host*, starting with a '/'."
145145msgstr ""
146146
147147msgid ""
@@ -173,8 +173,13 @@ msgstr ""
173173msgid ""
174174"Base class for all exceptions that include an SMTP error code. These "
175175"exceptions are generated in some instances when the SMTP server returns an "
176- "error code. The error code is stored in the :attr:`smtp_code` attribute of "
177- "the error, and the :attr:`smtp_error` attribute is set to the error message."
176+ "error code."
177+ msgstr ""
178+
179+ msgid "The error code."
180+ msgstr ""
181+
182+ msgid "The error message."
178183msgstr ""
179184
180185msgid ""
@@ -183,10 +188,12 @@ msgid ""
183188"the SMTP server refused."
184189msgstr ""
185190
191+ msgid "All recipient addresses refused."
192+ msgstr ""
193+
186194msgid ""
187- "All recipient addresses refused. The errors for each recipient are "
188- "accessible through the attribute :attr:`recipients`, which is a dictionary "
189- "of exactly the same sort as :meth:`SMTP.sendmail` returns."
195+ "A dictionary of exactly the same sort as returned by :meth:`SMTP.sendmail` "
196+ "containing the errors for each recipient."
190197msgstr ""
191198
192199msgid "The SMTP server refused to accept the message data."
@@ -461,7 +468,7 @@ msgid "SSL/TLS support is not available to your Python interpreter."
461468msgstr ""
462469
463470msgid ""
464- "The method now supports hostname check with :attr:`SSLContext."
471+ "The method now supports hostname check with :attr:`ssl. SSLContext."
465472"check_hostname` and *Server Name Indicator* (see :const:`~ssl.HAS_SNI`)."
466473msgstr ""
467474
@@ -478,7 +485,7 @@ msgid ""
478485"*mail_options*. ESMTP options (such as ``DSN`` commands) that should be used "
479486"with all ``RCPT`` commands can be passed as *rcpt_options*. (If you need to "
480487"use different ESMTP options to different recipients you have to use the low-"
481- "level methods such as :meth:`mail`, :meth:`rcpt` and :meth:`data` to send "
488+ "level methods such as :meth:`! mail`, :meth:`! rcpt` and :meth:`! data` to send "
482489"the message.)"
483490msgstr ""
484491
@@ -523,11 +530,7 @@ msgstr ""
523530msgid ":exc:`SMTPRecipientsRefused`"
524531msgstr ":exc:`SMTPRecipientsRefused`"
525532
526- msgid ""
527- "All recipients were refused. Nobody got the mail. The :attr:`recipients` "
528- "attribute of the exception object is a dictionary with information about the "
529- "refused recipients (like the one returned when at least one recipient was "
530- "accepted)."
533+ msgid "All recipients were refused. Nobody got the mail."
531534msgstr ""
532535
533536msgid ":exc:`SMTPSenderRefused`"
@@ -612,6 +615,25 @@ msgid ""
612615"documented here. For details, consult the module code."
613616msgstr ""
614617
618+ msgid "Additionally, an SMTP instance has the following attributes:"
619+ msgstr ""
620+
621+ msgid "The response to the ``HELO`` command, see :meth:`helo`."
622+ msgstr ""
623+
624+ msgid "The response to the ``EHLO`` command, see :meth:`ehlo`."
625+ msgstr ""
626+
627+ msgid ""
628+ "A boolean value indicating whether the server supports ESMTP, see :meth:"
629+ "`ehlo`."
630+ msgstr ""
631+
632+ msgid ""
633+ "A dictionary of the names of SMTP service extensions supported by the "
634+ "server, see :meth:`ehlo`."
635+ msgstr ""
636+
615637msgid "SMTP Example"
616638msgstr ""
617639