123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875 |
- <?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: 9852 $"/>
- <generation date="$Date: 2014-02-28 23:57:43 -0600 (Fri, 28 Feb 2014) $"/>
- <language type="kk"/>
- </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="ay" draft="unconfirmed">Аймара</language>
- <language type="az">әзірбайжан</language>
- <language type="be">беларус</language>
- <language type="bg">болгар</language>
- <language type="bn">бенгал</language>
- <language type="bo">тибет тілі</language>
- <language type="br" draft="unconfirmed">брит</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="dv" draft="unconfirmed">Мальдив</language>
- <language type="dz" draft="unconfirmed">дзонг-кэ</language>
- <language type="efi" draft="unconfirmed">эфик</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">ағылшын тілі (US)</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="gd" draft="unconfirmed">Солтүстік Шотландия</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="ia" draft="unconfirmed">интерлингва</language>
- <language type="id">индонезия</language>
- <language type="ie" draft="unconfirmed">интерлингве</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="ln" draft="unconfirmed">лингала</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="mn" draft="unconfirmed">моңғол</language>
- <language type="mr">маратхи</language>
- <language type="ms">малай</language>
- <language type="mt">мальта</language>
- <language type="my">бирман</language>
- <language type="nb">норвегиялық букмол</language>
- <language type="nd" draft="unconfirmed">Солтүстік ндебел</language>
- <language type="ne">непал</language>
- <language type="nl">голланд</language>
- <language type="nl_BE">флемиш</language>
- <language type="nn">норвегиялық нинорск</language>
- <language type="no" draft="unconfirmed">норвег</language>
- <language type="nso" draft="unconfirmed">Солтүстік сотхо</language>
- <language type="ny" draft="unconfirmed">ньянджа</language>
- <language type="oc" draft="unconfirmed">окситан</language>
- <language type="or">ория</language>
- <language type="os" draft="unconfirmed">осетин</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="rn" draft="unconfirmed">рунди</language>
- <language type="ro">румын</language>
- <language type="ru">орыс тілі</language>
- <language type="rw" draft="unconfirmed">киньяруанда</language>
- <language type="sa">санскрит</language>
- <language type="sah" draft="unconfirmed">якут</language>
- <language type="sd">синдхи</language>
- <language type="se" draft="unconfirmed">Солтүстік саам</language>
- <language type="sg" draft="unconfirmed">санго</language>
- <language type="sh" draft="unconfirmed">сербхорват</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" draft="unconfirmed">сесото</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" draft="unconfirmed">клингон</language>
- <language type="to">тонган</language>
- <language type="tr">түрік</language>
- <language type="tt">татар</language>
- <language type="tw" draft="unconfirmed">тви</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" draft="unconfirmed">идиш</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="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>
- <variants>
- <variant type="AREVELA" draft="unconfirmed">Шығыс-армян</variant>
- <variant type="AREVMDA" draft="unconfirmed">Батыс-армян</variant>
- <variant type="SAAHO" draft="unconfirmed">Сахо</variant>
- <variant type="WADEGILE" draft="unconfirmed">Уейд-Джайлс жүйесі</variant>
- </variants>
- <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="chinese" key="calendar" draft="unconfirmed">Қытай күнтізбесі</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="indian" key="calendar" draft="unconfirmed">Үндістанның ұлттық күнтізбесі</type>
- <type type="islamic" key="calendar" draft="unconfirmed">Ислам күнтізбесі</type>
- <type type="islamic-civil" key="calendar" draft="unconfirmed">Ислам азаматтық күнтізбесі</type>
- <type type="japanese" key="calendar" draft="unconfirmed">Жапон күнтізбесі</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="persian" key="calendar" draft="unconfirmed">Парсы күнтізбесі</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>
- <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">[А Ә Б В Г Ғ Д Е Ё Ж З И Й К Қ Л М Н Ң О Ө П Р С Т У Ұ Ү Ф Х Һ Ц Ч Ш Щ Ъ Ы І Ь Э Ю Я]</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="coptic">
- <months>
- <monthContext type="format">
- <monthWidth type="narrow">
- <month type="1" draft="unconfirmed">1</month>
- <month type="2" draft="unconfirmed">2</month>
- <month type="3" draft="unconfirmed">3</month>
- <month type="4" draft="unconfirmed">4</month>
- <month type="5" draft="unconfirmed">5</month>
- <month type="6" draft="unconfirmed">6</month>
- <month type="7" draft="unconfirmed">7</month>
- <month type="8" draft="unconfirmed">8</month>
- <month type="9" draft="unconfirmed">9</month>
- <month type="10" draft="unconfirmed">10</month>
- <month type="11" draft="unconfirmed">11</month>
- <month type="12" draft="unconfirmed">12</month>
- <month type="13" draft="unconfirmed">13</month>
- </monthWidth>
- </monthContext>
- </months>
- </calendar>
- <calendar type="generic">
- <dateFormats>
- <dateFormatLength type="full">
- <dateFormat>
- <pattern>EEEE, d MMMM y 'ж'. G</pattern>
- </dateFormat>
- </dateFormatLength>
- <dateFormatLength type="long">
- <dateFormat>
- <pattern>d MMMM y 'ж'. G</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 MMM d</dateFormatItem>
- <dateFormatItem id="GyMMMEd">G y MMM d, 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">MMM d</dateFormatItem>
- <dateFormatItem id="MMMEd">MMM d, E</dateFormatItem>
- <dateFormatItem id="y">G y</dateFormatItem>
- <dateFormatItem id="yyyy">G y</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 MMM d</dateFormatItem>
- <dateFormatItem id="yyyyMMMEd">G y MMM d, 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">h-h a</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="H">
- <greatestDifference id="H">HH-HH</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="hm">
- <greatestDifference id="h">h:mm-h:mm a</greatestDifference>
- <greatestDifference id="m">h:mm-h:mm a</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="h">h:mm-h:mm a v</greatestDifference>
- <greatestDifference id="m">h:mm-h:mm a 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="h">h-h a 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 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">MMMM - MMMM y G</greatestDifference>
- <greatestDifference id="y">MMMM y - MMMM y G</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">1</month>
- <month type="2">2</month>
- <month type="3">3</month>
- <month type="4">4</month>
- <month type="5">5</month>
- <month type="6">6</month>
- <month type="7">7</month>
- <month type="8">8</month>
- <month type="9">9</month>
- <month type="10">10</month>
- <month type="11">11</month>
- <month type="12">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="narrow">
- <month type="1">1</month>
- <month type="2">2</month>
- <month type="3">3</month>
- <month type="4">4</month>
- <month type="5">5</month>
- <month type="6">6</month>
- <month type="7">7</month>
- <month type="8">8</month>
- <month type="9">9</month>
- <month type="10">10</month>
- <month type="11">11</month>
- <month type="12">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="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="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>
- </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>
- <eraAbbr>
- <era type="0">б.з.д.</era>
- <era type="1">б.з.</era>
- </eraAbbr>
- </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 h:mm a</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 MMM d</dateFormatItem>
- <dateFormatItem id="GyMMMEd">G y MMM d, E</dateFormatItem>
- <dateFormatItem id="h">h a</dateFormatItem>
- <dateFormatItem id="H">HH</dateFormatItem>
- <dateFormatItem id="hm">h:mm a</dateFormatItem>
- <dateFormatItem id="Hm">HH:mm</dateFormatItem>
- <dateFormatItem id="hms">h:mm:ss a</dateFormatItem>
- <dateFormatItem id="Hms">HH:mm:ss</dateFormatItem>
- <dateFormatItem id="M">L</dateFormatItem>
- <dateFormatItem id="Md">dd-MM</dateFormatItem>
- <dateFormatItem id="MEd">E, dd-MM</dateFormatItem>
- <dateFormatItem id="MMM">LLL</dateFormatItem>
- <dateFormatItem id="MMMd">d MMM</dateFormatItem>
- <dateFormatItem id="MMMEd">E, d MMM</dateFormatItem>
- <dateFormatItem id="ms">mm:ss</dateFormatItem>
- <dateFormatItem id="y">y</dateFormatItem>
- <dateFormatItem id="yM">MM-y</dateFormatItem>
- <dateFormatItem id="yMd">dd-MM-y</dateFormatItem>
- <dateFormatItem id="yMEd">E, dd-MM-y</dateFormatItem>
- <dateFormatItem id="yMMM">MMM y</dateFormatItem>
- <dateFormatItem id="yMMMd">d MMM y</dateFormatItem>
- <dateFormatItem id="yMMMEd">E, d MMM y</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">h a – h a</greatestDifference>
- <greatestDifference id="h">h-h a</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="H">
- <greatestDifference id="H">HH-HH</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="hm">
- <greatestDifference id="a">h:mm a – h:mm a</greatestDifference>
- <greatestDifference id="h">h:mm-h:mm a</greatestDifference>
- <greatestDifference id="m">h:mm-h:mm a</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">h:mm a – h:mm a v</greatestDifference>
- <greatestDifference id="h">h:mm-h:mm a v</greatestDifference>
- <greatestDifference id="m">h:mm-h:mm a 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">h a – h a v</greatestDifference>
- <greatestDifference id="h">h-h a 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} күндізгі уақыты</regionFormat>
- <regionFormat type="standard">{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/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/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/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>
- <short>
- <generic>EET</generic>
- <standard>EET</standard>
- <daylight>EEST</daylight>
- </short>
- </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</nan>
- </symbols>
- <decimalFormats numberSystem="latn">
- <decimalFormatLength>
- <decimalFormat>
- <pattern>#,##0.###</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>
- </currency>
- <currency type="AWG">
- <displayName>Арубан флоринсы</displayName>
- <displayName count="one">Арубан флоринсы</displayName>
- <displayName count="other">Арубан флоринсы</displayName>
- </currency>
- <currency type="AZM">
- <displayName draft="unconfirmed">Азербайджан манаты (1993–2006)</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>
- </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>CA$</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>
- </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>
- </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>
- </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>
- </currency>
- <currency type="HNL">
- <displayName>Гондурас лемпираcы</displayName>
- <displayName count="one">Гондурас лемпираcы</displayName>
- <displayName count="other">Гондурас лемпираcы</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>
- </currency>
- <currency type="INR">
- <displayName>Үнді рупиясы</displayName>
- <displayName count="one">Үнді рупиясы</displayName>
- <displayName count="other">Үнді рупиясы</displayName>
- </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>
- </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>
- </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>
- </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>
- <symbol>₸</symbol>
- </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>MX$</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>
- </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>
- <symbol>руб.</symbol>
- </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>
- </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>
- </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>
- <symbol>US$</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>
- </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>КФА ВЕАС франкы</displayName>
- <displayName count="one">КФА ВЕАС франкы</displayName>
- <displayName count="other">КФА ВЕАС франкы</displayName>
- </currency>
- <currency type="XCD">
- <displayName>Шығыс Кариб доллары</displayName>
- <displayName count="one">Шығыс Кариб доллары</displayName>
- <displayName count="other">Шығыс Кариб доллары</displayName>
- </currency>
- <currency type="XOF">
- <displayName>КФА ВСЕАО франкы</displayName>
- <displayName count="one">КФА ВСЕАО франкы</displayName>
- <displayName count="other">КФА ВСЕАО франкы</displayName>
- </currency>
- <currency type="XPF">
- <displayName>КФП франкы</displayName>
- <displayName count="one">КФП франкы</displayName>
- <displayName count="other">КФП франкы</displayName>
- </currency>
- <currency type="XXX">
- <displayName>Белгісіз валюта</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">{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}Цельсий градусы</unitPattern>
- <unitPattern count="other">{0}Цельсий градусы</unitPattern>
- </unit>
- <unit type="temperature-fahrenheit">
- <unitPattern count="one">{0} Фаренгейт бойынша градус</unitPattern>
- <unitPattern count="other">{0} Фаренгейт бойынша градус</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} 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}°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} ly</unitPattern>
- <unitPattern count="other">{0} ly</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>
|