home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / misc / volume35 / remind / patch02c / english.h next >
Encoding:
C/C++ Source or Header  |  1993-02-05  |  2.3 KB  |  82 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. /*** The following are only used in dosubst.c ***/
  49. #ifdef L_IN_DOSUBST
  50.  
  51. /* Ago and from now */
  52. #define L_AGO "ago"
  53. #define L_FROMNOW "from now"
  54.  
  55. /* "in %d days' time" */
  56. #define L_INXDAYS "in %d days' time"
  57.  
  58. /* "on" as in "on date..." */
  59. #define L_ON "on"
  60.  
  61. /* Pluralizing - this is a problem for many languages and may require
  62.    a more drastic fix */
  63. #define L_PLURAL "s"
  64.  
  65. /* Minutes, hours, at, etc */
  66. #define L_NOW "now"
  67. #define L_AT "at"
  68. #define L_MINUTE "minute"
  69. #define L_HOUR "hour"
  70. #define L_IS "is"
  71. #define L_WAS "was"
  72. #define L_AND "and"
  73. /* What to add to make "hour" plural */
  74. #define L_HPLU "s"  
  75. /* What to add to make "minute" plural */
  76. #define L_MPLU "s"
  77.  
  78. /* Define any overrides here, such as L_ORDINAL_OVERRIDE, L_A_OVER, etc.
  79.    See the file dosubst.c for more info. */
  80.  
  81. #endif /* L_IN_DOSUBST */
  82.