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