| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971 |
- <?xml version="1.0" encoding="UTF-8" ?>
- <!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
- <!-- Copyright © 1991-2013 Unicode, Inc.
- CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
- For terms of use, see http://www.unicode.org/copyright.html
- -->
- <ldml>
- <identity>
- <version number="$Revision: 9287 $"/>
- <generation date="$Date: 2013-08-28 21:32:04 -0500 (Wed, 28 Aug 2013) $"/>
- <language type="ky"/>
- </identity>
- <localeDisplayNames>
- <localeDisplayPattern>
- <localePattern>{0} ({1})</localePattern>
- <localeSeparator>{0}, {1}</localeSeparator>
- <localeKeyTypePattern>{0}: {1}</localeKeyTypePattern>
- </localeDisplayPattern>
- <languages>
- <language type="ab">абхазча</language>
- <language type="af">африкаанча</language>
- <language type="am">амхарча</language>
- <language type="ar">Арабча</language>
- <language type="ar_001">азыркы араб адабий тилинде</language>
- <language type="as">ассамча</language>
- <language type="az">азербайжанча</language>
- <language type="be">беларусча</language>
- <language type="bg">болгарияча</language>
- <language type="bh">бихариче</language>
- <language type="bn">бангладешче</language>
- <language type="bo">тибетче</language>
- <language type="br">бретон</language>
- <language type="bs">боснияча</language>
- <language type="ca">каталанча</language>
- <language type="cs">чех тили</language>
- <language type="cy">уелшче</language>
- <language type="da">датча</language>
- <language type="de">немисче</language>
- <language type="de_AT">австриялык германча</language>
- <language type="de_CH">швейцариялык таза германча</language>
- <language type="el">грекче</language>
- <language type="en">англисче</language>
- <language type="en_AU">австралиялык англисче</language>
- <language type="en_CA">канадалык англисче</language>
- <language type="en_GB">британча англисче</language>
- <language type="en_GB" alt="short">британча англисче</language>
- <language type="en_US">америкалык англисче</language>
- <language type="en_US" alt="short">америкалык англисче</language>
- <language type="eo">эсперанто</language>
- <language type="es">испанча</language>
- <language type="es_419">латын америкалык испанча</language>
- <language type="es_ES">европалык испанча</language>
- <language type="es_MX">мексикалык испанча</language>
- <language type="et">эстончо</language>
- <language type="eu">баскча</language>
- <language type="fa">Фарзча</language>
- <language type="fi">финче</language>
- <language type="fil">тагалча</language>
- <language type="fj">фижиче</language>
- <language type="fo">фароэче</language>
- <language type="fr">французча</language>
- <language type="fr_CA">канадалык французча</language>
- <language type="fr_CH">швейцариялык французча</language>
- <language type="fy">батыш фризче</language>
- <language type="ga">ирландча</language>
- <language type="gl">галисияча</language>
- <language type="gn">гуараш</language>
- <language type="gsw">швейцариялык германча</language>
- <language type="gu">гужаратча</language>
- <language type="ha">хаусача</language>
- <language type="haw">гаваиче</language>
- <language type="he">еврейче</language>
- <language type="hi">индусча</language>
- <language type="hr">хорватча</language>
- <language type="ht">гаитиче</language>
- <language type="hu">венгрияча</language>
- <language type="hy">армянча</language>
- <language type="id">индонезияча</language>
- <language type="ig">игбочо</language>
- <language type="is">исландча</language>
- <language type="it">италиянча</language>
- <language type="ja">япончо</language>
- <language type="jv">жаванизче</language>
- <language type="ka">грузинче</language>
- <language type="kk">казакча</language>
- <language type="km">кмерче</language>
- <language type="kn">каннадача</language>
- <language type="ko">корейче</language>
- <language type="ks">кашмирче</language>
- <language type="ku">курт</language>
- <language type="ky">кыргызча</language>
- <language type="la">латынча</language>
- <language type="lb">Люксембургча</language>
- <language type="lo">лаочо</language>
- <language type="lt">литвача</language>
- <language type="lv">латвияча</language>
- <language type="mg">малагасча</language>
- <language type="mi">маориче</language>
- <language type="mk">македонияча</language>
- <language type="ml">малайаламча</language>
- <language type="mr">маратиче</language>
- <language type="ms">малайча</language>
- <language type="mt">малтизче</language>
- <language type="my">бурмача</language>
- <language type="nb">норвежче букмалча</language>
- <language type="ne">непалча</language>
- <language type="nl">голландча</language>
- <language type="nl_BE">фламандча</language>
- <language type="nn">норвегияча</language>
- <language type="no">норвежче</language>
- <language type="or">ория</language>
- <language type="pa">пунжабиче</language>
- <language type="pl">полякча</language>
- <language type="ps">пашто</language>
- <language type="pt">португалча</language>
- <language type="pt_BR">бразилиялык португалча</language>
- <language type="pt_PT">европалык португалча</language>
- <language type="qu">кечуача</language>
- <language type="rm">романшча</language>
- <language type="ro">румынияча</language>
- <language type="ru">орусча</language>
- <language type="sa">санскритче</language>
- <language type="sd">синдхиче</language>
- <language type="sh">серб-хорват</language>
- <language type="si">сингалача</language>
- <language type="sk">словакча</language>
- <language type="sl">словенче</language>
- <language type="so">сомаличе</language>
- <language type="sq">албанча</language>
- <language type="sr">сербче</language>
- <language type="st">сесото</language>
- <language type="su">сунданча</language>
- <language type="sv">шведче</language>
- <language type="sw">суахиличе</language>
- <language type="ta">тамилче</language>
- <language type="te">телугуча</language>
- <language type="tg">тажикче</language>
- <language type="th">тайча</language>
- <language type="ti">тигриниача</language>
- <language type="tk">түркмөн</language>
- <language type="tlh">клингончо</language>
- <language type="to">тонгача</language>
- <language type="tr">туркчо</language>
- <language type="tt">татарча</language>
- <language type="tw">тви</language>
- <language type="ug">уйгурча</language>
- <language type="uk">украинче</language>
- <language type="und">белгисиз тилде</language>
- <language type="ur">урдуча</language>
- <language type="uz">озбекче</language>
- <language type="vi">вьетнамча</language>
- <language type="wo">уолофчо</language>
- <language type="xh">косача</language>
- <language type="yi">еврей</language>
- <language type="yo">йорубача</language>
- <language type="zgh">марокко тамазигт адабий тилинде</language>
- <language type="zh">кытайча</language>
- <language type="zh_Hans">жөнөкөйлөтүлгөн кытайча</language>
- <language type="zh_Hant">салттуу кытайча</language>
- <language type="zu">зулуча</language>
- <language type="zxx">тилдик мазмун жок</language>
- </languages>
- <scripts>
- <script type="Arab">Арап</script>
- <script type="Armn">Армян</script>
- <script type="Beng">Бенгал</script>
- <script type="Bopo">Бопомофо</script>
- <script type="Brai">Брейл</script>
- <script type="Cyrl">Кирилл</script>
- <script type="Deva">Деванагари</script>
- <script type="Ethi">Эфиоп</script>
- <script type="Geor">Грузин</script>
- <script type="Grek">Грек</script>
- <script type="Gujr">Гужарати</script>
- <script type="Guru">Гурмухи</script>
- <script type="Hang">Хангул</script>
- <script type="Hani">Хани</script>
- <script type="Hans">Жөн. Кытай</script>
- <script type="Hans" alt="stand-alone">Жөн. Кытай</script>
- <script type="Hant">Салт. Кытай</script>
- <script type="Hant" alt="stand-alone">Салт. Кытай</script>
- <script type="Hebr">Иврит</script>
- <script type="Hira">Хирагана</script>
- <script type="Jpan">Жапан</script>
- <script type="Kana">Катакана</script>
- <script type="Khmr">Кмер</script>
- <script type="Knda">Каннада</script>
- <script type="Kore">Корей</script>
- <script type="Laoo">Лао</script>
- <script type="Latn">Латын</script>
- <script type="Mlym">Малайалам</script>
- <script type="Mong">Монгол</script>
- <script type="Mymr">Мйанмар</script>
- <script type="Orya">Орийа</script>
- <script type="Sinh">Сингала</script>
- <script type="Taml">Тамил</script>
- <script type="Telu">Телу</script>
- <script type="Thaa">Таана</script>
- <script type="Thai">Тай</script>
- <script type="Tibt">Тибет</script>
- <script type="Zsym">Символдор</script>
- <script type="Zxxx">Жазылбаган</script>
- <script type="Zyyy">Жалпы</script>
- <script type="Zzzz">Белгисиз жазуу</script>
- </scripts>
- <territories>
- <territory type="001">Дүйнө</territory>
- <territory type="002">Африка</territory>
- <territory type="003">Түндүк Америка</territory>
- <territory type="005">Түштүк Америка</territory>
- <territory type="009">Океания</territory>
- <territory type="011">Батыш Африка</territory>
- <territory type="013">Борбордук Америка</territory>
- <territory type="014">Чыгыш Африка</territory>
- <territory type="015">Түндүк Африка</territory>
- <territory type="017">Орто Африка</territory>
- <territory type="018">Түштүк Африка</territory>
- <territory type="019">Америка</territory>
- <territory type="021">Американын Түндүгү</territory>
- <territory type="029">Кариб аралдары</territory>
- <territory type="030">Чыгыш Азия</territory>
- <territory type="034">Түштүк Азия</territory>
- <territory type="035">Түштүк-Чыгыш Азия</territory>
- <territory type="039">Түштүк Европа</territory>
- <territory type="053">Австралазия</territory>
- <territory type="054">Меланезия</territory>
- <territory type="057">Микронезия Региону</territory>
- <territory type="061">Полинезия</territory>
- <territory type="142">Азия</territory>
- <territory type="143">Борбор Азия</territory>
- <territory type="145">Батыш Азия</territory>
- <territory type="150">Европа</territory>
- <territory type="151">Чыгыш Европа</territory>
- <territory type="154">Түндүк Европа</territory>
- <territory type="155">Батыш Европа</territory>
- <territory type="419">Латын Америкасы</territory>
- <territory type="AC">Асенсион аралы</territory>
- <territory type="AD">Андорра</territory>
- <territory type="AE">Бириккен Араб Эмираттары</territory>
- <territory type="AF">Афганистан</territory>
- <territory type="AG">Антигуа жана Барбуда</territory>
- <territory type="AI">Ангуила</territory>
- <territory type="AL">Албания</territory>
- <territory type="AM">Армения</territory>
- <territory type="AO">Ангола</territory>
- <territory type="AQ">Антарктика</territory>
- <territory type="AR">Аргентина</territory>
- <territory type="AS">Америка Самоасы</territory>
- <territory type="AT">Австрия</territory>
- <territory type="AU">Австралия</territory>
- <territory type="AW">Аруба</territory>
- <territory type="AX">Аланд аралдары</territory>
- <territory type="AZ">Азербайжан</territory>
- <territory type="BA">Босния жана Герцеговина</territory>
- <territory type="BB">Барбадос</territory>
- <territory type="BD">Бангладеш</territory>
- <territory type="BE">Белгия</territory>
- <territory type="BF">Буркина Фасо</territory>
- <territory type="BG">Болгария</territory>
- <territory type="BH">Бахрейн</territory>
- <territory type="BI">Бурунди</territory>
- <territory type="BJ">Бенин</territory>
- <territory type="BL">Ыйык Бартелеми</territory>
- <territory type="BM">Бермуда</territory>
- <territory type="BN">Бруней</territory>
- <territory type="BO">Боливия</territory>
- <territory type="BQ">Кариб Нидерланддары</territory>
- <territory type="BR">Бразилия</territory>
- <territory type="BS">Багамас</territory>
- <territory type="BT">Бутан</territory>
- <territory type="BV">Буве аралдары</territory>
- <territory type="BW">Ботсвана</territory>
- <territory type="BY">Беларусь</territory>
- <territory type="BZ">Белиз</territory>
- <territory type="CA">Канада</territory>
- <territory type="CC">Кокос (Килиӊ) аралдары</territory>
- <territory type="CD">Конго - Киншаса</territory>
- <territory type="CD" alt="variant">Конго (КДР)</territory>
- <territory type="CF">Борбордук Африка Республикасы</territory>
- <territory type="CG">Конго - Браззавил</territory>
- <territory type="CG" alt="variant">Конго (Респ.)</territory>
- <territory type="CH">Швейцария</territory>
- <territory type="CI">Кот-д-Ивуар</territory>
- <territory type="CI" alt="variant">Пил Сөөгү Жээги</territory>
- <territory type="CK">Кук аралдары</territory>
- <territory type="CL">Чили</territory>
- <territory type="CM">Камерун</territory>
- <territory type="CN">Кытай</territory>
- <territory type="CO">Колумбия</territory>
- <territory type="CP">Клиппертон аралы</territory>
- <territory type="CR">Коста Рика</territory>
- <territory type="CU">Куба</territory>
- <territory type="CV">Капе Верде</territory>
- <territory type="CW">Кюрасао</territory>
- <territory type="CX">Крисмас аралы</territory>
- <territory type="CY">Кипр</territory>
- <territory type="CZ">Чехия</territory>
- <territory type="DE">Германия</territory>
- <territory type="DG">Диего Гарсия</territory>
- <territory type="DJ">Жибути</territory>
- <territory type="DK">Дания</territory>
- <territory type="DM">Доминика</territory>
- <territory type="DO">Доминика Республикасы</territory>
- <territory type="DZ">Алжир</territory>
- <territory type="EA">Сеута жана Мелилла</territory>
- <territory type="EC">Экуадор</territory>
- <territory type="EE">Эстония</territory>
- <territory type="EG">Мисир</territory>
- <territory type="EH">Батыш Сахара</territory>
- <territory type="ER">Эритреа</territory>
- <territory type="ES">Испания</territory>
- <territory type="ET">Эфиопия</territory>
- <territory type="EU">Европа Бирлиги</territory>
- <territory type="FI">Финляндия</territory>
- <territory type="FJ">Фижи</territory>
- <territory type="FK">Фолклэнд аралдары</territory>
- <territory type="FK" alt="variant">Фолклэнд (Малвина) аралдары</territory>
- <territory type="FM">Микронезия</territory>
- <territory type="FO">Фарер аралдары</territory>
- <territory type="FR">Франция</territory>
- <territory type="GA">Габон</territory>
- <territory type="GB">Улуу Британия</territory>
- <territory type="GB" alt="short">Улуу Британия</territory>
- <territory type="GD">Гренада</territory>
- <territory type="GE">Грузия</territory>
- <territory type="GF">Француз Гуианасы</territory>
- <territory type="GG">Гернси</territory>
- <territory type="GH">Гана</territory>
- <territory type="GI">Гибралтар</territory>
- <territory type="GL">Гренландия</territory>
- <territory type="GM">Гамбия</territory>
- <territory type="GN">Гине</territory>
- <territory type="GP">Гваделупа</territory>
- <territory type="GQ">Экваториялык Гине</territory>
- <territory type="GR">Грекия</territory>
- <territory type="GS">Түштүк Жоржия жана Түштүк Сэндвич аралдары</territory>
- <territory type="GT">Гватемала</territory>
- <territory type="GU">Гуам</territory>
- <territory type="GW">Гине-Бисау</territory>
- <territory type="GY">Гуиана</territory>
- <territory type="HK">Гоӊ Коӊ Кытай ААА</territory>
- <territory type="HK" alt="short">Гоӊ Коӊ</territory>
- <territory type="HM">Херд жана Макдоналд аралдары</territory>
- <territory type="HN">Гондурас</territory>
- <territory type="HR">Хорватия</territory>
- <territory type="HT">Гаити</territory>
- <territory type="HU">Венгрия</territory>
- <territory type="IC">Канар аралдары</territory>
- <territory type="ID">Индонезия</territory>
- <territory type="IE">Ирландия</territory>
- <territory type="IL">Израил</territory>
- <territory type="IM">Мэн аралы</territory>
- <territory type="IN">Индия</territory>
- <territory type="IO">Британиянын Инд Океанындагы аймагы</territory>
- <territory type="IQ">Ирак</territory>
- <territory type="IR">Иран</territory>
- <territory type="IS">Исландия</territory>
- <territory type="IT">Италия</territory>
- <territory type="JE">Жерси</territory>
- <territory type="JM">Жамайка</territory>
- <territory type="JO">Йордания</territory>
- <territory type="JP">Жапан</territory>
- <territory type="KE">Кения</territory>
- <territory type="KG">Кыргызстан</territory>
- <territory type="KH">Камбожа</territory>
- <territory type="KI">Кирибати</territory>
- <territory type="KM">Коморос</territory>
- <territory type="KN">Ыйык Китс жана Невис</territory>
- <territory type="KP">Түндүк Корея</territory>
- <territory type="KR">Түштүк Корея</territory>
- <territory type="KW">Кувейт</territory>
- <territory type="KY">Кайман Аралдары</territory>
- <territory type="KZ">Казакстан</territory>
- <territory type="LA">Лаос</territory>
- <territory type="LB">Ливан</territory>
- <territory type="LC">Ыйык Лючия</territory>
- <territory type="LI">Лихтенштейн</territory>
- <territory type="LK">Шри Ланка</territory>
- <territory type="LR">Либерия</territory>
- <territory type="LS">Лесото</territory>
- <territory type="LT">Литва</territory>
- <territory type="LU">Люксембург</territory>
- <territory type="LV">Латвия</territory>
- <territory type="LY">Ливия</territory>
- <territory type="MA">Марокко</territory>
- <territory type="MC">Монако</territory>
- <territory type="MD">Молдова</territory>
- <territory type="ME">Монтенегро</territory>
- <territory type="MF">Ыйык Мартин</territory>
- <territory type="MG">Мадагаскар</territory>
- <territory type="MH">Маршалл аралдары</territory>
- <territory type="MK">Македония</territory>
- <territory type="MK" alt="variant">Македония (Мур. Югосл.)</territory>
- <territory type="ML">Мали</territory>
- <territory type="MM">Мйанмар (Бурма)</territory>
- <territory type="MN">Монголия</territory>
- <territory type="MO">Макау Кытай ААА</territory>
- <territory type="MO" alt="short">Макау</territory>
- <territory type="MP">Түндүк Мариана аралдары</territory>
- <territory type="MQ">Мартиник</territory>
- <territory type="MR">Мавритания</territory>
- <territory type="MS">Монсеррат</territory>
- <territory type="MT">Мальта</territory>
- <territory type="MU">Маврикий</territory>
- <territory type="MV">Малдивз</territory>
- <territory type="MW">Малави</territory>
- <territory type="MX">Мексика</territory>
- <territory type="MY">Малайзия</territory>
- <territory type="MZ">Мозамбик</territory>
- <territory type="NA">Намибия</territory>
- <territory type="NC">Жаӊы Каледония</territory>
- <territory type="NE">Нигер</territory>
- <territory type="NF">Норфолк аралы</territory>
- <territory type="NG">Нигерия</territory>
- <territory type="NI">Никарагуа</territory>
- <territory type="NL">Голландия</territory>
- <territory type="NO">Норвегия</territory>
- <territory type="NP">Непал</territory>
- <territory type="NR">Науру</territory>
- <territory type="NU">Ниуэ</territory>
- <territory type="NZ">Жаӊы Зеландия</territory>
- <territory type="OM">Оман</territory>
- <territory type="PA">Панама</territory>
- <territory type="PE">Перу</territory>
- <territory type="PF">Француз Полинезиясы</territory>
- <territory type="PG">Папуа Жаӊы Гине</territory>
- <territory type="PH">Филиппинз</territory>
- <territory type="PK">Пакистан</territory>
- <territory type="PL">Польша</territory>
- <territory type="PM">Ыйык Пьер жана Микуелон</territory>
- <territory type="PN">Питкэрн аралдары</territory>
- <territory type="PR">Пуэрто Рико</territory>
- <territory type="PS">Палестина аймактары</territory>
- <territory type="PS" alt="short">Палестина</territory>
- <territory type="PT">Португалия</territory>
- <territory type="PW">Палау</territory>
- <territory type="PY">Парагвай</territory>
- <territory type="QA">Катар</territory>
- <territory type="QO">Алыскы Океания</territory>
- <territory type="RE">Реюнион</territory>
- <territory type="RO">Румыния</territory>
- <territory type="RS">Сербия</territory>
- <territory type="RU">Орусия</territory>
- <territory type="RW">Руанда</territory>
- <territory type="SA">Сауд Арабиясы</territory>
- <territory type="SB">Соломон аралдары</territory>
- <territory type="SC">Сейшелдер</territory>
- <territory type="SD">Судан</territory>
- <territory type="SE">Швеция</territory>
- <territory type="SG">Сингапур</territory>
- <territory type="SH">Ыйык Елена</territory>
- <territory type="SI">Словения</territory>
- <territory type="SJ">Свалбард жана Жан Майен</territory>
- <territory type="SK">Словакия</territory>
- <territory type="SL">Сиерра Леоне</territory>
- <territory type="SM">Сан Марино</territory>
- <territory type="SN">Сенегал</territory>
- <territory type="SO">Сомали</territory>
- <territory type="SR">Суринаме</territory>
- <territory type="SS">Түштүк Судан</territory>
- <territory type="ST">Сао Томе жана Принсипе</territory>
- <territory type="SV">Эл Салвадор</territory>
- <territory type="SX">Синт Маартен</territory>
- <territory type="SY">Сирия</territory>
- <territory type="SZ">Суазиленд</territory>
- <territory type="TA">Тристан да Кунья</territory>
- <territory type="TC">Түркс жана Кайкос аралдары</territory>
- <territory type="TD">Чад</territory>
- <territory type="TF">Франциянын Түштүктөгү аймактары</territory>
- <territory type="TG">Того</territory>
- <territory type="TH">Тайланд</territory>
- <territory type="TJ">Тажикстан</territory>
- <territory type="TK">Токелау</territory>
- <territory type="TL">ТиморЛесте</territory>
- <territory type="TL" alt="variant">Чыгыш Тимор</territory>
- <territory type="TM">Түркмөнстан</territory>
- <territory type="TN">Тунис</territory>
- <territory type="TO">Тонга</territory>
- <territory type="TR">Түркия</territory>
- <territory type="TT">Тринидад жана Тобаго</territory>
- <territory type="TV">Тувалу</territory>
- <territory type="TW">Тайуан</territory>
- <territory type="TZ">Танзания</territory>
- <territory type="UA">Украина</territory>
- <territory type="UG">Уганда</territory>
- <territory type="UM">АКШнын Алыскы аралдары</territory>
- <territory type="US">Кошмо Штаттар</territory>
- <territory type="US" alt="short">АКШ</territory>
- <territory type="UY">Уругвай</territory>
- <territory type="UZ">Өзбекстан</territory>
- <territory type="VA">Ватикан</territory>
- <territory type="VC">Ыйык Винсент жана Гренадинз</territory>
- <territory type="VE">Венесуэла</territory>
- <territory type="VG">Британ Виргин аралдары</territory>
- <territory type="VI">АКШ Виржин аралдары</territory>
- <territory type="VN">Вьетнам</territory>
- <territory type="VU">Вануату</territory>
- <territory type="WF">Уоллис жана Футуна</territory>
- <territory type="WS">Самоа</territory>
- <territory type="XK">Косово</territory>
- <territory type="YE">Йемен</territory>
- <territory type="YT">Майотт</territory>
- <territory type="ZA">Түштүк Африка Республикасы</territory>
- <territory type="ZM">Замбия</territory>
- <territory type="ZW">Зимбабве</territory>
- <territory type="ZZ">Белгисиз регион</territory>
- </territories>
- <keys>
- <key type="calendar">күнбарак</key>
- <key type="collation">ылгоо тартиби</key>
- <key type="currency">акча</key>
- <key type="numbers">сандар</key>
- </keys>
- <types>
- <type type="arab" key="numbers">Арап-Инд сандары</type>
- <type type="arabext" key="numbers">кеӊейтилген Арап-Инд сандары</type>
- <type type="armn" key="numbers">Армян сандары</type>
- <type type="armnlow" key="numbers">Армян кичине сандары</type>
- <type type="beng" key="numbers">Бенгали сандары</type>
- <type type="deva" key="numbers">Деванагари сандары</type>
- <type type="ducet" key="collation">баштапкы коюлгандай Уникод ылгоо тартиби</type>
- <type type="ethi" key="numbers">Эфиоп сандары</type>
- <type type="fullwide" key="numbers">Толук эндүү сандар</type>
- <type type="geor" key="numbers">Грузин сандары</type>
- <type type="gregorian" key="calendar">Григориан календары</type>
- <type type="grek" key="numbers">Грек сандары</type>
- <type type="greklow" key="numbers">Грек кичине сандары</type>
- <type type="gujr" key="numbers">Гужарати сандары</type>
- <type type="guru" key="numbers">Гурмухи сандары</type>
- <type type="hanidec" key="numbers">Кытай ондук сандары</type>
- <type type="hans" key="numbers">Жөн. Кытай сандары</type>
- <type type="hansfin" key="numbers">Жөн. Кытай финансылык сандары</type>
- <type type="hant" key="numbers">Салттуу Кытай сандары</type>
- <type type="hantfin" key="numbers">Салттуу Кытай финансылык сандары</type>
- <type type="hebr" key="numbers">Иврит сандары</type>
- <type type="jpan" key="numbers">Жапан сандары</type>
- <type type="jpanfin" key="numbers">Жапан финансылык сандары</type>
- <type type="khmr" key="numbers">Кмер сандары</type>
- <type type="knda" key="numbers">Каннада сандары</type>
- <type type="laoo" key="numbers">Лао сандары</type>
- <type type="latn" key="numbers">Батыш сандары</type>
- <type type="mlym" key="numbers">Малайалам сандары</type>
- <type type="mymr" key="numbers">Мйанмар сандары</type>
- <type type="orya" key="numbers">Ория сандары</type>
- <type type="roman" key="numbers">Роман сандары</type>
- <type type="romanlow" key="numbers">Роман кичине сандары</type>
- <type type="search" key="collation">жалпы максатта издөө</type>
- <type type="standard" key="collation">стандарттуу ылгоо тартиби</type>
- <type type="taml" key="numbers">Салттуу Тамил сандары</type>
- <type type="tamldec" key="numbers">Тамил сандары</type>
- <type type="telu" key="numbers">Телугу сандары</type>
- <type type="thai" key="numbers">Тай сандары</type>
- <type type="tibt" key="numbers">Тибет сандары</type>
- </types>
- <transformNames>
- <transformName type="Numeric" draft="unconfirmed">Сандык</transformName>
- <transformName type="Tone" draft="unconfirmed">Тондук</transformName>
- <transformName type="x-Accents" draft="unconfirmed">Диакриттик белгилер</transformName>
- <transformName type="x-Fullwidth" draft="unconfirmed">Кең формат</transformName>
- <transformName type="x-Halfwidth" draft="unconfirmed">Кыска формат</transformName>
- <transformName type="x-Jamo" draft="unconfirmed">Джамо</transformName>
- <transformName type="x-Pinyin" draft="unconfirmed">Пиньин</transformName>
- <transformName type="x-Publishing" draft="unconfirmed">Басмаканалык</transformName>
- </transformNames>
- <measurementSystemNames>
- <measurementSystemName type="metric">метрикалык</measurementSystemName>
- <measurementSystemName type="UK">Британия</measurementSystemName>
- <measurementSystemName type="US">АКШ</measurementSystemName>
- </measurementSystemNames>
- <codePatterns>
- <codePattern type="language">Тили: {0}</codePattern>
- <codePattern type="script">Жазуусу: {0}</codePattern>
- <codePattern type="territory">Регион: {0}</codePattern>
- </codePatterns>
- </localeDisplayNames>
- <characters>
- <exemplarCharacters>[а б г д е ё ж з и й к л м н ӊ о ө п р с т у ү х ч ш ъ ы э ю я]</exemplarCharacters>
- <exemplarCharacters type="auxiliary">[в ф ц щ ь]</exemplarCharacters>
- <exemplarCharacters type="index" draft="unconfirmed">[А Б Г Д Е Ж З И Й К Л М Н Ӊ О Ө П Р С Т У Ү Х Ч Ш Ъ Ы Э Ю Я]</exemplarCharacters>
- <exemplarCharacters type="punctuation">[\- ‐ – — , ; \: ! ? . … ' ‘ ‚ " “ „ « » ( ) \[ \] \{ \} § @ * / \& #]</exemplarCharacters>
- <ellipsis type="final">{0}…</ellipsis>
- <ellipsis type="initial">…{0}</ellipsis>
- <ellipsis type="medial">{0}…{1}</ellipsis>
- <ellipsis type="word-final">{0} …</ellipsis>
- <ellipsis type="word-initial">… {0}</ellipsis>
- <ellipsis type="word-medial">{0} … {1}</ellipsis>
- <moreInformation>?</moreInformation>
- </characters>
- <delimiters>
- <quotationStart>«</quotationStart>
- <quotationEnd>»</quotationEnd>
- <alternateQuotationStart>„</alternateQuotationStart>
- <alternateQuotationEnd>“</alternateQuotationEnd>
- </delimiters>
- <dates>
- <calendars>
- <calendar type="generic">
- <dateFormats>
- <dateFormatLength type="full">
- <dateFormat>
- <pattern>EEEE, G d-MMMM y-'ж'.</pattern>
- </dateFormat>
- </dateFormatLength>
- <dateFormatLength type="long">
- <dateFormat>
- <pattern>d-MMMM G y-'ж'.</pattern>
- </dateFormat>
- </dateFormatLength>
- <dateFormatLength type="medium">
- <dateFormat>
- <pattern>dd.MM.y G</pattern>
- </dateFormat>
- </dateFormatLength>
- <dateFormatLength type="short">
- <dateFormat>
- <pattern>dd.MM.y GGGGG</pattern>
- </dateFormat>
- </dateFormatLength>
- </dateFormats>
- <dateTimeFormats>
- <dateTimeFormatLength type="full">
- <dateTimeFormat>
- <pattern>{1} {0}</pattern>
- </dateTimeFormat>
- </dateTimeFormatLength>
- <dateTimeFormatLength type="long">
- <dateTimeFormat>
- <pattern>{1} {0}</pattern>
- </dateTimeFormat>
- </dateTimeFormatLength>
- <dateTimeFormatLength type="medium">
- <dateTimeFormat>
- <pattern>{1} {0}</pattern>
- </dateTimeFormat>
- </dateTimeFormatLength>
- <dateTimeFormatLength type="short">
- <dateTimeFormat>
- <pattern>{1} {0}</pattern>
- </dateTimeFormat>
- </dateTimeFormatLength>
- <availableFormats>
- <dateFormatItem id="d">d</dateFormatItem>
- <dateFormatItem id="Ed">d, E</dateFormatItem>
- <dateFormatItem id="Gy">G y</dateFormatItem>
- <dateFormatItem id="GyMMM">G y MMM</dateFormatItem>
- <dateFormatItem id="GyMMMd">G y-'ж'. d-MMM</dateFormatItem>
- <dateFormatItem id="GyMMMEd">G y-'ж'. d-MMM, E</dateFormatItem>
- <dateFormatItem id="M">L</dateFormatItem>
- <dateFormatItem id="Md">MM-dd</dateFormatItem>
- <dateFormatItem id="MEd">MM-dd, E</dateFormatItem>
- <dateFormatItem id="MMM">LLL</dateFormatItem>
- <dateFormatItem id="MMMd">d-MMM</dateFormatItem>
- <dateFormatItem id="MMMEd">d-MMM, E</dateFormatItem>
- <dateFormatItem id="y">y-G</dateFormatItem>
- <dateFormatItem id="yyyy">y-G</dateFormatItem>
- <dateFormatItem id="yyyyM">GGGGG y-MM</dateFormatItem>
- <dateFormatItem id="yyyyMd">GGGGG y-MM-dd</dateFormatItem>
- <dateFormatItem id="yyyyMEd">GGGGG y-MM-dd, E</dateFormatItem>
- <dateFormatItem id="yyyyMMM">G y-'ж'. MMM</dateFormatItem>
- <dateFormatItem id="yyyyMMMd">G y-'ж'. d-MMM</dateFormatItem>
- <dateFormatItem id="yyyyMMMEd">G y-'ж'. d-MMM, E</dateFormatItem>
- <dateFormatItem id="yyyyQQQ">G y-'ж'. QQQ</dateFormatItem>
- <dateFormatItem id="yyyyQQQQ">G y-'ж'. QQQQ</dateFormatItem>
- </availableFormats>
- <intervalFormats>
- <intervalFormatFallback>{0} - {1}</intervalFormatFallback>
- <intervalFormatItem id="d">
- <greatestDifference id="d">d-d</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="h">
- <greatestDifference id="h" draft="unconfirmed">h-h a</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="H">
- <greatestDifference id="H" draft="unconfirmed">HH-HH</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="hm">
- <greatestDifference id="h" draft="unconfirmed">h:mm-h:mm a</greatestDifference>
- <greatestDifference id="m" draft="unconfirmed">h:mm-h:mm a</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="Hm">
- <greatestDifference id="H" draft="unconfirmed">HH:mm-HH:mm</greatestDifference>
- <greatestDifference id="m" draft="unconfirmed">HH:mm-HH:mm</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="hmv">
- <greatestDifference id="h" draft="unconfirmed">h:mm-h:mm a v</greatestDifference>
- <greatestDifference id="m" draft="unconfirmed">h:mm-h:mm a v</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="Hmv">
- <greatestDifference id="H" draft="unconfirmed">HH:mm-HH:mm v</greatestDifference>
- <greatestDifference id="m" draft="unconfirmed">HH:mm-HH:mm v</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="hv">
- <greatestDifference id="h" draft="unconfirmed">h-h a v</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="Hv">
- <greatestDifference id="H" draft="unconfirmed">HH-HH v</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="M">
- <greatestDifference id="M">M-M</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="Md">
- <greatestDifference id="d">dd.MM - dd.MM</greatestDifference>
- <greatestDifference id="M">dd.MM - dd.MM</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MEd">
- <greatestDifference id="d">E, dd.MM - E, dd.MM</greatestDifference>
- <greatestDifference id="M">E, dd.MM - E, dd.MM</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MMM">
- <greatestDifference id="M">MMM-MMM</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MMMd">
- <greatestDifference id="d">d-d MMM</greatestDifference>
- <greatestDifference id="M">d MMM - d MMM</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MMMEd">
- <greatestDifference id="d">E, d - E, d MMM</greatestDifference>
- <greatestDifference id="M">E, d MMM - E, d MMM</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="y">
- <greatestDifference id="y">y-y G</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yM">
- <greatestDifference id="M">MM.y - MM.y G</greatestDifference>
- <greatestDifference id="y">MM.y - MM.y G</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMd">
- <greatestDifference id="d">dd.MM.y - dd.MM.y G</greatestDifference>
- <greatestDifference id="M">dd.MM.y - dd.MM.y G</greatestDifference>
- <greatestDifference id="y">dd.MM.y - dd.MM.y G</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMEd">
- <greatestDifference id="d">E, dd.MM.y - E, dd.MM.y G</greatestDifference>
- <greatestDifference id="M">E, dd.MM.y - E, dd.MM.y G</greatestDifference>
- <greatestDifference id="y">E, dd.MM.y - E, dd.MM.y G</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMMM">
- <greatestDifference id="M">MMM-MMM y-'ж'. G</greatestDifference>
- <greatestDifference id="y">MMM y-'ж'. - MMM y-'ж'. G</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMMMd">
- <greatestDifference id="d">d-d-MMM y-'ж'. G</greatestDifference>
- <greatestDifference id="M">d-MMM - d-MMM y-'ж'. G</greatestDifference>
- <greatestDifference id="y">d-MMM y-'ж'. - d-MMM y-'ж'. G</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMMMEd">
- <greatestDifference id="d">E, d - E, d-MMM y-'ж'. G</greatestDifference>
- <greatestDifference id="M">E, d-MMM - E, d-MMM y-'ж'. G</greatestDifference>
- <greatestDifference id="y">E, d-MMM y-'ж'. - E, d-MMM y-'ж'. G</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMMMM">
- <greatestDifference id="M">G y-'ж'. MMMM - MMMM</greatestDifference>
- <greatestDifference id="y">G y-'ж'. MMMM - y-'ж'. MMMM</greatestDifference>
- </intervalFormatItem>
- </intervalFormats>
- </dateTimeFormats>
- </calendar>
- <calendar type="gregorian">
- <months>
- <monthContext type="format">
- <monthWidth type="abbreviated">
- <month type="1">янв.</month>
- <month type="2">фев.</month>
- <month type="3">мар.</month>
- <month type="4">апр.</month>
- <month type="5">май</month>
- <month type="6">июн.</month>
- <month type="7">июл.</month>
- <month type="8">авг.</month>
- <month type="9">сен.</month>
- <month type="10">окт.</month>
- <month type="11">ноя.</month>
- <month type="12">дек.</month>
- </monthWidth>
- <monthWidth type="narrow">
- <month type="1">Я</month>
- <month type="2">Ф</month>
- <month type="3">М</month>
- <month type="4">А</month>
- <month type="5">М</month>
- <month type="6">И</month>
- <month type="7">И</month>
- <month type="8">А</month>
- <month type="9">С</month>
- <month type="10">О</month>
- <month type="11">Н</month>
- <month type="12">Д</month>
- </monthWidth>
- <monthWidth type="wide">
- <month type="1">январь</month>
- <month type="2">февраль</month>
- <month type="3">март</month>
- <month type="4">апрель</month>
- <month type="5">май</month>
- <month type="6">июнь</month>
- <month type="7">июль</month>
- <month type="8">август</month>
- <month type="9">сентябрь</month>
- <month type="10">октябрь</month>
- <month type="11">ноябрь</month>
- <month type="12">декабрь</month>
- </monthWidth>
- </monthContext>
- <monthContext type="stand-alone">
- <monthWidth type="abbreviated">
- <month type="1">янв.</month>
- <month type="2">фев.</month>
- <month type="3">мар.</month>
- <month type="4">апр.</month>
- <month type="5">май</month>
- <month type="6">июн.</month>
- <month type="7">июл.</month>
- <month type="8">авг.</month>
- <month type="9">сен.</month>
- <month type="10">окт.</month>
- <month type="11">ноя.</month>
- <month type="12">дек.</month>
- </monthWidth>
- <monthWidth type="narrow">
- <month type="1">Я</month>
- <month type="2">Ф</month>
- <month type="3">М</month>
- <month type="4">А</month>
- <month type="5">М</month>
- <month type="6">И</month>
- <month type="7">И</month>
- <month type="8">А</month>
- <month type="9">С</month>
- <month type="10">О</month>
- <month type="11">Н</month>
- <month type="12">Д</month>
- </monthWidth>
- <monthWidth type="wide">
- <month type="1">январь</month>
- <month type="2">февраль</month>
- <month type="3">март</month>
- <month type="4">апрель</month>
- <month type="5">май</month>
- <month type="6">июнь</month>
- <month type="7">июль</month>
- <month type="8">август</month>
- <month type="9">сентябрь</month>
- <month type="10">октябрь</month>
- <month type="11">ноябрь</month>
- <month type="12">декабрь</month>
- </monthWidth>
- </monthContext>
- </months>
- <days>
- <dayContext type="format">
- <dayWidth type="abbreviated">
- <day type="sun">Жк</day>
- <day type="mon">Дш</day>
- <day type="tue">Ше</day>
- <day type="wed">Ша</day>
- <day type="thu">Бш</day>
- <day type="fri">Жм</day>
- <day type="sat">Иш</day>
- </dayWidth>
- <dayWidth type="narrow">
- <day type="sun">Ж</day>
- <day type="mon">Д</day>
- <day type="tue">Ш</day>
- <day type="wed">Ш</day>
- <day type="thu">Б</day>
- <day type="fri">Ж</day>
- <day type="sat">И</day>
- </dayWidth>
- <dayWidth type="short">
- <day type="sun">Жк</day>
- <day type="mon">Дш</day>
- <day type="tue">Ше</day>
- <day type="wed">Ша</day>
- <day type="thu">Бш</day>
- <day type="fri">Жм</day>
- <day type="sat">Иш</day>
- </dayWidth>
- <dayWidth type="wide">
- <day type="sun">Жек</day>
- <day type="mon">Дүй</day>
- <day type="tue">Шей</day>
- <day type="wed">Шар</day>
- <day type="thu">Бей</day>
- <day type="fri">Жум</day>
- <day type="sat">Ишм</day>
- </dayWidth>
- </dayContext>
- <dayContext type="stand-alone">
- <dayWidth type="abbreviated">
- <day type="sun">Жек</day>
- <day type="mon">Дүй</day>
- <day type="tue">Шей</day>
- <day type="wed">Шар</day>
- <day type="thu">Бей</day>
- <day type="fri">Жум</day>
- <day type="sat">Ишм</day>
- </dayWidth>
- <dayWidth type="narrow">
- <day type="sun">Ж</day>
- <day type="mon">Д</day>
- <day type="tue">Ш</day>
- <day type="wed">Ш</day>
- <day type="thu">Б</day>
- <day type="fri">Ж</day>
- <day type="sat">И</day>
- </dayWidth>
- <dayWidth type="short">
- <day type="sun">Жк</day>
- <day type="mon">Дш</day>
- <day type="tue">Ше</day>
- <day type="wed">Ша</day>
- <day type="thu">Бш</day>
- <day type="fri">Жм</day>
- <day type="sat">Иш</day>
- </dayWidth>
- <dayWidth type="wide">
- <day type="sun">Жекшемби</day>
- <day type="mon">Дүйшөмбү</day>
- <day type="tue">Шейшемби</day>
- <day type="wed">Шаршемби</day>
- <day type="thu">Бейшемби</day>
- <day type="fri">Жума</day>
- <day type="sat">Ишемби</day>
- </dayWidth>
- </dayContext>
- </days>
- <quarters>
- <quarterContext type="format">
- <quarterWidth type="abbreviated">
- <quarter type="1">1-чей.</quarter>
- <quarter type="2">2-чей.</quarter>
- <quarter type="3">3-чей.</quarter>
- <quarter type="4">4-чей.</quarter>
- </quarterWidth>
- <quarterWidth type="narrow">
- <quarter type="1">1</quarter>
- <quarter type="2">2</quarter>
- <quarter type="3">3</quarter>
- <quarter type="4">4</quarter>
- </quarterWidth>
- <quarterWidth type="wide">
- <quarter type="1">1-чейрек</quarter>
- <quarter type="2">2-чейрек</quarter>
- <quarter type="3">3-чейрек</quarter>
- <quarter type="4">4-чейрек</quarter>
- </quarterWidth>
- </quarterContext>
- <quarterContext type="stand-alone">
- <quarterWidth type="abbreviated">
- <quarter type="1">1-ч.</quarter>
- <quarter type="2">2-ч.</quarter>
- <quarter type="3">3-ч.</quarter>
- <quarter type="4">4-ч.</quarter>
- </quarterWidth>
- <quarterWidth type="narrow">
- <quarter type="1">1</quarter>
- <quarter type="2">2</quarter>
- <quarter type="3">3</quarter>
- <quarter type="4">4</quarter>
- </quarterWidth>
- <quarterWidth type="wide">
- <quarter type="1">1-чейрек</quarter>
- <quarter type="2">2-чейрек</quarter>
- <quarter type="3">3-чейрек</quarter>
- <quarter type="4">4-чейрек</quarter>
- </quarterWidth>
- </quarterContext>
- </quarters>
- <dayPeriods>
- <dayPeriodContext type="format">
- <dayPeriodWidth type="wide">
- <dayPeriod type="am">түшкө чейинки</dayPeriod>
- <dayPeriod type="pm">түштөн кийинки</dayPeriod>
- </dayPeriodWidth>
- </dayPeriodContext>
- </dayPeriods>
- <eras>
- <eraNames>
- <era type="0" draft="unconfirmed">б.з. чейин</era>
- <era type="1" draft="unconfirmed">б.з.</era>
- </eraNames>
- <eraAbbr>
- <era type="0">б.з. ч.</era>
- <era type="0" alt="variant">б.з.ч.</era>
- <era type="1">б.з.</era>
- </eraAbbr>
- <eraNarrow>
- <era type="0" draft="unconfirmed">б.з. ч.</era>
- <era type="1" draft="unconfirmed">б.з.</era>
- </eraNarrow>
- </eras>
- <dateFormats>
- <dateFormatLength type="full">
- <dateFormat>
- <pattern>EEEE, d-MMMM, y-'ж'.</pattern>
- </dateFormat>
- </dateFormatLength>
- <dateFormatLength type="long">
- <dateFormat>
- <pattern>d-MMMM, y-'ж'.</pattern>
- </dateFormat>
- </dateFormatLength>
- <dateFormatLength type="medium">
- <dateFormat>
- <pattern>dd.MM.y</pattern>
- </dateFormat>
- </dateFormatLength>
- <dateFormatLength type="short">
- <dateFormat>
- <pattern>dd.MM.yy</pattern>
- </dateFormat>
- </dateFormatLength>
- </dateFormats>
- <timeFormats>
- <timeFormatLength type="full">
- <timeFormat>
- <pattern>HH:mm:ss zzzz</pattern>
- </timeFormat>
- </timeFormatLength>
- <timeFormatLength type="long">
- <timeFormat>
- <pattern>HH:mm:ss z</pattern>
- </timeFormat>
- </timeFormatLength>
- <timeFormatLength type="medium">
- <timeFormat>
- <pattern>HH:mm:ss</pattern>
- </timeFormat>
- </timeFormatLength>
- <timeFormatLength type="short">
- <timeFormat>
- <pattern>HH:mm</pattern>
- </timeFormat>
- </timeFormatLength>
- </timeFormats>
- <dateTimeFormats>
- <dateTimeFormatLength type="full">
- <dateTimeFormat>
- <pattern>{1} {0}</pattern>
- </dateTimeFormat>
- </dateTimeFormatLength>
- <dateTimeFormatLength type="long">
- <dateTimeFormat>
- <pattern>{1} {0}</pattern>
- </dateTimeFormat>
- </dateTimeFormatLength>
- <dateTimeFormatLength type="medium">
- <dateTimeFormat>
- <pattern>{1} {0}</pattern>
- </dateTimeFormat>
- </dateTimeFormatLength>
- <dateTimeFormatLength type="short">
- <dateTimeFormat>
- <pattern>{1} {0}</pattern>
- </dateTimeFormat>
- </dateTimeFormatLength>
- <availableFormats>
- <dateFormatItem id="d">d</dateFormatItem>
- <dateFormatItem id="Ed">d, E</dateFormatItem>
- <dateFormatItem id="Ehm">E a h:mm</dateFormatItem>
- <dateFormatItem id="EHm">E HH:mm</dateFormatItem>
- <dateFormatItem id="Ehms">E h:mm:ss a</dateFormatItem>
- <dateFormatItem id="EHms">E HH:mm:ss</dateFormatItem>
- <dateFormatItem id="Gy">G y-'ж'.</dateFormatItem>
- <dateFormatItem id="GyMMM">G y-'ж'. MMM</dateFormatItem>
- <dateFormatItem id="GyMMMd">G y-'ж'. d-MMM</dateFormatItem>
- <dateFormatItem id="GyMMMEd">G y-'ж'. d-MMM, E</dateFormatItem>
- <dateFormatItem id="h">a h</dateFormatItem>
- <dateFormatItem id="H">HH</dateFormatItem>
- <dateFormatItem id="hm">a h:mm</dateFormatItem>
- <dateFormatItem id="Hm">HH:mm</dateFormatItem>
- <dateFormatItem id="hms">a h:mm:ss</dateFormatItem>
- <dateFormatItem id="Hms">HH:mm:ss</dateFormatItem>
- <dateFormatItem id="M">L</dateFormatItem>
- <dateFormatItem id="Md">dd-MM</dateFormatItem>
- <dateFormatItem id="MEd">dd-MM, E</dateFormatItem>
- <dateFormatItem id="MMM">LLL</dateFormatItem>
- <dateFormatItem id="MMMd">d-MMM</dateFormatItem>
- <dateFormatItem id="MMMEd">d-MMM, E</dateFormatItem>
- <dateFormatItem id="ms">mm:ss</dateFormatItem>
- <dateFormatItem id="y">y</dateFormatItem>
- <dateFormatItem id="yM">y-MM</dateFormatItem>
- <dateFormatItem id="yMd">y-MM-dd</dateFormatItem>
- <dateFormatItem id="yMEd">y-MM-dd, E</dateFormatItem>
- <dateFormatItem id="yMMM">y-'ж'. MMM</dateFormatItem>
- <dateFormatItem id="yMMMd">y-'ж'. d-MMM</dateFormatItem>
- <dateFormatItem id="yMMMEd">y-'ж'. d-MMM, E</dateFormatItem>
- <dateFormatItem id="yQQQ">y-'ж'., QQQ</dateFormatItem>
- <dateFormatItem id="yQQQQ">y-'ж'., QQQQ</dateFormatItem>
- </availableFormats>
- <appendItems>
- <appendItem request="Timezone">{0} {1}</appendItem>
- </appendItems>
- <intervalFormats>
- <intervalFormatFallback>{0} - {1}</intervalFormatFallback>
- <intervalFormatItem id="d">
- <greatestDifference id="d">d-d</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="h">
- <greatestDifference id="a">a h – a h</greatestDifference>
- <greatestDifference id="h">a h-h</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="H">
- <greatestDifference id="H">HH-HH</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="hm">
- <greatestDifference id="a">a h:mm – a h:mm</greatestDifference>
- <greatestDifference id="h">a h:mm-h:mm</greatestDifference>
- <greatestDifference id="m">a h:mm-h:mm</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="Hm">
- <greatestDifference id="H">HH:mm-HH:mm</greatestDifference>
- <greatestDifference id="m">HH:mm-HH:mm</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="hmv">
- <greatestDifference id="a">a h:mm – a h:mm v</greatestDifference>
- <greatestDifference id="h">a h:mm-h:mm v</greatestDifference>
- <greatestDifference id="m">a h:mm-h:mm v</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="Hmv">
- <greatestDifference id="H">HH:mm-HH:mm v</greatestDifference>
- <greatestDifference id="m">HH:mm-HH:mm v</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="hv">
- <greatestDifference id="a">a h – a h v</greatestDifference>
- <greatestDifference id="h">a h-h v</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="Hv">
- <greatestDifference id="H">HH-HH v</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="M">
- <greatestDifference id="M">M-M</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="Md">
- <greatestDifference id="d">dd.MM - dd.MM</greatestDifference>
- <greatestDifference id="M">dd.MM - dd.MM</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MEd">
- <greatestDifference id="d">E, dd.MM - E, dd.MM</greatestDifference>
- <greatestDifference id="M">E, dd.MM - E, dd.MM</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MMM">
- <greatestDifference id="M">MMM-MMM</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MMMd">
- <greatestDifference id="d">d-d-MMM</greatestDifference>
- <greatestDifference id="M">d-MMM - d-MMM</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MMMEd">
- <greatestDifference id="d">E, d - E, d-MMM</greatestDifference>
- <greatestDifference id="M">E, d-MMM - E, d-MMM</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="y">
- <greatestDifference id="y">y-y</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yM">
- <greatestDifference id="M">MM.y - MM.y</greatestDifference>
- <greatestDifference id="y">MM.y - MM.y</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMd">
- <greatestDifference id="d">dd.MM.y - dd.MM.y</greatestDifference>
- <greatestDifference id="M">dd.MM.y - dd.MM.y</greatestDifference>
- <greatestDifference id="y">dd.MM.y - dd.MM.y</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMEd">
- <greatestDifference id="d">E, dd.MM.y - E, dd.MM.y</greatestDifference>
- <greatestDifference id="M">E, dd.MM.y - E, dd.MM.y</greatestDifference>
- <greatestDifference id="y">E, dd.MM.y - E, dd.MM.y</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMMM">
- <greatestDifference id="M">MMM-MMM y-'ж'.</greatestDifference>
- <greatestDifference id="y">MMM y-'ж'. - MMM y-'ж'.</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMMMd">
- <greatestDifference id="d">d-d-MMM y-'ж'.</greatestDifference>
- <greatestDifference id="M">d-MMM - d-MMM y-'ж'.</greatestDifference>
- <greatestDifference id="y">d-MMM y-'ж'. - d-MMM y-'ж'.</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMMMEd">
- <greatestDifference id="d">E, d - E, d-MMM y-'ж'.</greatestDifference>
- <greatestDifference id="M">E, d-MMM - E, d-MMM y-'ж'.</greatestDifference>
- <greatestDifference id="y">E, d-MMM y-'ж'. - E, d-MMM y-'ж'.</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMMMM">
- <greatestDifference id="M">MMMM - MMMM y</greatestDifference>
- <greatestDifference id="y">MMMM y - MMMM y</greatestDifference>
- </intervalFormatItem>
- </intervalFormats>
- </dateTimeFormats>
- </calendar>
- </calendars>
- <fields>
- <field type="era">
- <displayName>заман</displayName>
- </field>
- <field type="year">
- <displayName>жыл</displayName>
- <relative type="-1">былтыр</relative>
- <relative type="0">быйыл</relative>
- <relative type="1">эмдиги жылы</relative>
- <relativeTime type="future">
- <relativeTimePattern count="one">{0} жылдан кийин</relativeTimePattern>
- <relativeTimePattern count="other">{0} жылдан кийин</relativeTimePattern>
- </relativeTime>
- <relativeTime type="past">
- <relativeTimePattern count="one">{0} жыл мурун</relativeTimePattern>
- <relativeTimePattern count="other">{0} жыл мурун</relativeTimePattern>
- </relativeTime>
- </field>
- <field type="month">
- <displayName>ай</displayName>
- <relative type="-1">өткөн айда</relative>
- <relative type="0">бул айда</relative>
- <relative type="1">эмдиги айда</relative>
- <relativeTime type="future">
- <relativeTimePattern count="one">{0} айдан кийин</relativeTimePattern>
- <relativeTimePattern count="other">{0} айдан кийин</relativeTimePattern>
- </relativeTime>
- <relativeTime type="past">
- <relativeTimePattern count="one">{0} ай мурун</relativeTimePattern>
- <relativeTimePattern count="other">{0} ай мурун</relativeTimePattern>
- </relativeTime>
- </field>
- <field type="week">
- <displayName>апта</displayName>
- <relative type="-1">өткөн аптада</relative>
- <relative type="0">ушул аптада</relative>
- <relative type="1">келерки аптада</relative>
- <relativeTime type="future">
- <relativeTimePattern count="one">{0} аптадан кийин</relativeTimePattern>
- <relativeTimePattern count="other">{0} аптадан кийин</relativeTimePattern>
- </relativeTime>
- <relativeTime type="past">
- <relativeTimePattern count="one">{0} апта мурун</relativeTimePattern>
- <relativeTimePattern count="other">{0} апта мурун</relativeTimePattern>
- </relativeTime>
- </field>
- <field type="day">
- <displayName>күн</displayName>
- <relative type="-2">мурдагы күнү</relative>
- <relative type="-1">кечээ</relative>
- <relative type="0">бүгүн</relative>
- <relative type="1">эртеӊ</relative>
- <relative type="2">бүрсүгүнү</relative>
- <relativeTime type="future">
- <relativeTimePattern count="one">{0} күндөн кийин</relativeTimePattern>
- <relativeTimePattern count="other">{0} күндөн кийин</relativeTimePattern>
- </relativeTime>
- <relativeTime type="past">
- <relativeTimePattern count="one">{0} күн мурун</relativeTimePattern>
- <relativeTimePattern count="other">{0} күн мурун</relativeTimePattern>
- </relativeTime>
- </field>
- <field type="weekday">
- <displayName>апта күнү</displayName>
- </field>
- <field type="sun">
- <relative type="-1">өткөн дем алышта</relative>
- <relative type="0">ушул дем алышта</relative>
- <relative type="1">келерки дем алышта</relative>
- </field>
- <field type="mon">
- <relative type="-1">өткөн Дүйшөмбүдө</relative>
- <relative type="0">ушул Дүйшөмбүдө</relative>
- <relative type="1">кийинки Дүйшөмбүдө</relative>
- </field>
- <field type="tue">
- <relative type="-1">өткөн Шейшембиде</relative>
- <relative type="0">ушул Шейшембиде</relative>
- <relative type="1">эмки Шейшембиде</relative>
- </field>
- <field type="wed">
- <relative type="-1">өткөн Шаршембиде</relative>
- <relative type="0">ушул Шаршембиде</relative>
- <relative type="1">эмки Шаршембиде</relative>
- </field>
- <field type="thu">
- <relative type="-1">өткөн Бейшембиде</relative>
- <relative type="0">ушул Бейшембиде</relative>
- <relative type="1">эмдиги Бейшембиде</relative>
- </field>
- <field type="fri">
- <relative type="-1">өткөн Жума көнү</relative>
- <relative type="0">ушул Жума күнү</relative>
- <relative type="1">эмдиги Жума күнү</relative>
- </field>
- <field type="sat">
- <relative type="-1">өткөн Ишембиде</relative>
- <relative type="0">ушул Ишембиде</relative>
- <relative type="1">келерки Ишембиде</relative>
- </field>
- <field type="dayperiod">
- <displayName>ТЧ/ТК</displayName>
- </field>
- <field type="hour">
- <displayName>саат</displayName>
- <relativeTime type="future">
- <relativeTimePattern count="one">{0} сааттан кийин</relativeTimePattern>
- <relativeTimePattern count="other">{0} сааттан кийин</relativeTimePattern>
- </relativeTime>
- <relativeTime type="past">
- <relativeTimePattern count="one">{0} саат мурун</relativeTimePattern>
- <relativeTimePattern count="other">{0} саат мурун</relativeTimePattern>
- </relativeTime>
- </field>
- <field type="minute">
- <displayName>мүнөт</displayName>
- <relativeTime type="future">
- <relativeTimePattern count="one">{0} мүнөттөн кийин</relativeTimePattern>
- <relativeTimePattern count="other">{0} мүнөттөн кийин</relativeTimePattern>
- </relativeTime>
- <relativeTime type="past">
- <relativeTimePattern count="one">{0} мүнөт мурун</relativeTimePattern>
- <relativeTimePattern count="other">{0} мүнөт мурун</relativeTimePattern>
- </relativeTime>
- </field>
- <field type="second">
- <displayName>секунд</displayName>
- <relative type="0">азыр</relative>
- <relativeTime type="future">
- <relativeTimePattern count="one">{0} секунддан кийин</relativeTimePattern>
- <relativeTimePattern count="other">{0} секунддан кийин</relativeTimePattern>
- </relativeTime>
- <relativeTime type="past">
- <relativeTimePattern count="one">{0} секунд мурун</relativeTimePattern>
- <relativeTimePattern count="other">{0} секунд мурун</relativeTimePattern>
- </relativeTime>
- </field>
- <field type="zone">
- <displayName>саат алкагы</displayName>
- </field>
- </fields>
- <timeZoneNames>
- <hourFormat>+HH:mm;-HH:mm</hourFormat>
- <gmtFormat>GMT{0}</gmtFormat>
- <gmtZeroFormat>GMT</gmtZeroFormat>
- <regionFormat>{0}</regionFormat>
- <regionFormat type="daylight">{0} (+1)</regionFormat>
- <regionFormat type="standard">{0} (+0)</regionFormat>
- <fallbackFormat>{1} ({0})</fallbackFormat>
- <zone type="Etc/Unknown">
- <exemplarCity>Белгисиз</exemplarCity>
- </zone>
- <zone type="Europe/Andorra">
- <exemplarCity>Андорра</exemplarCity>
- </zone>
- <zone type="Asia/Dubai">
- <exemplarCity>Дубай</exemplarCity>
- </zone>
- <zone type="Asia/Kabul">
- <exemplarCity>Кабул</exemplarCity>
- </zone>
- <zone type="America/Antigua">
- <exemplarCity>Антигуа</exemplarCity>
- </zone>
- <zone type="America/Anguilla">
- <exemplarCity>Ангуила</exemplarCity>
- </zone>
- <zone type="Europe/Tirane">
- <exemplarCity>Тирана</exemplarCity>
- </zone>
- <zone type="Asia/Yerevan">
- <exemplarCity>Ереван</exemplarCity>
- </zone>
- <zone type="Africa/Luanda">
- <exemplarCity>Луанда</exemplarCity>
- </zone>
- <zone type="Antarctica/Rothera">
- <exemplarCity>Ротера</exemplarCity>
- </zone>
- <zone type="Antarctica/Palmer">
- <exemplarCity>Палмер</exemplarCity>
- </zone>
- <zone type="Antarctica/South_Pole">
- <exemplarCity>Түштүк Уюл</exemplarCity>
- </zone>
- <zone type="Antarctica/Syowa">
- <exemplarCity>Саоа</exemplarCity>
- </zone>
- <zone type="Antarctica/Mawson">
- <exemplarCity>Моосон</exemplarCity>
- </zone>
- <zone type="Antarctica/Davis">
- <exemplarCity>Дэвис</exemplarCity>
- </zone>
- <zone type="Antarctica/Vostok">
- <exemplarCity>Восток</exemplarCity>
- </zone>
- <zone type="Antarctica/Casey">
- <exemplarCity>Кейси</exemplarCity>
- </zone>
- <zone type="Antarctica/DumontDUrville">
- <exemplarCity>Дүмон д-Өрвил</exemplarCity>
- </zone>
- <zone type="Antarctica/McMurdo">
- <exemplarCity>МакМөрдо</exemplarCity>
- </zone>
- <zone type="America/Argentina/Rio_Gallegos">
- <exemplarCity>Рио Галлегос</exemplarCity>
- </zone>
- <zone type="America/Mendoza">
- <exemplarCity>Мендоза</exemplarCity>
- </zone>
- <zone type="America/Argentina/San_Juan">
- <exemplarCity>Сан Хуан</exemplarCity>
- </zone>
- <zone type="America/Argentina/Ushuaia">
- <exemplarCity>Ушуайа</exemplarCity>
- </zone>
- <zone type="America/Argentina/La_Rioja">
- <exemplarCity>Ла Риоха</exemplarCity>
- </zone>
- <zone type="America/Argentina/San_Luis">
- <exemplarCity>Сан Луи</exemplarCity>
- </zone>
- <zone type="America/Catamarca">
- <exemplarCity>Катамарка</exemplarCity>
- </zone>
- <zone type="America/Argentina/Salta">
- <exemplarCity>Салта</exemplarCity>
- </zone>
- <zone type="America/Jujuy">
- <exemplarCity>Жужуй</exemplarCity>
- </zone>
- <zone type="America/Argentina/Tucuman">
- <exemplarCity>Тукуман</exemplarCity>
- </zone>
- <zone type="America/Cordoba">
- <exemplarCity>Кордова</exemplarCity>
- </zone>
- <zone type="America/Buenos_Aires">
- <exemplarCity>Буэнос Айрес</exemplarCity>
- </zone>
- <zone type="Pacific/Pago_Pago">
- <exemplarCity>Паго Паго</exemplarCity>
- </zone>
- <zone type="Europe/Vienna">
- <exemplarCity>Вена</exemplarCity>
- </zone>
- <zone type="Australia/Perth">
- <exemplarCity>Перт</exemplarCity>
- </zone>
- <zone type="Australia/Eucla">
- <exemplarCity>Юкла</exemplarCity>
- </zone>
- <zone type="Australia/Darwin">
- <exemplarCity>Дарвин</exemplarCity>
- </zone>
- <zone type="Australia/Adelaide">
- <exemplarCity>Аделаида</exemplarCity>
- </zone>
- <zone type="Australia/Broken_Hill">
- <exemplarCity>Броукен Хил</exemplarCity>
- </zone>
- <zone type="Australia/Currie">
- <exemplarCity>Керри</exemplarCity>
- </zone>
- <zone type="Australia/Melbourne">
- <exemplarCity>Мелбурн</exemplarCity>
- </zone>
- <zone type="Australia/Hobart">
- <exemplarCity>Хобарт</exemplarCity>
- </zone>
- <zone type="Australia/Lindeman">
- <exemplarCity>Линдеман</exemplarCity>
- </zone>
- <zone type="Australia/Sydney">
- <exemplarCity>Сидней</exemplarCity>
- </zone>
- <zone type="Australia/Brisbane">
- <exemplarCity>Брисбен</exemplarCity>
- </zone>
- <zone type="Antarctica/Macquarie">
- <exemplarCity>Маккуори</exemplarCity>
- </zone>
- <zone type="Australia/Lord_Howe">
- <exemplarCity>Лорд Хау</exemplarCity>
- </zone>
- <zone type="America/Aruba">
- <exemplarCity>Аруба</exemplarCity>
- </zone>
- <zone type="Europe/Mariehamn">
- <exemplarCity>Мариехамн</exemplarCity>
- </zone>
- <zone type="Asia/Baku">
- <exemplarCity>Баку</exemplarCity>
- </zone>
- <zone type="Europe/Sarajevo">
- <exemplarCity>Сараево</exemplarCity>
- </zone>
- <zone type="America/Barbados">
- <exemplarCity>Барбадос</exemplarCity>
- </zone>
- <zone type="Asia/Dhaka">
- <exemplarCity>Дакка</exemplarCity>
- </zone>
- <zone type="Europe/Brussels">
- <exemplarCity>Брюссел</exemplarCity>
- </zone>
- <zone type="Africa/Ouagadougou">
- <exemplarCity>Уагадугу</exemplarCity>
- </zone>
- <zone type="Europe/Sofia">
- <exemplarCity>София</exemplarCity>
- </zone>
- <zone type="Asia/Bahrain">
- <exemplarCity>Бахрейн</exemplarCity>
- </zone>
- <zone type="Africa/Bujumbura">
- <exemplarCity>Бужумбура</exemplarCity>
- </zone>
- <zone type="Africa/Porto-Novo">
- <exemplarCity>Порто-Ново</exemplarCity>
- </zone>
- <zone type="America/St_Barthelemy">
- <exemplarCity>Ыйык Бартелеми</exemplarCity>
- </zone>
- <zone type="Atlantic/Bermuda">
- <exemplarCity>Бермуда</exemplarCity>
- </zone>
- <zone type="Asia/Brunei">
- <exemplarCity>Бруней</exemplarCity>
- </zone>
- <zone type="America/La_Paz">
- <exemplarCity>Ла Пас</exemplarCity>
- </zone>
- <zone type="America/Kralendijk">
- <exemplarCity>Кралендейк</exemplarCity>
- </zone>
- <zone type="America/Eirunepe">
- <exemplarCity>Эйрунепе</exemplarCity>
- </zone>
- <zone type="America/Rio_Branco">
- <exemplarCity>Рио Бранко</exemplarCity>
- </zone>
- <zone type="America/Porto_Velho">
- <exemplarCity>Порто Велио</exemplarCity>
- </zone>
- <zone type="America/Boa_Vista">
- <exemplarCity>Боа Виста</exemplarCity>
- </zone>
- <zone type="America/Manaus">
- <exemplarCity>Манаус</exemplarCity>
- </zone>
- <zone type="America/Cuiaba">
- <exemplarCity>Куйаба</exemplarCity>
- </zone>
- <zone type="America/Santarem">
- <exemplarCity>Сантарем</exemplarCity>
- </zone>
- <zone type="America/Campo_Grande">
- <exemplarCity>Кампо Гранде</exemplarCity>
- </zone>
- <zone type="America/Belem">
- <exemplarCity>Белем</exemplarCity>
- </zone>
- <zone type="America/Araguaina">
- <exemplarCity>Арагуаина</exemplarCity>
- </zone>
- <zone type="America/Sao_Paulo">
- <exemplarCity>Сао Пауло</exemplarCity>
- </zone>
- <zone type="America/Bahia">
- <exemplarCity>Байиа</exemplarCity>
- </zone>
- <zone type="America/Fortaleza">
- <exemplarCity>Форталеза</exemplarCity>
- </zone>
- <zone type="America/Maceio">
- <exemplarCity>Масейо</exemplarCity>
- </zone>
- <zone type="America/Recife">
- <exemplarCity>Ресифи</exemplarCity>
- </zone>
- <zone type="America/Noronha">
- <exemplarCity>Норониа</exemplarCity>
- </zone>
- <zone type="America/Nassau">
- <exemplarCity>Нассау</exemplarCity>
- </zone>
- <zone type="Asia/Thimphu">
- <exemplarCity>Тимпу</exemplarCity>
- </zone>
- <zone type="Africa/Gaborone">
- <exemplarCity>Габороне</exemplarCity>
- </zone>
- <zone type="Europe/Minsk">
- <exemplarCity>Минск</exemplarCity>
- </zone>
- <zone type="America/Belize">
- <exemplarCity>Белиз</exemplarCity>
- </zone>
- <zone type="America/Dawson">
- <exemplarCity>Доусон</exemplarCity>
- </zone>
- <zone type="America/Whitehorse">
- <exemplarCity>Уайтхорс</exemplarCity>
- </zone>
- <zone type="America/Inuvik">
- <exemplarCity>Инувик</exemplarCity>
- </zone>
- <zone type="America/Vancouver">
- <exemplarCity>Ванкувер</exemplarCity>
- </zone>
- <zone type="America/Dawson_Creek">
- <exemplarCity>Доусон Грек</exemplarCity>
- </zone>
- <zone type="America/Creston">
- <exemplarCity>Крестон</exemplarCity>
- </zone>
- <zone type="America/Yellowknife">
- <exemplarCity>Йеллоунайф</exemplarCity>
- </zone>
- <zone type="America/Edmonton">
- <exemplarCity>Эдмонтон</exemplarCity>
- </zone>
- <zone type="America/Swift_Current">
- <exemplarCity>Свифт Каррент</exemplarCity>
- </zone>
- <zone type="America/Cambridge_Bay">
- <exemplarCity>Кэмбриж Бей</exemplarCity>
- </zone>
- <zone type="America/Regina">
- <exemplarCity>Регина</exemplarCity>
- </zone>
- <zone type="America/Winnipeg">
- <exemplarCity>Уиннипег</exemplarCity>
- </zone>
- <zone type="America/Resolute">
- <exemplarCity>Резолут</exemplarCity>
- </zone>
- <zone type="America/Rainy_River">
- <exemplarCity>Рейни Ривер</exemplarCity>
- </zone>
- <zone type="America/Rankin_Inlet">
- <exemplarCity>Рэнкин Инлет</exemplarCity>
- </zone>
- <zone type="America/Coral_Harbour">
- <exemplarCity>Атикокан</exemplarCity>
- </zone>
- <zone type="America/Thunder_Bay">
- <exemplarCity>Сандер Бей</exemplarCity>
- </zone>
- <zone type="America/Nipigon">
- <exemplarCity>Нипигон</exemplarCity>
- </zone>
- <zone type="America/Toronto">
- <exemplarCity>Торонто</exemplarCity>
- </zone>
- <zone type="America/Montreal">
- <exemplarCity>Монреал</exemplarCity>
- </zone>
- <zone type="America/Iqaluit">
- <exemplarCity>Икалуит</exemplarCity>
- </zone>
- <zone type="America/Pangnirtung">
- <exemplarCity>Пангиртуӊ</exemplarCity>
- </zone>
- <zone type="America/Moncton">
- <exemplarCity>Монктон</exemplarCity>
- </zone>
- <zone type="America/Halifax">
- <exemplarCity>Галифакс</exemplarCity>
- </zone>
- <zone type="America/Goose_Bay">
- <exemplarCity>Гус Бей</exemplarCity>
- </zone>
- <zone type="America/Glace_Bay">
- <exemplarCity>Глейс Бей</exemplarCity>
- </zone>
- <zone type="America/Blanc-Sablon">
- <exemplarCity>Бланк-Саблон</exemplarCity>
- </zone>
- <zone type="America/St_Johns">
- <exemplarCity>Сент Жонс</exemplarCity>
- </zone>
- <zone type="Indian/Cocos">
- <exemplarCity>Кокос</exemplarCity>
- </zone>
- <zone type="Africa/Kinshasa">
- <exemplarCity>Киншаса</exemplarCity>
- </zone>
- <zone type="Africa/Lubumbashi">
- <exemplarCity>Лубумбаши</exemplarCity>
- </zone>
- <zone type="Africa/Bangui">
- <exemplarCity>Баги</exemplarCity>
- </zone>
- <zone type="Africa/Brazzaville">
- <exemplarCity>Браззавилл</exemplarCity>
- </zone>
- <zone type="Europe/Zurich">
- <exemplarCity>Цюрих</exemplarCity>
- </zone>
- <zone type="Africa/Abidjan">
- <exemplarCity>Абиджан</exemplarCity>
- </zone>
- <zone type="Pacific/Rarotonga">
- <exemplarCity>Раготонга</exemplarCity>
- </zone>
- <zone type="Pacific/Easter">
- <exemplarCity>Истер</exemplarCity>
- </zone>
- <zone type="America/Santiago">
- <exemplarCity>Сантиаго</exemplarCity>
- </zone>
- <zone type="Africa/Douala">
- <exemplarCity>Дуала</exemplarCity>
- </zone>
- <zone type="Asia/Kashgar">
- <exemplarCity>Кашкар</exemplarCity>
- </zone>
- <zone type="Asia/Urumqi">
- <exemplarCity>Үрүмчү</exemplarCity>
- </zone>
- <zone type="Asia/Chongqing">
- <exemplarCity>Чунцин</exemplarCity>
- </zone>
- <zone type="Asia/Shanghai">
- <exemplarCity>Шанхай</exemplarCity>
- </zone>
- <zone type="Asia/Harbin">
- <exemplarCity>Харбин</exemplarCity>
- </zone>
- <zone type="America/Bogota">
- <exemplarCity>Богота</exemplarCity>
- </zone>
- <zone type="America/Costa_Rica">
- <exemplarCity>Коста Рика</exemplarCity>
- </zone>
- <zone type="America/Havana">
- <exemplarCity>Гавана</exemplarCity>
- </zone>
- <zone type="Atlantic/Cape_Verde">
- <exemplarCity>Капе Верде</exemplarCity>
- </zone>
- <zone type="America/Curacao">
- <exemplarCity>Кюрасао</exemplarCity>
- </zone>
- <zone type="Indian/Christmas">
- <exemplarCity>Крисмас</exemplarCity>
- </zone>
- <zone type="Asia/Nicosia">
- <exemplarCity>Никосия</exemplarCity>
- </zone>
- <zone type="Europe/Prague">
- <exemplarCity>Прага</exemplarCity>
- </zone>
- <zone type="Europe/Busingen">
- <exemplarCity>Бузинген</exemplarCity>
- </zone>
- <zone type="Europe/Berlin">
- <exemplarCity>Берлин</exemplarCity>
- </zone>
- <zone type="Africa/Djibouti">
- <exemplarCity>Жибути</exemplarCity>
- </zone>
- <zone type="Europe/Copenhagen">
- <exemplarCity>Копенгаген</exemplarCity>
- </zone>
- <zone type="America/Dominica">
- <exemplarCity>Доминика</exemplarCity>
- </zone>
- <zone type="America/Santo_Domingo">
- <exemplarCity>Санто Доминго</exemplarCity>
- </zone>
- <zone type="Africa/Algiers">
- <exemplarCity>Алжир</exemplarCity>
- </zone>
- <zone type="Pacific/Galapagos">
- <exemplarCity>Галапагос</exemplarCity>
- </zone>
- <zone type="America/Guayaquil">
- <exemplarCity>Гуайакил</exemplarCity>
- </zone>
- <zone type="Europe/Tallinn">
- <exemplarCity>Таллинн</exemplarCity>
- </zone>
- <zone type="Africa/Cairo">
- <exemplarCity>Каир</exemplarCity>
- </zone>
- <zone type="Africa/El_Aaiun">
- <exemplarCity>Эл Айун</exemplarCity>
- </zone>
- <zone type="Africa/Asmera">
- <exemplarCity>Асмара</exemplarCity>
- </zone>
- <zone type="Atlantic/Canary">
- <exemplarCity>Канари</exemplarCity>
- </zone>
- <zone type="Africa/Ceuta">
- <exemplarCity>Сеута</exemplarCity>
- </zone>
- <zone type="Europe/Madrid">
- <exemplarCity>Мадрид</exemplarCity>
- </zone>
- <zone type="Africa/Addis_Ababa">
- <exemplarCity>Аддис Абеба</exemplarCity>
- </zone>
- <zone type="Europe/Helsinki">
- <exemplarCity>Хелсинки</exemplarCity>
- </zone>
- <zone type="Pacific/Fiji">
- <exemplarCity>Фижи</exemplarCity>
- </zone>
- <zone type="Atlantic/Stanley">
- <exemplarCity>Стэнли</exemplarCity>
- </zone>
- <zone type="Pacific/Truk">
- <exemplarCity>Чуук</exemplarCity>
- </zone>
- <zone type="Pacific/Ponape">
- <exemplarCity>Понпей</exemplarCity>
- </zone>
- <zone type="Pacific/Kosrae">
- <exemplarCity>Козрае</exemplarCity>
- </zone>
- <zone type="Atlantic/Faeroe">
- <exemplarCity>Фарер</exemplarCity>
- </zone>
- <zone type="Europe/Paris">
- <exemplarCity>Париж</exemplarCity>
- </zone>
- <zone type="Africa/Libreville">
- <exemplarCity>Либревилл</exemplarCity>
- </zone>
- <zone type="Europe/London">
- <long>
- <daylight>Британия жайкы убактысы</daylight>
- </long>
- <exemplarCity>Лондон</exemplarCity>
- </zone>
- <zone type="America/Grenada">
- <exemplarCity>Гренада</exemplarCity>
- </zone>
- <zone type="Asia/Tbilisi">
- <exemplarCity>Тбилиси</exemplarCity>
- </zone>
- <zone type="America/Cayenne">
- <exemplarCity>Кайен</exemplarCity>
- </zone>
- <zone type="Europe/Guernsey">
- <exemplarCity>Гернси</exemplarCity>
- </zone>
- <zone type="Africa/Accra">
- <exemplarCity>Аккра</exemplarCity>
- </zone>
- <zone type="Europe/Gibraltar">
- <exemplarCity>Гибралтар</exemplarCity>
- </zone>
- <zone type="America/Thule">
- <exemplarCity>Туле</exemplarCity>
- </zone>
- <zone type="America/Godthab">
- <exemplarCity>Нуук</exemplarCity>
- </zone>
- <zone type="America/Scoresbysund">
- <exemplarCity>Иттоккортоормиит</exemplarCity>
- </zone>
- <zone type="America/Danmarkshavn">
- <exemplarCity>Данмарксхавн</exemplarCity>
- </zone>
- <zone type="Africa/Banjul">
- <exemplarCity>Банжул</exemplarCity>
- </zone>
- <zone type="Africa/Conakry">
- <exemplarCity>Конакри</exemplarCity>
- </zone>
- <zone type="America/Guadeloupe">
- <exemplarCity>Гваделупе</exemplarCity>
- </zone>
- <zone type="Africa/Malabo">
- <exemplarCity>Малабо</exemplarCity>
- </zone>
- <zone type="Europe/Athens">
- <exemplarCity>Афины</exemplarCity>
- </zone>
- <zone type="Atlantic/South_Georgia">
- <exemplarCity>Түштүк Жоржия</exemplarCity>
- </zone>
- <zone type="America/Guatemala">
- <exemplarCity>Гватемала</exemplarCity>
- </zone>
- <zone type="Pacific/Guam">
- <exemplarCity>Гуам</exemplarCity>
- </zone>
- <zone type="Africa/Bissau">
- <exemplarCity>Бисау</exemplarCity>
- </zone>
- <zone type="America/Guyana">
- <exemplarCity>Гуйана</exemplarCity>
- </zone>
- <zone type="Asia/Hong_Kong">
- <exemplarCity>Гоӊ Коӊ</exemplarCity>
- </zone>
- <zone type="America/Tegucigalpa">
- <exemplarCity>Тегусигальпа</exemplarCity>
- </zone>
- <zone type="Europe/Zagreb">
- <exemplarCity>Загреб</exemplarCity>
- </zone>
- <zone type="America/Port-au-Prince">
- <exemplarCity>Порт-о-Пренс</exemplarCity>
- </zone>
- <zone type="Europe/Budapest">
- <exemplarCity>Будапешт</exemplarCity>
- </zone>
- <zone type="Asia/Jakarta">
- <exemplarCity>Жакарта</exemplarCity>
- </zone>
- <zone type="Asia/Pontianak">
- <exemplarCity>Понтианак</exemplarCity>
- </zone>
- <zone type="Asia/Makassar">
- <exemplarCity>Макассар</exemplarCity>
- </zone>
- <zone type="Asia/Jayapura">
- <exemplarCity>Жайапура</exemplarCity>
- </zone>
- <zone type="Europe/Dublin">
- <long>
- <daylight>Ирландия жайкы убактысы</daylight>
- </long>
- <exemplarCity>Дублин</exemplarCity>
- </zone>
- <zone type="Asia/Jerusalem">
- <exemplarCity>Иерусалим</exemplarCity>
- </zone>
- <zone type="Europe/Isle_of_Man">
- <exemplarCity>Мэн аралы</exemplarCity>
- </zone>
- <zone type="Asia/Calcutta">
- <exemplarCity>Калькутта</exemplarCity>
- </zone>
- <zone type="Indian/Chagos">
- <exemplarCity>Чагос</exemplarCity>
- </zone>
- <zone type="Asia/Baghdad">
- <exemplarCity>Багдад</exemplarCity>
- </zone>
- <zone type="Asia/Tehran">
- <exemplarCity>Тегеран</exemplarCity>
- </zone>
- <zone type="Atlantic/Reykjavik">
- <exemplarCity>Рейкьявик</exemplarCity>
- </zone>
- <zone type="Europe/Rome">
- <exemplarCity>Рим</exemplarCity>
- </zone>
- <zone type="Europe/Jersey">
- <exemplarCity>Жерси</exemplarCity>
- </zone>
- <zone type="America/Jamaica">
- <exemplarCity>Жамайка</exemplarCity>
- </zone>
- <zone type="Asia/Amman">
- <exemplarCity>Амман</exemplarCity>
- </zone>
- <zone type="Asia/Tokyo">
- <exemplarCity>Токио</exemplarCity>
- </zone>
- <zone type="Africa/Nairobi">
- <exemplarCity>Найроби</exemplarCity>
- </zone>
- <zone type="Asia/Bishkek">
- <exemplarCity>Бишкек</exemplarCity>
- </zone>
- <zone type="Asia/Phnom_Penh">
- <exemplarCity>Пномпень</exemplarCity>
- </zone>
- <zone type="Pacific/Enderbury">
- <exemplarCity>Эндербери</exemplarCity>
- </zone>
- <zone type="Pacific/Kiritimati">
- <exemplarCity>Киритимати</exemplarCity>
- </zone>
- <zone type="Pacific/Tarawa">
- <exemplarCity>Тарава</exemplarCity>
- </zone>
- <zone type="Indian/Comoro">
- <exemplarCity>Коморо</exemplarCity>
- </zone>
- <zone type="America/St_Kitts">
- <exemplarCity>Ыйык Китс</exemplarCity>
- </zone>
- <zone type="Asia/Pyongyang">
- <exemplarCity>Пхенйан</exemplarCity>
- </zone>
- <zone type="Asia/Seoul">
- <exemplarCity>Сеул</exemplarCity>
- </zone>
- <zone type="Asia/Kuwait">
- <exemplarCity>Кувейт</exemplarCity>
- </zone>
- <zone type="America/Cayman">
- <exemplarCity>Кайман</exemplarCity>
- </zone>
- <zone type="Asia/Aqtau">
- <exemplarCity>Актау</exemplarCity>
- </zone>
- <zone type="Asia/Oral">
- <exemplarCity>Орал</exemplarCity>
- </zone>
- <zone type="Asia/Aqtobe">
- <exemplarCity>Актобе</exemplarCity>
- </zone>
- <zone type="Asia/Qyzylorda">
- <exemplarCity>Кызылорда</exemplarCity>
- </zone>
- <zone type="Asia/Almaty">
- <exemplarCity>Алматы</exemplarCity>
- </zone>
- <zone type="Asia/Vientiane">
- <exemplarCity>Виентиан</exemplarCity>
- </zone>
- <zone type="Asia/Beirut">
- <exemplarCity>Бейрут</exemplarCity>
- </zone>
- <zone type="America/St_Lucia">
- <exemplarCity>Санта Лючия</exemplarCity>
- </zone>
- <zone type="Europe/Vaduz">
- <exemplarCity>Фадуц</exemplarCity>
- </zone>
- <zone type="Asia/Colombo">
- <exemplarCity>Коломбо</exemplarCity>
- </zone>
- <zone type="Africa/Monrovia">
- <exemplarCity>Монровиа</exemplarCity>
- </zone>
- <zone type="Africa/Maseru">
- <exemplarCity>Масеру</exemplarCity>
- </zone>
- <zone type="Europe/Vilnius">
- <exemplarCity>Вилнюс</exemplarCity>
- </zone>
- <zone type="Europe/Luxembourg">
- <exemplarCity>Люксембург</exemplarCity>
- </zone>
- <zone type="Europe/Riga">
- <exemplarCity>Рига</exemplarCity>
- </zone>
- <zone type="Africa/Tripoli">
- <exemplarCity>Триполи</exemplarCity>
- </zone>
- <zone type="Africa/Casablanca">
- <exemplarCity>Касабланка</exemplarCity>
- </zone>
- <zone type="Europe/Monaco">
- <exemplarCity>Монако</exemplarCity>
- </zone>
- <zone type="Europe/Chisinau">
- <exemplarCity>Кишинев</exemplarCity>
- </zone>
- <zone type="Europe/Podgorica">
- <exemplarCity>Подгорица</exemplarCity>
- </zone>
- <zone type="America/Marigot">
- <exemplarCity>Мариго</exemplarCity>
- </zone>
- <zone type="Indian/Antananarivo">
- <exemplarCity>Антананариво</exemplarCity>
- </zone>
- <zone type="Pacific/Kwajalein">
- <exemplarCity>Куажалейн</exemplarCity>
- </zone>
- <zone type="Pacific/Majuro">
- <exemplarCity>Мажуро</exemplarCity>
- </zone>
- <zone type="Europe/Skopje">
- <exemplarCity>Скопйе</exemplarCity>
- </zone>
- <zone type="Africa/Bamako">
- <exemplarCity>Бамако</exemplarCity>
- </zone>
- <zone type="Asia/Rangoon">
- <exemplarCity>Рангун</exemplarCity>
- </zone>
- <zone type="Asia/Hovd">
- <exemplarCity>Ховд</exemplarCity>
- </zone>
- <zone type="Asia/Ulaanbaatar">
- <exemplarCity>Улан Батор</exemplarCity>
- </zone>
- <zone type="Asia/Choibalsan">
- <exemplarCity>Чойбалсан</exemplarCity>
- </zone>
- <zone type="Asia/Macau">
- <exemplarCity>Макау</exemplarCity>
- </zone>
- <zone type="Pacific/Saipan">
- <exemplarCity>Сайпан</exemplarCity>
- </zone>
- <zone type="America/Martinique">
- <exemplarCity>Мартиник</exemplarCity>
- </zone>
- <zone type="Africa/Nouakchott">
- <exemplarCity>Нуакшот</exemplarCity>
- </zone>
- <zone type="America/Montserrat">
- <exemplarCity>Монсерат</exemplarCity>
- </zone>
- <zone type="Europe/Malta">
- <exemplarCity>Мальта</exemplarCity>
- </zone>
- <zone type="Indian/Mauritius">
- <exemplarCity>Маврикий</exemplarCity>
- </zone>
- <zone type="Indian/Maldives">
- <exemplarCity>Малдивз</exemplarCity>
- </zone>
- <zone type="Africa/Blantyre">
- <exemplarCity>Блантайр</exemplarCity>
- </zone>
- <zone type="America/Tijuana">
- <exemplarCity>Тихуана</exemplarCity>
- </zone>
- <zone type="America/Santa_Isabel">
- <exemplarCity>Санта Изабел</exemplarCity>
- </zone>
- <zone type="America/Hermosillo">
- <exemplarCity>Эрмосийо</exemplarCity>
- </zone>
- <zone type="America/Mazatlan">
- <exemplarCity>Мазатлан</exemplarCity>
- </zone>
- <zone type="America/Chihuahua">
- <exemplarCity>Чихуахуа</exemplarCity>
- </zone>
- <zone type="America/Bahia_Banderas">
- <exemplarCity>Баийа Бандерас</exemplarCity>
- </zone>
- <zone type="America/Ojinaga">
- <exemplarCity>Охинага</exemplarCity>
- </zone>
- <zone type="America/Monterrey">
- <exemplarCity>Монтерей</exemplarCity>
- </zone>
- <zone type="America/Mexico_City">
- <exemplarCity>Мехико шаары</exemplarCity>
- </zone>
- <zone type="America/Matamoros">
- <exemplarCity>Матаморос</exemplarCity>
- </zone>
- <zone type="America/Merida">
- <exemplarCity>Мерида</exemplarCity>
- </zone>
- <zone type="America/Cancun">
- <exemplarCity>Канкун</exemplarCity>
- </zone>
- <zone type="Asia/Kuala_Lumpur">
- <exemplarCity>Куала Лумпур</exemplarCity>
- </zone>
- <zone type="Asia/Kuching">
- <exemplarCity>Кучиӊ</exemplarCity>
- </zone>
- <zone type="Africa/Maputo">
- <exemplarCity>Мапуто</exemplarCity>
- </zone>
- <zone type="Africa/Windhoek">
- <exemplarCity>Уиндхук</exemplarCity>
- </zone>
- <zone type="Pacific/Noumea">
- <exemplarCity>Нумеа</exemplarCity>
- </zone>
- <zone type="Africa/Niamey">
- <exemplarCity>Нйаме</exemplarCity>
- </zone>
- <zone type="Pacific/Norfolk">
- <exemplarCity>Норфолк</exemplarCity>
- </zone>
- <zone type="Africa/Lagos">
- <exemplarCity>Лагос</exemplarCity>
- </zone>
- <zone type="America/Managua">
- <exemplarCity>Манагуа</exemplarCity>
- </zone>
- <zone type="Europe/Amsterdam">
- <exemplarCity>Амстердам</exemplarCity>
- </zone>
- <zone type="Europe/Oslo">
- <exemplarCity>Осло</exemplarCity>
- </zone>
- <zone type="Asia/Katmandu">
- <exemplarCity>Катманду</exemplarCity>
- </zone>
- <zone type="Pacific/Nauru">
- <exemplarCity>Науру</exemplarCity>
- </zone>
- <zone type="Pacific/Niue">
- <exemplarCity>Ниуэ</exemplarCity>
- </zone>
- <zone type="Pacific/Chatham">
- <exemplarCity>Чатем</exemplarCity>
- </zone>
- <zone type="Pacific/Auckland">
- <exemplarCity>Оклэнд</exemplarCity>
- </zone>
- <zone type="Asia/Muscat">
- <exemplarCity>Мускат</exemplarCity>
- </zone>
- <zone type="America/Panama">
- <exemplarCity>Панама</exemplarCity>
- </zone>
- <zone type="America/Lima">
- <exemplarCity>Лима</exemplarCity>
- </zone>
- <zone type="Pacific/Tahiti">
- <exemplarCity>Таити</exemplarCity>
- </zone>
- <zone type="Pacific/Marquesas">
- <exemplarCity>Маркезас</exemplarCity>
- </zone>
- <zone type="Pacific/Gambier">
- <exemplarCity>Гамбие</exemplarCity>
- </zone>
- <zone type="Pacific/Port_Moresby">
- <exemplarCity>Порт Моэрсби</exemplarCity>
- </zone>
- <zone type="Asia/Manila">
- <exemplarCity>Манила</exemplarCity>
- </zone>
- <zone type="Asia/Karachi">
- <exemplarCity>Карачи</exemplarCity>
- </zone>
- <zone type="Europe/Warsaw">
- <exemplarCity>Варшава</exemplarCity>
- </zone>
- <zone type="America/Miquelon">
- <exemplarCity>Микелон</exemplarCity>
- </zone>
- <zone type="Pacific/Pitcairn">
- <exemplarCity>Питкэрн</exemplarCity>
- </zone>
- <zone type="America/Puerto_Rico">
- <exemplarCity>Пуэрто Рико</exemplarCity>
- </zone>
- <zone type="Asia/Gaza">
- <exemplarCity>Газа</exemplarCity>
- </zone>
- <zone type="Asia/Hebron">
- <exemplarCity>Хеброн</exemplarCity>
- </zone>
- <zone type="Atlantic/Azores">
- <exemplarCity>Азорс</exemplarCity>
- </zone>
- <zone type="Atlantic/Madeira">
- <exemplarCity>Мадейра</exemplarCity>
- </zone>
- <zone type="Europe/Lisbon">
- <exemplarCity>Лиссабон</exemplarCity>
- </zone>
- <zone type="Pacific/Palau">
- <exemplarCity>Палау</exemplarCity>
- </zone>
- <zone type="America/Asuncion">
- <exemplarCity>Асунсион</exemplarCity>
- </zone>
- <zone type="Asia/Qatar">
- <exemplarCity>Катар</exemplarCity>
- </zone>
- <zone type="Indian/Reunion">
- <exemplarCity>Реюнион</exemplarCity>
- </zone>
- <zone type="Europe/Bucharest">
- <exemplarCity>Бухарест</exemplarCity>
- </zone>
- <zone type="Europe/Belgrade">
- <exemplarCity>Белград</exemplarCity>
- </zone>
- <zone type="Europe/Kaliningrad">
- <exemplarCity>Калининград</exemplarCity>
- </zone>
- <zone type="Europe/Moscow">
- <exemplarCity>Москва</exemplarCity>
- </zone>
- <zone type="Europe/Volgograd">
- <exemplarCity>Волгоград</exemplarCity>
- </zone>
- <zone type="Europe/Samara">
- <exemplarCity>Самара</exemplarCity>
- </zone>
- <zone type="Asia/Yekaterinburg">
- <exemplarCity>Екатеринбург</exemplarCity>
- </zone>
- <zone type="Asia/Omsk">
- <exemplarCity>Омск</exemplarCity>
- </zone>
- <zone type="Asia/Novosibirsk">
- <exemplarCity>Новосибирск</exemplarCity>
- </zone>
- <zone type="Asia/Novokuznetsk">
- <exemplarCity>Новокузнецк</exemplarCity>
- </zone>
- <zone type="Asia/Krasnoyarsk">
- <exemplarCity>Красноярск</exemplarCity>
- </zone>
- <zone type="Asia/Irkutsk">
- <exemplarCity>Иркутск</exemplarCity>
- </zone>
- <zone type="Asia/Yakutsk">
- <exemplarCity>Якутск</exemplarCity>
- </zone>
- <zone type="Asia/Vladivostok">
- <exemplarCity>Владивосток</exemplarCity>
- </zone>
- <zone type="Asia/Khandyga">
- <exemplarCity>Кандыга</exemplarCity>
- </zone>
- <zone type="Asia/Sakhalin">
- <exemplarCity>Сахалин</exemplarCity>
- </zone>
- <zone type="Asia/Ust-Nera">
- <exemplarCity>Усть-Нера</exemplarCity>
- </zone>
- <zone type="Asia/Magadan">
- <exemplarCity>Магадан</exemplarCity>
- </zone>
- <zone type="Asia/Kamchatka">
- <exemplarCity>Камчатка</exemplarCity>
- </zone>
- <zone type="Asia/Anadyr">
- <exemplarCity>Анадыр</exemplarCity>
- </zone>
- <zone type="Africa/Kigali">
- <exemplarCity>Кигали</exemplarCity>
- </zone>
- <zone type="Asia/Riyadh">
- <exemplarCity>Рийад</exemplarCity>
- </zone>
- <zone type="Pacific/Guadalcanal">
- <exemplarCity>Гуадалканал</exemplarCity>
- </zone>
- <zone type="Indian/Mahe">
- <exemplarCity>Маэ</exemplarCity>
- </zone>
- <zone type="Africa/Khartoum">
- <exemplarCity>Картум</exemplarCity>
- </zone>
- <zone type="Europe/Stockholm">
- <exemplarCity>Стокголм</exemplarCity>
- </zone>
- <zone type="Asia/Singapore">
- <exemplarCity>Сингапур</exemplarCity>
- </zone>
- <zone type="Atlantic/St_Helena">
- <exemplarCity>Ыйык Елена</exemplarCity>
- </zone>
- <zone type="Europe/Ljubljana">
- <exemplarCity>Любляна</exemplarCity>
- </zone>
- <zone type="Arctic/Longyearbyen">
- <exemplarCity>Лонгйербиен</exemplarCity>
- </zone>
- <zone type="Europe/Bratislava">
- <exemplarCity>Братислава</exemplarCity>
- </zone>
- <zone type="Africa/Freetown">
- <exemplarCity>Фритаун</exemplarCity>
- </zone>
- <zone type="Europe/San_Marino">
- <exemplarCity>Сан Марино</exemplarCity>
- </zone>
- <zone type="Africa/Dakar">
- <exemplarCity>Дакар</exemplarCity>
- </zone>
- <zone type="Africa/Mogadishu">
- <exemplarCity>Могадишу</exemplarCity>
- </zone>
- <zone type="America/Paramaribo">
- <exemplarCity>Парамарибо</exemplarCity>
- </zone>
- <zone type="Africa/Juba">
- <exemplarCity>Жуба</exemplarCity>
- </zone>
- <zone type="Africa/Sao_Tome">
- <exemplarCity>Сао Томе</exemplarCity>
- </zone>
- <zone type="America/El_Salvador">
- <exemplarCity>Эл Салвадор</exemplarCity>
- </zone>
- <zone type="America/Lower_Princes">
- <exemplarCity>Лоуэр Принсес Куате</exemplarCity>
- </zone>
- <zone type="Asia/Damascus">
- <exemplarCity>Дамаск</exemplarCity>
- </zone>
- <zone type="Africa/Mbabane">
- <exemplarCity>Мбабане</exemplarCity>
- </zone>
- <zone type="America/Grand_Turk">
- <exemplarCity>Гранд Түрк</exemplarCity>
- </zone>
- <zone type="Africa/Ndjamena">
- <exemplarCity>Нжамена</exemplarCity>
- </zone>
- <zone type="Indian/Kerguelen">
- <exemplarCity>Кергелен</exemplarCity>
- </zone>
- <zone type="Africa/Lome">
- <exemplarCity>Ломе</exemplarCity>
- </zone>
- <zone type="Asia/Bangkok">
- <exemplarCity>Бангкок</exemplarCity>
- </zone>
- <zone type="Asia/Dushanbe">
- <exemplarCity>Душамбе</exemplarCity>
- </zone>
- <zone type="Pacific/Fakaofo">
- <exemplarCity>Факаофо</exemplarCity>
- </zone>
- <zone type="Asia/Dili">
- <exemplarCity>Дили</exemplarCity>
- </zone>
- <zone type="Asia/Ashgabat">
- <exemplarCity>Ашгабат</exemplarCity>
- </zone>
- <zone type="Africa/Tunis">
- <exemplarCity>Тунис</exemplarCity>
- </zone>
- <zone type="Pacific/Tongatapu">
- <exemplarCity>Тонгатапу</exemplarCity>
- </zone>
- <zone type="Europe/Istanbul">
- <exemplarCity>Стамбул</exemplarCity>
- </zone>
- <zone type="America/Port_of_Spain">
- <exemplarCity>Порт оф Спейн</exemplarCity>
- </zone>
- <zone type="Pacific/Funafuti">
- <exemplarCity>Фунафути</exemplarCity>
- </zone>
- <zone type="Asia/Taipei">
- <exemplarCity>Тайпей</exemplarCity>
- </zone>
- <zone type="Africa/Dar_es_Salaam">
- <exemplarCity>Дар эс Салаам</exemplarCity>
- </zone>
- <zone type="Europe/Uzhgorod">
- <exemplarCity>Ужгород</exemplarCity>
- </zone>
- <zone type="Europe/Kiev">
- <exemplarCity>Киев</exemplarCity>
- </zone>
- <zone type="Europe/Simferopol">
- <exemplarCity>Симферополь</exemplarCity>
- </zone>
- <zone type="Europe/Zaporozhye">
- <exemplarCity>Запорожье</exemplarCity>
- </zone>
- <zone type="Africa/Kampala">
- <exemplarCity>Кампала</exemplarCity>
- </zone>
- <zone type="Pacific/Midway">
- <exemplarCity>Мидуэй</exemplarCity>
- </zone>
- <zone type="Pacific/Johnston">
- <exemplarCity>Жонстон</exemplarCity>
- </zone>
- <zone type="Pacific/Wake">
- <exemplarCity>Уейк</exemplarCity>
- </zone>
- <zone type="America/Adak">
- <exemplarCity>Адак</exemplarCity>
- </zone>
- <zone type="America/Nome">
- <exemplarCity>Ноум</exemplarCity>
- </zone>
- <zone type="Pacific/Honolulu">
- <exemplarCity>Гонолулу</exemplarCity>
- </zone>
- <zone type="America/Anchorage">
- <exemplarCity>Анкориж</exemplarCity>
- </zone>
- <zone type="America/Yakutat">
- <exemplarCity>Якутат</exemplarCity>
- </zone>
- <zone type="America/Sitka">
- <exemplarCity>Ситка</exemplarCity>
- </zone>
- <zone type="America/Juneau">
- <exemplarCity>Жуно</exemplarCity>
- </zone>
- <zone type="America/Metlakatla">
- <exemplarCity>Метлакатла</exemplarCity>
- </zone>
- <zone type="America/Los_Angeles">
- <exemplarCity>Лос Анжелес</exemplarCity>
- </zone>
- <zone type="America/Boise">
- <exemplarCity>Бойсе</exemplarCity>
- </zone>
- <zone type="America/Phoenix">
- <exemplarCity>Феникс</exemplarCity>
- </zone>
- <zone type="America/Shiprock">
- <exemplarCity>Шипрок</exemplarCity>
- </zone>
- <zone type="America/Denver">
- <exemplarCity>Денвер</exemplarCity>
- </zone>
- <zone type="America/North_Dakota/Beulah">
- <exemplarCity>Беула, Түндүк Дакота</exemplarCity>
- </zone>
- <zone type="America/North_Dakota/New_Salem">
- <exemplarCity>Ню Салем, Түндүк Дакота</exemplarCity>
- </zone>
- <zone type="America/North_Dakota/Center">
- <exemplarCity>Сентер, Түндүк Дакота</exemplarCity>
- </zone>
- <zone type="America/Chicago">
- <exemplarCity>Чикаго</exemplarCity>
- </zone>
- <zone type="America/Menominee">
- <exemplarCity>Меномини</exemplarCity>
- </zone>
- <zone type="America/Indiana/Vincennes">
- <exemplarCity>Венсен, Индиана</exemplarCity>
- </zone>
- <zone type="America/Indiana/Petersburg">
- <exemplarCity>Питерсбург, Индиана</exemplarCity>
- </zone>
- <zone type="America/Indiana/Tell_City">
- <exemplarCity>Телл шаары, Индиана</exemplarCity>
- </zone>
- <zone type="America/Indiana/Knox">
- <exemplarCity>Нокс, Индиана</exemplarCity>
- </zone>
- <zone type="America/Indiana/Winamac">
- <exemplarCity>Уинамак, Индиана</exemplarCity>
- </zone>
- <zone type="America/Indiana/Marengo">
- <exemplarCity>Маренго, Индиана</exemplarCity>
- </zone>
- <zone type="America/Indianapolis">
- <exemplarCity>Индианаполис</exemplarCity>
- </zone>
- <zone type="America/Louisville">
- <exemplarCity>Луизвилл</exemplarCity>
- </zone>
- <zone type="America/Indiana/Vevay">
- <exemplarCity>Вивей, Индиана</exemplarCity>
- </zone>
- <zone type="America/Kentucky/Monticello">
- <exemplarCity>Монтичелло, Кентукки</exemplarCity>
- </zone>
- <zone type="America/Detroit">
- <exemplarCity>Детройт</exemplarCity>
- </zone>
- <zone type="America/New_York">
- <exemplarCity>Нью Йорк</exemplarCity>
- </zone>
- <zone type="America/Montevideo">
- <exemplarCity>Монтевидео</exemplarCity>
- </zone>
- <zone type="Asia/Samarkand">
- <exemplarCity>Самарканд</exemplarCity>
- </zone>
- <zone type="Asia/Tashkent">
- <exemplarCity>Ташкент</exemplarCity>
- </zone>
- <zone type="Europe/Vatican">
- <exemplarCity>Ватикан</exemplarCity>
- </zone>
- <zone type="America/St_Vincent">
- <exemplarCity>Ыйык Винсент</exemplarCity>
- </zone>
- <zone type="America/Caracas">
- <exemplarCity>Каракас</exemplarCity>
- </zone>
- <zone type="America/Tortola">
- <exemplarCity>Тортола</exemplarCity>
- </zone>
- <zone type="America/St_Thomas">
- <exemplarCity>Ыйык Томас</exemplarCity>
- </zone>
- <zone type="Asia/Saigon">
- <exemplarCity>Хо Ши Мин</exemplarCity>
- </zone>
- <zone type="Pacific/Efate">
- <exemplarCity>Эфат</exemplarCity>
- </zone>
- <zone type="Pacific/Wallis">
- <exemplarCity>Уолис</exemplarCity>
- </zone>
- <zone type="Pacific/Apia">
- <exemplarCity>Апиа</exemplarCity>
- </zone>
- <zone type="Asia/Aden">
- <exemplarCity>Аден</exemplarCity>
- </zone>
- <zone type="Indian/Mayotte">
- <exemplarCity>Майотт</exemplarCity>
- </zone>
- <zone type="Africa/Johannesburg">
- <exemplarCity>Йоханнесбург</exemplarCity>
- </zone>
- <zone type="Africa/Lusaka">
- <exemplarCity>Лусака</exemplarCity>
- </zone>
- <zone type="Africa/Harare">
- <exemplarCity>Хараре</exemplarCity>
- </zone>
- <metazone type="Afghanistan">
- <long>
- <standard>Афганистан убактысы</standard>
- </long>
- </metazone>
- <metazone type="Africa_Central">
- <long>
- <standard>Борбордук Африка убактысы</standard>
- </long>
- </metazone>
- <metazone type="Africa_Eastern">
- <long>
- <standard>Чыгыш Африка убактысы</standard>
- </long>
- </metazone>
- <metazone type="Africa_Southern">
- <long>
- <standard>Түштүк Африка убактысы</standard>
- </long>
- </metazone>
- <metazone type="Africa_Western">
- <long>
- <generic>Батыш Африка убактысы</generic>
- <standard>Батыш Африка стандарт убактысы</standard>
- <daylight>Батыш Африка жайкы убактысы</daylight>
- </long>
- </metazone>
- <metazone type="Alaska">
- <long>
- <generic>Аляска убактысы</generic>
- <standard>Аляска стандарт убактысы</standard>
- <daylight>Аляска үнөмдөө убактысы</daylight>
- </long>
- </metazone>
- <metazone type="Amazon">
- <long>
- <generic>Амазон убактысы</generic>
- <standard>Амазон стандарт убактысы</standard>
- <daylight>Амазон жайкы убактысы</daylight>
- </long>
- </metazone>
- <metazone type="America_Central">
- <long>
- <generic>Түндүк Америка борбордук убактысы</generic>
- <standard>Түндүк Америка борбордук стандарт убактысы</standard>
- <daylight>Түндүк Америка борбордук үнөмдөө убактысы</daylight>
- </long>
- </metazone>
- <metazone type="America_Eastern">
- <long>
- <generic>Түндүк Америка чыгыш убактысы</generic>
- <standard>Түндүк Америка чыгыш стандарт убактысы</standard>
- <daylight>Түндүк Америка чыгыш үнөмдөө убактысы</daylight>
- </long>
- </metazone>
- <metazone type="America_Mountain">
- <long>
- <generic>Түндүк Америка тоолук убактысы</generic>
- <standard>Түндүк Америка тоолук стандарт убактысы</standard>
- <daylight>Түндүк Америка тоолук үнөмдөө убактысы</daylight>
- </long>
- </metazone>
- <metazone type="America_Pacific">
- <long>
- <generic>Түндүк Америка Тынч океандык убактысы</generic>
- <standard>Түндүк Америка Тынч океандык стандарт убактысы</standard>
- <daylight>Түндүк Америка Тынч океандык үнөмдөө убактысы</daylight>
- </long>
- </metazone>
- <metazone type="Arabian">
- <long>
- <generic>Арабия убактысы</generic>
- <standard>Арабия стандарт убактысы</standard>
- <daylight>Арабия үнөмдөө убактысы</daylight>
- </long>
- </metazone>
- <metazone type="Argentina">
- <long>
- <generic>Аргентина убактысы</generic>
- <standard>Аргентина стандарт убактысы</standard>
- <daylight>Аргентина жайкы убактысы</daylight>
- </long>
- </metazone>
- <metazone type="Argentina_Western">
- <long>
- <generic>Батыш Аргентина убактысы</generic>
- <standard>Батыш Аргентина стандарт убактысы</standard>
- <daylight>Батыш Аргентина жайкы убактысы</daylight>
- </long>
- </metazone>
- <metazone type="Armenia">
- <long>
- <generic>Армения убактысы</generic>
- <standard>Армения стандарт убактысы</standard>
- <daylight>Армения жайкы убактысы</daylight>
- </long>
- </metazone>
- <metazone type="Atlantic">
- <long>
- <generic>Атлантика убактысы</generic>
- <standard>Атлантика стандарт убактысы</standard>
- <daylight>Атлантика үнөмдөө убактысы</daylight>
- </long>
- </metazone>
- <metazone type="Australia_Central">
- <long>
- <generic>Австралия борбордук убактысы</generic>
- <standard>Австралия борбордук стандарт убактысы</standard>
- <daylight>Австралия борбордук үнөмдөө убактысы</daylight>
- </long>
- </metazone>
- <metazone type="Australia_CentralWestern">
- <long>
- <generic>Австралия борбордук батыш убактысы</generic>
- <standard>Австралия борбордук батыш стандарт убактысы</standard>
- <daylight>Австралия борбордук батыш үнөмдөө убактысы</daylight>
- </long>
- </metazone>
- <metazone type="Australia_Eastern">
- <long>
- <generic>Австралия чыгыш убактысы</generic>
- <standard>Австралия чыгыш стандарт убактысы</standard>
- <daylight>Австралия чыгыш үнөмдөө убактысы</daylight>
- </long>
- </metazone>
- <metazone type="Australia_Western">
- <long>
- <generic>Австралия батыш убактысы</generic>
- <standard>Австралия батыш стандарт убактысы</standard>
- <daylight>Австралия батыш үнөмдөө убактысы</daylight>
- </long>
- </metazone>
- <metazone type="Azerbaijan">
- <long>
- <generic>Азербайжан убактысы</generic>
- <standard>Азербайжан стандарт убактысы</standard>
- <daylight>Азербайжан жайкы убактысы</daylight>
- </long>
- </metazone>
- <metazone type="Azores">
- <long>
- <generic>Азорс убактысы</generic>
- <standard>Азорс стандарт убактысы</standard>
- <daylight>Азорс жайкы убактысы</daylight>
- </long>
- </metazone>
- <metazone type="Bangladesh">
- <long>
- <generic>Бангладеш убактысы</generic>
- <standard>Бангладеш стандарт убактысы</standard>
- <daylight>Бангладеш жайкы убактысы</daylight>
- </long>
- </metazone>
- <metazone type="Bhutan">
- <long>
- <standard>Бутан убактысы</standard>
- </long>
- </metazone>
- <metazone type="Bolivia">
- <long>
- <standard>Боливия убактысы</standard>
- </long>
- </metazone>
- <metazone type="Brasilia">
- <long>
- <generic>Бразилия убактысы</generic>
- <standard>Бразилия стандарт убактысы</standard>
- <daylight>Бразилия жайкы убактысы</daylight>
- </long>
- </metazone>
- <metazone type="Brunei">
- <long>
- <standard>Бруней Даруссалам убактысы</standard>
- </long>
- </metazone>
- <metazone type="Cape_Verde">
- <long>
- <generic>Капе Верде убактысы</generic>
- <standard>Капе Верде стандарт убактысы</standard>
- <daylight>Капе Верде жайкы убактысы</daylight>
- </long>
- </metazone>
- <metazone type="Chamorro">
- <long>
- <standard>Чаморро убактысы</standard>
- </long>
- </metazone>
- <metazone type="Chatham">
- <long>
- <generic>Чатам убактысы</generic>
- <standard>Чатам стандарт убактысы</standard>
- <daylight>Чатам үнөмдөө убактысы</daylight>
- </long>
- </metazone>
- <metazone type="Chile">
- <long>
- <generic>Чили убактысы</generic>
- <standard>Чили стандарт убактысы</standard>
- <daylight>Чили жайкы убактысы</daylight>
- </long>
- </metazone>
- <metazone type="China">
- <long>
- <generic>Кытай убактысы</generic>
- <standard>Кытай стандарт убактысы</standard>
- <daylight>Кытай үнөмдөө убактысы</daylight>
- </long>
- </metazone>
- <metazone type="Choibalsan">
- <long>
- <generic>Чойбалсан убактысы</generic>
- <standard>Чойбалсан стандарт убактысы</standard>
- <daylight>Чойбалсан жайкы убактысы</daylight>
- </long>
- </metazone>
- <metazone type="Christmas">
- <long>
- <standard>Крисмас убактысы</standard>
- </long>
- </metazone>
- <metazone type="Cocos">
- <long>
- <standard>Кокос убактысы</standard>
- </long>
- </metazone>
- <metazone type="Colombia">
- <long>
- <generic>Колумбия убактысы</generic>
- <standard>Колумбия стандарт убактысы</standard>
- <daylight>Колумбия жайкы убактысы</daylight>
- </long>
- </metazone>
- <metazone type="Cook">
- <long>
- <generic>Кук аралдарынын убактысы</generic>
- <standard>Кук аралдарынын стандарт убактысы</standard>
- <daylight>Кук аралдарынын жарым жай убактысы</daylight>
- </long>
- </metazone>
- <metazone type="Cuba">
- <long>
- <generic>Куба убактысы</generic>
- <standard>Куба стандарт убактысы</standard>
- <daylight>Куба үнөмдөө убактысы</daylight>
- </long>
- </metazone>
- <metazone type="Davis">
- <long>
- <standard>Дэвис убактысы</standard>
- </long>
- </metazone>
- <metazone type="DumontDUrville">
- <long>
- <standard>Дүмон-д-Өрвил убактысы</standard>
- </long>
- </metazone>
- <metazone type="East_Timor">
- <long>
- <standard>Чыгыш Тимор убактысы</standard>
- </long>
- </metazone>
- <metazone type="Easter">
- <long>
- <generic>Истер убактысы</generic>
- <standard>Истер стандарт убактысы</standard>
- <daylight>Истер жайкы убактысы</daylight>
- </long>
- </metazone>
- <metazone type="Ecuador">
- <long>
- <standard>Экуадор убактысы</standard>
- </long>
- </metazone>
- <metazone type="Europe_Central">
- <long>
- <generic>Борбордук Европа убактысы</generic>
- <standard>Борбордук Европа стандарт убактысы</standard>
- <daylight>Борбордук Европа жайкы убактысы</daylight>
- </long>
- </metazone>
- <metazone type="Europe_Eastern">
- <long>
- <generic>Чыгыш Европа убактысы</generic>
- <standard>Чыгыш Европа стандарт убактысы</standard>
- <daylight>Чыгыш Европа жайкы убактысы</daylight>
- </long>
- </metazone>
- <metazone type="Europe_Western">
- <long>
- <generic>Батыш Европа убактысы</generic>
- <standard>Батыш Европа стандарт убактысы</standard>
- <daylight>Батыш Европа жайкы убактысы</daylight>
- </long>
- </metazone>
- <metazone type="Falkland">
- <long>
- <generic>Фолкленд убактысы</generic>
- <standard>Фолкленд стандарт убактысы</standard>
- <daylight>Фолкленд жайкы убактысы</daylight>
- </long>
- </metazone>
- <metazone type="Fiji">
- <long>
- <generic>Фижи убактысы</generic>
- <standard>Фижи стандарт убактысы</standard>
- <daylight>Фижи жайкы убактысы</daylight>
- </long>
- </metazone>
- <metazone type="French_Guiana">
- <long>
- <standard>Френч Гуйана убактысы</standard>
- </long>
- </metazone>
- <metazone type="French_Southern">
- <long>
- <standard>Френч Түштүк жана Антарктик убактысы</standard>
- </long>
- </metazone>
- <metazone type="Galapagos">
- <long>
- <standard>Галапагос убактысы</standard>
- </long>
- </metazone>
- <metazone type="Gambier">
- <long>
- <standard>Гамбие убактысы</standard>
- </long>
- </metazone>
- <metazone type="Georgia">
- <long>
- <generic>Грузия убактысы</generic>
- <standard>Грузия стандарт убактысы</standard>
- <daylight>Грузия жайкы убактысы</daylight>
- </long>
- </metazone>
- <metazone type="Gilbert_Islands">
- <long>
- <standard>Гилберт убактысы</standard>
- </long>
- </metazone>
- <metazone type="GMT">
- <long>
- <standard>Гринвич универсалдуу убактысы</standard>
- </long>
- </metazone>
- <metazone type="Greenland_Eastern">
- <long>
- <generic>Чыгыш Гринлэнд убактысы</generic>
- <standard>Чыгыш Гринлэнд стандарт убактысы</standard>
- <daylight>Чыгыш Гринлэнд жайкы убактысы</daylight>
- </long>
- </metazone>
- <metazone type="Greenland_Western">
- <long>
- <generic>Батыш Гринлэнд убактысы</generic>
- <standard>Батыш Гринлэнд стандарт убактысы</standard>
- <daylight>Батыш Гринлэнд жайкы убактысы</daylight>
- </long>
- </metazone>
- <metazone type="Gulf">
- <long>
- <standard>Булуӊ убактысы</standard>
- </long>
- </metazone>
- <metazone type="Guyana">
- <long>
- <standard>Гуйана убактысы</standard>
- </long>
- </metazone>
- <metazone type="Hawaii_Aleutian">
- <long>
- <generic>Гавайи-Алеут убактысы</generic>
- <standard>Гавайи-Алеут стандарт убактысы</standard>
- <daylight>Гавайи-Алеут үнөмдөө убактысы</daylight>
- </long>
- </metazone>
- <metazone type="Hong_Kong">
- <long>
- <generic>Гоӊ Коӊ убактысы</generic>
- <standard>Гоӊ Коӊ стандарт убактысы</standard>
- <daylight>Гоӊ Коӊ жайкы убактысы</daylight>
- </long>
- </metazone>
- <metazone type="Hovd">
- <long>
- <generic>Ховд убактысы</generic>
- <standard>Ховд стандарт убактысы</standard>
- <daylight>Ховд жайкы убактысы</daylight>
- </long>
- </metazone>
- <metazone type="India">
- <long>
- <standard>Индия убактысы</standard>
- </long>
- </metazone>
- <metazone type="Indian_Ocean">
- <long>
- <standard>Инд Океаны убактысы</standard>
- </long>
- </metazone>
- <metazone type="Indochina">
- <long>
- <standard>Индокытай убактысы</standard>
- </long>
- </metazone>
- <metazone type="Indonesia_Central">
- <long>
- <standard>Борбордук Индонезия убактысы</standard>
- </long>
- </metazone>
- <metazone type="Indonesia_Eastern">
- <long>
- <standard>Чыгыш Индонезия убактысы</standard>
- </long>
- </metazone>
- <metazone type="Indonesia_Western">
- <long>
- <standard>Батыш Индонезия убактысы</standard>
- </long>
- </metazone>
- <metazone type="Iran">
- <long>
- <generic>Иран убактысы</generic>
- <standard>Иран стандарт убактысы</standard>
- <daylight>Иран үнөмдөө убактысы</daylight>
- </long>
- </metazone>
- <metazone type="Irkutsk">
- <long>
- <generic>Иркутск убактысы</generic>
- <standard>Иркутск стандарт убактысы</standard>
- <daylight>Иркутск жайкы убактысы</daylight>
- </long>
- </metazone>
- <metazone type="Israel">
- <long>
- <generic>Израил убактысы</generic>
- <standard>Израил стандарт убактысы</standard>
- <daylight>Израил үнөмдөө убактысы</daylight>
- </long>
- </metazone>
- <metazone type="Japan">
- <long>
- <generic>Жапан убактысы</generic>
- <standard>Жапан стандарт убактысы</standard>
- <daylight>Жапан үнөмдөө убактысы</daylight>
- </long>
- </metazone>
- <metazone type="Kazakhstan_Eastern">
- <long>
- <standard>Чыгыш Казакстан убактысы</standard>
- </long>
- </metazone>
- <metazone type="Kazakhstan_Western">
- <long>
- <standard>Батыш Казакстан убактысы</standard>
- </long>
- </metazone>
- <metazone type="Korea">
- <long>
- <generic>Корея убактысы</generic>
- <standard>Корея стандарт убактысы</standard>
- <daylight>Корея үнөмдөө убактысы</daylight>
- </long>
- </metazone>
- <metazone type="Kosrae">
- <long>
- <standard>Косрае убактысы</standard>
- </long>
- </metazone>
- <metazone type="Krasnoyarsk">
- <long>
- <generic>Красноярск убактысы</generic>
- <standard>Красноярск стандарт убактысы</standard>
- <daylight>Красноярск жайкы убактысы</daylight>
- </long>
- </metazone>
- <metazone type="Kyrgystan">
- <long>
- <standard>Кыргызстан убактысы</standard>
- </long>
- </metazone>
- <metazone type="Line_Islands">
- <long>
- <standard>Лайн убактысы</standard>
- </long>
- </metazone>
- <metazone type="Lord_Howe">
- <long>
- <generic>Лорд Хау убактысы</generic>
- <standard>Лорд Хау стандарт убактысы</standard>
- <daylight>Лорд Хау үнөмдөө убактысы</daylight>
- </long>
- </metazone>
- <metazone type="Macquarie">
- <long>
- <standard>Макуари убактысы</standard>
- </long>
- </metazone>
- <metazone type="Magadan">
- <long>
- <generic>Магадан убактысы</generic>
- <standard>Магадан стандарт убактысы</standard>
- <daylight>Магадан жайкы убактысы</daylight>
- </long>
- </metazone>
- <metazone type="Malaysia">
- <long>
- <standard>Малайзия убактысы</standard>
- </long>
- </metazone>
- <metazone type="Maldives">
- <long>
- <standard>Малдив убактысы</standard>
- </long>
- </metazone>
- <metazone type="Marquesas">
- <long>
- <standard>Маркезас убактысы</standard>
- </long>
- </metazone>
- <metazone type="Marshall_Islands">
- <long>
- <standard>Маршалл убактысы</standard>
- </long>
- </metazone>
- <metazone type="Mauritius">
- <long>
- <generic>Маврикий убактысы</generic>
- <standard>Маврикий стандарт убактысы</standard>
- <daylight>Маврикий жайкы убактысы</daylight>
- </long>
- </metazone>
- <metazone type="Mawson">
- <long>
- <standard>Мосон убактысы</standard>
- </long>
- </metazone>
- <metazone type="Mongolia">
- <long>
- <generic>Улан Батор убактысы</generic>
- <standard>Улан Батор стандарт убактысы</standard>
- <daylight>Улан Батор жайкы убактысы</daylight>
- </long>
- </metazone>
- <metazone type="Moscow">
- <long>
- <generic>Москва убактысы</generic>
- <standard>Москва стандарт убактысы</standard>
- <daylight>Москва жайкы убактысы</daylight>
- </long>
- </metazone>
- <metazone type="Myanmar">
- <long>
- <standard>Мйанмар убактысы</standard>
- </long>
- </metazone>
- <metazone type="Nauru">
- <long>
- <standard>Науру убактысы</standard>
- </long>
- </metazone>
- <metazone type="Nepal">
- <long>
- <standard>Непал убактысы</standard>
- </long>
- </metazone>
- <metazone type="New_Caledonia">
- <long>
- <generic>Жаӊы Каледония убактысы</generic>
- <standard>Жаӊы Каледония стандарт убактысы</standard>
- <daylight>Жаӊы Каледония жайкы убактысы</daylight>
- </long>
- </metazone>
- <metazone type="New_Zealand">
- <long>
- <generic>Жаӊы Зеландия убактысы</generic>
- <standard>Жаӊы Зеландия стандарт убактысы</standard>
- <daylight>Жаӊы Зеландия үнөмдөө убактысы</daylight>
- </long>
- </metazone>
- <metazone type="Newfoundland">
- <long>
- <generic>Нюфаундлэнд убактысы</generic>
- <standard>Нюфаундлэнд стандарт убактысы</standard>
- <daylight>Нюфаундлэнд үнөмдөө убактысы</daylight>
- </long>
- </metazone>
- <metazone type="Niue">
- <long>
- <standard>Ниуэ убактысы</standard>
- </long>
- </metazone>
- <metazone type="Norfolk">
- <long>
- <standard>Норфолк убактысы</standard>
- </long>
- </metazone>
- <metazone type="Noronha">
- <long>
- <generic>Фернандо де Норонья убактысы</generic>
- <standard>Фернандо де Норонья стандарт убактысы</standard>
- <daylight>Фернандо де Норонья жайкы убактысы</daylight>
- </long>
- </metazone>
- <metazone type="Novosibirsk">
- <long>
- <generic>Новосибирск убактысы</generic>
- <standard>Новосибирск стандарт убактысы</standard>
- <daylight>Новосибирск жайкы убактысы</daylight>
- </long>
- </metazone>
- <metazone type="Omsk">
- <long>
- <generic>Омск убактысы</generic>
- <standard>Омск стандарт убактысы</standard>
- <daylight>Омск жайкы убактысы</daylight>
- </long>
- </metazone>
- <metazone type="Pakistan">
- <long>
- <generic>Пакистан убактысы</generic>
- <standard>Пакистан стандарт убактысы</standard>
- <daylight>Пакистан жайкы убактысы</daylight>
- </long>
- </metazone>
- <metazone type="Palau">
- <long>
- <standard>Палау убактысы</standard>
- </long>
- </metazone>
- <metazone type="Papua_New_Guinea">
- <long>
- <standard>Папуа Жаӊы Гине убактысы</standard>
- </long>
- </metazone>
- <metazone type="Paraguay">
- <long>
- <generic>Парагвай убактысы</generic>
- <standard>Парагвай стандарт убактысы</standard>
- <daylight>Парагвай жайкы убактысы</daylight>
- </long>
- </metazone>
- <metazone type="Peru">
- <long>
- <generic>Перу убактысы</generic>
- <standard>Перу стандарт убактысы</standard>
- <daylight>Перу жайкы убактысы</daylight>
- </long>
- </metazone>
- <metazone type="Philippines">
- <long>
- <generic>Филиппинз убактысы</generic>
- <standard>Филиппинз стандарт убактысы</standard>
- <daylight>Филиппинз жайкы убактысы</daylight>
- </long>
- </metazone>
- <metazone type="Phoenix_Islands">
- <long>
- <standard>Феникс аралдарынын убактысы</standard>
- </long>
- </metazone>
- <metazone type="Pierre_Miquelon">
- <long>
- <generic>Сен Пьер жана Микелон убактысы</generic>
- <standard>Сен Пьер жана Микелон стандарт убактысы</standard>
- <daylight>Сен Пьер жана Микелон үнөмдөө убактысы</daylight>
- </long>
- </metazone>
- <metazone type="Pitcairn">
- <long>
- <standard>Питкэрнг убактысы</standard>
- </long>
- </metazone>
- <metazone type="Ponape">
- <long>
- <standard>Понапе убактысы</standard>
- </long>
- </metazone>
- <metazone type="Reunion">
- <long>
- <standard>Реюнион убактысы</standard>
- </long>
- </metazone>
- <metazone type="Rothera">
- <long>
- <standard>Ротера убактысы</standard>
- </long>
- </metazone>
- <metazone type="Sakhalin">
- <long>
- <generic>Сахалин убактысы</generic>
- <standard>Сахалин стандарт убактысы</standard>
- <daylight>Сахалин жайкы убактысы</daylight>
- </long>
- </metazone>
- <metazone type="Samoa">
- <long>
- <generic>Сама убактысы</generic>
- <standard>Самоа стандарт убактысы</standard>
- <daylight>Самоа үнөм убактысы</daylight>
- </long>
- </metazone>
- <metazone type="Seychelles">
- <long>
- <standard>Сейшел убактысы</standard>
- </long>
- </metazone>
- <metazone type="Singapore">
- <long>
- <standard>Сингапур убактысы</standard>
- </long>
- </metazone>
- <metazone type="Solomon">
- <long>
- <standard>Соломон аралдарынын убактысы</standard>
- </long>
- </metazone>
- <metazone type="South_Georgia">
- <long>
- <standard>Түштүк Жоржия убактысы</standard>
- </long>
- </metazone>
- <metazone type="Suriname">
- <long>
- <standard>Суринаме убактысы</standard>
- </long>
- </metazone>
- <metazone type="Syowa">
- <long>
- <standard>Саоа убактысы</standard>
- </long>
- </metazone>
- <metazone type="Tahiti">
- <long>
- <standard>Таити убактысы</standard>
- </long>
- </metazone>
- <metazone type="Taipei">
- <long>
- <generic>Тайпей убактысы</generic>
- <standard>Тайпей стандарт убактысы</standard>
- <daylight>Тайпей үнөмдөө убактысы</daylight>
- </long>
- </metazone>
- <metazone type="Tajikistan">
- <long>
- <standard>Тажикстан убактысы</standard>
- </long>
- </metazone>
- <metazone type="Tokelau">
- <long>
- <standard>Токелау убактысы</standard>
- </long>
- </metazone>
- <metazone type="Tonga">
- <long>
- <generic>Тонга убактысы</generic>
- <standard>Тонга стандарт убактысы</standard>
- <daylight>Тонга жайкы убактысы</daylight>
- </long>
- </metazone>
- <metazone type="Truk">
- <long>
- <standard>Чуук убактысы</standard>
- </long>
- </metazone>
- <metazone type="Turkmenistan">
- <long>
- <generic>Түркмөнстан убактысы</generic>
- <standard>Түркмөнстан стандарт убактысы</standard>
- <daylight>Түркмөнстан жайкы убактысы</daylight>
- </long>
- </metazone>
- <metazone type="Tuvalu">
- <long>
- <standard>Тувалу убактысы</standard>
- </long>
- </metazone>
- <metazone type="Uruguay">
- <long>
- <generic>Уругвай убактысы</generic>
- <standard>Уругвай стандарт убактысы</standard>
- <daylight>Уругвай жайкы убактысы</daylight>
- </long>
- </metazone>
- <metazone type="Uzbekistan">
- <long>
- <generic>Өзбекстан убактысы</generic>
- <standard>Өзбекстан стандарт убактысы</standard>
- <daylight>Өзбекстан жайкы убактысы</daylight>
- </long>
- </metazone>
- <metazone type="Vanuatu">
- <long>
- <generic>Вануату убактысы</generic>
- <standard>Вануату стандарт убактысы</standard>
- <daylight>Вануату жайкы убактысы</daylight>
- </long>
- </metazone>
- <metazone type="Venezuela">
- <long>
- <standard>Венесуэла убактысы</standard>
- </long>
- </metazone>
- <metazone type="Vladivostok">
- <long>
- <generic>Владивосток убактысы</generic>
- <standard>Владивосток стандарт убактысы</standard>
- <daylight>Владивосток жайкы убактысы</daylight>
- </long>
- </metazone>
- <metazone type="Volgograd">
- <long>
- <generic>Волгоград убактысы</generic>
- <standard>Волгоград стандарт убактысы</standard>
- <daylight>Волгоград жайкы убактысы</daylight>
- </long>
- </metazone>
- <metazone type="Vostok">
- <long>
- <standard>Восток убактысы</standard>
- </long>
- </metazone>
- <metazone type="Wake">
- <long>
- <standard>Уейк убактысы</standard>
- </long>
- </metazone>
- <metazone type="Wallis">
- <long>
- <standard>Уолис жана Футуна убактысы</standard>
- </long>
- </metazone>
- <metazone type="Yakutsk">
- <long>
- <generic>Якутск убактысы</generic>
- <standard>Якутск стандарт убактысы</standard>
- <daylight>Якутск жайкы убактысы</daylight>
- </long>
- </metazone>
- <metazone type="Yekaterinburg">
- <long>
- <generic>Екатеринбург убактысы</generic>
- <standard>Екатеринбург стандарт убактысы</standard>
- <daylight>Екатеринбург жайкы убактысы</daylight>
- </long>
- </metazone>
- </timeZoneNames>
- </dates>
- <numbers>
- <symbols numberSystem="latn">
- <decimal>,</decimal>
- <group> </group>
- <percentSign>%</percentSign>
- <plusSign>+</plusSign>
- <minusSign>-</minusSign>
- <exponential>E</exponential>
- <superscriptingExponent>×</superscriptingExponent>
- <perMille>‰</perMille>
- <infinity>∞</infinity>
- <nan>сан эмес</nan>
- </symbols>
- <decimalFormats numberSystem="latn">
- <decimalFormatLength>
- <decimalFormat>
- <pattern>#,##0.###</pattern>
- </decimalFormat>
- </decimalFormatLength>
- <decimalFormatLength type="long">
- <decimalFormat>
- <pattern type="1000" count="one">0 миӊ</pattern>
- <pattern type="1000" count="other">0 миӊ</pattern>
- <pattern type="10000" count="one">00 миӊ</pattern>
- <pattern type="10000" count="other">00 миӊ</pattern>
- <pattern type="100000" count="one">000 миӊ</pattern>
- <pattern type="100000" count="other">000 миӊ</pattern>
- <pattern type="1000000" count="one">0 миллион</pattern>
- <pattern type="1000000" count="other">0 миллион</pattern>
- <pattern type="10000000" count="one">00 миллион</pattern>
- <pattern type="10000000" count="other">00 миллион</pattern>
- <pattern type="100000000" count="one">000 миллион</pattern>
- <pattern type="100000000" count="other">000 миллион</pattern>
- <pattern type="1000000000" count="one">0 миллиард</pattern>
- <pattern type="1000000000" count="other">0 миллиард</pattern>
- <pattern type="10000000000" count="one">00 миллиард</pattern>
- <pattern type="10000000000" count="other">00 миллиард</pattern>
- <pattern type="100000000000" count="one">000 миллиард</pattern>
- <pattern type="100000000000" count="other">000 миллиард</pattern>
- <pattern type="1000000000000" count="one">0 триллион</pattern>
- <pattern type="1000000000000" count="other">0 триллион</pattern>
- <pattern type="10000000000000" count="one">00 триллион</pattern>
- <pattern type="10000000000000" count="other">00 триллион</pattern>
- <pattern type="100000000000000" count="one">000 триллион</pattern>
- <pattern type="100000000000000" count="other">000 триллион</pattern>
- </decimalFormat>
- </decimalFormatLength>
- <decimalFormatLength type="short">
- <decimalFormat>
- <pattern type="1000" count="one">0 миӊ</pattern>
- <pattern type="1000" count="other">0 миӊ</pattern>
- <pattern type="10000" count="one">00 миӊ</pattern>
- <pattern type="10000" count="other">00 миӊ</pattern>
- <pattern type="100000" count="one">000 миӊ</pattern>
- <pattern type="100000" count="other">000 миӊ</pattern>
- <pattern type="1000000" count="one">0 млн</pattern>
- <pattern type="1000000" count="other">0 млн</pattern>
- <pattern type="10000000" count="one">00 млн</pattern>
- <pattern type="10000000" count="other">00 млн</pattern>
- <pattern type="100000000" count="one">000 млн</pattern>
- <pattern type="100000000" count="other">000 млн</pattern>
- <pattern type="1000000000" count="one">0 млд</pattern>
- <pattern type="1000000000" count="other">0 млд</pattern>
- <pattern type="10000000000" count="one">00 млд</pattern>
- <pattern type="10000000000" count="other">00 млд</pattern>
- <pattern type="100000000000" count="one">000 млд</pattern>
- <pattern type="100000000000" count="other">000 млд</pattern>
- <pattern type="1000000000000" count="one">0 трн</pattern>
- <pattern type="1000000000000" count="other">0 трн</pattern>
- <pattern type="10000000000000" count="one">00 трн</pattern>
- <pattern type="10000000000000" count="other">00 трн</pattern>
- <pattern type="100000000000000" count="one">000 трн</pattern>
- <pattern type="100000000000000" count="other">000 трн</pattern>
- </decimalFormat>
- </decimalFormatLength>
- </decimalFormats>
- <scientificFormats numberSystem="latn">
- <scientificFormatLength>
- <scientificFormat>
- <pattern>#E0</pattern>
- </scientificFormat>
- </scientificFormatLength>
- </scientificFormats>
- <percentFormats numberSystem="latn">
- <percentFormatLength>
- <percentFormat>
- <pattern>#,##0%</pattern>
- </percentFormat>
- </percentFormatLength>
- </percentFormats>
- <currencyFormats numberSystem="latn">
- <currencyFormatLength>
- <currencyFormat type="standard">
- <pattern>#,##0.00 ¤</pattern>
- </currencyFormat>
- </currencyFormatLength>
- <unitPattern count="one">{0} {1}</unitPattern>
- <unitPattern count="other">{0} {1}</unitPattern>
- </currencyFormats>
- <currencies>
- <currency type="AED">
- <displayName>Бириккен Араб Эмираттары дирхамы</displayName>
- <displayName count="one">БАЭ дирхамы</displayName>
- <displayName count="other">БАЭ дирхамы</displayName>
- </currency>
- <currency type="AFN">
- <displayName>Афганстан афганиси</displayName>
- <displayName count="one">Афганстан афганиси</displayName>
- <displayName count="other">Афганстан афганиси</displayName>
- </currency>
- <currency type="ALL">
- <displayName>Албания леги</displayName>
- <displayName count="one">Албания леги</displayName>
- <displayName count="other">Албания леги</displayName>
- </currency>
- <currency type="AMD">
- <displayName>Армения драмы</displayName>
- <displayName count="one">Армения драмы</displayName>
- <displayName count="other">Армения драмы</displayName>
- </currency>
- <currency type="ANG">
- <displayName>Нидерланд Антил гулдени</displayName>
- <displayName count="one">Нидерланд Антил гулдени</displayName>
- <displayName count="other">Нидерланд Антил гулдени</displayName>
- </currency>
- <currency type="AOA">
- <displayName>Ангола кванзасы</displayName>
- <displayName count="one">Ангола кванзасы</displayName>
- <displayName count="other">Ангола кванзасы</displayName>
- </currency>
- <currency type="ARS">
- <displayName>Аргентина песосу</displayName>
- <displayName count="one">Аргентина песосу</displayName>
- <displayName count="other">Аргентина песосу</displayName>
- </currency>
- <currency type="AUD">
- <displayName>Австралия доллары</displayName>
- <displayName count="one">Австралия доллары</displayName>
- <displayName count="other">Австралия доллары</displayName>
- <symbol>AUD</symbol>
- </currency>
- <currency type="AWG">
- <displayName>Аруба флорини</displayName>
- <displayName count="one">Аруба флорини</displayName>
- <displayName count="other">Аруба флорини</displayName>
- </currency>
- <currency type="AZN">
- <displayName>Азербайжан манаты</displayName>
- <displayName count="one">Азербайжан манаты</displayName>
- <displayName count="other">Азербайжан манаты</displayName>
- </currency>
- <currency type="BAM">
- <displayName>Босния-Герцеговина оодарылма маркы</displayName>
- <displayName count="one">Босния-Герцеговина оодарылма маркы</displayName>
- <displayName count="other">Босния-Герцеговина оодарылма маркы</displayName>
- </currency>
- <currency type="BBD">
- <displayName>Барбадос доллары</displayName>
- <displayName count="one">Барбадос доллары</displayName>
- <displayName count="other">Барбадос доллары</displayName>
- </currency>
- <currency type="BDT">
- <displayName>Бангладеш такасы</displayName>
- <displayName count="one">Бангладеш такасы</displayName>
- <displayName count="other">Бангладеш такасы</displayName>
- </currency>
- <currency type="BGN">
- <displayName>Болгария леви</displayName>
- <displayName count="one">Болгария леви</displayName>
- <displayName count="other">Болгария леви</displayName>
- </currency>
- <currency type="BHD">
- <displayName>Бахрейн динары</displayName>
- <displayName count="one">Бахрейн динары</displayName>
- <displayName count="other">Бахрейн динары</displayName>
- </currency>
- <currency type="BIF">
- <displayName>Бурунди франкы</displayName>
- <displayName count="one">Бурунди франкы</displayName>
- <displayName count="other">Бурунди франкы</displayName>
- </currency>
- <currency type="BMD">
- <displayName>Бермуд доллары</displayName>
- <displayName count="one">Бермуд доллары</displayName>
- <displayName count="other">Бермуд доллары</displayName>
- </currency>
- <currency type="BND">
- <displayName>Бруней доллары</displayName>
- <displayName count="one">Бруней доллары</displayName>
- <displayName count="other">Бруней доллары</displayName>
- </currency>
- <currency type="BOB">
- <displayName>Боливия боливианосу</displayName>
- <displayName count="one">Боливия боливианосу</displayName>
- <displayName count="other">Боливия боливианосу</displayName>
- </currency>
- <currency type="BRL">
- <displayName>Бразилия реалы</displayName>
- <displayName count="one">Бразилия реалы</displayName>
- <displayName count="other">Бразилия реалы</displayName>
- <symbol>BRL</symbol>
- </currency>
- <currency type="BSD">
- <displayName>Багама доллары</displayName>
- <displayName count="one">Багама доллары</displayName>
- <displayName count="other">Багама доллары</displayName>
- </currency>
- <currency type="BTN">
- <displayName>Бутан нгултруму</displayName>
- <displayName count="one">Бутан нгултруму</displayName>
- <displayName count="other">Бутан нгултруму</displayName>
- </currency>
- <currency type="BWP">
- <displayName>Ботсвана пуласы</displayName>
- <displayName count="one">Ботсвана пуласы</displayName>
- <displayName count="other">Ботсвана пуласы</displayName>
- </currency>
- <currency type="BYR">
- <displayName>Беларусь рублу</displayName>
- <displayName count="one">Беларусь рублу</displayName>
- <displayName count="other">Беларусь рублу</displayName>
- </currency>
- <currency type="BZD">
- <displayName>Белиз доллары</displayName>
- <displayName count="one">Белиз доллары</displayName>
- <displayName count="other">Белиз доллары</displayName>
- </currency>
- <currency type="CAD">
- <displayName>Канада доллары</displayName>
- <displayName count="one">Канада доллары</displayName>
- <displayName count="other">Канада доллары</displayName>
- <symbol>CAD</symbol>
- </currency>
- <currency type="CDF">
- <displayName>Конго франкы</displayName>
- <displayName count="one">Конго франкы</displayName>
- <displayName count="other">Конго франкы</displayName>
- </currency>
- <currency type="CHF">
- <displayName>Швейцария франкы</displayName>
- <displayName count="one">Швейцария франкы</displayName>
- <displayName count="other">Швейцария франкы</displayName>
- </currency>
- <currency type="CLP">
- <displayName>Чили песосу</displayName>
- <displayName count="one">Чили песосу</displayName>
- <displayName count="other">Чили песосу</displayName>
- </currency>
- <currency type="CNY">
- <displayName>Кытай юаны</displayName>
- <displayName count="one">Кытай юаны</displayName>
- <displayName count="other">Кытай юаны</displayName>
- <symbol>CN¥</symbol>
- </currency>
- <currency type="COP">
- <displayName>Колумбия песосу</displayName>
- <displayName count="one">Колумбия песосу</displayName>
- <displayName count="other">Колумбия песосу</displayName>
- </currency>
- <currency type="CRC">
- <displayName>Коста Рика колону</displayName>
- <displayName count="one">Коста Рика колону</displayName>
- <displayName count="other">Коста Рика колону</displayName>
- </currency>
- <currency type="CUC">
- <displayName>Куба оодарылма песосу</displayName>
- <displayName count="one">Куба оодарылма песосу</displayName>
- <displayName count="other">Куба оодарылма песосу</displayName>
- </currency>
- <currency type="CUP">
- <displayName>Куба песосу</displayName>
- <displayName count="one">Куба песосу</displayName>
- <displayName count="other">Куба песосу</displayName>
- </currency>
- <currency type="CVE">
- <displayName>Капе Верде эскудосу</displayName>
- <displayName count="one">Капе Верде эскудосу</displayName>
- <displayName count="other">Капе Верде эскудосу</displayName>
- </currency>
- <currency type="CZK">
- <displayName>Чехия корунасы</displayName>
- <displayName count="one">Чехия корунасы</displayName>
- <displayName count="other">Чехия корунасы</displayName>
- </currency>
- <currency type="DJF">
- <displayName>Жибути франкы</displayName>
- <displayName count="one">Жибути франкы</displayName>
- <displayName count="other">Жибути франкы</displayName>
- </currency>
- <currency type="DKK">
- <displayName>Дания крону</displayName>
- <displayName count="one">Дания крону</displayName>
- <displayName count="other">Дания крону</displayName>
- </currency>
- <currency type="DOP">
- <displayName>Доминика песосу</displayName>
- <displayName count="one">Доминика песосу</displayName>
- <displayName count="other">Доминика песосу</displayName>
- </currency>
- <currency type="DZD">
- <displayName>Алжир динары</displayName>
- <displayName count="one">Алжир динары</displayName>
- <displayName count="other">Алжир динары</displayName>
- </currency>
- <currency type="EGP">
- <displayName>Мисир фунту</displayName>
- <displayName count="one">Мисир фунту</displayName>
- <displayName count="other">Мисир фунту</displayName>
- </currency>
- <currency type="ERN">
- <displayName>Эритреа накфасы</displayName>
- <displayName count="one">Эритреа накфасы</displayName>
- <displayName count="other">Эритреа накфасы</displayName>
- </currency>
- <currency type="ETB">
- <displayName>Эфиопия бирри</displayName>
- <displayName count="one">Эфиопия бирри</displayName>
- <displayName count="other">Эфиопия бирри</displayName>
- </currency>
- <currency type="EUR">
- <displayName>Евро</displayName>
- <displayName count="one">евро</displayName>
- <displayName count="other">евро</displayName>
- </currency>
- <currency type="FJD">
- <displayName>Фижи доллары</displayName>
- <displayName count="one">Фижи доллары</displayName>
- <displayName count="other">Фижи доллары</displayName>
- </currency>
- <currency type="FKP">
- <displayName>Фолкленд аралдарынын фунту</displayName>
- <displayName count="one">Фолкленд аралдарынын фунту</displayName>
- <displayName count="other">Фолкленд аралдарынын фунту</displayName>
- </currency>
- <currency type="GBP">
- <displayName>Британия фунт стерлинги</displayName>
- <displayName count="one">Британия фунт стерлинги</displayName>
- <displayName count="other">Британия фунт стерлинги</displayName>
- <symbol>GBP</symbol>
- </currency>
- <currency type="GEL">
- <displayName>Грузия лариси</displayName>
- <displayName count="one">Грузия лариси</displayName>
- <displayName count="other">Грузия лариси</displayName>
- </currency>
- <currency type="GHS">
- <displayName>Гана седиси</displayName>
- <displayName count="one">Гана седиси</displayName>
- <displayName count="other">Гана седиси</displayName>
- </currency>
- <currency type="GIP">
- <displayName>Гибралтар фунту</displayName>
- <displayName count="one">Гибралтар фунту</displayName>
- <displayName count="other">Гибралтар фунту</displayName>
- </currency>
- <currency type="GMD">
- <displayName>Гамбия даласиси</displayName>
- <displayName count="one">Гамбия даласиси</displayName>
- <displayName count="other">Гамбия даласиси</displayName>
- </currency>
- <currency type="GNF">
- <displayName>Гине франкы</displayName>
- <displayName count="one">Гине франкы</displayName>
- <displayName count="other">Гине франкы</displayName>
- </currency>
- <currency type="GTQ">
- <displayName>Гватемала кетсалы</displayName>
- <displayName count="one">Гватемала кетсалы</displayName>
- <displayName count="other">Гватемала кетсалы</displayName>
- </currency>
- <currency type="GYD">
- <displayName>Гуйана доллары</displayName>
- <displayName count="one">Гуйана доллары</displayName>
- <displayName count="other">Гуйана доллары</displayName>
- </currency>
- <currency type="HKD">
- <displayName>Гоӊ Коӊ доллары</displayName>
- <displayName count="one">Гоӊ Коӊ доллары</displayName>
- <displayName count="other">Гоӊ Коӊ доллары</displayName>
- <symbol>HKD</symbol>
- </currency>
- <currency type="HNL">
- <displayName>Гондурас лемпирасы</displayName>
- <displayName count="one">Гондурас лемпирасы</displayName>
- <displayName count="other">Гондурас лемпирасы</displayName>
- </currency>
- <currency type="HRK">
- <displayName>Хорватия кунасы</displayName>
- <displayName count="one">Хорватия кунасы</displayName>
- <displayName count="other">Хорватия кунасы</displayName>
- </currency>
- <currency type="HTG">
- <displayName>Гаити гурду</displayName>
- <displayName count="one">Гаити гурду</displayName>
- <displayName count="other">Гаити гурду</displayName>
- </currency>
- <currency type="HUF">
- <displayName>Венгрия форинти</displayName>
- <displayName count="one">Венгрия форинти</displayName>
- <displayName count="other">Венгрия форинти</displayName>
- </currency>
- <currency type="IDR">
- <displayName>Индонезия рупийасы</displayName>
- <displayName count="one">Индонезия рупийасы</displayName>
- <displayName count="other">Индонезия рупийасы</displayName>
- </currency>
- <currency type="ILS">
- <displayName>Израил жаӊы шегели</displayName>
- <displayName count="one">Израил жаӊы шегели</displayName>
- <displayName count="other">Израил жаӊы шегели</displayName>
- <symbol>ILS</symbol>
- </currency>
- <currency type="INR">
- <displayName>Индия руписи</displayName>
- <displayName count="one">Индия руписи</displayName>
- <displayName count="other">Индия руписи</displayName>
- <symbol>INR</symbol>
- </currency>
- <currency type="IQD">
- <displayName>Ирак динары</displayName>
- <displayName count="one">Ирак динары</displayName>
- <displayName count="other">Ирак динары</displayName>
- </currency>
- <currency type="IRR">
- <displayName>Иран риалы</displayName>
- <displayName count="one">Иран риалы</displayName>
- <displayName count="other">Иран риалы</displayName>
- </currency>
- <currency type="ISK">
- <displayName>Исландия крону</displayName>
- <displayName count="one">Исландия крону</displayName>
- <displayName count="other">Исландия крону</displayName>
- </currency>
- <currency type="JMD">
- <displayName>Жамайка доллары</displayName>
- <displayName count="one">Жамайка доллары</displayName>
- <displayName count="other">Жамайка доллары</displayName>
- </currency>
- <currency type="JOD">
- <displayName>Йордания динары</displayName>
- <displayName count="one">Йордания динары</displayName>
- <displayName count="other">Йордания динары</displayName>
- </currency>
- <currency type="JPY">
- <displayName>Жапан йени</displayName>
- <displayName count="one">Жапан йени</displayName>
- <displayName count="other">Жапан йени</displayName>
- <symbol>JP¥</symbol>
- </currency>
- <currency type="KES">
- <displayName>Кения шиллинги</displayName>
- <displayName count="one">Кения шиллинги</displayName>
- <displayName count="other">Кения шиллинги</displayName>
- </currency>
- <currency type="KGS">
- <displayName>Кыргызстан сому</displayName>
- <displayName count="one">Кыргызстан сому</displayName>
- <displayName count="other">Кыргызстан сому</displayName>
- <symbol>сом</symbol>
- </currency>
- <currency type="KHR">
- <displayName>Камбожа риели</displayName>
- <displayName count="one">Камбожа риели</displayName>
- <displayName count="other">Камбожа риели</displayName>
- </currency>
- <currency type="KMF">
- <displayName>Коморос франкы</displayName>
- <displayName count="one">Коморос франкы</displayName>
- <displayName count="other">Коморос франкы</displayName>
- </currency>
- <currency type="KPW">
- <displayName>Түндүк Корея уону</displayName>
- <displayName count="one">Түндүк Корея уону</displayName>
- <displayName count="other">Түндүк Корея уону</displayName>
- </currency>
- <currency type="KRW">
- <displayName>Түштүк Корея уону</displayName>
- <displayName count="one">Түштүк Корея уону</displayName>
- <displayName count="other">Түштүк Корея уону</displayName>
- <symbol>KRW</symbol>
- </currency>
- <currency type="KWD">
- <displayName>Кувейт динары</displayName>
- <displayName count="one">Кувейт динары</displayName>
- <displayName count="other">Кувейт динары</displayName>
- </currency>
- <currency type="KYD">
- <displayName>Кайман доллары</displayName>
- <displayName count="one">Кайман доллары</displayName>
- <displayName count="other">Кайман доллары</displayName>
- </currency>
- <currency type="KZT">
- <displayName>Казакстан теӊгеси</displayName>
- <displayName count="one">Казакстан теӊгеси</displayName>
- <displayName count="other">Казакстан теӊгеси</displayName>
- </currency>
- <currency type="LAK">
- <displayName>Лаос киби</displayName>
- <displayName count="one">Лаос киби</displayName>
- <displayName count="other">Лаос киби</displayName>
- </currency>
- <currency type="LBP">
- <displayName>Ливан фунту</displayName>
- <displayName count="one">Ливан фунту</displayName>
- <displayName count="other">Ливан фунту</displayName>
- </currency>
- <currency type="LKR">
- <displayName>Шри Ланка руписи</displayName>
- <displayName count="one">Шри Ланка руписи</displayName>
- <displayName count="other">Шри Ланка руписи</displayName>
- </currency>
- <currency type="LRD">
- <displayName>Либерия доллары</displayName>
- <displayName count="one">Либерия доллары</displayName>
- <displayName count="other">Либерия доллары</displayName>
- </currency>
- <currency type="LTL">
- <displayName>Литва литасы</displayName>
- <displayName count="one">Литва литасы</displayName>
- <displayName count="other">Литва литасы</displayName>
- </currency>
- <currency type="LVL">
- <displayName>Латвия латсы</displayName>
- <displayName count="one">Латвия латсы</displayName>
- <displayName count="other">Латвия латсы</displayName>
- </currency>
- <currency type="LYD">
- <displayName>Ливия динары</displayName>
- <displayName count="one">Ливия динары</displayName>
- <displayName count="other">Ливия динары</displayName>
- </currency>
- <currency type="MAD">
- <displayName>Марокко дирхамы</displayName>
- <displayName count="one">Марокко дирхамы</displayName>
- <displayName count="other">Марокко дирхамы</displayName>
- </currency>
- <currency type="MDL">
- <displayName>Молдова лейи</displayName>
- <displayName count="one">Молдова лейи</displayName>
- <displayName count="other">Молдова лейи</displayName>
- </currency>
- <currency type="MGA">
- <displayName>Мадагаскар ариариси</displayName>
- <displayName count="one">Мадагаскар ариариси</displayName>
- <displayName count="other">Мадагаскар ариариси</displayName>
- </currency>
- <currency type="MKD">
- <displayName>Македония денары</displayName>
- <displayName count="one">Македония денары</displayName>
- <displayName count="other">Македония денары</displayName>
- </currency>
- <currency type="MMK">
- <displayName>Мйанмар кйаты</displayName>
- <displayName count="one">Мйанмар кйаты</displayName>
- <displayName count="other">Мйанмар кйаты</displayName>
- </currency>
- <currency type="MNT">
- <displayName>Монгол тугриги</displayName>
- <displayName count="one">Монгол тугриги</displayName>
- <displayName count="other">Монгол тугриги</displayName>
- </currency>
- <currency type="MOP">
- <displayName>Макау патакасы</displayName>
- <displayName count="one">Макау патакасы</displayName>
- <displayName count="other">Макау патакасы</displayName>
- </currency>
- <currency type="MRO">
- <displayName>Мавритания угиясы</displayName>
- <displayName count="one">Мавритания угиясы</displayName>
- <displayName count="other">Мавритания угиясы</displayName>
- </currency>
- <currency type="MUR">
- <displayName>Мавританий руписи</displayName>
- <displayName count="one">Мавританий руписи</displayName>
- <displayName count="other">Мавританий руписи</displayName>
- </currency>
- <currency type="MVR">
- <displayName>Малдив Руфийасы</displayName>
- <displayName count="one">Малдив Руфийасы</displayName>
- <displayName count="other">Малдив Руфийасы</displayName>
- </currency>
- <currency type="MWK">
- <displayName>Малави квачасы</displayName>
- <displayName count="one">Малави квачасы</displayName>
- <displayName count="other">Малави квачасы</displayName>
- </currency>
- <currency type="MXN">
- <displayName>Мексика песосу</displayName>
- <displayName count="one">Мексика песосу</displayName>
- <displayName count="other">Мексика песосу</displayName>
- <symbol>MXN</symbol>
- </currency>
- <currency type="MYR">
- <displayName>Малайзия ринггити</displayName>
- <displayName count="one">Малайзия ринггити</displayName>
- <displayName count="other">Малайзия ринггити</displayName>
- </currency>
- <currency type="MZN">
- <displayName>Мозамбик метикалы</displayName>
- <displayName count="one">Мозамбик метикалы</displayName>
- <displayName count="other">Мозамбик метикалы</displayName>
- </currency>
- <currency type="NAD">
- <displayName>Намибия доллары</displayName>
- <displayName count="one">Намибия доллары</displayName>
- <displayName count="other">Намибия доллары</displayName>
- </currency>
- <currency type="NGN">
- <displayName>Нигерия найрасы</displayName>
- <displayName count="one">Нигерия найрасы</displayName>
- <displayName count="other">Нигерия найрасы</displayName>
- </currency>
- <currency type="NIO">
- <displayName>Никарагуа кордобасы</displayName>
- <displayName count="one">Никарагуа кордобасы</displayName>
- <displayName count="other">Никарагуа кордобасы</displayName>
- </currency>
- <currency type="NOK">
- <displayName>Норвегия крону</displayName>
- <displayName count="one">Норвегия крону</displayName>
- <displayName count="other">Норвегия крону</displayName>
- </currency>
- <currency type="NPR">
- <displayName>Непал руписи</displayName>
- <displayName count="one">Непал руписи</displayName>
- <displayName count="other">Непал руписи</displayName>
- </currency>
- <currency type="NZD">
- <displayName>Жаӊы Зеландия доллары</displayName>
- <displayName count="one">Жаӊы Зеландия доллары</displayName>
- <displayName count="other">Жаӊы Зеландия доллары</displayName>
- <symbol>NZD</symbol>
- </currency>
- <currency type="OMR">
- <displayName>Оман риалы</displayName>
- <displayName count="one">Оман риалы</displayName>
- <displayName count="other">Оман риалы</displayName>
- </currency>
- <currency type="PAB">
- <displayName>Панама балбоасы</displayName>
- <displayName count="one">Панама балбоасы</displayName>
- <displayName count="other">Панама балбоасы</displayName>
- </currency>
- <currency type="PEN">
- <displayName>Перу нуэво солу</displayName>
- <displayName count="one">Перу нуэво солу</displayName>
- <displayName count="other">Перу нуэво солу</displayName>
- </currency>
- <currency type="PGK">
- <displayName>Папуа Жаӊы Гине кинасы</displayName>
- <displayName count="one">Папуа Жаӊы Гине кинасы</displayName>
- <displayName count="other">Папуа Жаӊы Гине кинасы</displayName>
- </currency>
- <currency type="PHP">
- <displayName>Филиппин песосу</displayName>
- <displayName count="one">Филиппин песосу</displayName>
- <displayName count="other">Филиппин песосу</displayName>
- </currency>
- <currency type="PKR">
- <displayName>Пакистан руписи</displayName>
- <displayName count="one">Пакистан руписи</displayName>
- <displayName count="other">Пакистан руписи</displayName>
- </currency>
- <currency type="PLN">
- <displayName>Польша злотыйы</displayName>
- <displayName count="one">Польша злотыйы</displayName>
- <displayName count="other">Польша злотыйы</displayName>
- </currency>
- <currency type="PYG">
- <displayName>Парагвай гуараниси</displayName>
- <displayName count="one">Парагвай гуараниси</displayName>
- <displayName count="other">Парагвай гуараниси</displayName>
- </currency>
- <currency type="QAR">
- <displayName>Катар риалы</displayName>
- <displayName count="one">Катар риалы</displayName>
- <displayName count="other">Катар риалы</displayName>
- </currency>
- <currency type="RON">
- <displayName>Румыния лейи</displayName>
- <displayName count="one">Румыния лейи</displayName>
- <displayName count="other">Румыния лейи</displayName>
- </currency>
- <currency type="RSD">
- <displayName>Сербия динары</displayName>
- <displayName count="one">Сербия динары</displayName>
- <displayName count="other">Сербия динары</displayName>
- </currency>
- <currency type="RUB">
- <displayName>Орусия рублу</displayName>
- <displayName count="one">Орусия рублу</displayName>
- <displayName count="other">Орусия рублу</displayName>
- </currency>
- <currency type="RWF">
- <displayName>Руанда франкы</displayName>
- <displayName count="one">Руанда франкы</displayName>
- <displayName count="other">Руанда франкы</displayName>
- </currency>
- <currency type="SAR">
- <displayName>Сауд риалы</displayName>
- <displayName count="one">Сауд риалы</displayName>
- <displayName count="other">Сауд риалы</displayName>
- </currency>
- <currency type="SBD">
- <displayName>Соломон доллары</displayName>
- <displayName count="one">Соломон доллары</displayName>
- <displayName count="other">Соломон доллары</displayName>
- </currency>
- <currency type="SCR">
- <displayName>Сейшел руписи</displayName>
- <displayName count="one">Сейшел руписи</displayName>
- <displayName count="other">Сейшел руписи</displayName>
- </currency>
- <currency type="SDG">
- <displayName>Судан фунту</displayName>
- <displayName count="one">Судан фунту</displayName>
- <displayName count="other">Судан фунту</displayName>
- </currency>
- <currency type="SEK">
- <displayName>Швеция крону</displayName>
- <displayName count="one">Швеция крону</displayName>
- <displayName count="other">Швеция крону</displayName>
- </currency>
- <currency type="SGD">
- <displayName>Сингапур доллары</displayName>
- <displayName count="one">Сингапур доллары</displayName>
- <displayName count="other">Сингапур доллары</displayName>
- </currency>
- <currency type="SHP">
- <displayName>Ыйык Елена фунту</displayName>
- <displayName count="one">Ыйык Елена фунту</displayName>
- <displayName count="other">Ыйык Елена фунту</displayName>
- </currency>
- <currency type="SLL">
- <displayName>Сиерра Леоне леонеси</displayName>
- <displayName count="one">Сиерра Леоне леонеси</displayName>
- <displayName count="other">Сиерра Леоне леонеси</displayName>
- </currency>
- <currency type="SOS">
- <displayName>Сомали шиллинги</displayName>
- <displayName count="one">Сомали шиллинги</displayName>
- <displayName count="other">Сомали шиллинги</displayName>
- </currency>
- <currency type="SRD">
- <displayName>Суринам доллары</displayName>
- <displayName count="one">Суринам доллары</displayName>
- <displayName count="other">Суринам доллары</displayName>
- </currency>
- <currency type="SSP">
- <displayName>Түштүк Судан фунту</displayName>
- <displayName count="one">Түштүк Судан фунту</displayName>
- <displayName count="other">Түштүк Судан фунту</displayName>
- </currency>
- <currency type="STD">
- <displayName>Сао Томе жана Принсипе добрасы</displayName>
- <displayName count="one">Сао Томе жана Принсипе добрасы</displayName>
- <displayName count="other">Сао Томе жана Принсипе добрасы</displayName>
- </currency>
- <currency type="SYP">
- <displayName>Сирия фунту</displayName>
- <displayName count="one">Сирия фунту</displayName>
- <displayName count="other">Сирия фунту</displayName>
- </currency>
- <currency type="SZL">
- <displayName>Свази лилангени</displayName>
- <displayName count="one">Свази лилангени</displayName>
- <displayName count="other">Свази эмалангени</displayName>
- </currency>
- <currency type="THB">
- <displayName>Тай баты</displayName>
- <displayName count="one">Тай баты</displayName>
- <displayName count="other">Тай баты</displayName>
- <symbol>฿</symbol>
- </currency>
- <currency type="TJS">
- <displayName>Тажикстан сомониси</displayName>
- <displayName count="one">Тажикстан сомониси</displayName>
- <displayName count="other">Тажикстан сомониси</displayName>
- </currency>
- <currency type="TMT">
- <displayName>Түркмөнстан манаты</displayName>
- <displayName count="one">Түркмөнстан манаты</displayName>
- <displayName count="other">Түркмөнстан манаты</displayName>
- </currency>
- <currency type="TND">
- <displayName>Тунис динары</displayName>
- <displayName count="one">Тунис динары</displayName>
- <displayName count="other">Тунис динары</displayName>
- </currency>
- <currency type="TOP">
- <displayName>Тонга паангасы</displayName>
- <displayName count="one">Тонга паангасы</displayName>
- <displayName count="other">Тонга паангасы</displayName>
- </currency>
- <currency type="TRY">
- <displayName>Түркия лирасы</displayName>
- <displayName count="one">Түркия лирасы</displayName>
- <displayName count="other">Түркия лирасы</displayName>
- </currency>
- <currency type="TTD">
- <displayName>Тринидад жана Тобаго доллары</displayName>
- <displayName count="one">Тринидад жана Тобаго доллары</displayName>
- <displayName count="other">Тринидад жана Тобаго доллары</displayName>
- </currency>
- <currency type="TWD">
- <displayName>Тайвань жаӊы доллары</displayName>
- <displayName count="one">Тайвань жаӊы доллары</displayName>
- <displayName count="other">Тайвань жаӊы доллары</displayName>
- <symbol>TWD</symbol>
- </currency>
- <currency type="TZS">
- <displayName>Танзания шиллинги</displayName>
- <displayName count="one">Танзания шиллинги</displayName>
- <displayName count="other">Танзания шиллинги</displayName>
- </currency>
- <currency type="UAH">
- <displayName>Украина гривени</displayName>
- <displayName count="one">Украина гривени</displayName>
- <displayName count="other">Украина гривени</displayName>
- </currency>
- <currency type="UGX">
- <displayName>Уганда шиллинги</displayName>
- <displayName count="one">Уганда шиллинги</displayName>
- <displayName count="other">Уганда шиллинги</displayName>
- </currency>
- <currency type="USD">
- <displayName>АКШ доллары</displayName>
- <displayName count="one">АКШ доллары</displayName>
- <displayName count="other">АКШ доллары</displayName>
- <symbol>USD</symbol>
- </currency>
- <currency type="UYU">
- <displayName>Уругвай песосу</displayName>
- <displayName count="one">Уругвай песосу</displayName>
- <displayName count="other">Уругвай песосу</displayName>
- </currency>
- <currency type="UZS">
- <displayName>Өзбекстан сому</displayName>
- <displayName count="one">Өзбекстан сому</displayName>
- <displayName count="other">Өзбекстан сому</displayName>
- </currency>
- <currency type="VEF">
- <displayName>Венесуэла боливары</displayName>
- <displayName count="one">Венесуэла боливары</displayName>
- <displayName count="other">Венесуэла боливары</displayName>
- </currency>
- <currency type="VND">
- <displayName>Вьетнам доӊу</displayName>
- <displayName count="one">Вьетнам доӊу</displayName>
- <displayName count="other">Вьетнам доӊу</displayName>
- <symbol>₫</symbol>
- </currency>
- <currency type="VUV">
- <displayName>Вануату ватусу</displayName>
- <displayName count="one">Вануату ватусу</displayName>
- <displayName count="other">Вануату ватусу</displayName>
- </currency>
- <currency type="WST">
- <displayName>Самоа таласы</displayName>
- <displayName count="one">Самоа таласы</displayName>
- <displayName count="other">Самоа таласы</displayName>
- </currency>
- <currency type="XAF">
- <displayName>Борбор Африка CFA франкы</displayName>
- <displayName count="one">Борбор Африка CFA франкы</displayName>
- <displayName count="other">Борбор Африка CFA франкы</displayName>
- <symbol>FCFA</symbol>
- </currency>
- <currency type="XCD">
- <displayName>Чыгыш Кариб доллары</displayName>
- <displayName count="one">Чыгыш Кариб доллары</displayName>
- <displayName count="other">Чыгыш Кариб доллары</displayName>
- <symbol>XCD</symbol>
- </currency>
- <currency type="XOF">
- <displayName>Батыш Африка CFA франкы</displayName>
- <displayName count="one">Батыш Африка CFA франкы</displayName>
- <displayName count="other">Батыш Африка CFA франкы</displayName>
- <symbol>CFA</symbol>
- </currency>
- <currency type="XPF">
- <displayName>CFP франкы</displayName>
- <displayName count="one">CFP франкы</displayName>
- <displayName count="other">CFP франкы</displayName>
- <symbol>CFPF</symbol>
- </currency>
- <currency type="XXX">
- <displayName>Белгисиз акча</displayName>
- <displayName count="one">Белгисиз акча</displayName>
- <displayName count="other">Белгисиз акча</displayName>
- </currency>
- <currency type="YER">
- <displayName>Йемен риалы</displayName>
- <displayName count="one">Йемен риалы</displayName>
- <displayName count="other">Йемен риалы</displayName>
- </currency>
- <currency type="ZAR">
- <displayName>Түштүк Африка ранды</displayName>
- <displayName count="one">Түштүк Африка ранды</displayName>
- <displayName count="other">Түштүк Африка ранды</displayName>
- </currency>
- <currency type="ZMW">
- <displayName>Замбия квачасы</displayName>
- <displayName count="one">Замбия квачасы</displayName>
- <displayName count="other">Замбия квачасы</displayName>
- </currency>
- </currencies>
- <miscPatterns numberSystem="latn">
- <pattern type="atLeast">⩾{0}</pattern>
- <pattern type="range">{0}–{1}</pattern>
- </miscPatterns>
- </numbers>
- <units>
- <unitLength type="long">
- <compoundUnit type="per">
- <compoundUnitPattern>{0}/{1}</compoundUnitPattern>
- </compoundUnit>
- <unit type="acceleration-g-force">
- <unitPattern count="one">{0} оордук күчү</unitPattern>
- <unitPattern count="other">{0} оордук күчү</unitPattern>
- </unit>
- <unit type="angle-arc-minute">
- <unitPattern count="one">{0}′</unitPattern>
- <unitPattern count="other">{0}′</unitPattern>
- </unit>
- <unit type="angle-arc-second">
- <unitPattern count="one">{0}″</unitPattern>
- <unitPattern count="other">{0}″</unitPattern>
- </unit>
- <unit type="angle-degree">
- <unitPattern count="one">{0} градус</unitPattern>
- <unitPattern count="other">{0} градус</unitPattern>
- </unit>
- <unit type="area-acre">
- <unitPattern count="one">{0} акр</unitPattern>
- <unitPattern count="other">{0} акр</unitPattern>
- </unit>
- <unit type="area-hectare">
- <unitPattern count="one">{0} гектар</unitPattern>
- <unitPattern count="other">{0} гектар</unitPattern>
- </unit>
- <unit type="area-square-foot">
- <unitPattern count="one">{0} чарчы фут</unitPattern>
- <unitPattern count="other">{0} чарчы фут</unitPattern>
- </unit>
- <unit type="area-square-kilometer">
- <unitPattern count="one">{0} чарчы километр</unitPattern>
- <unitPattern count="other">{0} чарчы километр</unitPattern>
- </unit>
- <unit type="area-square-meter">
- <unitPattern count="one">{0} чарчы метр</unitPattern>
- <unitPattern count="other">{0} чарчы метр</unitPattern>
- </unit>
- <unit type="area-square-mile">
- <unitPattern count="one">{0} чарчы чакырым</unitPattern>
- <unitPattern count="other">{0} чарчы чакырым</unitPattern>
- </unit>
- <unit type="duration-day">
- <unitPattern count="one">{0} күн</unitPattern>
- <unitPattern count="other">{0} күн</unitPattern>
- </unit>
- <unit type="duration-hour">
- <unitPattern count="one">{0} саат</unitPattern>
- <unitPattern count="other">{0} саат</unitPattern>
- </unit>
- <unit type="duration-millisecond">
- <unitPattern count="one">{0} миллисекунд</unitPattern>
- <unitPattern count="other">{0} миллисекунд</unitPattern>
- </unit>
- <unit type="duration-minute">
- <unitPattern count="one">{0} мүнөт</unitPattern>
- <unitPattern count="other">{0} мүнөт</unitPattern>
- </unit>
- <unit type="duration-month">
- <unitPattern count="one">{0} ай</unitPattern>
- <unitPattern count="other">{0} ай</unitPattern>
- </unit>
- <unit type="duration-second">
- <unitPattern count="one">{0} секунд</unitPattern>
- <unitPattern count="other">{0} секунд</unitPattern>
- </unit>
- <unit type="duration-week">
- <unitPattern count="one">{0} апта</unitPattern>
- <unitPattern count="other">{0} апта</unitPattern>
- </unit>
- <unit type="duration-year">
- <unitPattern count="one">{0} жыл</unitPattern>
- <unitPattern count="other">{0} жыл</unitPattern>
- </unit>
- <unit type="length-centimeter">
- <unitPattern count="one">{0} см</unitPattern>
- <unitPattern count="other">{0} см</unitPattern>
- </unit>
- <unit type="length-foot">
- <unitPattern count="one">{0} фут</unitPattern>
- <unitPattern count="other">{0} фут</unitPattern>
- </unit>
- <unit type="length-inch">
- <unitPattern count="one">{0} дүйм</unitPattern>
- <unitPattern count="other">{0} дүйм</unitPattern>
- </unit>
- <unit type="length-kilometer">
- <unitPattern count="one">{0} километр</unitPattern>
- <unitPattern count="other">{0} километр</unitPattern>
- </unit>
- <unit type="length-light-year">
- <unitPattern count="one">{0} жарык жылы</unitPattern>
- <unitPattern count="other">{0} жарык жылы</unitPattern>
- </unit>
- <unit type="length-meter">
- <unitPattern count="one">{0} метр</unitPattern>
- <unitPattern count="other">{0} метр</unitPattern>
- </unit>
- <unit type="length-mile">
- <unitPattern count="one">{0} чакырым</unitPattern>
- <unitPattern count="other">{0} чакырым</unitPattern>
- </unit>
- <unit type="length-millimeter">
- <unitPattern count="one">{0} миллиметр</unitPattern>
- <unitPattern count="other">{0} миллиметр</unitPattern>
- </unit>
- <unit type="length-picometer">
- <unitPattern count="one">{0} пикометр</unitPattern>
- <unitPattern count="other">{0} пикометр</unitPattern>
- </unit>
- <unit type="length-yard">
- <unitPattern count="one">{0} ярд</unitPattern>
- <unitPattern count="other">{0} ярд</unitPattern>
- </unit>
- <unit type="mass-gram">
- <unitPattern count="one">{0} грамм</unitPattern>
- <unitPattern count="other">{0} грамм</unitPattern>
- </unit>
- <unit type="mass-kilogram">
- <unitPattern count="one">{0} килограмм</unitPattern>
- <unitPattern count="other">{0} килограмм</unitPattern>
- </unit>
- <unit type="mass-ounce">
- <unitPattern count="one">{0} унция</unitPattern>
- <unitPattern count="other">{0} унция</unitPattern>
- </unit>
- <unit type="mass-pound">
- <unitPattern count="one">{0} фунт</unitPattern>
- <unitPattern count="other">{0} фунт</unitPattern>
- </unit>
- <unit type="power-horsepower">
- <unitPattern count="one">{0} аттын күчү</unitPattern>
- <unitPattern count="other">{0} аттын күчү</unitPattern>
- </unit>
- <unit type="power-kilowatt">
- <unitPattern count="one">{0} киловатт</unitPattern>
- <unitPattern count="other">{0} киловатт</unitPattern>
- </unit>
- <unit type="power-watt">
- <unitPattern count="one">{0} ватт</unitPattern>
- <unitPattern count="other">{0} ватт</unitPattern>
- </unit>
- <unit type="pressure-hectopascal">
- <unitPattern count="one">гектопаскаль</unitPattern>
- <unitPattern count="other">{0} гектопаскаль</unitPattern>
- </unit>
- <unit type="pressure-inch-hg">
- <unitPattern count="one">{0} дүйм сымап мамычасы</unitPattern>
- <unitPattern count="other">{0} дүйм сымап мамычасы</unitPattern>
- </unit>
- <unit type="pressure-millibar">
- <unitPattern count="one">{0} миллибар</unitPattern>
- <unitPattern count="other">{0} миллибар</unitPattern>
- </unit>
- <unit type="speed-kilometer-per-hour">
- <unitPattern count="one">саатына {0} километр</unitPattern>
- <unitPattern count="other">саатына {0} километр</unitPattern>
- </unit>
- <unit type="speed-meter-per-second">
- <unitPattern count="one">секундуна {0} метр</unitPattern>
- <unitPattern count="other">секундуна {0} метр</unitPattern>
- </unit>
- <unit type="speed-mile-per-hour">
- <unitPattern count="one">саатына {0} чакырым</unitPattern>
- <unitPattern count="other">саатына {0} чакырым</unitPattern>
- </unit>
- <unit type="temperature-celsius">
- <unitPattern count="one">{0}°C</unitPattern>
- <unitPattern count="other">{0}°C</unitPattern>
- </unit>
- <unit type="temperature-fahrenheit">
- <unitPattern count="one">{0}°F</unitPattern>
- <unitPattern count="other">{0}°F</unitPattern>
- </unit>
- <unit type="volume-cubic-kilometer">
- <unitPattern count="one">{0} куб километр</unitPattern>
- <unitPattern count="other">{0} куб километр</unitPattern>
- </unit>
- <unit type="volume-cubic-mile">
- <unitPattern count="one">{0} куб чакырым</unitPattern>
- <unitPattern count="other">{0}куб чакырым</unitPattern>
- </unit>
- <unit type="volume-liter">
- <unitPattern count="one">{0} литр</unitPattern>
- <unitPattern count="other">{0} литр</unitPattern>
- </unit>
- </unitLength>
- <unitLength type="short">
- <compoundUnit type="per">
- <compoundUnitPattern>{0}/{1}</compoundUnitPattern>
- </compoundUnit>
- <unit type="acceleration-g-force">
- <unitPattern count="one">{0} о.к.</unitPattern>
- <unitPattern count="other">{0} о.к.</unitPattern>
- </unit>
- <unit type="angle-arc-minute">
- <unitPattern count="one">{0}′</unitPattern>
- <unitPattern count="other">{0}′</unitPattern>
- </unit>
- <unit type="angle-arc-second">
- <unitPattern count="one">{0}″</unitPattern>
- <unitPattern count="other">{0}″</unitPattern>
- </unit>
- <unit type="angle-degree">
- <unitPattern count="one">{0}°</unitPattern>
- <unitPattern count="other">{0}°</unitPattern>
- </unit>
- <unit type="area-acre">
- <unitPattern count="one">{0} акр</unitPattern>
- <unitPattern count="other">{0} акр</unitPattern>
- </unit>
- <unit type="area-hectare">
- <unitPattern count="one">{0} га</unitPattern>
- <unitPattern count="other">{0} га</unitPattern>
- </unit>
- <unit type="area-square-foot">
- <unitPattern count="one">{0} фут²</unitPattern>
- <unitPattern count="other">{0} фут²</unitPattern>
- </unit>
- <unit type="area-square-kilometer">
- <unitPattern count="one">{0} км²</unitPattern>
- <unitPattern count="other">{0} км²</unitPattern>
- </unit>
- <unit type="area-square-meter">
- <unitPattern count="one">{0} м²</unitPattern>
- <unitPattern count="other">{0} м²</unitPattern>
- </unit>
- <unit type="area-square-mile">
- <unitPattern count="one">{0} чак²</unitPattern>
- <unitPattern count="other">{0} чак²</unitPattern>
- </unit>
- <unit type="duration-day">
- <unitPattern count="one">{0} күн</unitPattern>
- <unitPattern count="other">{0} күн</unitPattern>
- </unit>
- <unit type="duration-hour">
- <unitPattern count="one">{0} с</unitPattern>
- <unitPattern count="other">{0} с</unitPattern>
- </unit>
- <unit type="duration-millisecond">
- <unitPattern count="one">{0} мс</unitPattern>
- <unitPattern count="other">{0} мс</unitPattern>
- </unit>
- <unit type="duration-minute">
- <unitPattern count="one">{0} мүн</unitPattern>
- <unitPattern count="other">{0} мүн</unitPattern>
- </unit>
- <unit type="duration-month">
- <unitPattern count="one">{0} ай</unitPattern>
- <unitPattern count="other">{0} ай</unitPattern>
- </unit>
- <unit type="duration-second">
- <unitPattern count="one">{0} сек</unitPattern>
- <unitPattern count="other">{0} сек</unitPattern>
- </unit>
- <unit type="duration-week">
- <unitPattern count="one">{0} ап</unitPattern>
- <unitPattern count="other">{0} ап</unitPattern>
- </unit>
- <unit type="duration-year">
- <unitPattern count="one">{0} ж.</unitPattern>
- <unitPattern count="other">{0} ж.</unitPattern>
- </unit>
- <unit type="length-centimeter">
- <unitPattern count="one">{0} см</unitPattern>
- <unitPattern count="other">{0} см</unitPattern>
- </unit>
- <unit type="length-foot">
- <unitPattern count="one">{0} фут</unitPattern>
- <unitPattern count="other">{0} фут</unitPattern>
- </unit>
- <unit type="length-inch">
- <unitPattern count="one">{0} д</unitPattern>
- <unitPattern count="other">{0} д</unitPattern>
- </unit>
- <unit type="length-kilometer">
- <unitPattern count="one">{0} км</unitPattern>
- <unitPattern count="other">{0} км</unitPattern>
- </unit>
- <unit type="length-light-year">
- <unitPattern count="one">{0} жар.ж.</unitPattern>
- <unitPattern count="other">{0} жар.ж.</unitPattern>
- </unit>
- <unit type="length-meter">
- <unitPattern count="one">{0} м</unitPattern>
- <unitPattern count="other">{0} м</unitPattern>
- </unit>
- <unit type="length-mile">
- <unitPattern count="one">{0} чак</unitPattern>
- <unitPattern count="other">{0} чак</unitPattern>
- </unit>
- <unit type="length-millimeter">
- <unitPattern count="one">{0} мм</unitPattern>
- <unitPattern count="other">{0} мм</unitPattern>
- </unit>
- <unit type="length-picometer">
- <unitPattern count="one">{0} пм</unitPattern>
- <unitPattern count="other">{0} пм</unitPattern>
- </unit>
- <unit type="length-yard">
- <unitPattern count="one">{0} ярд</unitPattern>
- <unitPattern count="other">{0} ярд</unitPattern>
- </unit>
- <unit type="mass-gram">
- <unitPattern count="one">{0} г</unitPattern>
- <unitPattern count="other">{0} г</unitPattern>
- </unit>
- <unit type="mass-kilogram">
- <unitPattern count="one">{0} кг</unitPattern>
- <unitPattern count="other">{0} кг</unitPattern>
- </unit>
- <unit type="mass-ounce">
- <unitPattern count="one">{0} унция</unitPattern>
- <unitPattern count="other">{0} унция</unitPattern>
- </unit>
- <unit type="mass-pound">
- <unitPattern count="one">{0} фунт</unitPattern>
- <unitPattern count="other">{0} фунт</unitPattern>
- </unit>
- <unit type="power-horsepower">
- <unitPattern count="one">{0} ат</unitPattern>
- <unitPattern count="other">{0} ат</unitPattern>
- </unit>
- <unit type="power-kilowatt">
- <unitPattern count="one">{0} кВт</unitPattern>
- <unitPattern count="other">{0} кВт</unitPattern>
- </unit>
- <unit type="power-watt">
- <unitPattern count="one">{0} Вт</unitPattern>
- <unitPattern count="other">{0} Вт</unitPattern>
- </unit>
- <unit type="pressure-hectopascal">
- <unitPattern count="one">{0} гПа</unitPattern>
- <unitPattern count="other">{0} гПа</unitPattern>
- </unit>
- <unit type="pressure-inch-hg">
- <unitPattern count="one">{0} дүйм сымап</unitPattern>
- <unitPattern count="other">{0} дүйм сымап</unitPattern>
- </unit>
- <unit type="pressure-millibar">
- <unitPattern count="one">{0} мб</unitPattern>
- <unitPattern count="other">{0} мб</unitPattern>
- </unit>
- <unit type="speed-kilometer-per-hour">
- <unitPattern count="one">{0} км/с</unitPattern>
- <unitPattern count="other">{0} км/с</unitPattern>
- </unit>
- <unit type="speed-meter-per-second">
- <unitPattern count="one">{0} м/с</unitPattern>
- <unitPattern count="other">{0} м/с</unitPattern>
- </unit>
- <unit type="speed-mile-per-hour">
- <unitPattern count="one">{0} чак/с</unitPattern>
- <unitPattern count="other">{0} чак/с</unitPattern>
- </unit>
- <unit type="temperature-celsius">
- <unitPattern count="one">{0}°C</unitPattern>
- <unitPattern count="other">{0}°C</unitPattern>
- </unit>
- <unit type="temperature-fahrenheit">
- <unitPattern count="one">{0}°F</unitPattern>
- <unitPattern count="other">{0}°F</unitPattern>
- </unit>
- <unit type="volume-cubic-kilometer">
- <unitPattern count="one">{0} км³</unitPattern>
- <unitPattern count="other">{0} км³</unitPattern>
- </unit>
- <unit type="volume-cubic-mile">
- <unitPattern count="one">{0} чак³</unitPattern>
- <unitPattern count="other">{0} чак³</unitPattern>
- </unit>
- <unit type="volume-liter">
- <unitPattern count="one">{0} л</unitPattern>
- <unitPattern count="other">{0} л</unitPattern>
- </unit>
- </unitLength>
- <unitLength type="narrow">
- <compoundUnit type="per">
- <compoundUnitPattern>{0}/{1}</compoundUnitPattern>
- </compoundUnit>
- <unit type="acceleration-g-force">
- <unitPattern count="one">{0} о.к.</unitPattern>
- <unitPattern count="other">{0} о.к.</unitPattern>
- </unit>
- <unit type="angle-arc-minute">
- <unitPattern count="one">{0}′</unitPattern>
- <unitPattern count="other">{0}′</unitPattern>
- </unit>
- <unit type="angle-arc-second">
- <unitPattern count="one">{0}″</unitPattern>
- <unitPattern count="other">{0}″</unitPattern>
- </unit>
- <unit type="angle-degree">
- <unitPattern count="one">{0}°</unitPattern>
- <unitPattern count="other">{0}°</unitPattern>
- </unit>
- <unit type="area-acre">
- <unitPattern count="one">{0} акр</unitPattern>
- <unitPattern count="other">{0} акр</unitPattern>
- </unit>
- <unit type="area-hectare">
- <unitPattern count="one">{0} га</unitPattern>
- <unitPattern count="other">{0} га</unitPattern>
- </unit>
- <unit type="area-square-foot">
- <unitPattern count="one">{0} фут²</unitPattern>
- <unitPattern count="other">{0} фут²</unitPattern>
- </unit>
- <unit type="area-square-kilometer">
- <unitPattern count="one">{0} км²</unitPattern>
- <unitPattern count="other">{0} км²</unitPattern>
- </unit>
- <unit type="area-square-meter">
- <unitPattern count="one">{0} м²</unitPattern>
- <unitPattern count="other">{0} м²</unitPattern>
- </unit>
- <unit type="area-square-mile">
- <unitPattern count="one">{0} чак²</unitPattern>
- <unitPattern count="other">{0} чак²</unitPattern>
- </unit>
- <unit type="duration-day">
- <unitPattern count="one">{0} к</unitPattern>
- <unitPattern count="other">{0} к</unitPattern>
- </unit>
- <unit type="duration-hour">
- <unitPattern count="one">{0} с</unitPattern>
- <unitPattern count="other">{0} с</unitPattern>
- </unit>
- <unit type="duration-millisecond">
- <unitPattern count="one">{0} мс</unitPattern>
- <unitPattern count="other">{0} мс</unitPattern>
- </unit>
- <unit type="duration-minute">
- <unitPattern count="one">{0} мүн</unitPattern>
- <unitPattern count="other">{0} мүн</unitPattern>
- </unit>
- <unit type="duration-month">
- <unitPattern count="one">{0} ай</unitPattern>
- <unitPattern count="other">{0} ай</unitPattern>
- </unit>
- <unit type="duration-second">
- <unitPattern count="one">{0} сек</unitPattern>
- <unitPattern count="other">{0} сек</unitPattern>
- </unit>
- <unit type="duration-week">
- <unitPattern count="one">{0} ап</unitPattern>
- <unitPattern count="other">{0} ап</unitPattern>
- </unit>
- <unit type="duration-year">
- <unitPattern count="one">{0} ж.</unitPattern>
- <unitPattern count="other">{0} ж.</unitPattern>
- </unit>
- <unit type="length-centimeter">
- <unitPattern count="one">{0} см</unitPattern>
- <unitPattern count="other">{0} см</unitPattern>
- </unit>
- <unit type="length-foot">
- <unitPattern count="one">{0} фут</unitPattern>
- <unitPattern count="other">{0} фут</unitPattern>
- </unit>
- <unit type="length-inch">
- <unitPattern count="one">{0} д</unitPattern>
- <unitPattern count="other">{0} д</unitPattern>
- </unit>
- <unit type="length-kilometer">
- <unitPattern count="one">{0} км</unitPattern>
- <unitPattern count="other">{0} км</unitPattern>
- </unit>
- <unit type="length-light-year">
- <unitPattern count="one">{0} жар.ж.</unitPattern>
- <unitPattern count="other">{0} жар.ж.</unitPattern>
- </unit>
- <unit type="length-meter">
- <unitPattern count="one">{0} м</unitPattern>
- <unitPattern count="other">{0} м</unitPattern>
- </unit>
- <unit type="length-mile">
- <unitPattern count="one">{0} чак</unitPattern>
- <unitPattern count="other">{0} чак</unitPattern>
- </unit>
- <unit type="length-millimeter">
- <unitPattern count="one">{0} мм</unitPattern>
- <unitPattern count="other">{0} мм</unitPattern>
- </unit>
- <unit type="length-picometer">
- <unitPattern count="one">{0} пм</unitPattern>
- <unitPattern count="other">{0} пм</unitPattern>
- </unit>
- <unit type="length-yard">
- <unitPattern count="one">{0} ярд</unitPattern>
- <unitPattern count="other">{0} ярд</unitPattern>
- </unit>
- <unit type="mass-gram">
- <unitPattern count="one">{0} г</unitPattern>
- <unitPattern count="other">{0} г</unitPattern>
- </unit>
- <unit type="mass-kilogram">
- <unitPattern count="one">{0} кг</unitPattern>
- <unitPattern count="other">{0} кг</unitPattern>
- </unit>
- <unit type="mass-ounce">
- <unitPattern count="one">{0} унция</unitPattern>
- <unitPattern count="other">{0} унция</unitPattern>
- </unit>
- <unit type="mass-pound">
- <unitPattern count="one">{0} фунт</unitPattern>
- <unitPattern count="other">{0} фунт</unitPattern>
- </unit>
- <unit type="power-horsepower">
- <unitPattern count="one">{0} ат</unitPattern>
- <unitPattern count="other">{0} ат</unitPattern>
- </unit>
- <unit type="power-kilowatt">
- <unitPattern count="one">{0} кВт</unitPattern>
- <unitPattern count="other">{0} кВт</unitPattern>
- </unit>
- <unit type="power-watt">
- <unitPattern count="one">{0} Вт</unitPattern>
- <unitPattern count="other">{0} Вт</unitPattern>
- </unit>
- <unit type="pressure-hectopascal">
- <unitPattern count="one">{0} гПа</unitPattern>
- <unitPattern count="other">{0} гПа</unitPattern>
- </unit>
- <unit type="pressure-inch-hg">
- <unitPattern count="one">{0} inHg</unitPattern>
- <unitPattern count="other">{0} inHg</unitPattern>
- </unit>
- <unit type="pressure-millibar">
- <unitPattern count="one">{0} мб</unitPattern>
- <unitPattern count="other">{0} мб</unitPattern>
- </unit>
- <unit type="speed-kilometer-per-hour">
- <unitPattern count="one">{0} км/с</unitPattern>
- <unitPattern count="other">{0} км/с</unitPattern>
- </unit>
- <unit type="speed-meter-per-second">
- <unitPattern count="one">{0} м/с</unitPattern>
- <unitPattern count="other">{0} м/с</unitPattern>
- </unit>
- <unit type="speed-mile-per-hour">
- <unitPattern count="one">{0} чак/с</unitPattern>
- <unitPattern count="other">{0} чак/с</unitPattern>
- </unit>
- <unit type="temperature-celsius">
- <unitPattern count="one">{0}°</unitPattern>
- <unitPattern count="other">{0}°</unitPattern>
- </unit>
- <unit type="temperature-fahrenheit">
- <unitPattern count="one">{0}°F</unitPattern>
- <unitPattern count="other">{0}°F</unitPattern>
- </unit>
- <unit type="volume-cubic-kilometer">
- <unitPattern count="one">{0} км³</unitPattern>
- <unitPattern count="other">{0} км³</unitPattern>
- </unit>
- <unit type="volume-cubic-mile">
- <unitPattern count="one">{0} чак³</unitPattern>
- <unitPattern count="other">{0} чак³</unitPattern>
- </unit>
- <unit type="volume-liter">
- <unitPattern count="one">{0} л</unitPattern>
- <unitPattern count="other">{0} л</unitPattern>
- </unit>
- </unitLength>
- <durationUnit type="hm">
- <durationUnitPattern>h:mm</durationUnitPattern>
- </durationUnit>
- <durationUnit type="hms">
- <durationUnitPattern>h:mm:ss</durationUnitPattern>
- </durationUnit>
- <durationUnit type="ms">
- <durationUnitPattern>m:ss</durationUnitPattern>
- </durationUnit>
- </units>
- <listPatterns>
- <listPattern>
- <listPatternPart type="start">{0}, {1}</listPatternPart>
- <listPatternPart type="middle">{0}, {1}</listPatternPart>
- <listPatternPart type="end">{0} жана {1}</listPatternPart>
- <listPatternPart type="2">{0} жана {1}</listPatternPart>
- </listPattern>
- <listPattern type="unit">
- <listPatternPart type="start">{0}, {1}</listPatternPart>
- <listPatternPart type="middle">{0}, {1}</listPatternPart>
- <listPatternPart type="end">{0}, {1}</listPatternPart>
- <listPatternPart type="2">{0}, {1}</listPatternPart>
- </listPattern>
- <listPattern type="unit-short">
- <listPatternPart type="start">{0}, {1}</listPatternPart>
- <listPatternPart type="middle">{0}, {1}</listPatternPart>
- <listPatternPart type="end">{0}, {1}</listPatternPart>
- <listPatternPart type="2">{0}, {1}</listPatternPart>
- </listPattern>
- </listPatterns>
- <posix>
- <messages>
- <yesstr>ооба:о</yesstr>
- <nostr>жок:ж</nostr>
- </messages>
- </posix>
- </ldml>
|