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


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: Add URL to reference and correct thousand grouping for fi_FI


Here is a patch to make sure the thousands_sep and mon_thousands_sep
in fi_FI matches the primary suggestion in
<URL:http://std.dkuug.dk/cultreg/registrations/narrative/fi_FI,_1.0>.
It reads:

  Clause 3: Numeric formatting

  COMMA <,> for decimal separator, NO--BREAK SPACE < > for thousands
  separator (although FULLSTOP <.> may be used for monetary values)

2003-05-31  Petter Reinholdtsen  <pere@hungry.com>

	* locales/fi_FI: Add URL to a reference documenting Finish in
	Finland
	* locales/fi_FI [LC_MONETARY]: Correct mon_thousands_sep from
	period (U002E) to non-break space (U00A0).  Based on
	suggestion from Eero Häkkinen.
	* locales/fi_FI [LC_NUMERIC]: Correct thousands_sep from
	period (U002E) to non-break space (U00A0).  Based on
	suggestion from Eero Häkkinen.

Index: localedata/locales/fi_FI
===================================================================
RCS file: /cvs/glibc/libc/localedata/locales/fi_FI,v
retrieving revision 1.11
diff -u -3 -p -u -r1.11 fi_FI
--- localedata/locales/fi_FI    28 Feb 2002 09:07:38 -0000      1.11
+++ localedata/locales/fi_FI    31 May 2003 07:14:38 -0000
@@ -19,6 +19,10 @@ comment_char    %
 % Charset: ISO-8859-1
 % Distribution and use is free, also
 % for commercial purposes.
+%
+% Useful sources:
+%   Locale info for Finnish in Finland
+%     http://std.dkuug.dk/cultreg/registrations/narrative/fi_FI,_1.0

 LC_IDENTIFICATION
 title      "Finnish locale for Finland"
@@ -2121,7 +2125,7 @@ LC_MONETARY
 int_curr_symbol      "<U0045><U0055><U0052><U0020>"
 currency_symbol      "<U20AC>"
 mon_decimal_point    "<U002C>"
-mon_thousands_sep    "<U002E>"
+mon_thousands_sep    "<U00A0>"
 mon_grouping         3;3
 positive_sign        ""
 negative_sign        "<U002D>"
@@ -2139,7 +2143,7 @@ END LC_MONETARY

 LC_NUMERIC
 decimal_point        "<U002C>"
-thousands_sep        "<U002E>"
+thousands_sep        "<U00A0>"
 grouping             3;3
 END LC_NUMERIC


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