| 1 |
<?php |
| 2 |
/** |
| 3 |
* Mexico 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 |
'Distrito Federal' => __( 'Distrito Federal', 'charitable' ), |
| 16 |
'Jalisco' => __( 'Jalisco', 'charitable' ), |
| 17 |
'Nuevo Leon' => __( 'Nuevo León', 'charitable' ), |
| 18 |
'Aguascalientes' => __( 'Aguascalientes', 'charitable' ), |
| 19 |
'Baja California' => __( 'Baja California', 'charitable' ), |
| 20 |
'Baja California Sur' => __( 'Baja California Sur', 'charitable' ), |
| 21 |
'Campeche' => __( 'Campeche', 'charitable' ), |
| 22 |
'Chiapas' => __( 'Chiapas', 'charitable' ), |
| 23 |
'Chihuahua' => __( 'Chihuahua', 'charitable' ), |
| 24 |
'Coahuila' => __( 'Coahuila', 'charitable' ), |
| 25 |
'Colima' => __( 'Colima', 'charitable' ), |
| 26 |
'Durango' => __( 'Durango', 'charitable' ), |
| 27 |
'Guanajuato' => __( 'Guanajuato', 'charitable' ), |
| 28 |
'Guerrero' => __( 'Guerrero', 'charitable' ), |
| 29 |
'Hidalgo' => __( 'Hidalgo', 'charitable' ), |
| 30 |
'Estado de Mexico' => __( 'Edo. de México', 'charitable' ), |
| 31 |
'Michoacan' => __( 'Michoacán', 'charitable' ), |
| 32 |
'Morelos' => __( 'Morelos', 'charitable' ), |
| 33 |
'Nayarit' => __( 'Nayarit', 'charitable' ), |
| 34 |
'Oaxaca' => __( 'Oaxaca', 'charitable' ), |
| 35 |
'Puebla' => __( 'Puebla', 'charitable' ), |
| 36 |
'Queretaro' => __( 'Querétaro', 'charitable' ), |
| 37 |
'Quintana Roo' => __( 'Quintana Roo', 'charitable' ), |
| 38 |
'San Luis Potosi' => __( 'San Luis Potosí', 'charitable' ), |
| 39 |
'Sinaloa' => __( 'Sinaloa', 'charitable' ), |
| 40 |
'Sonora' => __( 'Sonora', 'charitable' ), |
| 41 |
'Tabasco' => __( 'Tabasco', 'charitable' ), |
| 42 |
'Tamaulipas' => __( 'Tamaulipas', 'charitable' ), |
| 43 |
'Tlaxcala' => __( 'Tlaxcala', 'charitable' ), |
| 44 |
'Veracruz' => __( 'Veracruz', 'charitable' ), |
| 45 |
'Yucatan' => __( 'Yucatán', 'charitable' ), |
| 46 |
'Zacatecas' => __( 'Zacatecas', 'charitable' ) |
| 47 |
); |
| 48 |
|