|
11 | 11 | (100, _('Continue')), |
12 | 12 | (101, _('Switching Protocols')), |
13 | 13 | (102, _('Processing (WebDAV)')), |
| 14 | + (103, _('Early Hints')), |
14 | 15 |
|
15 | 16 | # Success |
16 | 17 | (200, _('OK')), |
|
21 | 22 | (205, _('Reset Content')), |
22 | 23 | (206, _('Partial Content')), |
23 | 24 | (207, _('Multi-Status (WebDAV)')), |
| 25 | + (208, _('Already Reported (WebDAV)')), |
| 26 | + (226, _('IM Used (HTTP Delta encoding)')), |
24 | 27 |
|
25 | 28 | # Redirection |
26 | 29 | (300, _('Multiple Choices')), |
|
31 | 34 | (305, _('Use Proxy')), |
32 | 35 | (306, _('Switch Proxy')), # No longer used |
33 | 36 | (307, _('Temporary Redirect')), |
| 37 | + (308, _('Permanent Redirect')), |
34 | 38 |
|
35 | 39 | # Client Error |
36 | 40 | (400, _('Bad Request')), |
|
57 | 61 | (424, _('Failed Dependency (WebDAV)')), |
58 | 62 | (425, _('Unordered Collection')), |
59 | 63 | (426, _('Upgrade Required')), |
| 64 | + (428, _('Precondition Required')), |
| 65 | + (429, _('Too Many Requests')), |
| 66 | + (431, _('Request Header Fields Too Large')), |
60 | 67 | (449, _('Retry With')), |
| 68 | + (451, _('Unavailable For Legal Reasons')), |
61 | 69 |
|
62 | 70 | # Server Error |
63 | 71 | (500, _('Internal Server Error')), |
|
70 | 78 | (507, _('Insufficient Storage (WebDAV)')), |
71 | 79 | (509, _('Bandwidth Limit Exceeded')), |
72 | 80 | (510, _('Not Extended')), |
| 81 | + (511, _('Network Authentication Required')), |
73 | 82 | ) |
74 | 83 |
|
75 | 84 |
|
|
0 commit comments