Comments

rszrama’s picture

Does this information look correct?

    'AED' => array(
      'code' => 'AED',
      'symbol' => 'د.إ',
      'name' => t('United Arab Emirates Dirham'),
      'numeric_code' => '784',
      'minor_unit' => t('Fils'),
      'major_unit' => t('Dirham'),
    ),

Can you give me some examples of how you would format currency in AED? And maybe the currency symbol on a standalone line?

rszrama’s picture

Version: 7.x-1.0 » 7.x-1.x-dev
Component: Price » Commerce
Status: Active » Fixed

Ok, I was able to find a currency format in http://finance.yahoo.com/currency-converter/?amt=1&from=USD&to=AED&submi... and verified my use of the symbol against the Currency API module. Think it's good to go as:

    'AED' => array(
      'code' => 'AED',
      'symbol' => 'د.إ',
      'name' => t('United Arab Emirates Dirham'),
      'numeric_code' => '784',
      'symbol_placement' => 'after',
      'code_placement' => '',
      'minor_unit' => t('Fils'),
      'major_unit' => t('Dirham'),
    ),

Status: Fixed » Closed (fixed)

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

AWE’s picture

Hi Ryan

Thank you very much for your response. Sorry for taking so long to get back to you.

The prefix "AED" is used as you can see from this example: http://store.apple.com/ae/

joshmiller’s picture

Status: Closed (fixed) » Needs review

Ryan,

We have been asked to change it to this:

    'AED' => array(
      'code' => 'AED',
      'symbol' => 'AED',
      'name' => t('United Arab Emirates Dirham'),
      'numeric_code' => '784',
      'symbol_placement' => 'after',
      'code_placement' => '',
      'minor_unit' => t('Fils'),
      'major_unit' => t('Dirham'),
    ),
rszrama’s picture

Status: Needs review » Closed (fixed)