CZK currency Closes #331.

This commit is contained in:
Mike Jolley 2011-12-05 17:18:07 +00:00
parent 84985e6d49
commit 123a887af1
2 changed files with 3 additions and 3 deletions

View File

@ -44,7 +44,7 @@ $woocommerce_settings['general'] = apply_filters('woocommerce_general_settings',
'AUD' => __( 'Australian Dollars ($)', 'woothemes' ),
'BRL' => __( 'Brazilian Real ($)', 'woothemes' ),
'CAD' => __( 'Canadian Dollars ($)', 'woothemes' ),
'CZK' => __( 'Czech Koruna', 'woothemes' ),
'CZK' => __( 'Czech Koruna (Kč)', 'woothemes' ),
'DKK' => __( 'Danish Krone', 'woothemes' ),
'HKD' => __( 'Hong Kong Dollar ($)', 'woothemes' ),
'HUF' => __( 'Hungarian Forint', 'woothemes' ),

View File

@ -438,8 +438,8 @@ function get_woocommerce_currency_symbol() {
case 'TRY' : $currency_symbol = 'TL'; break;
case 'NOK' : $currency_symbol = 'kr'; break;
case 'ZAR' : $currency_symbol = 'R'; break;
case 'CZK' :
case 'CZK' : $currency_symbol = 'Kč'; break;
case 'DKK' :
case 'HUF' :
case 'ILS' :