fix __AROS_SETVECADDR invocations.
[AROS.git] / workbench / locale / languages / danish.c
blob11e12d8f1cea0d296fa7ba45703e41d4ea9410d2
1 /*
2 Copyright © 1995-2013, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: danish.language description file.
6 */
8 #define LANGSTR "danish" /* String version of above */
9 #define NLANGSTR "dansk" /* Native version of LANGSTR */
10 #define LANGVER 41 /* Version number of language */
11 #define LANGREV 2 /* Revision number of language */
12 #define LANGTAG "\0$VER: " LANGSTR ".language 41.2 (30.09.2014)"
13 #define NLANGTAG "$NLANG:" NLANGSTR
15 #include "lang_openclose.inc"
16 #include "lang_getlangstring.inc"
18 /* -----------------------------------------------------------------------
19 Library function table - you will need to alter this
20 I have this right here at the end of the library so that I do not
21 have to have prototypes for the functions. Although you could do that.
22 ----------------------------------------------------------------------- */
24 void *const functable[] =
26 &AROS_SLIB_ENTRY(open,language,1),
27 &AROS_SLIB_ENTRY(close,language,2),
28 &AROS_SLIB_ENTRY(expunge,language,3),
29 &AROS_SLIB_ENTRY(null,language,0),
30 &AROS_SLIB_ENTRY(mask,language,5),
32 /* Note, shorter function table, as only getlangstring is used */
34 /* 0 - 3 */
35 &AROS_SLIB_ENTRY(null, language, 0),
36 &AROS_SLIB_ENTRY(null, language, 0),
37 &AROS_SLIB_ENTRY(null, language, 0),
38 &AROS_SLIB_ENTRY(getlangstring, language,9),
39 (void *)-1
43 Note how only the required data structures are kept...
45 This is the list of strings. It is an array of pointers to strings,
46 although how it is laid out is implementation dependant.
48 const STRPTR ___strings[] =
50 /* A blank string */
51 "",
53 /* The days of the week. Starts with the first day of the week.
54 In English this would be Sunday, this depends upon the settings
55 of Locale->CalendarType.
58 // NOTICE: stegerg: I think this must always start with Sunday and not what comment above says
60 "Søndag", "Mandag", "Tirsdag", "Onsdag", "Torsdag",
61 "Fredag", "Lørdag",
63 /* Abbreviated days of the week */
64 "Søn", "Man", "Tir", "Ons", "Tor", "Fre", "Lør",
66 /* Months of the year */
67 "Januar", "Februar", "Marts",
68 "April", "Maj", "Juni",
69 "Juli", "August", "September",
70 "Oktober", "November", "December",
72 /* Abbreviated months of the year */
73 "Jan", "Feb", "Mar", "Apr", "Maj", "Jun",
74 "Jul", "Aug", "Sep", "Okt", "Nov", "Dec",
76 "Ja", /* Yes, affirmative response */
77 "Nej", /* No/negative response */
79 /* AM/PM strings AM 0000 -> 1159, PM 1200 -> 2359 */
80 "AM", "PM",
82 /* Soft and hard hyphens */
83 "-", "-",
85 /* Open and close quotes */
86 "\"", "\"",
88 /* Days: But not actual day names
89 Yesterday - the day before the current
90 Today - the current day
91 Tomorrow - the next day
92 Future.
94 "i går", "i dag", "i morgen", "fremtid",
96 /* Native language name */
97 NLANGSTR
100 /* This is the end of ROMtag marker. */
101 const char end=0;