public inbox for glibc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug locale/19133] New: Lowercase months in Portuguese language
@ 2015-10-14 16:57 ivofernandes12 at gmail dot com
  2015-10-14 17:21 ` [Bug locale/19133] " carlos at redhat dot com
                   ` (8 more replies)
  0 siblings, 9 replies; 10+ messages in thread
From: ivofernandes12 at gmail dot com @ 2015-10-14 16:57 UTC (permalink / raw)
  To: glibc-bugs

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

            Bug ID: 19133
           Summary: Lowercase months in Portuguese language
           Product: glibc
           Version: unspecified
            Status: NEW
          Severity: normal
          Priority: P2
         Component: locale
          Assignee: unassigned at sourceware dot org
          Reporter: ivofernandes12 at gmail dot com
  Target Milestone: ---

Created attachment 8714
  --> https://sourceware.org/bugzilla/attachment.cgi?id=8714&action=edit
screenshot

Hi,

According to Portuguese writing practice, month names are not capitalized
(since 2012). So, if month name doesn't stay in the beginning of the sentence,
its first letter
should not be capital.

I've come here because we are facing this issue on the Ubuntu Touch Devices.
See the attachment.

The bug was opened at launchpad.net
(https://bugs.launchpad.net/ubuntu/+source/langpack-locales/+bug/1490298), and
I was told to come here and report it.

I don't know if this is the right place.. If not I'm sorry :)

Thanks!

Ivo Xavier - Ubuntu Portuguese Translators

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


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

* [Bug locale/19133] Lowercase months in Portuguese language
  2015-10-14 16:57 [Bug locale/19133] New: Lowercase months in Portuguese language ivofernandes12 at gmail dot com
@ 2015-10-14 17:21 ` carlos at redhat dot com
  2015-10-14 17:33 ` ivofernandes12 at gmail dot com
                   ` (7 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: carlos at redhat dot com @ 2015-10-14 17:21 UTC (permalink / raw)
  To: glibc-bugs

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

Carlos O'Donell <carlos at redhat dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |WAITING
                 CC|                            |carlos at redhat dot com

--- Comment #1 from Carlos O'Donell <carlos at redhat dot com> ---
(In reply to ivofernandes12 from comment #0)
> I don't know if this is the right place.. If not I'm sorry :)

I can't reproduce this.

#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <locale.h>

int
main (void)
{
  time_t rawtime;
  const struct tm *ltime;
  char buf[1024];

  time (&rawtime);
  ltime = localtime (&rawtime);  
  setlocale (LC_ALL, "pt_BR.UTF-8");
  strftime (buf, 1024, "%A, %e de %B de %Y", ltime);
  printf ("%s\n", buf);
  exit (0);
}
gcc -std=gnu99 -Wall -pedantic -o date date.c
quarta, 14 de outubro de 2015

Use of %B produces correctly lower-cased month name for pt_BR locale.

Please specify which locale and which version of glibc you are using.

Please provide a test program.

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


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

* [Bug locale/19133] Lowercase months in Portuguese language
  2015-10-14 16:57 [Bug locale/19133] New: Lowercase months in Portuguese language ivofernandes12 at gmail dot com
  2015-10-14 17:21 ` [Bug locale/19133] " carlos at redhat dot com
@ 2015-10-14 17:33 ` ivofernandes12 at gmail dot com
  2015-10-14 17:43 ` carlos at redhat dot com
                   ` (6 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: ivofernandes12 at gmail dot com @ 2015-10-14 17:33 UTC (permalink / raw)
  To: glibc-bugs

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

ivofernandes12 at gmail dot com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Version|unspecified                 |2.21

--- Comment #2 from ivofernandes12 at gmail dot com ---
Sorry, I forgotten to mention. Portuguese from Portugal.

The version is 2.21

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


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

* [Bug locale/19133] Lowercase months in Portuguese language
  2015-10-14 16:57 [Bug locale/19133] New: Lowercase months in Portuguese language ivofernandes12 at gmail dot com
  2015-10-14 17:21 ` [Bug locale/19133] " carlos at redhat dot com
  2015-10-14 17:33 ` ivofernandes12 at gmail dot com
@ 2015-10-14 17:43 ` carlos at redhat dot com
  2015-10-14 18:09 ` ivofernandes12 at gmail dot com
                   ` (5 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: carlos at redhat dot com @ 2015-10-14 17:43 UTC (permalink / raw)
  To: glibc-bugs

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

Carlos O'Donell <carlos at redhat dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |adconrad at 0c3 dot net

--- Comment #3 from Carlos O'Donell <carlos at redhat dot com> ---
(In reply to ivofernandes12 from comment #2)
> Sorry, I forgotten to mention. Portuguese from Portugal.
> 
> The version is 2.21

I can reproduce it.

All the months are uppercase in localedata/locales/pt_PT (line 107--118). This
would need to be adjusted to match pt_BR (lowercase month names).

Could you please provide official government documents or some kind of
justification that in Portugal it is expected that months be lower case in a
sentence like this?

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


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

* [Bug locale/19133] Lowercase months in Portuguese language
  2015-10-14 16:57 [Bug locale/19133] New: Lowercase months in Portuguese language ivofernandes12 at gmail dot com
                   ` (2 preceding siblings ...)
  2015-10-14 17:43 ` carlos at redhat dot com
@ 2015-10-14 18:09 ` ivofernandes12 at gmail dot com
  2015-10-14 18:11 ` ivofernandes12 at gmail dot com
                   ` (4 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: ivofernandes12 at gmail dot com @ 2015-10-14 18:09 UTC (permalink / raw)
  To: glibc-bugs

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

--- Comment #4 from ivofernandes12 at gmail dot com ---
Created attachment 8715
  --> https://sourceware.org/bugzilla/attachment.cgi?id=8715&action=edit
Screenshot Windows 8.1

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


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

* [Bug locale/19133] Lowercase months in Portuguese language
  2015-10-14 16:57 [Bug locale/19133] New: Lowercase months in Portuguese language ivofernandes12 at gmail dot com
                   ` (3 preceding siblings ...)
  2015-10-14 18:09 ` ivofernandes12 at gmail dot com
@ 2015-10-14 18:11 ` ivofernandes12 at gmail dot com
  2015-10-14 18:13 ` ivofernandes12 at gmail dot com
                   ` (3 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: ivofernandes12 at gmail dot com @ 2015-10-14 18:11 UTC (permalink / raw)
  To: glibc-bugs

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

--- Comment #5 from ivofernandes12 at gmail dot com ---
Visit this URL:
http://www.portoeditora.pt/assets/acordoortografico/textointegralAO.pdf

In page 34 you can find the example. Or search by "meses".


If you need more docs tell me.

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


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

* [Bug locale/19133] Lowercase months in Portuguese language
  2015-10-14 16:57 [Bug locale/19133] New: Lowercase months in Portuguese language ivofernandes12 at gmail dot com
                   ` (4 preceding siblings ...)
  2015-10-14 18:11 ` ivofernandes12 at gmail dot com
@ 2015-10-14 18:13 ` ivofernandes12 at gmail dot com
  2015-10-14 19:19 ` carlos at redhat dot com
                   ` (2 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: ivofernandes12 at gmail dot com @ 2015-10-14 18:13 UTC (permalink / raw)
  To: glibc-bugs

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

--- Comment #6 from ivofernandes12 at gmail dot com ---
Created attachment 8716
  --> https://sourceware.org/bugzilla/attachment.cgi?id=8716&action=edit
Screenshot Windows 10

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


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

* [Bug locale/19133] Lowercase months in Portuguese language
  2015-10-14 16:57 [Bug locale/19133] New: Lowercase months in Portuguese language ivofernandes12 at gmail dot com
                   ` (5 preceding siblings ...)
  2015-10-14 18:13 ` ivofernandes12 at gmail dot com
@ 2015-10-14 19:19 ` carlos at redhat dot com
  2015-10-15 16:04 ` [Bug localedata/19133] " ivofernandes12 at gmail dot com
  2015-10-15 16:24 ` [Bug localedata/19133] pt_PT: months should be lowercase " vapier at gentoo dot org
  8 siblings, 0 replies; 10+ messages in thread
From: carlos at redhat dot com @ 2015-10-14 19:19 UTC (permalink / raw)
  To: glibc-bugs

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

Carlos O'Donell <carlos at redhat dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|WAITING                     |NEW

--- Comment #7 from Carlos O'Donell <carlos at redhat dot com> ---
(In reply to ivofernandes12 from comment #5)
> Visit this URL:
> http://www.portoeditora.pt/assets/acordoortografico/textointegralAO.pdf
> 
> In page 34 you can find the example. Or search by "meses".
> 
> 
> If you need more docs tell me.

This is perfect. Thanks.

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


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

* [Bug localedata/19133] Lowercase months in Portuguese language
  2015-10-14 16:57 [Bug locale/19133] New: Lowercase months in Portuguese language ivofernandes12 at gmail dot com
                   ` (6 preceding siblings ...)
  2015-10-14 19:19 ` carlos at redhat dot com
@ 2015-10-15 16:04 ` ivofernandes12 at gmail dot com
  2015-10-15 16:24 ` [Bug localedata/19133] pt_PT: months should be lowercase " vapier at gentoo dot org
  8 siblings, 0 replies; 10+ messages in thread
From: ivofernandes12 at gmail dot com @ 2015-10-15 16:04 UTC (permalink / raw)
  To: glibc-bugs

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

ivofernandes12 at gmail dot com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |libc-locales at sourceware dot org
          Component|locale                      |localedata

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


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

* [Bug localedata/19133] pt_PT: months should be lowercase in Portuguese language
  2015-10-14 16:57 [Bug locale/19133] New: Lowercase months in Portuguese language ivofernandes12 at gmail dot com
                   ` (7 preceding siblings ...)
  2015-10-15 16:04 ` [Bug localedata/19133] " ivofernandes12 at gmail dot com
@ 2015-10-15 16:24 ` vapier at gentoo dot org
  8 siblings, 0 replies; 10+ messages in thread
From: vapier at gentoo dot org @ 2015-10-15 16:24 UTC (permalink / raw)
  To: glibc-bugs

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

Mike Frysinger <vapier at gentoo dot org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |vapier at gentoo dot org
            Summary|Lowercase months in         |pt_PT: months should be
                   |Portuguese language         |lowercase in Portuguese
                   |                            |language

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


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

end of thread, other threads:[~2015-10-15 16:24 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-10-14 16:57 [Bug locale/19133] New: Lowercase months in Portuguese language ivofernandes12 at gmail dot com
2015-10-14 17:21 ` [Bug locale/19133] " carlos at redhat dot com
2015-10-14 17:33 ` ivofernandes12 at gmail dot com
2015-10-14 17:43 ` carlos at redhat dot com
2015-10-14 18:09 ` ivofernandes12 at gmail dot com
2015-10-14 18:11 ` ivofernandes12 at gmail dot com
2015-10-14 18:13 ` ivofernandes12 at gmail dot com
2015-10-14 19:19 ` carlos at redhat dot com
2015-10-15 16:04 ` [Bug localedata/19133] " ivofernandes12 at gmail dot com
2015-10-15 16:24 ` [Bug localedata/19133] pt_PT: months should be lowercase " vapier at gentoo dot org

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).