revert between 56095 -> 55830 in arch
[AROS.git] / workbench / locale / languages / hungarian.c
blobdd41b8b9fdb07c5af2925ae6f7256acf939b2990
1 /*
2 Copyright © 1995-2013, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: hungarian.language description file.
6 Char: ISO 8859-2
7 */
9 /* Collation tables need to be implemented */
11 #define LANGSTR "hungarian" /* String version of above */
12 #define NLANGSTR "magyar" /* Native version of LANGSTR */
13 #define LANGVER 41 /* Version number of language */
14 #define LANGREV 2 /* Revision number of language */
15 #define LANGTAG "\0$VER: " LANGSTR ".language 41.2 (30.09.2014)"
16 #define NLANGTAG "$NLANG:" NLANGSTR
18 #include "lang_openclose.inc"
19 #include "lang_getlangstring.inc"
21 /* -----------------------------------------------------------------------
22 Library function table - you will need to alter this
23 I have this right here at the end of the library so that I do not
24 have to have prototypes for the functions. Although you could do that.
25 ----------------------------------------------------------------------- */
27 void *const functable[] =
29 &AROS_SLIB_ENTRY(open,language,1),
30 &AROS_SLIB_ENTRY(close,language,2),
31 &AROS_SLIB_ENTRY(expunge,language,3),
32 &AROS_SLIB_ENTRY(null,language,0),
33 &AROS_SLIB_ENTRY(mask,language,5),
35 /* Note, shorter function table, as only getlangstring is used */
37 /* 0 - 3 */
38 &AROS_SLIB_ENTRY(null, language, 0),
39 &AROS_SLIB_ENTRY(null, language, 0),
40 &AROS_SLIB_ENTRY(null, language, 0),
41 &AROS_SLIB_ENTRY(getlangstring, language, 9),
42 (void *)-1
46 Note how only the required data structures are kept...
48 This is the list of strings. It is an array of pointers to strings,
49 although how it is laid out is implementation dependant.
51 const STRPTR ___strings[] =
53 /* A blank string */
54 "",
56 /* The days of the week. Starts with the first day of the week.
57 In English this would be Sunday, this depends upon the settings
58 of Locale->CalendarType.
60 "Hétfô", "Kedd", "Szerda", "Csütörtök", "Péntek",
61 "Szombat", "Vasárnap",
63 /* Abbreviated days of the week */
64 "H", "K", "Sz", "Cs", "P", "Szo", "V",
66 /* Months of the year */
67 "Január", "Február", "Március",
68 "Április", "Május", "Június",
69 "Julius", "Augusztus", "Szeptember",
70 "Október", "November", "December",
72 /* Abbreviated months of the year */
73 "I", "II", "III", "IV", "V", "VI",
74 "VII", "VIII", "IX", "X", "XI", "XII",
76 "Igen", /* Yes, affirmative response */
77 "Nem", /* No/negative response */
79 /* AM/PM strings AM 0000 -> 1159, PM 1200 -> 2359 */
80 "Délelôtt", "Délután",
82 /* Soft and hard hyphens */
83 "\xAD", "-",
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 "Tegnap", "Ma", "Holnap", "Jövô",
96 /* Native language name */
97 NLANGSTR
100 /* This is the end of ROMtag marker. */
101 const char end=0;