home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / misc / volume35 / remind / patch02c / german.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-02-05  |  2.5 KB  |  86 lines

  1. /***************************************************************/
  2. /*                                                             */
  3. /*  GERMAN.H                                                   */
  4. /*                                                             */
  5. /*  Support for the German language.                           */
  6. /*                                                             */
  7. /*  This file was derived from a patch submitted by Wolfgang   */
  8. /*  Thronicke.  I don't guarantee that there are no mistakes - */
  9. /*  I don't speak German.                                      */
  10. /*                                                             */
  11. /*  This file is part of REMIND.                               */
  12. /*  Copyright (C) 1992, 1993 by David F. Skoll.                */
  13. /*                                                             */
  14. /***************************************************************/
  15.  
  16. /* The very first define in a language support file must be L_LANGNAME: */
  17. #define L_LANGNAME "German"
  18.  
  19. /* Day names */
  20. #define L_SUNDAY "Sonntag"
  21. #define L_MONDAY "Montag"
  22. #define L_TUESDAY "Dienstag"
  23. #define L_WEDNESDAY "Mittwoch"
  24. #define L_THURSDAY "Donnerstag"
  25. #define L_FRIDAY "Freitag"
  26. #define L_SATURDAY "Samstag"
  27.  
  28. /* Day initials - first letter only */
  29. #define L_DAYINIT "SMDMDFS"
  30.  
  31. /* Month names */
  32. #define L_JAN "Januar"
  33. #define L_FEB "Februar"
  34. #define L_MAR "Maerz"
  35. #define L_APR "April"
  36. #define L_MAY "Mai"
  37. #define L_JUN "Juni"
  38. #define L_JUL "Juli"
  39. #define L_AUG "August"
  40. #define L_SEP "September"
  41. #define L_OCT "Oktober"
  42. #define L_NOV "November"
  43. #define L_DEC "Dezember"
  44.  
  45. /* Today and tomorrow */
  46. #define L_TODAY "heute"
  47. #define L_TOMORROW "morgen"
  48.  
  49. /* The default banner */
  50. #define L_BANNER "Termine fuer %w, den %d %m %y%o:"
  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 "vorher"
  57. #define L_FROMNOW "von heute"
  58.  
  59. /* "in %d days' time" */
  60. #define L_INXDAYS "in %d Tagen"
  61.  
  62. /* "on" as in "on date..." */
  63. #define L_ON "am"
  64.  
  65. /* Pluralizing - this is a problem for many languages and may require
  66.    a more drastic fix */
  67. #define L_PLURAL "en"
  68.  
  69. /* Minutes, hours, at, etc */
  70. #define L_NOW "jetzt"
  71. #define L_AT "um"
  72. #define L_MINUTE "Minute"
  73. #define L_HOUR "Stunde"
  74. #define L_IS "ist"
  75. #define L_WAS "war"
  76. #define L_AND "und"
  77. /* What to add to make "hour" plural */
  78. #define L_HPLU "n"  
  79. /* What to add to make "minute" plural */
  80. #define L_MPLU "n"
  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.