home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / os2 / remind / src / english.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-10-12  |  2.3 KB  |  86 lines

  1. /***************************************************************/
  2. /*                                                             */
  3. /*  ENGLISH.H                                                  */
  4. /*                                                             */
  5. /*  Support for the English language.                          */
  6. /*                                                             */
  7. /*  This file is part of REMIND.                               */
  8. /*  Copyright (C) 1992, 1993 by David F. Skoll.                */
  9. /*                                                             */
  10. /***************************************************************/
  11.  
  12. /* The very first define in a language support file must be L_LANGNAME: */
  13. #define L_LANGNAME "English"
  14.  
  15. /* Day names */
  16. #define L_SUNDAY "Sunday"
  17. #define L_MONDAY "Monday"
  18. #define L_TUESDAY "Tuesday"
  19. #define L_WEDNESDAY "Wednesday"
  20. #define L_THURSDAY "Thursday"
  21. #define L_FRIDAY "Friday"
  22. #define L_SATURDAY "Saturday"
  23.  
  24. /* Day initials - first letter only */
  25. #define L_DAYINIT "SMTWTFS"
  26.  
  27. /* Month names */
  28. #define L_JAN "January"
  29. #define L_FEB "February"
  30. #define L_MAR "March"
  31. #define L_APR "April"
  32. #define L_MAY "May"
  33. #define L_JUN "June"
  34. #define L_JUL "July"
  35. #define L_AUG "August"
  36. #define L_SEP "September"
  37. #define L_OCT "October"
  38. #define L_NOV "November"
  39. #define L_DEC "December"
  40.  
  41. /* Today and tomorrow */
  42. #define L_TODAY "today"
  43. #define L_TOMORROW "tomorrow"
  44.  
  45. /* The default banner */
  46. #define L_BANNER "Reminders for %w, %d%s %m, %y%o:"
  47.  
  48. /* "am" and "pm" */
  49. #define L_AM "am"
  50. #define L_PM "pm"
  51.  
  52. /*** The following are only used in dosubst.c ***/
  53. #ifdef L_IN_DOSUBST
  54.  
  55. /* Ago and from now */
  56. #define L_AGO "ago"
  57. #define L_FROMNOW "from now"
  58.  
  59. /* "in %d days' time" */
  60. #define L_INXDAYS "in %d days' time"
  61.  
  62. /* "on" as in "on date..." */
  63. #define L_ON "on"
  64.  
  65. /* Pluralizing - this is a problem for many languages and may require
  66.    a more drastic fix */
  67. #define L_PLURAL "s"
  68.  
  69. /* Minutes, hours, at, etc */
  70. #define L_NOW "now"
  71. #define L_AT "at"
  72. #define L_MINUTE "minute"
  73. #define L_HOUR "hour"
  74. #define L_IS "is"
  75. #define L_WAS "was"
  76. #define L_AND "and"
  77. /* What to add to make "hour" plural */
  78. #define L_HPLU "s"  
  79. /* What to add to make "minute" plural */
  80. #define L_MPLU "s"
  81.  
  82. /* Define any overrides here, such as L_ORDINAL_OVERRIDE, L_A_OVER, etc.
  83.    See the file dosubst.c for more info. */
  84.  
  85. #endif /* L_IN_DOSUBST */
  86.