please add "Iranian Rial" to list of currencies.

Comments

rszrama’s picture

Good catch. I don't suppose it's possible for you to fill in the various pieces of the currency array for me?

    'USD' => array(
      'code' => 'USD',
      'symbol' => '$',
      'name' => t('United States Dollar'),
      'numeric_code' => '840',
      'symbol_placement' => 'before',
      'code_placement' => '',
      'minor_unit' => t('Cent'),
      'major_unit' => t('Dollar'),
    ),
abbasmousavi’s picture

I think the correct form is this:


<?php
    'IRR' => array(
      'code' => 'IRR',
      'symbol' => '﷼',
      'name' => t('Iranian Rial'),
      'numeric_code' => '364',
      'symbol_placement' => 'after',
      'code_placement' => '',
      'minor_unit' => t('Rial'),
      'major_unit' => t('Toman'),
    ),

pcambra’s picture

Status: Active » Needs review
abbasmousavi’s picture

Can it be committed to the github repository before next release?

rszrama’s picture

Yeah, I'm doing all our needs review issues right now.

rszrama’s picture

Status: Needs review » Fixed

And now it's committed. : )

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.