Title.mui: minor code cleanup
[AROS.git] / workbench / locale / languages / turkish.c
blobef29cff796fbec43c973fee99f32932a837a428e
1 /*
2 Copyright © 1995-2013, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: turkish.language description file.
6 Char: 8859-9
7 */
9 #define LANGSTR "turkish" /* String version of above */
10 #define NLANGSTR "türkçe" /* Native version of LANGSTR */
11 #define LANGVER 41 /* Version number of language */
12 #define LANGREV 2 /* Revision number of language */
13 #define LANGTAG "\0$VER: " LANGSTR ".language 41.2 (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.
59 // NOTICE: stegerg: I think this must always start with Sunday and not what comment above says
61 "Pazar", "Pazartesi", "Salý", "Çarþamba", "Perþembe",
62 "Cuma", "Cumartesi",
64 /* Abbreviated days of the week */
65 "Paz", "Pzt", "Sal", "Çar", "Per", "Cum", "Cmt",
67 /* Months of the year */
68 "Ocak", "Þubat", "Mart",
69 "Nisan", "Mayýs", "Haziran",
70 "Temmuz", "Aðustos", "Eylül",
71 "Ekim", "Kasým", "Aralýk",
73 /* Abbreviated months of the year */
74 "Oca", "Þub", "Mar", "Nis", "May", "Haz",
75 "Tem", "Aðu", "Eyl", "Eki", "Kas", "Ara",
77 "Evet", /* Yes, affirmative response */
78 "Hayýr", /* No/negative response */
80 /* AM/PM strings AM 0000 -> 1159, PM 1200 -> 2359 */
81 "AM", "PM",
83 /* Soft and hard hyphens */
84 "\xAD", "-",
86 /* Open and close quotes */
87 "\"", "\"",
89 /* Days: But not actual day names
90 Yesterday - the day before the current
91 Today - the current day
92 Tomorrow - the next day
93 Future.
95 "Dün", "Bugün", "Yarýn", "Gelecek",
97 /* Native language name */
98 NLANGSTR
101 /* This is the end of ROMtag marker. */
102 const char end=0;