svn commit: r193688 - head/share/timedef

Edwin Groothuis edwin at FreeBSD.org
Mon Jun 8 05:33:09 UTC 2009


Author: edwin
Date: Mon Jun  8 05:33:08 2009
New Revision: 193688
URL: http://svn.freebsd.org/changeset/base/193688

Log:
  [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 at gmx.net>
  MFC after:	1 week

Modified:
  head/share/timedef/de_DE.ISO8859-1.src
  head/share/timedef/de_DE.UTF-8.src

Modified: head/share/timedef/de_DE.ISO8859-1.src
==============================================================================
--- head/share/timedef/de_DE.ISO8859-1.src	Mon Jun  8 05:11:35 2009	(r193687)
+++ head/share/timedef/de_DE.ISO8859-1.src	Mon Jun  8 05:33:08 2009	(r193688)
@@ -59,7 +59,7 @@ Samstag
 #
 # x_fmt
 #
-%d.%m.%Y
+%Y-%m-%d
 #
 # c_fmt
 #

Modified: head/share/timedef/de_DE.UTF-8.src
==============================================================================
--- head/share/timedef/de_DE.UTF-8.src	Mon Jun  8 05:11:35 2009	(r193687)
+++ head/share/timedef/de_DE.UTF-8.src	Mon Jun  8 05:33:08 2009	(r193688)
@@ -59,7 +59,7 @@ Samstag
 #
 # x_fmt
 #
-%d.%m.%Y
+%Y-%m-%d
 #
 # c_fmt
 #


More information about the svn-src-all mailing list