| 1 |
<?php |
| 2 |
/** |
| 3 |
* South African 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 |
'EC' => __( 'Eastern Cape', 'charitable' ), |
| 16 |
'FS' => __( 'Free State', 'charitable' ), |
| 17 |
'GP' => __( 'Gauteng', 'charitable' ), |
| 18 |
'KZN' => __( 'KwaZulu-Natal', 'charitable' ), |
| 19 |
'LP' => __( 'Limpopo', 'charitable' ), |
| 20 |
'MP' => __( 'Mpumalanga', 'charitable' ), |
| 21 |
'NC' => __( 'Northern Cape', 'charitable' ), |
| 22 |
'NW' => __( 'North West', 'charitable' ), |
| 23 |
'WC' => __( 'Western Cape', 'charitable' ) |
| 24 |
); |
| 25 |
|