Currencies list?

2005-03-29 Thread Murray Cumming
Does anyone know of a LGPL (or similar) library that can give me a (translatable) list of currencies (with symbol, name, and country)? I would like to use this for the numeric formatting options in Glom. -- Murray Cumming [EMAIL PROTECTED] www.murrayc.com www.openismus.com __

Re: Currencies list?

2005-03-29 Thread Simos Xenitellis
Murray Cumming wrote: Does anyone know of a LGPL (or similar) library that can give me a (translatable) list of currencies (with symbol, name, and country)? I would like to use this for the numeric formatting options in Glom. The currency codes and names are listed in ISO 4217, see: http://www.i

Re: Currencies list?

2005-03-29 Thread Murray Cumming
On Tue, 2005-03-29 at 16:32 +0100, Simos Xenitellis wrote: > Murray Cumming wrote: > > >Does anyone know of a LGPL (or similar) library that can give me a > >(translatable) list of currencies (with symbol, name, and country)? I > >would like to use this for the numeric formatting options in Glom.

Re: Currencies list?

2005-03-29 Thread Adam Weinberger
On Tue, 2005-29-03 at 16:26 +0200, Murray Cumming wrote: > Does anyone know of a LGPL (or similar) library that can give me a > (translatable) list of currencies (with symbol, name, and country)? I > would like to use this for the numeric formatting options in Glom. Murray - Check out kexchange,

Re: Currencies list?

2005-03-29 Thread Christian Rose
tis 2005-03-29 klockan 17:41 +0200 skrev Murray Cumming: > On Tue, 2005-03-29 at 16:32 +0100, Simos Xenitellis wrote: > > Murray Cumming wrote: > > > > >Does anyone know of a LGPL (or similar) library that can give me a > > >(translatable) list of currencies (with symbol, name, and country)? I > >

Re: Currencies list?

2005-03-29 Thread Clytie Siddall
On 30/03/2005, at 4:19 AM, Christian Rose wrote: The iso* domains in the Translation Project are what translators see of the "iso-codes" package (see http://people.debian.org/~mckinstry/iso-codes-0.45.tar.gz). That package contains XML files with some or all of the information you list above. As I

Re: Currencies list?

2005-03-29 Thread Simos Xenitellis
ÎÏÎÏ 29/ÎÎÏ/2005, ÎÎÎÏÎ ÎÏÎÏÎ ÎÎÎ ÏÏÎ 19:49, Î/Î Christian Rose ÎÎÏÎÏÎ: > tis 2005-03-29 klockan 17:41 +0200 skrev Murray Cumming: > > On Tue, 2005-03-29 at 16:32 +0100, Simos Xenitellis wrote: > > > Murray Cumming wrote: > > > > > > >Does anyone know of a LGPL (or similar) library that can give

Re: Currencies list?

2005-03-29 Thread Simos Xenitellis
Some more information on currency internationalisation... http://www.xencraft.com/resources/multi-currency.html#group Simos ÎÏÎÏ 30/ÎÎÏ/2005, ÎÎÎÏÎ ÎÎÏÎÏÏÎ ÎÎÎ ÏÏÎ 06:34, Î/Î Simos Xenitellis ÎÎÏÎÏÎ: > ÎÏÎÏ 29/ÎÎÏ/2005, ÎÎÎÏÎ ÎÏÎÏÎ ÎÎÎ ÏÏÎ 19:49, Î/Î > Christian Rose ÎÎÏÎÏÎ: > > tis 2005-03-29

Re: Currencies list?

2005-03-30 Thread Murray Cumming
On Wed, 2005-03-30 at 06:34 +0100, Simos Xenitellis wrote: > ``So the plan is then to be able to use > dgettext("iso-639", language_name) > to get the correct translations.'' > > In addition, it recommends to contact the maintainer of the iso-codes > package when you are considering to mak

Re: Currencies list?

2005-03-30 Thread Danilo Šegan
Yesterday at 17:41, Murray Cumming wrote: > - how could I get a translation of a currency name, in the current > locale? As for current locale, why not use strfmon or localeconv instead? #include #include int main(void) { char dump[100]; struct lconv *info; setlocale(LC_ALL,""); info

Re: Currencies list?

2005-03-30 Thread Murray Cumming
On Wed, 2005-03-30 at 15:06 +0200, Danilo Åegan wrote: > Yesterday at 17:41, Murray Cumming wrote: > > > - how could I get a translation of a currency name, in the current > > locale? > > As for current locale, why not use strfmon or localeconv instead? > > #include > #include > > int main(vo

Re: Currencies list?

2005-03-30 Thread Alastair McKinstry
On CÃad, 2005-03-30 at 12:00 +0200, Murray Cumming wrote: > On Wed, 2005-03-30 at 06:34 +0100, Simos Xenitellis wrote: > > ``So the plan is then to be able to use > > dgettext("iso-639", language_name) > > to get the correct translations.'' > > > > In addition, it recommends to contact the

Re: Currencies list?

2005-03-31 Thread Murray Cumming
On Wed, 2005-03-30 at 19:47 +0100, Alastair McKinstry wrote: > On CÃad, 2005-03-30 at 12:00 +0200, Murray Cumming wrote: > > Thanks. Here is the code I wrote for Glom for those who like C++: > > http://cvs.gnome.org/viewcvs/glom/glom/data_structure/iso_codes.cc? > > view=markup > > The po domains w