(svn r1215) Feature: You can now make a custom currency by chosing "Custom..."

This commit is contained in:
dominik
2004-12-22 13:19:26 +00:00
parent 46af99b8c0
commit 4f4fa940d8
9 changed files with 313 additions and 44 deletions

26
table/currency.h Normal file
View File

@@ -0,0 +1,26 @@
CurrencySpec _currency_specs[] = {
{ 1, ',', CF_NOEURO, "\xA3", "" }, // british pounds
{ 2, ',', CF_NOEURO, "$", "" }, // us dollars
{ 10, '.', 2002, "FF ", "" }, // french francs
{ 4, '.', 2002, "DM ", "" }, // deutsche mark
{ 200, ',', CF_NOEURO, "\xA5", "" }, // yen
{ 200, '.', 2002, "Pt", "" }, // spanish pesetas
{ 376, ',', 2002, "", " Ft" },
{ 6, ' ', CF_NOEURO, "", " zl" },
{ 19, ',', 2002, "ATS ", "" },
{ 57, ',', 2002, "BEF ", "" },
{ 10, '.', CF_NOEURO, "", " kr" },
{ 8, ',', 2002, "FIM ", "" },
{ 480, ',', 2002, "GRD ", "" },
{ 2, ',', CF_NOEURO, "CHF ", "" },
{ 3, ',', 2002, "NLG ", "" },
{ 2730,',', 2002, "ITL ", "" },
{ 13, '.', CF_NOEURO, "", " kr" },
{ 5, ' ', CF_NOEURO, "", " rur" },
{ 50, ',', CF_NOEURO, "", " Kc" },
{ 130, '.', CF_NOEURO, "", " kr" },
{ 11, '.', CF_NOEURO, "", " kr" },
{ 2, ',', CF_ISEURO, "<EFBFBD>", "" },
{ 6, '.', CF_NOEURO, "", " Lei" },
};