This is the mail archive of the glibc-cvs@sourceware.org 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]

GNU C Library master sources branch master updated. glibc-2.26.9000-595-g508b1e7


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, master has been updated
       via  508b1e71a37355839ab91f9c09ce7e577cf69a58 (commit)
      from  2c2245b92ccf6344b324d17d8f94ccd3b8c559c6 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=508b1e71a37355839ab91f9c09ce7e577cf69a58

commit 508b1e71a37355839ab91f9c09ce7e577cf69a58
Author: Mike FABIAN <mfabian@redhat.com>
Date:   Wed Oct 18 14:27:44 2017 +0200

    Use U+202F NARROW NO-BREAK SPACE as thousands separators in pl_PL locale [BZ #16777]
    
    	[BZ #16777]
    	* localedata/locales/pl_PL (LC_MONETARY): Use U+202F as mon_thousands_sep
    	and improve readability by using more ASCII.
    	* localedata/locales/pl_PL (LC_NUMERIC): Use U+202F as thousands_sep
    	and improve readability by using more ASCII.

diff --git a/ChangeLog b/ChangeLog
index 448be47..2ed8318 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2017-10-18  Mike FABIAN  <mfabian@redhat.com>
+
+	[BZ #16777]
+	* localedata/locales/pl_PL (LC_MONETARY): Use U+202F as mon_thousands_sep
+	and improve readability by using more ASCII.
+	* localedata/locales/pl_PL (LC_NUMERIC): Use U+202F as thousands_sep
+	and improve readability by using more ASCII.
+
 2017-10-18  Wilco Dijkstra  <wdijkstr@arm.com>
 
 	* malloc/malloc.c (malloc_state): Use int for have_fastchunks since
diff --git a/localedata/locales/pl_PL b/localedata/locales/pl_PL
index d63588a..e268113 100644
--- a/localedata/locales/pl_PL
+++ b/localedata/locales/pl_PL
@@ -2131,13 +2131,13 @@ nostr   "<U006E><U0069><U0065>"
 END LC_MESSAGES
 
 LC_MONETARY
-int_curr_symbol           "<U0050><U004C><U004E><U0020>"
+int_curr_symbol           "PLN "
 currency_symbol           "<U007A><U0142>"
-mon_decimal_point         "<U002C>"
-mon_thousands_sep         "<U002E>"
-mon_grouping              3;3
+mon_decimal_point         ","
+mon_thousands_sep         "<U202F>"
+mon_grouping              3
 positive_sign             ""
-negative_sign             "<U002D>"
+negative_sign             "-"
 int_frac_digits           2
 frac_digits               2
 p_cs_precedes             0
@@ -2149,9 +2149,9 @@ n_sign_posn               1
 END LC_MONETARY
 
 LC_NUMERIC
-decimal_point             "<U002C>"
-thousands_sep             ""
-grouping                  0;0
+decimal_point             ","
+thousands_sep             "<U202F>"
+grouping                  3
 END LC_NUMERIC
 
 LC_TIME

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog                |    8 ++++++++
 localedata/locales/pl_PL |   16 ++++++++--------
 2 files changed, 16 insertions(+), 8 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


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