home *** CD-ROM | disk | FTP | other *** search
/ OpenStep 4.2J (Developer) / os42jdev.iso / NextDeveloper / Apps / InterfaceBuilder.app / Resources / English.lproj / dateFormats.plist < prev    next >
Encoding:
Text File  |  1996-10-22  |  1.1 KB  |  40 lines

  1. /* Special escapes:
  2.  *   %% A single `%'.
  3.  *   %a Abbreviated weekday name.
  4.  *   %A Full weekday name.
  5.  *   %b Abbreviated month name.
  6.  *   %B Full month name.
  7.  *   %d Day of the month as a decimal number (01-31).
  8.  *   %e Day of the month as a decimal number (1-31) (%d without the leading 0).
  9.  *   %F 
  10.  *   %H 
  11.  *   %I 
  12.  *   %j Day of the year as a decimal number (001-366)
  13.  *   %m Month as a decimal number (01-12).
  14.  *   %M Minute as a decimal number (00-59).
  15.  *   %p 
  16.  *   %S
  17.  *   %w
  18.  *   %y Year without century (00-99).
  19.  *   %Y Year with century (e.g. 1990).
  20.  *   %z
  21.  *   %Z
  22.  *
  23.  *   %c Time and date using the NSTimeDateFormatString representation (or a
  24.  *      suitable default) for the locale.
  25.  *   %x Date using the NSTimeDateFormatString representation (or a suitable
  26.  *      default) for the locale.
  27.  *   %X Time using the NSTimeDateFormatString representation (or a suitable
  28.  *      default) for the locale.
  29.  */
  30.  
  31. (
  32.   "%c",
  33.   "%A, %B %e, %Y",    /* Monday, April 1, 1996 */
  34.   "%B %e, %Y",        /* April 1, 1996 */
  35.   "%e %B %Y",        /* 1 April 1996 */
  36.   "%m/%d/%y",        /* 04/01/96 */
  37.   "%b %d, %Y",        /* Apr 01, 1996 */
  38.   "%d %b %Y"        /* 01 Apr 1996 */
  39. )
  40.