Problem/Motivation
It is included in ISO 4217. The currency code is GEL, Numeric code is 981. This is wikipedia link about ISO 4217 http://en.wikipedia.org/wiki/ISO_4217
Proposed resolution
Add it to the currency file.
'GEL' => array(
'code' => 'GEL',
'symbol' => 'ლ',
'name' => t('Georgian Lari'),
'numeric_code' => '981',
'symbol_placement' => 'before',
'code_placement' => 'hidden',
'minor_unit' => t('Tetri'),
'major_unit' => t('Lari'),
),
| Comment | File | Size | Author |
|---|---|---|---|
| #6 | commerce-georgian_lari-2256853-6.patch | 722 bytes | acrollet |
| #4 | commerce-georgian_lari-2256853-4.patch | 722 bytes | acrollet |
| #1 | commerce-georgian_lari-2256853-1.patch | 1.39 KB | dwkitchen |
Comments
Comment #1
dwkitchen commentedPatch attached
Comment #2
dwkitchen commentedComment #3
bojanz commentedThe GEL symbol is not a part of Unicode yet, we can't use it. We should hide the symbol, and show the code after the amount instead.
CLDR also specifies that the grouping separator is one blank space.
Comment #4
acrollet commentedThe Lari is now part of the official unicode spec. (See: http://www.unicode.org/charts/PDF/U20A0.pdf) Updated patch attached.
Comment #5
acrollet commentedComment #6
acrollet commentedAttaching updated version of #1 for makefile purposes, please review #4
Comment #8
bojanz commentedAccording to CLDR, the symbol goes after the amount, not before like this patch specified.
Made that change, and committed. Thanks!