Bug 250098

Summary: Wrong month short names for fr_FR
Product: Red Hat Enterprise Linux 4 Reporter: Thomas Schwanhäuser <thomas.schwanhaeuser>
Component: glibcAssignee: Jakub Jelinek <jakub>
Status: CLOSED WORKSFORME QA Contact: Brian Brock <bbrock>
Severity: low Docs Contact:
Priority: low    
Version: 4.0   
Target Milestone: ---   
Target Release: ---   
Hardware: All   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2007-08-03 09:36:26 UTC Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:

Description Thomas Schwanhäuser 2007-07-30 14:30:20 UTC
Description of problem:

One can not distinguish June and July, because their shortnames are abbreviated 
too much.


Version-Release number of selected component (if applicable):


How reproducible:

echo short month name of day 18-July-2006 and 18-June-2006

  
Actual results:

18-June-2006 gets 18-Jui-2006
18-July-2006 gets 18-Jui-2006


Expected results:

Windows does it in the following way, seems reasonable:

18-juin-07

and 

18-juil.-07

Comment 1 Jakub Jelinek 2007-07-30 14:42:30 UTC
Which glibc version or RHEL version?
I have tried all of RHEL3, RHEL4 and RHEL5 glibc and all of them use
jun as abbrev. for June and jui for July.

Comment 2 Thomas Schwanhäuser 2007-07-30 14:59:17 UTC
Arch   : x86_64
Version: 2.5
Release: 18.fc6


Additional info: We're using %b in strftime.


Best regards,


Thomas




Comment 3 Jakub Jelinek 2007-07-30 15:11:58 UTC
Then it surely has nothing to do with RHEL, so why are you filling it against
RHEL?
That said, in FC6 I get:
LC_ALL=fr_FR.UTF-8 locale LC_TIME -k | grep abmon
abmon="jan;fev;mar;avr;mai;jun;jui;aou;sep;oct;nov;dec"
(and similarly for fr_FR), so unless you use your custom locale for fr_FR, you
really can't see the same abmon names for June and July.  Also note that glibc
abmon names are lowercase.

LC_ALL=fr_FR.UTF-8 date -d 2007-06-01
ven jun  1 00:00:00 CEST 2007
LC_ALL=fr_FR.UTF-8 date -d 2007-07-01
dim jui  1 00:00:00 CEST 2007
LC_ALL=fr_FR date -d 2007-06-01 | iconv -f ISO-8859-15// -t UTF-8//
ven jun  1 00:00:00 CEST 2007
LC_ALL=fr_FR date -d 2007-07-01 | iconv -f ISO-8859-15// -t UTF-8//
dim jui  1 00:00:00 CEST 2007


Comment 4 Jakub Jelinek 2007-08-03 09:36:26 UTC
Can't reproduce anywhere, closing.