Change currency mnemonic for "New Israeli Shekel" from "ILS" to

"NIS". Fixes #152755.


git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@10331 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Christian Stimming 2004-11-10 21:17:50 +00:00
parent 40a48b4bd3
commit 77212cc1ae
3 changed files with 11 additions and 4 deletions

View File

@ -1,3 +1,9 @@
2004-11-10 Christian Stimming <stimming@tuhh.de>
* src/engine/gnc-commodity.c, src/engine/iso-4217-currencies.scm:
Change currency mnemonic for "New Israeli Shekel" from "ILS" to
"NIS". Fixes #152755.
2004-11-01 Christian Stimming <stimming@tuhh.de> 2004-11-01 Christian Stimming <stimming@tuhh.de>
* src/gnome/dialog-find-transactions.c: Mark search criteria for * src/gnome/dialog-find-transactions.c: Mark search criteria for

View File

@ -83,9 +83,10 @@ struct gnc_new_iso_code
const char *old_code; const char *old_code;
const char *new_code; const char *new_code;
} gnc_new_iso_codes[] = { } gnc_new_iso_codes[] = {
{"RUB", "RUR"}, // Russian Ruble {"RUB", "RUR"}, /* Russian Ruble */
{"PLZ", "PLN"}, // Polish Zloty {"PLZ", "PLN"}, /* Polish Zloty */
{"UAG", "UAH"}, // Ukraine Hryvnia {"UAG", "UAH"}, /* Ukraine Hryvnia */
{"ILS", "NIS"}, /* New Israeli Shekel */
}; };
#define GNC_NEW_ISO_CODES \ #define GNC_NEW_ISO_CODES \
(sizeof(gnc_new_iso_codes) / sizeof(struct gnc_new_iso_code)) (sizeof(gnc_new_iso_codes) / sizeof(struct gnc_new_iso_code))

View File

@ -91,7 +91,7 @@
( "Iranian Rial" "rial" "rial" "ISO4217" "IRR" "364" 1 1) ( "Iranian Rial" "rial" "rial" "ISO4217" "IRR" "364" 1 1)
( "Iraqi Dinar" "dinar" "fil" "ISO4217" "IQD" "368" 1000 1000) ( "Iraqi Dinar" "dinar" "fil" "ISO4217" "IQD" "368" 1000 1000)
( "Irish Punt" "punt" "pingin" "ISO4217" "IEP" "372" 100 100 ) ;; through 1998 ( "Irish Punt" "punt" "pingin" "ISO4217" "IEP" "372" 100 100 ) ;; through 1998
( "Israeli New Shekel" "new shekel" "new agorot" "ISO4217" "ILS" "376" 100 100) ( "Israeli New Shekel" "new shekel" "new agorot" "ISO4217" "NIS" "376" 100 100)
( "Italian Lira" "lira" "lira" "ISO4217" "ITL" "380" 1 1 ) ;; through 1998 ( "Italian Lira" "lira" "lira" "ISO4217" "ITL" "380" 1 1 ) ;; through 1998
( "Jamaican Dollar" "dollar" "cent" "ISO4217" "JMD" "388" 100 100 ) ( "Jamaican Dollar" "dollar" "cent" "ISO4217" "JMD" "388" 100 100 )
( "Japanese Yen" "yen" "sen" "ISO4217" "JPY" "392" 100 1 ) ( "Japanese Yen" "yen" "sen" "ISO4217" "JPY" "392" 100 1 )