diff --git a/index.php b/index.php
index 9fcae9e..7f2b76c 100644
--- a/index.php
+++ b/index.php
@@ -104,7 +104,8 @@ $xmr_in_fiat = strtr($xmr_in_fiat, ",", " ");
foreach ($chunks as $chunk) {
echo "
";
foreach ($chunk as $currency) {
- echo "{$currency} | ";
+ $currencyName = isset(${"l_" . strtolower($currency)}) ? ${"l_" . strtolower($currency)} : $currency;
+ echo "{$currency} | ";
}
echo "
";
echo "";