public inbox for libc-locales@sourceware.org
 help / color / mirror / Atom feed
* [Bug localedata/22657] New: hu_HU: Avoid double space in date
@ 2018-01-01 20:40 egmont at gmail dot com
  2018-01-12  0:59 ` [Bug localedata/22657] " cvs-commit at gcc dot gnu.org
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: egmont at gmail dot com @ 2018-01-01 20:40 UTC (permalink / raw)
  To: libc-locales

https://sourceware.org/bugzilla/show_bug.cgi?id=22657

            Bug ID: 22657
           Summary: hu_HU: Avoid double space in date
           Product: glibc
           Version: unspecified
            Status: UNCONFIRMED
          Severity: minor
          Priority: P2
         Component: localedata
          Assignee: unassigned at sourceware dot org
          Reporter: egmont at gmail dot com
                CC: libc-locales at sourceware dot org
  Target Milestone: ---

Created attachment 10708
  --> https://sourceware.org/bugzilla/attachment.cgi?id=10708&action=edit
Avoid double space

The current date format prefixes one-digit days with a space, resulting in ugly
two spaces:

$ LC_ALL=hu_HU.UTF-8 date
2018. jan.  1., hétfő, 21:25:35 CET
          ^^

The official orthography rules doesn't contain an explicit rule about this
(which already gives no sane reason for double space), and an implicit example
of "1848. március 9." under bullet point 296 at
http://helyesiras.mta.hu/helyesiras/default/akh12 contains a single space only.
It's sure not convincing on an HTML page, but I confirm that the official book
edition (e.g.
https://www.libri.hu/en/konyv/a-magyar-helyesiras-szabalyai-32.html) also
contains a single space there.

Please apply the attached trivial fix, thanks!

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug localedata/22657] hu_HU: Avoid double space in date
  2018-01-01 20:40 [Bug localedata/22657] New: hu_HU: Avoid double space in date egmont at gmail dot com
@ 2018-01-12  0:59 ` cvs-commit at gcc dot gnu.org
  2018-01-12  1:05 ` digitalfreak at lingonborough dot com
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2018-01-12  0:59 UTC (permalink / raw)
  To: libc-locales

https://sourceware.org/bugzilla/show_bug.cgi?id=22657

--- Comment #1 from cvs-commit at gcc dot gnu.org <cvs-commit at gcc dot gnu.org> ---
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  f172187b2d5bd9d22a5311b3ecd89d4ce5dbd2da (commit)
      from  c8924f1ff22cb78abc9bb950c3b23d8483ac7bba (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 -----------------------------------------------------------------
https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=f172187b2d5bd9d22a5311b3ecd89d4ce5dbd2da

commit f172187b2d5bd9d22a5311b3ecd89d4ce5dbd2da
Author: Egmont Koblinger <egmont@gmail.com>
Date:   Mon Jan 1 20:40:11 2018 +0000

    hu_HU locale: Avoid double space (bug 22657).

    The current date format prefixes one-digit days with a space, resulting
    in ugly two spaces:

    $ LC_ALL=hu_HU.UTF-8 date
    2018. jan.  1., hétfő, 21:25:35 CET
              ^^

    The official orthography rules doesn't contain an explicit rule about
    this (which already gives no sane reason for double space), and an
    implicit example of "1848. március 9." under bullet point 296 at
    http://helyesiras.mta.hu/helyesiras/default/akh12 contains a single
    space only. It's sure not convincing on an HTML page, but I confirm
    that the official book edition (e.g.
    https://www.libri.hu/en/konyv/a-magyar-helyesiras-szabalyai-32.html)
    also contains a single space there.

        [BZ #22657]
        * localedata/locales/hu_HU (d_t_fmt): Avoid a leading space
        before the day number which may produce a double space.
        (date_fmt): Likewise.

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

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

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug localedata/22657] hu_HU: Avoid double space in date
  2018-01-01 20:40 [Bug localedata/22657] New: hu_HU: Avoid double space in date egmont at gmail dot com
  2018-01-12  0:59 ` [Bug localedata/22657] " cvs-commit at gcc dot gnu.org
@ 2018-01-12  1:05 ` digitalfreak at lingonborough dot com
  2018-01-12 18:26 ` jsm28 at gcc dot gnu.org
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: digitalfreak at lingonborough dot com @ 2018-01-12  1:05 UTC (permalink / raw)
  To: libc-locales

https://sourceware.org/bugzilla/show_bug.cgi?id=22657

Rafal Luzynski <digitalfreak at lingonborough dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
                 CC|                            |digitalfreak@lingonborough.
                   |                            |com
         Resolution|---                         |FIXED

--- Comment #2 from Rafal Luzynski <digitalfreak at lingonborough dot com> ---
Thank you, Egmont.  It has been committed.

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug localedata/22657] hu_HU: Avoid double space in date
  2018-01-01 20:40 [Bug localedata/22657] New: hu_HU: Avoid double space in date egmont at gmail dot com
  2018-01-12  0:59 ` [Bug localedata/22657] " cvs-commit at gcc dot gnu.org
  2018-01-12  1:05 ` digitalfreak at lingonborough dot com
@ 2018-01-12 18:26 ` jsm28 at gcc dot gnu.org
  2018-01-18  0:47 ` cvs-commit at gcc dot gnu.org
  2018-03-31 12:43 ` jeremip11 at gmail dot com
  4 siblings, 0 replies; 6+ messages in thread
From: jsm28 at gcc dot gnu.org @ 2018-01-12 18:26 UTC (permalink / raw)
  To: libc-locales

https://sourceware.org/bugzilla/show_bug.cgi?id=22657

Joseph Myers <jsm28 at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |2.27

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug localedata/22657] hu_HU: Avoid double space in date
  2018-01-01 20:40 [Bug localedata/22657] New: hu_HU: Avoid double space in date egmont at gmail dot com
                   ` (2 preceding siblings ...)
  2018-01-12 18:26 ` jsm28 at gcc dot gnu.org
@ 2018-01-18  0:47 ` cvs-commit at gcc dot gnu.org
  2018-03-31 12:43 ` jeremip11 at gmail dot com
  4 siblings, 0 replies; 6+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2018-01-18  0:47 UTC (permalink / raw)
  To: libc-locales

https://sourceware.org/bugzilla/show_bug.cgi?id=22657

--- Comment #3 from cvs-commit at gcc dot gnu.org <cvs-commit at gcc dot gnu.org> ---
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  80647883cf5847c8b6b0197e9703eb04222496b6 (commit)
       via  e234d7cb9adf50ec98dc58405f4c5a90546ba018 (commit)
      from  48b66019ae06db6c9b9e4ed2da31d919cd663ea9 (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 -----------------------------------------------------------------
https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=80647883cf5847c8b6b0197e9703eb04222496b6

commit 80647883cf5847c8b6b0197e9703eb04222496b6
Author: Rafal Luzynski <digitalfreak@lingonborough.com>
Date:   Thu Jan 18 01:40:15 2018 +0100

    ChangeLog: Fix an entry for [BZ #22657]

    Remove myself, give the full credit to Egmont Koblinger.

    When committing someone else's changes, one should put the contributor's
    name in the change log entry.

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=e234d7cb9adf50ec98dc58405f4c5a90546ba018

commit e234d7cb9adf50ec98dc58405f4c5a90546ba018
Author: Rafal Luzynski <digitalfreak@lingonborough.com>
Date:   Thu Jan 18 01:27:10 2018 +0100

    locales bho_NP, mai_IN, mai_NP: Fix an obvious typo in date.

        * localedata/locales/bho_NP (LC_IDENTIFICATION): Fix an obvious typo
        in date: "2017-24-07" should be "2017-07-24".
        * localedata/locales/mai_IN: Likewise.
        * localedata/locales/mai_NP: Likewise.

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

Summary of changes:
 ChangeLog                 |   10 ++++++++--
 localedata/locales/bho_NP |    2 +-
 localedata/locales/mai_IN |    2 +-
 localedata/locales/mai_NP |    2 +-
 4 files changed, 11 insertions(+), 5 deletions(-)

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug localedata/22657] hu_HU: Avoid double space in date
  2018-01-01 20:40 [Bug localedata/22657] New: hu_HU: Avoid double space in date egmont at gmail dot com
                   ` (3 preceding siblings ...)
  2018-01-18  0:47 ` cvs-commit at gcc dot gnu.org
@ 2018-03-31 12:43 ` jeremip11 at gmail dot com
  4 siblings, 0 replies; 6+ messages in thread
From: jeremip11 at gmail dot com @ 2018-03-31 12:43 UTC (permalink / raw)
  To: libc-locales

https://sourceware.org/bugzilla/show_bug.cgi?id=22657

Jeremi <jeremip11 at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jeremip11 at gmail dot com

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2018-03-31 12:43 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-01-01 20:40 [Bug localedata/22657] New: hu_HU: Avoid double space in date egmont at gmail dot com
2018-01-12  0:59 ` [Bug localedata/22657] " cvs-commit at gcc dot gnu.org
2018-01-12  1:05 ` digitalfreak at lingonborough dot com
2018-01-12 18:26 ` jsm28 at gcc dot gnu.org
2018-01-18  0:47 ` cvs-commit at gcc dot gnu.org
2018-03-31 12:43 ` jeremip11 at gmail dot com

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).