This is the mail archive of the libc-alpha@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]

[PATCH] Fix uk_UA currency symbol




glibc's currency symbol for the hryvnya is incorrect. I originally posted this fix to the locales list in Feb 2012 and received no feedback.


http://std.dkuug.dk/JTC1/SC2/WG2/docs/n2743.pdf http://en.wikipedia.org/wiki/Ukrainian_hryvnia The first ought to be sufficient to meet the documentation requirements.


Also see comment #9 here: https://bugzilla.redhat.com/show_bug.cgi?id=624296



diff --git a/localedata/ChangeLog b/localedata/ChangeLog
index a930a4e..cdcf5ec 100644
--- a/localedata/ChangeLog
+++ b/localedata/ChangeLog
@@ -1,3 +1,7 @@
+2012-12-03  Ashish Shah  <ashishks@redhat.com>
+
+	* locales/uk_UA (currency_symbol): Fix.
+
 2012-12-03  Rakesh Pandit  <rakesh@fedoraproject.org>
 
 	* locales/ks_IN@devanagari: Fix week day names.
diff --git a/localedata/locales/uk_UA b/localedata/locales/uk_UA
index b5f5381..3896d27 100644
--- a/localedata/locales/uk_UA
+++ b/localedata/locales/uk_UA
@@ -700,7 +700,7 @@ LC_MONETARY
 % 200 hrv. - 200 hryven (money)
 
 % the local currency symbol
-currency_symbol           "<U0433><U0440>" % hr (hryvnya)
+currency_symbol           "<U0433><U0440><U043D><U002E>" % hr (hryvnya)
 
 % This must be a 4-character string containing the international currency
 % symbol as defined by the ISO 4217 standard (three characters) followed

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