2012-12-28 10:54:02 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* South African states
|
|
|
|
*
|
2018-03-05 19:44:56 +00:00
|
|
|
* @package WooCommerce/i18n
|
|
|
|
* @version 2.0.0
|
2012-12-28 10:54:02 +00:00
|
|
|
*/
|
2018-03-05 19:44:56 +00:00
|
|
|
|
2012-12-28 10:54:02 +00:00
|
|
|
global $states;
|
|
|
|
|
2018-03-05 20:10:12 +00:00
|
|
|
defined( 'ABSPATH' ) || exit;
|
2017-05-10 18:03:19 +00:00
|
|
|
|
2012-12-28 10:54:02 +00:00
|
|
|
$states['ZA'] = array(
|
2014-09-16 21:01:41 +00:00
|
|
|
'EC' => __( 'Eastern Cape', 'woocommerce' ),
|
|
|
|
'FS' => __( 'Free State', 'woocommerce' ),
|
|
|
|
'GP' => __( 'Gauteng', 'woocommerce' ),
|
|
|
|
'KZN' => __( 'KwaZulu-Natal', 'woocommerce' ),
|
|
|
|
'LP' => __( 'Limpopo', 'woocommerce' ),
|
|
|
|
'MP' => __( 'Mpumalanga', 'woocommerce' ),
|
|
|
|
'NC' => __( 'Northern Cape', 'woocommerce' ),
|
|
|
|
'NW' => __( 'North West', 'woocommerce' ),
|
2016-08-27 01:46:45 +00:00
|
|
|
'WC' => __( 'Western Cape', 'woocommerce' ),
|
2014-09-16 20:46:11 +00:00
|
|
|
);
|