Update NZ.php to mike's copy.

This commit is contained in:
Daniel Espinoza 2013-04-05 22:01:58 -05:00
parent eb6dfe9ad4
commit 65140143c3
1 changed files with 17 additions and 19 deletions

View File

@ -1,31 +1,29 @@
<?php
/**
* New Zealand states
* NZ states
*
* @author WooThemes
* @category i18n
* @package WooCommerce/i18n
* @version 2.0.5
* @version 2.0.0
*/
global $states;
$states['NZ'] = array(
'NL' => __('Northland', 'woocommerce') ,
'AK' => __('Auckland', 'woocommerce') ,
'WA' => __('Waikato', 'woocommerce') ,
'BP' => __('Bay of Plenty', 'woocommerce') ,
'TK' => __('Taranaki', 'woocommerce') ,
'HB' => __('Hawke&rsquo;s Bay', 'woocommerce') ,
'MW' => __('Manawatu-Wanganui', 'woocommerce') ,
'WE' => __('Wellington', 'woocommerce') ,
'NS' => __('Nelson', 'woocommerce') ,
'MB' => __('Marlborough', 'woocommerce') ,
'TM' => __('Tasman', 'woocommerce') ,
'WC' => __('West Coast', 'woocommerce') ,
'CT' => __('Canterbury', 'woocommerce') ,
'OT' => __('Otago', 'woocommerce') ,
'SL' => __('Southland', 'woocommerce') ,
'NL' => __( 'Northland', 'woocommerce' ),
'AK' => __( 'Auckland', 'woocommerce' ),
'WA' => __( 'Waikato', 'woocommerce' ),
'BP' => __( 'Bay of Plenty', 'woocommerce' ),
'TK' => __( 'Taranaki', 'woocommerce' ),
'HB' => __( 'Hawke&rsquo;s Bay', 'woocommerce' ),
'MW' => __( 'Manawatu-Wanganui', 'woocommerce' ),
'WE' => __( 'Wellington', 'woocommerce' ),
'NS' => __( 'Nelson', 'woocommerce' ),
'MB' => __( 'Marlborough', 'woocommerce' ),
'TM' => __( 'Tasman', 'woocommerce' ),
'WC' => __( 'West Coast', 'woocommerce' ),
'CT' => __( 'Canterbury', 'woocommerce' ),
'OT' => __( 'Otago', 'woocommerce' ),
'SL' => __( 'Southland', 'woocommerce')
);