~drizzle-trunk/drizzle/development

1 by brian
clean slate
1
/* Copyright (C) 2005 MySQL AB
2
3
   This program is free software; you can redistribute it and/or modify
4
   it under the terms of the GNU General Public License as published by
5
   the Free Software Foundation; version 2 of the License.
6
7
   This program is distributed in the hope that it will be useful,
8
   but WITHOUT ANY WARRANTY; without even the implied warranty of
9
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
10
   GNU General Public License for more details.
11
12
   You should have received a copy of the GNU General Public License
13
   along with this program; if not, write to the Free Software
14
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
15
16
/*
17
  The beginnings of locale(7) support.
18
  Sponsored for subset of LC_TIME support,  WorkLog entry 2928, -- Josh Chamas
19
*/
243.1.17 by Jay Pipes
FINAL PHASE removal of mysql_priv.h (Bye, bye my friend.)
20
#include <drizzled/server_includes.h>
584.1.15 by Monty Taylor
The mega-patch from hell. Renamed sql_class to session (since that's what it is) and removed it and field and table from common_includes.
21
#include <drizzled/sql_locale.h>
1 by brian
clean slate
22
23
/***** LOCALE BEGIN ar_AE: Arabic - United Arab Emirates *****/
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
24
static const char *my_locale_month_names_ar_AE[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
25
 {"يناير","فبراير","مارس","أبريل","مايو","يونيو","يوليو","أغسطس","سبتمبر","أكتوبر","نوفمبر","ديسمبر", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
26
static const char *my_locale_ab_month_names_ar_AE[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
27
 {"ينا","فبر","مار","أبر","ماي","يون","يول","أغس","سبت","أكت","نوف","ديس", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
28
static const char *my_locale_day_names_ar_AE[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
29
 {"الاثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت ","الأحد", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
30
static const char *my_locale_ab_day_names_ar_AE[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
31
 {"ن","ث","ر","خ","ج","س","ح", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
32
static TYPELIB my_locale_typelib_month_names_ar_AE =
1 by brian
clean slate
33
 { array_elements(my_locale_month_names_ar_AE)-1, "", my_locale_month_names_ar_AE, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
34
static TYPELIB my_locale_typelib_ab_month_names_ar_AE =
1 by brian
clean slate
35
 { array_elements(my_locale_ab_month_names_ar_AE)-1, "", my_locale_ab_month_names_ar_AE, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
36
static TYPELIB my_locale_typelib_day_names_ar_AE =
1 by brian
clean slate
37
 { array_elements(my_locale_day_names_ar_AE)-1, "", my_locale_day_names_ar_AE, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
38
static TYPELIB my_locale_typelib_ab_day_names_ar_AE =
1 by brian
clean slate
39
 { array_elements(my_locale_ab_day_names_ar_AE)-1, "", my_locale_ab_day_names_ar_AE, NULL };
40
MY_LOCALE my_locale_ar_AE
41
(
42
  6,
43
  "ar_AE",
44
  "Arabic - United Arab Emirates",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
45
  false,
1 by brian
clean slate
46
  &my_locale_typelib_month_names_ar_AE,
47
  &my_locale_typelib_ab_month_names_ar_AE,
48
  &my_locale_typelib_day_names_ar_AE,
49
  &my_locale_typelib_ab_day_names_ar_AE
50
);
51
/***** LOCALE END ar_AE *****/
52
53
/***** LOCALE BEGIN ar_BH: Arabic - Bahrain *****/
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
54
static const char *my_locale_month_names_ar_BH[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
55
 {"يناير","فبراير","مارس","أبريل","مايو","يونيو","يوليو","أغسطس","سبتمبر","أكتوبر","نوفمبر","ديسمبر", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
56
static const char *my_locale_ab_month_names_ar_BH[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
57
 {"ينا","فبر","مار","أبر","ماي","يون","يول","أغس","سبت","أكت","نوف","ديس", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
58
static const char *my_locale_day_names_ar_BH[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
59
 {"الاثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت","الأحد", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
60
static const char *my_locale_ab_day_names_ar_BH[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
61
 {"ن","ث","ر","خ","ج","س","ح", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
62
static TYPELIB my_locale_typelib_month_names_ar_BH =
1 by brian
clean slate
63
 { array_elements(my_locale_month_names_ar_BH)-1, "", my_locale_month_names_ar_BH, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
64
static TYPELIB my_locale_typelib_ab_month_names_ar_BH =
1 by brian
clean slate
65
 { array_elements(my_locale_ab_month_names_ar_BH)-1, "", my_locale_ab_month_names_ar_BH, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
66
static TYPELIB my_locale_typelib_day_names_ar_BH =
1 by brian
clean slate
67
 { array_elements(my_locale_day_names_ar_BH)-1, "", my_locale_day_names_ar_BH, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
68
static TYPELIB my_locale_typelib_ab_day_names_ar_BH =
1 by brian
clean slate
69
 { array_elements(my_locale_ab_day_names_ar_BH)-1, "", my_locale_ab_day_names_ar_BH, NULL };
70
MY_LOCALE my_locale_ar_BH
71
(
72
  7,
73
  "ar_BH",
74
  "Arabic - Bahrain",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
75
  false,
1 by brian
clean slate
76
  &my_locale_typelib_month_names_ar_BH,
77
  &my_locale_typelib_ab_month_names_ar_BH,
78
  &my_locale_typelib_day_names_ar_BH,
79
  &my_locale_typelib_ab_day_names_ar_BH
80
);
81
/***** LOCALE END ar_BH *****/
82
83
/***** LOCALE BEGIN ar_JO: Arabic - Jordan *****/
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
84
static const char *my_locale_month_names_ar_JO[13] =
85
 {"كانون الثاني","شباط","آذار","نيسان","نوار","حزيران","تموز","آب","أيلول","تشرين الأول","تشرين الثاني","كانون الأول", NULL };
86
static const char *my_locale_ab_month_names_ar_JO[13] =
87
 {"كانون الثاني","شباط","آذار","نيسان","نوار","حزيران","تموز","آب","أيلول","تشرين الأول","تشرين الثاني","كانون الأول", NULL };
88
static const char *my_locale_day_names_ar_JO[8] =
89
 {"الاثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت","الأحد", NULL };
90
static const char *my_locale_ab_day_names_ar_JO[8] =
91
 {"الاثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت","الأحد", NULL };
92
static TYPELIB my_locale_typelib_month_names_ar_JO =
1 by brian
clean slate
93
 { array_elements(my_locale_month_names_ar_JO)-1, "", my_locale_month_names_ar_JO, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
94
static TYPELIB my_locale_typelib_ab_month_names_ar_JO =
1 by brian
clean slate
95
 { array_elements(my_locale_ab_month_names_ar_JO)-1, "", my_locale_ab_month_names_ar_JO, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
96
static TYPELIB my_locale_typelib_day_names_ar_JO =
1 by brian
clean slate
97
 { array_elements(my_locale_day_names_ar_JO)-1, "", my_locale_day_names_ar_JO, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
98
static TYPELIB my_locale_typelib_ab_day_names_ar_JO =
1 by brian
clean slate
99
 { array_elements(my_locale_ab_day_names_ar_JO)-1, "", my_locale_ab_day_names_ar_JO, NULL };
100
MY_LOCALE my_locale_ar_JO
101
(
102
  8,
103
  "ar_JO",
104
  "Arabic - Jordan",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
105
  false,
1 by brian
clean slate
106
  &my_locale_typelib_month_names_ar_JO,
107
  &my_locale_typelib_ab_month_names_ar_JO,
108
  &my_locale_typelib_day_names_ar_JO,
109
  &my_locale_typelib_ab_day_names_ar_JO
110
);
111
/***** LOCALE END ar_JO *****/
112
113
/***** LOCALE BEGIN ar_SA: Arabic - Saudi Arabia *****/
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
114
static const char *my_locale_month_names_ar_SA[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
115
 {"كانون الثاني","شباط","آذار","نيسـان","أيار","حزيران","تـمـوز","آب","أيلول","تشرين الأول","تشرين الثاني","كانون الأول", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
116
static const char *my_locale_ab_month_names_ar_SA[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
117
 {"Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
118
static const char *my_locale_day_names_ar_SA[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
119
 {"الإثنين","الثلاثاء","الأربعاء","الخميس","الجمعـة","السبت","الأحد", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
120
static const char *my_locale_ab_day_names_ar_SA[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
121
 {"Mon","Tue","Wed","Thu","Fri","Sat","Sun", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
122
static TYPELIB my_locale_typelib_month_names_ar_SA =
1 by brian
clean slate
123
 { array_elements(my_locale_month_names_ar_SA)-1, "", my_locale_month_names_ar_SA, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
124
static TYPELIB my_locale_typelib_ab_month_names_ar_SA =
1 by brian
clean slate
125
 { array_elements(my_locale_ab_month_names_ar_SA)-1, "", my_locale_ab_month_names_ar_SA, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
126
static TYPELIB my_locale_typelib_day_names_ar_SA =
1 by brian
clean slate
127
 { array_elements(my_locale_day_names_ar_SA)-1, "", my_locale_day_names_ar_SA, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
128
static TYPELIB my_locale_typelib_ab_day_names_ar_SA =
1 by brian
clean slate
129
 { array_elements(my_locale_ab_day_names_ar_SA)-1, "", my_locale_ab_day_names_ar_SA, NULL };
130
MY_LOCALE my_locale_ar_SA
131
(
132
  9,
133
  "ar_SA",
134
  "Arabic - Saudi Arabia",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
135
  false,
1 by brian
clean slate
136
  &my_locale_typelib_month_names_ar_SA,
137
  &my_locale_typelib_ab_month_names_ar_SA,
138
  &my_locale_typelib_day_names_ar_SA,
139
  &my_locale_typelib_ab_day_names_ar_SA
140
);
141
/***** LOCALE END ar_SA *****/
142
143
/***** LOCALE BEGIN ar_SY: Arabic - Syria *****/
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
144
static const char *my_locale_month_names_ar_SY[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
145
 {"كانون الثاني","شباط","آذار","نيسان","نواران","حزير","تموز","آب","أيلول","تشرين الأول","تشرين الثاني","كانون الأول", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
146
static const char *my_locale_ab_month_names_ar_SY[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
147
 {"كانون الثاني","شباط","آذار","نيسان","نوار","حزيران","تموز","آب","أيلول","تشرين الأول","تشرين الثاني","كانون الأول", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
148
static const char *my_locale_day_names_ar_SY[8] =
149
 {"الاثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت","الأحد", NULL };
150
static const char *my_locale_ab_day_names_ar_SY[8] =
151
 {"الاثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت","الأحد", NULL };
152
static TYPELIB my_locale_typelib_month_names_ar_SY =
1 by brian
clean slate
153
 { array_elements(my_locale_month_names_ar_SY)-1, "", my_locale_month_names_ar_SY, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
154
static TYPELIB my_locale_typelib_ab_month_names_ar_SY =
1 by brian
clean slate
155
 { array_elements(my_locale_ab_month_names_ar_SY)-1, "", my_locale_ab_month_names_ar_SY, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
156
static TYPELIB my_locale_typelib_day_names_ar_SY =
1 by brian
clean slate
157
 { array_elements(my_locale_day_names_ar_SY)-1, "", my_locale_day_names_ar_SY, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
158
static TYPELIB my_locale_typelib_ab_day_names_ar_SY =
1 by brian
clean slate
159
 { array_elements(my_locale_ab_day_names_ar_SY)-1, "", my_locale_ab_day_names_ar_SY, NULL };
160
MY_LOCALE my_locale_ar_SY
161
(
162
  10,
163
  "ar_SY",
164
  "Arabic - Syria",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
165
  false,
1 by brian
clean slate
166
  &my_locale_typelib_month_names_ar_SY,
167
  &my_locale_typelib_ab_month_names_ar_SY,
168
  &my_locale_typelib_day_names_ar_SY,
169
  &my_locale_typelib_ab_day_names_ar_SY
170
);
171
/***** LOCALE END ar_SY *****/
172
173
/***** LOCALE BEGIN be_BY: Belarusian - Belarus *****/
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
174
static const char *my_locale_month_names_be_BY[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
175
 {"Студзень","Люты","Сакавік","Красавік","Травень","Чэрвень","Ліпень","Жнівень","Верасень","Кастрычнік","Лістапад","Снежань", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
176
static const char *my_locale_ab_month_names_be_BY[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
177
 {"Стд","Лют","Сак","Крс","Тра","Чэр","Ліп","Жнв","Врс","Кст","Ліс","Снж", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
178
static const char *my_locale_day_names_be_BY[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
179
 {"Панядзелак","Аўторак","Серада","Чацвер","Пятніца","Субота","Нядзеля", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
180
static const char *my_locale_ab_day_names_be_BY[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
181
 {"Пан","Аўт","Срд","Чцв","Пят","Суб","Няд", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
182
static TYPELIB my_locale_typelib_month_names_be_BY =
1 by brian
clean slate
183
 { array_elements(my_locale_month_names_be_BY)-1, "", my_locale_month_names_be_BY, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
184
static TYPELIB my_locale_typelib_ab_month_names_be_BY =
1 by brian
clean slate
185
 { array_elements(my_locale_ab_month_names_be_BY)-1, "", my_locale_ab_month_names_be_BY, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
186
static TYPELIB my_locale_typelib_day_names_be_BY =
1 by brian
clean slate
187
 { array_elements(my_locale_day_names_be_BY)-1, "", my_locale_day_names_be_BY, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
188
static TYPELIB my_locale_typelib_ab_day_names_be_BY =
1 by brian
clean slate
189
 { array_elements(my_locale_ab_day_names_be_BY)-1, "", my_locale_ab_day_names_be_BY, NULL };
190
MY_LOCALE my_locale_be_BY
191
(
192
  11,
193
  "be_BY",
194
  "Belarusian - Belarus",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
195
  false,
1 by brian
clean slate
196
  &my_locale_typelib_month_names_be_BY,
197
  &my_locale_typelib_ab_month_names_be_BY,
198
  &my_locale_typelib_day_names_be_BY,
199
  &my_locale_typelib_ab_day_names_be_BY
200
);
201
/***** LOCALE END be_BY *****/
202
203
/***** LOCALE BEGIN bg_BG: Bulgarian - Bulgaria *****/
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
204
static const char *my_locale_month_names_bg_BG[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
205
 {"януари","февруари","март","април","май","юни","юли","август","септември","октомври","ноември","декември", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
206
static const char *my_locale_ab_month_names_bg_BG[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
207
 {"яну","фев","мар","апр","май","юни","юли","авг","сеп","окт","ное","дек", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
208
static const char *my_locale_day_names_bg_BG[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
209
 {"понеделник","вторник","сряда","четвъртък","петък","събота","неделя", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
210
static const char *my_locale_ab_day_names_bg_BG[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
211
 {"пн","вт","ср","чт","пт","сб","нд", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
212
static TYPELIB my_locale_typelib_month_names_bg_BG =
1 by brian
clean slate
213
 { array_elements(my_locale_month_names_bg_BG)-1, "", my_locale_month_names_bg_BG, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
214
static TYPELIB my_locale_typelib_ab_month_names_bg_BG =
1 by brian
clean slate
215
 { array_elements(my_locale_ab_month_names_bg_BG)-1, "", my_locale_ab_month_names_bg_BG, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
216
static TYPELIB my_locale_typelib_day_names_bg_BG =
1 by brian
clean slate
217
 { array_elements(my_locale_day_names_bg_BG)-1, "", my_locale_day_names_bg_BG, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
218
static TYPELIB my_locale_typelib_ab_day_names_bg_BG =
1 by brian
clean slate
219
 { array_elements(my_locale_ab_day_names_bg_BG)-1, "", my_locale_ab_day_names_bg_BG, NULL };
220
MY_LOCALE my_locale_bg_BG
221
(
222
  12,
223
  "bg_BG",
224
  "Bulgarian - Bulgaria",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
225
  false,
1 by brian
clean slate
226
  &my_locale_typelib_month_names_bg_BG,
227
  &my_locale_typelib_ab_month_names_bg_BG,
228
  &my_locale_typelib_day_names_bg_BG,
229
  &my_locale_typelib_ab_day_names_bg_BG
230
);
231
/***** LOCALE END bg_BG *****/
232
233
/***** LOCALE BEGIN ca_ES: Catalan - Catalan *****/
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
234
static const char *my_locale_month_names_ca_ES[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
235
 {"gener","febrer","març","abril","maig","juny","juliol","agost","setembre","octubre","novembre","desembre", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
236
static const char *my_locale_ab_month_names_ca_ES[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
237
 {"gen","feb","mar","abr","mai","jun","jul","ago","set","oct","nov","des", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
238
static const char *my_locale_day_names_ca_ES[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
239
 {"dilluns","dimarts","dimecres","dijous","divendres","dissabte","diumenge", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
240
static const char *my_locale_ab_day_names_ca_ES[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
241
 {"dl","dt","dc","dj","dv","ds","dg", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
242
static TYPELIB my_locale_typelib_month_names_ca_ES =
1 by brian
clean slate
243
 { array_elements(my_locale_month_names_ca_ES)-1, "", my_locale_month_names_ca_ES, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
244
static TYPELIB my_locale_typelib_ab_month_names_ca_ES =
1 by brian
clean slate
245
 { array_elements(my_locale_ab_month_names_ca_ES)-1, "", my_locale_ab_month_names_ca_ES, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
246
static TYPELIB my_locale_typelib_day_names_ca_ES =
1 by brian
clean slate
247
 { array_elements(my_locale_day_names_ca_ES)-1, "", my_locale_day_names_ca_ES, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
248
static TYPELIB my_locale_typelib_ab_day_names_ca_ES =
1 by brian
clean slate
249
 { array_elements(my_locale_ab_day_names_ca_ES)-1, "", my_locale_ab_day_names_ca_ES, NULL };
250
MY_LOCALE my_locale_ca_ES
251
(
252
  13,
253
  "ca_ES",
254
  "Catalan - Catalan",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
255
  false,
1 by brian
clean slate
256
  &my_locale_typelib_month_names_ca_ES,
257
  &my_locale_typelib_ab_month_names_ca_ES,
258
  &my_locale_typelib_day_names_ca_ES,
259
  &my_locale_typelib_ab_day_names_ca_ES
260
);
261
/***** LOCALE END ca_ES *****/
262
263
/***** LOCALE BEGIN cs_CZ: Czech - Czech Republic *****/
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
264
static const char *my_locale_month_names_cs_CZ[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
265
 {"leden","únor","březen","duben","květen","červen","červenec","srpen","září","říjen","listopad","prosinec", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
266
static const char *my_locale_ab_month_names_cs_CZ[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
267
 {"led","úno","bře","dub","kvě","čen","čec","srp","zář","říj","lis","pro", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
268
static const char *my_locale_day_names_cs_CZ[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
269
 {"Pondělí","Úterý","Středa","Čtvrtek","Pátek","Sobota","Neděle", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
270
static const char *my_locale_ab_day_names_cs_CZ[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
271
 {"Po","Út","St","Čt","Pá","So","Ne", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
272
static TYPELIB my_locale_typelib_month_names_cs_CZ =
1 by brian
clean slate
273
 { array_elements(my_locale_month_names_cs_CZ)-1, "", my_locale_month_names_cs_CZ, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
274
static TYPELIB my_locale_typelib_ab_month_names_cs_CZ =
1 by brian
clean slate
275
 { array_elements(my_locale_ab_month_names_cs_CZ)-1, "", my_locale_ab_month_names_cs_CZ, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
276
static TYPELIB my_locale_typelib_day_names_cs_CZ =
1 by brian
clean slate
277
 { array_elements(my_locale_day_names_cs_CZ)-1, "", my_locale_day_names_cs_CZ, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
278
static TYPELIB my_locale_typelib_ab_day_names_cs_CZ =
1 by brian
clean slate
279
 { array_elements(my_locale_ab_day_names_cs_CZ)-1, "", my_locale_ab_day_names_cs_CZ, NULL };
280
MY_LOCALE my_locale_cs_CZ
281
(
282
  14,
283
  "cs_CZ",
284
  "Czech - Czech Republic",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
285
  false,
1 by brian
clean slate
286
  &my_locale_typelib_month_names_cs_CZ,
287
  &my_locale_typelib_ab_month_names_cs_CZ,
288
  &my_locale_typelib_day_names_cs_CZ,
289
  &my_locale_typelib_ab_day_names_cs_CZ
290
);
291
/***** LOCALE END cs_CZ *****/
292
293
/***** LOCALE BEGIN da_DK: Danish - Denmark *****/
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
294
static const char *my_locale_month_names_da_DK[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
295
 {"januar","februar","marts","april","maj","juni","juli","august","september","oktober","november","december", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
296
static const char *my_locale_ab_month_names_da_DK[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
297
 {"jan","feb","mar","apr","maj","jun","jul","aug","sep","okt","nov","dec", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
298
static const char *my_locale_day_names_da_DK[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
299
 {"mandag","tirsdag","onsdag","torsdag","fredag","lørdag","søndag", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
300
static const char *my_locale_ab_day_names_da_DK[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
301
 {"man","tir","ons","tor","fre","lør","søn", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
302
static TYPELIB my_locale_typelib_month_names_da_DK =
1 by brian
clean slate
303
 { array_elements(my_locale_month_names_da_DK)-1, "", my_locale_month_names_da_DK, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
304
static TYPELIB my_locale_typelib_ab_month_names_da_DK =
1 by brian
clean slate
305
 { array_elements(my_locale_ab_month_names_da_DK)-1, "", my_locale_ab_month_names_da_DK, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
306
static TYPELIB my_locale_typelib_day_names_da_DK =
1 by brian
clean slate
307
 { array_elements(my_locale_day_names_da_DK)-1, "", my_locale_day_names_da_DK, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
308
static TYPELIB my_locale_typelib_ab_day_names_da_DK =
1 by brian
clean slate
309
 { array_elements(my_locale_ab_day_names_da_DK)-1, "", my_locale_ab_day_names_da_DK, NULL };
310
MY_LOCALE my_locale_da_DK
311
(
312
  15,
313
  "da_DK",
314
  "Danish - Denmark",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
315
  false,
1 by brian
clean slate
316
  &my_locale_typelib_month_names_da_DK,
317
  &my_locale_typelib_ab_month_names_da_DK,
318
  &my_locale_typelib_day_names_da_DK,
319
  &my_locale_typelib_ab_day_names_da_DK
320
);
321
/***** LOCALE END da_DK *****/
322
323
/***** LOCALE BEGIN de_AT: German - Austria *****/
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
324
static const char *my_locale_month_names_de_AT[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
325
 {"Jänner","Feber","März","April","Mai","Juni","Juli","August","September","Oktober","November","Dezember", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
326
static const char *my_locale_ab_month_names_de_AT[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
327
 {"Jän","Feb","Mär","Apr","Mai","Jun","Jul","Aug","Sep","Okt","Nov","Dez", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
328
static const char *my_locale_day_names_de_AT[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
329
 {"Montag","Dienstag","Mittwoch","Donnerstag","Freitag","Samstag","Sonntag", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
330
static const char *my_locale_ab_day_names_de_AT[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
331
 {"Mon","Die","Mit","Don","Fre","Sam","Son", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
332
static TYPELIB my_locale_typelib_month_names_de_AT =
1 by brian
clean slate
333
 { array_elements(my_locale_month_names_de_AT)-1, "", my_locale_month_names_de_AT, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
334
static TYPELIB my_locale_typelib_ab_month_names_de_AT =
1 by brian
clean slate
335
 { array_elements(my_locale_ab_month_names_de_AT)-1, "", my_locale_ab_month_names_de_AT, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
336
static TYPELIB my_locale_typelib_day_names_de_AT =
1 by brian
clean slate
337
 { array_elements(my_locale_day_names_de_AT)-1, "", my_locale_day_names_de_AT, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
338
static TYPELIB my_locale_typelib_ab_day_names_de_AT =
1 by brian
clean slate
339
 { array_elements(my_locale_ab_day_names_de_AT)-1, "", my_locale_ab_day_names_de_AT, NULL };
340
MY_LOCALE my_locale_de_AT
341
(
342
  16,
343
  "de_AT",
344
  "German - Austria",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
345
  false,
1 by brian
clean slate
346
  &my_locale_typelib_month_names_de_AT,
347
  &my_locale_typelib_ab_month_names_de_AT,
348
  &my_locale_typelib_day_names_de_AT,
349
  &my_locale_typelib_ab_day_names_de_AT
350
);
351
/***** LOCALE END de_AT *****/
352
353
/***** LOCALE BEGIN de_DE: German - Germany *****/
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
354
static const char *my_locale_month_names_de_DE[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
355
 {"Januar","Februar","März","April","Mai","Juni","Juli","August","September","Oktober","November","Dezember", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
356
static const char *my_locale_ab_month_names_de_DE[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
357
 {"Jan","Feb","Mär","Apr","Mai","Jun","Jul","Aug","Sep","Okt","Nov","Dez", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
358
static const char *my_locale_day_names_de_DE[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
359
 {"Montag","Dienstag","Mittwoch","Donnerstag","Freitag","Samstag","Sonntag", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
360
static const char *my_locale_ab_day_names_de_DE[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
361
 {"Mo","Di","Mi","Do","Fr","Sa","So", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
362
static TYPELIB my_locale_typelib_month_names_de_DE =
1 by brian
clean slate
363
 { array_elements(my_locale_month_names_de_DE)-1, "", my_locale_month_names_de_DE, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
364
static TYPELIB my_locale_typelib_ab_month_names_de_DE =
1 by brian
clean slate
365
 { array_elements(my_locale_ab_month_names_de_DE)-1, "", my_locale_ab_month_names_de_DE, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
366
static TYPELIB my_locale_typelib_day_names_de_DE =
1 by brian
clean slate
367
 { array_elements(my_locale_day_names_de_DE)-1, "", my_locale_day_names_de_DE, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
368
static TYPELIB my_locale_typelib_ab_day_names_de_DE =
1 by brian
clean slate
369
 { array_elements(my_locale_ab_day_names_de_DE)-1, "", my_locale_ab_day_names_de_DE, NULL };
370
MY_LOCALE my_locale_de_DE
371
(
372
  4,
373
  "de_DE",
374
  "German - Germany",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
375
  false,
1 by brian
clean slate
376
  &my_locale_typelib_month_names_de_DE,
377
  &my_locale_typelib_ab_month_names_de_DE,
378
  &my_locale_typelib_day_names_de_DE,
379
  &my_locale_typelib_ab_day_names_de_DE
380
);
381
/***** LOCALE END de_DE *****/
382
383
/***** LOCALE BEGIN en_US: English - United States *****/
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
384
static const char *my_locale_month_names_en_US[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
385
 {"January","February","March","April","May","June","July","August","September","October","November","December", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
386
static const char *my_locale_ab_month_names_en_US[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
387
 {"Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
388
static const char *my_locale_day_names_en_US[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
389
 {"Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
390
static const char *my_locale_ab_day_names_en_US[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
391
 {"Mon","Tue","Wed","Thu","Fri","Sat","Sun", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
392
static TYPELIB my_locale_typelib_month_names_en_US =
1 by brian
clean slate
393
 { array_elements(my_locale_month_names_en_US)-1, "", my_locale_month_names_en_US, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
394
static TYPELIB my_locale_typelib_ab_month_names_en_US =
1 by brian
clean slate
395
 { array_elements(my_locale_ab_month_names_en_US)-1, "", my_locale_ab_month_names_en_US, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
396
static TYPELIB my_locale_typelib_day_names_en_US =
1 by brian
clean slate
397
 { array_elements(my_locale_day_names_en_US)-1, "", my_locale_day_names_en_US, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
398
static TYPELIB my_locale_typelib_ab_day_names_en_US =
1 by brian
clean slate
399
 { array_elements(my_locale_ab_day_names_en_US)-1, "", my_locale_ab_day_names_en_US, NULL };
400
MY_LOCALE my_locale_en_US
401
(
402
  0,
403
  "en_US",
404
  "English - United States",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
405
  true,
1 by brian
clean slate
406
  &my_locale_typelib_month_names_en_US,
407
  &my_locale_typelib_ab_month_names_en_US,
408
  &my_locale_typelib_day_names_en_US,
409
  &my_locale_typelib_ab_day_names_en_US
410
);
411
/***** LOCALE END en_US *****/
412
413
/***** LOCALE BEGIN es_ES: Spanish - Spain *****/
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
414
static const char *my_locale_month_names_es_ES[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
415
 {"enero","febrero","marzo","abril","mayo","junio","julio","agosto","septiembre","octubre","noviembre","diciembre", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
416
static const char *my_locale_ab_month_names_es_ES[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
417
 {"ene","feb","mar","abr","may","jun","jul","ago","sep","oct","nov","dic", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
418
static const char *my_locale_day_names_es_ES[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
419
 {"lunes","martes","miércoles","jueves","viernes","sábado","domingo", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
420
static const char *my_locale_ab_day_names_es_ES[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
421
 {"lun","mar","mié","jue","vie","sáb","dom", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
422
static TYPELIB my_locale_typelib_month_names_es_ES =
1 by brian
clean slate
423
 { array_elements(my_locale_month_names_es_ES)-1, "", my_locale_month_names_es_ES, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
424
static TYPELIB my_locale_typelib_ab_month_names_es_ES =
1 by brian
clean slate
425
 { array_elements(my_locale_ab_month_names_es_ES)-1, "", my_locale_ab_month_names_es_ES, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
426
static TYPELIB my_locale_typelib_day_names_es_ES =
1 by brian
clean slate
427
 { array_elements(my_locale_day_names_es_ES)-1, "", my_locale_day_names_es_ES, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
428
static TYPELIB my_locale_typelib_ab_day_names_es_ES =
1 by brian
clean slate
429
 { array_elements(my_locale_ab_day_names_es_ES)-1, "", my_locale_ab_day_names_es_ES, NULL };
430
MY_LOCALE my_locale_es_ES
431
(
432
  17,
433
  "es_ES",
434
  "Spanish - Spain",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
435
  false,
1 by brian
clean slate
436
  &my_locale_typelib_month_names_es_ES,
437
  &my_locale_typelib_ab_month_names_es_ES,
438
  &my_locale_typelib_day_names_es_ES,
439
  &my_locale_typelib_ab_day_names_es_ES
440
);
441
/***** LOCALE END es_ES *****/
442
443
/***** LOCALE BEGIN et_EE: Estonian - Estonia *****/
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
444
static const char *my_locale_month_names_et_EE[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
445
 {"jaanuar","veebruar","märts","aprill","mai","juuni","juuli","august","september","oktoober","november","detsember", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
446
static const char *my_locale_ab_month_names_et_EE[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
447
 {"jaan ","veebr","märts","apr  ","mai  ","juuni","juuli","aug  ","sept ","okt  ","nov  ","dets ", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
448
static const char *my_locale_day_names_et_EE[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
449
 {"esmaspäev","teisipäev","kolmapäev","neljapäev","reede","laupäev","pühapäev", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
450
static const char *my_locale_ab_day_names_et_EE[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
451
 {"E","T","K","N","R","L","P", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
452
static TYPELIB my_locale_typelib_month_names_et_EE =
1 by brian
clean slate
453
 { array_elements(my_locale_month_names_et_EE)-1, "", my_locale_month_names_et_EE, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
454
static TYPELIB my_locale_typelib_ab_month_names_et_EE =
1 by brian
clean slate
455
 { array_elements(my_locale_ab_month_names_et_EE)-1, "", my_locale_ab_month_names_et_EE, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
456
static TYPELIB my_locale_typelib_day_names_et_EE =
1 by brian
clean slate
457
 { array_elements(my_locale_day_names_et_EE)-1, "", my_locale_day_names_et_EE, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
458
static TYPELIB my_locale_typelib_ab_day_names_et_EE =
1 by brian
clean slate
459
 { array_elements(my_locale_ab_day_names_et_EE)-1, "", my_locale_ab_day_names_et_EE, NULL };
460
MY_LOCALE my_locale_et_EE
461
(
462
  18,
463
  "et_EE",
464
  "Estonian - Estonia",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
465
  false,
1 by brian
clean slate
466
  &my_locale_typelib_month_names_et_EE,
467
  &my_locale_typelib_ab_month_names_et_EE,
468
  &my_locale_typelib_day_names_et_EE,
469
  &my_locale_typelib_ab_day_names_et_EE
470
);
471
/***** LOCALE END et_EE *****/
472
473
/***** LOCALE BEGIN eu_ES: Basque - Basque *****/
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
474
static const char *my_locale_month_names_eu_ES[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
475
 {"urtarrila","otsaila","martxoa","apirila","maiatza","ekaina","uztaila","abuztua","iraila","urria","azaroa","abendua", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
476
static const char *my_locale_ab_month_names_eu_ES[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
477
 {"urt","ots","mar","api","mai","eka","uzt","abu","ira","urr","aza","abe", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
478
static const char *my_locale_day_names_eu_ES[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
479
 {"astelehena","asteartea","asteazkena","osteguna","ostirala","larunbata","igandea", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
480
static const char *my_locale_ab_day_names_eu_ES[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
481
 {"al.","ar.","az.","og.","or.","lr.","ig.", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
482
static TYPELIB my_locale_typelib_month_names_eu_ES =
1 by brian
clean slate
483
 { array_elements(my_locale_month_names_eu_ES)-1, "", my_locale_month_names_eu_ES, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
484
static TYPELIB my_locale_typelib_ab_month_names_eu_ES =
1 by brian
clean slate
485
 { array_elements(my_locale_ab_month_names_eu_ES)-1, "", my_locale_ab_month_names_eu_ES, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
486
static TYPELIB my_locale_typelib_day_names_eu_ES =
1 by brian
clean slate
487
 { array_elements(my_locale_day_names_eu_ES)-1, "", my_locale_day_names_eu_ES, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
488
static TYPELIB my_locale_typelib_ab_day_names_eu_ES =
1 by brian
clean slate
489
 { array_elements(my_locale_ab_day_names_eu_ES)-1, "", my_locale_ab_day_names_eu_ES, NULL };
490
MY_LOCALE my_locale_eu_ES
491
(
492
  19,
493
  "eu_ES",
494
  "Basque - Basque",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
495
  true,
1 by brian
clean slate
496
  &my_locale_typelib_month_names_eu_ES,
497
  &my_locale_typelib_ab_month_names_eu_ES,
498
  &my_locale_typelib_day_names_eu_ES,
499
  &my_locale_typelib_ab_day_names_eu_ES
500
);
501
/***** LOCALE END eu_ES *****/
502
503
/***** LOCALE BEGIN fi_FI: Finnish - Finland *****/
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
504
static const char *my_locale_month_names_fi_FI[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
505
 {"tammikuu","helmikuu","maaliskuu","huhtikuu","toukokuu","kesäkuu","heinäkuu","elokuu","syyskuu","lokakuu","marraskuu","joulukuu", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
506
static const char *my_locale_ab_month_names_fi_FI[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
507
 {"tammi ","helmi ","maalis","huhti ","touko ","kesä  ","heinä ","elo   ","syys  ","loka  ","marras","joulu ", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
508
static const char *my_locale_day_names_fi_FI[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
509
 {"maanantai","tiistai","keskiviikko","torstai","perjantai","lauantai","sunnuntai", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
510
static const char *my_locale_ab_day_names_fi_FI[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
511
 {"ma","ti","ke","to","pe","la","su", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
512
static TYPELIB my_locale_typelib_month_names_fi_FI =
1 by brian
clean slate
513
 { array_elements(my_locale_month_names_fi_FI)-1, "", my_locale_month_names_fi_FI, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
514
static TYPELIB my_locale_typelib_ab_month_names_fi_FI =
1 by brian
clean slate
515
 { array_elements(my_locale_ab_month_names_fi_FI)-1, "", my_locale_ab_month_names_fi_FI, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
516
static TYPELIB my_locale_typelib_day_names_fi_FI =
1 by brian
clean slate
517
 { array_elements(my_locale_day_names_fi_FI)-1, "", my_locale_day_names_fi_FI, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
518
static TYPELIB my_locale_typelib_ab_day_names_fi_FI =
1 by brian
clean slate
519
 { array_elements(my_locale_ab_day_names_fi_FI)-1, "", my_locale_ab_day_names_fi_FI, NULL };
520
MY_LOCALE my_locale_fi_FI
521
(
522
  20,
523
  "fi_FI",
524
  "Finnish - Finland",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
525
  false,
1 by brian
clean slate
526
  &my_locale_typelib_month_names_fi_FI,
527
  &my_locale_typelib_ab_month_names_fi_FI,
528
  &my_locale_typelib_day_names_fi_FI,
529
  &my_locale_typelib_ab_day_names_fi_FI
530
);
531
/***** LOCALE END fi_FI *****/
532
533
/***** LOCALE BEGIN fo_FO: Faroese - Faroe Islands *****/
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
534
static const char *my_locale_month_names_fo_FO[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
535
 {"januar","februar","mars","apríl","mai","juni","juli","august","september","oktober","november","desember", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
536
static const char *my_locale_ab_month_names_fo_FO[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
537
 {"jan","feb","mar","apr","mai","jun","jul","aug","sep","okt","nov","des", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
538
static const char *my_locale_day_names_fo_FO[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
539
 {"mánadagur","týsdagur","mikudagur","hósdagur","fríggjadagur","leygardagur","sunnudagur", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
540
static const char *my_locale_ab_day_names_fo_FO[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
541
 {"mán","týs","mik","hós","frí","ley","sun", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
542
static TYPELIB my_locale_typelib_month_names_fo_FO =
1 by brian
clean slate
543
 { array_elements(my_locale_month_names_fo_FO)-1, "", my_locale_month_names_fo_FO, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
544
static TYPELIB my_locale_typelib_ab_month_names_fo_FO =
1 by brian
clean slate
545
 { array_elements(my_locale_ab_month_names_fo_FO)-1, "", my_locale_ab_month_names_fo_FO, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
546
static TYPELIB my_locale_typelib_day_names_fo_FO =
1 by brian
clean slate
547
 { array_elements(my_locale_day_names_fo_FO)-1, "", my_locale_day_names_fo_FO, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
548
static TYPELIB my_locale_typelib_ab_day_names_fo_FO =
1 by brian
clean slate
549
 { array_elements(my_locale_ab_day_names_fo_FO)-1, "", my_locale_ab_day_names_fo_FO, NULL };
550
MY_LOCALE my_locale_fo_FO
551
(
552
  21,
553
  "fo_FO",
554
  "Faroese - Faroe Islands",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
555
  false,
1 by brian
clean slate
556
  &my_locale_typelib_month_names_fo_FO,
557
  &my_locale_typelib_ab_month_names_fo_FO,
558
  &my_locale_typelib_day_names_fo_FO,
559
  &my_locale_typelib_ab_day_names_fo_FO
560
);
561
/***** LOCALE END fo_FO *****/
562
563
/***** LOCALE BEGIN fr_FR: French - France *****/
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
564
static const char *my_locale_month_names_fr_FR[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
565
 {"janvier","février","mars","avril","mai","juin","juillet","août","septembre","octobre","novembre","décembre", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
566
static const char *my_locale_ab_month_names_fr_FR[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
567
 {"jan","fév","mar","avr","mai","jun","jui","aoû","sep","oct","nov","déc", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
568
static const char *my_locale_day_names_fr_FR[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
569
 {"lundi","mardi","mercredi","jeudi","vendredi","samedi","dimanche", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
570
static const char *my_locale_ab_day_names_fr_FR[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
571
 {"lun","mar","mer","jeu","ven","sam","dim", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
572
static TYPELIB my_locale_typelib_month_names_fr_FR =
1 by brian
clean slate
573
 { array_elements(my_locale_month_names_fr_FR)-1, "", my_locale_month_names_fr_FR, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
574
static TYPELIB my_locale_typelib_ab_month_names_fr_FR =
1 by brian
clean slate
575
 { array_elements(my_locale_ab_month_names_fr_FR)-1, "", my_locale_ab_month_names_fr_FR, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
576
static TYPELIB my_locale_typelib_day_names_fr_FR =
1 by brian
clean slate
577
 { array_elements(my_locale_day_names_fr_FR)-1, "", my_locale_day_names_fr_FR, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
578
static TYPELIB my_locale_typelib_ab_day_names_fr_FR =
1 by brian
clean slate
579
 { array_elements(my_locale_ab_day_names_fr_FR)-1, "", my_locale_ab_day_names_fr_FR, NULL };
580
MY_LOCALE my_locale_fr_FR
581
(
582
  5,
583
  "fr_FR",
584
  "French - France",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
585
  false,
1 by brian
clean slate
586
  &my_locale_typelib_month_names_fr_FR,
587
  &my_locale_typelib_ab_month_names_fr_FR,
588
  &my_locale_typelib_day_names_fr_FR,
589
  &my_locale_typelib_ab_day_names_fr_FR
590
);
591
/***** LOCALE END fr_FR *****/
592
593
/***** LOCALE BEGIN gl_ES: Galician - Galician *****/
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
594
static const char *my_locale_month_names_gl_ES[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
595
 {"Xaneiro","Febreiro","Marzo","Abril","Maio","Xuño","Xullo","Agosto","Setembro","Outubro","Novembro","Decembro", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
596
static const char *my_locale_ab_month_names_gl_ES[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
597
 {"Xan","Feb","Mar","Abr","Mai","Xuñ","Xul","Ago","Set","Out","Nov","Dec", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
598
static const char *my_locale_day_names_gl_ES[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
599
 {"Luns","Martes","Mércores","Xoves","Venres","Sábado","Domingo", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
600
static const char *my_locale_ab_day_names_gl_ES[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
601
 {"Lun","Mar","Mér","Xov","Ven","Sáb","Dom", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
602
static TYPELIB my_locale_typelib_month_names_gl_ES =
1 by brian
clean slate
603
 { array_elements(my_locale_month_names_gl_ES)-1, "", my_locale_month_names_gl_ES, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
604
static TYPELIB my_locale_typelib_ab_month_names_gl_ES =
1 by brian
clean slate
605
 { array_elements(my_locale_ab_month_names_gl_ES)-1, "", my_locale_ab_month_names_gl_ES, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
606
static TYPELIB my_locale_typelib_day_names_gl_ES =
1 by brian
clean slate
607
 { array_elements(my_locale_day_names_gl_ES)-1, "", my_locale_day_names_gl_ES, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
608
static TYPELIB my_locale_typelib_ab_day_names_gl_ES =
1 by brian
clean slate
609
 { array_elements(my_locale_ab_day_names_gl_ES)-1, "", my_locale_ab_day_names_gl_ES, NULL };
610
MY_LOCALE my_locale_gl_ES
611
(
612
  22,
613
  "gl_ES",
614
  "Galician - Galician",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
615
  false,
1 by brian
clean slate
616
  &my_locale_typelib_month_names_gl_ES,
617
  &my_locale_typelib_ab_month_names_gl_ES,
618
  &my_locale_typelib_day_names_gl_ES,
619
  &my_locale_typelib_ab_day_names_gl_ES
620
);
621
/***** LOCALE END gl_ES *****/
622
623
/***** LOCALE BEGIN gu_IN: Gujarati - India *****/
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
624
static const char *my_locale_month_names_gu_IN[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
625
 {"જાન્યુઆરી","ફેબ્રુઆરી","માર્ચ","એપ્રિલ","મે","જુન","જુલાઇ","ઓગસ્ટ","સેપ્ટેમ્બર","ઓક્ટોબર","નવેમ્બર","ડિસેમ્બર", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
626
static const char *my_locale_ab_month_names_gu_IN[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
627
 {"જાન","ફેબ","માર","એપ્ર","મે","જુન","જુલ","ઓગ","સેપ્ટ","ઓક્ટ","નોવ","ડિસ", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
628
static const char *my_locale_day_names_gu_IN[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
629
 {"સોમવાર","મન્ગળવાર","બુધવાર","ગુરુવાર","શુક્રવાર","શનિવાર","રવિવાર", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
630
static const char *my_locale_ab_day_names_gu_IN[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
631
 {"સોમ","મન્ગળ","બુધ","ગુરુ","શુક્ર","શનિ","રવિ", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
632
static TYPELIB my_locale_typelib_month_names_gu_IN =
1 by brian
clean slate
633
 { array_elements(my_locale_month_names_gu_IN)-1, "", my_locale_month_names_gu_IN, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
634
static TYPELIB my_locale_typelib_ab_month_names_gu_IN =
1 by brian
clean slate
635
 { array_elements(my_locale_ab_month_names_gu_IN)-1, "", my_locale_ab_month_names_gu_IN, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
636
static TYPELIB my_locale_typelib_day_names_gu_IN =
1 by brian
clean slate
637
 { array_elements(my_locale_day_names_gu_IN)-1, "", my_locale_day_names_gu_IN, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
638
static TYPELIB my_locale_typelib_ab_day_names_gu_IN =
1 by brian
clean slate
639
 { array_elements(my_locale_ab_day_names_gu_IN)-1, "", my_locale_ab_day_names_gu_IN, NULL };
640
MY_LOCALE my_locale_gu_IN
641
(
642
  23,
643
  "gu_IN",
644
  "Gujarati - India",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
645
  false,
1 by brian
clean slate
646
  &my_locale_typelib_month_names_gu_IN,
647
  &my_locale_typelib_ab_month_names_gu_IN,
648
  &my_locale_typelib_day_names_gu_IN,
649
  &my_locale_typelib_ab_day_names_gu_IN
650
);
651
/***** LOCALE END gu_IN *****/
652
653
/***** LOCALE BEGIN he_IL: Hebrew - Israel *****/
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
654
static const char *my_locale_month_names_he_IL[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
655
 {"ינואר","פברואר","מרץ","אפריל","מאי","יוני","יולי","אוגוסט","ספטמבר","אוקטובר","נובמבר","דצמבר", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
656
static const char *my_locale_ab_month_names_he_IL[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
657
 {"ינו","פבר","מרץ","אפר","מאי","יונ","יול","אוג","ספט","אוק","נוב","דצמ", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
658
static const char *my_locale_day_names_he_IL[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
659
 {"שני","שלישי","רביעי","חמישי","שישי","שבת","ראשון", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
660
static const char *my_locale_ab_day_names_he_IL[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
661
 {"ב'","ג'","ד'","ה'","ו'","ש'","א'", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
662
static TYPELIB my_locale_typelib_month_names_he_IL =
1 by brian
clean slate
663
 { array_elements(my_locale_month_names_he_IL)-1, "", my_locale_month_names_he_IL, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
664
static TYPELIB my_locale_typelib_ab_month_names_he_IL =
1 by brian
clean slate
665
 { array_elements(my_locale_ab_month_names_he_IL)-1, "", my_locale_ab_month_names_he_IL, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
666
static TYPELIB my_locale_typelib_day_names_he_IL =
1 by brian
clean slate
667
 { array_elements(my_locale_day_names_he_IL)-1, "", my_locale_day_names_he_IL, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
668
static TYPELIB my_locale_typelib_ab_day_names_he_IL =
1 by brian
clean slate
669
 { array_elements(my_locale_ab_day_names_he_IL)-1, "", my_locale_ab_day_names_he_IL, NULL };
670
MY_LOCALE my_locale_he_IL
671
(
672
  24,
673
  "he_IL",
674
  "Hebrew - Israel",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
675
  false,
1 by brian
clean slate
676
  &my_locale_typelib_month_names_he_IL,
677
  &my_locale_typelib_ab_month_names_he_IL,
678
  &my_locale_typelib_day_names_he_IL,
679
  &my_locale_typelib_ab_day_names_he_IL
680
);
681
/***** LOCALE END he_IL *****/
682
683
/***** LOCALE BEGIN hi_IN: Hindi - India *****/
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
684
static const char *my_locale_month_names_hi_IN[13] =
685
 {"जनवरी","फ़रवरी","मार्च","अप्रेल","मई","जून","जुलाई","अगस्त","सितम्बर","अक्टूबर","नवम्बर","दिसम्बर", NULL };
686
static const char *my_locale_ab_month_names_hi_IN[13] =
687
 {"जनवरी","फ़रवरी","मार्च","अप्रेल","मई","जून","जुलाई","अगस्त","सितम्बर","अक्टूबर","नवम्बर","दिसम्बर", NULL };
688
static const char *my_locale_day_names_hi_IN[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
689
 {"सोमवार ","मंगलवार ","बुधवार ","गुरुवार ","शुक्रवार ","शनिवार ","रविवार ", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
690
static const char *my_locale_ab_day_names_hi_IN[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
691
 {"सोम ","मंगल ","बुध ","गुरु ","शुक्र ","शनि ","रवि ", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
692
static TYPELIB my_locale_typelib_month_names_hi_IN =
1 by brian
clean slate
693
 { array_elements(my_locale_month_names_hi_IN)-1, "", my_locale_month_names_hi_IN, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
694
static TYPELIB my_locale_typelib_ab_month_names_hi_IN =
1 by brian
clean slate
695
 { array_elements(my_locale_ab_month_names_hi_IN)-1, "", my_locale_ab_month_names_hi_IN, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
696
static TYPELIB my_locale_typelib_day_names_hi_IN =
1 by brian
clean slate
697
 { array_elements(my_locale_day_names_hi_IN)-1, "", my_locale_day_names_hi_IN, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
698
static TYPELIB my_locale_typelib_ab_day_names_hi_IN =
1 by brian
clean slate
699
 { array_elements(my_locale_ab_day_names_hi_IN)-1, "", my_locale_ab_day_names_hi_IN, NULL };
700
MY_LOCALE my_locale_hi_IN
701
(
702
  25,
703
  "hi_IN",
704
  "Hindi - India",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
705
  false,
1 by brian
clean slate
706
  &my_locale_typelib_month_names_hi_IN,
707
  &my_locale_typelib_ab_month_names_hi_IN,
708
  &my_locale_typelib_day_names_hi_IN,
709
  &my_locale_typelib_ab_day_names_hi_IN
710
);
711
/***** LOCALE END hi_IN *****/
712
713
/***** LOCALE BEGIN hr_HR: Croatian - Croatia *****/
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
714
static const char *my_locale_month_names_hr_HR[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
715
 {"Siječanj","Veljača","Ožujak","Travanj","Svibanj","Lipanj","Srpanj","Kolovoz","Rujan","Listopad","Studeni","Prosinac", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
716
static const char *my_locale_ab_month_names_hr_HR[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
717
 {"Sij","Vel","Ožu","Tra","Svi","Lip","Srp","Kol","Ruj","Lis","Stu","Pro", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
718
static const char *my_locale_day_names_hr_HR[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
719
 {"Ponedjeljak","Utorak","Srijeda","Četvrtak","Petak","Subota","Nedjelja", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
720
static const char *my_locale_ab_day_names_hr_HR[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
721
 {"Pon","Uto","Sri","Čet","Pet","Sub","Ned", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
722
static TYPELIB my_locale_typelib_month_names_hr_HR =
1 by brian
clean slate
723
 { array_elements(my_locale_month_names_hr_HR)-1, "", my_locale_month_names_hr_HR, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
724
static TYPELIB my_locale_typelib_ab_month_names_hr_HR =
1 by brian
clean slate
725
 { array_elements(my_locale_ab_month_names_hr_HR)-1, "", my_locale_ab_month_names_hr_HR, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
726
static TYPELIB my_locale_typelib_day_names_hr_HR =
1 by brian
clean slate
727
 { array_elements(my_locale_day_names_hr_HR)-1, "", my_locale_day_names_hr_HR, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
728
static TYPELIB my_locale_typelib_ab_day_names_hr_HR =
1 by brian
clean slate
729
 { array_elements(my_locale_ab_day_names_hr_HR)-1, "", my_locale_ab_day_names_hr_HR, NULL };
730
MY_LOCALE my_locale_hr_HR
731
(
732
  26,
733
  "hr_HR",
734
  "Croatian - Croatia",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
735
  false,
1 by brian
clean slate
736
  &my_locale_typelib_month_names_hr_HR,
737
  &my_locale_typelib_ab_month_names_hr_HR,
738
  &my_locale_typelib_day_names_hr_HR,
739
  &my_locale_typelib_ab_day_names_hr_HR
740
);
741
/***** LOCALE END hr_HR *****/
742
743
/***** LOCALE BEGIN hu_HU: Hungarian - Hungary *****/
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
744
static const char *my_locale_month_names_hu_HU[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
745
 {"január","február","március","április","május","június","július","augusztus","szeptember","október","november","december", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
746
static const char *my_locale_ab_month_names_hu_HU[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
747
 {"jan","feb","már","ápr","máj","jún","júl","aug","sze","okt","nov","dec", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
748
static const char *my_locale_day_names_hu_HU[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
749
 {"hétfő","kedd","szerda","csütörtök","péntek","szombat","vasárnap", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
750
static const char *my_locale_ab_day_names_hu_HU[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
751
 {"h","k","sze","cs","p","szo","v", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
752
static TYPELIB my_locale_typelib_month_names_hu_HU =
1 by brian
clean slate
753
 { array_elements(my_locale_month_names_hu_HU)-1, "", my_locale_month_names_hu_HU, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
754
static TYPELIB my_locale_typelib_ab_month_names_hu_HU =
1 by brian
clean slate
755
 { array_elements(my_locale_ab_month_names_hu_HU)-1, "", my_locale_ab_month_names_hu_HU, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
756
static TYPELIB my_locale_typelib_day_names_hu_HU =
1 by brian
clean slate
757
 { array_elements(my_locale_day_names_hu_HU)-1, "", my_locale_day_names_hu_HU, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
758
static TYPELIB my_locale_typelib_ab_day_names_hu_HU =
1 by brian
clean slate
759
 { array_elements(my_locale_ab_day_names_hu_HU)-1, "", my_locale_ab_day_names_hu_HU, NULL };
760
MY_LOCALE my_locale_hu_HU
761
(
762
  27,
763
  "hu_HU",
764
  "Hungarian - Hungary",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
765
  false,
1 by brian
clean slate
766
  &my_locale_typelib_month_names_hu_HU,
767
  &my_locale_typelib_ab_month_names_hu_HU,
768
  &my_locale_typelib_day_names_hu_HU,
769
  &my_locale_typelib_ab_day_names_hu_HU
770
);
771
/***** LOCALE END hu_HU *****/
772
773
/***** LOCALE BEGIN id_ID: Indonesian - Indonesia *****/
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
774
static const char *my_locale_month_names_id_ID[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
775
 {"Januari","Pebruari","Maret","April","Mei","Juni","Juli","Agustus","September","Oktober","November","Desember", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
776
static const char *my_locale_ab_month_names_id_ID[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
777
 {"Jan","Peb","Mar","Apr","Mei","Jun","Jul","Agu","Sep","Okt","Nov","Des", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
778
static const char *my_locale_day_names_id_ID[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
779
 {"Senin","Selasa","Rabu","Kamis","Jumat","Sabtu","Minggu", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
780
static const char *my_locale_ab_day_names_id_ID[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
781
 {"Sen","Sel","Rab","Kam","Jum","Sab","Min", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
782
static TYPELIB my_locale_typelib_month_names_id_ID =
1 by brian
clean slate
783
 { array_elements(my_locale_month_names_id_ID)-1, "", my_locale_month_names_id_ID, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
784
static TYPELIB my_locale_typelib_ab_month_names_id_ID =
1 by brian
clean slate
785
 { array_elements(my_locale_ab_month_names_id_ID)-1, "", my_locale_ab_month_names_id_ID, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
786
static TYPELIB my_locale_typelib_day_names_id_ID =
1 by brian
clean slate
787
 { array_elements(my_locale_day_names_id_ID)-1, "", my_locale_day_names_id_ID, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
788
static TYPELIB my_locale_typelib_ab_day_names_id_ID =
1 by brian
clean slate
789
 { array_elements(my_locale_ab_day_names_id_ID)-1, "", my_locale_ab_day_names_id_ID, NULL };
790
MY_LOCALE my_locale_id_ID
791
(
792
  28,
793
  "id_ID",
794
  "Indonesian - Indonesia",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
795
  true,
1 by brian
clean slate
796
  &my_locale_typelib_month_names_id_ID,
797
  &my_locale_typelib_ab_month_names_id_ID,
798
  &my_locale_typelib_day_names_id_ID,
799
  &my_locale_typelib_ab_day_names_id_ID
800
);
801
/***** LOCALE END id_ID *****/
802
803
/***** LOCALE BEGIN is_IS: Icelandic - Iceland *****/
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
804
static const char *my_locale_month_names_is_IS[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
805
 {"janúar","febrúar","mars","apríl","maí","júní","júlí","ágúst","september","október","nóvember","desember", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
806
static const char *my_locale_ab_month_names_is_IS[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
807
 {"jan","feb","mar","apr","maí","jún","júl","ágú","sep","okt","nóv","des", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
808
static const char *my_locale_day_names_is_IS[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
809
 {"mánudagur","þriðjudagur","miðvikudagur","fimmtudagur","föstudagur","laugardagur","sunnudagur", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
810
static const char *my_locale_ab_day_names_is_IS[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
811
 {"mán","þri","mið","fim","fös","lau","sun", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
812
static TYPELIB my_locale_typelib_month_names_is_IS =
1 by brian
clean slate
813
 { array_elements(my_locale_month_names_is_IS)-1, "", my_locale_month_names_is_IS, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
814
static TYPELIB my_locale_typelib_ab_month_names_is_IS =
1 by brian
clean slate
815
 { array_elements(my_locale_ab_month_names_is_IS)-1, "", my_locale_ab_month_names_is_IS, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
816
static TYPELIB my_locale_typelib_day_names_is_IS =
1 by brian
clean slate
817
 { array_elements(my_locale_day_names_is_IS)-1, "", my_locale_day_names_is_IS, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
818
static TYPELIB my_locale_typelib_ab_day_names_is_IS =
1 by brian
clean slate
819
 { array_elements(my_locale_ab_day_names_is_IS)-1, "", my_locale_ab_day_names_is_IS, NULL };
820
MY_LOCALE my_locale_is_IS
821
(
822
  29,
823
  "is_IS",
824
  "Icelandic - Iceland",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
825
  false,
1 by brian
clean slate
826
  &my_locale_typelib_month_names_is_IS,
827
  &my_locale_typelib_ab_month_names_is_IS,
828
  &my_locale_typelib_day_names_is_IS,
829
  &my_locale_typelib_ab_day_names_is_IS
830
);
831
/***** LOCALE END is_IS *****/
832
833
/***** LOCALE BEGIN it_CH: Italian - Switzerland *****/
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
834
static const char *my_locale_month_names_it_CH[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
835
 {"gennaio","febbraio","marzo","aprile","maggio","giugno","luglio","agosto","settembre","ottobre","novembre","dicembre", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
836
static const char *my_locale_ab_month_names_it_CH[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
837
 {"gen","feb","mar","apr","mag","giu","lug","ago","set","ott","nov","dic", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
838
static const char *my_locale_day_names_it_CH[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
839
 {"lunedì","martedì","mercoledì","giovedì","venerdì","sabato","domenica", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
840
static const char *my_locale_ab_day_names_it_CH[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
841
 {"lun","mar","mer","gio","ven","sab","dom", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
842
static TYPELIB my_locale_typelib_month_names_it_CH =
1 by brian
clean slate
843
 { array_elements(my_locale_month_names_it_CH)-1, "", my_locale_month_names_it_CH, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
844
static TYPELIB my_locale_typelib_ab_month_names_it_CH =
1 by brian
clean slate
845
 { array_elements(my_locale_ab_month_names_it_CH)-1, "", my_locale_ab_month_names_it_CH, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
846
static TYPELIB my_locale_typelib_day_names_it_CH =
1 by brian
clean slate
847
 { array_elements(my_locale_day_names_it_CH)-1, "", my_locale_day_names_it_CH, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
848
static TYPELIB my_locale_typelib_ab_day_names_it_CH =
1 by brian
clean slate
849
 { array_elements(my_locale_ab_day_names_it_CH)-1, "", my_locale_ab_day_names_it_CH, NULL };
850
MY_LOCALE my_locale_it_CH
851
(
852
  30,
853
  "it_CH",
854
  "Italian - Switzerland",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
855
  false,
1 by brian
clean slate
856
  &my_locale_typelib_month_names_it_CH,
857
  &my_locale_typelib_ab_month_names_it_CH,
858
  &my_locale_typelib_day_names_it_CH,
859
  &my_locale_typelib_ab_day_names_it_CH
860
);
861
/***** LOCALE END it_CH *****/
862
863
/***** LOCALE BEGIN ja_JP: Japanese - Japan *****/
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
864
static const char *my_locale_month_names_ja_JP[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
865
 {"1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
866
static const char *my_locale_ab_month_names_ja_JP[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
867
 {" 1月"," 2月"," 3月"," 4月"," 5月"," 6月"," 7月"," 8月"," 9月","10月","11月","12月", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
868
static const char *my_locale_day_names_ja_JP[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
869
 {"月曜日","火曜日","水曜日","木曜日","金曜日","土曜日","日曜日", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
870
static const char *my_locale_ab_day_names_ja_JP[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
871
 {"月","火","水","木","金","土","日", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
872
static TYPELIB my_locale_typelib_month_names_ja_JP =
1 by brian
clean slate
873
 { array_elements(my_locale_month_names_ja_JP)-1, "", my_locale_month_names_ja_JP, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
874
static TYPELIB my_locale_typelib_ab_month_names_ja_JP =
1 by brian
clean slate
875
 { array_elements(my_locale_ab_month_names_ja_JP)-1, "", my_locale_ab_month_names_ja_JP, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
876
static TYPELIB my_locale_typelib_day_names_ja_JP =
1 by brian
clean slate
877
 { array_elements(my_locale_day_names_ja_JP)-1, "", my_locale_day_names_ja_JP, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
878
static TYPELIB my_locale_typelib_ab_day_names_ja_JP =
1 by brian
clean slate
879
 { array_elements(my_locale_ab_day_names_ja_JP)-1, "", my_locale_ab_day_names_ja_JP, NULL };
880
MY_LOCALE my_locale_ja_JP
881
(
882
  2,
883
  "ja_JP",
884
  "Japanese - Japan",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
885
  false,
1 by brian
clean slate
886
  &my_locale_typelib_month_names_ja_JP,
887
  &my_locale_typelib_ab_month_names_ja_JP,
888
  &my_locale_typelib_day_names_ja_JP,
889
  &my_locale_typelib_ab_day_names_ja_JP
890
);
891
/***** LOCALE END ja_JP *****/
892
893
/***** LOCALE BEGIN ko_KR: Korean - Korea *****/
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
894
static const char *my_locale_month_names_ko_KR[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
895
 {"일월","이월","삼월","사월","오월","유월","칠월","팔월","구월","시월","십일월","십이월", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
896
static const char *my_locale_ab_month_names_ko_KR[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
897
 {" 1월"," 2월"," 3월"," 4월"," 5월"," 6월"," 7월"," 8월"," 9월","10월","11월","12월", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
898
static const char *my_locale_day_names_ko_KR[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
899
 {"월요일","화요일","수요일","목요일","금요일","토요일","일요일", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
900
static const char *my_locale_ab_day_names_ko_KR[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
901
 {"월","화","수","목","금","토","일", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
902
static TYPELIB my_locale_typelib_month_names_ko_KR =
1 by brian
clean slate
903
 { array_elements(my_locale_month_names_ko_KR)-1, "", my_locale_month_names_ko_KR, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
904
static TYPELIB my_locale_typelib_ab_month_names_ko_KR =
1 by brian
clean slate
905
 { array_elements(my_locale_ab_month_names_ko_KR)-1, "", my_locale_ab_month_names_ko_KR, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
906
static TYPELIB my_locale_typelib_day_names_ko_KR =
1 by brian
clean slate
907
 { array_elements(my_locale_day_names_ko_KR)-1, "", my_locale_day_names_ko_KR, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
908
static TYPELIB my_locale_typelib_ab_day_names_ko_KR =
1 by brian
clean slate
909
 { array_elements(my_locale_ab_day_names_ko_KR)-1, "", my_locale_ab_day_names_ko_KR, NULL };
910
MY_LOCALE my_locale_ko_KR
911
(
912
  31,
913
  "ko_KR",
914
  "Korean - Korea",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
915
  false,
1 by brian
clean slate
916
  &my_locale_typelib_month_names_ko_KR,
917
  &my_locale_typelib_ab_month_names_ko_KR,
918
  &my_locale_typelib_day_names_ko_KR,
919
  &my_locale_typelib_ab_day_names_ko_KR
920
);
921
/***** LOCALE END ko_KR *****/
922
923
/***** LOCALE BEGIN lt_LT: Lithuanian - Lithuania *****/
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
924
static const char *my_locale_month_names_lt_LT[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
925
 {"sausio","vasario","kovo","balandžio","gegužės","birželio","liepos","rugpjūčio","rugsėjo","spalio","lapkričio","gruodžio", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
926
static const char *my_locale_ab_month_names_lt_LT[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
927
 {"Sau","Vas","Kov","Bal","Geg","Bir","Lie","Rgp","Rgs","Spa","Lap","Grd", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
928
static const char *my_locale_day_names_lt_LT[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
929
 {"Pirmadienis","Antradienis","Trečiadienis","Ketvirtadienis","Penktadienis","Šeštadienis","Sekmadienis", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
930
static const char *my_locale_ab_day_names_lt_LT[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
931
 {"Pr","An","Tr","Kt","Pn","Št","Sk", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
932
static TYPELIB my_locale_typelib_month_names_lt_LT =
1 by brian
clean slate
933
 { array_elements(my_locale_month_names_lt_LT)-1, "", my_locale_month_names_lt_LT, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
934
static TYPELIB my_locale_typelib_ab_month_names_lt_LT =
1 by brian
clean slate
935
 { array_elements(my_locale_ab_month_names_lt_LT)-1, "", my_locale_ab_month_names_lt_LT, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
936
static TYPELIB my_locale_typelib_day_names_lt_LT =
1 by brian
clean slate
937
 { array_elements(my_locale_day_names_lt_LT)-1, "", my_locale_day_names_lt_LT, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
938
static TYPELIB my_locale_typelib_ab_day_names_lt_LT =
1 by brian
clean slate
939
 { array_elements(my_locale_ab_day_names_lt_LT)-1, "", my_locale_ab_day_names_lt_LT, NULL };
940
MY_LOCALE my_locale_lt_LT
941
(
942
  32,
943
  "lt_LT",
944
  "Lithuanian - Lithuania",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
945
  false,
1 by brian
clean slate
946
  &my_locale_typelib_month_names_lt_LT,
947
  &my_locale_typelib_ab_month_names_lt_LT,
948
  &my_locale_typelib_day_names_lt_LT,
949
  &my_locale_typelib_ab_day_names_lt_LT
950
);
951
/***** LOCALE END lt_LT *****/
952
953
/***** LOCALE BEGIN lv_LV: Latvian - Latvia *****/
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
954
static const char *my_locale_month_names_lv_LV[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
955
 {"janvāris","februāris","marts","aprīlis","maijs","jūnijs","jūlijs","augusts","septembris","oktobris","novembris","decembris", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
956
static const char *my_locale_ab_month_names_lv_LV[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
957
 {"jan","feb","mar","apr","mai","jūn","jūl","aug","sep","okt","nov","dec", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
958
static const char *my_locale_day_names_lv_LV[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
959
 {"pirmdiena","otrdiena","trešdiena","ceturtdiena","piektdiena","sestdiena","svētdiena", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
960
static const char *my_locale_ab_day_names_lv_LV[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
961
 {"P ","O ","T ","C ","Pk","S ","Sv", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
962
static TYPELIB my_locale_typelib_month_names_lv_LV =
1 by brian
clean slate
963
 { array_elements(my_locale_month_names_lv_LV)-1, "", my_locale_month_names_lv_LV, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
964
static TYPELIB my_locale_typelib_ab_month_names_lv_LV =
1 by brian
clean slate
965
 { array_elements(my_locale_ab_month_names_lv_LV)-1, "", my_locale_ab_month_names_lv_LV, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
966
static TYPELIB my_locale_typelib_day_names_lv_LV =
1 by brian
clean slate
967
 { array_elements(my_locale_day_names_lv_LV)-1, "", my_locale_day_names_lv_LV, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
968
static TYPELIB my_locale_typelib_ab_day_names_lv_LV =
1 by brian
clean slate
969
 { array_elements(my_locale_ab_day_names_lv_LV)-1, "", my_locale_ab_day_names_lv_LV, NULL };
970
MY_LOCALE my_locale_lv_LV
971
(
972
  33,
973
  "lv_LV",
974
  "Latvian - Latvia",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
975
  false,
1 by brian
clean slate
976
  &my_locale_typelib_month_names_lv_LV,
977
  &my_locale_typelib_ab_month_names_lv_LV,
978
  &my_locale_typelib_day_names_lv_LV,
979
  &my_locale_typelib_ab_day_names_lv_LV
980
);
981
/***** LOCALE END lv_LV *****/
982
983
/***** LOCALE BEGIN mk_MK: Macedonian - FYROM *****/
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
984
static const char *my_locale_month_names_mk_MK[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
985
 {"јануари","февруари","март","април","мај","јуни","јули","август","септември","октомври","ноември","декември", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
986
static const char *my_locale_ab_month_names_mk_MK[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
987
 {"јан","фев","мар","апр","мај","јун","јул","авг","сеп","окт","ное","дек", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
988
static const char *my_locale_day_names_mk_MK[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
989
 {"понеделник","вторник","среда","четврток","петок","сабота","недела", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
990
static const char *my_locale_ab_day_names_mk_MK[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
991
 {"пон","вто","сре","чет","пет","саб","нед", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
992
static TYPELIB my_locale_typelib_month_names_mk_MK =
1 by brian
clean slate
993
 { array_elements(my_locale_month_names_mk_MK)-1, "", my_locale_month_names_mk_MK, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
994
static TYPELIB my_locale_typelib_ab_month_names_mk_MK =
1 by brian
clean slate
995
 { array_elements(my_locale_ab_month_names_mk_MK)-1, "", my_locale_ab_month_names_mk_MK, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
996
static TYPELIB my_locale_typelib_day_names_mk_MK =
1 by brian
clean slate
997
 { array_elements(my_locale_day_names_mk_MK)-1, "", my_locale_day_names_mk_MK, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
998
static TYPELIB my_locale_typelib_ab_day_names_mk_MK =
1 by brian
clean slate
999
 { array_elements(my_locale_ab_day_names_mk_MK)-1, "", my_locale_ab_day_names_mk_MK, NULL };
1000
MY_LOCALE my_locale_mk_MK
1001
(
1002
  34,
1003
  "mk_MK",
1004
  "Macedonian - FYROM",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
1005
  false,
1 by brian
clean slate
1006
  &my_locale_typelib_month_names_mk_MK,
1007
  &my_locale_typelib_ab_month_names_mk_MK,
1008
  &my_locale_typelib_day_names_mk_MK,
1009
  &my_locale_typelib_ab_day_names_mk_MK
1010
);
1011
/***** LOCALE END mk_MK *****/
1012
1013
/***** LOCALE BEGIN mn_MN: Mongolia - Mongolian *****/
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1014
static const char *my_locale_month_names_mn_MN[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
1015
 {"Нэгдүгээр сар","Хоёрдугаар сар","Гуравдугаар сар","Дөрөвдүгээр сар","Тавдугаар сар","Зургаадугар сар","Долоодугаар сар","Наймдугаар сар","Есдүгээр сар","Аравдугаар сар","Арваннэгдүгээр сар","Арванхоёрдгаар сар", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1016
static const char *my_locale_ab_month_names_mn_MN[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
1017
 {"1-р","2-р","3-р","4-р","5-р","6-р","7-р","8-р","9-р","10-р","11-р","12-р", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1018
static const char *my_locale_day_names_mn_MN[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
1019
 {"Даваа","Мягмар","Лхагва","Пүрэв","Баасан","Бямба","Ням", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1020
static const char *my_locale_ab_day_names_mn_MN[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
1021
 {"Да","Мя","Лх","Пү","Ба","Бя","Ня", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1022
static TYPELIB my_locale_typelib_month_names_mn_MN =
1 by brian
clean slate
1023
 { array_elements(my_locale_month_names_mn_MN)-1, "", my_locale_month_names_mn_MN, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1024
static TYPELIB my_locale_typelib_ab_month_names_mn_MN =
1 by brian
clean slate
1025
 { array_elements(my_locale_ab_month_names_mn_MN)-1, "", my_locale_ab_month_names_mn_MN, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1026
static TYPELIB my_locale_typelib_day_names_mn_MN =
1 by brian
clean slate
1027
 { array_elements(my_locale_day_names_mn_MN)-1, "", my_locale_day_names_mn_MN, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1028
static TYPELIB my_locale_typelib_ab_day_names_mn_MN =
1 by brian
clean slate
1029
 { array_elements(my_locale_ab_day_names_mn_MN)-1, "", my_locale_ab_day_names_mn_MN, NULL };
1030
MY_LOCALE my_locale_mn_MN
1031
(
1032
  35,
1033
  "mn_MN",
1034
  "Mongolia - Mongolian",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
1035
  false,
1 by brian
clean slate
1036
  &my_locale_typelib_month_names_mn_MN,
1037
  &my_locale_typelib_ab_month_names_mn_MN,
1038
  &my_locale_typelib_day_names_mn_MN,
1039
  &my_locale_typelib_ab_day_names_mn_MN
1040
);
1041
/***** LOCALE END mn_MN *****/
1042
1043
/***** LOCALE BEGIN ms_MY: Malay - Malaysia *****/
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1044
static const char *my_locale_month_names_ms_MY[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
1045
 {"Januari","Februari","Mac","April","Mei","Jun","Julai","Ogos","September","Oktober","November","Disember", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1046
static const char *my_locale_ab_month_names_ms_MY[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
1047
 {"Jan","Feb","Mac","Apr","Mei","Jun","Jul","Ogos","Sep","Okt","Nov","Dis", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1048
static const char *my_locale_day_names_ms_MY[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
1049
 {"Isnin","Selasa","Rabu","Khamis","Jumaat","Sabtu","Ahad", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1050
static const char *my_locale_ab_day_names_ms_MY[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
1051
 {"Isn","Sel","Rab","Kha","Jum","Sab","Ahd", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1052
static TYPELIB my_locale_typelib_month_names_ms_MY =
1 by brian
clean slate
1053
 { array_elements(my_locale_month_names_ms_MY)-1, "", my_locale_month_names_ms_MY, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1054
static TYPELIB my_locale_typelib_ab_month_names_ms_MY =
1 by brian
clean slate
1055
 { array_elements(my_locale_ab_month_names_ms_MY)-1, "", my_locale_ab_month_names_ms_MY, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1056
static TYPELIB my_locale_typelib_day_names_ms_MY =
1 by brian
clean slate
1057
 { array_elements(my_locale_day_names_ms_MY)-1, "", my_locale_day_names_ms_MY, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1058
static TYPELIB my_locale_typelib_ab_day_names_ms_MY =
1 by brian
clean slate
1059
 { array_elements(my_locale_ab_day_names_ms_MY)-1, "", my_locale_ab_day_names_ms_MY, NULL };
1060
MY_LOCALE my_locale_ms_MY
1061
(
1062
  36,
1063
  "ms_MY",
1064
  "Malay - Malaysia",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
1065
  true,
1 by brian
clean slate
1066
  &my_locale_typelib_month_names_ms_MY,
1067
  &my_locale_typelib_ab_month_names_ms_MY,
1068
  &my_locale_typelib_day_names_ms_MY,
1069
  &my_locale_typelib_ab_day_names_ms_MY
1070
);
1071
/***** LOCALE END ms_MY *****/
1072
1073
/***** LOCALE BEGIN nb_NO: Norwegian(Bokml) - Norway *****/
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1074
static const char *my_locale_month_names_nb_NO[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
1075
 {"januar","februar","mars","april","mai","juni","juli","august","september","oktober","november","desember", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1076
static const char *my_locale_ab_month_names_nb_NO[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
1077
 {"jan","feb","mar","apr","mai","jun","jul","aug","sep","okt","nov","des", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1078
static const char *my_locale_day_names_nb_NO[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
1079
 {"mandag","tirsdag","onsdag","torsdag","fredag","lørdag","søndag", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1080
static const char *my_locale_ab_day_names_nb_NO[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
1081
 {"man","tir","ons","tor","fre","lør","søn", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1082
static TYPELIB my_locale_typelib_month_names_nb_NO =
1 by brian
clean slate
1083
 { array_elements(my_locale_month_names_nb_NO)-1, "", my_locale_month_names_nb_NO, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1084
static TYPELIB my_locale_typelib_ab_month_names_nb_NO =
1 by brian
clean slate
1085
 { array_elements(my_locale_ab_month_names_nb_NO)-1, "", my_locale_ab_month_names_nb_NO, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1086
static TYPELIB my_locale_typelib_day_names_nb_NO =
1 by brian
clean slate
1087
 { array_elements(my_locale_day_names_nb_NO)-1, "", my_locale_day_names_nb_NO, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1088
static TYPELIB my_locale_typelib_ab_day_names_nb_NO =
1 by brian
clean slate
1089
 { array_elements(my_locale_ab_day_names_nb_NO)-1, "", my_locale_ab_day_names_nb_NO, NULL };
1090
MY_LOCALE my_locale_nb_NO
1091
(
1092
  37,
1093
  "nb_NO",
1094
  "Norwegian(Bokml) - Norway",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
1095
  false,
1 by brian
clean slate
1096
  &my_locale_typelib_month_names_nb_NO,
1097
  &my_locale_typelib_ab_month_names_nb_NO,
1098
  &my_locale_typelib_day_names_nb_NO,
1099
  &my_locale_typelib_ab_day_names_nb_NO
1100
);
1101
/***** LOCALE END nb_NO *****/
1102
1103
/***** LOCALE BEGIN nl_NL: Dutch - The Netherlands *****/
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1104
static const char *my_locale_month_names_nl_NL[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
1105
 {"januari","februari","maart","april","mei","juni","juli","augustus","september","oktober","november","december", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1106
static const char *my_locale_ab_month_names_nl_NL[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
1107
 {"jan","feb","mrt","apr","mei","jun","jul","aug","sep","okt","nov","dec", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1108
static const char *my_locale_day_names_nl_NL[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
1109
 {"maandag","dinsdag","woensdag","donderdag","vrijdag","zaterdag","zondag", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1110
static const char *my_locale_ab_day_names_nl_NL[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
1111
 {"ma","di","wo","do","vr","za","zo", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1112
static TYPELIB my_locale_typelib_month_names_nl_NL =
1 by brian
clean slate
1113
 { array_elements(my_locale_month_names_nl_NL)-1, "", my_locale_month_names_nl_NL, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1114
static TYPELIB my_locale_typelib_ab_month_names_nl_NL =
1 by brian
clean slate
1115
 { array_elements(my_locale_ab_month_names_nl_NL)-1, "", my_locale_ab_month_names_nl_NL, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1116
static TYPELIB my_locale_typelib_day_names_nl_NL =
1 by brian
clean slate
1117
 { array_elements(my_locale_day_names_nl_NL)-1, "", my_locale_day_names_nl_NL, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1118
static TYPELIB my_locale_typelib_ab_day_names_nl_NL =
1 by brian
clean slate
1119
 { array_elements(my_locale_ab_day_names_nl_NL)-1, "", my_locale_ab_day_names_nl_NL, NULL };
1120
MY_LOCALE my_locale_nl_NL
1121
(
1122
  38,
1123
  "nl_NL",
1124
  "Dutch - The Netherlands",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
1125
  true,
1 by brian
clean slate
1126
  &my_locale_typelib_month_names_nl_NL,
1127
  &my_locale_typelib_ab_month_names_nl_NL,
1128
  &my_locale_typelib_day_names_nl_NL,
1129
  &my_locale_typelib_ab_day_names_nl_NL
1130
);
1131
/***** LOCALE END nl_NL *****/
1132
1133
/***** LOCALE BEGIN pl_PL: Polish - Poland *****/
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1134
static const char *my_locale_month_names_pl_PL[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
1135
 {"styczeń","luty","marzec","kwiecień","maj","czerwiec","lipiec","sierpień","wrzesień","październik","listopad","grudzień", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1136
static const char *my_locale_ab_month_names_pl_PL[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
1137
 {"sty","lut","mar","kwi","maj","cze","lip","sie","wrz","paź","lis","gru", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1138
static const char *my_locale_day_names_pl_PL[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
1139
 {"poniedziałek","wtorek","środa","czwartek","piątek","sobota","niedziela", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1140
static const char *my_locale_ab_day_names_pl_PL[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
1141
 {"pon","wto","śro","czw","pią","sob","nie", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1142
static TYPELIB my_locale_typelib_month_names_pl_PL =
1 by brian
clean slate
1143
 { array_elements(my_locale_month_names_pl_PL)-1, "", my_locale_month_names_pl_PL, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1144
static TYPELIB my_locale_typelib_ab_month_names_pl_PL =
1 by brian
clean slate
1145
 { array_elements(my_locale_ab_month_names_pl_PL)-1, "", my_locale_ab_month_names_pl_PL, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1146
static TYPELIB my_locale_typelib_day_names_pl_PL =
1 by brian
clean slate
1147
 { array_elements(my_locale_day_names_pl_PL)-1, "", my_locale_day_names_pl_PL, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1148
static TYPELIB my_locale_typelib_ab_day_names_pl_PL =
1 by brian
clean slate
1149
 { array_elements(my_locale_ab_day_names_pl_PL)-1, "", my_locale_ab_day_names_pl_PL, NULL };
1150
MY_LOCALE my_locale_pl_PL
1151
(
1152
  39,
1153
  "pl_PL",
1154
  "Polish - Poland",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
1155
  false,
1 by brian
clean slate
1156
  &my_locale_typelib_month_names_pl_PL,
1157
  &my_locale_typelib_ab_month_names_pl_PL,
1158
  &my_locale_typelib_day_names_pl_PL,
1159
  &my_locale_typelib_ab_day_names_pl_PL
1160
);
1161
/***** LOCALE END pl_PL *****/
1162
1163
/***** LOCALE BEGIN pt_BR: Portugese - Brazil *****/
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1164
static const char *my_locale_month_names_pt_BR[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
1165
 {"janeiro","fevereiro","março","abril","maio","junho","julho","agosto","setembro","outubro","novembro","dezembro", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1166
static const char *my_locale_ab_month_names_pt_BR[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
1167
 {"Jan","Fev","Mar","Abr","Mai","Jun","Jul","Ago","Set","Out","Nov","Dez", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1168
static const char *my_locale_day_names_pt_BR[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
1169
 {"segunda","terça","quarta","quinta","sexta","sábado","domingo", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1170
static const char *my_locale_ab_day_names_pt_BR[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
1171
 {"Seg","Ter","Qua","Qui","Sex","Sáb","Dom", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1172
static TYPELIB my_locale_typelib_month_names_pt_BR =
1 by brian
clean slate
1173
 { array_elements(my_locale_month_names_pt_BR)-1, "", my_locale_month_names_pt_BR, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1174
static TYPELIB my_locale_typelib_ab_month_names_pt_BR =
1 by brian
clean slate
1175
 { array_elements(my_locale_ab_month_names_pt_BR)-1, "", my_locale_ab_month_names_pt_BR, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1176
static TYPELIB my_locale_typelib_day_names_pt_BR =
1 by brian
clean slate
1177
 { array_elements(my_locale_day_names_pt_BR)-1, "", my_locale_day_names_pt_BR, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1178
static TYPELIB my_locale_typelib_ab_day_names_pt_BR =
1 by brian
clean slate
1179
 { array_elements(my_locale_ab_day_names_pt_BR)-1, "", my_locale_ab_day_names_pt_BR, NULL };
1180
MY_LOCALE my_locale_pt_BR
1181
(
1182
  40,
1183
  "pt_BR",
1184
  "Portugese - Brazil",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
1185
  false,
1 by brian
clean slate
1186
  &my_locale_typelib_month_names_pt_BR,
1187
  &my_locale_typelib_ab_month_names_pt_BR,
1188
  &my_locale_typelib_day_names_pt_BR,
1189
  &my_locale_typelib_ab_day_names_pt_BR
1190
);
1191
/***** LOCALE END pt_BR *****/
1192
1193
/***** LOCALE BEGIN pt_PT: Portugese - Portugal *****/
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1194
static const char *my_locale_month_names_pt_PT[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
1195
 {"Janeiro","Fevereiro","Março","Abril","Maio","Junho","Julho","Agosto","Setembro","Outubro","Novembro","Dezembro", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1196
static const char *my_locale_ab_month_names_pt_PT[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
1197
 {"Jan","Fev","Mar","Abr","Mai","Jun","Jul","Ago","Set","Out","Nov","Dez", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1198
static const char *my_locale_day_names_pt_PT[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
1199
 {"Segunda","Terça","Quarta","Quinta","Sexta","Sábado","Domingo", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1200
static const char *my_locale_ab_day_names_pt_PT[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
1201
 {"Seg","Ter","Qua","Qui","Sex","Sáb","Dom", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1202
static TYPELIB my_locale_typelib_month_names_pt_PT =
1 by brian
clean slate
1203
 { array_elements(my_locale_month_names_pt_PT)-1, "", my_locale_month_names_pt_PT, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1204
static TYPELIB my_locale_typelib_ab_month_names_pt_PT =
1 by brian
clean slate
1205
 { array_elements(my_locale_ab_month_names_pt_PT)-1, "", my_locale_ab_month_names_pt_PT, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1206
static TYPELIB my_locale_typelib_day_names_pt_PT =
1 by brian
clean slate
1207
 { array_elements(my_locale_day_names_pt_PT)-1, "", my_locale_day_names_pt_PT, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1208
static TYPELIB my_locale_typelib_ab_day_names_pt_PT =
1 by brian
clean slate
1209
 { array_elements(my_locale_ab_day_names_pt_PT)-1, "", my_locale_ab_day_names_pt_PT, NULL };
1210
MY_LOCALE my_locale_pt_PT
1211
(
1212
  41,
1213
  "pt_PT",
1214
  "Portugese - Portugal",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
1215
  false,
1 by brian
clean slate
1216
  &my_locale_typelib_month_names_pt_PT,
1217
  &my_locale_typelib_ab_month_names_pt_PT,
1218
  &my_locale_typelib_day_names_pt_PT,
1219
  &my_locale_typelib_ab_day_names_pt_PT
1220
);
1221
/***** LOCALE END pt_PT *****/
1222
1223
/***** LOCALE BEGIN ro_RO: Romanian - Romania *****/
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1224
static const char *my_locale_month_names_ro_RO[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
1225
 {"Ianuarie","Februarie","Martie","Aprilie","Mai","Iunie","Iulie","August","Septembrie","Octombrie","Noiembrie","Decembrie", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1226
static const char *my_locale_ab_month_names_ro_RO[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
1227
 {"ian","feb","mar","apr","mai","iun","iul","aug","sep","oct","nov","dec", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1228
static const char *my_locale_day_names_ro_RO[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
1229
 {"Luni","Marţi","Miercuri","Joi","Vineri","SîmbĂtĂ","DuminicĂ", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1230
static const char *my_locale_ab_day_names_ro_RO[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
1231
 {"Lu","Ma","Mi","Jo","Vi","Sî","Du", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1232
static TYPELIB my_locale_typelib_month_names_ro_RO =
1 by brian
clean slate
1233
 { array_elements(my_locale_month_names_ro_RO)-1, "", my_locale_month_names_ro_RO, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1234
static TYPELIB my_locale_typelib_ab_month_names_ro_RO =
1 by brian
clean slate
1235
 { array_elements(my_locale_ab_month_names_ro_RO)-1, "", my_locale_ab_month_names_ro_RO, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1236
static TYPELIB my_locale_typelib_day_names_ro_RO =
1 by brian
clean slate
1237
 { array_elements(my_locale_day_names_ro_RO)-1, "", my_locale_day_names_ro_RO, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1238
static TYPELIB my_locale_typelib_ab_day_names_ro_RO =
1 by brian
clean slate
1239
 { array_elements(my_locale_ab_day_names_ro_RO)-1, "", my_locale_ab_day_names_ro_RO, NULL };
1240
MY_LOCALE my_locale_ro_RO
1241
(
1242
  42,
1243
  "ro_RO",
1244
  "Romanian - Romania",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
1245
  false,
1 by brian
clean slate
1246
  &my_locale_typelib_month_names_ro_RO,
1247
  &my_locale_typelib_ab_month_names_ro_RO,
1248
  &my_locale_typelib_day_names_ro_RO,
1249
  &my_locale_typelib_ab_day_names_ro_RO
1250
);
1251
/***** LOCALE END ro_RO *****/
1252
1253
/***** LOCALE BEGIN ru_RU: Russian - Russia *****/
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1254
static const char *my_locale_month_names_ru_RU[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
1255
 {"Января","Февраля","Марта","Апреля","Мая","Июня","Июля","Августа","Сентября","Октября","Ноября","Декабря", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1256
static const char *my_locale_ab_month_names_ru_RU[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
1257
 {"Янв","Фев","Мар","Апр","Май","Июн","Июл","Авг","Сен","Окт","Ноя","Дек", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1258
static const char *my_locale_day_names_ru_RU[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
1259
 {"Понедельник","Вторник","Среда","Четверг","Пятница","Суббота","Воскресенье", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1260
static const char *my_locale_ab_day_names_ru_RU[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
1261
 {"Пнд","Втр","Срд","Чтв","Птн","Сбт","Вск", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1262
static TYPELIB my_locale_typelib_month_names_ru_RU =
1 by brian
clean slate
1263
 { array_elements(my_locale_month_names_ru_RU)-1, "", my_locale_month_names_ru_RU, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1264
static TYPELIB my_locale_typelib_ab_month_names_ru_RU =
1 by brian
clean slate
1265
 { array_elements(my_locale_ab_month_names_ru_RU)-1, "", my_locale_ab_month_names_ru_RU, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1266
static TYPELIB my_locale_typelib_day_names_ru_RU =
1 by brian
clean slate
1267
 { array_elements(my_locale_day_names_ru_RU)-1, "", my_locale_day_names_ru_RU, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1268
static TYPELIB my_locale_typelib_ab_day_names_ru_RU =
1 by brian
clean slate
1269
 { array_elements(my_locale_ab_day_names_ru_RU)-1, "", my_locale_ab_day_names_ru_RU, NULL };
1270
MY_LOCALE my_locale_ru_RU
1271
(
1272
  43,
1273
  "ru_RU",
1274
  "Russian - Russia",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
1275
  false,
1 by brian
clean slate
1276
  &my_locale_typelib_month_names_ru_RU,
1277
  &my_locale_typelib_ab_month_names_ru_RU,
1278
  &my_locale_typelib_day_names_ru_RU,
1279
  &my_locale_typelib_ab_day_names_ru_RU
1280
);
1281
/***** LOCALE END ru_RU *****/
1282
1283
/***** LOCALE BEGIN ru_UA: Russian - Ukraine *****/
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1284
static const char *my_locale_month_names_ru_UA[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
1285
 {"Январь","Февраль","Март","Апрель","Май","Июнь","Июль","Август","Сентябрь","Октябрь","Ноябрь","Декабрь", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1286
static const char *my_locale_ab_month_names_ru_UA[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
1287
 {"Янв","Фев","Мар","Апр","Май","Июн","Июл","Авг","Сен","Окт","Ноя","Дек", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1288
static const char *my_locale_day_names_ru_UA[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
1289
 {"Понедельник","Вторник","Среда","Четверг","Пятница","Суббота","Воскресенье", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1290
static const char *my_locale_ab_day_names_ru_UA[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
1291
 {"Пнд","Вто","Срд","Чтв","Птн","Суб","Вск", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1292
static TYPELIB my_locale_typelib_month_names_ru_UA =
1 by brian
clean slate
1293
 { array_elements(my_locale_month_names_ru_UA)-1, "", my_locale_month_names_ru_UA, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1294
static TYPELIB my_locale_typelib_ab_month_names_ru_UA =
1 by brian
clean slate
1295
 { array_elements(my_locale_ab_month_names_ru_UA)-1, "", my_locale_ab_month_names_ru_UA, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1296
static TYPELIB my_locale_typelib_day_names_ru_UA =
1 by brian
clean slate
1297
 { array_elements(my_locale_day_names_ru_UA)-1, "", my_locale_day_names_ru_UA, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1298
static TYPELIB my_locale_typelib_ab_day_names_ru_UA =
1 by brian
clean slate
1299
 { array_elements(my_locale_ab_day_names_ru_UA)-1, "", my_locale_ab_day_names_ru_UA, NULL };
1300
MY_LOCALE my_locale_ru_UA
1301
(
1302
  44,
1303
  "ru_UA",
1304
  "Russian - Ukraine",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
1305
  false,
1 by brian
clean slate
1306
  &my_locale_typelib_month_names_ru_UA,
1307
  &my_locale_typelib_ab_month_names_ru_UA,
1308
  &my_locale_typelib_day_names_ru_UA,
1309
  &my_locale_typelib_ab_day_names_ru_UA
1310
);
1311
/***** LOCALE END ru_UA *****/
1312
1313
/***** LOCALE BEGIN sk_SK: Slovak - Slovakia *****/
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1314
static const char *my_locale_month_names_sk_SK[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
1315
 {"január","február","marec","apríl","máj","jún","júl","august","september","október","november","december", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1316
static const char *my_locale_ab_month_names_sk_SK[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
1317
 {"jan","feb","mar","apr","máj","jún","júl","aug","sep","okt","nov","dec", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1318
static const char *my_locale_day_names_sk_SK[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
1319
 {"Pondelok","Utorok","Streda","Štvrtok","Piatok","Sobota","Nedeľa", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1320
static const char *my_locale_ab_day_names_sk_SK[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
1321
 {"Po","Ut","St","Št","Pi","So","Ne", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1322
static TYPELIB my_locale_typelib_month_names_sk_SK =
1 by brian
clean slate
1323
 { array_elements(my_locale_month_names_sk_SK)-1, "", my_locale_month_names_sk_SK, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1324
static TYPELIB my_locale_typelib_ab_month_names_sk_SK =
1 by brian
clean slate
1325
 { array_elements(my_locale_ab_month_names_sk_SK)-1, "", my_locale_ab_month_names_sk_SK, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1326
static TYPELIB my_locale_typelib_day_names_sk_SK =
1 by brian
clean slate
1327
 { array_elements(my_locale_day_names_sk_SK)-1, "", my_locale_day_names_sk_SK, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1328
static TYPELIB my_locale_typelib_ab_day_names_sk_SK =
1 by brian
clean slate
1329
 { array_elements(my_locale_ab_day_names_sk_SK)-1, "", my_locale_ab_day_names_sk_SK, NULL };
1330
MY_LOCALE my_locale_sk_SK
1331
(
1332
  45,
1333
  "sk_SK",
1334
  "Slovak - Slovakia",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
1335
  false,
1 by brian
clean slate
1336
  &my_locale_typelib_month_names_sk_SK,
1337
  &my_locale_typelib_ab_month_names_sk_SK,
1338
  &my_locale_typelib_day_names_sk_SK,
1339
  &my_locale_typelib_ab_day_names_sk_SK
1340
);
1341
/***** LOCALE END sk_SK *****/
1342
1343
/***** LOCALE BEGIN sl_SI: Slovenian - Slovenia *****/
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1344
static const char *my_locale_month_names_sl_SI[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
1345
 {"januar","februar","marec","april","maj","junij","julij","avgust","september","oktober","november","december", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1346
static const char *my_locale_ab_month_names_sl_SI[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
1347
 {"jan","feb","mar","apr","maj","jun","jul","avg","sep","okt","nov","dec", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1348
static const char *my_locale_day_names_sl_SI[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
1349
 {"ponedeljek","torek","sreda","četrtek","petek","sobota","nedelja", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1350
static const char *my_locale_ab_day_names_sl_SI[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
1351
 {"pon","tor","sre","čet","pet","sob","ned", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1352
static TYPELIB my_locale_typelib_month_names_sl_SI =
1 by brian
clean slate
1353
 { array_elements(my_locale_month_names_sl_SI)-1, "", my_locale_month_names_sl_SI, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1354
static TYPELIB my_locale_typelib_ab_month_names_sl_SI =
1 by brian
clean slate
1355
 { array_elements(my_locale_ab_month_names_sl_SI)-1, "", my_locale_ab_month_names_sl_SI, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1356
static TYPELIB my_locale_typelib_day_names_sl_SI =
1 by brian
clean slate
1357
 { array_elements(my_locale_day_names_sl_SI)-1, "", my_locale_day_names_sl_SI, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1358
static TYPELIB my_locale_typelib_ab_day_names_sl_SI =
1 by brian
clean slate
1359
 { array_elements(my_locale_ab_day_names_sl_SI)-1, "", my_locale_ab_day_names_sl_SI, NULL };
1360
MY_LOCALE my_locale_sl_SI
1361
(
1362
  46,
1363
  "sl_SI",
1364
  "Slovenian - Slovenia",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
1365
  false,
1 by brian
clean slate
1366
  &my_locale_typelib_month_names_sl_SI,
1367
  &my_locale_typelib_ab_month_names_sl_SI,
1368
  &my_locale_typelib_day_names_sl_SI,
1369
  &my_locale_typelib_ab_day_names_sl_SI
1370
);
1371
/***** LOCALE END sl_SI *****/
1372
1373
/***** LOCALE BEGIN sq_AL: Albanian - Albania *****/
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1374
static const char *my_locale_month_names_sq_AL[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
1375
 {"janar","shkurt","mars","prill","maj","qershor","korrik","gusht","shtator","tetor","nëntor","dhjetor", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1376
static const char *my_locale_ab_month_names_sq_AL[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
1377
 {"Jan","Shk","Mar","Pri","Maj","Qer","Kor","Gsh","Sht","Tet","Nën","Dhj", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1378
static const char *my_locale_day_names_sq_AL[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
1379
 {"e hënë ","e martë ","e mërkurë ","e enjte ","e premte ","e shtunë ","e diel ", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1380
static const char *my_locale_ab_day_names_sq_AL[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
1381
 {"Hën ","Mar ","Mër ","Enj ","Pre ","Sht ","Die ", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1382
static TYPELIB my_locale_typelib_month_names_sq_AL =
1 by brian
clean slate
1383
 { array_elements(my_locale_month_names_sq_AL)-1, "", my_locale_month_names_sq_AL, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1384
static TYPELIB my_locale_typelib_ab_month_names_sq_AL =
1 by brian
clean slate
1385
 { array_elements(my_locale_ab_month_names_sq_AL)-1, "", my_locale_ab_month_names_sq_AL, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1386
static TYPELIB my_locale_typelib_day_names_sq_AL =
1 by brian
clean slate
1387
 { array_elements(my_locale_day_names_sq_AL)-1, "", my_locale_day_names_sq_AL, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1388
static TYPELIB my_locale_typelib_ab_day_names_sq_AL =
1 by brian
clean slate
1389
 { array_elements(my_locale_ab_day_names_sq_AL)-1, "", my_locale_ab_day_names_sq_AL, NULL };
1390
MY_LOCALE my_locale_sq_AL
1391
(
1392
  47,
1393
  "sq_AL",
1394
  "Albanian - Albania",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
1395
  false,
1 by brian
clean slate
1396
  &my_locale_typelib_month_names_sq_AL,
1397
  &my_locale_typelib_ab_month_names_sq_AL,
1398
  &my_locale_typelib_day_names_sq_AL,
1399
  &my_locale_typelib_ab_day_names_sq_AL
1400
);
1401
/***** LOCALE END sq_AL *****/
1402
1403
/***** LOCALE BEGIN sr_YU: Servian - Yugoslavia *****/
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1404
static const char *my_locale_month_names_sr_YU[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
1405
 {"januar","februar","mart","april","maj","juni","juli","avgust","septembar","oktobar","novembar","decembar", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1406
static const char *my_locale_ab_month_names_sr_YU[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
1407
 {"jan","feb","mar","apr","maj","jun","jul","avg","sep","okt","nov","dec", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1408
static const char *my_locale_day_names_sr_YU[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
1409
 {"ponedeljak","utorak","sreda","četvrtak","petak","subota","nedelja", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1410
static const char *my_locale_ab_day_names_sr_YU[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
1411
 {"pon","uto","sre","čet","pet","sub","ned", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1412
static TYPELIB my_locale_typelib_month_names_sr_YU =
1 by brian
clean slate
1413
 { array_elements(my_locale_month_names_sr_YU)-1, "", my_locale_month_names_sr_YU, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1414
static TYPELIB my_locale_typelib_ab_month_names_sr_YU =
1 by brian
clean slate
1415
 { array_elements(my_locale_ab_month_names_sr_YU)-1, "", my_locale_ab_month_names_sr_YU, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1416
static TYPELIB my_locale_typelib_day_names_sr_YU =
1 by brian
clean slate
1417
 { array_elements(my_locale_day_names_sr_YU)-1, "", my_locale_day_names_sr_YU, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1418
static TYPELIB my_locale_typelib_ab_day_names_sr_YU =
1 by brian
clean slate
1419
 { array_elements(my_locale_ab_day_names_sr_YU)-1, "", my_locale_ab_day_names_sr_YU, NULL };
1420
MY_LOCALE my_locale_sr_YU
1421
(
1422
  48,
1423
  "sr_YU",
1424
  "Servian - Yugoslavia",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
1425
  false,
1 by brian
clean slate
1426
  &my_locale_typelib_month_names_sr_YU,
1427
  &my_locale_typelib_ab_month_names_sr_YU,
1428
  &my_locale_typelib_day_names_sr_YU,
1429
  &my_locale_typelib_ab_day_names_sr_YU
1430
);
1431
/***** LOCALE END sr_YU *****/
1432
1433
/***** LOCALE BEGIN sv_SE: Swedish - Sweden *****/
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1434
static const char *my_locale_month_names_sv_SE[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
1435
 {"januari","februari","mars","april","maj","juni","juli","augusti","september","oktober","november","december", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1436
static const char *my_locale_ab_month_names_sv_SE[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
1437
 {"jan","feb","mar","apr","maj","jun","jul","aug","sep","okt","nov","dec", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1438
static const char *my_locale_day_names_sv_SE[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
1439
 {"måndag","tisdag","onsdag","torsdag","fredag","lördag","söndag", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1440
static const char *my_locale_ab_day_names_sv_SE[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
1441
 {"mån","tis","ons","tor","fre","lör","sön", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1442
static TYPELIB my_locale_typelib_month_names_sv_SE =
1 by brian
clean slate
1443
 { array_elements(my_locale_month_names_sv_SE)-1, "", my_locale_month_names_sv_SE, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1444
static TYPELIB my_locale_typelib_ab_month_names_sv_SE =
1 by brian
clean slate
1445
 { array_elements(my_locale_ab_month_names_sv_SE)-1, "", my_locale_ab_month_names_sv_SE, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1446
static TYPELIB my_locale_typelib_day_names_sv_SE =
1 by brian
clean slate
1447
 { array_elements(my_locale_day_names_sv_SE)-1, "", my_locale_day_names_sv_SE, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1448
static TYPELIB my_locale_typelib_ab_day_names_sv_SE =
1 by brian
clean slate
1449
 { array_elements(my_locale_ab_day_names_sv_SE)-1, "", my_locale_ab_day_names_sv_SE, NULL };
1450
MY_LOCALE my_locale_sv_SE
1451
(
1452
  3,
1453
  "sv_SE",
1454
  "Swedish - Sweden",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
1455
  false,
1 by brian
clean slate
1456
  &my_locale_typelib_month_names_sv_SE,
1457
  &my_locale_typelib_ab_month_names_sv_SE,
1458
  &my_locale_typelib_day_names_sv_SE,
1459
  &my_locale_typelib_ab_day_names_sv_SE
1460
);
1461
/***** LOCALE END sv_SE *****/
1462
1463
/***** LOCALE BEGIN ta_IN: Tamil - India *****/
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1464
static const char *my_locale_month_names_ta_IN[13] =
1465
 {"ஜனவரி","பெப்ரவரி","மார்ச்","ஏப்ரல்","மே","ஜூன்","ஜூலை","ஆகஸ்ட்","செப்டம்பர்","அக்டோபர்","நவம்பர்","டிசம்பர்r", NULL };
1466
static const char *my_locale_ab_month_names_ta_IN[13] =
1467
 {"ஜனவரி","பெப்ரவரி","மார்ச்","ஏப்ரல்","மே","ஜூன்","ஜூலை","ஆகஸ்ட்","செப்டம்பர்","அக்டோபர்","நவம்பர்","டிசம்பர்r", NULL };
1468
static const char *my_locale_day_names_ta_IN[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
1469
 {"திங்கள்","செவ்வாய்","புதன்","வியாழன்","வெள்ளி","சனி","ஞாயிறு", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1470
static const char *my_locale_ab_day_names_ta_IN[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
1471
 {"த","ச","ப","வ","வ","ச","ஞ", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1472
static TYPELIB my_locale_typelib_month_names_ta_IN =
1 by brian
clean slate
1473
 { array_elements(my_locale_month_names_ta_IN)-1, "", my_locale_month_names_ta_IN, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1474
static TYPELIB my_locale_typelib_ab_month_names_ta_IN =
1 by brian
clean slate
1475
 { array_elements(my_locale_ab_month_names_ta_IN)-1, "", my_locale_ab_month_names_ta_IN, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1476
static TYPELIB my_locale_typelib_day_names_ta_IN =
1 by brian
clean slate
1477
 { array_elements(my_locale_day_names_ta_IN)-1, "", my_locale_day_names_ta_IN, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1478
static TYPELIB my_locale_typelib_ab_day_names_ta_IN =
1 by brian
clean slate
1479
 { array_elements(my_locale_ab_day_names_ta_IN)-1, "", my_locale_ab_day_names_ta_IN, NULL };
1480
MY_LOCALE my_locale_ta_IN
1481
(
1482
  49,
1483
  "ta_IN",
1484
  "Tamil - India",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
1485
  false,
1 by brian
clean slate
1486
  &my_locale_typelib_month_names_ta_IN,
1487
  &my_locale_typelib_ab_month_names_ta_IN,
1488
  &my_locale_typelib_day_names_ta_IN,
1489
  &my_locale_typelib_ab_day_names_ta_IN
1490
);
1491
/***** LOCALE END ta_IN *****/
1492
1493
/***** LOCALE BEGIN te_IN: Telugu - India *****/
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1494
static const char *my_locale_month_names_te_IN[13] =
1495
 {"జనవరి","ఫిబ్రవరి","మార్చి","ఏప్రిల్","మే","జూన్","జూలై","ఆగస్టు","సెప్టెంబర్","అక్టోబర్","నవంబర్","డిసెంబర్", NULL };
1496
static const char *my_locale_ab_month_names_te_IN[13] =
1497
 {"జనవరి","ఫిబ్రవరి","మార్చి","ఏప్రిల్","మే","జూన్","జూలై","ఆగస్టు","సెప్టెంబర్","అక్టోబర్","నవంబర్","డిసెంబర్", NULL };
1498
static const char *my_locale_day_names_te_IN[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
1499
 {"సోమవారం","మంగళవారం","బుధవారం","గురువారం","శుక్రవారం","శనివారం","ఆదివారం", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1500
static const char *my_locale_ab_day_names_te_IN[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
1501
 {"సోమ","మంగళ","బుధ","గురు","శుక్ర","శని","ఆది", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1502
static TYPELIB my_locale_typelib_month_names_te_IN =
1 by brian
clean slate
1503
 { array_elements(my_locale_month_names_te_IN)-1, "", my_locale_month_names_te_IN, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1504
static TYPELIB my_locale_typelib_ab_month_names_te_IN =
1 by brian
clean slate
1505
 { array_elements(my_locale_ab_month_names_te_IN)-1, "", my_locale_ab_month_names_te_IN, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1506
static TYPELIB my_locale_typelib_day_names_te_IN =
1 by brian
clean slate
1507
 { array_elements(my_locale_day_names_te_IN)-1, "", my_locale_day_names_te_IN, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1508
static TYPELIB my_locale_typelib_ab_day_names_te_IN =
1 by brian
clean slate
1509
 { array_elements(my_locale_ab_day_names_te_IN)-1, "", my_locale_ab_day_names_te_IN, NULL };
1510
MY_LOCALE my_locale_te_IN
1511
(
1512
  50,
1513
  "te_IN",
1514
  "Telugu - India",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
1515
  false,
1 by brian
clean slate
1516
  &my_locale_typelib_month_names_te_IN,
1517
  &my_locale_typelib_ab_month_names_te_IN,
1518
  &my_locale_typelib_day_names_te_IN,
1519
  &my_locale_typelib_ab_day_names_te_IN
1520
);
1521
/***** LOCALE END te_IN *****/
1522
1523
/***** LOCALE BEGIN th_TH: Thai - Thailand *****/
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1524
static const char *my_locale_month_names_th_TH[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
1525
 {"มกราคม","กุมภาพันธ์","มีนาคม","เมษายน","พฤษภาคม","มิถุนายน","กรกฎาคม","สิงหาคม","กันยายน","ตุลาคม","พฤศจิกายน","ธันวาคม", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1526
static const char *my_locale_ab_month_names_th_TH[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
1527
 {"ม.ค.","ก.พ.","มี.ค.","เม.ย.","พ.ค.","มิ.ย.","ก.ค.","ส.ค.","ก.ย.","ต.ค.","พ.ย.","ธ.ค.", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1528
static const char *my_locale_day_names_th_TH[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
1529
 {"จันทร์","อังคาร","พุธ","พฤหัสบดี","ศุกร์","เสาร์","อาทิตย์", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1530
static const char *my_locale_ab_day_names_th_TH[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
1531
 {"จ.","อ.","พ.","พฤ.","ศ.","ส.","อา.", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1532
static TYPELIB my_locale_typelib_month_names_th_TH =
1 by brian
clean slate
1533
 { array_elements(my_locale_month_names_th_TH)-1, "", my_locale_month_names_th_TH, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1534
static TYPELIB my_locale_typelib_ab_month_names_th_TH =
1 by brian
clean slate
1535
 { array_elements(my_locale_ab_month_names_th_TH)-1, "", my_locale_ab_month_names_th_TH, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1536
static TYPELIB my_locale_typelib_day_names_th_TH =
1 by brian
clean slate
1537
 { array_elements(my_locale_day_names_th_TH)-1, "", my_locale_day_names_th_TH, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1538
static TYPELIB my_locale_typelib_ab_day_names_th_TH =
1 by brian
clean slate
1539
 { array_elements(my_locale_ab_day_names_th_TH)-1, "", my_locale_ab_day_names_th_TH, NULL };
1540
MY_LOCALE my_locale_th_TH
1541
(
1542
  51,
1543
  "th_TH",
1544
  "Thai - Thailand",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
1545
  false,
1 by brian
clean slate
1546
  &my_locale_typelib_month_names_th_TH,
1547
  &my_locale_typelib_ab_month_names_th_TH,
1548
  &my_locale_typelib_day_names_th_TH,
1549
  &my_locale_typelib_ab_day_names_th_TH
1550
);
1551
/***** LOCALE END th_TH *****/
1552
1553
/***** LOCALE BEGIN tr_TR: Turkish - Turkey *****/
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1554
static const char *my_locale_month_names_tr_TR[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
1555
 {"Ocak","Şubat","Mart","Nisan","Mayıs","Haziran","Temmuz","Ağustos","Eylül","Ekim","Kasım","Aralık", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1556
static const char *my_locale_ab_month_names_tr_TR[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
1557
 {"Oca","Şub","Mar","Nis","May","Haz","Tem","Ağu","Eyl","Eki","Kas","Ara", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1558
static const char *my_locale_day_names_tr_TR[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
1559
 {"Pazartesi","Salı","Çarşamba","Perşembe","Cuma","Cumartesi","Pazar", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1560
static const char *my_locale_ab_day_names_tr_TR[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
1561
 {"Pzt","Sal","Çrş","Prş","Cum","Cts","Paz", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1562
static TYPELIB my_locale_typelib_month_names_tr_TR =
1 by brian
clean slate
1563
 { array_elements(my_locale_month_names_tr_TR)-1, "", my_locale_month_names_tr_TR, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1564
static TYPELIB my_locale_typelib_ab_month_names_tr_TR =
1 by brian
clean slate
1565
 { array_elements(my_locale_ab_month_names_tr_TR)-1, "", my_locale_ab_month_names_tr_TR, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1566
static TYPELIB my_locale_typelib_day_names_tr_TR =
1 by brian
clean slate
1567
 { array_elements(my_locale_day_names_tr_TR)-1, "", my_locale_day_names_tr_TR, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1568
static TYPELIB my_locale_typelib_ab_day_names_tr_TR =
1 by brian
clean slate
1569
 { array_elements(my_locale_ab_day_names_tr_TR)-1, "", my_locale_ab_day_names_tr_TR, NULL };
1570
MY_LOCALE my_locale_tr_TR
1571
(
1572
  52,
1573
  "tr_TR",
1574
  "Turkish - Turkey",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
1575
  false,
1 by brian
clean slate
1576
  &my_locale_typelib_month_names_tr_TR,
1577
  &my_locale_typelib_ab_month_names_tr_TR,
1578
  &my_locale_typelib_day_names_tr_TR,
1579
  &my_locale_typelib_ab_day_names_tr_TR
1580
);
1581
/***** LOCALE END tr_TR *****/
1582
1583
/***** LOCALE BEGIN uk_UA: Ukrainian - Ukraine *****/
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1584
static const char *my_locale_month_names_uk_UA[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
1585
 {"Січень","Лютий","Березень","Квітень","Травень","Червень","Липень","Серпень","Вересень","Жовтень","Листопад","Грудень", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1586
static const char *my_locale_ab_month_names_uk_UA[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
1587
 {"Січ","Лют","Бер","Кві","Тра","Чер","Лип","Сер","Вер","Жов","Лис","Гру", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1588
static const char *my_locale_day_names_uk_UA[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
1589
 {"Понеділок","Вівторок","Середа","Четвер","П'ятниця","Субота","Неділя", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1590
static const char *my_locale_ab_day_names_uk_UA[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
1591
 {"Пнд","Втр","Срд","Чтв","Птн","Сбт","Ндл", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1592
static TYPELIB my_locale_typelib_month_names_uk_UA =
1 by brian
clean slate
1593
 { array_elements(my_locale_month_names_uk_UA)-1, "", my_locale_month_names_uk_UA, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1594
static TYPELIB my_locale_typelib_ab_month_names_uk_UA =
1 by brian
clean slate
1595
 { array_elements(my_locale_ab_month_names_uk_UA)-1, "", my_locale_ab_month_names_uk_UA, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1596
static TYPELIB my_locale_typelib_day_names_uk_UA =
1 by brian
clean slate
1597
 { array_elements(my_locale_day_names_uk_UA)-1, "", my_locale_day_names_uk_UA, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1598
static TYPELIB my_locale_typelib_ab_day_names_uk_UA =
1 by brian
clean slate
1599
 { array_elements(my_locale_ab_day_names_uk_UA)-1, "", my_locale_ab_day_names_uk_UA, NULL };
1600
MY_LOCALE my_locale_uk_UA
1601
(
1602
  53,
1603
  "uk_UA",
1604
  "Ukrainian - Ukraine",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
1605
  false,
1 by brian
clean slate
1606
  &my_locale_typelib_month_names_uk_UA,
1607
  &my_locale_typelib_ab_month_names_uk_UA,
1608
  &my_locale_typelib_day_names_uk_UA,
1609
  &my_locale_typelib_ab_day_names_uk_UA
1610
);
1611
/***** LOCALE END uk_UA *****/
1612
1613
/***** LOCALE BEGIN ur_PK: Urdu - Pakistan *****/
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1614
static const char *my_locale_month_names_ur_PK[13] =
1615
 {"جنوري","فروري","مارچ","اپريل","مٓی","جون","جولاي","اگست","ستمبر","اكتوبر","نومبر","دسمبر", NULL };
1616
static const char *my_locale_ab_month_names_ur_PK[13] =
1617
 {"جنوري","فروري","مارچ","اپريل","مٓی","جون","جولاي","اگست","ستمبر","اكتوبر","نومبر","دسمبر", NULL };
1618
static const char *my_locale_day_names_ur_PK[8] =
1619
 {"پير","منگل","بدھ","جمعرات","جمعه","هفته","اتوار", NULL };
1620
static const char *my_locale_ab_day_names_ur_PK[8] =
1621
 {"پير","منگل","بدھ","جمعرات","جمعه","هفته","اتوار", NULL };
1622
static TYPELIB my_locale_typelib_month_names_ur_PK =
1 by brian
clean slate
1623
 { array_elements(my_locale_month_names_ur_PK)-1, "", my_locale_month_names_ur_PK, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1624
static TYPELIB my_locale_typelib_ab_month_names_ur_PK =
1 by brian
clean slate
1625
 { array_elements(my_locale_ab_month_names_ur_PK)-1, "", my_locale_ab_month_names_ur_PK, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1626
static TYPELIB my_locale_typelib_day_names_ur_PK =
1 by brian
clean slate
1627
 { array_elements(my_locale_day_names_ur_PK)-1, "", my_locale_day_names_ur_PK, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1628
static TYPELIB my_locale_typelib_ab_day_names_ur_PK =
1 by brian
clean slate
1629
 { array_elements(my_locale_ab_day_names_ur_PK)-1, "", my_locale_ab_day_names_ur_PK, NULL };
1630
MY_LOCALE my_locale_ur_PK
1631
(
1632
  54,
1633
  "ur_PK",
1634
  "Urdu - Pakistan",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
1635
  false,
1 by brian
clean slate
1636
  &my_locale_typelib_month_names_ur_PK,
1637
  &my_locale_typelib_ab_month_names_ur_PK,
1638
  &my_locale_typelib_day_names_ur_PK,
1639
  &my_locale_typelib_ab_day_names_ur_PK
1640
);
1641
/***** LOCALE END ur_PK *****/
1642
1643
/***** LOCALE BEGIN vi_VN: Vietnamese - Vietnam *****/
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1644
static const char *my_locale_month_names_vi_VN[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
1645
 {"Tháng một","Tháng hai","Tháng ba","Tháng tư","Tháng năm","Tháng sáu","Tháng bảy","Tháng tám","Tháng chín","Tháng mười","Tháng mười một","Tháng mười hai", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1646
static const char *my_locale_ab_month_names_vi_VN[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
1647
 {"Thg 1","Thg 2","Thg 3","Thg 4","Thg 5","Thg 6","Thg 7","Thg 8","Thg 9","Thg 10","Thg 11","Thg 12", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1648
static const char *my_locale_day_names_vi_VN[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
1649
 {"Thứ hai ","Thứ ba ","Thứ tư ","Thứ năm ","Thứ sáu ","Thứ bảy ","Chủ nhật ", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1650
static const char *my_locale_ab_day_names_vi_VN[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
1651
 {"Th 2 ","Th 3 ","Th 4 ","Th 5 ","Th 6 ","Th 7 ","CN ", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1652
static TYPELIB my_locale_typelib_month_names_vi_VN =
1 by brian
clean slate
1653
 { array_elements(my_locale_month_names_vi_VN)-1, "", my_locale_month_names_vi_VN, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1654
static TYPELIB my_locale_typelib_ab_month_names_vi_VN =
1 by brian
clean slate
1655
 { array_elements(my_locale_ab_month_names_vi_VN)-1, "", my_locale_ab_month_names_vi_VN, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1656
static TYPELIB my_locale_typelib_day_names_vi_VN =
1 by brian
clean slate
1657
 { array_elements(my_locale_day_names_vi_VN)-1, "", my_locale_day_names_vi_VN, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1658
static TYPELIB my_locale_typelib_ab_day_names_vi_VN =
1 by brian
clean slate
1659
 { array_elements(my_locale_ab_day_names_vi_VN)-1, "", my_locale_ab_day_names_vi_VN, NULL };
1660
MY_LOCALE my_locale_vi_VN
1661
(
1662
  55,
1663
  "vi_VN",
1664
  "Vietnamese - Vietnam",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
1665
  false,
1 by brian
clean slate
1666
  &my_locale_typelib_month_names_vi_VN,
1667
  &my_locale_typelib_ab_month_names_vi_VN,
1668
  &my_locale_typelib_day_names_vi_VN,
1669
  &my_locale_typelib_ab_day_names_vi_VN
1670
);
1671
/***** LOCALE END vi_VN *****/
1672
1673
/***** LOCALE BEGIN zh_CN: Chinese - Peoples Republic of China *****/
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1674
static const char *my_locale_month_names_zh_CN[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
1675
 {"一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1676
static const char *my_locale_ab_month_names_zh_CN[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
1677
 {" 1月"," 2月"," 3月"," 4月"," 5月"," 6月"," 7月"," 8月"," 9月","10月","11月","12月", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1678
static const char *my_locale_day_names_zh_CN[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
1679
 {"星期一","星期二","星期三","星期四","星期五","星期六","星期日", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1680
static const char *my_locale_ab_day_names_zh_CN[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
1681
 {"一","二","三","四","五","六","日", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1682
static TYPELIB my_locale_typelib_month_names_zh_CN =
1 by brian
clean slate
1683
 { array_elements(my_locale_month_names_zh_CN)-1, "", my_locale_month_names_zh_CN, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1684
static TYPELIB my_locale_typelib_ab_month_names_zh_CN =
1 by brian
clean slate
1685
 { array_elements(my_locale_ab_month_names_zh_CN)-1, "", my_locale_ab_month_names_zh_CN, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1686
static TYPELIB my_locale_typelib_day_names_zh_CN =
1 by brian
clean slate
1687
 { array_elements(my_locale_day_names_zh_CN)-1, "", my_locale_day_names_zh_CN, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1688
static TYPELIB my_locale_typelib_ab_day_names_zh_CN =
1 by brian
clean slate
1689
 { array_elements(my_locale_ab_day_names_zh_CN)-1, "", my_locale_ab_day_names_zh_CN, NULL };
1690
MY_LOCALE my_locale_zh_CN
1691
(
1692
  56,
1693
  "zh_CN",
1694
  "Chinese - Peoples Republic of China",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
1695
  false,
1 by brian
clean slate
1696
  &my_locale_typelib_month_names_zh_CN,
1697
  &my_locale_typelib_ab_month_names_zh_CN,
1698
  &my_locale_typelib_day_names_zh_CN,
1699
  &my_locale_typelib_ab_day_names_zh_CN
1700
);
1701
/***** LOCALE END zh_CN *****/
1702
1703
/***** LOCALE BEGIN zh_TW: Chinese - Taiwan *****/
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1704
static const char *my_locale_month_names_zh_TW[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
1705
 {"一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1706
static const char *my_locale_ab_month_names_zh_TW[13] =
461 by Monty Taylor
Removed NullS. bu-bye.
1707
 {" 1月"," 2月"," 3月"," 4月"," 5月"," 6月"," 7月"," 8月"," 9月","10月","11月","12月", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1708
static const char *my_locale_day_names_zh_TW[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
1709
 {"週一","週二","週三","週四","週五","週六","週日", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1710
static const char *my_locale_ab_day_names_zh_TW[8] =
461 by Monty Taylor
Removed NullS. bu-bye.
1711
 {"一","二","三","四","五","六","日", NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1712
static TYPELIB my_locale_typelib_month_names_zh_TW =
1 by brian
clean slate
1713
 { array_elements(my_locale_month_names_zh_TW)-1, "", my_locale_month_names_zh_TW, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1714
static TYPELIB my_locale_typelib_ab_month_names_zh_TW =
1 by brian
clean slate
1715
 { array_elements(my_locale_ab_month_names_zh_TW)-1, "", my_locale_ab_month_names_zh_TW, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1716
static TYPELIB my_locale_typelib_day_names_zh_TW =
1 by brian
clean slate
1717
 { array_elements(my_locale_day_names_zh_TW)-1, "", my_locale_day_names_zh_TW, NULL };
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1718
static TYPELIB my_locale_typelib_ab_day_names_zh_TW =
1 by brian
clean slate
1719
 { array_elements(my_locale_ab_day_names_zh_TW)-1, "", my_locale_ab_day_names_zh_TW, NULL };
1720
MY_LOCALE my_locale_zh_TW
1721
(
1722
  57,
1723
  "zh_TW",
1724
  "Chinese - Taiwan",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
1725
  false,
1 by brian
clean slate
1726
  &my_locale_typelib_month_names_zh_TW,
1727
  &my_locale_typelib_ab_month_names_zh_TW,
1728
  &my_locale_typelib_day_names_zh_TW,
1729
  &my_locale_typelib_ab_day_names_zh_TW
1730
);
1731
/***** LOCALE END zh_TW *****/
1732
1733
/***** LOCALE BEGIN ar_DZ: Arabic - Algeria *****/
1734
MY_LOCALE my_locale_ar_DZ
1735
(
1736
  58,
1737
  "ar_DZ",
1738
  "Arabic - Algeria",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
1739
  false,
1 by brian
clean slate
1740
  &my_locale_typelib_month_names_ar_BH,
1741
  &my_locale_typelib_ab_month_names_ar_BH,
1742
  &my_locale_typelib_day_names_ar_BH,
1743
  &my_locale_typelib_ab_day_names_ar_BH
1744
);
1745
/***** LOCALE END ar_DZ *****/
1746
1747
/***** LOCALE BEGIN ar_EG: Arabic - Egypt *****/
1748
MY_LOCALE my_locale_ar_EG
1749
(
1750
  59,
1751
  "ar_EG",
1752
  "Arabic - Egypt",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
1753
  false,
1 by brian
clean slate
1754
  &my_locale_typelib_month_names_ar_BH,
1755
  &my_locale_typelib_ab_month_names_ar_BH,
1756
  &my_locale_typelib_day_names_ar_BH,
1757
  &my_locale_typelib_ab_day_names_ar_BH
1758
);
1759
/***** LOCALE END ar_EG *****/
1760
1761
/***** LOCALE BEGIN ar_IN: Arabic - Iran *****/
1762
MY_LOCALE my_locale_ar_IN
1763
(
1764
  60,
1765
  "ar_IN",
1766
  "Arabic - Iran",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
1767
  false,
1 by brian
clean slate
1768
  &my_locale_typelib_month_names_ar_BH,
1769
  &my_locale_typelib_ab_month_names_ar_BH,
1770
  &my_locale_typelib_day_names_ar_BH,
1771
  &my_locale_typelib_ab_day_names_ar_BH
1772
);
1773
/***** LOCALE END ar_IN *****/
1774
1775
/***** LOCALE BEGIN ar_IQ: Arabic - Iraq *****/
1776
MY_LOCALE my_locale_ar_IQ
1777
(
1778
  61,
1779
  "ar_IQ",
1780
  "Arabic - Iraq",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
1781
  false,
1 by brian
clean slate
1782
  &my_locale_typelib_month_names_ar_BH,
1783
  &my_locale_typelib_ab_month_names_ar_BH,
1784
  &my_locale_typelib_day_names_ar_BH,
1785
  &my_locale_typelib_ab_day_names_ar_BH
1786
);
1787
/***** LOCALE END ar_IQ *****/
1788
1789
/***** LOCALE BEGIN ar_KW: Arabic - Kuwait *****/
1790
MY_LOCALE my_locale_ar_KW
1791
(
1792
  62,
1793
  "ar_KW",
1794
  "Arabic - Kuwait",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
1795
  false,
1 by brian
clean slate
1796
  &my_locale_typelib_month_names_ar_BH,
1797
  &my_locale_typelib_ab_month_names_ar_BH,
1798
  &my_locale_typelib_day_names_ar_BH,
1799
  &my_locale_typelib_ab_day_names_ar_BH
1800
);
1801
/***** LOCALE END ar_KW *****/
1802
1803
/***** LOCALE BEGIN ar_LB: Arabic - Lebanon *****/
1804
MY_LOCALE my_locale_ar_LB
1805
(
1806
  63,
1807
  "ar_LB",
1808
  "Arabic - Lebanon",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
1809
  false,
1 by brian
clean slate
1810
  &my_locale_typelib_month_names_ar_JO,
1811
  &my_locale_typelib_ab_month_names_ar_JO,
1812
  &my_locale_typelib_day_names_ar_JO,
1813
  &my_locale_typelib_ab_day_names_ar_JO
1814
);
1815
/***** LOCALE END ar_LB *****/
1816
1817
/***** LOCALE BEGIN ar_LY: Arabic - Libya *****/
1818
MY_LOCALE my_locale_ar_LY
1819
(
1820
  64,
1821
  "ar_LY",
1822
  "Arabic - Libya",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
1823
  false,
1 by brian
clean slate
1824
  &my_locale_typelib_month_names_ar_BH,
1825
  &my_locale_typelib_ab_month_names_ar_BH,
1826
  &my_locale_typelib_day_names_ar_BH,
1827
  &my_locale_typelib_ab_day_names_ar_BH
1828
);
1829
/***** LOCALE END ar_LY *****/
1830
1831
/***** LOCALE BEGIN ar_MA: Arabic - Morocco *****/
1832
MY_LOCALE my_locale_ar_MA
1833
(
1834
  65,
1835
  "ar_MA",
1836
  "Arabic - Morocco",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
1837
  false,
1 by brian
clean slate
1838
  &my_locale_typelib_month_names_ar_BH,
1839
  &my_locale_typelib_ab_month_names_ar_BH,
1840
  &my_locale_typelib_day_names_ar_BH,
1841
  &my_locale_typelib_ab_day_names_ar_BH
1842
);
1843
/***** LOCALE END ar_MA *****/
1844
1845
/***** LOCALE BEGIN ar_OM: Arabic - Oman *****/
1846
MY_LOCALE my_locale_ar_OM
1847
(
1848
  66,
1849
  "ar_OM",
1850
  "Arabic - Oman",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
1851
  false,
1 by brian
clean slate
1852
  &my_locale_typelib_month_names_ar_BH,
1853
  &my_locale_typelib_ab_month_names_ar_BH,
1854
  &my_locale_typelib_day_names_ar_BH,
1855
  &my_locale_typelib_ab_day_names_ar_BH
1856
);
1857
/***** LOCALE END ar_OM *****/
1858
1859
/***** LOCALE BEGIN ar_QA: Arabic - Qatar *****/
1860
MY_LOCALE my_locale_ar_QA
1861
(
1862
  67,
1863
  "ar_QA",
1864
  "Arabic - Qatar",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
1865
  false,
1 by brian
clean slate
1866
  &my_locale_typelib_month_names_ar_BH,
1867
  &my_locale_typelib_ab_month_names_ar_BH,
1868
  &my_locale_typelib_day_names_ar_BH,
1869
  &my_locale_typelib_ab_day_names_ar_BH
1870
);
1871
/***** LOCALE END ar_QA *****/
1872
1873
/***** LOCALE BEGIN ar_SD: Arabic - Sudan *****/
1874
MY_LOCALE my_locale_ar_SD
1875
(
1876
  68,
1877
  "ar_SD",
1878
  "Arabic - Sudan",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
1879
  false,
1 by brian
clean slate
1880
  &my_locale_typelib_month_names_ar_BH,
1881
  &my_locale_typelib_ab_month_names_ar_BH,
1882
  &my_locale_typelib_day_names_ar_BH,
1883
  &my_locale_typelib_ab_day_names_ar_BH
1884
);
1885
/***** LOCALE END ar_SD *****/
1886
1887
/***** LOCALE BEGIN ar_TN: Arabic - Tunisia *****/
1888
MY_LOCALE my_locale_ar_TN
1889
(
1890
  69,
1891
  "ar_TN",
1892
  "Arabic - Tunisia",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
1893
  false,
1 by brian
clean slate
1894
  &my_locale_typelib_month_names_ar_BH,
1895
  &my_locale_typelib_ab_month_names_ar_BH,
1896
  &my_locale_typelib_day_names_ar_BH,
1897
  &my_locale_typelib_ab_day_names_ar_BH
1898
);
1899
/***** LOCALE END ar_TN *****/
1900
1901
/***** LOCALE BEGIN ar_YE: Arabic - Yemen *****/
1902
MY_LOCALE my_locale_ar_YE
1903
(
1904
  70,
1905
  "ar_YE",
1906
  "Arabic - Yemen",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
1907
  false,
1 by brian
clean slate
1908
  &my_locale_typelib_month_names_ar_BH,
1909
  &my_locale_typelib_ab_month_names_ar_BH,
1910
  &my_locale_typelib_day_names_ar_BH,
1911
  &my_locale_typelib_ab_day_names_ar_BH
1912
);
1913
/***** LOCALE END ar_YE *****/
1914
1915
/***** LOCALE BEGIN de_BE: German - Belgium *****/
1916
MY_LOCALE my_locale_de_BE
1917
(
1918
  71,
1919
  "de_BE",
1920
  "German - Belgium",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
1921
  false,
1 by brian
clean slate
1922
  &my_locale_typelib_month_names_de_DE,
1923
  &my_locale_typelib_ab_month_names_de_DE,
1924
  &my_locale_typelib_day_names_de_DE,
1925
  &my_locale_typelib_ab_day_names_de_DE
1926
);
1927
/***** LOCALE END de_BE *****/
1928
1929
/***** LOCALE BEGIN de_CH: German - Switzerland *****/
1930
MY_LOCALE my_locale_de_CH
1931
(
1932
  72,
1933
  "de_CH",
1934
  "German - Switzerland",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
1935
  false,
1 by brian
clean slate
1936
  &my_locale_typelib_month_names_de_DE,
1937
  &my_locale_typelib_ab_month_names_de_DE,
1938
  &my_locale_typelib_day_names_de_DE,
1939
  &my_locale_typelib_ab_day_names_de_DE
1940
);
1941
/***** LOCALE END de_CH *****/
1942
1943
/***** LOCALE BEGIN de_LU: German - Luxembourg *****/
1944
MY_LOCALE my_locale_de_LU
1945
(
1946
  73,
1947
  "de_LU",
1948
  "German - Luxembourg",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
1949
  false,
1 by brian
clean slate
1950
  &my_locale_typelib_month_names_de_DE,
1951
  &my_locale_typelib_ab_month_names_de_DE,
1952
  &my_locale_typelib_day_names_de_DE,
1953
  &my_locale_typelib_ab_day_names_de_DE
1954
);
1955
/***** LOCALE END de_LU *****/
1956
1957
/***** LOCALE BEGIN en_AU: English - Australia *****/
1958
MY_LOCALE my_locale_en_AU
1959
(
1960
  74,
1961
  "en_AU",
1962
  "English - Australia",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
1963
  true,
1 by brian
clean slate
1964
  &my_locale_typelib_month_names_en_US,
1965
  &my_locale_typelib_ab_month_names_en_US,
1966
  &my_locale_typelib_day_names_en_US,
1967
  &my_locale_typelib_ab_day_names_en_US
1968
);
1969
/***** LOCALE END en_AU *****/
1970
1971
/***** LOCALE BEGIN en_CA: English - Canada *****/
1972
MY_LOCALE my_locale_en_CA
1973
(
1974
  75,
1975
  "en_CA",
1976
  "English - Canada",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
1977
  true,
1 by brian
clean slate
1978
  &my_locale_typelib_month_names_en_US,
1979
  &my_locale_typelib_ab_month_names_en_US,
1980
  &my_locale_typelib_day_names_en_US,
1981
  &my_locale_typelib_ab_day_names_en_US
1982
);
1983
/***** LOCALE END en_CA *****/
1984
1985
/***** LOCALE BEGIN en_GB: English - United Kingdom *****/
1986
MY_LOCALE my_locale_en_GB
1987
(
1988
  1,
1989
  "en_GB",
1990
  "English - United Kingdom",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
1991
  true,
1 by brian
clean slate
1992
  &my_locale_typelib_month_names_en_US,
1993
  &my_locale_typelib_ab_month_names_en_US,
1994
  &my_locale_typelib_day_names_en_US,
1995
  &my_locale_typelib_ab_day_names_en_US
1996
);
1997
/***** LOCALE END en_GB *****/
1998
1999
/***** LOCALE BEGIN en_IN: English - India *****/
2000
MY_LOCALE my_locale_en_IN
2001
(
2002
  76,
2003
  "en_IN",
2004
  "English - India",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
2005
  true,
1 by brian
clean slate
2006
  &my_locale_typelib_month_names_en_US,
2007
  &my_locale_typelib_ab_month_names_en_US,
2008
  &my_locale_typelib_day_names_en_US,
2009
  &my_locale_typelib_ab_day_names_en_US
2010
);
2011
/***** LOCALE END en_IN *****/
2012
2013
/***** LOCALE BEGIN en_NZ: English - New Zealand *****/
2014
MY_LOCALE my_locale_en_NZ
2015
(
2016
  77,
2017
  "en_NZ",
2018
  "English - New Zealand",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
2019
  true,
1 by brian
clean slate
2020
  &my_locale_typelib_month_names_en_US,
2021
  &my_locale_typelib_ab_month_names_en_US,
2022
  &my_locale_typelib_day_names_en_US,
2023
  &my_locale_typelib_ab_day_names_en_US
2024
);
2025
/***** LOCALE END en_NZ *****/
2026
2027
/***** LOCALE BEGIN en_PH: English - Philippines *****/
2028
MY_LOCALE my_locale_en_PH
2029
(
2030
  78,
2031
  "en_PH",
2032
  "English - Philippines",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
2033
  true,
1 by brian
clean slate
2034
  &my_locale_typelib_month_names_en_US,
2035
  &my_locale_typelib_ab_month_names_en_US,
2036
  &my_locale_typelib_day_names_en_US,
2037
  &my_locale_typelib_ab_day_names_en_US
2038
);
2039
/***** LOCALE END en_PH *****/
2040
2041
/***** LOCALE BEGIN en_ZA: English - South Africa *****/
2042
MY_LOCALE my_locale_en_ZA
2043
(
2044
  79,
2045
  "en_ZA",
2046
  "English - South Africa",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
2047
  true,
1 by brian
clean slate
2048
  &my_locale_typelib_month_names_en_US,
2049
  &my_locale_typelib_ab_month_names_en_US,
2050
  &my_locale_typelib_day_names_en_US,
2051
  &my_locale_typelib_ab_day_names_en_US
2052
);
2053
/***** LOCALE END en_ZA *****/
2054
2055
/***** LOCALE BEGIN en_ZW: English - Zimbabwe *****/
2056
MY_LOCALE my_locale_en_ZW
2057
(
2058
  80,
2059
  "en_ZW",
2060
  "English - Zimbabwe",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
2061
  true,
1 by brian
clean slate
2062
  &my_locale_typelib_month_names_en_US,
2063
  &my_locale_typelib_ab_month_names_en_US,
2064
  &my_locale_typelib_day_names_en_US,
2065
  &my_locale_typelib_ab_day_names_en_US
2066
);
2067
/***** LOCALE END en_ZW *****/
2068
2069
/***** LOCALE BEGIN es_AR: Spanish - Argentina *****/
2070
MY_LOCALE my_locale_es_AR
2071
(
2072
  81,
2073
  "es_AR",
2074
  "Spanish - Argentina",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
2075
  false,
1 by brian
clean slate
2076
  &my_locale_typelib_month_names_es_ES,
2077
  &my_locale_typelib_ab_month_names_es_ES,
2078
  &my_locale_typelib_day_names_es_ES,
2079
  &my_locale_typelib_ab_day_names_es_ES
2080
);
2081
/***** LOCALE END es_AR *****/
2082
2083
/***** LOCALE BEGIN es_BO: Spanish - Bolivia *****/
2084
MY_LOCALE my_locale_es_BO
2085
(
2086
  82,
2087
  "es_BO",
2088
  "Spanish - Bolivia",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
2089
  false,
1 by brian
clean slate
2090
  &my_locale_typelib_month_names_es_ES,
2091
  &my_locale_typelib_ab_month_names_es_ES,
2092
  &my_locale_typelib_day_names_es_ES,
2093
  &my_locale_typelib_ab_day_names_es_ES
2094
);
2095
/***** LOCALE END es_BO *****/
2096
2097
/***** LOCALE BEGIN es_CL: Spanish - Chile *****/
2098
MY_LOCALE my_locale_es_CL
2099
(
2100
  83,
2101
  "es_CL",
2102
  "Spanish - Chile",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
2103
  false,
1 by brian
clean slate
2104
  &my_locale_typelib_month_names_es_ES,
2105
  &my_locale_typelib_ab_month_names_es_ES,
2106
  &my_locale_typelib_day_names_es_ES,
2107
  &my_locale_typelib_ab_day_names_es_ES
2108
);
2109
/***** LOCALE END es_CL *****/
2110
2111
/***** LOCALE BEGIN es_CO: Spanish - Columbia *****/
2112
MY_LOCALE my_locale_es_CO
2113
(
2114
  84,
2115
  "es_CO",
2116
  "Spanish - Columbia",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
2117
  false,
1 by brian
clean slate
2118
  &my_locale_typelib_month_names_es_ES,
2119
  &my_locale_typelib_ab_month_names_es_ES,
2120
  &my_locale_typelib_day_names_es_ES,
2121
  &my_locale_typelib_ab_day_names_es_ES
2122
);
2123
/***** LOCALE END es_CO *****/
2124
2125
/***** LOCALE BEGIN es_CR: Spanish - Costa Rica *****/
2126
MY_LOCALE my_locale_es_CR
2127
(
2128
  85,
2129
  "es_CR",
2130
  "Spanish - Costa Rica",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
2131
  false,
1 by brian
clean slate
2132
  &my_locale_typelib_month_names_es_ES,
2133
  &my_locale_typelib_ab_month_names_es_ES,
2134
  &my_locale_typelib_day_names_es_ES,
2135
  &my_locale_typelib_ab_day_names_es_ES
2136
);
2137
/***** LOCALE END es_CR *****/
2138
2139
/***** LOCALE BEGIN es_DO: Spanish - Dominican Republic *****/
2140
MY_LOCALE my_locale_es_DO
2141
(
2142
  86,
2143
  "es_DO",
2144
  "Spanish - Dominican Republic",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
2145
  false,
1 by brian
clean slate
2146
  &my_locale_typelib_month_names_es_ES,
2147
  &my_locale_typelib_ab_month_names_es_ES,
2148
  &my_locale_typelib_day_names_es_ES,
2149
  &my_locale_typelib_ab_day_names_es_ES
2150
);
2151
/***** LOCALE END es_DO *****/
2152
2153
/***** LOCALE BEGIN es_EC: Spanish - Ecuador *****/
2154
MY_LOCALE my_locale_es_EC
2155
(
2156
  87,
2157
  "es_EC",
2158
  "Spanish - Ecuador",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
2159
  false,
1 by brian
clean slate
2160
  &my_locale_typelib_month_names_es_ES,
2161
  &my_locale_typelib_ab_month_names_es_ES,
2162
  &my_locale_typelib_day_names_es_ES,
2163
  &my_locale_typelib_ab_day_names_es_ES
2164
);
2165
/***** LOCALE END es_EC *****/
2166
2167
/***** LOCALE BEGIN es_GT: Spanish - Guatemala *****/
2168
MY_LOCALE my_locale_es_GT
2169
(
2170
  88,
2171
  "es_GT",
2172
  "Spanish - Guatemala",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
2173
  false,
1 by brian
clean slate
2174
  &my_locale_typelib_month_names_es_ES,
2175
  &my_locale_typelib_ab_month_names_es_ES,
2176
  &my_locale_typelib_day_names_es_ES,
2177
  &my_locale_typelib_ab_day_names_es_ES
2178
);
2179
/***** LOCALE END es_GT *****/
2180
2181
/***** LOCALE BEGIN es_HN: Spanish - Honduras *****/
2182
MY_LOCALE my_locale_es_HN
2183
(
2184
  89,
2185
  "es_HN",
2186
  "Spanish - Honduras",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
2187
  false,
1 by brian
clean slate
2188
  &my_locale_typelib_month_names_es_ES,
2189
  &my_locale_typelib_ab_month_names_es_ES,
2190
  &my_locale_typelib_day_names_es_ES,
2191
  &my_locale_typelib_ab_day_names_es_ES
2192
);
2193
/***** LOCALE END es_HN *****/
2194
2195
/***** LOCALE BEGIN es_MX: Spanish - Mexico *****/
2196
MY_LOCALE my_locale_es_MX
2197
(
2198
  90,
2199
  "es_MX",
2200
  "Spanish - Mexico",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
2201
  false,
1 by brian
clean slate
2202
  &my_locale_typelib_month_names_es_ES,
2203
  &my_locale_typelib_ab_month_names_es_ES,
2204
  &my_locale_typelib_day_names_es_ES,
2205
  &my_locale_typelib_ab_day_names_es_ES
2206
);
2207
/***** LOCALE END es_MX *****/
2208
2209
/***** LOCALE BEGIN es_NI: Spanish - Nicaragua *****/
2210
MY_LOCALE my_locale_es_NI
2211
(
2212
  91,
2213
  "es_NI",
2214
  "Spanish - Nicaragua",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
2215
  false,
1 by brian
clean slate
2216
  &my_locale_typelib_month_names_es_ES,
2217
  &my_locale_typelib_ab_month_names_es_ES,
2218
  &my_locale_typelib_day_names_es_ES,
2219
  &my_locale_typelib_ab_day_names_es_ES
2220
);
2221
/***** LOCALE END es_NI *****/
2222
2223
/***** LOCALE BEGIN es_PA: Spanish - Panama *****/
2224
MY_LOCALE my_locale_es_PA
2225
(
2226
  92,
2227
  "es_PA",
2228
  "Spanish - Panama",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
2229
  false,
1 by brian
clean slate
2230
  &my_locale_typelib_month_names_es_ES,
2231
  &my_locale_typelib_ab_month_names_es_ES,
2232
  &my_locale_typelib_day_names_es_ES,
2233
  &my_locale_typelib_ab_day_names_es_ES
2234
);
2235
/***** LOCALE END es_PA *****/
2236
2237
/***** LOCALE BEGIN es_PE: Spanish - Peru *****/
2238
MY_LOCALE my_locale_es_PE
2239
(
2240
  93,
2241
  "es_PE",
2242
  "Spanish - Peru",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
2243
  false,
1 by brian
clean slate
2244
  &my_locale_typelib_month_names_es_ES,
2245
  &my_locale_typelib_ab_month_names_es_ES,
2246
  &my_locale_typelib_day_names_es_ES,
2247
  &my_locale_typelib_ab_day_names_es_ES
2248
);
2249
/***** LOCALE END es_PE *****/
2250
2251
/***** LOCALE BEGIN es_PR: Spanish - Puerto Rico *****/
2252
MY_LOCALE my_locale_es_PR
2253
(
2254
  94,
2255
  "es_PR",
2256
  "Spanish - Puerto Rico",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
2257
  false,
1 by brian
clean slate
2258
  &my_locale_typelib_month_names_es_ES,
2259
  &my_locale_typelib_ab_month_names_es_ES,
2260
  &my_locale_typelib_day_names_es_ES,
2261
  &my_locale_typelib_ab_day_names_es_ES
2262
);
2263
/***** LOCALE END es_PR *****/
2264
2265
/***** LOCALE BEGIN es_PY: Spanish - Paraguay *****/
2266
MY_LOCALE my_locale_es_PY
2267
(
2268
  95,
2269
  "es_PY",
2270
  "Spanish - Paraguay",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
2271
  false,
1 by brian
clean slate
2272
  &my_locale_typelib_month_names_es_ES,
2273
  &my_locale_typelib_ab_month_names_es_ES,
2274
  &my_locale_typelib_day_names_es_ES,
2275
  &my_locale_typelib_ab_day_names_es_ES
2276
);
2277
/***** LOCALE END es_PY *****/
2278
2279
/***** LOCALE BEGIN es_SV: Spanish - El Salvador *****/
2280
MY_LOCALE my_locale_es_SV
2281
(
2282
  96,
2283
  "es_SV",
2284
  "Spanish - El Salvador",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
2285
  false,
1 by brian
clean slate
2286
  &my_locale_typelib_month_names_es_ES,
2287
  &my_locale_typelib_ab_month_names_es_ES,
2288
  &my_locale_typelib_day_names_es_ES,
2289
  &my_locale_typelib_ab_day_names_es_ES
2290
);
2291
/***** LOCALE END es_SV *****/
2292
2293
/***** LOCALE BEGIN es_US: Spanish - United States *****/
2294
MY_LOCALE my_locale_es_US
2295
(
2296
  97,
2297
  "es_US",
2298
  "Spanish - United States",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
2299
  false,
1 by brian
clean slate
2300
  &my_locale_typelib_month_names_es_ES,
2301
  &my_locale_typelib_ab_month_names_es_ES,
2302
  &my_locale_typelib_day_names_es_ES,
2303
  &my_locale_typelib_ab_day_names_es_ES
2304
);
2305
/***** LOCALE END es_US *****/
2306
2307
/***** LOCALE BEGIN es_UY: Spanish - Uruguay *****/
2308
MY_LOCALE my_locale_es_UY
2309
(
2310
  98,
2311
  "es_UY",
2312
  "Spanish - Uruguay",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
2313
  false,
1 by brian
clean slate
2314
  &my_locale_typelib_month_names_es_ES,
2315
  &my_locale_typelib_ab_month_names_es_ES,
2316
  &my_locale_typelib_day_names_es_ES,
2317
  &my_locale_typelib_ab_day_names_es_ES
2318
);
2319
/***** LOCALE END es_UY *****/
2320
2321
/***** LOCALE BEGIN es_VE: Spanish - Venezuela *****/
2322
MY_LOCALE my_locale_es_VE
2323
(
2324
  99,
2325
  "es_VE",
2326
  "Spanish - Venezuela",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
2327
  false,
1 by brian
clean slate
2328
  &my_locale_typelib_month_names_es_ES,
2329
  &my_locale_typelib_ab_month_names_es_ES,
2330
  &my_locale_typelib_day_names_es_ES,
2331
  &my_locale_typelib_ab_day_names_es_ES
2332
);
2333
/***** LOCALE END es_VE *****/
2334
2335
/***** LOCALE BEGIN fr_BE: French - Belgium *****/
2336
MY_LOCALE my_locale_fr_BE
2337
(
2338
  100,
2339
  "fr_BE",
2340
  "French - Belgium",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
2341
  false,
1 by brian
clean slate
2342
  &my_locale_typelib_month_names_fr_FR,
2343
  &my_locale_typelib_ab_month_names_fr_FR,
2344
  &my_locale_typelib_day_names_fr_FR,
2345
  &my_locale_typelib_ab_day_names_fr_FR
2346
);
2347
/***** LOCALE END fr_BE *****/
2348
2349
/***** LOCALE BEGIN fr_CA: French - Canada *****/
2350
MY_LOCALE my_locale_fr_CA
2351
(
2352
  101,
2353
  "fr_CA",
2354
  "French - Canada",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
2355
  false,
1 by brian
clean slate
2356
  &my_locale_typelib_month_names_fr_FR,
2357
  &my_locale_typelib_ab_month_names_fr_FR,
2358
  &my_locale_typelib_day_names_fr_FR,
2359
  &my_locale_typelib_ab_day_names_fr_FR
2360
);
2361
/***** LOCALE END fr_CA *****/
2362
2363
/***** LOCALE BEGIN fr_CH: French - Switzerland *****/
2364
MY_LOCALE my_locale_fr_CH
2365
(
2366
  102,
2367
  "fr_CH",
2368
  "French - Switzerland",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
2369
  false,
1 by brian
clean slate
2370
  &my_locale_typelib_month_names_fr_FR,
2371
  &my_locale_typelib_ab_month_names_fr_FR,
2372
  &my_locale_typelib_day_names_fr_FR,
2373
  &my_locale_typelib_ab_day_names_fr_FR
2374
);
2375
/***** LOCALE END fr_CH *****/
2376
2377
/***** LOCALE BEGIN fr_LU: French - Luxembourg *****/
2378
MY_LOCALE my_locale_fr_LU
2379
(
2380
  103,
2381
  "fr_LU",
2382
  "French - Luxembourg",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
2383
  false,
1 by brian
clean slate
2384
  &my_locale_typelib_month_names_fr_FR,
2385
  &my_locale_typelib_ab_month_names_fr_FR,
2386
  &my_locale_typelib_day_names_fr_FR,
2387
  &my_locale_typelib_ab_day_names_fr_FR
2388
);
2389
/***** LOCALE END fr_LU *****/
2390
2391
/***** LOCALE BEGIN it_IT: Italian - Italy *****/
2392
MY_LOCALE my_locale_it_IT
2393
(
2394
  104,
2395
  "it_IT",
2396
  "Italian - Italy",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
2397
  false,
1 by brian
clean slate
2398
  &my_locale_typelib_month_names_it_CH,
2399
  &my_locale_typelib_ab_month_names_it_CH,
2400
  &my_locale_typelib_day_names_it_CH,
2401
  &my_locale_typelib_ab_day_names_it_CH
2402
);
2403
/***** LOCALE END it_IT *****/
2404
2405
/***** LOCALE BEGIN nl_BE: Dutch - Belgium *****/
2406
MY_LOCALE my_locale_nl_BE
2407
(
2408
  105,
2409
  "nl_BE",
2410
  "Dutch - Belgium",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
2411
  true,
1 by brian
clean slate
2412
  &my_locale_typelib_month_names_nl_NL,
2413
  &my_locale_typelib_ab_month_names_nl_NL,
2414
  &my_locale_typelib_day_names_nl_NL,
2415
  &my_locale_typelib_ab_day_names_nl_NL
2416
);
2417
/***** LOCALE END nl_BE *****/
2418
2419
/***** LOCALE BEGIN no_NO: Norwegian - Norway *****/
2420
MY_LOCALE my_locale_no_NO
2421
(
2422
  106,
2423
  "no_NO",
2424
  "Norwegian - Norway",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
2425
  false,
1 by brian
clean slate
2426
  &my_locale_typelib_month_names_nb_NO,
2427
  &my_locale_typelib_ab_month_names_nb_NO,
2428
  &my_locale_typelib_day_names_nb_NO,
2429
  &my_locale_typelib_ab_day_names_nb_NO
2430
);
2431
/***** LOCALE END no_NO *****/
2432
2433
/***** LOCALE BEGIN sv_FI: Swedish - Finland *****/
2434
MY_LOCALE my_locale_sv_FI
2435
(
2436
  107,
2437
  "sv_FI",
2438
  "Swedish - Finland",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
2439
  false,
1 by brian
clean slate
2440
  &my_locale_typelib_month_names_sv_SE,
2441
  &my_locale_typelib_ab_month_names_sv_SE,
2442
  &my_locale_typelib_day_names_sv_SE,
2443
  &my_locale_typelib_ab_day_names_sv_SE
2444
);
2445
/***** LOCALE END sv_FI *****/
2446
2447
/***** LOCALE BEGIN zh_HK: Chinese - Hong Kong SAR *****/
2448
MY_LOCALE my_locale_zh_HK
2449
(
2450
  108,
2451
  "zh_HK",
2452
  "Chinese - Hong Kong SAR",
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
2453
  false,
1 by brian
clean slate
2454
  &my_locale_typelib_month_names_zh_CN,
2455
  &my_locale_typelib_ab_month_names_zh_CN,
2456
  &my_locale_typelib_day_names_zh_CN,
2457
  &my_locale_typelib_ab_day_names_zh_CN
2458
);
2459
/***** LOCALE END zh_HK *****/
2460
2461
2462
/*
2463
  The list of all locales.
2464
  Note, locales must be ordered according to their
2465
  numbers to make my_locale_by_number() work fast.
2466
  Some debug asserts below check this.
2467
*/
2468
MY_LOCALE *my_locales[]=
2469
  {
2470
    &my_locale_en_US,
2471
    &my_locale_en_GB,
2472
    &my_locale_ja_JP,
2473
    &my_locale_sv_SE,
2474
    &my_locale_de_DE,
2475
    &my_locale_fr_FR,
2476
    &my_locale_ar_AE,
2477
    &my_locale_ar_BH,
2478
    &my_locale_ar_JO,
2479
    &my_locale_ar_SA,
2480
    &my_locale_ar_SY,
2481
    &my_locale_be_BY,
2482
    &my_locale_bg_BG,
2483
    &my_locale_ca_ES,
2484
    &my_locale_cs_CZ,
2485
    &my_locale_da_DK,
2486
    &my_locale_de_AT,
2487
    &my_locale_es_ES,
2488
    &my_locale_et_EE,
2489
    &my_locale_eu_ES,
2490
    &my_locale_fi_FI,
2491
    &my_locale_fo_FO,
2492
    &my_locale_gl_ES,
2493
    &my_locale_gu_IN,
2494
    &my_locale_he_IL,
2495
    &my_locale_hi_IN,
2496
    &my_locale_hr_HR,
2497
    &my_locale_hu_HU,
2498
    &my_locale_id_ID,
2499
    &my_locale_is_IS,
2500
    &my_locale_it_CH,
2501
    &my_locale_ko_KR,
2502
    &my_locale_lt_LT,
2503
    &my_locale_lv_LV,
2504
    &my_locale_mk_MK,
2505
    &my_locale_mn_MN,
2506
    &my_locale_ms_MY,
2507
    &my_locale_nb_NO,
2508
    &my_locale_nl_NL,
2509
    &my_locale_pl_PL,
2510
    &my_locale_pt_BR,
2511
    &my_locale_pt_PT,
2512
    &my_locale_ro_RO,
2513
    &my_locale_ru_RU,
2514
    &my_locale_ru_UA,
2515
    &my_locale_sk_SK,
2516
    &my_locale_sl_SI,
2517
    &my_locale_sq_AL,
2518
    &my_locale_sr_YU,
2519
    &my_locale_ta_IN,
2520
    &my_locale_te_IN,
2521
    &my_locale_th_TH,
2522
    &my_locale_tr_TR,
2523
    &my_locale_uk_UA,
2524
    &my_locale_ur_PK,
2525
    &my_locale_vi_VN,
2526
    &my_locale_zh_CN,
2527
    &my_locale_zh_TW,
2528
    &my_locale_ar_DZ,
2529
    &my_locale_ar_EG,
2530
    &my_locale_ar_IN,
2531
    &my_locale_ar_IQ,
2532
    &my_locale_ar_KW,
2533
    &my_locale_ar_LB,
2534
    &my_locale_ar_LY,
2535
    &my_locale_ar_MA,
2536
    &my_locale_ar_OM,
2537
    &my_locale_ar_QA,
2538
    &my_locale_ar_SD,
2539
    &my_locale_ar_TN,
2540
    &my_locale_ar_YE,
2541
    &my_locale_de_BE,
2542
    &my_locale_de_CH,
2543
    &my_locale_de_LU,
2544
    &my_locale_en_AU,
2545
    &my_locale_en_CA,
2546
    &my_locale_en_IN,
2547
    &my_locale_en_NZ,
2548
    &my_locale_en_PH,
2549
    &my_locale_en_ZA,
2550
    &my_locale_en_ZW,
2551
    &my_locale_es_AR,
2552
    &my_locale_es_BO,
2553
    &my_locale_es_CL,
2554
    &my_locale_es_CO,
2555
    &my_locale_es_CR,
2556
    &my_locale_es_DO,
2557
    &my_locale_es_EC,
2558
    &my_locale_es_GT,
2559
    &my_locale_es_HN,
2560
    &my_locale_es_MX,
2561
    &my_locale_es_NI,
2562
    &my_locale_es_PA,
2563
    &my_locale_es_PE,
2564
    &my_locale_es_PR,
2565
    &my_locale_es_PY,
2566
    &my_locale_es_SV,
2567
    &my_locale_es_US,
2568
    &my_locale_es_UY,
2569
    &my_locale_es_VE,
2570
    &my_locale_fr_BE,
2571
    &my_locale_fr_CA,
2572
    &my_locale_fr_CH,
2573
    &my_locale_fr_LU,
2574
    &my_locale_it_IT,
2575
    &my_locale_nl_BE,
2576
    &my_locale_no_NO,
2577
    &my_locale_sv_FI,
2578
    &my_locale_zh_HK,
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
2579
    NULL
1 by brian
clean slate
2580
  };
2581
2582
482 by Brian Aker
Remove uint.
2583
MY_LOCALE *my_locale_by_number(uint32_t number)
1 by brian
clean slate
2584
{
2585
  MY_LOCALE *locale;
2586
  if (number >= array_elements(my_locales) - 1)
2587
    return NULL;
2588
  locale= my_locales[number];
2589
  // Check that locale is on its correct position in the array
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
2590
  assert(locale == my_locales[locale->number]);
1 by brian
clean slate
2591
  return locale;
2592
}
2593
2594
2595
MY_LOCALE *my_locale_by_name(const char *name)
2596
{
2597
  MY_LOCALE **locale;
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
2598
  for (locale= my_locales; *locale != NULL; locale++)
1 by brian
clean slate
2599
  {
383.1.12 by Brian Aker
Much closer toward UTF8 being around all the time...
2600
    if (!my_strcasecmp(&my_charset_utf8_general_ci, (*locale)->name, name))
1 by brian
clean slate
2601
    {
2602
      // Check that locale is on its correct position in the array
51.1.54 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
2603
      assert((*locale) == my_locales[(*locale)->number]);
1 by brian
clean slate
2604
      return *locale;
2605
    }
2606
  }
2607
  return NULL;
2608
}