| 1 |
<?php |
| 2 |
/** |
| 3 |
* New Zealand 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 |
'NL' => __( 'Northland', 'charitable' ), |
| 16 |
'AK' => __( 'Auckland', 'charitable' ), |
| 17 |
'WA' => __( 'Waikato', 'charitable' ), |
| 18 |
'BP' => __( 'Bay of Plenty', 'charitable' ), |
| 19 |
'TK' => __( 'Taranaki', 'charitable' ), |
| 20 |
'HB' => __( 'Hawke’s Bay', 'charitable' ), |
| 21 |
'MW' => __( 'Manawatu-Wanganui', 'charitable' ), |
| 22 |
'WE' => __( 'Wellington', 'charitable' ), |
| 23 |
'NS' => __( 'Nelson', 'charitable' ), |
| 24 |
'MB' => __( 'Marlborough', 'charitable' ), |
| 25 |
'TM' => __( 'Tasman', 'charitable' ), |
| 26 |
'WC' => __( 'West Coast', 'charitable' ), |
| 27 |
'CT' => __( 'Canterbury', 'charitable' ), |
| 28 |
'OT' => __( 'Otago', 'charitable' ), |
| 29 |
'SL' => __( 'Southland', 'charitable') |
| 30 |
); |
| 31 |
|
| 32 |
|