From d57ac66fce7aded0bc1843273169d23de187600c Mon Sep 17 00:00:00 2001 From: demon36 Date: Sun, 18 May 2014 14:30:37 -0700 Subject: [PATCH] added egypptian currency #5502 --- includes/wc-core-functions.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/includes/wc-core-functions.php b/includes/wc-core-functions.php index ac5d08e3cc9..3e86301d02d 100644 --- a/includes/wc-core-functions.php +++ b/includes/wc-core-functions.php @@ -204,6 +204,7 @@ function get_woocommerce_currencies() { 'TRY' => __( 'Turkish Lira', 'woocommerce' ), 'USD' => __( 'US Dollars', 'woocommerce' ), 'VND' => __( 'Vietnamese Dong', 'woocommerce' ), + 'EGP' => __( 'Egyptian Pound', 'woocommerce' ), ) ) ); @@ -276,6 +277,7 @@ function get_woocommerce_currency_symbol( $currency = '' ) { case 'VND' : $currency_symbol = '₫'; break; case 'NGN' : $currency_symbol = '₦'; break; case 'HRK' : $currency_symbol = 'Kn'; break; + case 'EGP' : $currency_symbol = 'EGP'; break; default : $currency_symbol = ''; break; }