History log of /freebsd-10.3-release/share/timedef/
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
296373 04-Mar-2016 marius

- Copy stable/10@296371 to releng/10.3 in preparation for 10.3-RC1
builds.
- Update newvers.sh to reflect RC1.
- Update __FreeBSD_version to reflect 10.3.
- Update default pkg(8) configuration to use the quarterly branch.

Approved by: re (implicit)

291794 04-Dec-2015 bdrewery

MFC r290083:

Use more appropriate ${SHAREDIR} rather than /usr/share.


290150 29-Oct-2015 delphij

MFC r289038,r289041:

Add encoding for mime-types.

Fix short month names and replace %b with %_m in date_fmt for Chinese
locales.

When using a Chinese locale, such as zh_TW.UTF-8 or zh_CN.UTF-8,
nl_langinfo(ABMON_*) only returned numbers. For instance,
nl_langinfo(ABMON_1) returns 1, nl_langinfo(ABMON_2) returns 2, and
so on.

This causes problems in applications that put the short month name
and the day of the month together. For example, 'Apr 14' in English
becomes '414日' in Chinese on the top bar of GNOME Shell.

This problem may be resolved by appending '月' to all short month
names and replacing %b with %_m in date_fmt. ja_JP.UTF-8 already
does this, and this matches the en_US.ISO8859-1 behavior, which
returns 'Oct'. The GNU C Library also returns values with '月'
appended.

PR: 199441
Submitted by: Ting-Wei Lan <lantw44 gmail com>


256281 10-Oct-2013 gjb

Copy head (r256279) to stable/10 as part of the 10.0-RELEASE cycle.

Approved by: re (implicit)
Sponsored by: The FreeBSD Foundation


219091 27-Feb-2011 versus

Partial fix for PR 91106. Correct the short weekday names. Done according to this poll https://bugzilla.redhat.com/show_bug.cgi?id=242296. This will not close the bug fully yet, as the month names are still not correctly in Genitive. More research on this topic will be done, as I'm suspecting a bug in the libc locale functions picking the month name from the wrong group.

PR: conf/91106
Approved by: gavin (mentor)
MFC after: 1 month


210296 20-Jul-2010 roberto

Week days are all lowercase in French.
cf. http://www.academie-francaise.fr/langue/questions.html#jourdelasemaine (FR)

PR: misc/148792
Submitted by: Mathieu <freebsd@breatheless.net>
MFC after: 1 weeks


199271 14-Nov-2009 ume

Since %b contains unit, %b is not suitable for c_fmt, now. Use %_m
instead.


199179 11-Nov-2009 ume

Add unit to the short month names for Japanese locales.
Without unit, the output of the application like ls(1)
is complicated.

Reviewed by: nork
MFC after: 1 week


197248 16-Sep-2009 edwin

Remove trailing spaces.


196814 04-Sep-2009 ache

Add lv_LV

PR: 105100
Submitted by: Aldis Berjoza <killasmurf86@gmail.com>


196651 30-Aug-2009 ume

AM/PM date format for ja_JP.eucJP and ja_JP.SJIS were
localized by r193869. However, ja_JP.UTF-8 wasn't.
So, reflect it to ja_JP.UTF-8 as well.


194250 15-Jun-2009 jkim

Long long time ago, several utilities in base used to parse %c output and
we were not able to change c_fmt without breaking these utilities. Since
ache fixed all known issues 8 years ago, now we make ko_KR more usable.
Better late than never...


194242 15-Jun-2009 jkim

AM/PM should come first in korean.


194231 15-Jun-2009 edwin

Undo the change in r193688 as suggested in conf/72076.

People on IRC and the -doc mailinglist (June 2009) showed that this
new format wasn't used or known widely enough to justify the change.


194029 11-Jun-2009 jkim

ko_KR: AM/PM date format should be localized.

Inspired by: r193869


193958 10-Jun-2009 edwin

Invalid (long) date format in pl_PL.ISO8859-2.src

Date format is %a %e %b %X %Y %Z (e.g "sob 19 sty 15:46:50 2008 CET")
but should be "%a %e %b %Y %X %Z" (e.g. "sob 19 sty 2008 15:46:50 CET").

PR: conf/119804
Submitted by: Bodek <bodek@blurp.org>
MFC after: 1 week


193908 10-Jun-2009 edwin

add ca_AD, ca_FR and ca_IT locales

Catalan language is not only spoken in Spain (ca_ES), but also
in Andorra, France and Italy. In Andorra it is the official
language.

(see http://en.wikipedia.org/wiki/Catalan_language#Geographic_distribution)

Add a bunch of symlinks to between ca_ES and ca_AD, ca_FR and ca_IT.

PR: conf/92541
Submitted by: <rmh@io.debian.net>
MFC after: 1 week


193869 09-Jun-2009 edwin

ja_JP: AM/PM date format should be localized.

ja_JP.eucJP and ja_JP.SJIS fixes.

PR: conf/63527
Submitted by: Yukihiro Nakai <nakai@gnome.gr.jp>
MFC after: 1 week


193688 08-Jun-2009 edwin

[patch] [locale] German locales use old %d.%m.%y date format instead of newer ISO date

From the submitter:

DIN 5008 (German norm for text processing) defines the old date
format (%d.%m.%Y) to be obsolete and to be used only, if unambigous.
In international communications the new format (%Y-%m-%d) is now
required and FreeBSD should respect this.

References:
- DIN 5008
- EN 28 601
- ISO 8601

Thanks to Oliver Lietz for bringing this to my attention.

PR: conf/72076
Submitted by: Peter Wullinger <some-mail-drop@gmx.net>
MFC after: 1 week


193498 05-Jun-2009 edwin

[patch] Portuguese timedef

In Portuguese, the names of the days of the week are not capitalized.
Also there is always a dash before "feira" in the names of the days.
For example: "segunda-feira" and not "segunda feira" (which has a
completely different meaning).

x_fmt is not correct either. The date separator should not be a dot
but a slash. Example: 31/12/2005 if far more used in Portugal than
31.12.2005.

References:
- a Portuguese online dictionary http://priberam.pt/dlpo/dlpo.aspx
- http://answers.com/days_of_the_week (there are translations to
various languages, including Portuguese, at the bottom of the
page)
- http://en.wikipedia.org/wiki/Week-day_names (there are translations
to various languages, including Portuguese, at the bottom of the
page)
- a Portuguese style guide
http://www.publico.clix.pt/nos/livro_estilo/16d-palavras.html
("datas" section)

PR: conf/58595
Submitted by: Chris Stenton <jacs@gnome.co.uk>
MFC after: 1 week


190774 06-Apr-2009 des

Fix ISO8859-15 links for nb_NO / no_NO.

Submitted by: ru
MFC after: 1 week


180959 29-Jul-2008 des

In the previous commit, no_NO should have been replaced with nb_NO in the
LOCALES list. Since no_NO was still in LOCALES, make tried to build the
corresponding .out files, but couldn't since the .src files were gone. I
did not notice this because I still had the old .out files in my .OBJDIR.
Thanks to kib@ for the heads-up.


180941 28-Jul-2008 des

In some cases (such as LC_COLLATE), nb_NO and nn_NO are identical, and it
makes sense to have them both link to no_NO.

In other cases (such as LC_TIME), they differ, and the correct solution
is to have no_NO link to nb_NO, rather than the other way around.o

MFC after: 2 weeks


179048 16-May-2008 gabor

- The names of the months and the days are in lowercase according to the
Hungarian spelling, change them accordingly

Requested by: Janos Mohacsi <mohacsi@niif.hu>


174990 30-Dec-2007 ache

Comments fixing
1) Back out "month names" -> "months names" and fix few such cases which
are wrong initially
2) "weekdays names" -> "weekday names"

Noted by: des [1]


174977 29-Dec-2007 ache

Comments fixing
"month names" -> "months names"
typo
"Long months names (alternative)" or "in alternative form" ->
"(without case ending)"
"Long months names" -> "Long months names (as in a date)"
to not confuse developers on what purpose those sections are


174908 25-Dec-2007 ache

Just copy long months names to alternative.
Alternative does not means ASCIIsizing of months names.


174906 25-Dec-2007 ache

Just copy long months names to (alternative).
Alternative means another form and not ASCIIsizing of month names.


164131 09-Nov-2006 des

Add locales for nb_NO and nn_NO.

Reviewed by: philip


163086 07-Oct-2006 flz

De-capitalize days and months' names.

PR: conf/101154
Submitted by: Thomas Jensen <tj@pil.dk>
MFC after: 3 days


162940 02-Oct-2006 ache

Add mn_MN.UTF-8

Submitted by: Ganbold <ganbold@micom.mng.net>


157901 20-Apr-2006 ache

Fix x.fmt

PR: 88222
Submitted by: Anders Lindquist <andersl@saaf.se>


143126 04-Mar-2005 ru

New Ukrainian locale: uk_UA.CP1251.

Submitted by: Alexander Peresunko


136598 16-Oct-2004 ru

Install files with mode 444, as God intended.


136597 16-Oct-2004 ru

Utilize FILES and SYMLINKS.


135535 20-Sep-2004 pjd

- Month and weekday names should begin with lowercase latter.
- First part of long month names should use genitive.
- Use more proper shortcuts, leaving the first 3 letters is not always
correct.

Submitted by: Bodek <bodek@blurp.org>


134437 28-Aug-2004 tjr

Add Basque (Spain) locales: eu_ES.ISO8859-1, eu_ES.ISO8859-15, eu_ES.UTF-8.

(This differs somewhat from the version originally submitted - any mistakes
are my own.)

PR: 68524
Submitted by: J. Vicente Carrasco -Bixen-


134337 26-Aug-2004 tjr

Re-generate from sl_SI.ISO8859-2.src rev. 1.8 (lowercase month/weekday names).


134336 26-Aug-2004 tjr

Begin month and weekday names with a lowercase letter. This is consistent
with (at least) Solaris, ICU and glibc.

PR: 65317
Submitted by: Uros
MFC after: 1 week


128526 21-Apr-2004 tjr

Add an Israel Hebrew locale: he_IL.UTF-8.

PR: 65826
Submitted by: Hye-Shik Chang


128108 11-Apr-2004 marcus

Move en_CA from US_LINKS to GB_LINKS.

Submitted by: adamw
Approved by: ache
Committed by: me since adamw should be studying for exams


127837 04-Apr-2004 tjr

Add data for missing categories to zh_HK.Big5HKSCS locale.


127474 27-Mar-2004 tjr

Add UTF-8 versions of all the currently supported system locales. Most of
the hard work was done by Hye-Shik Chang in the misc/utf8locale port; I made
a few minor adjustments and merged the makefiles.

PR: 44307


125208 29-Jan-2004 ache

Add kk_KZ.PT154

Submitted by: Birsh T <tim@zhezu.kz>


123682 20-Dec-2003 ache

Add be_BY.*

Submitted by: Yury Tarasievich <grog@grsu.by>


122178 06-Nov-2003 davidxu

Make zh_CN.GBK fully work by making monetdef/msgdef/timedef symlinks to
zh_CN.GB2312 locale files. zh_CN.GB18030 can be changed in same way,
but I havn't done this change since these files already exists.


122151 05-Nov-2003 davidxu

Enable GB2312 locale.


122147 05-Nov-2003 davidxu

Add GB2312 locale files.


119374 23-Aug-2003 ache

fix short weekday names in zh_CN.*

PR: 55895
Submitted by: Kang Liu <liukang@bjpu.edu.cn>


119188 20-Aug-2003 mtm

Write the short and long version of the month
names in Amharic instead of English.
Also, remove some extra names I had previously considered
including. They don't make sense since the calendar names
don't match up.


118651 08-Aug-2003 ache

Add ko_KR.CP949 locale

PR: 55341
submitted by: Hye-Shik Chang <perky@freebsd.org>


118459 05-Aug-2003 mtm

Support for the Amharic locale.


118174 29-Jul-2003 ache

Add GB18030 locale

PR: 51729
Submitted by: Kang Liu <liukang@bjpu.edu.cn>


117259 05-Jul-2003 ache

Add ARMSCSII-8 locale

Submitted by: Vahe Khachikyan <vahe@khachikyan.de>
PR: 53944


115922 07-Jun-2003 ache

Add ru_RU.CP1251


113125 05-Apr-2003 trhodes

Fix/add missing accents on the weekday names.

PR: 37219
Submitted by: Nicola Vitale <nivit@libero.it>
Reivewed by: Alex Dupre <sysadmin@alexdupre.com>


108428 30-Dec-2002 ache

Add ca_ES locale

PR: 45874
Submitted by: Joan Picanyol i Puig <joan-dev@biaix.org>


105965 25-Oct-2002 ache

Add lt_LT.ISO8859-13

PR: 44268
Submitted by: Kestutis Paulikas <kestas@elen.ktu.lt>


105445 19-Oct-2002 ache

Add sr_YU locales

Submitted by: Toni Andjelkovic <toni@soth.at>


104729 09-Oct-2002 ache

Change x_fmt to %Y-%m-%d

PR: 41043
Submitted by: Henrik Tunedal <henrik@tunedal.nu>


100872 29-Jul-2002 ru

Drop support for COPY, -c has been the default mode of install(1)
for a long time now.

Approved by: bde


93885 05-Apr-2002 phantom

Add pt_BR.ISO8859-1 (Brazilian Portuguese) locale

Submitted (partly) by: dcs


89077 08-Jan-2002 ache

Add ro_RO

PR: 33343
Submitted by: Adrian Penisoara <ady@warpnet.ro>


88474 25-Dec-2001 phantom

Unbreak af_ZA locale by aliasing its LC_TIME category to en_US's.


88473 25-Dec-2001 phantom

Optimize locale data Makefiles as well as make their style more consistent.


88314 20-Dec-2001 ache

Add uk_UA.ISO8859-5 locale

PR: 32450
Submitted by: partially by Alexey Klimov <kao@wiuu.kiev.ua>


87043 28-Nov-2001 ache

Add hi_IN.ISCII-DEV


86689 20-Nov-2001 ache

Fix long months standard form

PR: 32120
Submitted by: Basileios Anastasatos <B.Anastasatos@MyRealBox.com>


86073 05-Nov-2001 ache

Add bg_BG.CP1251

PR: 25472
Submitted by: Peter Pentchev <roam@ringlet.net>


78006 10-Jun-2001 ache

Add more *.US-ASCII entries
Misc cleanup


77985 10-Jun-2001 ache

Use en_GB for en_NZ


77981 10-Jun-2001 ache

Switch to new locale names


76549 13-May-2001 ache

Add sk_SK

PR: 27290
Submitted by: Juraj Bednar <juraj@bednar.sk>
Reviewed by:
Approved by:
Obtained from:


74650 22-Mar-2001 ache

Since ctime compatibility restrictions removed, use more natural date formats


74609 21-Mar-2001 ache

Add padding for some short names to make their length the same to not
break colums


74606 21-Mar-2001 ache

Remove fixed length restrictions and padding


74570 21-Mar-2001 ache

Replace %y with %Y


74413 18-Mar-2001 ache

Convert to new locale format with md_order and without E[Ff]_fmt
Add ampm_fmt to all locales


74343 16-Mar-2001 ache

Make empty unused am/pm


74340 16-Mar-2001 ache

Add et_EE

PR: 25495
Submitted by: Vallo Kallaste <vallo@matti.ee>


74330 16-Mar-2001 ache

DIS_8859-15 -> ISO_8859-15 rename


73361 02-Mar-2001 ache

Clear am and pm fields, add empty ampm_fmt for locales I know is not AM/PM


72233 09-Feb-2001 ache

Use 4-digit year in x_fmt


71165 17-Jan-2001 ache

Add Greek support

PR: 24324
Submitted by: past@netmode.ntua.gr


70484 29-Dec-2000 phantom

Get rid of deprecated ru_SU.* locales. ru_RU.* will be used instead.


67469 23-Oct-2000 ache

Fix %c


65925 16-Sep-2000 ache

Add tr_TR timedef

Submitted by: Evren Yurtesen <yurtesen@ispro.net.tr>


62651 05-Jul-2000 ache

Fix alt months

Submitted by: Ri?ardas ?epas <rch@richard.eu.org>


62031 24-Jun-2000 ache

Fix c_fmt


61902 21-Jun-2000 ache

Fix %EF


61900 21-Jun-2000 ache

Fix date

Submitted by: CHOI Junho <cjh@FreeBSD.ORG>


55082 24-Dec-1999 ache

Link la_LN*4 too


55077 24-Dec-1999 ache

Add lt_LT

Submitted by: Ricardas Cepas <rch@writeme.com>


55012 22-Dec-1999 ache

lt_LN->la_LN


54975 22-Dec-1999 ache

Add cs_CZ

Submitted by: Cejka Rudolf <cejkar@dcse.fee.vutbr.cz>


54090 03-Dec-1999 ache

Don't use %E* in old fields for compatibility reasons


53961 30-Nov-1999 ache

Convert after %Ex->%Ef and %EF adding


53943 30-Nov-1999 ache

Convert to new format


52390 18-Oct-1999 ache

Add uk_UA.KOI8-U

Submitted by: Alexey Zelkin <phantom@cris.net>


52379 18-Oct-1999 ache

Move sources one directory up


51892 03-Oct-1999 ache

ISO8859-5 time definition


51187 11-Sep-1999 dt

Add "alternative" forms of full month names.


50476 28-Aug-1999 peter

$Id$ -> $FreeBSD$


50161 22-Aug-1999 dt

Put full month names in another form ("genitive case"), the only form
suitable for printing dates (like in strftime(... "%e %B %Y" ...)).


48782 12-Jul-1999 n_hibma

Correct typo

PR: 9638
Submitted by: Mauro Allegrini <allegrini@usa.net>


47831 08-Jun-1999 foxfair

Change locale name of Traditional Chinese : zh_TW.BIG5 -> zh_TW.Big5.
It makes compatible with IANA charset defination, and let existent I18N
app happier.

Ref: <http://www.isi.edu/in-notes/iana/assignments/character-sets>


47746 05-Jun-1999 julian

Support the IANA definition of Shift Jis nameley ja_JP.Shift_JIS
as well as the X11 version ja_JP.SJIS


46144 28-Apr-1999 foxfair

Correction of better display under chinese terminal.
Submitted by : Peter_Chen.bbs@bbs.csie.nctu.edu.tw


45218 01-Apr-1999 foxfair

Correct bits, make output format clearly.


44913 20-Mar-1999 foxfair

Oops! forgot to introduce the src file in my last commit.


44911 20-Mar-1999 foxfair

Supporting locale for Chinese Big5 completely.


43000 21-Jan-1999 imp

Euro support, part 2.

This should be merged into RELENG_3 and a similar patch may be needed
for RELENG_2_2, should that deemed necessary.

Make world succeeded with these patches in my tree.

Submitted by: "Kaleb S. KEITHLEY" <kaleb@ics.com>


40309 13-Oct-1998 ache

Make Australian time GB-like
PR: 8302
Submitted by: Stephen McKay <syssgm@dtir.qld.gov.au>


38332 15-Aug-1998 phk

Remove half the file, somehow it got doubled...


38221 10-Aug-1998 phk

I have been running with these locale data for a while now and
I hope some other people might find them useful. They are for
zh_CN.EUC (GB) only. I'm not familiar with the BIG5 encoding,
so I could only hope someone else would fill the gap.

PR: 7310
Submitted by: Luoqi Chen <luoqi@chen.ml.org>


38166 07-Aug-1998 ache

Add Hungarian defs
Submitted by: Gabor Zahemszky <zgabor@CoDe.hu>


37530 09-Jul-1998 phk

The file share/timedef/data/es_ES.ISO_8859-1.src (which I submitted
some months ago and was incorporated to FreeBSD) has capitalized
weekdays names, but this is not correct according to the rules of the
Spanish language.

Also, the patch applies a small change to the "date_fmt" string, adding
a comma between the year and the hour.

PR: 7211
Submitted by: Jose M. Alcaide <jose@we.lc.ehu.es>


36594 02-Jun-1998 danny

PR: 6831
Submitted by: zerium@webindex.no
MF22: remove '.' after weekday abbreviation.


36376 25-May-1998 steve

Norwegian dates should have a dot after day of month.

PR: 6749
Submitted by: Hans Petter Bieker <zerium@webindex.no>


36307 23-May-1998 phk

/usr/src/share/timedef/data/no_NO.ISO_8859-1.src uses initinal
upper case in weekdays and months instead off all lower case.

PR: 6721
Reviewed by: phk
Submitted by: Hans Petter Bieker <hanspb@persbraten.vgs.no>


32283 06-Jan-1998 helbig

Add Latin LC_TIME file.


32263 05-Jan-1998 helbig

Add Finnish LC_TIME file.
This is the finish :-)
PR: 5409
Submitted by: Ville Eerola Thanks!


32236 04-Jan-1998 helbig

Add LC_TIME file for Netherlands (nl_NL) and via symlink for
the northern part of Belgium (nl_BE). The southern part of
Belgium is supposed to be covered by the LC_TIME file in fr_BE.

Now only the LC_TIME for Finland is left to close PR 5409.

PR: 5409
Submitted by: Arjan de Vet Thanks!


32227 04-Jan-1998 helbig

Add Swedish LC_TIME file.
Submitted by Peter Olsson. Thanks!
Changed weekdays -> weekday, as suggested by Steve Price.
PR: 5409 can be closed if someone sends in LC_TIME files
for Belgium, Finland and the Netherlands.
~


32184 02-Jan-1998 helbig

Add Spanish LC_TIME file.
PR: conf/5409
Submitted by: Jose M. Alcaide, thanks!


31874 19-Dec-1997 julian

Add Japanese EUC time definitions

Submitted by: Nobuhiro Yasutomi <nobu@psrc.isac.co.jp>


31027 07-Nov-1997 ache

Add Slovenian data
Submitted by: Blaz Zupan <blaz@amis.net>


31022 07-Nov-1997 ache

Add Polish data
Submitted by: Andrzej Bialecki <abial@warman.org.pl>


29596 19-Sep-1997 julian

remove bad comment


29594 19-Sep-1997 julian

oops
somehow the file I was supplied with turned out to be EUC encoding..
luckily they can be translated by a simple c program :)


29587 18-Sep-1997 julian

make/install the japanese SJIS date locale file.


29585 18-Sep-1997 julian

Shift JIS versions of date stuff.
more changes to come.
Submitted by: Nobuhrio Yasutomi <nobu@psrc.isac.co.jp>
AM/PM changed to 2 letter versions for now, original SJIS versions
commented out. change/check later..


26847 23-Jun-1997 julian

netscape was obviously involved somewhere in the committing of this file
as all cases of the character '\0xF8` became the string "=F8"
Submitted by: archie@whistle.com


26419 03-Jun-1997 ache

Add no_NO locale
Submitted by: Tor Egge <Tor.Egge@idi.ntnu.no>


24316 27-Mar-1997 ache

Fix length-related bugs
Submitted by: Choi Jun Ho <choi.junho@jazz.snu.ac.kr>


24286 26-Mar-1997 ache

This variant is commented
Submitted by: Choi Jun Ho <choi.junho@jazz.snu.ac.kr>


24268 25-Mar-1997 ache

Add Korean LC_TIME
Submitted by: junker@jazz.snu.ac.kr


23143 27-Feb-1997 wosch

Add Croatia.

Submitted by: Slaven Reziæ (Tomiæ) <eserte@cs.tu-berlin.de>


23119 25-Feb-1997 wosch

Add timedef for Austria. The only difference to the German timedef is
the full month name for January.


22988 22-Feb-1997 peter

Revert $FreeBSD$ to $Id$


21673 14-Jan-1997 jkh

Make the long-awaited change from $Id$ to $FreeBSD$

This will make a number of things easier in the future, as well as (finally!)
avoiding the Id-smashing problem which has plagued developers for so long.

Boy, I'm glad we're not using sup anymore. This update would have been
insane otherwise.


20959 28-Dec-1996 ache

Return to last column space padding: some programs (cal f.e.) make two-letters
abbreviations by stripping last character.

Should be in 2.2


20905 25-Dec-1996 ache

Handle en_US, en_CA, en_AU now

Should go into 2.2


20388 13-Dec-1996 adam

added is_IS.ISO_8859-1


20215 08-Dec-1996 ache

Longnames update
Submitted by: Paulo Menezes <pm@ener1000.dee.uc.pt>


20207 08-Dec-1996 pst

Whoops, also fix time for those watchmakers to the north...


20206 08-Dec-1996 pst

Correct an aggregious insult and display the days of the week the way
that god(tm) intended them to be displayed.

Candidate for 2.2


20166 05-Dec-1996 ache

Swap %X and %Y in %c


20083 02-Dec-1996 ache

Add fr_* family
Submitted by: roberto@keltia.freenix.fr (Ollivier Robert)


20038 30-Nov-1996 ache

Add en_GB
Submitted by: mark@linus.demon.co.uk (Mark Valentine)


20034 29-Nov-1996 ache

Add PT locale
Submitted by: Paulo Menezes <paulo@isr.uc.pt>


20031 29-Nov-1996 phk

Add da_DK timedef.


19827 17-Nov-1996 ache

Pad two-letter names not with ending space, but with beginning space
As result, it not looks anymore as:
xx , ...
but as
xx, ...

2.2 candidate


14121 17-Feb-1996 ache

Change date format to look more naturally


14120 17-Feb-1996 ache

Change date format to look more naturally
Change ctime-like format to fix ls bug
Reviewed by: joerg


13622 24-Jan-1996 ache

Use two-letters abbrev. for weekdays
Change months form


13605 24-Jan-1996 ache

German LC_TIME
Submitted by: joerg


13122 30-Dec-1995 peter

recording cvs-1.6 file death


12035 03-Nov-1995 ache

Cleanup make process per Bruce suggestions
Add ru_SU.CP866 time locale


9995 08-Aug-1995 ache

Add Id string
Replace empty AM string with two spaces to not break output length


9965 06-Aug-1995 ache

Fix %c to be ctime-compatible


9959 06-Aug-1995 ache

This commit was generated by cvs2svn to compensate for changes in r9958,
which included commits to RCS files with non-trunk default branches.