1 /***************************************************************/
2 /*                                                             */
3 /*  ENGLISH.H                                                  */
4 /*                                                             */
5 /*  Support for the English language.                          */
6 /*                                                             */
7 /*  This file is part of REMIND.                               */
8 /*  Copyright (C) 1992-2021 by Dianne 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 /* Month names */
25 #define L_JAN "January"
26 #define L_FEB "February"
27 #define L_MAR "March"
28 #define L_APR "April"
29 #define L_MAY "May"
30 #define L_JUN "June"
31 #define L_JUL "July"
32 #define L_AUG "August"
33 #define L_SEP "September"
34 #define L_OCT "October"
35 #define L_NOV "November"
36 #define L_DEC "December"
37 
38 /* Today and tomorrow */
39 #define L_TODAY "today"
40 #define L_TOMORROW "tomorrow"
41 
42 /* The default banner */
43 #define L_BANNER "Reminders for %w, %d%s %m, %y%o:"
44 
45 /* "am" and "pm" */
46 #define L_AM "am"
47 #define L_PM "pm"
48 
49 /*** The following are only used in dosubst.c ***/
50 #ifdef L_IN_DOSUBST
51 
52 /* Ago and from now */
53 #define L_AGO "ago"
54 #define L_FROMNOW "from now"
55 
56 /* "in %d days' time" */
57 #define L_INXDAYS "in %d days' time"
58 
59 /* "on" as in "on date..." */
60 #define L_ON "on"
61 
62 /* Pluralizing - this is a problem for many languages and may require
63    a more drastic fix */
64 #define L_PLURAL "s"
65 
66 /* Minutes, hours, at, etc */
67 #define L_NOW "now"
68 #define L_AT "at"
69 #define L_MINUTE "minute"
70 #define L_HOUR "hour"
71 #define L_IS "is"
72 #define L_WAS "was"
73 #define L_AND "and"
74 /* What to add to make "hour" plural */
75 #define L_HPLU "s"
76 /* What to add to make "minute" plural */
77 #define L_MPLU "s"
78 
79 /* Define any overrides here, such as L_ORDINAL_OVERRIDE, L_A_OVER, etc.
80    See the file dosubst.c for more info. */
81 
82 #endif /* L_IN_DOSUBST */
83