This is the mail archive of the
libc-alpha@sourceware.org
mailing list for the glibc project.
Fwd: [PATCH][BZ#15221] Correction of typo in the postal_fmt field of the ia_FR locale
- From: Nik Kalach <nik dot kalach at inbox dot ru>
- To: libc-alpha at sourceware dot org <libc-alpha at sourceware dot org>
- Date: Mon, 18 Mar 2013 16:12:55 +0400
- Subject: Fwd: [PATCH][BZ#15221] Correction of typo in the postal_fmt field of the ia_FR locale
- Reply-to: Nik Kalach <nik dot kalach at inbox dot ru>
I sent the patch below about 2 weeks ago. I would like to ask someone with the commit privilegies to apply it and close the bug.
Thanks,
Nik Kalach
-------- Forwarded message --------
From: Nik Kalach <nik.kalach@inbox.ru>
To: libc-alpha@sourceware.org <libc-alpha@sourceware.org>
Date: Monday, March 4, 2013 4:56 AM +04:00
Subject: [PATCH][BZ#15221] Correction of typo in the postal_fmt field of the ia_FR locale
The patch below fixes a typo in the postal_fmt field of the ia_FR locale which has a missing escape symbol '%' before 't'.
The current postal_fmt with the error:
$ LANG=ia_FR.utf8 locale -k postal_fmt
postal_fmt="%f%N%a%N%d%N%b%N%st%ht%et%r%N%zt%T%N%c%N"
The patch corrects this field:
$ LANG=ia_FR.utf8 locale -k postal_fmt
postal_fmt="%f%N%a%N%d%N%b%N%s%t%h%t%e%t%r%N%z%t%T%N%c%N"
Please, apply.
-- Nik Kalach
2013-03-04 Nik Kalach <nikka@fedoraproject.org>
[BZ#15221]
* locales/ia_FR : Correct postal_fmt
diff --git a/localedata/locales/ia_FR b/localedata/locales/ia_FR
index e31fc22..5b419d2 100644
--- a/localedata/locales/ia_FR
+++ b/localedata/locales/ia_FR
@@ -5,7 +5,7 @@ escape_char /
% Language: ia
% Territory: FR
% Revision: 1.0
-% Date: 2012-11-26
+% Date: 2013-03-01
% Application: general
% Users: general
% Charset: UTF-8
@@ -21,7 +21,7 @@ fax ""
language "Interlingua"
territory "France"
revision "1.0"
-date "2012-11-26"
+date "2013-03-01"
category ia_FR:2000;LC_IDENTIFICATION
category ia_FR:2000;LC_CTYPE
@@ -120,9 +120,9 @@ END LC_NAME
LC_ADDRESS
postal_fmt "<U0025><U0066><U0025><U004E><U0025><U0061><U0025><U004E>/
<U0025><U0064><U0025><U004E><U0025><U0062><U0025><U004E><U0025><U0073>/
-<U0074><U0025><U0068><U0074><U0025><U0065><U0074><U0025><U0072><U0025>/
-<U004E><U0025><U007A><U0074><U0025><U0054><U0025>/
-<U004E><U0025><U0063><U0025><U004E>"
+<U0025><U0074><U0025><U0068><U0025><U0074><U0025><U0065><U0025><U0074>/
+<U0025><U0072><U0025><U004E><U0025><U007A><U0025><U0074><U0025><U0054>/
+<U0025><U004E><U0025><U0063><U0025><U004E>"
country_post "<U0046>"
country_ab2 "<U0046><U0052>"
country_ab3 "<U0046><U0052><U0041>"
----------------