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