Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
1.6 KiB

  1. <%
  2. ' These format strings are taken from the Regional Settings control
  3. ' panel. They determine the format used for dates and times displayed
  4. ' inside controls. To change them, simply open the Regional Settings
  5. ' control panel and paste the appropriate format strings into the
  6. ' constants below.
  7. '
  8. ' NOTE: Using a date format with literal characters outside of the
  9. ' LATIN-1 set will cause problems if the client is on a machine that
  10. ' does not recognize the character set. The safest solution is to
  11. ' use a date format without the literals or use a 4 character token
  12. ' for the month (MMMM) and day of the week (dddd) rather than the
  13. ' literal and rely on substituting the localized string.
  14. Const L_DATE_LONGFORMAT_TEXT = "dddd, MMMM dd, yyyy"
  15. Const L_DATE_SHORTFORMAT_TEXT = "M/d/yy"
  16. Const L_TIME_FORMAT_TEXT = "h:mm:ss tt"
  17. ' Localizable strings used in date formats
  18. ' Month strings appear when the MMMM token is used in the date format.
  19. Const L_JAN_TEXT = "January"
  20. Const L_FEB_TEXT = "February"
  21. Const L_MAR_TEXT = "March"
  22. Const L_APR_TEXT = "April"
  23. Const L_MAY_TEXT = "May"
  24. Const L_JUN_TEXT = "June"
  25. Const L_JUL_TEXT = "July"
  26. Const L_AUG_TEXT = "August"
  27. Const L_SEP_TEXT = "September"
  28. Const L_OCT_TEXT = "October"
  29. Const L_NOV_TEXT = "November"
  30. Const L_DEC_TEXT = "December"
  31. ' Day strings appear when the dddd token is used in the date format.
  32. Const L_MON_TEXT = "Monday"
  33. Const L_TUE_TEXT = "Tuesday"
  34. Const L_WED_TEXT = "Wednesday"
  35. Const L_THU_TEXT = "Thursday"
  36. Const L_FRI_TEXT = "Friday"
  37. Const L_SAT_TEXT = "Saturday"
  38. Const L_SUN_TEXT = "Sunday"
  39. ' Daytime strings appear when the tt token is used in the date format.
  40. Const L_MORNING_TEXT = "AM"
  41. Const L_AFTERNOON_TEXT = "PM"
  42. %>