/** * Convert ISO abbreviation to full, translated country name */ public function Nice() { $val = ShopConfig::countryCode2name($this->value); if (!$val) { $val = $this->value; } return _t("ShopCountry." . $this->value, $val); }