| 1 |
<?php |
| 2 |
/** |
| 3 |
* United States |
| 4 |
* |
| 5 |
* Credit to WooThemes, mikejolly and shivapoudel. This is shamelessly based on their implementation in WooCommerce. |
| 6 |
* |
| 7 |
* @since 1.0.0 |
| 8 |
* @package Charitable/i18n |
| 9 |
* @author Eric Daams |
| 10 |
* @copyright Copyright (c) 2015, Studio 164a |
| 11 |
* @license http://opensource.org/licenses/gpl-2.0.php GNU Public License |
| 12 |
*/ |
| 13 |
|
| 14 |
return array( |
| 15 |
'AL' => __( 'Alabama', 'charitable' ), |
| 16 |
'AK' => __( 'Alaska', 'charitable' ), |
| 17 |
'AZ' => __( 'Arizona', 'charitable' ), |
| 18 |
'AR' => __( 'Arkansas', 'charitable' ), |
| 19 |
'CA' => __( 'California', 'charitable' ), |
| 20 |
'CO' => __( 'Colorado', 'charitable' ), |
| 21 |
'CT' => __( 'Connecticut', 'charitable' ), |
| 22 |
'DE' => __( 'Delaware', 'charitable' ), |
| 23 |
'DC' => __( 'District Of Columbia', 'charitable' ), |
| 24 |
'FL' => __( 'Florida', 'charitable' ), |
| 25 |
'GA' => _x( 'Georgia', 'US state of Georgia', 'charitable' ), |
| 26 |
'HI' => __( 'Hawaii', 'charitable' ), |
| 27 |
'ID' => __( 'Idaho', 'charitable' ), |
| 28 |
'IL' => __( 'Illinois', 'charitable' ), |
| 29 |
'IN' => __( 'Indiana', 'charitable' ), |
| 30 |
'IA' => __( 'Iowa', 'charitable' ), |
| 31 |
'KS' => __( 'Kansas', 'charitable' ), |
| 32 |
'KY' => __( 'Kentucky', 'charitable' ), |
| 33 |
'LA' => __( 'Louisiana', 'charitable' ), |
| 34 |
'ME' => __( 'Maine', 'charitable' ), |
| 35 |
'MD' => __( 'Maryland', 'charitable' ), |
| 36 |
'MA' => __( 'Massachusetts', 'charitable' ), |
| 37 |
'MI' => __( 'Michigan', 'charitable' ), |
| 38 |
'MN' => __( 'Minnesota', 'charitable' ), |
| 39 |
'MS' => __( 'Mississippi', 'charitable' ), |
| 40 |
'MO' => __( 'Missouri', 'charitable' ), |
| 41 |
'MT' => __( 'Montana', 'charitable' ), |
| 42 |
'NE' => __( 'Nebraska', 'charitable' ), |
| 43 |
'NV' => __( 'Nevada', 'charitable' ), |
| 44 |
'NH' => __( 'New Hampshire', 'charitable' ), |
| 45 |
'NJ' => __( 'New Jersey', 'charitable' ), |
| 46 |
'NM' => __( 'New Mexico', 'charitable' ), |
| 47 |
'NY' => __( 'New York', 'charitable' ), |
| 48 |
'NC' => __( 'North Carolina', 'charitable' ), |
| 49 |
'ND' => __( 'North Dakota', 'charitable' ), |
| 50 |
'OH' => __( 'Ohio', 'charitable' ), |
| 51 |
'OK' => __( 'Oklahoma', 'charitable' ), |
| 52 |
'OR' => __( 'Oregon', 'charitable' ), |
| 53 |
'PA' => __( 'Pennsylvania', 'charitable' ), |
| 54 |
'RI' => __( 'Rhode Island', 'charitable' ), |
| 55 |
'SC' => __( 'South Carolina', 'charitable' ), |
| 56 |
'SD' => __( 'South Dakota', 'charitable' ), |
| 57 |
'TN' => __( 'Tennessee', 'charitable' ), |
| 58 |
'TX' => __( 'Texas', 'charitable' ), |
| 59 |
'UT' => __( 'Utah', 'charitable' ), |
| 60 |
'VT' => __( 'Vermont', 'charitable' ), |
| 61 |
'VA' => __( 'Virginia', 'charitable' ), |
| 62 |
'WA' => __( 'Washington', 'charitable' ), |
| 63 |
'WV' => __( 'West Virginia', 'charitable' ), |
| 64 |
'WI' => __( 'Wisconsin', 'charitable' ), |
| 65 |
'WY' => __( 'Wyoming', 'charitable' ), |
| 66 |
'AA' => __( 'Armed Forces (AA)', 'charitable' ), |
| 67 |
'AE' => __( 'Armed Forces (AE)', 'charitable' ), |
| 68 |
'AP' => __( 'Armed Forces (AP)', 'charitable' ), |
| 69 |
'AS' => __( 'American Samoa', 'charitable' ), |
| 70 |
'GU' => __( 'Guam', 'charitable' ), |
| 71 |
'MP' => __( 'Northern Mariana Islands', 'charitable' ), |
| 72 |
'PR' => __( 'Puerto Rico', 'charitable' ), |
| 73 |
'UM' => __( 'US Minor Outlying Islands', 'charitable' ), |
| 74 |
'VI' => __( 'US Virgin Islands', 'charitable' ), |
| 75 |
); |
| 76 |
|