This is the mail archive of the libc-hacker@sources.redhat.com mailing list for the glibc project.

Note that libc-hacker is a closed list. You may look at the archives of this list, but subscription and posting are not open.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH] Correct currency formatting for it_IT


Here is a patch to correct the currency formatting for it_IT.  All
countries using Euro should use two fraction digits now.

The change was accepted by the original locale author Keld Jørn
Simonsen.

Here is a changelog entry for libc/localedata/ChangeLog:

2004-05-15  Petter Reinholdtsen  <pere@hungry.com>

	* locales/it_IT: Change currency formatting from none to two
	fraction dicits, as Italy now uses the Euro.  Patch from Marko
	Djukic. [BZ #111]

Here is the patch:

Index: localedata/locales/it_IT
===================================================================
RCS file: /cvs/glibc/libc/localedata/locales/it_IT,v
retrieving revision 1.8
diff -u -3 -p -u -r1.8 it_IT
--- localedata/locales/it_IT	4 Dec 2003 04:49:57 -0000	1.8
+++ localedata/locales/it_IT	15 May 2004 07:36:16 -0000
@@ -66,8 +66,8 @@ mon_thousands_sep         "<U002E>"
 mon_grouping              3;3
 positive_sign             ""
 negative_sign             "<U002D>"
-int_frac_digits           0
-frac_digits               0
+int_frac_digits           2
+frac_digits               2
 p_cs_precedes             1
 p_sep_by_space            1
 n_cs_precedes             1


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]