Added Kenyan shilling currency

This commit is contained in:
Claudio Sanches 2015-12-09 13:06:54 -02:00
parent 586b656d07
commit 4b52c0d052
1 changed files with 4 additions and 0 deletions

View File

@ -294,6 +294,7 @@ function get_woocommerce_currencies() {
'INR' => __( 'Indian Rupee', 'woocommerce' ),
'ISK' => __( 'Icelandic krona', 'woocommerce' ),
'JPY' => __( 'Japanese Yen', 'woocommerce' ),
'KES' => __( 'Kenyan shilling', 'woocommerce' ),
'KIP' => __( 'Lao Kip', 'woocommerce' ),
'KRW' => __( 'South Korean Won', 'woocommerce' ),
'MXN' => __( 'Mexican Peso', 'woocommerce' ),
@ -402,6 +403,9 @@ function get_woocommerce_currency_symbol( $currency = '' ) {
case 'ISK' :
$currency_symbol = 'Kr.';
break;
case 'KES' :
$currency_symbol = 'KSh';
break;
case 'KIP' :
$currency_symbol = '₭';
break;