az.xml 101 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <ldml>
  3. <identity>
  4. <version number="$Revision: 1.77 $"/>
  5. <generation date="$Date: 2009/06/15 03:46:25 $"/>
  6. <language type="az"/>
  7. </identity>
  8. <localeDisplayNames>
  9. <languages>
  10. <language type="aa">afarca</language>
  11. <language type="ab">abxazca</language>
  12. <language type="ace">akin dili</language>
  13. <language type="ach">akoli dili</language>
  14. <language type="ada">adangme dili</language>
  15. <language type="ady">aduge dili</language>
  16. <language type="ae">avestanca</language>
  17. <language type="af">Afrikaanca</language>
  18. <language type="afa">afro-aziat dili</language>
  19. <language type="afh">afrihili dili</language>
  20. <language type="ain">aynuca</language>
  21. <language type="ak">akanca</language>
  22. <language type="akk">akadianca</language>
  23. <language type="ale">aleutca</language>
  24. <language type="alg">algonguyan dili</language>
  25. <language type="alt">cənub altay dili</language>
  26. <language type="am">amarikcə</language>
  27. <language type="an">aragonca</language>
  28. <language type="ang">qədimi ingiliscə</language>
  29. <language type="anp">angikə dili</language>
  30. <language type="apa">apaçi dili</language>
  31. <language type="ar">Ərəbcə</language>
  32. <language type="arc">aramik dili</language>
  33. <language type="arn">araukanca</language>
  34. <language type="arp">arapaho dili</language>
  35. <language type="art">suni dil</language>
  36. <language type="arw">aravakça</language>
  37. <language type="as">as</language>
  38. <language type="ast">asturicə</language>
  39. <language type="ath">atapaskanca</language>
  40. <language type="aus">avstraliyca</language>
  41. <language type="av">avarikcə</language>
  42. <language type="awa">avadicə</language>
  43. <language type="ay">aymarca</language>
  44. <language type="az">azərbaycanca</language>
  45. <language type="ba">başkir dili</language>
  46. <language type="bad">banda dili</language>
  47. <language type="bai">bamilek dili</language>
  48. <language type="bal">baluc dili</language>
  49. <language type="ban">balincə</language>
  50. <language type="bas">basa dili</language>
  51. <language type="bat">baltik dili</language>
  52. <language type="be">belarusca</language>
  53. <language type="bej">beja dili</language>
  54. <language type="bem">bemba dili</language>
  55. <language type="ber">berber dili</language>
  56. <language type="bg">bolqarca</language>
  57. <language type="bh">biharicə</language>
  58. <language type="bho">bxoçpuri dili</language>
  59. <language type="bi">bislama dili</language>
  60. <language type="bik">bikolca</language>
  61. <language type="bin">bini dili</language>
  62. <language type="bla">siksikə dili</language>
  63. <language type="bm">bambara dili</language>
  64. <language type="bn">Benqal dili</language>
  65. <language type="bnt">bantu dili</language>
  66. <language type="bo">tibet dili</language>
  67. <language type="br">Bretonca</language>
  68. <language type="bra">braj dili</language>
  69. <language type="bs">bosniya dili</language>
  70. <language type="btk">batak dili</language>
  71. <language type="bua">buryat dili</language>
  72. <language type="bug">bugin dili</language>
  73. <language type="byn">bilincə</language>
  74. <language type="ca">katalanca</language>
  75. <language type="cad">kado dili</language>
  76. <language type="cai">mərkəzi amerika indus dili</language>
  77. <language type="car">karib dili</language>
  78. <language type="cau">qavqaz dili</language>
  79. <language type="cch">atsamca</language>
  80. <language type="ce">çeçen dili</language>
  81. <language type="ceb">kebuano dili</language>
  82. <language type="cel">kelt dili</language>
  83. <language type="ch">çamoro dili</language>
  84. <language type="chb">çibçə dili</language>
  85. <language type="chg">çağatay dili</language>
  86. <language type="chk">çukiz dili</language>
  87. <language type="chm">mari dili</language>
  88. <language type="chn">çinuk ləhçəsi</language>
  89. <language type="cho">çoktau dili</language>
  90. <language type="chp">çipevyan dili</language>
  91. <language type="chr">çiroki dili</language>
  92. <language type="chy">çeyen dili</language>
  93. <language type="cmc">çamik dili</language>
  94. <language type="co">korsikan dili</language>
  95. <language type="cop">kopt dili</language>
  96. <language type="cpe">inglis kreol dili</language>
  97. <language type="cpf">fransız kreol dili</language>
  98. <language type="cpp">portugal kreol dili</language>
  99. <language type="cr">kri dili</language>
  100. <language type="crh">krım türkçə</language>
  101. <language type="crp">kreol dili</language>
  102. <language type="cs">çex dili</language>
  103. <language type="csb">kaşubyan dili</language>
  104. <language type="cu">kilsə slav dili</language>
  105. <language type="cus">kuşitik dili</language>
  106. <language type="cv">çuvaş dili</language>
  107. <language type="cy">uelscə</language>
  108. <language type="da">danimarka dili</language>
  109. <language type="dak">dakota dili</language>
  110. <language type="dar">darqva dili</language>
  111. <language type="day">dayak dili</language>
  112. <language type="de">almanca</language>
  113. <language type="de_AT">almanca (AT)</language>
  114. <language type="de_CH">isveç yüksək almancası</language>
  115. <language type="del">delaver dili</language>
  116. <language type="den">slavey</language>
  117. <language type="dgr">doqrib dili</language>
  118. <language type="din">dinka dili</language>
  119. <language type="doi">doqri dili</language>
  120. <language type="dra">dravid dili</language>
  121. <language type="dsb">aşağı sorbca</language>
  122. <language type="dua">duala dili</language>
  123. <language type="dum">ortacaq hollandca</language>
  124. <language type="dv">diveh dili</language>
  125. <language type="dyu">dyula dili</language>
  126. <language type="dz">dzonqa dili</language>
  127. <language type="ee">eve dili</language>
  128. <language type="efi">efik dili</language>
  129. <language type="egy">qədimi misir dili</language>
  130. <language type="eka">ekacuk dili</language>
  131. <language type="el">yunanca</language>
  132. <language type="elx">elamit dili</language>
  133. <language type="en">ingiliscə</language>
  134. <language type="en_AU">ingiliscə (AU)</language>
  135. <language type="en_CA">ingiliscə (CA)</language>
  136. <language type="en_GB">ingiliscə (GB)</language>
  137. <language type="en_US">ingiliscə (ABŞ)</language>
  138. <language type="enm">ortacaq ingiliscə</language>
  139. <language type="eo">esperanto dili</language>
  140. <language type="es">ispanca</language>
  141. <language type="es_419">latın amerika ispancası</language>
  142. <language type="es_ES">iber-ispanca</language>
  143. <language type="et">estonca</language>
  144. <language type="eu">bask dili</language>
  145. <language type="ewo">evondo dili</language>
  146. <language type="fa">farsca</language>
  147. <language type="fan">fang dili</language>
  148. <language type="fat">fanti dili</language>
  149. <language type="ff">fula dili</language>
  150. <language type="fi">fincə</language>
  151. <language type="fil">taqaloqca</language>
  152. <language type="fiu">fin-uğri dili</language>
  153. <language type="fj">fiji dili</language>
  154. <language type="fo">farer dili</language>
  155. <language type="fon">fon dili</language>
  156. <language type="fr">fransızca</language>
  157. <language type="fr_CA">fransızca (CA)</language>
  158. <language type="fr_CH">isveç fransızca</language>
  159. <language type="frm">ortacaq fransızca</language>
  160. <language type="fro">qədimi fransızca</language>
  161. <language type="frr">şimal fris dili</language>
  162. <language type="fur">friul dili</language>
  163. <language type="fy">frisk dili</language>
  164. <language type="ga">irlandca</language>
  165. <language type="gaa">qa dili</language>
  166. <language type="gay">qayo dili</language>
  167. <language type="gba">qabaya dili</language>
  168. <language type="gd">skot gaelik dili</language>
  169. <language type="gem">Alman dili</language>
  170. <language type="gez">qez dili</language>
  171. <language type="gil">qilbert gili</language>
  172. <language type="gl">qalisian dili</language>
  173. <language type="gmh">ortacaq yüksək almanca</language>
  174. <language type="gn">quaranicə</language>
  175. <language type="goh">qədimi almanca</language>
  176. <language type="gon">qondi dili</language>
  177. <language type="gor">qorontalo dili</language>
  178. <language type="got">gotça</language>
  179. <language type="grb">qrebo dili</language>
  180. <language type="grc">qədimi yunanca</language>
  181. <language type="gsw">isveç almanca</language>
  182. <language type="gu">gujarati dili</language>
  183. <language type="gv">manks dili</language>
  184. <language type="gwi">qviçin dili</language>
  185. <language type="ha">Hausa dili</language>
  186. <language type="hai">hayda dili</language>
  187. <language type="haw">Qavayca</language>
  188. <language type="he">ivritcə</language>
  189. <language type="hi">hindi dili</language>
  190. <language type="hil">hiliqaynon dili</language>
  191. <language type="him">himaçali dili</language>
  192. <language type="hit">hittit dili</language>
  193. <language type="hmn">monq dili</language>
  194. <language type="ho">hiri motu dili</language>
  195. <language type="hr">xorvatca</language>
  196. <language type="hsb">yuxarı sorbca</language>
  197. <language type="ht">haiti dili</language>
  198. <language type="hu">macarca</language>
  199. <language type="hup">hupa dili</language>
  200. <language type="hy">Ermənicə</language>
  201. <language type="hz">Herer dili</language>
  202. <language type="ia">interlingua dili</language>
  203. <language type="iba">iban dili</language>
  204. <language type="id">indoneziya dili</language>
  205. <language type="ie">interlingue dili</language>
  206. <language type="ig">iqbo dili</language>
  207. <language type="ii">siçuan yi dili</language>
  208. <language type="ijo">ico dili</language>
  209. <language type="ik">inupiaq dili</language>
  210. <language type="ilo">iloko dili</language>
  211. <language type="inc">diqər hint dili</language>
  212. <language type="ine">hint-yevropa dili</language>
  213. <language type="inh">inquş dili</language>
  214. <language type="io">ido dili</language>
  215. <language type="ira">iranca</language>
  216. <language type="iro">irokuay dili</language>
  217. <language type="is">isləndcə</language>
  218. <language type="it">italyanca</language>
  219. <language type="iu">inuktikut dili</language>
  220. <language type="ja">yaponca</language>
  221. <language type="jbo">loğban dili</language>
  222. <language type="jpr">judo-farsca</language>
  223. <language type="jrb">jude-ərəbcə</language>
  224. <language type="jv">yavaca dili</language>
  225. <language type="ka">gürcü dili</language>
  226. <language type="kaa">qara-qalpaq dili</language>
  227. <language type="kab">kabule dili</language>
  228. <language type="kac">kaçinca</language>
  229. <language type="kaj">ju dili</language>
  230. <language type="kam">kamba dili</language>
  231. <language type="kar">karen dili</language>
  232. <language type="kaw">kavi dili</language>
  233. <language type="kbd">kabardca</language>
  234. <language type="kcg">tiyap dili</language>
  235. <language type="kfo">koro dili</language>
  236. <language type="kg">konqo dili</language>
  237. <language type="kha">xazi dili</language>
  238. <language type="khi">xoyzan dili</language>
  239. <language type="kho">xotan dili</language>
  240. <language type="ki">kikuyu dili</language>
  241. <language type="kj">kuanyama dili</language>
  242. <language type="kk">qazax dili</language>
  243. <language type="kl">kalalisut dili</language>
  244. <language type="km">kambodiya dili</language>
  245. <language type="kmb">kimbundu dili</language>
  246. <language type="kn">kannada dili</language>
  247. <language type="ko">koreya dili</language>
  248. <language type="kok">konkan dili</language>
  249. <language type="kos">kosreyan dili</language>
  250. <language type="kpe">kpelle dili</language>
  251. <language type="kr">kanur dili</language>
  252. <language type="krc">qaraçay-balkar dili</language>
  253. <language type="krl">karelyan dili</language>
  254. <language type="kro">kru dili</language>
  255. <language type="kru">kurux dili</language>
  256. <language type="ks">kəşmir dili</language>
  257. <language type="ku">kürdcə</language>
  258. <language type="kum">kumuk dili</language>
  259. <language type="kut">kutenay dili</language>
  260. <language type="kv">komi dili</language>
  261. <language type="kw">korniş dili</language>
  262. <language type="ky">qırğızca</language>
  263. <language type="la">latınca</language>
  264. <language type="lad">ladin dili</language>
  265. <language type="lah">laxnda dili</language>
  266. <language type="lam">lamba dili</language>
  267. <language type="lb">luksemburq dili</language>
  268. <language type="lez">ləzqi dili</language>
  269. <language type="lg">qanda dili</language>
  270. <language type="li">limburqiş dili</language>
  271. <language type="ln">Linqala dili</language>
  272. <language type="lo">laos dili</language>
  273. <language type="lol">monqo dili</language>
  274. <language type="loz">lozi dili</language>
  275. <language type="lt">litva dili</language>
  276. <language type="lu">luba-katanqa dili</language>
  277. <language type="lua">luba-lulua dili</language>
  278. <language type="lui">luyseno dili</language>
  279. <language type="lun">lunda dili</language>
  280. <language type="luo">luo dili</language>
  281. <language type="lus">lushayca</language>
  282. <language type="lv">latışca</language>
  283. <language type="mad">maduriz dili</language>
  284. <language type="mag">maqahi dili</language>
  285. <language type="mai">maitili dili</language>
  286. <language type="mak">makasar dili</language>
  287. <language type="man">məndinqo dili</language>
  288. <language type="map">avstronezicə</language>
  289. <language type="mas">masay dili</language>
  290. <language type="mdf">mokşa dili</language>
  291. <language type="mdr">mandar dili</language>
  292. <language type="men">mende dili</language>
  293. <language type="mg">malaqas dili</language>
  294. <language type="mga">ortacaq irlandca</language>
  295. <language type="mh">marşal dili</language>
  296. <language type="mi">maori dili</language>
  297. <language type="mic">mikmak dili</language>
  298. <language type="min">minanqkaban dili</language>
  299. <language type="mis">çeşitli diller</language>
  300. <language type="mk">makedoniya dili</language>
  301. <language type="mkh">mon-xmer dili</language>
  302. <language type="ml">malayalamca</language>
  303. <language type="mn">monqolca</language>
  304. <language type="mnc">mançu dili</language>
  305. <language type="mni">manipüri dili</language>
  306. <language type="mno">manobo dili</language>
  307. <language type="mo">moldavca</language>
  308. <language type="moh">moxak dili</language>
  309. <language type="mos">mosi dili</language>
  310. <language type="mr">marati dili</language>
  311. <language type="ms">malayca</language>
  312. <language type="mt">malta dili</language>
  313. <language type="mul">digər dillər</language>
  314. <language type="mun">munda dili</language>
  315. <language type="mus">krik dili</language>
  316. <language type="mwl">mirand dili</language>
  317. <language type="mwr">maruari dili</language>
  318. <language type="my">burmis dili</language>
  319. <language type="myn">maya dili</language>
  320. <language type="myv">erzya dili</language>
  321. <language type="na">nauru dili</language>
  322. <language type="nah">nahuatl dili</language>
  323. <language type="nai">şimal amerika yerli dili</language>
  324. <language type="nap">neapolital dili</language>
  325. <language type="nb">norvec bokmal dili</language>
  326. <language type="nd">şimal ndebele dili</language>
  327. <language type="nds">aşağı almanca</language>
  328. <language type="ne">nepalca</language>
  329. <language type="new">nevari dili</language>
  330. <language type="ng">nqonka dili</language>
  331. <language type="nia">nyas dili</language>
  332. <language type="nic">niger-kordofyan dili</language>
  333. <language type="niu">niyuan dili</language>
  334. <language type="nl">hollandca</language>
  335. <language type="nl_BE">flem dili</language>
  336. <language type="nn">norveç ninorsk dili</language>
  337. <language type="no">norveç dili</language>
  338. <language type="nog">noqay dili</language>
  339. <language type="non">qədimi norsca</language>
  340. <language type="nqo">nqo dili</language>
  341. <language type="nr">cənub ndebele dili</language>
  342. <language type="nso">şimal soto dili</language>
  343. <language type="nub">nubiy dili</language>
  344. <language type="nv">navayo dili</language>
  345. <language type="ny">nyanca dili</language>
  346. <language type="nym">nyamvezi dili</language>
  347. <language type="nyn">nyankol dili</language>
  348. <language type="nyo">niyoro dili</language>
  349. <language type="nzi">nizima dili</language>
  350. <language type="oc">oksitanca</language>
  351. <language type="oj">ocibva dili</language>
  352. <language type="om">oromo dili</language>
  353. <language type="or">Oriyə dili</language>
  354. <language type="os">osetik dili</language>
  355. <language type="osa">osage dili</language>
  356. <language type="ota">osman dili</language>
  357. <language type="oto">otomian dili</language>
  358. <language type="pa">puncab dili</language>
  359. <language type="paa">papua dili</language>
  360. <language type="pag">panqasinan dili</language>
  361. <language type="pal">paxlavi dili</language>
  362. <language type="pam">pampanqa dili</language>
  363. <language type="pap">papyamento dili</language>
  364. <language type="pau">palayanca</language>
  365. <language type="peo">qədimi farsca</language>
  366. <language type="phi">filipin dili</language>
  367. <language type="phn">foyenik dili</language>
  368. <language type="pi">pali dili</language>
  369. <language type="pl">Polish dili</language>
  370. <language type="pon">ponpeyan dili</language>
  371. <language type="pra">prakrit dili</language>
  372. <language type="pro">qədimi provensialca</language>
  373. <language type="ps">Puştu dili</language>
  374. <language type="pt">portuqalca</language>
  375. <language type="pt_PT">İber portuqalca</language>
  376. <language type="qu">kuechya dili</language>
  377. <language type="raj">racastan dili</language>
  378. <language type="rap">rapanu dili</language>
  379. <language type="rar">rarotonqan dili</language>
  380. <language type="rn">rundi dili</language>
  381. <language type="ro">rumın</language>
  382. <language type="rom">roman dili</language>
  383. <language type="root">rut dili</language>
  384. <language type="ru">rusca</language>
  385. <language type="rup">aromanca</language>
  386. <language type="rw">kinyarvanda dili</language>
  387. <language type="sa">Sanskrit dili</language>
  388. <language type="sad">sandave dili</language>
  389. <language type="sah">yakut dili</language>
  390. <language type="sai">cənub amerika yerli dili</language>
  391. <language type="sal">salişan dili</language>
  392. <language type="sam">samaritan dili</language>
  393. <language type="sas">sasak dili</language>
  394. <language type="sat">santal dili</language>
  395. <language type="sc">sardin dili</language>
  396. <language type="scn">sisili dili</language>
  397. <language type="sco">skots dili</language>
  398. <language type="sd">sindhi dili</language>
  399. <language type="se">şimal sami dili</language>
  400. <language type="sel">selkup dili</language>
  401. <language type="sem">ivrit dili</language>
  402. <language type="sg">sanqo dili</language>
  403. <language type="sga">qədimi irlandca</language>
  404. <language type="sgn">işarət dili</language>
  405. <language type="sh">serb-xorvatca</language>
  406. <language type="shn">şan dili</language>
  407. <language type="si">sinhaliscə</language>
  408. <language type="sid">sidamo dili</language>
  409. <language type="sio">sioyan dili</language>
  410. <language type="sit">sino-tibet dili</language>
  411. <language type="sk">slovakca</language>
  412. <language type="sl">slovencə</language>
  413. <language type="sla">slav dili</language>
  414. <language type="sm">samoa dili</language>
  415. <language type="sma">cənub sami dili</language>
  416. <language type="smi">səmi dili</language>
  417. <language type="smj">lule sami dili</language>
  418. <language type="smn">inari sami</language>
  419. <language type="sms">skolt dili</language>
  420. <language type="sn">şona dili</language>
  421. <language type="snk">soninke dili</language>
  422. <language type="so">somali dili</language>
  423. <language type="sog">soqdiyen dili</language>
  424. <language type="son">sonqay dili</language>
  425. <language type="sq">Albanca</language>
  426. <language type="sr">serb dili</language>
  427. <language type="srn">sranan tonqo dili</language>
  428. <language type="srr">serer dilii</language>
  429. <language type="ss">svati dili</language>
  430. <language type="ssa">nilo-sahara dili</language>
  431. <language type="st">Sesoto dili</language>
  432. <language type="su">sundanca</language>
  433. <language type="suk">sukuma dili</language>
  434. <language type="sus">susu dili</language>
  435. <language type="sux">sumeryan dili</language>
  436. <language type="sv">isveçcə</language>
  437. <language type="sw">suahilicə</language>
  438. <language type="syr">siryak dili</language>
  439. <language type="ta">tamilcə</language>
  440. <language type="tai">tay dili</language>
  441. <language type="te">teluqu dili</language>
  442. <language type="tem">timne dili</language>
  443. <language type="ter">tereno dili</language>
  444. <language type="tet">tetum dili</language>
  445. <language type="tg">tacik dili</language>
  446. <language type="th">tayca</language>
  447. <language type="ti">tiqrin dili</language>
  448. <language type="tig">tiqre dili</language>
  449. <language type="tiv">tiv dili</language>
  450. <language type="tk">türkməncə</language>
  451. <language type="tkl">tokelay dili</language>
  452. <language type="tl">taqaloq dili</language>
  453. <language type="tlh">klinqon</language>
  454. <language type="tli">tlinqit dili</language>
  455. <language type="tmh">tamaşek dili</language>
  456. <language type="tn">svana dili</language>
  457. <language type="to">tonqa dili</language>
  458. <language type="tog">niyasa tonga dili</language>
  459. <language type="tpi">tok pisin dili</language>
  460. <language type="tr">türkcə</language>
  461. <language type="ts">sonqa dili</language>
  462. <language type="tsi">simşyan dili</language>
  463. <language type="tt">tatarca</language>
  464. <language type="tum">tumbuka dili</language>
  465. <language type="tup">tupi dili</language>
  466. <language type="tut">altaik dili</language>
  467. <language type="tvl">tuvalu dili</language>
  468. <language type="tw">Tvi dili</language>
  469. <language type="ty">taxiti dili</language>
  470. <language type="tyv">tuvinyan dili</language>
  471. <language type="udm">udmurt dili</language>
  472. <language type="ug">uyğurca</language>
  473. <language type="uga">uqaritik dili</language>
  474. <language type="uk">ukraynaca</language>
  475. <language type="umb">umbundu dili</language>
  476. <language type="und">bilinməyən vəya gəcərsiz dil</language>
  477. <language type="ur">urduca</language>
  478. <language type="uz">özbəkcə</language>
  479. <language type="vai">vay dili</language>
  480. <language type="ve">venda dili</language>
  481. <language type="vi">vyetnamca</language>
  482. <language type="vo">volapük dili</language>
  483. <language type="vot">votik dili</language>
  484. <language type="wa">valun dili</language>
  485. <language type="wak">vakaşan dili</language>
  486. <language type="wal">valamo dili</language>
  487. <language type="war">varay dili</language>
  488. <language type="was">vaşo dili</language>
  489. <language type="wen">sorb dili</language>
  490. <language type="wo">volof dili</language>
  491. <language type="xal">kalmıqca</language>
  492. <language type="xh">xosa dili</language>
  493. <language type="yao">yao dili</language>
  494. <language type="yap">yapiz dili</language>
  495. <language type="yi">Yahudi dili</language>
  496. <language type="yo">yoruba dili</language>
  497. <language type="ypk">yupik dili</language>
  498. <language type="za">juənq dili</language>
  499. <language type="zap">zapotek dili</language>
  500. <language type="zbl">blisimbols dili</language>
  501. <language type="zen">zenaqa dili</language>
  502. <language type="zh">çincə</language>
  503. <language type="zh_Hans">adi çincə</language>
  504. <language type="zh_Hant">gələnəksəl çincə</language>
  505. <language type="znd">zande dili</language>
  506. <language type="zu">zulu dili</language>
  507. <language type="zun">zuni dili</language>
  508. <language type="zza">zaza dili</language>
  509. </languages>
  510. <scripts>
  511. <script type="Arab">ərəb</script>
  512. <script type="Armi">armi</script>
  513. <script type="Armn">erməni</script>
  514. <script type="Avst">avestan</script>
  515. <script type="Bali">bali</script>
  516. <script type="Batk">batak</script>
  517. <script type="Beng">benqal</script>
  518. <script type="Blis">blissymbols</script>
  519. <script type="Bopo">Bopomofo</script>
  520. <script type="Brah">brahmi</script>
  521. <script type="Brai">kor yazısı</script>
  522. <script type="Bugi">buqin</script>
  523. <script type="Buhd">buhid</script>
  524. <script type="Cakm">kakm</script>
  525. <script type="Cans">birləşmiş kanada yerli yazısı</script>
  526. <script type="Cari">kariyan</script>
  527. <script type="Cham">çam</script>
  528. <script type="Cher">çiroki</script>
  529. <script type="Cirt">sirt</script>
  530. <script type="Copt">koptik</script>
  531. <script type="Cprt">kipr</script>
  532. <script type="Cyrl">kiril</script>
  533. <script type="Cyrs">qədimi kilsa kirili</script>
  534. <script type="Deva">devanagari</script>
  535. <script type="Dsrt">deseret</script>
  536. <script type="Egyd">misir demotik</script>
  537. <script type="Egyh">misir hiyeratik</script>
  538. <script type="Egyp">misir hiyeroqlif</script>
  539. <script type="Ethi">efiopiya</script>
  540. <script type="Geok">gürcü xutsuri</script>
  541. <script type="Geor">gürcü</script>
  542. <script type="Glag">qlaqolitik</script>
  543. <script type="Goth">qotik</script>
  544. <script type="Grek">yunan</script>
  545. <script type="Gujr">qucarat</script>
  546. <script type="Guru">qurmuxi</script>
  547. <script type="Hang">hanqul</script>
  548. <script type="Hani">han</script>
  549. <script type="Hano">hanunu</script>
  550. <script type="Hans">basitləştirilmiş han</script>
  551. <script type="Hant">qədimi han</script>
  552. <script type="Hebr">yahudi</script>
  553. <script type="Hira">iragana</script>
  554. <script type="Hmng">pahav monq</script>
  555. <script type="Hrkt">katakana vəya hiraqana</script>
  556. <script type="Hung">qədimi macar</script>
  557. <script type="Inds">hindistan</script>
  558. <script type="Ital">qədimi italyalı</script>
  559. <script type="Java">cava</script>
  560. <script type="Jpan">yapon</script>
  561. <script type="Kali">kayax li</script>
  562. <script type="Kana">katakana</script>
  563. <script type="Khar">xaroşti</script>
  564. <script type="Khmr">xmer</script>
  565. <script type="Knda">kannada</script>
  566. <script type="Kore">korean</script>
  567. <script type="Kthi">kti</script>
  568. <script type="Lana">lanna</script>
  569. <script type="Laoo">lao</script>
  570. <script type="Latf">fraktur latını</script>
  571. <script type="Latg">gael latını</script>
  572. <script type="Latn">latın</script>
  573. <script type="Lepc">lepçə</script>
  574. <script type="Limb">limbu</script>
  575. <script type="Lyci">lusian</script>
  576. <script type="Lydi">ludian</script>
  577. <script type="Mand">mandayen</script>
  578. <script type="Mani">maniçayen</script>
  579. <script type="Maya">maya hiyeroqlifi</script>
  580. <script type="Mero">meroytik</script>
  581. <script type="Mlym">malayalam</script>
  582. <script type="Mong">monqol</script>
  583. <script type="Moon">mun</script>
  584. <script type="Mtei">meytey mayek</script>
  585. <script type="Mymr">miyanmar</script>
  586. <script type="Nkoo">nko</script>
  587. <script type="Ogam">oğam</script>
  588. <script type="Olck">ol çiki</script>
  589. <script type="Orkh">orxon</script>
  590. <script type="Orya">oriya</script>
  591. <script type="Osma">osmanya</script>
  592. <script type="Perm">qədimi permik</script>
  593. <script type="Phag">faqs-pa</script>
  594. <script type="Phli">fli</script>
  595. <script type="Phlp">flp</script>
  596. <script type="Phlv">kitab paxlavi</script>
  597. <script type="Phnx">foenik</script>
  598. <script type="Plrd">polard fonetik</script>
  599. <script type="Prti">prti</script>
  600. <script type="Rjng">recəng</script>
  601. <script type="Roro">ronqoronqo</script>
  602. <script type="Runr">runik</script>
  603. <script type="Samr">samaritan</script>
  604. <script type="Sara">sarati</script>
  605. <script type="Saur">saurastra</script>
  606. <script type="Sgnw">işarət yazısı</script>
  607. <script type="Shaw">şavyan</script>
  608. <script type="Sinh">sinhala</script>
  609. <script type="Sund">sundan</script>
  610. <script type="Sylo">siloti nəqri</script>
  611. <script type="Syrc">siryak</script>
  612. <script type="Syre">estrangela süryanice</script>
  613. <script type="Syrn">Syrn</script>
  614. <script type="Tagb">taqbanva</script>
  615. <script type="Tale">tay le</script>
  616. <script type="Talu">təzə tay lu</script>
  617. <script type="Taml">tamil</script>
  618. <script type="Tavt">tavt</script>
  619. <script type="Telu">telugu</script>
  620. <script type="Teng">tengvar</script>
  621. <script type="Tfng">tifinaq</script>
  622. <script type="Tglg">taqaloq</script>
  623. <script type="Thaa">txana</script>
  624. <script type="Thai">tay</script>
  625. <script type="Tibt">tibet</script>
  626. <script type="Ugar">uqarit</script>
  627. <script type="Vaii">vay</script>
  628. <script type="Visp">danışma səsləri</script>
  629. <script type="Xpeo">qədimi fars</script>
  630. <script type="Xsux">sumer-akadyan kuneyform</script>
  631. <script type="Yiii">yi</script>
  632. <script type="Zmth">zmth</script>
  633. <script type="Zsym">zsym</script>
  634. <script type="Zxxx">yazısız</script>
  635. <script type="Zyyy">adi yazi</script>
  636. <script type="Zzzz">bilinməyən veya gəcərsiz</script>
  637. </scripts>
  638. <territories>
  639. <territory type="001">Dünya</territory>
  640. <territory type="002">Afrika</territory>
  641. <territory type="003">Şimal Amerika</territory>
  642. <territory type="005">Cənub Amerika</territory>
  643. <territory type="009">Okeyaniya</territory>
  644. <territory type="011">Qərb afrika</territory>
  645. <territory type="013">Orta Amerika</territory>
  646. <territory type="014">Şərq Afrika</territory>
  647. <territory type="015">Şimal Afrika</territory>
  648. <territory type="017">Orta Afrika</territory>
  649. <territory type="018">018</territory>
  650. <territory type="019">Amerikalar</territory>
  651. <territory type="021">021</territory>
  652. <territory type="029">Kariyıplar</territory>
  653. <territory type="030">Şərq Asiya</territory>
  654. <territory type="034">Cənub Asiya</territory>
  655. <territory type="035">Cənub Şərq Asiya</territory>
  656. <territory type="039">Cənub Avropa</territory>
  657. <territory type="053">Avstraliya və Yeni Zelandiya</territory>
  658. <territory type="054">Melanesya</territory>
  659. <territory type="057">Mikronesiya reqionu</territory>
  660. <territory type="061">Polineziya</territory>
  661. <territory type="062">Cənub Orta Asiya</territory>
  662. <territory type="142">Aziya</territory>
  663. <territory type="143">Orta Aziya</territory>
  664. <territory type="145">Qərb Asiya</territory>
  665. <territory type="150">Avropa</territory>
  666. <territory type="151">Şərq Avropa</territory>
  667. <territory type="154">Şimal Avropa</territory>
  668. <territory type="155">Qərb Avropa</territory>
  669. <territory type="172">172</territory>
  670. <territory type="419">Latın Amerikası və Kariblər</territory>
  671. <territory type="AD">Andorra</territory>
  672. <territory type="AE">Birləşmiş Ərəb Emiratları</territory>
  673. <territory type="AF">Əfqənistan</territory>
  674. <territory type="AG">Antiqua və Barbuda</territory>
  675. <territory type="AI">Anquila</territory>
  676. <territory type="AL">Albaniya</territory>
  677. <territory type="AM">Ermənistan</territory>
  678. <territory type="AN">Hollandiya antilleri</territory>
  679. <territory type="AO">Angola</territory>
  680. <territory type="AQ">Antarktika</territory>
  681. <territory type="AR">Arqentina</territory>
  682. <territory type="AS">Amerika Samoası</territory>
  683. <territory type="AT">Avstriya</territory>
  684. <territory type="AU">Avstraliya</territory>
  685. <territory type="AW">Aruba</territory>
  686. <territory type="AX">Aland Adaları</territory>
  687. <territory type="AZ">Azərbaycan</territory>
  688. <territory type="BA">Bosniya və Herzokovina</territory>
  689. <territory type="BB">Barbados</territory>
  690. <territory type="BD">Banqladeş</territory>
  691. <territory type="BE">Belçika</territory>
  692. <territory type="BF">Burkina Faso</territory>
  693. <territory type="BG">Bolqariya</territory>
  694. <territory type="BH">Bahreyn</territory>
  695. <territory type="BI">Burundi</territory>
  696. <territory type="BJ">Benin</territory>
  697. <territory type="BL">Seynt Bartelemey</territory>
  698. <territory type="BM">Bermuda</territory>
  699. <territory type="BN">Bruney</territory>
  700. <territory type="BO">Boliviya</territory>
  701. <territory type="BR">Braziliya</territory>
  702. <territory type="BS">Bahamalar</territory>
  703. <territory type="BT">Butan</territory>
  704. <territory type="BV">Bove Adası</territory>
  705. <territory type="BW">Botsvana</territory>
  706. <territory type="BY">Belarus</territory>
  707. <territory type="BZ">Beliz</territory>
  708. <territory type="CA">Kanada</territory>
  709. <territory type="CC">Kokos Adaları</territory>
  710. <territory type="CD">Konqo - Kinşasa</territory>
  711. <territory type="CF">Orta Afrika respublikası</territory>
  712. <territory type="CG">Konqo - Brazavil</territory>
  713. <territory type="CH">isveçriya</territory>
  714. <territory type="CI">İvori Sahili</territory>
  715. <territory type="CK">Kuk Adaları</territory>
  716. <territory type="CL">Çile</territory>
  717. <territory type="CM">Kamerun</territory>
  718. <territory type="CN">Çin</territory>
  719. <territory type="CO">Kolumbiya</territory>
  720. <territory type="CR">Kosta Rika</territory>
  721. <territory type="CU">Kuba</territory>
  722. <territory type="CV">Kape Verde</territory>
  723. <territory type="CX">Çristmas Adası</territory>
  724. <territory type="CY">Kipr</territory>
  725. <territory type="CZ">Çex respublikası</territory>
  726. <territory type="DE">Almaniya</territory>
  727. <territory type="DJ">Ciboti</territory>
  728. <territory type="DK">Danemarka</territory>
  729. <territory type="DM">Dominika</territory>
  730. <territory type="DO">Dominik Respublikası</territory>
  731. <territory type="DZ">Cezayır</territory>
  732. <territory type="EC">Ekvador</territory>
  733. <territory type="EE">Estoniya</territory>
  734. <territory type="EG">Misir</territory>
  735. <territory type="EH">Qərb Sahara</territory>
  736. <territory type="ER">Eritreya</territory>
  737. <territory type="ES">İspaniya</territory>
  738. <territory type="ET">Efiopiya</territory>
  739. <territory type="FI">Finlandiya</territory>
  740. <territory type="FJ">Fici</territory>
  741. <territory type="FK">Folkland Adaları</territory>
  742. <territory type="FM">Mikronesiya</territory>
  743. <territory type="FO">Faro Adaları</territory>
  744. <territory type="FR">Fransa</territory>
  745. <territory type="GA">Qabon</territory>
  746. <territory type="GB">Birləşmiş Krallıq</territory>
  747. <territory type="GD">Qrenada</territory>
  748. <territory type="GE">Gürcüstan</territory>
  749. <territory type="GF">Fransız Quyanası</territory>
  750. <territory type="GG">Görnsey</territory>
  751. <territory type="GH">Qana</territory>
  752. <territory type="GI">Gibraltar</territory>
  753. <territory type="GL">Qrinland</territory>
  754. <territory type="GM">Qambiya</territory>
  755. <territory type="GN">Qvineya</territory>
  756. <territory type="GP">Qvadalup</territory>
  757. <territory type="GQ">Ekvator Qineya</territory>
  758. <territory type="GR">Yunanıstan</territory>
  759. <territory type="GS">Cənub Gürcüstan və Cənub Sandvilç Adaları</territory>
  760. <territory type="GT">Qvatemala</territory>
  761. <territory type="GU">Quam</territory>
  762. <territory type="GW">Qvineya-Bisau</territory>
  763. <territory type="GY">Quyana</territory>
  764. <territory type="HK">Honk Konq çina</territory>
  765. <territory type="HM">Hörd və Makdonald Adaları</territory>
  766. <territory type="HN">Qonduras</territory>
  767. <territory type="HR">Xorvatiya</territory>
  768. <territory type="HT">Haiti</territory>
  769. <territory type="HU">Macaristan</territory>
  770. <territory type="ID">İndoneziya</territory>
  771. <territory type="IE">İrlandiya</territory>
  772. <territory type="IL">İzrail</territory>
  773. <territory type="IM">Man Adası</territory>
  774. <territory type="IN">Hindistan</territory>
  775. <territory type="IO">Britaniya-Hindistan Okeanik territoriyası</territory>
  776. <territory type="IQ">İrak</territory>
  777. <territory type="IR">İran</territory>
  778. <territory type="IS">İslandiya</territory>
  779. <territory type="IT">İtaliya</territory>
  780. <territory type="JE">Cörsi</territory>
  781. <territory type="JM">Yamayka</territory>
  782. <territory type="JO">Ürdün</territory>
  783. <territory type="JP">Yaponiya</territory>
  784. <territory type="KE">Kenya</territory>
  785. <territory type="KG">Kırqızstan</territory>
  786. <territory type="KH">Kambodiya</territory>
  787. <territory type="KI">Kiribati</territory>
  788. <territory type="KM">Komoros</territory>
  789. <territory type="KN">Seynt Kits və Nevis</territory>
  790. <territory type="KP">Şimal Koreya</territory>
  791. <territory type="KR">Cənub Koreya</territory>
  792. <territory type="KW">Kuveyt</territory>
  793. <territory type="KY">Kayman Adaları</territory>
  794. <territory type="KZ">Kazaxstan</territory>
  795. <territory type="LA">Laos</territory>
  796. <territory type="LB">Lebanon</territory>
  797. <territory type="LC">Seynt Lusiya</territory>
  798. <territory type="LI">Lixtenşteyn</territory>
  799. <territory type="LK">Şri Lanka</territory>
  800. <territory type="LR">Liberiya</territory>
  801. <territory type="LS">Lesoto</territory>
  802. <territory type="LT">Litva</territory>
  803. <territory type="LU">Lüksemburq</territory>
  804. <territory type="LV">Latviya</territory>
  805. <territory type="LY">Libya</territory>
  806. <territory type="MA">Morokko</territory>
  807. <territory type="MC">Monako</territory>
  808. <territory type="MD">Moldova</territory>
  809. <territory type="ME">Monteneqro</territory>
  810. <territory type="MF">Seynt Martin</territory>
  811. <territory type="MG">Madaqaskar</territory>
  812. <territory type="MH">Marşal Adaları</territory>
  813. <territory type="MK">Masedoniya</territory>
  814. <territory type="ML">Mali</territory>
  815. <territory type="MM">Myanmar</territory>
  816. <territory type="MN">Monqoliya</territory>
  817. <territory type="MO">Makao Çina</territory>
  818. <territory type="MP">Şimal Mariana Adaları</territory>
  819. <territory type="MQ">Martiniqu</territory>
  820. <territory type="MR">Mavritaniya</territory>
  821. <territory type="MS">Montserat</territory>
  822. <territory type="MT">Malta</territory>
  823. <territory type="MU">Mavritis</territory>
  824. <territory type="MV">Maldiv</territory>
  825. <territory type="MW">Malavi</territory>
  826. <territory type="MX">Meksika</territory>
  827. <territory type="MY">Malaysiya</territory>
  828. <territory type="MZ">Mazambik</territory>
  829. <territory type="NA">Namibiya</territory>
  830. <territory type="NC">Yeni Kaledoniya</territory>
  831. <territory type="NE">nijer</territory>
  832. <territory type="NF">Norfolk Adası</territory>
  833. <territory type="NG">Nijeriya</territory>
  834. <territory type="NI">Nikaraqua</territory>
  835. <territory type="NL">Hollandiya</territory>
  836. <territory type="NO">Norvec</territory>
  837. <territory type="NP">Nepal</territory>
  838. <territory type="NR">Nauru</territory>
  839. <territory type="NU">Niye</territory>
  840. <territory type="NZ">Yeni Zelandiya</territory>
  841. <territory type="OM">Oman</territory>
  842. <territory type="PA">Panama</territory>
  843. <territory type="PE">Peru</territory>
  844. <territory type="PF">Fransız Polineziya</territory>
  845. <territory type="PG">Papua Yeni Qvineya</territory>
  846. <territory type="PH">Filipin</territory>
  847. <territory type="PK">Pakistan</territory>
  848. <territory type="PL">Polşa</territory>
  849. <territory type="PM">Seynt Piyer və Mikelon</territory>
  850. <territory type="PN">Pitkarn</territory>
  851. <territory type="PR">Puerto Riko</territory>
  852. <territory type="PS">Fələstin Bölqüsü</territory>
  853. <territory type="PT">Portuqal</territory>
  854. <territory type="PW">Palav</territory>
  855. <territory type="PY">Paraqvay</territory>
  856. <territory type="QA">Qatar</territory>
  857. <territory type="QO">Uzak Okeyaniya</territory>
  858. <territory type="QU">Avropa Birləşliyi</territory>
  859. <territory type="RE">Reyunion</territory>
  860. <territory type="RO">Romaniya</territory>
  861. <territory type="RS">Serbiya</territory>
  862. <territory type="RU">Rusiya</territory>
  863. <territory type="RW">Rvanda</territory>
  864. <territory type="SA">Saudi Ərəbistan</territory>
  865. <territory type="SB">Solomon Adaları</territory>
  866. <territory type="SC">Seyçels</territory>
  867. <territory type="SD">sudan</territory>
  868. <territory type="SE">isveç</territory>
  869. <territory type="SG">Sinqapur</territory>
  870. <territory type="SH">Seynt Elena</territory>
  871. <territory type="SI">Sloveniya</territory>
  872. <territory type="SJ">svalbard və yan mayen</territory>
  873. <territory type="SK">Slovakiya</territory>
  874. <territory type="SL">Siyera Leon</territory>
  875. <territory type="SM">San Marino</territory>
  876. <territory type="SN">Seneqal</territory>
  877. <territory type="SO">Somaliya</territory>
  878. <territory type="SR">surinamə</territory>
  879. <territory type="ST">Sao Tom və Prinsip</territory>
  880. <territory type="SV">El Salvador</territory>
  881. <territory type="SY">siriya</territory>
  882. <territory type="SZ">svazilənd</territory>
  883. <territory type="TC">Türk və Kaykos Adaları</territory>
  884. <territory type="TD">Çad</territory>
  885. <territory type="TF">Fransız Cənub teritoriyası</territory>
  886. <territory type="TG">Toqo</territory>
  887. <territory type="TH">tayland</territory>
  888. <territory type="TJ">tacikistan</territory>
  889. <territory type="TK">Tokelau</territory>
  890. <territory type="TL">Şərq Timor</territory>
  891. <territory type="TM">Türkmənistan</territory>
  892. <territory type="TN">Tunisiya</territory>
  893. <territory type="TO">Tonqa</territory>
  894. <territory type="TR">Türkiya</territory>
  895. <territory type="TT">Trinidan və Tobaqo</territory>
  896. <territory type="TV">Tuvalu</territory>
  897. <territory type="TW">tayvan</territory>
  898. <territory type="TZ">tanzaniya</territory>
  899. <territory type="UA">Ukraina</territory>
  900. <territory type="UG">Uqanda</territory>
  901. <territory type="UM">Birləşmiş Ştatların uzaq adaları</territory>
  902. <territory type="US">Amerika Birləşmiş Ştatları</territory>
  903. <territory type="UY">Uruqvay</territory>
  904. <territory type="UZ">Özbəkistan</territory>
  905. <territory type="VA">Vatikan</territory>
  906. <territory type="VC">Seynt Vinsent və Qrenada</territory>
  907. <territory type="VE">Venesuela</territory>
  908. <territory type="VG">Britaniya Virgin Adaları</territory>
  909. <territory type="VI">ABŞ Virqin Adaları</territory>
  910. <territory type="VN">Vyetnam</territory>
  911. <territory type="VU">Vanuatu</territory>
  912. <territory type="WF">Valis və Futuna</territory>
  913. <territory type="WS">Samoa</territory>
  914. <territory type="YE">Yemen</territory>
  915. <territory type="YT">Mayot</territory>
  916. <territory type="ZA">Cənub Afrika</territory>
  917. <territory type="ZM">Zambiya</territory>
  918. <territory type="ZW">Zimbabve</territory>
  919. <territory type="ZZ">bilinmir</territory>
  920. </territories>
  921. <types>
  922. <type type="buddhist" key="calendar">Budist təqvimi</type>
  923. <type type="chinese" key="calendar">Çin təqvimi</type>
  924. <type type="gregorian" key="calendar">Qreqoriy təqvimi</type>
  925. <type type="hebrew" key="calendar">Yahudi təqvimi</type>
  926. <type type="indian" key="calendar">Hindi təqvimi</type>
  927. <type type="islamic" key="calendar">Müsəlman təqvimi</type>
  928. <type type="islamic-civil" key="calendar">Ivrit təqvimi</type>
  929. <type type="japanese" key="calendar">Yapon təqvimi</type>
  930. <type type="pinyin" key="collation">Pinyin təqvimi</type>
  931. <type type="roc" key="calendar">Çin respublikası təqvimi</type>
  932. </types>
  933. <measurementSystemNames>
  934. <measurementSystemName type="metric">metr</measurementSystemName>
  935. <measurementSystemName type="US">ABŞ</measurementSystemName>
  936. </measurementSystemNames>
  937. <codePatterns>
  938. <codePattern type="language">Dil: {0}</codePattern>
  939. <codePattern type="script">Yazı: {0}</codePattern>
  940. <codePattern type="territory">Rayon: {0}</codePattern>
  941. </codePatterns>
  942. </localeDisplayNames>
  943. <characters>
  944. <exemplarCharacters>[a-c ç d e ə f g ğ h x ı i İ {i\u0307} j k q l-o ö p r s ş t u ü v y z]</exemplarCharacters>
  945. <exemplarCharacters type="auxiliary">[w]</exemplarCharacters>
  946. </characters>
  947. <delimiters>
  948. <quotationStart>“</quotationStart>
  949. <quotationEnd>”</quotationEnd>
  950. <alternateQuotationStart>‘</alternateQuotationStart>
  951. <alternateQuotationEnd>’</alternateQuotationEnd>
  952. </delimiters>
  953. <dates>
  954. <calendars>
  955. <calendar type="gregorian">
  956. <months>
  957. <monthContext type="format">
  958. <monthWidth type="abbreviated">
  959. <month type="1">yan</month>
  960. <month type="2">fev</month>
  961. <month type="3">mar</month>
  962. <month type="4">apr</month>
  963. <month type="5">may</month>
  964. <month type="6">iyn</month>
  965. <month type="7">iyl</month>
  966. <month type="8">avq</month>
  967. <month type="9">sen</month>
  968. <month type="10">okt</month>
  969. <month type="11">noy</month>
  970. <month type="12">dek</month>
  971. </monthWidth>
  972. <monthWidth type="wide">
  973. <month type="1">Yanvar</month>
  974. <month type="2">Fevral</month>
  975. <month type="3">Mart</month>
  976. <month type="4">Aprel</month>
  977. <month type="5">May</month>
  978. <month type="6">İyun</month>
  979. <month type="7">İyul</month>
  980. <month type="8">Avqust</month>
  981. <month type="9">Sentyabr</month>
  982. <month type="10">Oktyabr</month>
  983. <month type="11">Noyabr</month>
  984. <month type="12">Dekabr</month>
  985. </monthWidth>
  986. </monthContext>
  987. <monthContext type="stand-alone">
  988. <monthWidth type="narrow">
  989. <month type="1">1</month>
  990. <month type="2">2</month>
  991. <month type="3">3</month>
  992. <month type="4">4</month>
  993. <month type="5">5</month>
  994. <month type="6">6</month>
  995. <month type="7">7</month>
  996. <month type="8">8</month>
  997. <month type="9">9</month>
  998. <month type="10">10</month>
  999. <month type="11">11</month>
  1000. <month type="12">12</month>
  1001. </monthWidth>
  1002. </monthContext>
  1003. </months>
  1004. <days>
  1005. <dayContext type="format">
  1006. <dayWidth type="abbreviated">
  1007. <day type="sun">B.</day>
  1008. <day type="mon">B.E.</day>
  1009. <day type="tue">Ç.A.</day>
  1010. <day type="wed">Ç.</day>
  1011. <day type="thu">C.A.</day>
  1012. <day type="fri">C</day>
  1013. <day type="sat">Ş.</day>
  1014. </dayWidth>
  1015. <dayWidth type="wide">
  1016. <day type="sun">bazar</day>
  1017. <day type="mon">bazar ertəsi</day>
  1018. <day type="tue">çərşənbə axşamı</day>
  1019. <day type="wed">çərşənbə</day>
  1020. <day type="thu">cümə axşamı</day>
  1021. <day type="fri">cümə</day>
  1022. <day type="sat">şənbə</day>
  1023. </dayWidth>
  1024. </dayContext>
  1025. <dayContext type="stand-alone">
  1026. <dayWidth type="narrow">
  1027. <day type="sun">7</day>
  1028. <day type="mon">1</day>
  1029. <day type="tue">2</day>
  1030. <day type="wed">3</day>
  1031. <day type="thu">4</day>
  1032. <day type="fri">5</day>
  1033. <day type="sat">6</day>
  1034. </dayWidth>
  1035. </dayContext>
  1036. </days>
  1037. <quarters>
  1038. <quarterContext type="format">
  1039. <quarterWidth type="abbreviated">
  1040. <quarter type="1">1-ci kv.</quarter>
  1041. <quarter type="2">2-ci kv.</quarter>
  1042. <quarter type="3">3-cü kv.</quarter>
  1043. <quarter type="4">4-cü kv.</quarter>
  1044. </quarterWidth>
  1045. <quarterWidth type="wide">
  1046. <quarter type="1">1-ci kvartal</quarter>
  1047. <quarter type="2">2-ci kvartal</quarter>
  1048. <quarter type="3">3-cü kvartal</quarter>
  1049. <quarter type="4">4-cü kvartal</quarter>
  1050. </quarterWidth>
  1051. </quarterContext>
  1052. </quarters>
  1053. <am>AM</am>
  1054. <pm>PM</pm>
  1055. <eras>
  1056. <eraNames>
  1057. <era type="0">eramızdan əvvəl</era>
  1058. <era type="1">bizim eramızın</era>
  1059. </eraNames>
  1060. <eraAbbr>
  1061. <era type="0">e.ə.</era>
  1062. <era type="1">b.e.</era>
  1063. </eraAbbr>
  1064. </eras>
  1065. <dateFormats>
  1066. <dateFormatLength type="full">
  1067. <dateFormat>
  1068. <pattern>EEEE, d, MMMM, y</pattern>
  1069. </dateFormat>
  1070. </dateFormatLength>
  1071. <dateFormatLength type="long">
  1072. <dateFormat>
  1073. <pattern>d MMMM , y</pattern>
  1074. </dateFormat>
  1075. </dateFormatLength>
  1076. <dateFormatLength type="medium">
  1077. <dateFormat>
  1078. <pattern>d MMM, y</pattern>
  1079. </dateFormat>
  1080. </dateFormatLength>
  1081. <dateFormatLength type="short">
  1082. <dateFormat>
  1083. <pattern>yy/MM/dd</pattern>
  1084. </dateFormat>
  1085. </dateFormatLength>
  1086. </dateFormats>
  1087. <timeFormats>
  1088. <timeFormatLength type="full">
  1089. <timeFormat>
  1090. <pattern>HH:mm:ss zzzz</pattern>
  1091. </timeFormat>
  1092. </timeFormatLength>
  1093. <timeFormatLength type="long">
  1094. <timeFormat>
  1095. <pattern>HH:mm:ss z</pattern>
  1096. </timeFormat>
  1097. </timeFormatLength>
  1098. <timeFormatLength type="medium">
  1099. <timeFormat>
  1100. <pattern>HH:mm:ss</pattern>
  1101. </timeFormat>
  1102. </timeFormatLength>
  1103. <timeFormatLength type="short">
  1104. <timeFormat>
  1105. <pattern>HH:mm</pattern>
  1106. </timeFormat>
  1107. </timeFormatLength>
  1108. </timeFormats>
  1109. <dateTimeFormats>
  1110. <availableFormats>
  1111. <dateFormatItem id="yyQ">Q yy</dateFormatItem>
  1112. </availableFormats>
  1113. </dateTimeFormats>
  1114. <fields>
  1115. <field type="era">
  1116. <displayName>era</displayName>
  1117. </field>
  1118. <field type="year">
  1119. <displayName>il</displayName>
  1120. </field>
  1121. <field type="month">
  1122. <displayName>ay</displayName>
  1123. </field>
  1124. <field type="week">
  1125. <displayName>həftə</displayName>
  1126. </field>
  1127. <field type="day">
  1128. <displayName>bu gün</displayName>
  1129. <relative type="-3">üç gün əvvəl</relative>
  1130. <relative type="-1">dünən</relative>
  1131. <relative type="0">bu gün</relative>
  1132. <relative type="1">sabah</relative>
  1133. <relative type="3">üç gün sonra</relative>
  1134. </field>
  1135. <field type="weekday">
  1136. <displayName>həftə günü</displayName>
  1137. </field>
  1138. <field type="hour">
  1139. <displayName>saat</displayName>
  1140. </field>
  1141. <field type="minute">
  1142. <displayName>dəqiqə</displayName>
  1143. </field>
  1144. <field type="second">
  1145. <displayName>saniyə</displayName>
  1146. </field>
  1147. <field type="zone">
  1148. <displayName>zona</displayName>
  1149. </field>
  1150. </fields>
  1151. </calendar>
  1152. </calendars>
  1153. <timeZoneNames>
  1154. <hourFormat>+HH:mm;-HH:mm</hourFormat>
  1155. <gmtFormat>GMT{0}</gmtFormat>
  1156. <regionFormat>{0}</regionFormat>
  1157. <fallbackFormat>{1} ({0})</fallbackFormat>
  1158. <zone type="Etc/Unknown">
  1159. <exemplarCity>Bilinmir</exemplarCity>
  1160. </zone>
  1161. <zone type="Antarctica/Rothera">
  1162. <exemplarCity>rofera</exemplarCity>
  1163. </zone>
  1164. <zone type="Antarctica/South_Pole">
  1165. <exemplarCity>çənub polus</exemplarCity>
  1166. </zone>
  1167. <zone type="Antarctica/Syowa">
  1168. <exemplarCity>syova</exemplarCity>
  1169. </zone>
  1170. <zone type="Antarctica/Mawson">
  1171. <exemplarCity>moson</exemplarCity>
  1172. </zone>
  1173. <zone type="Antarctica/Davis">
  1174. <exemplarCity>Deyvis</exemplarCity>
  1175. </zone>
  1176. <zone type="Antarctica/Vostok">
  1177. <exemplarCity>vostok</exemplarCity>
  1178. </zone>
  1179. <zone type="Antarctica/Casey">
  1180. <exemplarCity>Keysi</exemplarCity>
  1181. </zone>
  1182. <zone type="Antarctica/DumontDUrville">
  1183. <exemplarCity>Dumont de Urvile</exemplarCity>
  1184. </zone>
  1185. <zone type="Antarctica/McMurdo">
  1186. <exemplarCity>makmurdo</exemplarCity>
  1187. </zone>
  1188. <zone type="America/Argentina/Rio_Gallegos">
  1189. <exemplarCity>rio qayegos</exemplarCity>
  1190. </zone>
  1191. <zone type="America/Mendoza">
  1192. <exemplarCity>mendoza</exemplarCity>
  1193. </zone>
  1194. <zone type="America/Argentina/San_Juan">
  1195. <exemplarCity>san xuan</exemplarCity>
  1196. </zone>
  1197. <zone type="America/Argentina/Ushuaia">
  1198. <exemplarCity>uşuya</exemplarCity>
  1199. </zone>
  1200. <zone type="America/Argentina/La_Rioja">
  1201. <exemplarCity>La Rioha</exemplarCity>
  1202. </zone>
  1203. <zone type="America/Argentina/San_Luis">
  1204. <exemplarCity>san luis</exemplarCity>
  1205. </zone>
  1206. <zone type="America/Catamarca">
  1207. <exemplarCity>Katamarka</exemplarCity>
  1208. </zone>
  1209. <zone type="America/Jujuy">
  1210. <exemplarCity>Cucuy</exemplarCity>
  1211. </zone>
  1212. <zone type="America/Argentina/Tucuman">
  1213. <exemplarCity>tukuman</exemplarCity>
  1214. </zone>
  1215. <zone type="America/Cordoba">
  1216. <exemplarCity>Kordoba</exemplarCity>
  1217. </zone>
  1218. <zone type="America/Buenos_Aires">
  1219. <exemplarCity>Buenos Ayres</exemplarCity>
  1220. </zone>
  1221. <zone type="Australia/Perth">
  1222. <exemplarCity>perf</exemplarCity>
  1223. </zone>
  1224. <zone type="Australia/Eucla">
  1225. <exemplarCity>Yukla</exemplarCity>
  1226. </zone>
  1227. <zone type="Australia/Darwin">
  1228. <exemplarCity>Darvin</exemplarCity>
  1229. </zone>
  1230. <zone type="Australia/Adelaide">
  1231. <exemplarCity>Adelayd</exemplarCity>
  1232. </zone>
  1233. <zone type="Australia/Broken_Hill">
  1234. <exemplarCity>Broken Hil</exemplarCity>
  1235. </zone>
  1236. <zone type="Australia/Currie">
  1237. <exemplarCity>Kuriye</exemplarCity>
  1238. </zone>
  1239. <zone type="Australia/Melbourne">
  1240. <exemplarCity>melburn</exemplarCity>
  1241. </zone>
  1242. <zone type="Australia/Sydney">
  1243. <exemplarCity>sidney</exemplarCity>
  1244. </zone>
  1245. <zone type="Australia/Brisbane">
  1246. <exemplarCity>Brisbeyn</exemplarCity>
  1247. </zone>
  1248. <zone type="Australia/Lord_Howe">
  1249. <exemplarCity>Lord Hove</exemplarCity>
  1250. </zone>
  1251. <zone type="America/Eirunepe">
  1252. <exemplarCity>İrunepe</exemplarCity>
  1253. </zone>
  1254. <zone type="America/Rio_Branco">
  1255. <exemplarCity>Rio Branko</exemplarCity>
  1256. </zone>
  1257. <zone type="America/Porto_Velho">
  1258. <exemplarCity>porto velo</exemplarCity>
  1259. </zone>
  1260. <zone type="America/Cuiaba">
  1261. <exemplarCity>Kuyaba</exemplarCity>
  1262. </zone>
  1263. <zone type="America/Campo_Grande">
  1264. <exemplarCity>Kampo Qrande</exemplarCity>
  1265. </zone>
  1266. <zone type="America/Araguaina">
  1267. <exemplarCity>Araguayna</exemplarCity>
  1268. </zone>
  1269. <zone type="America/Sao_Paulo">
  1270. <exemplarCity>sao paulo</exemplarCity>
  1271. </zone>
  1272. <zone type="America/Bahia">
  1273. <exemplarCity>Bahiya</exemplarCity>
  1274. </zone>
  1275. <zone type="America/Maceio">
  1276. <exemplarCity>Maseyo</exemplarCity>
  1277. </zone>
  1278. <zone type="America/Recife">
  1279. <exemplarCity>resif</exemplarCity>
  1280. </zone>
  1281. <zone type="America/Noronha">
  1282. <exemplarCity>noronha</exemplarCity>
  1283. </zone>
  1284. <zone type="America/Dawson">
  1285. <exemplarCity>Douson</exemplarCity>
  1286. </zone>
  1287. <zone type="America/Whitehorse">
  1288. <exemplarCity>vaythors</exemplarCity>
  1289. </zone>
  1290. <zone type="America/Inuvik">
  1291. <exemplarCity>İnuvik</exemplarCity>
  1292. </zone>
  1293. <zone type="America/Vancouver">
  1294. <exemplarCity>vənkuver</exemplarCity>
  1295. </zone>
  1296. <zone type="America/Dawson_Creek">
  1297. <exemplarCity>Douson Krik</exemplarCity>
  1298. </zone>
  1299. <zone type="America/Yellowknife">
  1300. <exemplarCity>yelounayf</exemplarCity>
  1301. </zone>
  1302. <zone type="America/Edmonton">
  1303. <exemplarCity>Edmondton</exemplarCity>
  1304. </zone>
  1305. <zone type="America/Swift_Current">
  1306. <exemplarCity>svift kurent</exemplarCity>
  1307. </zone>
  1308. <zone type="America/Cambridge_Bay">
  1309. <exemplarCity>Kəmbric Bey</exemplarCity>
  1310. </zone>
  1311. <zone type="America/Regina">
  1312. <exemplarCity>recina</exemplarCity>
  1313. </zone>
  1314. <zone type="America/Winnipeg">
  1315. <exemplarCity>vinipeq</exemplarCity>
  1316. </zone>
  1317. <zone type="America/Resolute">
  1318. <exemplarCity>resolut</exemplarCity>
  1319. </zone>
  1320. <zone type="America/Rainy_River">
  1321. <exemplarCity>reyni river</exemplarCity>
  1322. </zone>
  1323. <zone type="America/Rankin_Inlet">
  1324. <exemplarCity>rankin inlet</exemplarCity>
  1325. </zone>
  1326. <zone type="America/Coral_Harbour">
  1327. <exemplarCity>Koral Harbor</exemplarCity>
  1328. </zone>
  1329. <zone type="America/Thunder_Bay">
  1330. <exemplarCity>funder bey</exemplarCity>
  1331. </zone>
  1332. <zone type="America/Nipigon">
  1333. <exemplarCity>nipiqon</exemplarCity>
  1334. </zone>
  1335. <zone type="America/Toronto">
  1336. <exemplarCity>toronto</exemplarCity>
  1337. </zone>
  1338. <zone type="America/Montreal">
  1339. <exemplarCity>montreal</exemplarCity>
  1340. </zone>
  1341. <zone type="America/Iqaluit">
  1342. <exemplarCity>İqalut</exemplarCity>
  1343. </zone>
  1344. <zone type="America/Pangnirtung">
  1345. <exemplarCity>panqnirtanq</exemplarCity>
  1346. </zone>
  1347. <zone type="America/Moncton">
  1348. <exemplarCity>monkton</exemplarCity>
  1349. </zone>
  1350. <zone type="America/Halifax">
  1351. <exemplarCity>Halifaks</exemplarCity>
  1352. </zone>
  1353. <zone type="America/Goose_Bay">
  1354. <exemplarCity>Qus Bey</exemplarCity>
  1355. </zone>
  1356. <zone type="America/Glace_Bay">
  1357. <exemplarCity>Qleys Bey</exemplarCity>
  1358. </zone>
  1359. <zone type="America/Blanc-Sablon">
  1360. <exemplarCity>Blank-Sablon</exemplarCity>
  1361. </zone>
  1362. <zone type="America/St_Johns">
  1363. <exemplarCity>St Johns</exemplarCity>
  1364. </zone>
  1365. <zone type="Africa/Kinshasa">
  1366. <exemplarCity>Kinşasa</exemplarCity>
  1367. </zone>
  1368. <zone type="Africa/Lubumbashi">
  1369. <exemplarCity>Lubumbaşi</exemplarCity>
  1370. </zone>
  1371. <zone type="Pacific/Easter">
  1372. <exemplarCity>İster</exemplarCity>
  1373. </zone>
  1374. <zone type="Asia/Kashgar">
  1375. <exemplarCity>Kaşqar</exemplarCity>
  1376. </zone>
  1377. <zone type="Asia/Urumqi">
  1378. <exemplarCity>urumçi</exemplarCity>
  1379. </zone>
  1380. <zone type="Asia/Chongqing">
  1381. <exemplarCity>Conqinq</exemplarCity>
  1382. </zone>
  1383. <zone type="Pacific/Galapagos">
  1384. <exemplarCity>Qalapaqos</exemplarCity>
  1385. </zone>
  1386. <zone type="Atlantic/Canary">
  1387. <exemplarCity>Kanari</exemplarCity>
  1388. </zone>
  1389. <zone type="Africa/Ceuta">
  1390. <exemplarCity>Seuta</exemplarCity>
  1391. </zone>
  1392. <zone type="Pacific/Ponape">
  1393. <exemplarCity>ponape</exemplarCity>
  1394. </zone>
  1395. <zone type="Pacific/Kosrae">
  1396. <exemplarCity>Kosraye</exemplarCity>
  1397. </zone>
  1398. <zone type="America/Thule">
  1399. <exemplarCity>tul</exemplarCity>
  1400. </zone>
  1401. <zone type="America/Scoresbysund">
  1402. <exemplarCity>skoresbisund</exemplarCity>
  1403. </zone>
  1404. <zone type="America/Danmarkshavn">
  1405. <exemplarCity>Danmarkşavn</exemplarCity>
  1406. </zone>
  1407. <zone type="Asia/Jakarta">
  1408. <exemplarCity>Cakarta</exemplarCity>
  1409. </zone>
  1410. <zone type="Asia/Pontianak">
  1411. <exemplarCity>pontiyanak</exemplarCity>
  1412. </zone>
  1413. <zone type="Asia/Makassar">
  1414. <exemplarCity>Makasar</exemplarCity>
  1415. </zone>
  1416. <zone type="Asia/Jayapura">
  1417. <exemplarCity>Cayapura</exemplarCity>
  1418. </zone>
  1419. <zone type="Pacific/Enderbury">
  1420. <exemplarCity>Enderböri</exemplarCity>
  1421. </zone>
  1422. <zone type="Pacific/Kiritimati">
  1423. <exemplarCity>Kirimati</exemplarCity>
  1424. </zone>
  1425. <zone type="Pacific/Tarawa">
  1426. <exemplarCity>tarava</exemplarCity>
  1427. </zone>
  1428. <zone type="Asia/Aqtau">
  1429. <exemplarCity>Aktau</exemplarCity>
  1430. </zone>
  1431. <zone type="Asia/Qyzylorda">
  1432. <exemplarCity>qüzülorda</exemplarCity>
  1433. </zone>
  1434. <zone type="Asia/Almaty">
  1435. <exemplarCity>Almati</exemplarCity>
  1436. </zone>
  1437. <zone type="Pacific/Kwajalein">
  1438. <exemplarCity>Kvajaleyn</exemplarCity>
  1439. </zone>
  1440. <zone type="Pacific/Majuro">
  1441. <exemplarCity>Maxiro</exemplarCity>
  1442. </zone>
  1443. <zone type="Asia/Ulaanbaatar">
  1444. <exemplarCity>ulanbatar</exemplarCity>
  1445. </zone>
  1446. <zone type="Asia/Choibalsan">
  1447. <exemplarCity>Coybalsan</exemplarCity>
  1448. </zone>
  1449. <zone type="America/Tijuana">
  1450. <exemplarCity>tixuana</exemplarCity>
  1451. </zone>
  1452. <zone type="America/Hermosillo">
  1453. <exemplarCity>Hermosilo</exemplarCity>
  1454. </zone>
  1455. <zone type="America/Mazatlan">
  1456. <exemplarCity>mazaltan</exemplarCity>
  1457. </zone>
  1458. <zone type="America/Chihuahua">
  1459. <exemplarCity>Cihuvava</exemplarCity>
  1460. </zone>
  1461. <zone type="America/Monterrey">
  1462. <exemplarCity>monterey</exemplarCity>
  1463. </zone>
  1464. <zone type="America/Mexico_City">
  1465. <exemplarCity>mexiko</exemplarCity>
  1466. </zone>
  1467. <zone type="America/Cancun">
  1468. <exemplarCity>Kankun</exemplarCity>
  1469. </zone>
  1470. <zone type="Asia/Kuching">
  1471. <exemplarCity>Kuçinq</exemplarCity>
  1472. </zone>
  1473. <zone type="Pacific/Chatham">
  1474. <exemplarCity>Çatam</exemplarCity>
  1475. </zone>
  1476. <zone type="Pacific/Marquesas">
  1477. <exemplarCity>Markuyesas</exemplarCity>
  1478. </zone>
  1479. <zone type="Pacific/Gambier">
  1480. <exemplarCity>Qambiyer</exemplarCity>
  1481. </zone>
  1482. <zone type="Atlantic/Madeira">
  1483. <exemplarCity>Madeyra</exemplarCity>
  1484. </zone>
  1485. <zone type="Europe/Kaliningrad">
  1486. <exemplarCity>Kalininqrad</exemplarCity>
  1487. </zone>
  1488. <zone type="Europe/Moscow">
  1489. <exemplarCity>moskva</exemplarCity>
  1490. </zone>
  1491. <zone type="Europe/Volgograd">
  1492. <exemplarCity>volqoqrad</exemplarCity>
  1493. </zone>
  1494. <zone type="Europe/Samara">
  1495. <exemplarCity>samara</exemplarCity>
  1496. </zone>
  1497. <zone type="Asia/Yekaterinburg">
  1498. <exemplarCity>yekaterinburq</exemplarCity>
  1499. </zone>
  1500. <zone type="Asia/Novosibirsk">
  1501. <exemplarCity>novosibirsk</exemplarCity>
  1502. </zone>
  1503. <zone type="Asia/Irkutsk">
  1504. <exemplarCity>İrkutsk</exemplarCity>
  1505. </zone>
  1506. <zone type="Asia/Yakutsk">
  1507. <exemplarCity>yakutsk</exemplarCity>
  1508. </zone>
  1509. <zone type="Asia/Vladivostok">
  1510. <exemplarCity>vladivostok</exemplarCity>
  1511. </zone>
  1512. <zone type="Asia/Sakhalin">
  1513. <exemplarCity>saxalin</exemplarCity>
  1514. </zone>
  1515. <zone type="Asia/Magadan">
  1516. <exemplarCity>Maqadan</exemplarCity>
  1517. </zone>
  1518. <zone type="Asia/Kamchatka">
  1519. <exemplarCity>Kamçatka</exemplarCity>
  1520. </zone>
  1521. <zone type="Asia/Anadyr">
  1522. <exemplarCity>Anadır</exemplarCity>
  1523. </zone>
  1524. <zone type="Europe/Uzhgorod">
  1525. <exemplarCity>ujgorod</exemplarCity>
  1526. </zone>
  1527. <zone type="Europe/Kiev">
  1528. <exemplarCity>Kiyev</exemplarCity>
  1529. </zone>
  1530. <zone type="Europe/Simferopol">
  1531. <exemplarCity>simferopol</exemplarCity>
  1532. </zone>
  1533. <zone type="Europe/Zaporozhye">
  1534. <exemplarCity>zaporojye</exemplarCity>
  1535. </zone>
  1536. <zone type="Pacific/Midway">
  1537. <exemplarCity>midvey</exemplarCity>
  1538. </zone>
  1539. <zone type="Pacific/Johnston">
  1540. <exemplarCity>Conston</exemplarCity>
  1541. </zone>
  1542. <zone type="Pacific/Wake">
  1543. <exemplarCity>veyk</exemplarCity>
  1544. </zone>
  1545. <zone type="America/Nome">
  1546. <exemplarCity>nom</exemplarCity>
  1547. </zone>
  1548. <zone type="America/Anchorage">
  1549. <exemplarCity>Ankorac</exemplarCity>
  1550. </zone>
  1551. <zone type="America/Yakutat">
  1552. <exemplarCity>yakutat</exemplarCity>
  1553. </zone>
  1554. <zone type="America/Juneau">
  1555. <exemplarCity>Cüneau</exemplarCity>
  1556. </zone>
  1557. <zone type="America/Los_Angeles">
  1558. <exemplarCity>Los Anceles</exemplarCity>
  1559. </zone>
  1560. <zone type="America/Boise">
  1561. <exemplarCity>Boyse</exemplarCity>
  1562. </zone>
  1563. <zone type="America/Phoenix">
  1564. <exemplarCity>finiks</exemplarCity>
  1565. </zone>
  1566. <zone type="America/Shiprock">
  1567. <exemplarCity>şiprok</exemplarCity>
  1568. </zone>
  1569. <zone type="America/North_Dakota/New_Salem">
  1570. <exemplarCity>nyu salem</exemplarCity>
  1571. </zone>
  1572. <zone type="America/North_Dakota/Center">
  1573. <exemplarCity>Orta, Şimal Dakota</exemplarCity>
  1574. </zone>
  1575. <zone type="America/Chicago">
  1576. <exemplarCity>Cikaqo</exemplarCity>
  1577. </zone>
  1578. <zone type="America/Menominee">
  1579. <exemplarCity>menomini</exemplarCity>
  1580. </zone>
  1581. <zone type="America/Indiana/Vincennes">
  1582. <exemplarCity>vinsenes</exemplarCity>
  1583. </zone>
  1584. <zone type="America/Indiana/Petersburg">
  1585. <exemplarCity>pitersburq</exemplarCity>
  1586. </zone>
  1587. <zone type="America/Indiana/Tell_City">
  1588. <exemplarCity>tell şəhəri</exemplarCity>
  1589. </zone>
  1590. <zone type="America/Indiana/Knox">
  1591. <exemplarCity>Noks</exemplarCity>
  1592. </zone>
  1593. <zone type="America/Indiana/Winamac">
  1594. <exemplarCity>vinamak</exemplarCity>
  1595. </zone>
  1596. <zone type="America/Indiana/Marengo">
  1597. <exemplarCity>Marenqo</exemplarCity>
  1598. </zone>
  1599. <zone type="America/Indianapolis">
  1600. <exemplarCity>İndianapolis</exemplarCity>
  1601. </zone>
  1602. <zone type="America/Louisville">
  1603. <exemplarCity>Luisvil</exemplarCity>
  1604. </zone>
  1605. <zone type="America/Indiana/Vevay">
  1606. <exemplarCity>vevey</exemplarCity>
  1607. </zone>
  1608. <zone type="America/Kentucky/Monticello">
  1609. <exemplarCity>montiçelo</exemplarCity>
  1610. </zone>
  1611. <zone type="America/Detroit">
  1612. <exemplarCity>Detroyt</exemplarCity>
  1613. </zone>
  1614. <zone type="America/New_York">
  1615. <exemplarCity>nyu york</exemplarCity>
  1616. </zone>
  1617. <zone type="Asia/Samarkand">
  1618. <exemplarCity>səmərkənd</exemplarCity>
  1619. </zone>
  1620. <metazone type="Europe_Central">
  1621. <long>
  1622. <standard>Orta Avropa</standard>
  1623. <daylight>Orta Avropa/yay</daylight>
  1624. </long>
  1625. <short>
  1626. <standard>Orta Avropa/standart</standard>
  1627. <daylight>Orta Avropa/yaz</daylight>
  1628. </short>
  1629. </metazone>
  1630. <metazone type="Europe_Eastern">
  1631. <long>
  1632. <standard>Şərq Avropa</standard>
  1633. <daylight>Şərq Avropa/yay</daylight>
  1634. </long>
  1635. <short>
  1636. <standard>Şərq Avropa/standart</standard>
  1637. <daylight>Şərq Avropa/yaz</daylight>
  1638. </short>
  1639. <commonlyUsed>true</commonlyUsed>
  1640. </metazone>
  1641. <metazone type="Kuybyshev">
  1642. <long>
  1643. <standard>Kuybuşev</standard>
  1644. <daylight>Kuybuşev/yay</daylight>
  1645. </long>
  1646. </metazone>
  1647. <metazone type="Moscow">
  1648. <long>
  1649. <generic>Moskva</generic>
  1650. <standard>Moskva/standart</standard>
  1651. <daylight>Moskva/yay</daylight>
  1652. </long>
  1653. <commonlyUsed>true</commonlyUsed>
  1654. </metazone>
  1655. <metazone type="Samara">
  1656. <long>
  1657. <standard>Samara</standard>
  1658. <daylight>Samara/yay</daylight>
  1659. </long>
  1660. </metazone>
  1661. <metazone type="Turkey">
  1662. <long>
  1663. <standard>Türkiya</standard>
  1664. <daylight>Türkiya/yay</daylight>
  1665. </long>
  1666. <commonlyUsed>true</commonlyUsed>
  1667. </metazone>
  1668. <metazone type="Volgograd">
  1669. <long>
  1670. <standard>Volqoqrad</standard>
  1671. <daylight>Volqoqrad/yay</daylight>
  1672. </long>
  1673. </metazone>
  1674. </timeZoneNames>
  1675. </dates>
  1676. <numbers>
  1677. <symbols>
  1678. <decimal>,</decimal>
  1679. <group>.</group>
  1680. <list>;</list>
  1681. <percentSign>%</percentSign>
  1682. <nativeZeroDigit>0</nativeZeroDigit>
  1683. <patternDigit>#</patternDigit>
  1684. <plusSign>+</plusSign>
  1685. <minusSign>-</minusSign>
  1686. <exponential>E</exponential>
  1687. <perMille>‰</perMille>
  1688. <infinity>∞</infinity>
  1689. <nan>NaN</nan>
  1690. </symbols>
  1691. <currencyFormats>
  1692. <currencyFormatLength>
  1693. <currencyFormat>
  1694. <pattern>¤ #,##0.00</pattern>
  1695. </currencyFormat>
  1696. </currencyFormatLength>
  1697. </currencyFormats>
  1698. <currencies>
  1699. <currency type="ADP">
  1700. <displayName>Andora pesetası</displayName>
  1701. <displayName count="other">Andora pesetası</displayName>
  1702. </currency>
  1703. <currency type="AED">
  1704. <displayName>Birləşmiş ərəb emiratlar dirhamı</displayName>
  1705. <displayName count="other">BƏE dirhamı</displayName>
  1706. </currency>
  1707. <currency type="AFA">
  1708. <displayName>Əfgəni (AFA)</displayName>
  1709. <displayName count="other">Əfgən (AFA)</displayName>
  1710. </currency>
  1711. <currency type="AFN">
  1712. <displayName>Əfgəni</displayName>
  1713. <displayName count="other">Əfgən</displayName>
  1714. </currency>
  1715. <currency type="ALL">
  1716. <displayName>Alban leki</displayName>
  1717. <displayName count="other">Alban leki</displayName>
  1718. </currency>
  1719. <currency type="AMD">
  1720. <displayName>Erməni dramı</displayName>
  1721. <displayName count="other">Erməni dramı</displayName>
  1722. </currency>
  1723. <currency type="ANG">
  1724. <displayName>Hollandiya antila gilderi</displayName>
  1725. <displayName count="other">Hollandiya Antila gilderi</displayName>
  1726. </currency>
  1727. <currency type="AOA">
  1728. <displayName>Anqola kvanzası</displayName>
  1729. <displayName count="other">Anqola kvanzasi</displayName>
  1730. </currency>
  1731. <currency type="AOK">
  1732. <displayName>Anqola kvanzasi (1977-1990)</displayName>
  1733. <displayName count="other">Anqola kvanzasi (AOK)</displayName>
  1734. </currency>
  1735. <currency type="AON">
  1736. <displayName>Anqola yeni kvanzası (1990-2000)</displayName>
  1737. <displayName count="other">Anqola yeni kvanzasi (AON)</displayName>
  1738. </currency>
  1739. <currency type="AOR">
  1740. <displayName>Anqola kvanzası (1995-1999)</displayName>
  1741. <displayName count="other">Anqola kvanzasi (AOR)</displayName>
  1742. </currency>
  1743. <currency type="ARA">
  1744. <displayName>Argentina avstralı</displayName>
  1745. <displayName count="other">Argentina avstralı</displayName>
  1746. </currency>
  1747. <currency type="ARP">
  1748. <displayName>Argentina pesosu (1983-1985)</displayName>
  1749. <displayName count="other">Argentina pesosu (ARP)</displayName>
  1750. </currency>
  1751. <currency type="ARS">
  1752. <displayName>Argentina pesosu</displayName>
  1753. <displayName count="other">Argentina pesosu</displayName>
  1754. </currency>
  1755. <currency type="ATS">
  1756. <displayName>Avstriya şilingi</displayName>
  1757. <displayName count="other">Avstriya şilingi</displayName>
  1758. </currency>
  1759. <currency type="AUD">
  1760. <displayName>Avstraliya dolları</displayName>
  1761. <displayName count="other">Avstraliya dolları</displayName>
  1762. </currency>
  1763. <currency type="AWG">
  1764. <displayName>Aruba qilderi</displayName>
  1765. <displayName count="other">Aruba qilderi</displayName>
  1766. </currency>
  1767. <currency type="AZM">
  1768. <displayName>Manat</displayName>
  1769. <displayName count="other">Azərbaycan manatı (AZM)</displayName>
  1770. </currency>
  1771. <currency type="AZN">
  1772. <displayName>Azərbaycan manatı</displayName>
  1773. <displayName count="other">Azərbaycan manatı</displayName>
  1774. </currency>
  1775. <currency type="BAD">
  1776. <displayName>Bosniya-Herzeqovina dinarı</displayName>
  1777. <displayName count="other">Bosniya-Herzeqovina dinarı</displayName>
  1778. </currency>
  1779. <currency type="BAM">
  1780. <displayName>Bosniya-Herzeqovina markası</displayName>
  1781. <displayName count="other">Bosniya-Herzeqovina markası</displayName>
  1782. </currency>
  1783. <currency type="BBD">
  1784. <displayName>Barbados dolları</displayName>
  1785. <displayName count="other">Barbados dolları</displayName>
  1786. </currency>
  1787. <currency type="BDT">
  1788. <displayName>Banqladeş takası</displayName>
  1789. <displayName count="other">Banqladeş takası</displayName>
  1790. </currency>
  1791. <currency type="BEC">
  1792. <displayName>Belçika frankı (deyşirik)</displayName>
  1793. <displayName count="other">Belçika frankı (deyşirik)</displayName>
  1794. </currency>
  1795. <currency type="BEF">
  1796. <displayName>Belçika frankı</displayName>
  1797. <displayName count="other">Belçika frankı</displayName>
  1798. </currency>
  1799. <currency type="BEL">
  1800. <displayName>Belçika frankı (finans)</displayName>
  1801. <displayName count="other">Belçika frankı (finans)</displayName>
  1802. </currency>
  1803. <currency type="BGL">
  1804. <displayName>Bolqariya levası</displayName>
  1805. <displayName count="other">Bolqariya levası</displayName>
  1806. </currency>
  1807. <currency type="BGN">
  1808. <displayName>Bolqariya yeni levası</displayName>
  1809. <displayName count="other">Bolqariya yeni levası</displayName>
  1810. </currency>
  1811. <currency type="BHD">
  1812. <displayName>Bahreyn dinarı</displayName>
  1813. <displayName count="other">Bahreyn dinarı</displayName>
  1814. </currency>
  1815. <currency type="BIF">
  1816. <displayName>Burundi frankası</displayName>
  1817. <displayName count="other">Burundi frankası</displayName>
  1818. </currency>
  1819. <currency type="BMD">
  1820. <displayName>Bermuda dolları</displayName>
  1821. <displayName count="other">Bermuda dolları</displayName>
  1822. </currency>
  1823. <currency type="BND">
  1824. <displayName>Bruney dolları</displayName>
  1825. <displayName count="other">Bruney dolları</displayName>
  1826. </currency>
  1827. <currency type="BOB">
  1828. <displayName>Boliviano</displayName>
  1829. <displayName count="other">Boliviano</displayName>
  1830. </currency>
  1831. <currency type="BOP">
  1832. <displayName>Boliviya pesosu</displayName>
  1833. <displayName count="other">Boliviya pesosu</displayName>
  1834. </currency>
  1835. <currency type="BOV">
  1836. <displayName>Boliviya mvdolı</displayName>
  1837. <displayName count="other">Boliviya mvdolı</displayName>
  1838. </currency>
  1839. <currency type="BRB">
  1840. <displayName>Braziliya kruzeyro novası</displayName>
  1841. <displayName count="other">Braziliya kruzeyro novası</displayName>
  1842. </currency>
  1843. <currency type="BRC">
  1844. <displayName>Braziliya kruzadosu</displayName>
  1845. <displayName count="other">Braziliya kruzadosu</displayName>
  1846. </currency>
  1847. <currency type="BRE">
  1848. <displayName>Braziliya kruzeyrosu (1990-1993)</displayName>
  1849. <displayName count="other">Braziliya kruzeyrosu (BRE)</displayName>
  1850. </currency>
  1851. <currency type="BRL">
  1852. <displayName>Braziliya realı</displayName>
  1853. <displayName count="other">Braziliya realı</displayName>
  1854. </currency>
  1855. <currency type="BRN">
  1856. <displayName>Braziliya kruzado novası</displayName>
  1857. <displayName count="other">Braziliya kruzado novası</displayName>
  1858. </currency>
  1859. <currency type="BRR">
  1860. <displayName>Braziliya kruzeyrosu</displayName>
  1861. <displayName count="other">Braziliya kruzeyrosu</displayName>
  1862. </currency>
  1863. <currency type="BSD">
  1864. <displayName>Bahama dolları</displayName>
  1865. <displayName count="other">Bahama dolları</displayName>
  1866. </currency>
  1867. <currency type="BTN">
  1868. <displayName>Butan ngultrumu</displayName>
  1869. <displayName count="other">Butan ngultrumu</displayName>
  1870. </currency>
  1871. <currency type="BUK">
  1872. <displayName>Burmis kyatı</displayName>
  1873. <displayName count="other">Burmis kyatı</displayName>
  1874. </currency>
  1875. <currency type="BWP">
  1876. <displayName>Botsvana pulası</displayName>
  1877. <displayName count="other">Botsvana pulası</displayName>
  1878. </currency>
  1879. <currency type="BYB">
  1880. <displayName>Belarusiya yeni rublu</displayName>
  1881. <displayName count="other">Belarusiya yeni rublu</displayName>
  1882. </currency>
  1883. <currency type="BYR">
  1884. <displayName>Belarusiya rublu</displayName>
  1885. <displayName count="other">Belarusiya rublu</displayName>
  1886. </currency>
  1887. <currency type="BZD">
  1888. <displayName>Beliz dolları</displayName>
  1889. <displayName count="other">Beliz dolları</displayName>
  1890. </currency>
  1891. <currency type="CAD">
  1892. <displayName>Kanadiya dolları</displayName>
  1893. <displayName count="other">Kanada dolları</displayName>
  1894. </currency>
  1895. <currency type="CDF">
  1896. <displayName>Konqoliz frank konqolaysı</displayName>
  1897. <displayName count="other">Konqoliz frank konqolaysı</displayName>
  1898. </currency>
  1899. <currency type="CHE">
  1900. <displayName>WIR Yevrosu</displayName>
  1901. <displayName count="other">WIR Yevrosu</displayName>
  1902. </currency>
  1903. <currency type="CHF">
  1904. <displayName>İsveçriya frankası</displayName>
  1905. <displayName count="other">İsveçriya frankası</displayName>
  1906. </currency>
  1907. <currency type="CHW">
  1908. <displayName>WIR frankası</displayName>
  1909. <displayName count="other">WIR frankası</displayName>
  1910. </currency>
  1911. <currency type="CLP">
  1912. <displayName>Çili pesosu</displayName>
  1913. <displayName count="other">Çili pesosu</displayName>
  1914. </currency>
  1915. <currency type="CNY">
  1916. <displayName>Çin yuan renminbi</displayName>
  1917. <displayName count="other">Çin yuanı</displayName>
  1918. </currency>
  1919. <currency type="COP">
  1920. <displayName>Kolombiya pesosu</displayName>
  1921. <displayName count="other">Kolombiya pesosu</displayName>
  1922. </currency>
  1923. <currency type="CRC">
  1924. <displayName>Kosta rika kolonu</displayName>
  1925. <displayName count="other">Kosta Rika kolonu</displayName>
  1926. </currency>
  1927. <currency type="CSD">
  1928. <displayName>Qədimi Serb dinarı</displayName>
  1929. <displayName count="other">Qədimi serb dinarı</displayName>
  1930. </currency>
  1931. <currency type="CSK">
  1932. <displayName>Çexoslavakiya korunası</displayName>
  1933. <displayName count="other">Çexoslavakiya korunası</displayName>
  1934. </currency>
  1935. <currency type="CUP">
  1936. <displayName>Kuba pesosu</displayName>
  1937. <displayName count="other">Kuba pesosu</displayName>
  1938. </currency>
  1939. <currency type="CVE">
  1940. <displayName>Kape Verde eskudosu</displayName>
  1941. <displayName count="other">Kape Verde eskudosu</displayName>
  1942. </currency>
  1943. <currency type="CYP">
  1944. <displayName>Kipr paundu</displayName>
  1945. <displayName count="other">Kipr paundu</displayName>
  1946. </currency>
  1947. <currency type="CZK">
  1948. <displayName>Çex respublikası korunası</displayName>
  1949. <displayName count="other">Cex respublika korunası</displayName>
  1950. </currency>
  1951. <currency type="DDM">
  1952. <displayName>şərq almaniya ostmarkı</displayName>
  1953. <displayName count="other">Şərq Almaniya ostmarkı</displayName>
  1954. </currency>
  1955. <currency type="DEM">
  1956. <displayName>alman markası</displayName>
  1957. <displayName count="other">Alman markası</displayName>
  1958. </currency>
  1959. <currency type="DJF">
  1960. <displayName>jibouti frankası</displayName>
  1961. <displayName count="other">Jibouti frankası</displayName>
  1962. </currency>
  1963. <currency type="DKK">
  1964. <displayName>Danemarka kronası</displayName>
  1965. <displayName count="other">Danemarka kronası</displayName>
  1966. </currency>
  1967. <currency type="DOP">
  1968. <displayName>dominika pesosu</displayName>
  1969. <displayName count="other">Dominika pesosu</displayName>
  1970. </currency>
  1971. <currency type="DZD">
  1972. <displayName>Alcəzir dinarı</displayName>
  1973. <displayName count="other">Alcəzir dinarı</displayName>
  1974. </currency>
  1975. <currency type="ECS">
  1976. <displayName>ekvador sukresi</displayName>
  1977. <displayName count="other">Ekvador sukresi</displayName>
  1978. </currency>
  1979. <currency type="EEK">
  1980. <displayName>Estoniya krunu</displayName>
  1981. <displayName count="other">Estoniya krunu</displayName>
  1982. </currency>
  1983. <currency type="EGP">
  1984. <displayName>misir paundu</displayName>
  1985. <displayName count="other">Misir paundu</displayName>
  1986. </currency>
  1987. <currency type="ERN">
  1988. <displayName>Eirtreya nakfası</displayName>
  1989. <displayName count="other">Eritreya nakfası</displayName>
  1990. </currency>
  1991. <currency type="ESA">
  1992. <displayName>İspan pesetası (A)</displayName>
  1993. <displayName count="other">İspan pesetası (A account)</displayName>
  1994. </currency>
  1995. <currency type="ESB">
  1996. <displayName>İspan pesetası (dəyşirik)</displayName>
  1997. <displayName count="other">İspan pesetası (dəyşirik)</displayName>
  1998. </currency>
  1999. <currency type="ESP">
  2000. <displayName>İspan pesetası</displayName>
  2001. <displayName count="other">İspan pesetası</displayName>
  2002. </currency>
  2003. <currency type="ETB">
  2004. <displayName>Efiopiya birası</displayName>
  2005. <displayName count="other">Efiopiya birası</displayName>
  2006. </currency>
  2007. <currency type="EUR">
  2008. <displayName>Yevro</displayName>
  2009. <displayName count="other">yevro</displayName>
  2010. </currency>
  2011. <currency type="FIM">
  2012. <displayName>Fin markası</displayName>
  2013. <displayName count="other">Fin markası</displayName>
  2014. </currency>
  2015. <currency type="FJD">
  2016. <displayName>Fici dolları</displayName>
  2017. <displayName count="other">Fici dolları</displayName>
  2018. </currency>
  2019. <currency type="FKP">
  2020. <displayName>Folkland Adası paundu</displayName>
  2021. <displayName count="other">Folkland adası paundu</displayName>
  2022. </currency>
  2023. <currency type="FRF">
  2024. <displayName>Fransız markası</displayName>
  2025. <displayName count="other">Fransız markası</displayName>
  2026. </currency>
  2027. <currency type="GBP">
  2028. <displayName>Britaniya paund sterlingi</displayName>
  2029. <displayName count="other">Britaniya paund sterlingi</displayName>
  2030. </currency>
  2031. <currency type="GEK">
  2032. <displayName>Gürcüstan kupon lariti</displayName>
  2033. <displayName count="other">Gürcüstan kupon lariti</displayName>
  2034. </currency>
  2035. <currency type="GEL">
  2036. <displayName>Gürcüstan larisi</displayName>
  2037. <displayName count="other">Gürcüstan larisi</displayName>
  2038. </currency>
  2039. <currency type="GHC">
  2040. <displayName>Qana sedisi (1979-2007)</displayName>
  2041. <displayName count="other">Qana sedisi (GHC)</displayName>
  2042. </currency>
  2043. <currency type="GHS">
  2044. <displayName>Qana sedisi</displayName>
  2045. <displayName count="other">Qana sedisi</displayName>
  2046. </currency>
  2047. <currency type="GIP">
  2048. <displayName>Gibraltar paundu</displayName>
  2049. <displayName count="other">Gibraltar paundu</displayName>
  2050. </currency>
  2051. <currency type="GMD">
  2052. <displayName>Qambiya dalasi</displayName>
  2053. <displayName count="other">Qambiya dalasi</displayName>
  2054. </currency>
  2055. <currency type="GNF">
  2056. <displayName>Qvineya frankası</displayName>
  2057. <displayName count="other">qvineya frankası</displayName>
  2058. </currency>
  2059. <currency type="GNS">
  2060. <displayName>Qvineya sulisi</displayName>
  2061. <displayName count="other">Gineya sulisi</displayName>
  2062. </currency>
  2063. <currency type="GQE">
  2064. <displayName>Ekvatoriya Gvineya ekvele quneanası</displayName>
  2065. <displayName count="other">Ekvatoriya Gvineya ekvele quneanası</displayName>
  2066. </currency>
  2067. <currency type="GRD">
  2068. <displayName>Yunan draçması</displayName>
  2069. <displayName count="other">Yunan draxması</displayName>
  2070. </currency>
  2071. <currency type="GTQ">
  2072. <displayName>Qvatemala küetzalı</displayName>
  2073. <displayName count="other">Qvatemala küetzalı</displayName>
  2074. </currency>
  2075. <currency type="GWE">
  2076. <displayName>Portugal Qvineya eskudosu</displayName>
  2077. <displayName count="other">Portugal Qvineya eskudosu</displayName>
  2078. </currency>
  2079. <currency type="GWP">
  2080. <displayName>Qvineya-Bisau pesosu</displayName>
  2081. <displayName count="other">Qvineya-Bisau pesosu</displayName>
  2082. </currency>
  2083. <currency type="GYD">
  2084. <displayName>Quyana dolları</displayName>
  2085. <displayName count="other">Quyana dolları</displayName>
  2086. </currency>
  2087. <currency type="HKD">
  2088. <displayName>Honk Konq dolları</displayName>
  2089. <displayName count="other">Honk Konq dolları</displayName>
  2090. </currency>
  2091. <currency type="HNL">
  2092. <displayName>Honduras lempirası</displayName>
  2093. <displayName count="other">Honduras lempirası</displayName>
  2094. </currency>
  2095. <currency type="HRD">
  2096. <displayName>Xorvatiya dinarı</displayName>
  2097. <displayName count="other">Xorvatiya dinarı</displayName>
  2098. </currency>
  2099. <currency type="HRK">
  2100. <displayName>Xorvatiya kunu</displayName>
  2101. <displayName count="other">Xorvatiya kunu</displayName>
  2102. </currency>
  2103. <currency type="HTG">
  2104. <displayName>Haiti qourdu</displayName>
  2105. <displayName count="other">Haiti qourdu</displayName>
  2106. </currency>
  2107. <currency type="HUF">
  2108. <displayName>Macarıstan forinti</displayName>
  2109. <displayName count="other">Macarıstan forinti</displayName>
  2110. </currency>
  2111. <currency type="IDR">
  2112. <displayName>İndoneziya rupisi</displayName>
  2113. <displayName count="other">İndoneziya rupisi</displayName>
  2114. </currency>
  2115. <currency type="IEP">
  2116. <displayName>İrlandiya paundu</displayName>
  2117. <displayName count="other">İrlandiya paundu</displayName>
  2118. </currency>
  2119. <currency type="ILP">
  2120. <displayName>İzrail paundu</displayName>
  2121. <displayName count="other">İzrail paundu</displayName>
  2122. </currency>
  2123. <currency type="ILS">
  2124. <displayName>İzrail yeni şekeli</displayName>
  2125. <displayName count="other">İzrail ail yeni şekeli</displayName>
  2126. </currency>
  2127. <currency type="INR">
  2128. <displayName>Hindistan rupisi</displayName>
  2129. <displayName count="other">Hindistan rupisi</displayName>
  2130. </currency>
  2131. <currency type="IQD">
  2132. <displayName>İraq dinarı</displayName>
  2133. <displayName count="other">İraq dinarı</displayName>
  2134. </currency>
  2135. <currency type="IRR">
  2136. <displayName>İran rialı</displayName>
  2137. <displayName count="other">İran rialı</displayName>
  2138. </currency>
  2139. <currency type="ISK">
  2140. <displayName>Aysland kronası</displayName>
  2141. <displayName count="other">Aysland kronası</displayName>
  2142. </currency>
  2143. <currency type="ITL">
  2144. <displayName>İtaliya lirası</displayName>
  2145. <displayName count="other">İtaliya lirası</displayName>
  2146. </currency>
  2147. <currency type="JMD">
  2148. <displayName>Yamayka dolları</displayName>
  2149. <displayName count="other">Yamayka dolları</displayName>
  2150. </currency>
  2151. <currency type="JOD">
  2152. <displayName>İordaniya dinarı</displayName>
  2153. <displayName count="other">İordaniya dinarı</displayName>
  2154. </currency>
  2155. <currency type="JPY">
  2156. <displayName>Yapon yeni</displayName>
  2157. <displayName count="other">Yapon yeni</displayName>
  2158. </currency>
  2159. <currency type="KES">
  2160. <displayName>Kenya şillingi</displayName>
  2161. <displayName count="other">Kenya şillingi</displayName>
  2162. </currency>
  2163. <currency type="KGS">
  2164. <displayName>Kırğızstan somu</displayName>
  2165. <displayName count="other">Kırğızstan somu</displayName>
  2166. </currency>
  2167. <currency type="KHR">
  2168. <displayName>Kambodiya riyeli</displayName>
  2169. <displayName count="other">Kambodiya riyeli</displayName>
  2170. </currency>
  2171. <currency type="KMF">
  2172. <displayName>Komoro frankı</displayName>
  2173. <displayName count="other">Komoro frankı</displayName>
  2174. </currency>
  2175. <currency type="KPW">
  2176. <displayName>Şimal koreya vonu</displayName>
  2177. <displayName count="other">Şimal Koreya vonu</displayName>
  2178. </currency>
  2179. <currency type="KRW">
  2180. <displayName>Cənub koreya vonu</displayName>
  2181. <displayName count="other">Cənub Koreya vonu</displayName>
  2182. </currency>
  2183. <currency type="KWD">
  2184. <displayName>Kuveyt dinarı</displayName>
  2185. <displayName count="other">Kuveyt dinarı</displayName>
  2186. </currency>
  2187. <currency type="KYD">
  2188. <displayName>Keyman Adaları dolları</displayName>
  2189. <displayName count="other">Keyman Adaları dolları</displayName>
  2190. </currency>
  2191. <currency type="KZT">
  2192. <displayName>Kazaxstan tenqesi</displayName>
  2193. <displayName count="other">Kazaxstan tenqesi</displayName>
  2194. </currency>
  2195. <currency type="LAK">
  2196. <displayName>Laotiya kipi</displayName>
  2197. <displayName count="other">Laotiya kipi</displayName>
  2198. </currency>
  2199. <currency type="LBP">
  2200. <displayName>Lebanon paundu</displayName>
  2201. <displayName count="other">Lebanon paundu</displayName>
  2202. </currency>
  2203. <currency type="LKR">
  2204. <displayName>Şri Lanka rupisi</displayName>
  2205. <displayName count="other">Şri Lanka rupisi</displayName>
  2206. </currency>
  2207. <currency type="LRD">
  2208. <displayName>Liberiya dolları</displayName>
  2209. <displayName count="other">Liberiya dolları</displayName>
  2210. </currency>
  2211. <currency type="LSL">
  2212. <displayName>Lesoto lotisi</displayName>
  2213. <displayName count="other">Lesoto lotisi</displayName>
  2214. </currency>
  2215. <currency type="LTL">
  2216. <displayName>Litva litası</displayName>
  2217. <displayName count="other">Litva litası</displayName>
  2218. </currency>
  2219. <currency type="LTT">
  2220. <displayName>Litva talonası</displayName>
  2221. <displayName count="other">Litva talonası</displayName>
  2222. </currency>
  2223. <currency type="LUC">
  2224. <displayName>Luksemburq frankası (dəyişik)</displayName>
  2225. <displayName count="other">Luksemburq dəyişik frankası</displayName>
  2226. </currency>
  2227. <currency type="LUF">
  2228. <displayName>Luksemburq frankası</displayName>
  2229. <displayName count="other">Luksemburq frankası</displayName>
  2230. </currency>
  2231. <currency type="LUL">
  2232. <displayName>Luksemburq frankası (finans)</displayName>
  2233. <displayName count="other">Luksemburq finans frankası</displayName>
  2234. </currency>
  2235. <currency type="LVL">
  2236. <displayName>Latviya latsı</displayName>
  2237. <displayName count="other">Latviya latsı</displayName>
  2238. </currency>
  2239. <currency type="LVR">
  2240. <displayName>Latviya rublu</displayName>
  2241. <displayName count="other">Latviya rublu</displayName>
  2242. </currency>
  2243. <currency type="LYD">
  2244. <displayName>Liviya dinarı</displayName>
  2245. <displayName count="other">Liviya dinarı</displayName>
  2246. </currency>
  2247. <currency type="MAD">
  2248. <displayName>Morokko dirhamı</displayName>
  2249. <displayName count="other">Morokko dirhamı</displayName>
  2250. </currency>
  2251. <currency type="MAF">
  2252. <displayName>Morokko frankası</displayName>
  2253. <displayName count="other">Morokko frankası</displayName>
  2254. </currency>
  2255. <currency type="MDL">
  2256. <displayName>Moldova leyusu</displayName>
  2257. <displayName count="other">Moldova leyusu</displayName>
  2258. </currency>
  2259. <currency type="MGA">
  2260. <displayName>Madaqaskar ariarisi</displayName>
  2261. <displayName count="other">Madaqaskar ariarisi</displayName>
  2262. </currency>
  2263. <currency type="MGF">
  2264. <displayName>Madaqaskar frankası</displayName>
  2265. <displayName count="other">Madaqaskar frankası</displayName>
  2266. </currency>
  2267. <currency type="MKD">
  2268. <displayName>Masedoniya denarı</displayName>
  2269. <displayName count="other">Masedoniya denarı</displayName>
  2270. </currency>
  2271. <currency type="MLF">
  2272. <displayName>Mali frankı</displayName>
  2273. <displayName count="other">Mali frankı</displayName>
  2274. </currency>
  2275. <currency type="MMK">
  2276. <displayName>Myanmar kiyatı</displayName>
  2277. <displayName count="other">Myanmar kiyatı</displayName>
  2278. </currency>
  2279. <currency type="MNT">
  2280. <displayName>Monqoliya tuqriki</displayName>
  2281. <displayName count="other">Monqoliya tuqriki</displayName>
  2282. </currency>
  2283. <currency type="MOP">
  2284. <displayName>Makao patakası</displayName>
  2285. <displayName count="other">Makao patakası</displayName>
  2286. </currency>
  2287. <currency type="MRO">
  2288. <displayName>Mavritaniya oyuquyası</displayName>
  2289. <displayName count="other">Mavritaniya oyuquyası</displayName>
  2290. </currency>
  2291. <currency type="MTP">
  2292. <displayName>Maltiz paundu</displayName>
  2293. <displayName count="other">Maltiz paundu</displayName>
  2294. </currency>
  2295. <currency type="MUR">
  2296. <displayName>Mavritis rupiyi</displayName>
  2297. <displayName count="other">Mavritis rupiyi</displayName>
  2298. </currency>
  2299. <currency type="MVR">
  2300. <displayName>Maldiv Adaları rufiyi</displayName>
  2301. <displayName count="other">Maldiv adaları rufiyi</displayName>
  2302. </currency>
  2303. <currency type="MWK">
  2304. <displayName>Malavi kvaçası</displayName>
  2305. <displayName count="other">Malavi kvaçası</displayName>
  2306. </currency>
  2307. <currency type="MXN">
  2308. <displayName>Meksika pesosu</displayName>
  2309. <displayName count="other">Meksika pesosu</displayName>
  2310. </currency>
  2311. <currency type="MXP">
  2312. <displayName>Meksika gümüş pesosu</displayName>
  2313. <displayName count="other">Meksika gümüş pesosu</displayName>
  2314. </currency>
  2315. <currency type="MYR">
  2316. <displayName>Malaysiya rinqiti</displayName>
  2317. <displayName count="other">Malaysiya rinqiti</displayName>
  2318. </currency>
  2319. <currency type="MZE">
  2320. <displayName>Mozambik eskudosu</displayName>
  2321. <displayName count="other">Mozambik eskudosu</displayName>
  2322. </currency>
  2323. <currency type="MZM">
  2324. <displayName>Qədim Mozambik metikalı</displayName>
  2325. <displayName count="other">Qədim mozambik metikalı</displayName>
  2326. </currency>
  2327. <currency type="MZN">
  2328. <displayName>Mozambik metikalı</displayName>
  2329. <displayName count="other">Mozambik metikalı</displayName>
  2330. </currency>
  2331. <currency type="NAD">
  2332. <displayName>Namibiya dolları</displayName>
  2333. <displayName count="other">Namibiya dolları</displayName>
  2334. </currency>
  2335. <currency type="NGN">
  2336. <displayName>Nigeriya nairi</displayName>
  2337. <displayName count="other">Nigeriya nairi</displayName>
  2338. </currency>
  2339. <currency type="NIC">
  2340. <displayName>Nikaraqua kordobu</displayName>
  2341. <displayName count="other">Nikaraqua kordobu</displayName>
  2342. </currency>
  2343. <currency type="NLG">
  2344. <displayName>Hollandiya gilderi</displayName>
  2345. <displayName count="other">Hollandiya gilderi</displayName>
  2346. </currency>
  2347. <currency type="NOK">
  2348. <displayName>Norveç kronu</displayName>
  2349. <displayName count="other">Norveç kronu</displayName>
  2350. </currency>
  2351. <currency type="NPR">
  2352. <displayName>Nepal rupiyi</displayName>
  2353. <displayName count="other">Nepal rupiyi</displayName>
  2354. </currency>
  2355. <currency type="NZD">
  2356. <displayName>Yeni Zelandiya dolları</displayName>
  2357. <displayName count="other">Yeni Zelandiya dolları</displayName>
  2358. </currency>
  2359. <currency type="OMR">
  2360. <displayName>Mman rialı</displayName>
  2361. <displayName count="other">Oman rialı</displayName>
  2362. </currency>
  2363. <currency type="PAB">
  2364. <displayName>Panamaniya balboa</displayName>
  2365. <displayName count="other">Panamaniya balboa</displayName>
  2366. </currency>
  2367. <currency type="PEI">
  2368. <displayName>Peru inti</displayName>
  2369. <displayName count="other">Peru inti</displayName>
  2370. </currency>
  2371. <currency type="PEN">
  2372. <displayName>Peru sol nuyevosu</displayName>
  2373. <displayName count="other">Peru sol nuyevosu</displayName>
  2374. </currency>
  2375. <currency type="PES">
  2376. <displayName>Peru solu</displayName>
  2377. <displayName count="other">Peru solu</displayName>
  2378. </currency>
  2379. <currency type="PGK">
  2380. <displayName>Papua Yeni Qvineya kini</displayName>
  2381. <displayName count="other">Papua Yeni Qvineya kini</displayName>
  2382. </currency>
  2383. <currency type="PHP">
  2384. <displayName>Filipin pesosu</displayName>
  2385. <displayName count="other">Filipin pesosu</displayName>
  2386. </currency>
  2387. <currency type="PKR">
  2388. <displayName>Pakistan rupiyi</displayName>
  2389. <displayName count="other">Pakistan rupiyi</displayName>
  2390. </currency>
  2391. <currency type="PLN">
  2392. <displayName>Polsha zlotisi</displayName>
  2393. <displayName count="other">Polsha zlotisi</displayName>
  2394. </currency>
  2395. <currency type="PLZ">
  2396. <displayName>Polsha zlotisi (1950-1995)</displayName>
  2397. <displayName count="other">Polsha zlotisi (PLZ)</displayName>
  2398. </currency>
  2399. <currency type="PTE">
  2400. <displayName>Portuqal eskudosu</displayName>
  2401. <displayName count="other">Portuqal eskudosu</displayName>
  2402. </currency>
  2403. <currency type="PYG">
  2404. <displayName>Paraqvay quarani</displayName>
  2405. <displayName count="other">Paraqvay quarani</displayName>
  2406. </currency>
  2407. <currency type="QAR">
  2408. <displayName>Qatar rialı</displayName>
  2409. <displayName count="other">Qatar rialı</displayName>
  2410. </currency>
  2411. <currency type="RHD">
  2412. <displayName>Rodezian dolları</displayName>
  2413. <displayName count="other">Rodezian dolları</displayName>
  2414. </currency>
  2415. <currency type="ROL">
  2416. <displayName>Qədim Roman leyu</displayName>
  2417. <displayName count="other">Roman qədimi leyu</displayName>
  2418. </currency>
  2419. <currency type="RON">
  2420. <displayName>Roman leyu</displayName>
  2421. <displayName count="other">Roman leyu</displayName>
  2422. </currency>
  2423. <currency type="RSD">
  2424. <displayName>Serbiya dinarı</displayName>
  2425. <displayName count="other">Serbiya dinarı</displayName>
  2426. </currency>
  2427. <currency type="RUB">
  2428. <displayName>Rusiya rublu</displayName>
  2429. <displayName count="other">Rusiya rublu</displayName>
  2430. </currency>
  2431. <currency type="RUR">
  2432. <displayName>Rusiya rublu (1991-1998)</displayName>
  2433. <displayName count="other">Rusiya rublu (RUR)</displayName>
  2434. </currency>
  2435. <currency type="RWF">
  2436. <displayName>Rvanda frankı</displayName>
  2437. <displayName count="other">Rvanda frankı</displayName>
  2438. </currency>
  2439. <currency type="SAR">
  2440. <displayName>Saudi riyalı</displayName>
  2441. <displayName count="other">Saudi riyalı</displayName>
  2442. </currency>
  2443. <currency type="SBD">
  2444. <displayName>Solomon Adaları dolları</displayName>
  2445. <displayName count="other">Solomon Adaları dolları</displayName>
  2446. </currency>
  2447. <currency type="SCR">
  2448. <displayName>Seyçel rupiyi</displayName>
  2449. <displayName count="other">Seyçel rupiyi</displayName>
  2450. </currency>
  2451. <currency type="SDG">
  2452. <displayName>Sudan paundu</displayName>
  2453. <displayName count="other">Sudan paundu</displayName>
  2454. </currency>
  2455. <currency type="SEK">
  2456. <displayName>İsveç kronu</displayName>
  2457. <displayName count="other">İsveç kronu</displayName>
  2458. </currency>
  2459. <currency type="SGD">
  2460. <displayName>Sinqapur dolları</displayName>
  2461. <displayName count="other">Sinqapur dolları</displayName>
  2462. </currency>
  2463. <currency type="SIT">
  2464. <displayName>Sloveniya toları</displayName>
  2465. <displayName count="other">Sloveniya toları</displayName>
  2466. </currency>
  2467. <currency type="SKK">
  2468. <displayName>Slovak korunası</displayName>
  2469. <displayName count="other">Slovak korunası</displayName>
  2470. </currency>
  2471. <currency type="SOS">
  2472. <displayName>Somaliya şillingi</displayName>
  2473. <displayName count="other">Somaliya şillingi</displayName>
  2474. </currency>
  2475. <currency type="SRD">
  2476. <displayName>Surinam dolları</displayName>
  2477. <displayName count="other">Surinam dolları</displayName>
  2478. </currency>
  2479. <currency type="SUR">
  2480. <displayName>Sovet rublu</displayName>
  2481. <displayName count="other">Sovet rublu</displayName>
  2482. </currency>
  2483. <currency type="SVC">
  2484. <displayName>el salvador kolonu</displayName>
  2485. <displayName count="other">El Salvador kolonu</displayName>
  2486. </currency>
  2487. <currency type="SYP">
  2488. <displayName>Siriya paundu</displayName>
  2489. <displayName count="other">Siriya paundu</displayName>
  2490. </currency>
  2491. <currency type="SZL">
  2492. <displayName>Svazilənd lilangeni</displayName>
  2493. <displayName count="other">Svazilənd lilangeni</displayName>
  2494. </currency>
  2495. <currency type="THB">
  2496. <displayName>tay bahtı</displayName>
  2497. <displayName count="other">Tay bahtı</displayName>
  2498. </currency>
  2499. <currency type="TJR">
  2500. <displayName>Tacikistan rublu</displayName>
  2501. <displayName count="other">Tacikistan rublu</displayName>
  2502. </currency>
  2503. <currency type="TJS">
  2504. <displayName>Tacikistan somoni</displayName>
  2505. <displayName count="other">Tacikistan somoni</displayName>
  2506. </currency>
  2507. <currency type="TMM">
  2508. <displayName>Türkmənistan manatı</displayName>
  2509. <displayName count="other">Türkmənistan manatı</displayName>
  2510. </currency>
  2511. <currency type="TND">
  2512. <displayName>Tunis dinarı</displayName>
  2513. <displayName count="other">Tunis dinarı</displayName>
  2514. </currency>
  2515. <currency type="TOP">
  2516. <displayName>Tonqa panqası</displayName>
  2517. <displayName count="other">Tonqa panqası</displayName>
  2518. </currency>
  2519. <currency type="TPE">
  2520. <displayName>Timor eskudu</displayName>
  2521. <displayName count="other">Timor eskudu</displayName>
  2522. </currency>
  2523. <currency type="TRL">
  2524. <displayName>Türk köhnə lirası</displayName>
  2525. <displayName count="other">Türk köhnə lirası</displayName>
  2526. </currency>
  2527. <currency type="TRY">
  2528. <displayName>Türk lirası</displayName>
  2529. <displayName count="other">Türk lira</displayName>
  2530. </currency>
  2531. <currency type="TWD">
  2532. <displayName>Tayvan yeni dolları</displayName>
  2533. <displayName count="other">Tayvan yeni dolları</displayName>
  2534. </currency>
  2535. <currency type="TZS">
  2536. <displayName>Tanzaniya şilingi</displayName>
  2537. <displayName count="other">Tanzaniya şilingi</displayName>
  2538. </currency>
  2539. <currency type="UAH">
  2540. <displayName>Ukraina hrivnyası</displayName>
  2541. <displayName count="other">Ukraina hrivnyası</displayName>
  2542. </currency>
  2543. <currency type="UAK">
  2544. <displayName>Ukraina karbovenesası</displayName>
  2545. <displayName count="other">Ukraina karbovenesası</displayName>
  2546. </currency>
  2547. <currency type="UGS">
  2548. <displayName>Uqanda şelingi (1966-1987)</displayName>
  2549. <displayName count="other">Uqanda şelingi (UGS)</displayName>
  2550. </currency>
  2551. <currency type="UGX">
  2552. <displayName>Uqanda şelingi</displayName>
  2553. <displayName count="other">Uqanda şelingi</displayName>
  2554. </currency>
  2555. <currency type="USD">
  2556. <displayName>ABŞ dolları</displayName>
  2557. <displayName count="other">ABŞ dolları</displayName>
  2558. </currency>
  2559. <currency type="USN">
  2560. <displayName>ABŞ dolları (yeni gün)</displayName>
  2561. <displayName count="other">ABŞ dolları (yeni gün)</displayName>
  2562. </currency>
  2563. <currency type="USS">
  2564. <displayName>ABŞ dolları (həmin gün)</displayName>
  2565. <displayName count="other">ABŞ dolları (həmin gün)</displayName>
  2566. </currency>
  2567. <currency type="UYI">
  2568. <displayName>Uruqvay pesosu Unidades Indexadas</displayName>
  2569. <displayName count="other">Uruqvay pesosu unidades indexadas</displayName>
  2570. </currency>
  2571. <currency type="UYP">
  2572. <displayName>Uruqvay pesosu (1975-1993)</displayName>
  2573. <displayName count="other">Uruqvay pesosu (UYP)</displayName>
  2574. </currency>
  2575. <currency type="UYU">
  2576. <displayName>Uruqvay pesosu (Uruguayo)</displayName>
  2577. <displayName count="other">Uruqvay pesosu</displayName>
  2578. </currency>
  2579. <currency type="UZS">
  2580. <displayName>özbəkistan sumu</displayName>
  2581. <displayName count="other">Özbəkistan sumu</displayName>
  2582. </currency>
  2583. <currency type="VEB">
  2584. <displayName>venesuela bolivarı</displayName>
  2585. <displayName count="other">Venesuela bolivarı</displayName>
  2586. </currency>
  2587. <currency type="VEF">
  2588. <displayName>venesuela bolivar fuerti</displayName>
  2589. <displayName count="other">Venesuela Bolivar fuerti</displayName>
  2590. </currency>
  2591. <currency type="VND">
  2592. <displayName>vyetnam donqu</displayName>
  2593. <displayName count="other">Vyetnam donqu</displayName>
  2594. </currency>
  2595. <currency type="WST">
  2596. <displayName>qərb samoa talası</displayName>
  2597. <displayName count="other">Qərb Samoa talası</displayName>
  2598. </currency>
  2599. <currency type="XAG">
  2600. <displayName>gümüş</displayName>
  2601. <displayName count="other">gümüş</displayName>
  2602. </currency>
  2603. <currency type="XAU">
  2604. <displayName>qızıl</displayName>
  2605. <displayName count="other">qızıl</displayName>
  2606. </currency>
  2607. <currency type="XCD">
  2608. <displayName>şərq karib dolları</displayName>
  2609. <displayName count="other">Şərq karib dolları</displayName>
  2610. </currency>
  2611. <currency type="XFO">
  2612. <displayName>Fransız gızıl frankı</displayName>
  2613. <displayName count="other">Fransız gızıl frankı</displayName>
  2614. </currency>
  2615. <currency type="XFU">
  2616. <displayName>Fransız UİC frankı</displayName>
  2617. <displayName count="other">Fransız UİC frankı</displayName>
  2618. </currency>
  2619. <currency type="XOF">
  2620. <displayName>CFA franka BCEAO</displayName>
  2621. <displayName count="other">CFA franka BCEAO</displayName>
  2622. </currency>
  2623. <currency type="XPD">
  2624. <displayName>Palladium</displayName>
  2625. <displayName count="other">Palladium</displayName>
  2626. </currency>
  2627. <currency type="XPF">
  2628. <displayName>CFP frankı</displayName>
  2629. <displayName count="other">CFP frankı</displayName>
  2630. </currency>
  2631. <currency type="XPT">
  2632. <displayName>platinum</displayName>
  2633. <displayName count="other">platinum</displayName>
  2634. </currency>
  2635. <currency type="XXX">
  2636. <displayName>bilinməyən vəya gəcərsiz</displayName>
  2637. <displayName count="other">bilinməyən vəya gəcərsiz</displayName>
  2638. </currency>
  2639. <currency type="YDD">
  2640. <displayName>yemen dinarı</displayName>
  2641. <displayName count="other">Yemen dinarı</displayName>
  2642. </currency>
  2643. <currency type="YER">
  2644. <displayName>yemen rialı</displayName>
  2645. <displayName count="other">Yemen rialı</displayName>
  2646. </currency>
  2647. <currency type="YUD">
  2648. <displayName>Yuqoslaviya dinarı (hard)</displayName>
  2649. <displayName count="other">Yuqoslaviya dinarı (hard)</displayName>
  2650. </currency>
  2651. <currency type="YUM">
  2652. <displayName>Yuqoslaviya yeni dinarı (hard)</displayName>
  2653. <displayName count="other">Yuqoslaviya yeni dinarı (hard)</displayName>
  2654. </currency>
  2655. <currency type="YUN">
  2656. <displayName>Yuqoslaviya dinarı (dəyişik)</displayName>
  2657. <displayName count="other">Yuqoslaviya dinarı (dəyişik)</displayName>
  2658. </currency>
  2659. <currency type="ZAL">
  2660. <displayName>Cənub afrika randı (finans)</displayName>
  2661. <displayName count="other">Cənub Afrika randı (finans)</displayName>
  2662. </currency>
  2663. <currency type="ZAR">
  2664. <displayName>Cənub afrika randı</displayName>
  2665. <displayName count="other">Cənub Afrika randı</displayName>
  2666. </currency>
  2667. <currency type="ZMK">
  2668. <displayName>Zambiya kvaçı</displayName>
  2669. <displayName count="other">Zambiya kvaçı</displayName>
  2670. </currency>
  2671. <currency type="ZRN">
  2672. <displayName>Zair yeni zairi</displayName>
  2673. <displayName count="other">Zair yeni zairi</displayName>
  2674. </currency>
  2675. <currency type="ZRZ">
  2676. <displayName>Zair zairi</displayName>
  2677. <displayName count="other">Zair zairi</displayName>
  2678. </currency>
  2679. <currency type="ZWD">
  2680. <displayName>Zimbabve dolları</displayName>
  2681. <displayName count="other">Zimbabve dolları</displayName>
  2682. </currency>
  2683. </currencies>
  2684. </numbers>
  2685. <units>
  2686. <unit type="day">
  2687. <unitPattern count="other">{0} gün</unitPattern>
  2688. </unit>
  2689. <unit type="hour">
  2690. <unitPattern count="other">{0} saat</unitPattern>
  2691. </unit>
  2692. <unit type="minute">
  2693. <unitPattern count="other">{0} dəqiqə</unitPattern>
  2694. </unit>
  2695. <unit type="month">
  2696. <unitPattern count="other">{0} ay</unitPattern>
  2697. </unit>
  2698. <unit type="second">
  2699. <unitPattern count="other">{0} saniyə</unitPattern>
  2700. </unit>
  2701. <unit type="week">
  2702. <unitPattern count="other">{0} həftə</unitPattern>
  2703. </unit>
  2704. <unit type="year">
  2705. <unitPattern count="other">{0} il</unitPattern>
  2706. </unit>
  2707. </units>
  2708. <posix>
  2709. <messages>
  2710. <yesstr>hə:h</yesstr>
  2711. <nostr>yox:y</nostr>
  2712. </messages>
  2713. </posix>
  2714. </ldml>