This is the mail archive of the
libc-alpha@sourceware.org
mailing list for the glibc project.
Re: [PATCH 1/1] Fixed abday for ar_SA
- From: Mike FABIAN <mfabian at redhat dot com>
- To: Akhilesh Kumar <akhilesh dot k at samsung dot com>
- Cc: libc-alpha at sourceware dot org, pankaj dot m at samsung dot com
- Date: Tue, 11 Jul 2017 10:10:20 +0200
- Subject: Re: [PATCH 1/1] Fixed abday for ar_SA
- Authentication-results: sourceware.org; auth=none
- Authentication-results: ext-mx08.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com
- Authentication-results: ext-mx08.extmail.prod.ext.phx2.redhat.com; spf=pass smtp.mailfrom=mfabian at redhat dot com
- Dkim-filter: OpenDKIM Filter v2.11.0 mx1.redhat.com 5CBC5C0587D1
- Dmarc-filter: OpenDMARC Filter v1.3.2 mx1.redhat.com 5CBC5C0587D1
- References: <CGME20170711042027epcas5p2868a2ade6b46613f5d06c0d15ddd50f1@epcas5p2.samsung.com> <1499746618-7623-1-git-send-email-akhilesh.k@samsung.com>
Akhilesh Kumar <akhilesh.k@samsung.com> wrote:
> [BZ #21748]
> Fixed abday for ar_SA
>
> Signed-off-by: Akhilesh Kumar <akhilesh.k@samsung.com>
> ---
> localedata/locales/ar_SA | 14 +++++++-------
> 1 file changed, 7 insertions(+), 7 deletions(-)
>
> diff --git a/localedata/locales/ar_SA b/localedata/locales/ar_SA
> index 1987085..a39eb5f 100644
> --- a/localedata/locales/ar_SA
> +++ b/localedata/locales/ar_SA
> @@ -316,13 +316,13 @@ day "<U0627><U0644><U0623><U062D><U062F>"; /
> "<U0627><U0644><U062E><U0645><U064A><U0633>"; /
> "<U0627><U0644><U062C><U0645><U0639><U0640><U0629>"; /
> "<U0627><U0644><U0633><U0628><U062A>"
> -abday "<U0053><U0075><U006E>"; /
> - "<U004D><U006F><U006E>"; /
> - "<U0054><U0075><U0065>"; /
> - "<U0057><U0065><U0064>"; /
> - "<U0054><U0068><U0075>"; /
> - "<U0046><U0072><U0069>"; /
> - "<U0053><U0061><U0074>"
> +abday "<U062F>"; /
> + "<U0646>"; /
> + "<U062B>"; /
> + "<U0639>"; /
> + "<U062E>"; /
> + "<U062C>"; /
> + "<U0633>"
> mon "<U064A><U0646><U0627><U064A><U0631>";/
> "<U0641><U0628><U0631><U0627><U064A><U0631>";/
> "<U0645><U0627><U0631><U0633>";/
diff --git a/localedata/locales/ar_SA b/localedata/locales/ar_SA
index 1987085..a39eb5f 100644
--- a/localedata/locales/ar_SA
+++ b/localedata/locales/ar_SA
@@ -316,13 +316,13 @@ day "الأحد"; /
"الخميس"; /
"الجمعـة"; /
"السبت"
-abday "Sun"; /
- "Mon"; /
- "Tue"; /
- "Wed"; /
- "Thu"; /
- "Fri"; /
- "Sat"
+abday "د"; /
+ "ن"; /
+ "ث"; /
+ "ع"; /
+ "خ"; /
+ "ج"; /
+ "س"
mon "يناير";/
"فبراير";/
"مارس";/
That might be OK.
Using 3 letter abbreviations for Arabic doesn’t seem to make any sense,
CLDR uses the full versions in "abbreviated", but CLDR uses one letter
abbreviations in “narrow”.
But the above does not agree with CLDR, see:
http://unicode.org/cldr/trac/browser/trunk/common/main/ar.xml#L1542
which has:
<dayWidth type="narrow">
<day type="sun">ح</day>
<day type="mon">ن</day>
<day type="tue">ث</day>
<day type="wed">ر</day>
<day type="thu">خ</day>
<day type="fri">ج</day>
<day type="sat">س</day>
</dayWidth>
Your abbreviations for Sunday and Wednesday are different from
what CLDR has.
--
Mike FABIAN <mfabian@redhat.com>