angola states (#16092)
* Added cantons of Angola * fix cantons of Angola fix cantons of Angola. Angola (ISO Country code) Subdivision names are listed as in the ISO 3166-2 standard published by the ISO 3166 Maintenance Agency (ISO 3166/MA). source: https://en.wikipedia.org/wiki/ISO_3166-2:AO * fix indentation * fix indentation * fix indentation update * fix indenting again
This commit is contained in:
parent
49ba871795
commit
988b25b7ef
|
@ -0,0 +1,35 @@
|
|||
<?php
|
||||
/**
|
||||
* Angola states
|
||||
*
|
||||
* @author Marcio Zebedeu
|
||||
* @category i18n
|
||||
* @package WooCommerce/i18n
|
||||
* @version 1.0.0
|
||||
*/
|
||||
global $states;
|
||||
|
||||
if ( ! defined( 'ABSPATH' ) ) {
|
||||
exit;
|
||||
}
|
||||
|
||||
$states['AO'] = array(
|
||||
'BGO' => __( 'Bengo', 'woocommerce' ),
|
||||
'BLU' => __( 'Benguela', 'woocommerce' ),
|
||||
'BIE' => __( 'Bié', 'woocommerce' ),
|
||||
'CAB' => __( 'Cabinda', 'woocommerce' ),
|
||||
'CNN' => __( 'Cunene', 'woocommerce' ),
|
||||
'HUA' => __( 'Huambo', 'woocommerce' ),
|
||||
'HUI' => __( 'Huíla', 'woocommerce' ),
|
||||
'CCU' => __( 'Kuando Kubango', 'woocommerce' ),
|
||||
'CNO' => __( 'Kwanza-Norte', 'woocommerce' ),
|
||||
'CUS' => __( 'Kwanza-Sul', 'woocommerce' ),
|
||||
'LUA' => __( 'Luanda', 'woocommerce' ),
|
||||
'LNO' => __( 'Lunda-Norte', 'woocommerce' ),
|
||||
'LSU' => __( 'Lunda-Sul', 'woocommerce' ),
|
||||
'MAL' => __( 'Malanje', 'woocommerce' ),
|
||||
'MOX' => __( 'Moxico', 'woocommerce' ),
|
||||
'NAM' => __( 'Namibe', 'woocommerce' ),
|
||||
'UIG' => __( 'Uíge', 'woocommerce' ),
|
||||
'ZAI' => __( 'Zaire', 'woocommerce' ),
|
||||
);
|
Loading…
Reference in New Issue