| line | stmt | bran | cond | sub | pod | time | code | 
| 1 |  |  |  |  |  |  | package Web::Machine::I18N::en; | 
| 2 |  |  |  |  |  |  | # ABSTRACT: The English support for I18N-ed HTTP information | 
| 3 |  |  |  |  |  |  |  | 
| 4 | 1 |  |  | 1 |  | 652 | use strict; | 
|  | 1 |  |  |  |  | 1 |  | 
|  | 1 |  |  |  |  | 22 |  | 
| 5 | 1 |  |  | 1 |  | 3 | use warnings; | 
|  | 1 |  |  |  |  | 1 |  | 
|  | 1 |  |  |  |  | 19 |  | 
| 6 |  |  |  |  |  |  |  | 
| 7 | 1 |  |  | 1 |  | 2 | use parent 'Web::Machine::I18N'; | 
|  | 1 |  |  |  |  | 1 |  | 
|  | 1 |  |  |  |  | 4 |  | 
| 8 |  |  |  |  |  |  |  | 
| 9 |  |  |  |  |  |  | our $VERSION = '0.17'; | 
| 10 |  |  |  |  |  |  |  | 
| 11 |  |  |  |  |  |  | our %Lexicon = ( | 
| 12 |  |  |  |  |  |  | 100 => 'Continue', | 
| 13 |  |  |  |  |  |  | 101 => 'Switching Protocols', | 
| 14 |  |  |  |  |  |  | 200 => 'OK', | 
| 15 |  |  |  |  |  |  | 201 => 'Created', | 
| 16 |  |  |  |  |  |  | 202 => 'Accepted', | 
| 17 |  |  |  |  |  |  | 203 => 'Non-Authoritative Information', | 
| 18 |  |  |  |  |  |  | 204 => 'No Content', | 
| 19 |  |  |  |  |  |  | 205 => 'Reset Content', | 
| 20 |  |  |  |  |  |  | 206 => 'Partial Content', | 
| 21 |  |  |  |  |  |  | 300 => 'Multiple Choices', | 
| 22 |  |  |  |  |  |  | 301 => 'Moved Permanently', | 
| 23 |  |  |  |  |  |  | 302 => 'Found', | 
| 24 |  |  |  |  |  |  | 303 => 'See Other', | 
| 25 |  |  |  |  |  |  | 304 => 'Not Modified', | 
| 26 |  |  |  |  |  |  | 305 => 'Use Proxy', | 
| 27 |  |  |  |  |  |  | 307 => 'Temporary Redirect', | 
| 28 |  |  |  |  |  |  | 400 => 'Bad Request', | 
| 29 |  |  |  |  |  |  | 401 => 'Unauthorized', | 
| 30 |  |  |  |  |  |  | 402 => 'Payment Required', | 
| 31 |  |  |  |  |  |  | 403 => 'Forbidden', | 
| 32 |  |  |  |  |  |  | 404 => 'Not Found', | 
| 33 |  |  |  |  |  |  | 405 => 'Method Not Allowed', | 
| 34 |  |  |  |  |  |  | 406 => 'Not Acceptable', | 
| 35 |  |  |  |  |  |  | 407 => 'Proxy Authentication Required', | 
| 36 |  |  |  |  |  |  | 408 => 'Request Time-out', | 
| 37 |  |  |  |  |  |  | 409 => 'Conflict', | 
| 38 |  |  |  |  |  |  | 410 => 'Gone', | 
| 39 |  |  |  |  |  |  | 411 => 'Length Required', | 
| 40 |  |  |  |  |  |  | 412 => 'Precondition Failed', | 
| 41 |  |  |  |  |  |  | 413 => 'Request Entity Too Large', | 
| 42 |  |  |  |  |  |  | 414 => 'Request-URI Too Large', | 
| 43 |  |  |  |  |  |  | 415 => 'Unsupported Media Type', | 
| 44 |  |  |  |  |  |  | 416 => 'Requested range not satisfiable', | 
| 45 |  |  |  |  |  |  | 417 => 'Expectation Failed', | 
| 46 |  |  |  |  |  |  | 418 => "I'm a teapot", | 
| 47 |  |  |  |  |  |  | 500 => 'Internal Server Error', | 
| 48 |  |  |  |  |  |  | 501 => 'Not Implemented', | 
| 49 |  |  |  |  |  |  | 502 => 'Bad Gateway', | 
| 50 |  |  |  |  |  |  | 503 => 'Service Unavailable', | 
| 51 |  |  |  |  |  |  | 504 => 'Gateway Time-out', | 
| 52 |  |  |  |  |  |  | 505 => 'HTTP Version not supported', | 
| 53 |  |  |  |  |  |  | ); | 
| 54 |  |  |  |  |  |  |  | 
| 55 |  |  |  |  |  |  | 1; | 
| 56 |  |  |  |  |  |  |  | 
| 57 |  |  |  |  |  |  | __END__ |