localename.c 42 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499
  1. /* Determine the current selected locale.
  2. Copyright (C) 1995-1999, 2000-2006 Free Software Foundation, Inc.
  3. This program is free software; you can redistribute it and/or modify it
  4. under the terms of the GNU Library General Public License as published
  5. by the Free Software Foundation; either version 2, or (at your option)
  6. any later version.
  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 GNU
  10. Library General Public License for more details.
  11. You should have received a copy of the GNU Library General Public
  12. License along with this program; if not, write to the Free Software
  13. Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
  14. USA. */
  15. /* Written by Ulrich Drepper <drepper@gnu.org>, 1995. */
  16. /* Win32 code written by Tor Lillqvist <tml@iki.fi>. */
  17. /* MacOS X code written by Bruno Haible <bruno@clisp.org>. */
  18. #ifdef HAVE_CONFIG_H
  19. # include <config.h>
  20. #endif
  21. #include <stdlib.h>
  22. #include <locale.h>
  23. #if HAVE_CFLOCALECOPYCURRENT || HAVE_CFPREFERENCESCOPYAPPVALUE
  24. # include <string.h>
  25. # include <CoreFoundation/CFString.h>
  26. # if HAVE_CFLOCALECOPYCURRENT
  27. # include <CoreFoundation/CFLocale.h>
  28. # elif HAVE_CFPREFERENCESCOPYAPPVALUE
  29. # include <CoreFoundation/CFPreferences.h>
  30. # endif
  31. #endif
  32. #if defined _WIN32 || defined __WIN32__
  33. # define WIN32_NATIVE
  34. #endif
  35. #ifdef WIN32_NATIVE
  36. # define WIN32_LEAN_AND_MEAN
  37. # include <windows.h>
  38. /* List of language codes, sorted by value:
  39. 0x01 LANG_ARABIC
  40. 0x02 LANG_BULGARIAN
  41. 0x03 LANG_CATALAN
  42. 0x04 LANG_CHINESE
  43. 0x05 LANG_CZECH
  44. 0x06 LANG_DANISH
  45. 0x07 LANG_GERMAN
  46. 0x08 LANG_GREEK
  47. 0x09 LANG_ENGLISH
  48. 0x0a LANG_SPANISH
  49. 0x0b LANG_FINNISH
  50. 0x0c LANG_FRENCH
  51. 0x0d LANG_HEBREW
  52. 0x0e LANG_HUNGARIAN
  53. 0x0f LANG_ICELANDIC
  54. 0x10 LANG_ITALIAN
  55. 0x11 LANG_JAPANESE
  56. 0x12 LANG_KOREAN
  57. 0x13 LANG_DUTCH
  58. 0x14 LANG_NORWEGIAN
  59. 0x15 LANG_POLISH
  60. 0x16 LANG_PORTUGUESE
  61. 0x17 LANG_RHAETO_ROMANCE
  62. 0x18 LANG_ROMANIAN
  63. 0x19 LANG_RUSSIAN
  64. 0x1a LANG_CROATIAN == LANG_SERBIAN
  65. 0x1b LANG_SLOVAK
  66. 0x1c LANG_ALBANIAN
  67. 0x1d LANG_SWEDISH
  68. 0x1e LANG_THAI
  69. 0x1f LANG_TURKISH
  70. 0x20 LANG_URDU
  71. 0x21 LANG_INDONESIAN
  72. 0x22 LANG_UKRAINIAN
  73. 0x23 LANG_BELARUSIAN
  74. 0x24 LANG_SLOVENIAN
  75. 0x25 LANG_ESTONIAN
  76. 0x26 LANG_LATVIAN
  77. 0x27 LANG_LITHUANIAN
  78. 0x28 LANG_TAJIK
  79. 0x29 LANG_FARSI
  80. 0x2a LANG_VIETNAMESE
  81. 0x2b LANG_ARMENIAN
  82. 0x2c LANG_AZERI
  83. 0x2d LANG_BASQUE
  84. 0x2e LANG_SORBIAN
  85. 0x2f LANG_MACEDONIAN
  86. 0x30 LANG_SUTU
  87. 0x31 LANG_TSONGA
  88. 0x32 LANG_TSWANA
  89. 0x33 LANG_VENDA
  90. 0x34 LANG_XHOSA
  91. 0x35 LANG_ZULU
  92. 0x36 LANG_AFRIKAANS
  93. 0x37 LANG_GEORGIAN
  94. 0x38 LANG_FAEROESE
  95. 0x39 LANG_HINDI
  96. 0x3a LANG_MALTESE
  97. 0x3b LANG_SAAMI
  98. 0x3c LANG_GAELIC
  99. 0x3d LANG_YIDDISH
  100. 0x3e LANG_MALAY
  101. 0x3f LANG_KAZAK
  102. 0x40 LANG_KYRGYZ
  103. 0x41 LANG_SWAHILI
  104. 0x42 LANG_TURKMEN
  105. 0x43 LANG_UZBEK
  106. 0x44 LANG_TATAR
  107. 0x45 LANG_BENGALI
  108. 0x46 LANG_PUNJABI
  109. 0x47 LANG_GUJARATI
  110. 0x48 LANG_ORIYA
  111. 0x49 LANG_TAMIL
  112. 0x4a LANG_TELUGU
  113. 0x4b LANG_KANNADA
  114. 0x4c LANG_MALAYALAM
  115. 0x4d LANG_ASSAMESE
  116. 0x4e LANG_MARATHI
  117. 0x4f LANG_SANSKRIT
  118. 0x50 LANG_MONGOLIAN
  119. 0x51 LANG_TIBETAN
  120. 0x52 LANG_WELSH
  121. 0x53 LANG_CAMBODIAN
  122. 0x54 LANG_LAO
  123. 0x55 LANG_BURMESE
  124. 0x56 LANG_GALICIAN
  125. 0x57 LANG_KONKANI
  126. 0x58 LANG_MANIPURI
  127. 0x59 LANG_SINDHI
  128. 0x5a LANG_SYRIAC
  129. 0x5b LANG_SINHALESE
  130. 0x5c LANG_CHEROKEE
  131. 0x5d LANG_INUKTITUT
  132. 0x5e LANG_AMHARIC
  133. 0x5f LANG_TAMAZIGHT
  134. 0x60 LANG_KASHMIRI
  135. 0x61 LANG_NEPALI
  136. 0x62 LANG_FRISIAN
  137. 0x63 LANG_PASHTO
  138. 0x64 LANG_TAGALOG
  139. 0x65 LANG_DIVEHI
  140. 0x66 LANG_EDO
  141. 0x67 LANG_FULFULDE
  142. 0x68 LANG_HAUSA
  143. 0x69 LANG_IBIBIO
  144. 0x6a LANG_YORUBA
  145. 0x70 LANG_IGBO
  146. 0x71 LANG_KANURI
  147. 0x72 LANG_OROMO
  148. 0x73 LANG_TIGRINYA
  149. 0x74 LANG_GUARANI
  150. 0x75 LANG_HAWAIIAN
  151. 0x76 LANG_LATIN
  152. 0x77 LANG_SOMALI
  153. 0x78 LANG_YI
  154. 0x79 LANG_PAPIAMENTU
  155. */
  156. /* Mingw headers don't have latest language and sublanguage codes. */
  157. # ifndef LANG_AFRIKAANS
  158. # define LANG_AFRIKAANS 0x36
  159. # endif
  160. # ifndef LANG_ALBANIAN
  161. # define LANG_ALBANIAN 0x1c
  162. # endif
  163. # ifndef LANG_AMHARIC
  164. # define LANG_AMHARIC 0x5e
  165. # endif
  166. # ifndef LANG_ARABIC
  167. # define LANG_ARABIC 0x01
  168. # endif
  169. # ifndef LANG_ARMENIAN
  170. # define LANG_ARMENIAN 0x2b
  171. # endif
  172. # ifndef LANG_ASSAMESE
  173. # define LANG_ASSAMESE 0x4d
  174. # endif
  175. # ifndef LANG_AZERI
  176. # define LANG_AZERI 0x2c
  177. # endif
  178. # ifndef LANG_BASQUE
  179. # define LANG_BASQUE 0x2d
  180. # endif
  181. # ifndef LANG_BELARUSIAN
  182. # define LANG_BELARUSIAN 0x23
  183. # endif
  184. # ifndef LANG_BENGALI
  185. # define LANG_BENGALI 0x45
  186. # endif
  187. # ifndef LANG_BURMESE
  188. # define LANG_BURMESE 0x55
  189. # endif
  190. # ifndef LANG_CAMBODIAN
  191. # define LANG_CAMBODIAN 0x53
  192. # endif
  193. # ifndef LANG_CATALAN
  194. # define LANG_CATALAN 0x03
  195. # endif
  196. # ifndef LANG_CHEROKEE
  197. # define LANG_CHEROKEE 0x5c
  198. # endif
  199. # ifndef LANG_DIVEHI
  200. # define LANG_DIVEHI 0x65
  201. # endif
  202. # ifndef LANG_EDO
  203. # define LANG_EDO 0x66
  204. # endif
  205. # ifndef LANG_ESTONIAN
  206. # define LANG_ESTONIAN 0x25
  207. # endif
  208. # ifndef LANG_FAEROESE
  209. # define LANG_FAEROESE 0x38
  210. # endif
  211. # ifndef LANG_FARSI
  212. # define LANG_FARSI 0x29
  213. # endif
  214. # ifndef LANG_FRISIAN
  215. # define LANG_FRISIAN 0x62
  216. # endif
  217. # ifndef LANG_FULFULDE
  218. # define LANG_FULFULDE 0x67
  219. # endif
  220. # ifndef LANG_GAELIC
  221. # define LANG_GAELIC 0x3c
  222. # endif
  223. # ifndef LANG_GALICIAN
  224. # define LANG_GALICIAN 0x56
  225. # endif
  226. # ifndef LANG_GEORGIAN
  227. # define LANG_GEORGIAN 0x37
  228. # endif
  229. # ifndef LANG_GUARANI
  230. # define LANG_GUARANI 0x74
  231. # endif
  232. # ifndef LANG_GUJARATI
  233. # define LANG_GUJARATI 0x47
  234. # endif
  235. # ifndef LANG_HAUSA
  236. # define LANG_HAUSA 0x68
  237. # endif
  238. # ifndef LANG_HAWAIIAN
  239. # define LANG_HAWAIIAN 0x75
  240. # endif
  241. # ifndef LANG_HEBREW
  242. # define LANG_HEBREW 0x0d
  243. # endif
  244. # ifndef LANG_HINDI
  245. # define LANG_HINDI 0x39
  246. # endif
  247. # ifndef LANG_IBIBIO
  248. # define LANG_IBIBIO 0x69
  249. # endif
  250. # ifndef LANG_IGBO
  251. # define LANG_IGBO 0x70
  252. # endif
  253. # ifndef LANG_INDONESIAN
  254. # define LANG_INDONESIAN 0x21
  255. # endif
  256. # ifndef LANG_INUKTITUT
  257. # define LANG_INUKTITUT 0x5d
  258. # endif
  259. # ifndef LANG_KANNADA
  260. # define LANG_KANNADA 0x4b
  261. # endif
  262. # ifndef LANG_KANURI
  263. # define LANG_KANURI 0x71
  264. # endif
  265. # ifndef LANG_KASHMIRI
  266. # define LANG_KASHMIRI 0x60
  267. # endif
  268. # ifndef LANG_KAZAK
  269. # define LANG_KAZAK 0x3f
  270. # endif
  271. # ifndef LANG_KONKANI
  272. # define LANG_KONKANI 0x57
  273. # endif
  274. # ifndef LANG_KYRGYZ
  275. # define LANG_KYRGYZ 0x40
  276. # endif
  277. # ifndef LANG_LAO
  278. # define LANG_LAO 0x54
  279. # endif
  280. # ifndef LANG_LATIN
  281. # define LANG_LATIN 0x76
  282. # endif
  283. # ifndef LANG_LATVIAN
  284. # define LANG_LATVIAN 0x26
  285. # endif
  286. # ifndef LANG_LITHUANIAN
  287. # define LANG_LITHUANIAN 0x27
  288. # endif
  289. # ifndef LANG_MACEDONIAN
  290. # define LANG_MACEDONIAN 0x2f
  291. # endif
  292. # ifndef LANG_MALAY
  293. # define LANG_MALAY 0x3e
  294. # endif
  295. # ifndef LANG_MALAYALAM
  296. # define LANG_MALAYALAM 0x4c
  297. # endif
  298. # ifndef LANG_MALTESE
  299. # define LANG_MALTESE 0x3a
  300. # endif
  301. # ifndef LANG_MANIPURI
  302. # define LANG_MANIPURI 0x58
  303. # endif
  304. # ifndef LANG_MARATHI
  305. # define LANG_MARATHI 0x4e
  306. # endif
  307. # ifndef LANG_MONGOLIAN
  308. # define LANG_MONGOLIAN 0x50
  309. # endif
  310. # ifndef LANG_NEPALI
  311. # define LANG_NEPALI 0x61
  312. # endif
  313. # ifndef LANG_ORIYA
  314. # define LANG_ORIYA 0x48
  315. # endif
  316. # ifndef LANG_OROMO
  317. # define LANG_OROMO 0x72
  318. # endif
  319. # ifndef LANG_PAPIAMENTU
  320. # define LANG_PAPIAMENTU 0x79
  321. # endif
  322. # ifndef LANG_PASHTO
  323. # define LANG_PASHTO 0x63
  324. # endif
  325. # ifndef LANG_PUNJABI
  326. # define LANG_PUNJABI 0x46
  327. # endif
  328. # ifndef LANG_RHAETO_ROMANCE
  329. # define LANG_RHAETO_ROMANCE 0x17
  330. # endif
  331. # ifndef LANG_SAAMI
  332. # define LANG_SAAMI 0x3b
  333. # endif
  334. # ifndef LANG_SANSKRIT
  335. # define LANG_SANSKRIT 0x4f
  336. # endif
  337. # ifndef LANG_SERBIAN
  338. # define LANG_SERBIAN 0x1a
  339. # endif
  340. # ifndef LANG_SINDHI
  341. # define LANG_SINDHI 0x59
  342. # endif
  343. # ifndef LANG_SINHALESE
  344. # define LANG_SINHALESE 0x5b
  345. # endif
  346. # ifndef LANG_SLOVAK
  347. # define LANG_SLOVAK 0x1b
  348. # endif
  349. # ifndef LANG_SOMALI
  350. # define LANG_SOMALI 0x77
  351. # endif
  352. # ifndef LANG_SORBIAN
  353. # define LANG_SORBIAN 0x2e
  354. # endif
  355. # ifndef LANG_SUTU
  356. # define LANG_SUTU 0x30
  357. # endif
  358. # ifndef LANG_SWAHILI
  359. # define LANG_SWAHILI 0x41
  360. # endif
  361. # ifndef LANG_SYRIAC
  362. # define LANG_SYRIAC 0x5a
  363. # endif
  364. # ifndef LANG_TAGALOG
  365. # define LANG_TAGALOG 0x64
  366. # endif
  367. # ifndef LANG_TAJIK
  368. # define LANG_TAJIK 0x28
  369. # endif
  370. # ifndef LANG_TAMAZIGHT
  371. # define LANG_TAMAZIGHT 0x5f
  372. # endif
  373. # ifndef LANG_TAMIL
  374. # define LANG_TAMIL 0x49
  375. # endif
  376. # ifndef LANG_TATAR
  377. # define LANG_TATAR 0x44
  378. # endif
  379. # ifndef LANG_TELUGU
  380. # define LANG_TELUGU 0x4a
  381. # endif
  382. # ifndef LANG_THAI
  383. # define LANG_THAI 0x1e
  384. # endif
  385. # ifndef LANG_TIBETAN
  386. # define LANG_TIBETAN 0x51
  387. # endif
  388. # ifndef LANG_TIGRINYA
  389. # define LANG_TIGRINYA 0x73
  390. # endif
  391. # ifndef LANG_TSONGA
  392. # define LANG_TSONGA 0x31
  393. # endif
  394. # ifndef LANG_TSWANA
  395. # define LANG_TSWANA 0x32
  396. # endif
  397. # ifndef LANG_TURKMEN
  398. # define LANG_TURKMEN 0x42
  399. # endif
  400. # ifndef LANG_UKRAINIAN
  401. # define LANG_UKRAINIAN 0x22
  402. # endif
  403. # ifndef LANG_URDU
  404. # define LANG_URDU 0x20
  405. # endif
  406. # ifndef LANG_UZBEK
  407. # define LANG_UZBEK 0x43
  408. # endif
  409. # ifndef LANG_VENDA
  410. # define LANG_VENDA 0x33
  411. # endif
  412. # ifndef LANG_VIETNAMESE
  413. # define LANG_VIETNAMESE 0x2a
  414. # endif
  415. # ifndef LANG_WELSH
  416. # define LANG_WELSH 0x52
  417. # endif
  418. # ifndef LANG_XHOSA
  419. # define LANG_XHOSA 0x34
  420. # endif
  421. # ifndef LANG_YI
  422. # define LANG_YI 0x78
  423. # endif
  424. # ifndef LANG_YIDDISH
  425. # define LANG_YIDDISH 0x3d
  426. # endif
  427. # ifndef LANG_YORUBA
  428. # define LANG_YORUBA 0x6a
  429. # endif
  430. # ifndef LANG_ZULU
  431. # define LANG_ZULU 0x35
  432. # endif
  433. # ifndef SUBLANG_ARABIC_SAUDI_ARABIA
  434. # define SUBLANG_ARABIC_SAUDI_ARABIA 0x01
  435. # endif
  436. # ifndef SUBLANG_ARABIC_IRAQ
  437. # define SUBLANG_ARABIC_IRAQ 0x02
  438. # endif
  439. # ifndef SUBLANG_ARABIC_EGYPT
  440. # define SUBLANG_ARABIC_EGYPT 0x03
  441. # endif
  442. # ifndef SUBLANG_ARABIC_LIBYA
  443. # define SUBLANG_ARABIC_LIBYA 0x04
  444. # endif
  445. # ifndef SUBLANG_ARABIC_ALGERIA
  446. # define SUBLANG_ARABIC_ALGERIA 0x05
  447. # endif
  448. # ifndef SUBLANG_ARABIC_MOROCCO
  449. # define SUBLANG_ARABIC_MOROCCO 0x06
  450. # endif
  451. # ifndef SUBLANG_ARABIC_TUNISIA
  452. # define SUBLANG_ARABIC_TUNISIA 0x07
  453. # endif
  454. # ifndef SUBLANG_ARABIC_OMAN
  455. # define SUBLANG_ARABIC_OMAN 0x08
  456. # endif
  457. # ifndef SUBLANG_ARABIC_YEMEN
  458. # define SUBLANG_ARABIC_YEMEN 0x09
  459. # endif
  460. # ifndef SUBLANG_ARABIC_SYRIA
  461. # define SUBLANG_ARABIC_SYRIA 0x0a
  462. # endif
  463. # ifndef SUBLANG_ARABIC_JORDAN
  464. # define SUBLANG_ARABIC_JORDAN 0x0b
  465. # endif
  466. # ifndef SUBLANG_ARABIC_LEBANON
  467. # define SUBLANG_ARABIC_LEBANON 0x0c
  468. # endif
  469. # ifndef SUBLANG_ARABIC_KUWAIT
  470. # define SUBLANG_ARABIC_KUWAIT 0x0d
  471. # endif
  472. # ifndef SUBLANG_ARABIC_UAE
  473. # define SUBLANG_ARABIC_UAE 0x0e
  474. # endif
  475. # ifndef SUBLANG_ARABIC_BAHRAIN
  476. # define SUBLANG_ARABIC_BAHRAIN 0x0f
  477. # endif
  478. # ifndef SUBLANG_ARABIC_QATAR
  479. # define SUBLANG_ARABIC_QATAR 0x10
  480. # endif
  481. # ifndef SUBLANG_AZERI_LATIN
  482. # define SUBLANG_AZERI_LATIN 0x01
  483. # endif
  484. # ifndef SUBLANG_AZERI_CYRILLIC
  485. # define SUBLANG_AZERI_CYRILLIC 0x02
  486. # endif
  487. # ifndef SUBLANG_BENGALI_INDIA
  488. # define SUBLANG_BENGALI_INDIA 0x00
  489. # endif
  490. # ifndef SUBLANG_BENGALI_BANGLADESH
  491. # define SUBLANG_BENGALI_BANGLADESH 0x01
  492. # endif
  493. # ifndef SUBLANG_CHINESE_MACAU
  494. # define SUBLANG_CHINESE_MACAU 0x05
  495. # endif
  496. # ifndef SUBLANG_ENGLISH_SOUTH_AFRICA
  497. # define SUBLANG_ENGLISH_SOUTH_AFRICA 0x07
  498. # endif
  499. # ifndef SUBLANG_ENGLISH_JAMAICA
  500. # define SUBLANG_ENGLISH_JAMAICA 0x08
  501. # endif
  502. # ifndef SUBLANG_ENGLISH_CARIBBEAN
  503. # define SUBLANG_ENGLISH_CARIBBEAN 0x09
  504. # endif
  505. # ifndef SUBLANG_ENGLISH_BELIZE
  506. # define SUBLANG_ENGLISH_BELIZE 0x0a
  507. # endif
  508. # ifndef SUBLANG_ENGLISH_TRINIDAD
  509. # define SUBLANG_ENGLISH_TRINIDAD 0x0b
  510. # endif
  511. # ifndef SUBLANG_ENGLISH_ZIMBABWE
  512. # define SUBLANG_ENGLISH_ZIMBABWE 0x0c
  513. # endif
  514. # ifndef SUBLANG_ENGLISH_PHILIPPINES
  515. # define SUBLANG_ENGLISH_PHILIPPINES 0x0d
  516. # endif
  517. # ifndef SUBLANG_ENGLISH_INDONESIA
  518. # define SUBLANG_ENGLISH_INDONESIA 0x0e
  519. # endif
  520. # ifndef SUBLANG_ENGLISH_HONGKONG
  521. # define SUBLANG_ENGLISH_HONGKONG 0x0f
  522. # endif
  523. # ifndef SUBLANG_ENGLISH_INDIA
  524. # define SUBLANG_ENGLISH_INDIA 0x10
  525. # endif
  526. # ifndef SUBLANG_ENGLISH_MALAYSIA
  527. # define SUBLANG_ENGLISH_MALAYSIA 0x11
  528. # endif
  529. # ifndef SUBLANG_ENGLISH_SINGAPORE
  530. # define SUBLANG_ENGLISH_SINGAPORE 0x12
  531. # endif
  532. # ifndef SUBLANG_FRENCH_LUXEMBOURG
  533. # define SUBLANG_FRENCH_LUXEMBOURG 0x05
  534. # endif
  535. # ifndef SUBLANG_FRENCH_MONACO
  536. # define SUBLANG_FRENCH_MONACO 0x06
  537. # endif
  538. # ifndef SUBLANG_FRENCH_WESTINDIES
  539. # define SUBLANG_FRENCH_WESTINDIES 0x07
  540. # endif
  541. # ifndef SUBLANG_FRENCH_REUNION
  542. # define SUBLANG_FRENCH_REUNION 0x08
  543. # endif
  544. # ifndef SUBLANG_FRENCH_CONGO
  545. # define SUBLANG_FRENCH_CONGO 0x09
  546. # endif
  547. # ifndef SUBLANG_FRENCH_SENEGAL
  548. # define SUBLANG_FRENCH_SENEGAL 0x0a
  549. # endif
  550. # ifndef SUBLANG_FRENCH_CAMEROON
  551. # define SUBLANG_FRENCH_CAMEROON 0x0b
  552. # endif
  553. # ifndef SUBLANG_FRENCH_COTEDIVOIRE
  554. # define SUBLANG_FRENCH_COTEDIVOIRE 0x0c
  555. # endif
  556. # ifndef SUBLANG_FRENCH_MALI
  557. # define SUBLANG_FRENCH_MALI 0x0d
  558. # endif
  559. # ifndef SUBLANG_FRENCH_MOROCCO
  560. # define SUBLANG_FRENCH_MOROCCO 0x0e
  561. # endif
  562. # ifndef SUBLANG_FRENCH_HAITI
  563. # define SUBLANG_FRENCH_HAITI 0x0f
  564. # endif
  565. # ifndef SUBLANG_GERMAN_LUXEMBOURG
  566. # define SUBLANG_GERMAN_LUXEMBOURG 0x04
  567. # endif
  568. # ifndef SUBLANG_GERMAN_LIECHTENSTEIN
  569. # define SUBLANG_GERMAN_LIECHTENSTEIN 0x05
  570. # endif
  571. # ifndef SUBLANG_KASHMIRI_INDIA
  572. # define SUBLANG_KASHMIRI_INDIA 0x02
  573. # endif
  574. # ifndef SUBLANG_MALAY_MALAYSIA
  575. # define SUBLANG_MALAY_MALAYSIA 0x01
  576. # endif
  577. # ifndef SUBLANG_MALAY_BRUNEI_DARUSSALAM
  578. # define SUBLANG_MALAY_BRUNEI_DARUSSALAM 0x02
  579. # endif
  580. # ifndef SUBLANG_NEPALI_INDIA
  581. # define SUBLANG_NEPALI_INDIA 0x02
  582. # endif
  583. # ifndef SUBLANG_PUNJABI_INDIA
  584. # define SUBLANG_PUNJABI_INDIA 0x00
  585. # endif
  586. # ifndef SUBLANG_PUNJABI_PAKISTAN
  587. # define SUBLANG_PUNJABI_PAKISTAN 0x01
  588. # endif
  589. # ifndef SUBLANG_ROMANIAN_ROMANIA
  590. # define SUBLANG_ROMANIAN_ROMANIA 0x00
  591. # endif
  592. # ifndef SUBLANG_ROMANIAN_MOLDOVA
  593. # define SUBLANG_ROMANIAN_MOLDOVA 0x01
  594. # endif
  595. # ifndef SUBLANG_SERBIAN_LATIN
  596. # define SUBLANG_SERBIAN_LATIN 0x02
  597. # endif
  598. # ifndef SUBLANG_SERBIAN_CYRILLIC
  599. # define SUBLANG_SERBIAN_CYRILLIC 0x03
  600. # endif
  601. # ifndef SUBLANG_SINDHI_INDIA
  602. # define SUBLANG_SINDHI_INDIA 0x00
  603. # endif
  604. # ifndef SUBLANG_SINDHI_PAKISTAN
  605. # define SUBLANG_SINDHI_PAKISTAN 0x01
  606. # endif
  607. # ifndef SUBLANG_SPANISH_GUATEMALA
  608. # define SUBLANG_SPANISH_GUATEMALA 0x04
  609. # endif
  610. # ifndef SUBLANG_SPANISH_COSTA_RICA
  611. # define SUBLANG_SPANISH_COSTA_RICA 0x05
  612. # endif
  613. # ifndef SUBLANG_SPANISH_PANAMA
  614. # define SUBLANG_SPANISH_PANAMA 0x06
  615. # endif
  616. # ifndef SUBLANG_SPANISH_DOMINICAN_REPUBLIC
  617. # define SUBLANG_SPANISH_DOMINICAN_REPUBLIC 0x07
  618. # endif
  619. # ifndef SUBLANG_SPANISH_VENEZUELA
  620. # define SUBLANG_SPANISH_VENEZUELA 0x08
  621. # endif
  622. # ifndef SUBLANG_SPANISH_COLOMBIA
  623. # define SUBLANG_SPANISH_COLOMBIA 0x09
  624. # endif
  625. # ifndef SUBLANG_SPANISH_PERU
  626. # define SUBLANG_SPANISH_PERU 0x0a
  627. # endif
  628. # ifndef SUBLANG_SPANISH_ARGENTINA
  629. # define SUBLANG_SPANISH_ARGENTINA 0x0b
  630. # endif
  631. # ifndef SUBLANG_SPANISH_ECUADOR
  632. # define SUBLANG_SPANISH_ECUADOR 0x0c
  633. # endif
  634. # ifndef SUBLANG_SPANISH_CHILE
  635. # define SUBLANG_SPANISH_CHILE 0x0d
  636. # endif
  637. # ifndef SUBLANG_SPANISH_URUGUAY
  638. # define SUBLANG_SPANISH_URUGUAY 0x0e
  639. # endif
  640. # ifndef SUBLANG_SPANISH_PARAGUAY
  641. # define SUBLANG_SPANISH_PARAGUAY 0x0f
  642. # endif
  643. # ifndef SUBLANG_SPANISH_BOLIVIA
  644. # define SUBLANG_SPANISH_BOLIVIA 0x10
  645. # endif
  646. # ifndef SUBLANG_SPANISH_EL_SALVADOR
  647. # define SUBLANG_SPANISH_EL_SALVADOR 0x11
  648. # endif
  649. # ifndef SUBLANG_SPANISH_HONDURAS
  650. # define SUBLANG_SPANISH_HONDURAS 0x12
  651. # endif
  652. # ifndef SUBLANG_SPANISH_NICARAGUA
  653. # define SUBLANG_SPANISH_NICARAGUA 0x13
  654. # endif
  655. # ifndef SUBLANG_SPANISH_PUERTO_RICO
  656. # define SUBLANG_SPANISH_PUERTO_RICO 0x14
  657. # endif
  658. # ifndef SUBLANG_SWEDISH_FINLAND
  659. # define SUBLANG_SWEDISH_FINLAND 0x02
  660. # endif
  661. # ifndef SUBLANG_TAMAZIGHT_ARABIC
  662. # define SUBLANG_TAMAZIGHT_ARABIC 0x01
  663. # endif
  664. # ifndef SUBLANG_TAMAZIGHT_LATIN
  665. # define SUBLANG_TAMAZIGHT_LATIN 0x02
  666. # endif
  667. # ifndef SUBLANG_TIGRINYA_ETHIOPIA
  668. # define SUBLANG_TIGRINYA_ETHIOPIA 0x00
  669. # endif
  670. # ifndef SUBLANG_TIGRINYA_ERITREA
  671. # define SUBLANG_TIGRINYA_ERITREA 0x01
  672. # endif
  673. # ifndef SUBLANG_URDU_PAKISTAN
  674. # define SUBLANG_URDU_PAKISTAN 0x01
  675. # endif
  676. # ifndef SUBLANG_URDU_INDIA
  677. # define SUBLANG_URDU_INDIA 0x02
  678. # endif
  679. # ifndef SUBLANG_UZBEK_LATIN
  680. # define SUBLANG_UZBEK_LATIN 0x01
  681. # endif
  682. # ifndef SUBLANG_UZBEK_CYRILLIC
  683. # define SUBLANG_UZBEK_CYRILLIC 0x02
  684. # endif
  685. #endif
  686. # if HAVE_CFLOCALECOPYCURRENT || HAVE_CFPREFERENCESCOPYAPPVALUE
  687. /* MacOS X 10.2 or newer */
  688. /* Canonicalize a MacOS X locale name to a Unix locale name.
  689. NAME is a sufficiently large buffer.
  690. On input, it contains the MacOS X locale name.
  691. On output, it contains the Unix locale name. */
  692. void
  693. _nl_locale_name_canonicalize (char *name)
  694. {
  695. /* This conversion is based on a posting by
  696. Deborah GoldSmith <goldsmit@apple.com> on 2005-03-08,
  697. http://lists.apple.com/archives/carbon-dev/2005/Mar/msg00293.html */
  698. /* Convert legacy (NeXTstep inherited) English names to Unix (ISO 639 and
  699. ISO 3166) names. Prior to MacOS X 10.3, there is no API for doing this.
  700. Therefore we do it ourselves, using a table based on the results of the
  701. MacOS X 10.3.8 function
  702. CFLocaleCreateCanonicalLocaleIdentifierFromString(). */
  703. typedef struct { const char legacy[21+1]; const char unixy[5+1]; }
  704. legacy_entry;
  705. static const legacy_entry legacy_table[] = {
  706. { "Afrikaans", "af" },
  707. { "Albanian", "sq" },
  708. { "Amharic", "am" },
  709. { "Arabic", "ar" },
  710. { "Armenian", "hy" },
  711. { "Assamese", "as" },
  712. { "Aymara", "ay" },
  713. { "Azerbaijani", "az" },
  714. { "Basque", "eu" },
  715. { "Belarusian", "be" },
  716. { "Belorussian", "be" },
  717. { "Bengali", "bn" },
  718. { "Brazilian Portugese", "pt_BR" },
  719. { "Brazilian Portuguese", "pt_BR" },
  720. { "Breton", "br" },
  721. { "Bulgarian", "bg" },
  722. { "Burmese", "my" },
  723. { "Byelorussian", "be" },
  724. { "Catalan", "ca" },
  725. { "Chewa", "ny" },
  726. { "Chichewa", "ny" },
  727. { "Chinese", "zh" },
  728. { "Chinese, Simplified", "zh_CN" },
  729. { "Chinese, Traditional", "zh_TW" },
  730. { "Chinese, Tradtional", "zh_TW" },
  731. { "Croatian", "hr" },
  732. { "Czech", "cs" },
  733. { "Danish", "da" },
  734. { "Dutch", "nl" },
  735. { "Dzongkha", "dz" },
  736. { "English", "en" },
  737. { "Esperanto", "eo" },
  738. { "Estonian", "et" },
  739. { "Faroese", "fo" },
  740. { "Farsi", "fa" },
  741. { "Finnish", "fi" },
  742. { "Flemish", "nl_BE" },
  743. { "French", "fr" },
  744. { "Galician", "gl" },
  745. { "Gallegan", "gl" },
  746. { "Georgian", "ka" },
  747. { "German", "de" },
  748. { "Greek", "el" },
  749. { "Greenlandic", "kl" },
  750. { "Guarani", "gn" },
  751. { "Gujarati", "gu" },
  752. { "Hawaiian", "haw" }, /* Yes, "haw", not "cpe". */
  753. { "Hebrew", "he" },
  754. { "Hindi", "hi" },
  755. { "Hungarian", "hu" },
  756. { "Icelandic", "is" },
  757. { "Indonesian", "id" },
  758. { "Inuktitut", "iu" },
  759. { "Irish", "ga" },
  760. { "Italian", "it" },
  761. { "Japanese", "ja" },
  762. { "Javanese", "jv" },
  763. { "Kalaallisut", "kl" },
  764. { "Kannada", "kn" },
  765. { "Kashmiri", "ks" },
  766. { "Kazakh", "kk" },
  767. { "Khmer", "km" },
  768. { "Kinyarwanda", "rw" },
  769. { "Kirghiz", "ky" },
  770. { "Korean", "ko" },
  771. { "Kurdish", "ku" },
  772. { "Latin", "la" },
  773. { "Latvian", "lv" },
  774. { "Lithuanian", "lt" },
  775. { "Macedonian", "mk" },
  776. { "Malagasy", "mg" },
  777. { "Malay", "ms" },
  778. { "Malayalam", "ml" },
  779. { "Maltese", "mt" },
  780. { "Manx", "gv" },
  781. { "Marathi", "mr" },
  782. { "Moldavian", "mo" },
  783. { "Mongolian", "mn" },
  784. { "Nepali", "ne" },
  785. { "Norwegian", "nb" }, /* Yes, "nb", not the obsolete "no". */
  786. { "Nyanja", "ny" },
  787. { "Nynorsk", "nn" },
  788. { "Oriya", "or" },
  789. { "Oromo", "om" },
  790. { "Panjabi", "pa" },
  791. { "Pashto", "ps" },
  792. { "Persian", "fa" },
  793. { "Polish", "pl" },
  794. { "Portuguese", "pt" },
  795. { "Portuguese, Brazilian", "pt_BR" },
  796. { "Punjabi", "pa" },
  797. { "Pushto", "ps" },
  798. { "Quechua", "qu" },
  799. { "Romanian", "ro" },
  800. { "Ruanda", "rw" },
  801. { "Rundi", "rn" },
  802. { "Russian", "ru" },
  803. { "Sami", "se_NO" }, /* Not just "se". */
  804. { "Sanskrit", "sa" },
  805. { "Scottish", "gd" },
  806. { "Serbian", "sr" },
  807. { "Simplified Chinese", "zh_CN" },
  808. { "Sindhi", "sd" },
  809. { "Sinhalese", "si" },
  810. { "Slovak", "sk" },
  811. { "Slovenian", "sl" },
  812. { "Somali", "so" },
  813. { "Spanish", "es" },
  814. { "Sundanese", "su" },
  815. { "Swahili", "sw" },
  816. { "Swedish", "sv" },
  817. { "Tagalog", "tl" },
  818. { "Tajik", "tg" },
  819. { "Tajiki", "tg" },
  820. { "Tamil", "ta" },
  821. { "Tatar", "tt" },
  822. { "Telugu", "te" },
  823. { "Thai", "th" },
  824. { "Tibetan", "bo" },
  825. { "Tigrinya", "ti" },
  826. { "Tongan", "to" },
  827. { "Traditional Chinese", "zh_TW" },
  828. { "Turkish", "tr" },
  829. { "Turkmen", "tk" },
  830. { "Uighur", "ug" },
  831. { "Ukrainian", "uk" },
  832. { "Urdu", "ur" },
  833. { "Uzbek", "uz" },
  834. { "Vietnamese", "vi" },
  835. { "Welsh", "cy" },
  836. { "Yiddish", "yi" }
  837. };
  838. /* Convert new-style locale names with language tags (ISO 639 and ISO 15924)
  839. to Unix (ISO 639 and ISO 3166) names. */
  840. typedef struct { const char langtag[7+1]; const char unixy[12+1]; }
  841. langtag_entry;
  842. static const langtag_entry langtag_table[] = {
  843. /* MacOS X has "az-Arab", "az-Cyrl", "az-Latn".
  844. The default script for az on Unix is Latin. */
  845. { "az-Latn", "az" },
  846. /* MacOS X has "ga-dots". Does not yet exist on Unix. */
  847. { "ga-dots", "ga" },
  848. /* MacOS X has "kk-Cyrl". Does not yet exist on Unix. */
  849. /* MacOS X has "mn-Cyrl", "mn-Mong".
  850. The default script for mn on Unix is Cyrillic. */
  851. { "mn-Cyrl", "mn" },
  852. /* MacOS X has "ms-Arab", "ms-Latn".
  853. The default script for ms on Unix is Latin. */
  854. { "ms-Latn", "ms" },
  855. /* MacOS X has "tg-Cyrl".
  856. The default script for tg on Unix is Cyrillic. */
  857. { "tg-Cyrl", "tg" },
  858. /* MacOS X has "tk-Cyrl". Does not yet exist on Unix. */
  859. /* MacOS X has "tt-Cyrl".
  860. The default script for tt on Unix is Cyrillic. */
  861. { "tt-Cyrl", "tt" },
  862. /* MacOS X has "zh-Hans", "zh-Hant".
  863. Country codes are used to distinguish these on Unix. */
  864. { "zh-Hans", "zh_CN" },
  865. { "zh-Hant", "zh_TW" }
  866. };
  867. /* Convert script names (ISO 15924) to Unix conventions.
  868. See http://www.unicode.org/iso15924/iso15924-codes.html */
  869. typedef struct { const char script[4+1]; const char unixy[9+1]; }
  870. script_entry;
  871. static const script_entry script_table[] = {
  872. { "Arab", "arabic" },
  873. { "Cyrl", "cyrillic" },
  874. { "Mong", "mongolian" }
  875. };
  876. /* Step 1: Convert using legacy_table. */
  877. if (name[0] >= 'A' && name[0] <= 'Z')
  878. {
  879. unsigned int i1, i2;
  880. i1 = 0;
  881. i2 = sizeof (legacy_table) / sizeof (legacy_entry);
  882. while (i2 - i1 > 1)
  883. {
  884. /* At this point we know that if name occurs in legacy_table,
  885. its index must be >= i1 and < i2. */
  886. unsigned int i = (i1 + i2) >> 1;
  887. const legacy_entry *p = &legacy_table[i];
  888. if (strcmp (name, p->legacy) < 0)
  889. i2 = i;
  890. else
  891. i1 = i;
  892. }
  893. if (strcmp (name, legacy_table[i1].legacy) == 0)
  894. {
  895. strcpy (name, legacy_table[i1].unixy);
  896. return;
  897. }
  898. }
  899. /* Step 2: Convert using langtag_table and script_table. */
  900. if (strlen (name) == 7 && name[2] == '-')
  901. {
  902. unsigned int i1, i2;
  903. i1 = 0;
  904. i2 = sizeof (langtag_table) / sizeof (langtag_entry);
  905. while (i2 - i1 > 1)
  906. {
  907. /* At this point we know that if name occurs in langtag_table,
  908. its index must be >= i1 and < i2. */
  909. unsigned int i = (i1 + i2) >> 1;
  910. const langtag_entry *p = &langtag_table[i];
  911. if (strcmp (name, p->langtag) < 0)
  912. i2 = i;
  913. else
  914. i1 = i;
  915. }
  916. if (strcmp (name, langtag_table[i1].langtag) == 0)
  917. {
  918. strcpy (name, langtag_table[i1].unixy);
  919. return;
  920. }
  921. i1 = 0;
  922. i2 = sizeof (script_table) / sizeof (script_entry);
  923. while (i2 - i1 > 1)
  924. {
  925. /* At this point we know that if (name + 3) occurs in script_table,
  926. its index must be >= i1 and < i2. */
  927. unsigned int i = (i1 + i2) >> 1;
  928. const script_entry *p = &script_table[i];
  929. if (strcmp (name + 3, p->script) < 0)
  930. i2 = i;
  931. else
  932. i1 = i;
  933. }
  934. if (strcmp (name + 3, script_table[i1].script) == 0)
  935. {
  936. name[2] = '@';
  937. strcpy (name + 3, script_table[i1].unixy);
  938. return;
  939. }
  940. }
  941. /* Step 3: Convert new-style dash to Unix underscore. */
  942. {
  943. char *p;
  944. for (p = name; *p != '\0'; p++)
  945. if (*p == '-')
  946. *p = '_';
  947. }
  948. }
  949. #endif
  950. /* XPG3 defines the result of 'setlocale (category, NULL)' as:
  951. "Directs 'setlocale()' to query 'category' and return the current
  952. setting of 'local'."
  953. However it does not specify the exact format. Neither do SUSV2 and
  954. ISO C 99. So we can use this feature only on selected systems (e.g.
  955. those using GNU C Library). */
  956. #if defined _LIBC || (defined __GLIBC__ && __GLIBC__ >= 2)
  957. # define HAVE_LOCALE_NULL
  958. #endif
  959. /* Determine the current locale's name, and canonicalize it into XPG syntax
  960. language[_territory][.codeset][@modifier]
  961. The codeset part in the result is not reliable; the locale_charset()
  962. should be used for codeset information instead.
  963. The result must not be freed; it is statically allocated. */
  964. const char *
  965. _nl_locale_name_posix (int category, const char *categoryname)
  966. {
  967. /* Use the POSIX methods of looking to 'LC_ALL', 'LC_xxx', and 'LANG'.
  968. On some systems this can be done by the 'setlocale' function itself. */
  969. #if defined HAVE_SETLOCALE && defined HAVE_LC_MESSAGES && defined HAVE_LOCALE_NULL
  970. return setlocale (category, NULL);
  971. #else
  972. const char *retval;
  973. /* Setting of LC_ALL overrides all other. */
  974. retval = getenv ("LC_ALL");
  975. if (retval != NULL && retval[0] != '\0')
  976. return retval;
  977. /* Next comes the name of the desired category. */
  978. retval = getenv (categoryname);
  979. if (retval != NULL && retval[0] != '\0')
  980. return retval;
  981. /* Last possibility is the LANG environment variable. */
  982. retval = getenv ("LANG");
  983. if (retval != NULL && retval[0] != '\0')
  984. return retval;
  985. return NULL;
  986. #endif
  987. }
  988. const char *
  989. _nl_locale_name_default (void)
  990. {
  991. /* POSIX:2001 says:
  992. "All implementations shall define a locale as the default locale, to be
  993. invoked when no environment variables are set, or set to the empty
  994. string. This default locale can be the POSIX locale or any other
  995. implementation-defined locale. Some implementations may provide
  996. facilities for local installation administrators to set the default
  997. locale, customizing it for each location. POSIX:2001 does not require
  998. such a facility. */
  999. #if !(HAVE_CFLOCALECOPYCURRENT || HAVE_CFPREFERENCESCOPYAPPVALUE || defined(WIN32_NATIVE))
  1000. /* The system does not have a way of setting the locale, other than the
  1001. POSIX specified environment variables. We use C as default locale. */
  1002. return "C";
  1003. #else
  1004. /* Return an XPG style locale name language[_territory][@modifier].
  1005. Don't even bother determining the codeset; it's not useful in this
  1006. context, because message catalogs are not specific to a single
  1007. codeset. */
  1008. # if HAVE_CFLOCALECOPYCURRENT || HAVE_CFPREFERENCESCOPYAPPVALUE
  1009. /* MacOS X 10.2 or newer */
  1010. {
  1011. /* Cache the locale name, since CoreFoundation calls are expensive. */
  1012. static const char *cached_localename;
  1013. if (cached_localename == NULL)
  1014. {
  1015. char namebuf[256];
  1016. # if HAVE_CFLOCALECOPYCURRENT /* MacOS X 10.3 or newer */
  1017. CFLocaleRef locale = CFLocaleCopyCurrent ();
  1018. CFStringRef name = CFLocaleGetIdentifier (locale);
  1019. if (CFStringGetCString (name, namebuf, sizeof(namebuf),
  1020. kCFStringEncodingASCII))
  1021. {
  1022. _nl_locale_name_canonicalize (namebuf);
  1023. cached_localename = strdup (namebuf);
  1024. }
  1025. CFRelease (locale);
  1026. # elif HAVE_CFPREFERENCESCOPYAPPVALUE /* MacOS X 10.2 or newer */
  1027. CFTypeRef value =
  1028. CFPreferencesCopyAppValue (CFSTR ("AppleLocale"),
  1029. kCFPreferencesCurrentApplication);
  1030. if (value != NULL
  1031. && CFGetTypeID (value) == CFStringGetTypeID ()
  1032. && CFStringGetCString ((CFStringRef)value, namebuf, sizeof(namebuf),
  1033. kCFStringEncodingASCII))
  1034. {
  1035. _nl_locale_name_canonicalize (namebuf);
  1036. cached_localename = strdup (namebuf);
  1037. }
  1038. # endif
  1039. if (cached_localename == NULL)
  1040. cached_localename = "C";
  1041. }
  1042. return cached_localename;
  1043. }
  1044. # endif
  1045. # if defined(WIN32_NATIVE) /* WIN32, not Cygwin */
  1046. {
  1047. LCID lcid;
  1048. LANGID langid;
  1049. int primary, sub;
  1050. /* Use native Win32 API locale ID. */
  1051. lcid = GetThreadLocale ();
  1052. /* Strip off the sorting rules, keep only the language part. */
  1053. langid = LANGIDFROMLCID (lcid);
  1054. /* Split into language and territory part. */
  1055. primary = PRIMARYLANGID (langid);
  1056. sub = SUBLANGID (langid);
  1057. /* Dispatch on language.
  1058. See also http://www.unicode.org/unicode/onlinedat/languages.html .
  1059. For details about languages, see http://www.ethnologue.com/ . */
  1060. switch (primary)
  1061. {
  1062. case LANG_AFRIKAANS: return "af_ZA";
  1063. case LANG_ALBANIAN: return "sq_AL";
  1064. case LANG_AMHARIC: return "am_ET";
  1065. case LANG_ARABIC:
  1066. switch (sub)
  1067. {
  1068. case SUBLANG_ARABIC_SAUDI_ARABIA: return "ar_SA";
  1069. case SUBLANG_ARABIC_IRAQ: return "ar_IQ";
  1070. case SUBLANG_ARABIC_EGYPT: return "ar_EG";
  1071. case SUBLANG_ARABIC_LIBYA: return "ar_LY";
  1072. case SUBLANG_ARABIC_ALGERIA: return "ar_DZ";
  1073. case SUBLANG_ARABIC_MOROCCO: return "ar_MA";
  1074. case SUBLANG_ARABIC_TUNISIA: return "ar_TN";
  1075. case SUBLANG_ARABIC_OMAN: return "ar_OM";
  1076. case SUBLANG_ARABIC_YEMEN: return "ar_YE";
  1077. case SUBLANG_ARABIC_SYRIA: return "ar_SY";
  1078. case SUBLANG_ARABIC_JORDAN: return "ar_JO";
  1079. case SUBLANG_ARABIC_LEBANON: return "ar_LB";
  1080. case SUBLANG_ARABIC_KUWAIT: return "ar_KW";
  1081. case SUBLANG_ARABIC_UAE: return "ar_AE";
  1082. case SUBLANG_ARABIC_BAHRAIN: return "ar_BH";
  1083. case SUBLANG_ARABIC_QATAR: return "ar_QA";
  1084. }
  1085. return "ar";
  1086. case LANG_ARMENIAN: return "hy_AM";
  1087. case LANG_ASSAMESE: return "as_IN";
  1088. case LANG_AZERI:
  1089. switch (sub)
  1090. {
  1091. /* FIXME: Adjust this when Azerbaijani locales appear on Unix. */
  1092. case SUBLANG_AZERI_LATIN: return "az_AZ@latin";
  1093. case SUBLANG_AZERI_CYRILLIC: return "az_AZ@cyrillic";
  1094. }
  1095. return "az";
  1096. case LANG_BASQUE:
  1097. switch (sub)
  1098. {
  1099. case SUBLANG_DEFAULT: return "eu_ES";
  1100. }
  1101. return "eu"; /* Ambiguous: could be "eu_ES" or "eu_FR". */
  1102. case LANG_BELARUSIAN: return "be_BY";
  1103. case LANG_BENGALI:
  1104. switch (sub)
  1105. {
  1106. case SUBLANG_BENGALI_INDIA: return "bn_IN";
  1107. case SUBLANG_BENGALI_BANGLADESH: return "bn_BD";
  1108. }
  1109. return "bn";
  1110. case LANG_BULGARIAN: return "bg_BG";
  1111. case LANG_BURMESE: return "my_MM";
  1112. case LANG_CAMBODIAN: return "km_KH";
  1113. case LANG_CATALAN: return "ca_ES";
  1114. case LANG_CHEROKEE: return "chr_US";
  1115. case LANG_CHINESE:
  1116. switch (sub)
  1117. {
  1118. case SUBLANG_CHINESE_TRADITIONAL: return "zh_TW";
  1119. case SUBLANG_CHINESE_SIMPLIFIED: return "zh_CN";
  1120. case SUBLANG_CHINESE_HONGKONG: return "zh_HK";
  1121. case SUBLANG_CHINESE_SINGAPORE: return "zh_SG";
  1122. case SUBLANG_CHINESE_MACAU: return "zh_MO";
  1123. }
  1124. return "zh";
  1125. case LANG_CROATIAN: /* LANG_CROATIAN == LANG_SERBIAN
  1126. * What used to be called Serbo-Croatian
  1127. * should really now be two separate
  1128. * languages because of political reasons.
  1129. * (Says tml, who knows nothing about Serbian
  1130. * or Croatian.)
  1131. * (I can feel those flames coming already.)
  1132. */
  1133. switch (sub)
  1134. {
  1135. case SUBLANG_DEFAULT: return "hr_HR";
  1136. case SUBLANG_SERBIAN_LATIN: return "sr_CS";
  1137. case SUBLANG_SERBIAN_CYRILLIC: return "sr_CS@cyrillic";
  1138. }
  1139. return "hr";
  1140. case LANG_CZECH: return "cs_CZ";
  1141. case LANG_DANISH: return "da_DK";
  1142. case LANG_DIVEHI: return "dv_MV";
  1143. case LANG_DUTCH:
  1144. switch (sub)
  1145. {
  1146. case SUBLANG_DUTCH: return "nl_NL";
  1147. case SUBLANG_DUTCH_BELGIAN: /* FLEMISH, VLAAMS */ return "nl_BE";
  1148. }
  1149. return "nl";
  1150. case LANG_EDO: return "bin_NG";
  1151. case LANG_ENGLISH:
  1152. switch (sub)
  1153. {
  1154. /* SUBLANG_ENGLISH_US == SUBLANG_DEFAULT. Heh. I thought
  1155. * English was the language spoken in England.
  1156. * Oh well.
  1157. */
  1158. case SUBLANG_ENGLISH_US: return "en_US";
  1159. case SUBLANG_ENGLISH_UK: return "en_GB";
  1160. case SUBLANG_ENGLISH_AUS: return "en_AU";
  1161. case SUBLANG_ENGLISH_CAN: return "en_CA";
  1162. case SUBLANG_ENGLISH_NZ: return "en_NZ";
  1163. case SUBLANG_ENGLISH_EIRE: return "en_IE";
  1164. case SUBLANG_ENGLISH_SOUTH_AFRICA: return "en_ZA";
  1165. case SUBLANG_ENGLISH_JAMAICA: return "en_JM";
  1166. case SUBLANG_ENGLISH_CARIBBEAN: return "en_GD"; /* Grenada? */
  1167. case SUBLANG_ENGLISH_BELIZE: return "en_BZ";
  1168. case SUBLANG_ENGLISH_TRINIDAD: return "en_TT";
  1169. case SUBLANG_ENGLISH_ZIMBABWE: return "en_ZW";
  1170. case SUBLANG_ENGLISH_PHILIPPINES: return "en_PH";
  1171. case SUBLANG_ENGLISH_INDONESIA: return "en_ID";
  1172. case SUBLANG_ENGLISH_HONGKONG: return "en_HK";
  1173. case SUBLANG_ENGLISH_INDIA: return "en_IN";
  1174. case SUBLANG_ENGLISH_MALAYSIA: return "en_MY";
  1175. case SUBLANG_ENGLISH_SINGAPORE: return "en_SG";
  1176. }
  1177. return "en";
  1178. case LANG_ESTONIAN: return "et_EE";
  1179. case LANG_FAEROESE: return "fo_FO";
  1180. case LANG_FARSI: return "fa_IR";
  1181. case LANG_FINNISH: return "fi_FI";
  1182. case LANG_FRENCH:
  1183. switch (sub)
  1184. {
  1185. case SUBLANG_FRENCH: return "fr_FR";
  1186. case SUBLANG_FRENCH_BELGIAN: /* WALLOON */ return "fr_BE";
  1187. case SUBLANG_FRENCH_CANADIAN: return "fr_CA";
  1188. case SUBLANG_FRENCH_SWISS: return "fr_CH";
  1189. case SUBLANG_FRENCH_LUXEMBOURG: return "fr_LU";
  1190. case SUBLANG_FRENCH_MONACO: return "fr_MC";
  1191. case SUBLANG_FRENCH_WESTINDIES: return "fr"; /* Caribbean? */
  1192. case SUBLANG_FRENCH_REUNION: return "fr_RE";
  1193. case SUBLANG_FRENCH_CONGO: return "fr_CG";
  1194. case SUBLANG_FRENCH_SENEGAL: return "fr_SN";
  1195. case SUBLANG_FRENCH_CAMEROON: return "fr_CM";
  1196. case SUBLANG_FRENCH_COTEDIVOIRE: return "fr_CI";
  1197. case SUBLANG_FRENCH_MALI: return "fr_ML";
  1198. case SUBLANG_FRENCH_MOROCCO: return "fr_MA";
  1199. case SUBLANG_FRENCH_HAITI: return "fr_HT";
  1200. }
  1201. return "fr";
  1202. case LANG_FRISIAN: return "fy_NL";
  1203. case LANG_FULFULDE:
  1204. /* Spoken in Nigeria, Guinea, Senegal, Mali, Niger, Cameroon, Benin. */
  1205. return "ff_NG";
  1206. case LANG_GAELIC:
  1207. switch (sub)
  1208. {
  1209. case 0x01: /* SCOTTISH */ return "gd_GB";
  1210. case 0x02: /* IRISH */ return "ga_IE";
  1211. }
  1212. return "C";
  1213. case LANG_GALICIAN: return "gl_ES";
  1214. case LANG_GEORGIAN: return "ka_GE";
  1215. case LANG_GERMAN:
  1216. switch (sub)
  1217. {
  1218. case SUBLANG_GERMAN: return "de_DE";
  1219. case SUBLANG_GERMAN_SWISS: return "de_CH";
  1220. case SUBLANG_GERMAN_AUSTRIAN: return "de_AT";
  1221. case SUBLANG_GERMAN_LUXEMBOURG: return "de_LU";
  1222. case SUBLANG_GERMAN_LIECHTENSTEIN: return "de_LI";
  1223. }
  1224. return "de";
  1225. case LANG_GREEK: return "el_GR";
  1226. case LANG_GUARANI: return "gn_PY";
  1227. case LANG_GUJARATI: return "gu_IN";
  1228. case LANG_HAUSA: return "ha_NG";
  1229. case LANG_HAWAIIAN:
  1230. /* FIXME: Do they mean Hawaiian ("haw_US", 1000 speakers)
  1231. or Hawaii Creole English ("cpe_US", 600000 speakers)? */
  1232. return "cpe_US";
  1233. case LANG_HEBREW: return "he_IL";
  1234. case LANG_HINDI: return "hi_IN";
  1235. case LANG_HUNGARIAN: return "hu_HU";
  1236. case LANG_IBIBIO: return "nic_NG";
  1237. case LANG_ICELANDIC: return "is_IS";
  1238. case LANG_IGBO: return "ig_NG";
  1239. case LANG_INDONESIAN: return "id_ID";
  1240. case LANG_INUKTITUT: return "iu_CA";
  1241. case LANG_ITALIAN:
  1242. switch (sub)
  1243. {
  1244. case SUBLANG_ITALIAN: return "it_IT";
  1245. case SUBLANG_ITALIAN_SWISS: return "it_CH";
  1246. }
  1247. return "it";
  1248. case LANG_JAPANESE: return "ja_JP";
  1249. case LANG_KANNADA: return "kn_IN";
  1250. case LANG_KANURI: return "kr_NG";
  1251. case LANG_KASHMIRI:
  1252. switch (sub)
  1253. {
  1254. case SUBLANG_DEFAULT: return "ks_PK";
  1255. case SUBLANG_KASHMIRI_INDIA: return "ks_IN";
  1256. }
  1257. return "ks";
  1258. case LANG_KAZAK: return "kk_KZ";
  1259. case LANG_KONKANI:
  1260. /* FIXME: Adjust this when such locales appear on Unix. */
  1261. return "kok_IN";
  1262. case LANG_KOREAN: return "ko_KR";
  1263. case LANG_KYRGYZ: return "ky_KG";
  1264. case LANG_LAO: return "lo_LA";
  1265. case LANG_LATIN: return "la_VA";
  1266. case LANG_LATVIAN: return "lv_LV";
  1267. case LANG_LITHUANIAN: return "lt_LT";
  1268. case LANG_MACEDONIAN: return "mk_MK";
  1269. case LANG_MALAY:
  1270. switch (sub)
  1271. {
  1272. case SUBLANG_MALAY_MALAYSIA: return "ms_MY";
  1273. case SUBLANG_MALAY_BRUNEI_DARUSSALAM: return "ms_BN";
  1274. }
  1275. return "ms";
  1276. case LANG_MALAYALAM: return "ml_IN";
  1277. case LANG_MALTESE: return "mt_MT";
  1278. case LANG_MANIPURI:
  1279. /* FIXME: Adjust this when such locales appear on Unix. */
  1280. return "mni_IN";
  1281. case LANG_MARATHI: return "mr_IN";
  1282. case LANG_MONGOLIAN:
  1283. switch (sub)
  1284. {
  1285. case SUBLANG_DEFAULT: return "mn_MN";
  1286. }
  1287. return "mn"; /* Ambiguous: could be "mn_CN" or "mn_MN". */
  1288. case LANG_NEPALI:
  1289. switch (sub)
  1290. {
  1291. case SUBLANG_DEFAULT: return "ne_NP";
  1292. case SUBLANG_NEPALI_INDIA: return "ne_IN";
  1293. }
  1294. return "ne";
  1295. case LANG_NORWEGIAN:
  1296. switch (sub)
  1297. {
  1298. case SUBLANG_NORWEGIAN_BOKMAL: return "nb_NO";
  1299. case SUBLANG_NORWEGIAN_NYNORSK: return "nn_NO";
  1300. }
  1301. return "no";
  1302. case LANG_ORIYA: return "or_IN";
  1303. case LANG_OROMO: return "om_ET";
  1304. case LANG_PAPIAMENTU: return "pap_AN";
  1305. case LANG_PASHTO:
  1306. return "ps"; /* Ambiguous: could be "ps_PK" or "ps_AF". */
  1307. case LANG_POLISH: return "pl_PL";
  1308. case LANG_PORTUGUESE:
  1309. switch (sub)
  1310. {
  1311. case SUBLANG_PORTUGUESE: return "pt_PT";
  1312. /* Hmm. SUBLANG_PORTUGUESE_BRAZILIAN == SUBLANG_DEFAULT.
  1313. Same phenomenon as SUBLANG_ENGLISH_US == SUBLANG_DEFAULT. */
  1314. case SUBLANG_PORTUGUESE_BRAZILIAN: return "pt_BR";
  1315. }
  1316. return "pt";
  1317. case LANG_PUNJABI:
  1318. switch (sub)
  1319. {
  1320. case SUBLANG_PUNJABI_INDIA: return "pa_IN"; /* Gurmukhi script */
  1321. case SUBLANG_PUNJABI_PAKISTAN: return "pa_PK"; /* Arabic script */
  1322. }
  1323. return "pa";
  1324. case LANG_RHAETO_ROMANCE: return "rm_CH";
  1325. case LANG_ROMANIAN:
  1326. switch (sub)
  1327. {
  1328. case SUBLANG_ROMANIAN_ROMANIA: return "ro_RO";
  1329. case SUBLANG_ROMANIAN_MOLDOVA: return "ro_MD";
  1330. }
  1331. return "ro";
  1332. case LANG_RUSSIAN:
  1333. switch (sub)
  1334. {
  1335. case SUBLANG_DEFAULT: return "ru_RU";
  1336. }
  1337. return "ru"; /* Ambiguous: could be "ru_RU" or "ru_UA" or "ru_MD". */
  1338. case LANG_SAAMI: /* actually Northern Sami */ return "se_NO";
  1339. case LANG_SANSKRIT: return "sa_IN";
  1340. case LANG_SINDHI:
  1341. switch (sub)
  1342. {
  1343. case SUBLANG_SINDHI_INDIA: return "sd_IN";
  1344. case SUBLANG_SINDHI_PAKISTAN: return "sd_PK";
  1345. }
  1346. return "sd";
  1347. case LANG_SINHALESE: return "si_LK";
  1348. case LANG_SLOVAK: return "sk_SK";
  1349. case LANG_SLOVENIAN: return "sl_SI";
  1350. case LANG_SOMALI: return "so_SO";
  1351. case LANG_SORBIAN:
  1352. /* FIXME: Adjust this when such locales appear on Unix. */
  1353. return "wen_DE";
  1354. case LANG_SPANISH:
  1355. switch (sub)
  1356. {
  1357. case SUBLANG_SPANISH: return "es_ES";
  1358. case SUBLANG_SPANISH_MEXICAN: return "es_MX";
  1359. case SUBLANG_SPANISH_MODERN:
  1360. return "es_ES@modern"; /* not seen on Unix */
  1361. case SUBLANG_SPANISH_GUATEMALA: return "es_GT";
  1362. case SUBLANG_SPANISH_COSTA_RICA: return "es_CR";
  1363. case SUBLANG_SPANISH_PANAMA: return "es_PA";
  1364. case SUBLANG_SPANISH_DOMINICAN_REPUBLIC: return "es_DO";
  1365. case SUBLANG_SPANISH_VENEZUELA: return "es_VE";
  1366. case SUBLANG_SPANISH_COLOMBIA: return "es_CO";
  1367. case SUBLANG_SPANISH_PERU: return "es_PE";
  1368. case SUBLANG_SPANISH_ARGENTINA: return "es_AR";
  1369. case SUBLANG_SPANISH_ECUADOR: return "es_EC";
  1370. case SUBLANG_SPANISH_CHILE: return "es_CL";
  1371. case SUBLANG_SPANISH_URUGUAY: return "es_UY";
  1372. case SUBLANG_SPANISH_PARAGUAY: return "es_PY";
  1373. case SUBLANG_SPANISH_BOLIVIA: return "es_BO";
  1374. case SUBLANG_SPANISH_EL_SALVADOR: return "es_SV";
  1375. case SUBLANG_SPANISH_HONDURAS: return "es_HN";
  1376. case SUBLANG_SPANISH_NICARAGUA: return "es_NI";
  1377. case SUBLANG_SPANISH_PUERTO_RICO: return "es_PR";
  1378. }
  1379. return "es";
  1380. case LANG_SUTU: return "bnt_TZ"; /* or "st_LS" or "nso_ZA"? */
  1381. case LANG_SWAHILI: return "sw_KE";
  1382. case LANG_SWEDISH:
  1383. switch (sub)
  1384. {
  1385. case SUBLANG_DEFAULT: return "sv_SE";
  1386. case SUBLANG_SWEDISH_FINLAND: return "sv_FI";
  1387. }
  1388. return "sv";
  1389. case LANG_SYRIAC: return "syr_TR"; /* An extinct language. */
  1390. case LANG_TAGALOG: return "tl_PH";
  1391. case LANG_TAJIK: return "tg_TJ";
  1392. case LANG_TAMAZIGHT:
  1393. switch (sub)
  1394. {
  1395. /* FIXME: Adjust this when Tamazight locales appear on Unix. */
  1396. case SUBLANG_TAMAZIGHT_ARABIC: return "ber_MA@arabic";
  1397. case SUBLANG_TAMAZIGHT_LATIN: return "ber_MA@latin";
  1398. }
  1399. return "ber_MA";
  1400. case LANG_TAMIL:
  1401. switch (sub)
  1402. {
  1403. case SUBLANG_DEFAULT: return "ta_IN";
  1404. }
  1405. return "ta"; /* Ambiguous: could be "ta_IN" or "ta_LK" or "ta_SG". */
  1406. case LANG_TATAR: return "tt_RU";
  1407. case LANG_TELUGU: return "te_IN";
  1408. case LANG_THAI: return "th_TH";
  1409. case LANG_TIBETAN: return "bo_CN";
  1410. case LANG_TIGRINYA:
  1411. switch (sub)
  1412. {
  1413. case SUBLANG_TIGRINYA_ETHIOPIA: return "ti_ET";
  1414. case SUBLANG_TIGRINYA_ERITREA: return "ti_ER";
  1415. }
  1416. return "ti";
  1417. case LANG_TSONGA: return "ts_ZA";
  1418. case LANG_TSWANA: return "tn_BW";
  1419. case LANG_TURKISH: return "tr_TR";
  1420. case LANG_TURKMEN: return "tk_TM";
  1421. case LANG_UKRAINIAN: return "uk_UA";
  1422. case LANG_URDU:
  1423. switch (sub)
  1424. {
  1425. case SUBLANG_URDU_PAKISTAN: return "ur_PK";
  1426. case SUBLANG_URDU_INDIA: return "ur_IN";
  1427. }
  1428. return "ur";
  1429. case LANG_UZBEK:
  1430. switch (sub)
  1431. {
  1432. case SUBLANG_UZBEK_LATIN: return "uz_UZ";
  1433. case SUBLANG_UZBEK_CYRILLIC: return "uz_UZ@cyrillic";
  1434. }
  1435. return "uz";
  1436. case LANG_VENDA: return "ve_ZA";
  1437. case LANG_VIETNAMESE: return "vi_VN";
  1438. case LANG_WELSH: return "cy_GB";
  1439. case LANG_XHOSA: return "xh_ZA";
  1440. case LANG_YI: return "sit_CN";
  1441. case LANG_YIDDISH: return "yi_IL";
  1442. case LANG_YORUBA: return "yo_NG";
  1443. case LANG_ZULU: return "zu_ZA";
  1444. default: return "C";
  1445. }
  1446. }
  1447. # endif
  1448. #endif
  1449. }
  1450. const char *
  1451. _nl_locale_name (int category, const char *categoryname)
  1452. {
  1453. const char *retval;
  1454. retval = _nl_locale_name_posix (category, categoryname);
  1455. if (retval != NULL)
  1456. return retval;
  1457. return _nl_locale_name_default ();
  1458. }