This is the mail archive of the
libc-alpha@sourceware.org
mailing list for the glibc project.
Re: [PATCH 1/1] LC_MESSAGES Fix for om_ET Locale
- 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: Thu, 13 Jul 2017 08:39:34 +0200
- Subject: Re: [PATCH 1/1] LC_MESSAGES Fix for om_ET Locale
- Authentication-results: sourceware.org; auth=none
- Authentication-results: ext-mx05.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com
- Authentication-results: ext-mx05.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 37E59334590
- Dmarc-filter: OpenDMARC Filter v1.3.2 mx1.redhat.com 37E59334590
- References: <CGME20170713040423epcas5p2b513860f08189fb27e7f25ebdb20ce43@epcas5p2.samsung.com> <1499918462-21239-1-git-send-email-akhilesh.k@samsung.com>
Akhilesh Kumar <akhilesh.k@samsung.com> wrote:
> [BZ #21766 ]
> Fix LC_MESSAGES for om_ET Locale
>
> Signed-off-by: Akhilesh Kumar <akhilesh.k@samsung.com>
> ---
> localedata/locales/om_ET | 5 ++++-
> 1 files changed, 4 insertions(+), 1 deletions(-)
>
> diff --git a/localedata/locales/om_ET b/localedata/locales/om_ET
> index 79efde6..b78ecd4 100644
> --- a/localedata/locales/om_ET
> +++ b/localedata/locales/om_ET
> @@ -109,7 +109,10 @@ END LC_TELEPHONE
> %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
>
> LC_MESSAGES
> -copy "ti_ET"
> +yesexpr "<U005E><U005B><U002B><U0031><U0065><U0045><U0079><U0059><U005D>"
> +noexpr "<U005E><U005B><U002D><U0030><U006E><U004E><U005D>"
> +yesstr "<U0045><U0065>"
> +nostr "<U004C><U0061><U006B><U006B><U0069>"
> END LC_MESSAGES
decoded this is:
diff --git a/localedata/locales/om_ET b/localedata/locales/om_ET
index 79efde6..b78ecd4 100644
--- a/localedata/locales/om_ET
+++ b/localedata/locales/om_ET
@@ -109,7 +109,10 @@ END LC_TELEPHONE
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
LC_MESSAGES
-copy "ti_ET"
+yesexpr "^[+1eEyY]"
+noexpr "^[-0nN]"
+yesstr "Ee"
+nostr "Lakki"
END LC_MESSAGES
I did that myself already yesterday and used:
diff --git a/localedata/locales/om_ET b/localedata/locales/om_ET
index 79efde67fd..0e79cb2800 100644
--- a/localedata/locales/om_ET
+++ b/localedata/locales/om_ET
@@ -109,7 +109,12 @@ END LC_TELEPHONE
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
LC_MESSAGES
-copy "ti_ET"
+yesexpr "^[+1eEyY]"
+noexpr "^[-0mMnN]"
+% eeyyee
+yesstr "eeyyee"
+% miti
+nostr "miti"
END LC_MESSAGES
Hard to say which is better without input from a native speaker.
But my patch updates noexpr as well, I’m going to use that one for the
moment.
--
Mike FABIAN <mfabian@redhat.com>