@@ -11,7 +11,7 @@ msgid ""
1111msgstr ""
1212"Project-Id-Version : Python 3.13\n "
1313"Report-Msgid-Bugs-To : \n "
14- "POT-Creation-Date : 2025-05-23 14:55 +0000\n "
14+ "POT-Creation-Date : 2025-06-06 14:57 +0000\n "
1515"PO-Revision-Date : 2025-05-08 05:09+0000\n "
1616"Last-Translator : Rafael Fontenelle <rffontenelle@gmail.com>, 2025\n "
1717"Language-Team : Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n "
@@ -337,77 +337,32 @@ msgstr ""
337337
338338msgid ""
339339":attr:`http.server.BaseHTTPRequestHandler.responses` is a useful dictionary "
340- "of response codes in that shows all the response codes used by :rfc:`2616`. "
341- "The dictionary is reproduced here for convenience ::"
340+ "of response codes that shows all the response codes used by :rfc:`2616`. An "
341+ "excerpt from the dictionary is shown below ::"
342342msgstr ""
343343
344344msgid ""
345- "# Table mapping response codes to messages; entries have the\n"
346- "# form {code: (shortmessage, longmessage)}.\n"
347345"responses = {\n"
348- " 100: ('Continue', 'Request received, please continue'),\n"
349- " 101: ('Switching Protocols',\n"
350- " 'Switching to new protocol; obey Upgrade header'),\n"
351- "\n"
352- " 200: ('OK', 'Request fulfilled, document follows'),\n"
353- " 201: ('Created', 'Document created, URL follows'),\n"
354- " 202: ('Accepted',\n"
355- " 'Request accepted, processing continues off-line'),\n"
356- " 203: ('Non-Authoritative Information', 'Request fulfilled from cache'),\n"
357- " 204: ('No Content', 'Request fulfilled, nothing follows'),\n"
358- " 205: ('Reset Content', 'Clear input form for further input.'),\n"
359- " 206: ('Partial Content', 'Partial content follows.'),\n"
360- "\n"
361- " 300: ('Multiple Choices',\n"
362- " 'Object has several resources -- see URI list'),\n"
363- " 301: ('Moved Permanently', 'Object moved permanently -- see URI list'),\n"
364- " 302: ('Found', 'Object moved temporarily -- see URI list'),\n"
365- " 303: ('See Other', 'Object moved -- see Method and URL list'),\n"
366- " 304: ('Not Modified',\n"
367- " 'Document has not changed since given time'),\n"
368- " 305: ('Use Proxy',\n"
369- " 'You must use proxy specified in Location to access this '\n"
370- " 'resource.'),\n"
371- " 307: ('Temporary Redirect',\n"
372- " 'Object moved temporarily -- see URI list'),\n"
373- "\n"
374- " 400: ('Bad Request',\n"
375- " 'Bad request syntax or unsupported method'),\n"
376- " 401: ('Unauthorized',\n"
377- " 'No permission -- see authorization schemes'),\n"
378- " 402: ('Payment Required',\n"
379- " 'No payment -- see charging schemes'),\n"
380- " 403: ('Forbidden',\n"
381- " 'Request forbidden -- authorization will not help'),\n"
382- " 404: ('Not Found', 'Nothing matches the given URI'),\n"
383- " 405: ('Method Not Allowed',\n"
384- " 'Specified method is invalid for this server.'),\n"
385- " 406: ('Not Acceptable', 'URI not available in preferred format.'),\n"
386- " 407: ('Proxy Authentication Required', 'You must authenticate with '\n"
387- " 'this proxy before proceeding.'),\n"
388- " 408: ('Request Timeout', 'Request timed out; try again later.'),\n"
389- " 409: ('Conflict', 'Request conflict.'),\n"
390- " 410: ('Gone',\n"
391- " 'URI no longer exists and has been permanently removed.'),\n"
392- " 411: ('Length Required', 'Client must specify Content-Length.'),\n"
393- " 412: ('Precondition Failed', 'Precondition in headers is false.'),\n"
394- " 413: ('Request Entity Too Large', 'Entity is too large.'),\n"
395- " 414: ('Request-URI Too Long', 'URI is too long.'),\n"
396- " 415: ('Unsupported Media Type', 'Entity body in unsupported format.'),\n"
397- " 416: ('Requested Range Not Satisfiable',\n"
398- " 'Cannot satisfy request range.'),\n"
399- " 417: ('Expectation Failed',\n"
400- " 'Expect condition could not be satisfied.'),\n"
401- "\n"
402- " 500: ('Internal Server Error', 'Server got itself in trouble'),\n"
403- " 501: ('Not Implemented',\n"
404- " 'Server does not support this operation'),\n"
405- " 502: ('Bad Gateway', 'Invalid responses from another server/proxy.'),\n"
406- " 503: ('Service Unavailable',\n"
407- " 'The server cannot process the request due to a high load'),\n"
408- " 504: ('Gateway Timeout',\n"
409- " 'The gateway server did not receive a timely response'),\n"
410- " 505: ('HTTP Version Not Supported', 'Cannot fulfill request.'),\n"
346+ " ...\n"
347+ " <HTTPStatus.OK: 200>: ('OK', 'Request fulfilled, document follows'),\n"
348+ " ...\n"
349+ " <HTTPStatus.FORBIDDEN: 403>: ('Forbidden',\n"
350+ " 'Request forbidden -- authorization will "
351+ "'\n"
352+ " 'not help'),\n"
353+ " <HTTPStatus.NOT_FOUND: 404>: ('Not Found',\n"
354+ " 'Nothing matches the given URI'),\n"
355+ " ...\n"
356+ " <HTTPStatus.IM_A_TEAPOT: 418>: (\" I'm a Teapot\" ,\n"
357+ " 'Server refuses to brew coffee because "
358+ "'\n"
359+ " 'it is a teapot'),\n"
360+ " ...\n"
361+ " <HTTPStatus.SERVICE_UNAVAILABLE: 503>: ('Service Unavailable',\n"
362+ " 'The server cannot process the "
363+ "'\n"
364+ " 'request due to a high load'),\n"
365+ " ...\n"
411366" }"
412367msgstr ""
413368
0 commit comments