2017-02-26 18:50:51 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Pakistan's states
|
|
|
|
*
|
2017-02-27 19:31:28 +00:00
|
|
|
* @author WooCommerce
|
2017-02-26 18:50:51 +00:00
|
|
|
* @category i18n
|
|
|
|
* @package WooCommerce/i18n
|
2017-03-15 16:36:53 +00:00
|
|
|
* @version 3.0.0
|
2017-02-26 18:50:51 +00:00
|
|
|
*/
|
|
|
|
global $states;
|
|
|
|
|
2017-05-10 18:03:19 +00:00
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
2017-02-26 18:50:51 +00:00
|
|
|
$states['PK'] = array(
|
2017-02-28 09:42:42 +00:00
|
|
|
'JK' => __( 'Azad Kashmir', 'woocommerce' ),
|
2017-02-26 18:50:51 +00:00
|
|
|
'BA' => __( 'Balochistan', 'woocommerce' ),
|
|
|
|
'TA' => __( 'FATA', 'woocommerce' ),
|
2017-02-28 09:42:42 +00:00
|
|
|
'GB' => __( 'Gilgit Baltistan', 'woocommerce' ),
|
2017-02-26 18:50:51 +00:00
|
|
|
'IS' => __( 'Islamabad Capital Territory', 'woocommerce' ),
|
2017-02-28 09:42:42 +00:00
|
|
|
'KP' => __( 'Khyber Pakhtunkhwa', 'woocommerce' ),
|
|
|
|
'PB' => __( 'Punjab', 'woocommerce' ),
|
|
|
|
'SD' => __( 'Sindh', 'woocommerce' ),
|
2017-02-26 18:50:51 +00:00
|
|
|
);
|