disable float support on m68k to prevent unwanted symbols being used in rom code...
[AROS.git] / workbench / locale / languages / croatian.c
blobbc8647e60e2609a18d63e094641a41856feecfa8
1 /*
2 Copyright © 1995-2013, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: croatian.language description file.
6 Char: ISO 8859-2
7 */
9 #define LANGSTR "croatian" /* String version of above */
10 #define NLANGSTR "hrvatski" /* Native version of LANGSTR */
11 #define LANGVER 41 /* Version number of language */
12 #define LANGREV 3 /* Revision number of language */
13 #define LANGTAG "\0$VER: " LANGSTR ".language 41.3 (30.09.2014)"
14 #define NLANGTAG "$NLANG:" NLANGSTR
16 #include "lang_openclose.inc"
17 #include "lang_getlangstring.inc"
19 /* -----------------------------------------------------------------------
20 Library function table - you will need to alter this
21 I have this right here at the end of the library so that I do not
22 have to have prototypes for the functions. Although you could do that.
23 ----------------------------------------------------------------------- */
25 void *const functable[] =
27 &AROS_SLIB_ENTRY(open,language,1),
28 &AROS_SLIB_ENTRY(close,language,2),
29 &AROS_SLIB_ENTRY(expunge,language,3),
30 &AROS_SLIB_ENTRY(null,language,0),
31 &AROS_SLIB_ENTRY(mask,language,5),
33 /* Note, shorter function table, as only getlangstring is used */
35 /* 0 - 3 */
36 &AROS_SLIB_ENTRY(null, language, 0),
37 &AROS_SLIB_ENTRY(null, language, 0),
38 &AROS_SLIB_ENTRY(null, language, 0),
39 &AROS_SLIB_ENTRY(getlangstring, language, 9),
40 (void *)-1
44 Note how only the required data structures are kept...
46 This is the list of strings. It is an array of pointers to strings,
47 although how it is laid out is implementation dependant.
49 const STRPTR ___strings[] =
51 /* A blank string */
52 "",
54 /* The days of the week. Starts with the first day of the week.
55 In English this would be Sunday, this depends upon the settings
56 of Locale->CalendarType.
58 "nedelja", "ponedjeljak", "utorak", "srijeda", "èetvrtak",
59 "petak", "subota",
61 /* Abbreviated days of the week */
62 "ne", "po", "ut", "sr", "èt", "pe", "su",
64 /* Months of the year */
65 "sijeèanj", "veljaèa", "o¾ujak",
66 "travanj", "svibanj", "lipanj",
67 "srpanj", "kolovoz", "rujan",
68 "listopad", "studeni", "prosinac",
70 /* Abbreviated months of the year */
71 "sij", "velj", "o¾u", "tra", "svi", "lip",
72 "srp", "kol", "ruj", "lis", "stu", "pro",
74 "Da", /* Yes, affirmative response */
75 "Ne", /* No/negative response */
77 /* AM/PM strings AM 0000 -> 1159, PM 1200 -> 2359 */
78 "jutro", "popodne",
80 /* Soft and hard hyphens */
81 "\xAD", "-",
83 /* Open and close quotes */
84 "\"", "\"",
86 /* Days: But not actual day names
87 Yesterday - the day before the current
88 Today - the current day
89 Tomorrow - the next day
90 Future.
92 "Juèer", "Danas", "Sutra", "Buduænost",
94 /* Native language name */
95 NLANGSTR
98 /* This is the end of ROMtag marker. */
99 const char end=0;