From 123a887af11ace2b7d985ddf82ee02dd79b7a8a5 Mon Sep 17 00:00:00 2001 From: Mike Jolley Date: Mon, 5 Dec 2011 17:18:07 +0000 Subject: [PATCH] CZK currency Closes #331. --- admin/admin-settings.php | 2 +- woocommerce.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/admin/admin-settings.php b/admin/admin-settings.php index 9b6550a80d1..8dda04b3cf9 100644 --- a/admin/admin-settings.php +++ b/admin/admin-settings.php @@ -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' ), diff --git a/woocommerce.php b/woocommerce.php index 7e5d63856eb..56c0e3b2286 100644 --- a/woocommerce.php +++ b/woocommerce.php @@ -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' :