123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971 |
- <?xml version="1.0" encoding="UTF-8" ?>
- <!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
- <!-- Copyright © 1991-2013 Unicode, Inc.
- CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
- For terms of use, see http://www.unicode.org/copyright.html
- -->
- <ldml>
- <identity>
- <version number="$Revision: 9852 $"/>
- <generation date="$Date: 2014-02-28 23:57:43 -0600 (Fri, 28 Feb 2014) $"/>
- <language type="hy"/>
- </identity>
- <localeDisplayNames>
- <localeDisplayPattern>
- <localePattern>{0} ({1})</localePattern>
- <localeSeparator>{0}, {1}</localeSeparator>
- <localeKeyTypePattern>{0}. {1}</localeKeyTypePattern>
- </localeDisplayPattern>
- <languages>
- <language type="ab">աբխազերեն</language>
- <language type="af">աֆրիկաանս</language>
- <language type="am">ամհարերեն</language>
- <language type="ar">արաբերեն</language>
- <language type="ar_001">ժամանակակից ստանդարտ արաբերեն</language>
- <language type="as">ասամերեն</language>
- <language type="az">ադրբեջաներեն</language>
- <language type="be">բելառուսերեն</language>
- <language type="bg">բուլղարերեն</language>
- <language type="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="el">հունարեն</language>
- <language type="en">անգլերեն</language>
- <language type="en_AU">ավստրալական անգլերեն</language>
- <language type="en_CA">կանադական անգլերեն</language>
- <language type="en_GB">բրիտանական անգլերեն</language>
- <language type="en_GB" alt="short">անգլերեն (ՄԹ)</language>
- <language type="en_US">ամերիկյան անգլերեն</language>
- <language type="en_US" alt="short">անգլերեն (ԱՄՆ)</language>
- <language type="eo">էսպերանտո</language>
- <language type="es">իսպաներեն</language>
- <language type="es_419">լատինաամերիկյան իսպաներեն</language>
- <language type="es_ES">եվրոպական իսպաներեն</language>
- <language type="es_MX">մեքսիկական իսպաներեն</language>
- <language type="et">էստոներեն</language>
- <language type="eu">բասկերեն</language>
- <language type="fa">պարսկերեն</language>
- <language type="fi">ֆիններեն</language>
- <language type="fil">ֆիլիպիներեն</language>
- <language type="fj">ֆիջիերեն</language>
- <language type="fo">ֆարյորերեն</language>
- <language type="fr">ֆրանսերեն</language>
- <language type="fr_CA">կանադական ֆրանսերեն</language>
- <language type="fr_CH">շվեյցարական ֆրանսերեն</language>
- <language type="fy">արևմտյան ֆրիզերեն</language>
- <language type="ga">իռլանդերեն</language>
- <language type="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="ne">նեպալերեն</language>
- <language type="nl">հոլանդերեն</language>
- <language type="nl_BE">ֆլամանդերեն</language>
- <language type="nn">նորվեգերեն նյունորսկ</language>
- <language type="no" draft="unconfirmed">Նորվեգերեն</language>
- <language type="oc" draft="unconfirmed">Ակվիտաներեն</language>
- <language type="or">օրիյա</language>
- <language type="pa">փենջաբերեն</language>
- <language type="pl">լեհերեն</language>
- <language type="ps">փուշթու</language>
- <language type="pt">պորտուգալերեն</language>
- <language type="pt_BR">բրազիլական պորտուգալերեն</language>
- <language type="pt_PT">եվրոպական պորտուգալերեն</language>
- <language type="qu">քեչուա</language>
- <language type="rm">ռոմանշերեն</language>
- <language type="ro">ռումիներեն</language>
- <language type="ru">ռուսերեն</language>
- <language type="sa">սանսկրիտ</language>
- <language type="sd">սինդհի</language>
- <language type="sh" 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="CG" alt="variant">Կոնգո (Կոնգոյի Հանրապետություն)</territory>
- <territory type="CH">Շվեյցարիա</territory>
- <territory type="CI">Փղոսկրի Ափ</territory>
- <territory type="CK">Կուկի կղզիներ</territory>
- <territory type="CL">Չիլի</territory>
- <territory type="CM">Կամերուն</territory>
- <territory type="CN">Չինաստան</territory>
- <territory type="CO">Կոլումբիա</territory>
- <territory type="CP">Քլիփերթոն կղզի</territory>
- <territory type="CR">Կոստա-Ռիկա</territory>
- <territory type="CU">Կուբա</territory>
- <territory type="CV">Կաբո Վերդե</territory>
- <territory type="CW">Կյուրասաո</territory>
- <territory type="CX">Ծննդյան կղզի</territory>
- <territory type="CY">Կիպրոս</territory>
- <territory type="CZ">Չեխիա</territory>
- <territory type="DE">Գերմանիա</territory>
- <territory type="DG">Դիեգո Գարսիա</territory>
- <territory type="DJ">Ջիբուտի</territory>
- <territory type="DK">Դանիա</territory>
- <territory type="DM">Դոմինիկա</territory>
- <territory type="DO">Դոմինիկյան Հանրապետություն</territory>
- <territory type="DZ">Ալժիր</territory>
- <territory type="EA">Սեուտա և Մելիլյա</territory>
- <territory type="EC">Էկվադոր</territory>
- <territory type="EE">Էստոնիա</territory>
- <territory type="EG">Եգիպտոս</territory>
- <territory type="EH">Արևմտյան Սահարա</territory>
- <territory type="ER">Էրիտրեա</territory>
- <territory type="ES">Իսպանիա</territory>
- <territory type="ET">Եթովպիա</territory>
- <territory type="EU">Եվրոպական Միություն</territory>
- <territory type="FI">Ֆինլանդիա</territory>
- <territory type="FJ">Ֆիջի</territory>
- <territory type="FK">Ֆոլկլենդյան կղզիներ</territory>
- <territory type="FK" alt="variant">Ֆոլկլենդյան (Մալվինյան) կղզիներ</territory>
- <territory type="FM">Միկրոնեզիա</territory>
- <territory type="FO">Ֆարերյան կղզիներ</territory>
- <territory type="FR">Ֆրանսիա</territory>
- <territory type="GA">Գաբոն</territory>
- <territory type="GB">Միացյալ Թագավորություն</territory>
- <territory type="GB" alt="short">Միացյալ Թագավորություն</territory>
- <territory type="GD">Գրենադա</territory>
- <territory type="GE">Վրաստան</territory>
- <territory type="GF">Ֆրանսիական Գվիանա</territory>
- <territory type="GG">Գերնսի</territory>
- <territory type="GH">Գանա</territory>
- <territory type="GI">Ջիբրալթար</territory>
- <territory type="GL">Գրենլանդիա</territory>
- <territory type="GM">Գամբիա</territory>
- <territory type="GN">Գվինեա</territory>
- <territory type="GP">Գվադելուպա</territory>
- <territory type="GQ">Հասարակածային Գվինեա</territory>
- <territory type="GR">Հունաստան</territory>
- <territory type="GS">Հարավային Ջորջիա և Հարավային Սենդվիչյան կղզիներ</territory>
- <territory type="GT">Գվատեմալա</territory>
- <territory type="GU">Գուամ</territory>
- <territory type="GW">Գվինեա-Բիսաու</territory>
- <territory type="GY">Գայանա</territory>
- <territory type="HK">Հոնկոնգի ՀՎՇ</territory>
- <territory type="HK" alt="short">Հոնկոնգ</territory>
- <territory type="HM">Հերդ կղզի և ՄակԴոնալդի կղզիներ</territory>
- <territory type="HN">Հոնդուրաս</territory>
- <territory type="HR">Խորվաթիա</territory>
- <territory type="HT">Հաիթի</territory>
- <territory type="HU">Հունգարիա</territory>
- <territory type="IC">Կանարյան կղզիներ</territory>
- <territory type="ID">Ինդոնեզիա</territory>
- <territory type="IE">Իռլանդիա</territory>
- <territory type="IL">Իսրայել</territory>
- <territory type="IM">Մեն կղզի</territory>
- <territory type="IN">Հնդկաստան</territory>
- <territory type="IO">Հնդկական Օվկիանոսում Բրիտանական Տարածք</territory>
- <territory type="IQ">Իրաք</territory>
- <territory type="IR">Իրան</territory>
- <territory type="IS">Իսլանդիա</territory>
- <territory type="IT">Իտալիա</territory>
- <territory type="JE">Ջերսի</territory>
- <territory type="JM">Ջամայկա</territory>
- <territory type="JO">Հորդանան</territory>
- <territory type="JP">Ճապոնիա</territory>
- <territory type="KE">Քենիա</territory>
- <territory type="KG">Ղրղզստան</territory>
- <territory type="KH">Կամբոջա</territory>
- <territory type="KI">Կիրիբատի</territory>
- <territory type="KM">Կոմորյան կղզիներ</territory>
- <territory type="KN">Սենթ Քիթս և Նևիս</territory>
- <territory type="KP">Հյուսիսային Կորեա</territory>
- <territory type="KR">Հարավային Կորեա</territory>
- <territory type="KW">Քուվեյթ</territory>
- <territory type="KY">Կայմանյան կղզիներ</territory>
- <territory type="KZ">Ղազախստան</territory>
- <territory type="LA">Լաոս</territory>
- <territory type="LB">Լիբանան</territory>
- <territory type="LC">Սենթ Լյուսիա</territory>
- <territory type="LI">Լիխտենշտեյն</territory>
- <territory type="LK">Շրի Լանկա</territory>
- <territory type="LR">Լիբերիա</territory>
- <territory type="LS">Լեսոտո</territory>
- <territory type="LT">Լիտվա</territory>
- <territory type="LU">Լյուքսեմբուրգ</territory>
- <territory type="LV">Լատվիա</territory>
- <territory type="LY">Լիբիա</territory>
- <territory type="MA">Մարոկո</territory>
- <territory type="MC">Մոնակո</territory>
- <territory type="MD">Մոլդովա</territory>
- <territory type="ME">Չեռնոգորիա</territory>
- <territory type="MF">Սեն Մարտեն</territory>
- <territory type="MG">Մադագասկար</territory>
- <territory type="MH">Մարշալյան կղզիներ</territory>
- <territory type="MK">Մակեդոնիա</territory>
- <territory type="MK" alt="variant">Մակեդոնիա (ՄՆՀՀ)</territory>
- <territory type="ML">Մալի</territory>
- <territory type="MM">Մյանմա (Բիրմա)</territory>
- <territory type="MN">Մոնղոլիա</territory>
- <territory type="MO">Չինաստանի Մակաո ՀՎՇ</territory>
- <territory type="MO" alt="short">Մակաո</territory>
- <territory type="MP">Հյուսիսային Մարիանյան կղզիներ</territory>
- <territory type="MQ">Մարտինիկա</territory>
- <territory type="MR">Մավրիտանիա</territory>
- <territory type="MS">Մոնտսերատ</territory>
- <territory type="MT">Մալթա</territory>
- <territory type="MU">Մավրիկիոս</territory>
- <territory type="MV">Մալդիվներ</territory>
- <territory type="MW">Մալավի</territory>
- <territory type="MX">Մեքսիկա</territory>
- <territory type="MY">Մալայզիա</territory>
- <territory type="MZ">Մոզամբիկ</territory>
- <territory type="NA">Նամիբիա</territory>
- <territory type="NC">Նոր Կալեդոնիա</territory>
- <territory type="NE">Նիգեր</territory>
- <territory type="NF">Նորֆոլկ կղզի</territory>
- <territory type="NG">Նիգերիա</territory>
- <territory type="NI">Նիկարագուա</territory>
- <territory type="NL">Նիդերլանդեր</territory>
- <territory type="NO">Նորվեգիա</territory>
- <territory type="NP">Նեպալ</territory>
- <territory type="NR">Նաուրու</territory>
- <territory type="NU">Նիուե</territory>
- <territory type="NZ">Նոր Զելանդիա</territory>
- <territory type="OM">Օման</territory>
- <territory type="PA">Պանամա</territory>
- <territory type="PE">Պերու</territory>
- <territory type="PF">Ֆրանսիական Պոլինեզիա</territory>
- <territory type="PG">Պապուա Նոր Գվինեա</territory>
- <territory type="PH">Ֆիլիպիններ</territory>
- <territory type="PK">Պակիստան</territory>
- <territory type="PL">Լեհաստան</territory>
- <territory type="PM">Սեն Պիեր և Միկելոն</territory>
- <territory type="PN">Պիտկեռն կղզիներ</territory>
- <territory type="PR">Պուերտո Ռիկո</territory>
- <territory type="PS">Պաղեստինյան տարածքներ</territory>
- <territory type="PS" alt="short">Պաղեստին</territory>
- <territory type="PT">Պորտուգալիա</territory>
- <territory type="PW">Պալաու</territory>
- <territory type="PY">Պարագվայ</territory>
- <territory type="QA">Կատար</territory>
- <territory type="QO">Արտաքին Օվկիանիա</territory>
- <territory type="RE">Ռեյունիոն</territory>
- <territory type="RO">Ռումինիա</territory>
- <territory type="RS">Սերբիա</territory>
- <territory type="RU">Ռուսաստան</territory>
- <territory type="RW">Ռուանդա</territory>
- <territory type="SA">Սաուդյան Արաբիա</territory>
- <territory type="SB">Սողոմոնյան կղզիներ</territory>
- <territory type="SC">Սեյշելյան կղզիներ</territory>
- <territory type="SD">Սուդան</territory>
- <territory type="SE">Շվեդիա</territory>
- <territory type="SG">Սինգապուր</territory>
- <territory type="SH">Սուրբ Հեղինեի կղզի</territory>
- <territory type="SI">Սլովենիա</territory>
- <territory type="SJ">Սվալբարդ և Յան-Մայեն</territory>
- <territory type="SK">Սլովակիա</territory>
- <territory type="SL">Սյերա-Լեոնե</territory>
- <territory type="SM">Սան Մարինո</territory>
- <territory type="SN">Սենեգալ</territory>
- <territory type="SO">Սոմալի</territory>
- <territory type="SR">Սուրինամ</territory>
- <territory type="SS">Հարավային Սուդան</territory>
- <territory type="ST">Սան Տոմե և Պրինսիպի</territory>
- <territory type="SV">Սալվադոր</territory>
- <territory type="SX">Սինտ Մարտեն</territory>
- <territory type="SY">Սիրիա</territory>
- <territory type="SZ">Սվազիլենդ</territory>
- <territory type="TA">Տրիստան դա Կունյա</territory>
- <territory type="TC">Տերկս և Կայկոս կղզիներ</territory>
- <territory type="TD">Չադ</territory>
- <territory type="TF">Ֆրանսիական Հարավային Տարածքներ</territory>
- <territory type="TG">Տոգո</territory>
- <territory type="TH">Թաիլանդ</territory>
- <territory type="TJ">Տաջիկստան</territory>
- <territory type="TK">Տոկելաու</territory>
- <territory type="TL">Թիմոր-Լեստե</territory>
- <territory type="TL" alt="variant">Արևելյան Թիմոր</territory>
- <territory type="TM">Թուրքմենստան</territory>
- <territory type="TN">Թունիս</territory>
- <territory type="TO">Տոնգա</territory>
- <territory type="TR">Թուրքիա</territory>
- <territory type="TT">Տրինիդադ և Տոբագո</territory>
- <territory type="TV">Տուվալու</territory>
- <territory type="TW">Թայվան</territory>
- <territory type="TZ">Տանզանիա</territory>
- <territory type="UA">Ուկրաինա</territory>
- <territory type="UG">Ուգանդա</territory>
- <territory type="UM">Արտաքին կղզիներ (ԱՄՆ)</territory>
- <territory type="US">Ամերիկայի Միացյալ Նահանգներ</territory>
- <territory type="US" alt="short">ԱՄՆ</territory>
- <territory type="UY">Ուրուգվայ</territory>
- <territory type="UZ">Ուզբեկստան</territory>
- <territory type="VA">Վատիկան քաղաք-պետություն</territory>
- <territory type="VC">Սենթ Վիսենտ և Գրենադիններ</territory>
- <territory type="VE">Վենեսուելա</territory>
- <territory type="VG">Բրիտանական Վիրջինյան կղզիներ</territory>
- <territory type="VI">Ամերիկյան Վիրջինյան կղզիներ</territory>
- <territory type="VN">Վիետնամ</territory>
- <territory type="VU">Վանուատու</territory>
- <territory type="WF">Ուոլիս և Ֆուտունա</territory>
- <territory type="WS">Սամոա</territory>
- <territory type="XK">Կոսովո</territory>
- <territory type="YE">Եմեն</territory>
- <territory type="YT">Մայոտ</territory>
- <territory type="ZA">Հարավաֆրիկյան Հանրապետություն</territory>
- <territory type="ZM">Զամբիա</territory>
- <territory type="ZW">Զիմբաբվե</territory>
- <territory type="ZZ">Անհայտ տարածաշրջան</territory>
- </territories>
- <keys>
- <key type="calendar">Տոմար</key>
- <key type="collation">Տեսակավորման կարգ</key>
- <key type="currency">արժույթ</key>
- <key type="numbers">թվեր</key>
- </keys>
- <types>
- <type type="arab" key="numbers">արաբա-հնդկական թվեր</type>
- <type type="arabext" key="numbers">արաբա-հնդկական թվերի ընդլայնված համակարգ</type>
- <type type="armn" key="numbers">հայկական թվեր</type>
- <type type="armnlow" key="numbers">հայկական թվեր (փոքրատառ)</type>
- <type type="beng" key="numbers">բենգալական թվեր</type>
- <type type="deva" key="numbers">դեվանագարի թվեր</type>
- <type type="ducet" key="collation">Սկզբնադիր տեսակավորման կարգ Unicode-ի համար</type>
- <type type="ethi" key="numbers">եթովպական թվեր</type>
- <type type="fullwide" key="numbers">թվերի լայն ձևաչափ</type>
- <type type="geor" key="numbers">վրացական թվեր</type>
- <type type="gregorian" key="calendar">Գրիգորյան տոմար</type>
- <type type="grek" key="numbers">հունական թվեր</type>
- <type type="greklow" key="numbers">հունական թվեր (փոքրատառ)</type>
- <type type="gujr" key="numbers">գուջարաթի թվեր</type>
- <type type="guru" key="numbers">գուրմուխի թվեր</type>
- <type type="hanidec" key="numbers">չինական տասնորդական թվեր</type>
- <type type="hans" key="numbers">չինական պարզեցված թվեր</type>
- <type type="hansfin" key="numbers">չինական պարզեցված ֆինանսական թվեր</type>
- <type type="hant" key="numbers">չինական ավանդական թվեր</type>
- <type type="hantfin" key="numbers">չինական ավանդական ֆինանսական թվեր</type>
- <type type="hebr" key="numbers">եբրայերեն թվեր</type>
- <type type="jpan" key="numbers">ճապոնական թվեր</type>
- <type type="jpanfin" key="numbers">ճապոնական ֆինանսական թվեր</type>
- <type type="khmr" key="numbers">քմերական թվեր</type>
- <type type="knda" key="numbers">կաննադա թվեր</type>
- <type type="laoo" key="numbers">լաոսական թվեր</type>
- <type type="latn" key="numbers">արևմտյան թվեր</type>
- <type type="mlym" key="numbers">մալայալամ թվեր</type>
- <type type="mymr" key="numbers">բիրմական թվեր</type>
- <type type="orya" key="numbers">օրիյա թվեր</type>
- <type type="roman" key="numbers">հռոմեական թվեր</type>
- <type type="romanlow" key="numbers">հռոմեական թվեր (փոքրատառ)</type>
- <type type="search" key="collation">Ընդհանուր որոնում</type>
- <type type="standard" key="collation">Տեսակավորման ստանդարտ կարգ</type>
- <type type="taml" key="numbers">թամիլական ավանդական թվեր</type>
- <type type="tamldec" key="numbers">թամիլական թվեր</type>
- <type type="telu" key="numbers">թելուգու թվեր</type>
- <type type="thai" key="numbers">թայական թվեր</type>
- <type type="tibt" key="numbers">տիբեթական թվեր</type>
- </types>
- <measurementSystemNames>
- <measurementSystemName type="metric">Մետրիկ</measurementSystemName>
- <measurementSystemName type="UK">Անգլիական</measurementSystemName>
- <measurementSystemName type="US">Ամերիկյան</measurementSystemName>
- </measurementSystemNames>
- <codePatterns>
- <codePattern type="language">Լեզու. {0}</codePattern>
- <codePattern type="script">Գիր. {0}</codePattern>
- <codePattern type="territory">Շրջան. {0}</codePattern>
- </codePatterns>
- </localeDisplayNames>
- <characters>
- <exemplarCharacters>[ա բ գ դ ե զ է ը թ ժ ի լ խ ծ կ հ ձ ղ ճ մ յ ն շ ո չ պ ջ ռ ս վ տ ր ց ւ փ ք և օ ֆ]</exemplarCharacters>
- <exemplarCharacters type="auxiliary">[]</exemplarCharacters>
- <exemplarCharacters type="index" draft="unconfirmed">[Ա Բ Գ Դ Ե Զ Է Ը Թ Ժ Ի Լ Խ Ծ Կ Հ Ձ Ղ Ճ Մ Յ Ն Շ Ո Չ Պ Ջ Ռ Ս Վ Տ Ր Ց Ւ Փ Ք Օ Ֆ]</exemplarCharacters>
- <exemplarCharacters type="punctuation">[֊ , ՝ \: ՜ ՞ . « » ՚ ՛ ՟]</exemplarCharacters>
- <ellipsis type="final">{0}…</ellipsis>
- <ellipsis type="initial">…{0}</ellipsis>
- <ellipsis type="medial">{0}…{1}</ellipsis>
- <ellipsis type="word-final">{0} …</ellipsis>
- <ellipsis type="word-initial">… {0}</ellipsis>
- <ellipsis type="word-medial">{0} … {1}</ellipsis>
- <moreInformation>?</moreInformation>
- </characters>
- <delimiters>
- <quotationStart>«</quotationStart>
- <quotationEnd>»</quotationEnd>
- <alternateQuotationStart>«</alternateQuotationStart>
- <alternateQuotationEnd>»</alternateQuotationEnd>
- </delimiters>
- <dates>
- <calendars>
- <calendar type="generic">
- <dateFormats>
- <dateFormatLength type="full">
- <dateFormat>
- <pattern>d MMMM, y թ. G, EEEE</pattern>
- </dateFormat>
- </dateFormatLength>
- <dateFormatLength type="long">
- <dateFormat>
- <pattern>dd MMMM, y թ. G</pattern>
- </dateFormat>
- </dateFormatLength>
- <dateFormatLength type="medium">
- <dateFormat>
- <pattern>dd MMM, 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, ccc</dateFormatItem>
- <dateFormatItem id="Gy">G yթ.</dateFormatItem>
- <dateFormatItem id="GyMMM">G yթ. LLL</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">H</dateFormatItem>
- <dateFormatItem id="hm">h:mm a</dateFormatItem>
- <dateFormatItem id="Hm">H:mm</dateFormatItem>
- <dateFormatItem id="hms">h:mm:ss a</dateFormatItem>
- <dateFormatItem id="Hms">H:mm:ss</dateFormatItem>
- <dateFormatItem id="M">L</dateFormatItem>
- <dateFormatItem id="Md">dd.MM</dateFormatItem>
- <dateFormatItem id="MEd">dd.MM, E</dateFormatItem>
- <dateFormatItem id="MMM">LLL</dateFormatItem>
- <dateFormatItem id="MMMd">d MMM</dateFormatItem>
- <dateFormatItem id="MMMEd">d MMM, E</dateFormatItem>
- <dateFormatItem id="ms">mm:ss</dateFormatItem>
- <dateFormatItem id="y">y, G</dateFormatItem>
- <dateFormatItem id="yyyy">y, G</dateFormatItem>
- <dateFormatItem id="yyyyM">G yթ. MM</dateFormatItem>
- <dateFormatItem id="yyyyMd">d.M.yթ., G</dateFormatItem>
- <dateFormatItem id="yyyyMEd">d.MM.y թ., G, E</dateFormatItem>
- <dateFormatItem id="yyyyMMM">G y թ. LLL</dateFormatItem>
- <dateFormatItem id="yyyyMMMd">d MMM, y թ., G</dateFormatItem>
- <dateFormatItem id="yyyyMMMEd">d MMM, y թ. G, 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="a">h a – h a</greatestDifference>
- <greatestDifference id="h">h-h a</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="H">
- <greatestDifference id="H">H-H</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">H:mm-H:mm</greatestDifference>
- <greatestDifference id="m">H:mm-H: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">H:mm-H:mm v</greatestDifference>
- <greatestDifference id="m">H:mm-H: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">H-H 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">MMM dd-dd</greatestDifference>
- <greatestDifference id="M">MMM dd - MMM dd</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MMMEd">
- <greatestDifference id="d">E, MMM dd - E, MMM dd</greatestDifference>
- <greatestDifference id="M">E, MMM dd - E, MMM dd</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">ccc, dd.MM.y - ccc, dd.MM.y G</greatestDifference>
- <greatestDifference id="M">ccc, dd.MM.y - ccc, dd.MM.y G</greatestDifference>
- <greatestDifference id="y">ccc, dd.MM.y - ccc, 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">dd-dd MMM, y թ. G</greatestDifference>
- <greatestDifference id="M">dd MMM - dd MMM, y թ. G</greatestDifference>
- <greatestDifference id="y">dd MMM, y - dd MMM, y թ. G</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMMMEd">
- <greatestDifference id="d">E, d MMM - E, d MMM, y թ. G</greatestDifference>
- <greatestDifference id="M">E, d MMM - E, d MMM, y թ. G</greatestDifference>
- <greatestDifference id="y">E, d MMM, y - E, d MMM, y թ. G</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMMMM">
- <greatestDifference id="M">G y թ. MMM – MMM</greatestDifference>
- <greatestDifference id="y">MMM y - MMM 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">Հ</month>
- <month type="2">Փ</month>
- <month type="3">Մ</month>
- <month type="4">Ա</month>
- <month type="5">Մ</month>
- <month type="6">Հ</month>
- <month type="7">Հ</month>
- <month type="8">Օ</month>
- <month type="9">Ս</month>
- <month type="10">Հ</month>
- <month type="11">Ն</month>
- <month type="12">Դ</month>
- </monthWidth>
- <monthWidth type="wide">
- <month type="1">հունվարի</month>
- <month type="2">փետրվարի</month>
- <month type="3">մարտի</month>
- <month type="4">ապրիլի</month>
- <month type="5">մայիսի</month>
- <month type="6">հունիսի</month>
- <month type="7">հուլիսի</month>
- <month type="8">օգոստոսի</month>
- <month type="9">սեպտեմբերի</month>
- <month type="10">հոկտեմբերի</month>
- <month type="11">նոյեմբերի</month>
- <month type="12">դեկտեմբերի</month>
- </monthWidth>
- </monthContext>
- <monthContext type="stand-alone">
- <monthWidth type="abbreviated">
- <month type="1">հնվ</month>
- <month type="2">փտվ</month>
- <month type="3">մրտ</month>
- <month type="4">ապր</month>
- <month type="5">մյս</month>
- <month type="6">հնս</month>
- <month type="7">հլս</month>
- <month type="8">օգս</month>
- <month type="9">սպտ</month>
- <month type="10">հկտ</month>
- <month type="11">նյմ</month>
- <month type="12">դկտ</month>
- </monthWidth>
- <monthWidth type="narrow">
- <month type="1">Հ</month>
- <month type="2">Փ</month>
- <month type="3">Մ</month>
- <month type="4">Ա</month>
- <month type="5">Մ</month>
- <month type="6">Հ</month>
- <month type="7">Հ</month>
- <month type="8">Օ</month>
- <month type="9">Ս</month>
- <month type="10">Հ</month>
- <month type="11">Ն</month>
- <month type="12">Դ</month>
- </monthWidth>
- <monthWidth type="wide">
- <month type="1">հունվար</month>
- <month type="2">փետրվար</month>
- <month type="3">մարտ</month>
- <month type="4">ապրիլ</month>
- <month type="5">մայիս</month>
- <month type="6">հունիս</month>
- <month type="7">հուլիս</month>
- <month type="8">օգոստոս</month>
- <month type="9">սեպտեմբեր</month>
- <month type="10">հոկտեմբեր</month>
- <month type="11">նոյեմբեր</month>
- <month type="12">դեկտեմբեր</month>
- </monthWidth>
- </monthContext>
- </months>
- <days>
- <dayContext type="format">
- <dayWidth type="abbreviated">
- <day type="sun">կիր</day>
- <day type="mon">երկ</day>
- <day type="tue">երք</day>
- <day type="wed">չրք</day>
- <day type="thu">հնգ</day>
- <day type="fri">ուր</day>
- <day type="sat">շբթ</day>
- </dayWidth>
- <dayWidth type="narrow">
- <day type="sun">Կ</day>
- <day type="mon">Ե</day>
- <day type="tue">Ե</day>
- <day type="wed">Չ</day>
- <day type="thu">Հ</day>
- <day type="fri">Ու</day>
- <day type="sat">Շ</day>
- </dayWidth>
- <dayWidth type="short">
- <day type="sun">կիր</day>
- <day type="mon">երկ</day>
- <day type="tue">երք</day>
- <day type="wed">չրք</day>
- <day type="thu">հնգ</day>
- <day type="fri">ուր</day>
- <day type="sat">շբթ</day>
- </dayWidth>
- <dayWidth type="wide">
- <day type="sun">կիրակի</day>
- <day type="mon">երկուշաբթի</day>
- <day type="tue">երեքշաբթի</day>
- <day type="wed">չորեքշաբթի</day>
- <day type="thu">հինգշաբթի</day>
- <day type="fri">ուրբաթ</day>
- <day type="sat">շաբաթ</day>
- </dayWidth>
- </dayContext>
- <dayContext type="stand-alone">
- <dayWidth type="abbreviated">
- <day type="sun">կիր</day>
- <day type="mon">երկ</day>
- <day type="tue">երք</day>
- <day type="wed">չրք</day>
- <day type="thu">հնգ</day>
- <day type="fri">ուր</day>
- <day type="sat">շբթ</day>
- </dayWidth>
- <dayWidth type="narrow">
- <day type="sun">Կ</day>
- <day type="mon">Ե</day>
- <day type="tue">Ե</day>
- <day type="wed">Չ</day>
- <day type="thu">Հ</day>
- <day type="fri">Ու</day>
- <day type="sat">Շ</day>
- </dayWidth>
- <dayWidth type="short">
- <day type="sun">կր</day>
- <day type="mon">եկ</day>
- <day type="tue">եք</day>
- <day type="wed">չր</day>
- <day type="thu">հգ</day>
- <day type="fri">ուր</day>
- <day type="sat">շբ</day>
- </dayWidth>
- <dayWidth type="wide">
- <day type="sun">կիրակի</day>
- <day type="mon">երկուշաբթի</day>
- <day type="tue">երեքշաբթի</day>
- <day type="wed">չորեքշաբթի</day>
- <day type="thu">հինգշաբթի</day>
- <day type="fri">ուրբաթ</day>
- <day type="sat">շաբաթ</day>
- </dayWidth>
- </dayContext>
- </days>
- <quarters>
- <quarterContext type="format">
- <quarterWidth type="abbreviated">
- <quarter type="1">1-ին եռմս.</quarter>
- <quarter type="2">2-րդ եռմս.</quarter>
- <quarter type="3">3-րդ եռմս.</quarter>
- <quarter type="4">4-րդ եռմս.</quarter>
- </quarterWidth>
- <quarterWidth type="narrow">
- <quarter type="1">1</quarter>
- <quarter type="2">2</quarter>
- <quarter type="3">3</quarter>
- <quarter type="4">4</quarter>
- </quarterWidth>
- <quarterWidth type="wide">
- <quarter type="1">1-ին եռամսյակ</quarter>
- <quarter type="2">2-րդ եռամսյակ</quarter>
- <quarter type="3">3-րդ եռամսյակ</quarter>
- <quarter type="4">4-րդ եռամսյակ</quarter>
- </quarterWidth>
- </quarterContext>
- <quarterContext type="stand-alone">
- <quarterWidth type="abbreviated">
- <quarter type="1">1-ին եռմս.</quarter>
- <quarter type="2">2-րդ եռմս.</quarter>
- <quarter type="3">3-րդ եռմս.</quarter>
- <quarter type="4">4-րդ եռմս.</quarter>
- </quarterWidth>
- <quarterWidth type="narrow">
- <quarter type="1">1</quarter>
- <quarter type="2">2</quarter>
- <quarter type="3">3</quarter>
- <quarter type="4">4</quarter>
- </quarterWidth>
- <quarterWidth type="wide">
- <quarter type="1">1-ին եռամսյակ</quarter>
- <quarter type="2">2-րդ եռամսյակ</quarter>
- <quarter type="3">3-րդ եռամսյակ</quarter>
- <quarter type="4">4-րդ եռամսյակ</quarter>
- </quarterWidth>
- </quarterContext>
- </quarters>
- <dayPeriods>
- <dayPeriodContext type="format">
- <dayPeriodWidth type="wide">
- <dayPeriod type="am">կեսօրից առաջ</dayPeriod>
- <dayPeriod type="pm">կեսօրից հետո</dayPeriod>
- </dayPeriodWidth>
- </dayPeriodContext>
- </dayPeriods>
- <eras>
- <eraAbbr>
- <era type="0">մ.թ.ա.</era>
- <era type="1">մ.թ.</era>
- </eraAbbr>
- </eras>
- <dateFormats>
- <dateFormatLength type="full">
- <dateFormat>
- <pattern>yթ. MMMM d, EEEE</pattern>
- </dateFormat>
- </dateFormatLength>
- <dateFormatLength type="long">
- <dateFormat>
- <pattern>dd MMMM, yթ.</pattern>
- </dateFormat>
- </dateFormatLength>
- <dateFormatLength type="medium">
- <dateFormat>
- <pattern>dd MMM, y թ.</pattern>
- </dateFormat>
- </dateFormatLength>
- <dateFormatLength type="short">
- <dateFormat>
- <pattern>dd.MM.yy</pattern>
- </dateFormat>
- </dateFormatLength>
- </dateFormats>
- <timeFormats>
- <timeFormatLength type="full">
- <timeFormat>
- <pattern>H:mm:ss, zzzz</pattern>
- </timeFormat>
- </timeFormatLength>
- <timeFormatLength type="long">
- <timeFormat>
- <pattern>H:mm:ss, z</pattern>
- </timeFormat>
- </timeFormatLength>
- <timeFormatLength type="medium">
- <timeFormat>
- <pattern>H:mm:ss</pattern>
- </timeFormat>
- </timeFormatLength>
- <timeFormatLength type="short">
- <timeFormat>
- <pattern>H: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, ccc</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թ. LLL</dateFormatItem>
- <dateFormatItem id="GyMMMd">d MMM, yթ.,</dateFormatItem>
- <dateFormatItem id="GyMMMEd">G yթ. MMM d, E</dateFormatItem>
- <dateFormatItem id="h">h a</dateFormatItem>
- <dateFormatItem id="H">H</dateFormatItem>
- <dateFormatItem id="hm">h:mm a</dateFormatItem>
- <dateFormatItem id="Hm">H:mm</dateFormatItem>
- <dateFormatItem id="hms">h:mm:ss a</dateFormatItem>
- <dateFormatItem id="Hms">H:mm:ss</dateFormatItem>
- <dateFormatItem id="M">L</dateFormatItem>
- <dateFormatItem id="Md">dd.MM</dateFormatItem>
- <dateFormatItem id="MEd">dd.MM, E</dateFormatItem>
- <dateFormatItem id="MMM">LLL</dateFormatItem>
- <dateFormatItem id="MMMd">d MMM</dateFormatItem>
- <dateFormatItem id="MMMEd">d MMM, E</dateFormatItem>
- <dateFormatItem id="ms">mm:ss</dateFormatItem>
- <dateFormatItem id="y">y</dateFormatItem>
- <dateFormatItem id="yM">MM.y</dateFormatItem>
- <dateFormatItem id="yMd">dd.MM.y</dateFormatItem>
- <dateFormatItem id="yMEd">d.MM.yթ., E</dateFormatItem>
- <dateFormatItem id="yMMM">yթ. LLL</dateFormatItem>
- <dateFormatItem id="yMMMd">d MMM, yթ.</dateFormatItem>
- <dateFormatItem id="yMMMEd">yթ. MMM d, E</dateFormatItem>
- <dateFormatItem id="yQQQ">y թ, QQQ</dateFormatItem>
- <dateFormatItem id="yQQQQ">y թ, QQQQ</dateFormatItem>
- </availableFormats>
- <appendItems>
- <appendItem request="Timezone">{0}, {1}</appendItem>
- </appendItems>
- <intervalFormats>
- <intervalFormatFallback>{0} – {1}</intervalFormatFallback>
- <intervalFormatItem id="d">
- <greatestDifference id="d">d-d</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="h">
- <greatestDifference id="a">h a – h a</greatestDifference>
- <greatestDifference id="h">h-h a</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="H">
- <greatestDifference id="H">H-H</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">H:mm-H:mm</greatestDifference>
- <greatestDifference id="m">H:mm-H: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">H:mm-H:mm, v</greatestDifference>
- <greatestDifference id="m">H:mm-H: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">H-H, 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">MMM dd-dd</greatestDifference>
- <greatestDifference id="M">MMM dd - MMM dd</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MMMEd">
- <greatestDifference id="d">E, MMM dd - E, MMM dd</greatestDifference>
- <greatestDifference id="M">E, MMM dd - E, MMM dd</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">ccc, dd.MM.y - ccc, dd.MM.y</greatestDifference>
- <greatestDifference id="M">ccc, dd.MM.y - ccc, dd.MM.y</greatestDifference>
- <greatestDifference id="y">ccc, dd.MM.y - ccc, 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">dd-dd MMM, yթ.</greatestDifference>
- <greatestDifference id="M">dd MMM - dd MMM, yթ.</greatestDifference>
- <greatestDifference id="y">dd MMM, y - dd MMM, yթ.</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMMMEd">
- <greatestDifference id="d">E, d MMM - 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">yթ. MMM – MMM</greatestDifference>
- <greatestDifference id="y">MMM y - MMM 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>
- </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>
- <defaultNumberingSystem>latn</defaultNumberingSystem>
- <otherNumberingSystems>
- <native>latn</native>
- <traditional>armn</traditional>
- </otherNumberingSystems>
- <symbols numberSystem="latn">
- <decimal>,</decimal>
- <group>.</group>
- <list>;</list>
- <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="long">
- <decimalFormat>
- <pattern type="1000" count="one">0 հազար</pattern>
- <pattern type="1000" count="other">0 հազար</pattern>
- <pattern type="10000" count="one">00 հազար</pattern>
- <pattern type="10000" count="other">00 հազար</pattern>
- <pattern type="100000" count="one">000 հազար</pattern>
- <pattern type="100000" count="other">000 հազար</pattern>
- <pattern type="1000000" count="one">0 միլիոն</pattern>
- <pattern type="1000000" count="other">0 միլիոն</pattern>
- <pattern type="10000000" count="one">00 միլիոն</pattern>
- <pattern type="10000000" count="other">00 միլիոն</pattern>
- <pattern type="100000000" count="one">000 միլիոն</pattern>
- <pattern type="100000000" count="other">000 միլիոն</pattern>
- <pattern type="1000000000" count="one">0 միլիարդ</pattern>
- <pattern type="1000000000" count="other">0 միլիարդ</pattern>
- <pattern type="10000000000" count="one">00 միլիարդ</pattern>
- <pattern type="10000000000" count="other">00 միլիարդ</pattern>
- <pattern type="100000000000" count="one">000 միլիարդ</pattern>
- <pattern type="100000000000" count="other">000 միլիարդ</pattern>
- <pattern type="1000000000000" count="one">0 տրիլիոն</pattern>
- <pattern type="1000000000000" count="other">0 տրիլիոն</pattern>
- <pattern type="10000000000000" count="one">00 տրիլիոն</pattern>
- <pattern type="10000000000000" count="other">00 տրիլիոն</pattern>
- <pattern type="100000000000000" count="one">000 տրիլիոն</pattern>
- <pattern type="100000000000000" count="other">000 տրիլիոն</pattern>
- </decimalFormat>
- </decimalFormatLength>
- <decimalFormatLength type="short">
- <decimalFormat>
- <pattern type="1000" count="one">0 հզր</pattern>
- <pattern type="1000" count="other">0 հզր</pattern>
- <pattern type="10000" count="one">00 հզր</pattern>
- <pattern type="10000" count="other">00 հզր</pattern>
- <pattern type="100000" count="one">000 հզր</pattern>
- <pattern type="100000" count="other">000 հզր</pattern>
- <pattern type="1000000" count="one">0 մլն</pattern>
- <pattern type="1000000" count="other">0 մլն</pattern>
- <pattern type="10000000" count="one">00 մլն</pattern>
- <pattern type="10000000" count="other">00 մլն</pattern>
- <pattern type="100000000" count="one">000 մլն</pattern>
- <pattern type="100000000" count="other">000 մլն</pattern>
- <pattern type="1000000000" count="one">0 մլրդ</pattern>
- <pattern type="1000000000" count="other">0 մլրդ</pattern>
- <pattern type="10000000000" count="one">00 մլրդ</pattern>
- <pattern type="10000000000" count="other">00 մլրդ</pattern>
- <pattern type="100000000000" count="one">000 մլրդ</pattern>
- <pattern type="100000000000" count="other">000 մլրդ</pattern>
- <pattern type="1000000000000" count="one">0 տրլն</pattern>
- <pattern type="1000000000000" count="other">0 տրլն</pattern>
- <pattern type="10000000000000" count="one">00 տրլն</pattern>
- <pattern type="10000000000000" count="other">00 տրլն</pattern>
- <pattern type="100000000000000" count="one">000 տրլն</pattern>
- <pattern type="100000000000000" count="other">000 տրլն</pattern>
- </decimalFormat>
- </decimalFormatLength>
- </decimalFormats>
- <scientificFormats numberSystem="latn">
- <scientificFormatLength>
- <scientificFormat>
- <pattern>#E0</pattern>
- </scientificFormat>
- </scientificFormatLength>
- </scientificFormats>
- <percentFormats numberSystem="latn">
- <percentFormatLength>
- <percentFormat>
- <pattern>#0%</pattern>
- </percentFormat>
- </percentFormatLength>
- </percentFormats>
- <currencyFormats numberSystem="latn">
- <currencyFormatLength>
- <currencyFormat type="standard">
- <pattern>#0.00 ¤</pattern>
- </currencyFormat>
- </currencyFormatLength>
- <unitPattern count="one">{0} {1}</unitPattern>
- <unitPattern count="other">{0} {1}</unitPattern>
- </currencyFormats>
- <currencies>
- <currency type="AED">
- <displayName>Արաբական Միացյալ Էմիրությունների դիրհամ</displayName>
- <displayName count="one">Արաբական Միացյալ Էմիրությունների դիրհամ</displayName>
- <displayName count="other">Արաբական Միացյալ Էմիրությունների դիրհամ</displayName>
- </currency>
- <currency type="AFN">
- <displayName>Աֆղանական աֆղանի</displayName>
- <displayName count="one">Աֆղանական աֆղանի</displayName>
- <displayName count="other">Աֆղանական աֆղանի</displayName>
- </currency>
- <currency type="ALL">
- <displayName>Ալբանական լեկ</displayName>
- <displayName count="one">Ալբանական լեկ</displayName>
- <displayName count="other">Ալբանական լեկ</displayName>
- </currency>
- <currency type="AMD">
- <displayName>Հայկական դրամ</displayName>
- <displayName count="one">Հայկական դրամ</displayName>
- <displayName count="other">Հայկական դրամ</displayName>
- <symbol>դր.</symbol>
- <symbol alt="variant">֏</symbol> <!-- New symbol - Unicode 6.1 -->
- </currency>
- <currency type="ANG">
- <displayName>Նիդերլանդական Անտիլների գուլդեն</displayName>
- <displayName count="one">Նիդերլանդական Անտիլների գուլդեն</displayName>
- <displayName count="other">Նիդերլանդական Անտիլների գուլդեն</displayName>
- </currency>
- <currency type="AOA">
- <displayName>Անգոլական կվանզա</displayName>
- <displayName count="one">Անգոլական կվանզա</displayName>
- <displayName count="other">Անգոլական կվանզա</displayName>
- </currency>
- <currency type="ARS">
- <displayName>Արգենտինական պեսո</displayName>
- <displayName count="one">Արգենտինական պեսո</displayName>
- <displayName count="other">Արգենտինական պեսո</displayName>
- </currency>
- <currency type="AUD">
- <displayName>Ավստրալական դոլար</displayName>
- <displayName count="one">Ավստրալական դոլար</displayName>
- <displayName count="other">Ավստրալական դոլար</displayName>
- <symbol>A$</symbol>
- </currency>
- <currency type="AWG">
- <displayName>Արուբական ֆլորին</displayName>
- <displayName count="one">Արուբական ֆլորին</displayName>
- <displayName count="other">Արուբական ֆլորին</displayName>
- </currency>
- <currency type="AZN">
- <displayName>Ադրբեջանական մանաթ</displayName>
- <displayName count="one">Ադրբեջանական մանաթ</displayName>
- <displayName count="other">Ադրբեջանական մանաթ</displayName>
- </currency>
- <currency type="BAM">
- <displayName>Բոսնիա և Հերցեգովինայի փոխարկելի մարկա</displayName>
- <displayName count="one">Բոսնիա և Հերցեգովինայի փոխարկելի մարկա</displayName>
- <displayName count="other">Բոսնիա և Հերցեգովինայի փոխարկելի մարկա</displayName>
- </currency>
- <currency type="BBD">
- <displayName>Բարբադոսյան դոլար</displayName>
- <displayName count="one">Բարբադոսյան դոլար</displayName>
- <displayName count="other">Բարբադոսյան դոլար</displayName>
- </currency>
- <currency type="BDT">
- <displayName>Բանգլադեշի տակա</displayName>
- <displayName count="one">Բանգլադեշի տակա</displayName>
- <displayName count="other">Բանգլադեշի տակա</displayName>
- </currency>
- <currency type="BGN">
- <displayName>Բուլղարական լև</displayName>
- <displayName count="one">Բուլղարական լև</displayName>
- <displayName count="other">Բուլղարական լև</displayName>
- </currency>
- <currency type="BHD">
- <displayName>Բահրեյնական դինար</displayName>
- <displayName count="one">Բահրեյնական դինար</displayName>
- <displayName count="other">Բահրեյնական դինար</displayName>
- </currency>
- <currency type="BIF">
- <displayName>Բուրունդիի ֆրանկ</displayName>
- <displayName count="one">Բուրունդիի ֆրանկ</displayName>
- <displayName count="other">Բուրունդիի ֆրանկ</displayName>
- </currency>
- <currency type="BMD">
- <displayName>Բերմուդյան դոլար</displayName>
- <displayName count="one">Բերմուդյան դոլար</displayName>
- <displayName count="other">Բերմուդյան դոլար</displayName>
- </currency>
- <currency type="BND">
- <displayName>Բրունեյական դոլար</displayName>
- <displayName count="one">Բրունեյական դոլար</displayName>
- <displayName count="other">Բրունեյական դոլար</displayName>
- </currency>
- <currency type="BOB">
- <displayName>Բոլիվիական բոլիվիանո</displayName>
- <displayName count="one">Բոլիվիական բոլիվիանո</displayName>
- <displayName count="other">Բոլիվիական բոլիվիանո</displayName>
- </currency>
- <currency type="BRL">
- <displayName>Բրազիլական ռեալ</displayName>
- <displayName count="one">Բրազիլական ռեալ</displayName>
- <displayName count="other">Բրազիլական ռեալ</displayName>
- <symbol>R$</symbol>
- </currency>
- <currency type="BSD">
- <displayName>Բահամական դոլար</displayName>
- <displayName count="one">Բահամական դոլար</displayName>
- <displayName count="other">Բահամական դոլար</displayName>
- </currency>
- <currency type="BTN">
- <displayName>Բութանական նգուլտրում</displayName>
- <displayName count="one">Բութանական նգուլտրում</displayName>
- <displayName count="other">Բութանական նգուլտրում</displayName>
- </currency>
- <currency type="BWP">
- <displayName>Բոթսվանական պուլա</displayName>
- <displayName count="one">Բոթսվանական պուլա</displayName>
- <displayName count="other">Բոթսվանական պուլա</displayName>
- </currency>
- <currency type="BYR">
- <displayName>Բելառուսական ռուբլի</displayName>
- <displayName count="one">Բելառուսական ռուբլի</displayName>
- <displayName count="other">Բելառուսական ռուբլի</displayName>
- </currency>
- <currency type="BZD">
- <displayName>Բելիզի դոլար</displayName>
- <displayName count="one">Բելիզի դոլար</displayName>
- <displayName count="other">Բելիզի դոլար</displayName>
- </currency>
- <currency type="CAD">
- <displayName>Կանադական դոլար</displayName>
- <displayName count="one">Կանադական դոլար</displayName>
- <displayName count="other">Կանադական դոլար</displayName>
- <symbol>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>
- <displayName count="one">Չինական յուան</displayName>
- <displayName count="other">Չինական յուան</displayName>
- <symbol>CN¥</symbol>
- </currency>
- <currency type="COP">
- <displayName>Կոլումբիական պեսո</displayName>
- <displayName count="one">Կոլումբիական պեսո</displayName>
- <displayName count="other">Կոլումբիական պեսո</displayName>
- </currency>
- <currency type="CRC">
- <displayName>Կոստա Ռիկայի կոլոն</displayName>
- <displayName count="one">Կոստա Ռիկայի կոլոն</displayName>
- <displayName count="other">Կոստա Ռիկայի կոլոն</displayName>
- </currency>
- <currency type="CUC">
- <displayName>Կուբական փոխարկելի պեսո</displayName>
- <displayName count="one">Կուբական փոխարկելի պեսո</displayName>
- <displayName count="other">Կուբական փոխարկելի պեսո</displayName>
- </currency>
- <currency type="CUP">
- <displayName>Կուբական պեսո</displayName>
- <displayName count="one">Կուբական պեսո</displayName>
- <displayName count="other">Կուբական պեսո</displayName>
- </currency>
- <currency type="CVE">
- <displayName>Կաբո Վերդեի էսկուդո</displayName>
- <displayName count="one">Կաբո Վերդեի էսկուդո</displayName>
- <displayName count="other">Կաբո Վերդեի էսկուդո</displayName>
- </currency>
- <currency type="CZK">
- <displayName>Չեխական կրոնա</displayName>
- <displayName count="one">Չեխական կրոնա</displayName>
- <displayName count="other">Չեխական կրոնա</displayName>
- </currency>
- <currency type="DJF">
- <displayName>Ջիբութիի ֆրանկ</displayName>
- <displayName count="one">Ջիբութիի ֆրանկ</displayName>
- <displayName count="other">Ջիբութիի ֆրանկ</displayName>
- </currency>
- <currency type="DKK">
- <displayName>Դանիական կրոնա</displayName>
- <displayName count="one">Դանիական կրոնա</displayName>
- <displayName count="other">Դանիական կրոնա</displayName>
- </currency>
- <currency type="DOP">
- <displayName>Դոմինիկական պեսո</displayName>
- <displayName count="one">Դոմինիկական պեսո</displayName>
- <displayName count="other">Դոմինիկական պեսո</displayName>
- </currency>
- <currency type="DZD">
- <displayName>Ալժիրական դինար</displayName>
- <displayName count="one">Ալժիրական դինար</displayName>
- <displayName count="other">Ալժիրական դինար</displayName>
- </currency>
- <currency type="EGP">
- <displayName>Եգիպտական ֆունտ</displayName>
- <displayName count="one">Եգիպտական ֆունտ</displayName>
- <displayName count="other">Եգիպտական ֆունտ</displayName>
- </currency>
- <currency type="ERN">
- <displayName>Էրիթրեական նակֆա</displayName>
- <displayName count="one">Էրիթրեական նակֆա</displayName>
- <displayName count="other">Էրիթրեական նակֆա</displayName>
- </currency>
- <currency type="ETB">
- <displayName>Եթովպական բիր</displayName>
- <displayName count="one">Եթովպական բիր</displayName>
- <displayName count="other">Եթովպական բիր</displayName>
- </currency>
- <currency type="EUR">
- <displayName>Եվրո</displayName>
- <displayName count="one">Եվրո</displayName>
- <displayName count="other">Եվրո</displayName>
- <symbol>€</symbol>
- </currency>
- <currency type="FJD">
- <displayName>Ֆիջիական դոլար</displayName>
- <displayName count="one">Ֆիջիական դոլար</displayName>
- <displayName count="other">Ֆիջիական դոլար</displayName>
- </currency>
- <currency type="FKP">
- <displayName>Ֆոլկլենդյան կղզիներ ֆունտ</displayName>
- <displayName count="one">Ֆոլկլենդյան կղզիներ ֆունտ</displayName>
- <displayName count="other">Ֆոլկլենդյան կղզիներ ֆունտ</displayName>
- </currency>
- <currency type="GBP">
- <displayName>Բրիտանական ֆունտ ստեռլինգ</displayName>
- <displayName count="one">Բրիտանական ֆունտ ստեռլինգ</displayName>
- <displayName count="other">Բրիտանական ֆունտ ստեռլինգ</displayName>
- <symbol>£</symbol>
- </currency>
- <currency type="GEL">
- <displayName>Վրացական լարի</displayName>
- <displayName count="one">Վրացական լարի</displayName>
- <displayName count="other">Վրացական լարի</displayName>
- </currency>
- <currency type="GHS">
- <displayName>Գանական սեդի</displayName>
- <displayName count="one">Գանական սեդի</displayName>
- <displayName count="other">Գանական սեդի</displayName>
- </currency>
- <currency type="GIP">
- <displayName>Ջիբրալթարի ֆունտ</displayName>
- <displayName count="one">Ջիբրալթարի ֆունտ</displayName>
- <displayName count="other">Ջիբրալթարի ֆունտ</displayName>
- </currency>
- <currency type="GMD">
- <displayName>Գամբիական դալասի</displayName>
- <displayName count="one">Գամբիական դալասի</displayName>
- <displayName count="other">Գամբիական դալասի</displayName>
- </currency>
- <currency type="GNF">
- <displayName>Գվինեական ֆրանկ</displayName>
- <displayName count="one">Գվինեական ֆրանկ</displayName>
- <displayName count="other">Գվինեական ֆրանկ</displayName>
- </currency>
- <currency type="GTQ">
- <displayName>Գվատեմալական կետսալ</displayName>
- <displayName count="one">Գվատեմալական կետսալ</displayName>
- <displayName count="other">Գվատեմալական կետսալ</displayName>
- </currency>
- <currency type="GYD">
- <displayName>Գայանական դոլար</displayName>
- <displayName count="one">Գայանական դոլար</displayName>
- <displayName count="other">Գայանական դոլար</displayName>
- </currency>
- <currency type="HKD">
- <displayName>Հոնկոնգի դոլար</displayName>
- <displayName count="one">Հոնկոնգի դոլար</displayName>
- <displayName count="other">Հոնկոնգի դոլար</displayName>
- <symbol>HK$</symbol>
- </currency>
- <currency type="HNL">
- <displayName>Հոնդուրասական լեմպրիա</displayName>
- <displayName count="one">Հոնդուրասական լեմպրիա</displayName>
- <displayName count="other">Հոնդուրասական լեմպրիա</displayName>
- </currency>
- <currency type="HRK">
- <displayName>Խորվաթական կունա</displayName>
- <displayName count="one">Խորվաթական կունա</displayName>
- <displayName count="other">Խորվաթական կունա</displayName>
- </currency>
- <currency type="HTG">
- <displayName>Հաիթյան գուրդ</displayName>
- <displayName count="one">Հաիթյան գուրդ</displayName>
- <displayName count="other">Հաիթյան գուրդ</displayName>
- </currency>
- <currency type="HUF">
- <displayName>Հունգարական ֆորինտ</displayName>
- <displayName count="one">Հունգարական ֆորինտ</displayName>
- <displayName count="other">Հունգարական ֆորինտ</displayName>
- </currency>
- <currency type="IDR">
- <displayName>Ինդոնեզական ռուփի</displayName>
- <displayName count="one">Ինդոնեզական ռուփի</displayName>
- <displayName count="other">Ինդոնեզական ռուփի</displayName>
- </currency>
- <currency type="ILS">
- <displayName>Իսրայելի նոր շեկել</displayName>
- <displayName count="one">Իսրայելի նոր շեկել</displayName>
- <displayName count="other">Իսրայելի նոր շեկել</displayName>
- <symbol>₪</symbol>
- </currency>
- <currency type="INR">
- <displayName>Հնդկական ռուփի</displayName>
- <displayName count="one">Հնդկական ռուփի</displayName>
- <displayName count="other">Հնդկական ռուփի</displayName>
- <symbol>₹</symbol>
- </currency>
- <currency type="IQD">
- <displayName>Իրաքյան դինար</displayName>
- <displayName count="one">Իրաքյան դինար</displayName>
- <displayName count="other">Իրաքյան դինար</displayName>
- </currency>
- <currency type="IRR">
- <displayName>Իրանական ռիալ</displayName>
- <displayName count="one">Իրանական ռիալ</displayName>
- <displayName count="other">Իրանական ռիալ</displayName>
- </currency>
- <currency type="ISK">
- <displayName>Իսլանդական կրոնա</displayName>
- <displayName count="one">Իսլանդական կրոնա</displayName>
- <displayName count="other">Իսլանդական կրոնա</displayName>
- </currency>
- <currency type="JMD">
- <displayName>Ջամայկական դոլար</displayName>
- <displayName count="one">Ջամայկական դոլար</displayName>
- <displayName count="other">Ջամայկական դոլար</displayName>
- </currency>
- <currency type="JOD">
- <displayName>Հորդանանական դինար</displayName>
- <displayName count="one">Հորդանանական դինար</displayName>
- <displayName count="other">Հորդանանական դինար</displayName>
- </currency>
- <currency type="JPY">
- <displayName>Ճապոնական իեն</displayName>
- <displayName count="one">Ճապոնական իեն</displayName>
- <displayName count="other">Ճապոնական իեն</displayName>
- <symbol>JP¥</symbol>
- </currency>
- <currency type="KES">
- <displayName>Քենիական շիլինգ</displayName>
- <displayName count="one">Քենիական շիլինգ</displayName>
- <displayName count="other">Քենիական շիլինգ</displayName>
- </currency>
- <currency type="KGS">
- <displayName>Ղրղզական սոմ</displayName>
- <displayName count="one">Ղրղզական սոմ</displayName>
- <displayName count="other">Ղրղզական սոմ</displayName>
- </currency>
- <currency type="KHR">
- <displayName>Կամբոջական ռիել</displayName>
- <displayName count="one">Կամբոջական ռիել</displayName>
- <displayName count="other">Կամբոջական ռիել</displayName>
- </currency>
- <currency type="KMF">
- <displayName>Կոմորյան կղզիների ֆրանկ</displayName>
- <displayName count="one">Կոմորյան կղզիների ֆրանկ</displayName>
- <displayName count="other">Կոմորյան կղզիների ֆրանկ</displayName>
- </currency>
- <currency type="KPW">
- <displayName>ԿԺԴՀ-ի վոնա</displayName>
- <displayName count="one">ԿԺԴՀ-ի վոնա</displayName>
- <displayName count="other">ԿԺԴՀ-ի վոնա</displayName>
- </currency>
- <currency type="KRW">
- <displayName>Հարավկորեական վոնա</displayName>
- <displayName count="one">Հարավկորեական վոնա</displayName>
- <displayName count="other">Հարավկորեական վոնա</displayName>
- <symbol>₩</symbol>
- </currency>
- <currency type="KWD">
- <displayName>Քուվեյթական դինար</displayName>
- <displayName count="one">Քուվեյթական դինար</displayName>
- <displayName count="other">Քուվեյթական դինար</displayName>
- </currency>
- <currency type="KYD">
- <displayName>Կայմանյան կղզիների դոլար</displayName>
- <displayName count="one">Կայմանյան կղզիների դոլար</displayName>
- <displayName count="other">Կայմանյան կղզիների դոլար</displayName>
- </currency>
- <currency type="KZT">
- <displayName>Ղազախական տենգե</displayName>
- <displayName count="one">Ղազախական տենգե</displayName>
- <displayName count="other">Ղազախական տենգե</displayName>
- </currency>
- <currency type="LAK">
- <displayName>Լաոսական կիպ</displayName>
- <displayName count="one">Լաոսական կիպ</displayName>
- <displayName count="other">Լաոսական կիպ</displayName>
- </currency>
- <currency type="LBP">
- <displayName>Լիբանանական ֆունտ</displayName>
- <displayName count="one">Լիբանանական ֆունտ</displayName>
- <displayName count="other">Լիբանանական ֆունտ</displayName>
- </currency>
- <currency type="LKR">
- <displayName>Լանկիական ռուփի</displayName>
- <displayName count="one">Լանկիական ռուփի</displayName>
- <displayName count="other">Լանկիական ռուփի</displayName>
- </currency>
- <currency type="LRD">
- <displayName>Լիբերիական դոլար</displayName>
- <displayName count="one">Լիբերիական դոլար</displayName>
- <displayName count="other">Լիբերիական դոլար</displayName>
- </currency>
- <currency type="LTL">
- <displayName>Լիտվական լիտ</displayName>
- <displayName count="one">Լիտվական լիտ</displayName>
- <displayName count="other">Լիտվական լիտ</displayName>
- </currency>
- <currency type="LVL">
- <displayName>Լատվիական լատ</displayName>
- <displayName count="one">Լատվիական լատ</displayName>
- <displayName count="other">Լատվիական լատ</displayName>
- </currency>
- <currency type="LYD">
- <displayName>Լիբիական դինար</displayName>
- <displayName count="one">Լիբիական դինար</displayName>
- <displayName count="other">Լիբիական դինար</displayName>
- </currency>
- <currency type="MAD">
- <displayName>Մարոկական դիրհամ</displayName>
- <displayName count="one">Մարոկական դիրհամ</displayName>
- <displayName count="other">Մարոկական դիրհամ</displayName>
- </currency>
- <currency type="MDL">
- <displayName>Մոլդովական լեյ</displayName>
- <displayName count="one">Մոլդովական լեյ</displayName>
- <displayName count="other">Մոլդովական լեյ</displayName>
- </currency>
- <currency type="MGA">
- <displayName>Մադագասկարի արիարի</displayName>
- <displayName count="one">Մադագասկարի արիարի</displayName>
- <displayName count="other">Մադագասկարի արիարի</displayName>
- </currency>
- <currency type="MKD">
- <displayName>Մակեդոնական դենար</displayName>
- <displayName count="one">Մակեդոնական դենար</displayName>
- <displayName count="other">Մակեդոնական դենար</displayName>
- </currency>
- <currency type="MMK">
- <displayName>Մյանմական կյատ</displayName>
- <displayName count="one">Մյանմական կյատ</displayName>
- <displayName count="other">Մյանմական կյատ</displayName>
- </currency>
- <currency type="MNT">
- <displayName>Մոնղոլական տուգրիկ</displayName>
- <displayName count="one">Մոնղոլական տուգրիկ</displayName>
- <displayName count="other">Մոնղոլական տուգրիկ</displayName>
- </currency>
- <currency type="MOP">
- <displayName>Մակաոյի պատակա</displayName>
- <displayName count="one">Մակաոյի պատակա</displayName>
- <displayName count="other">Մակաոյի պատակա</displayName>
- </currency>
- <currency type="MRO">
- <displayName>Մավրիտանական ուգիյա</displayName>
- <displayName count="one">Մավրիտանական ուգիյա</displayName>
- <displayName count="other">Մավրիտանական ուգիյա</displayName>
- </currency>
- <currency type="MUR">
- <displayName>Մավրիկական ռուփի</displayName>
- <displayName count="one">Մավրիկական ռուփի</displayName>
- <displayName count="other">Մավրիկական ռուփի</displayName>
- </currency>
- <currency type="MVR">
- <displayName>Մալդիվյան ռուֆիա</displayName>
- <displayName count="one">Մալդիվյան ռուֆիա</displayName>
- <displayName count="other">Մալդիվյան ռուֆիա</displayName>
- </currency>
- <currency type="MWK">
- <displayName>Մալավիական կվաչա</displayName>
- <displayName count="one">Մալավիական կվաչա</displayName>
- <displayName count="other">Մալավիական կվաչա</displayName>
- </currency>
- <currency type="MXN">
- <displayName>Մեքսիկական պեսո</displayName>
- <displayName count="one">Մեքսիկական պեսո</displayName>
- <displayName count="other">Մեքսիկական պեսո</displayName>
- <symbol>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>
- <symbol>NZ$</symbol>
- </currency>
- <currency type="OMR">
- <displayName>Օմանական ռիալ</displayName>
- <displayName count="one">Օմանական ռիալ</displayName>
- <displayName count="other">Օմանական ռիալ</displayName>
- </currency>
- <currency type="PAB">
- <displayName>Պանամական բալբոա</displayName>
- <displayName count="one">Պանամական բալբոա</displayName>
- <displayName count="other">Պանամական բալբոա</displayName>
- </currency>
- <currency type="PEN">
- <displayName>Պերուի նոր սոլ</displayName>
- <displayName count="one">Պերուի նոր սոլ</displayName>
- <displayName count="other">Պերուի նոր սոլ</displayName>
- </currency>
- <currency type="PGK">
- <displayName>Պապուա-Նոր Գվինեայի կինա</displayName>
- <displayName count="one">Պապուա-Նոր Գվինեայի կինա</displayName>
- <displayName count="other">Պապուա-Նոր Գվինեայի կինա</displayName>
- </currency>
- <currency type="PHP">
- <displayName>Ֆիլիպինական պեսո</displayName>
- <displayName count="one">Ֆիլիպինական պեսո</displayName>
- <displayName count="other">Ֆիլիպինական պեսո</displayName>
- </currency>
- <currency type="PKR">
- <displayName>Պակիստանական ռուփի</displayName>
- <displayName count="one">Պակիստանական ռուփի</displayName>
- <displayName count="other">Պակիստանական ռուփի</displayName>
- </currency>
- <currency type="PLN">
- <displayName>Լեհական զլոտի</displayName>
- <displayName count="one">Լեհական զլոտի</displayName>
- <displayName count="other">Լեհական զլոտի</displayName>
- </currency>
- <currency type="PYG">
- <displayName>Պարագվայական գուարանի</displayName>
- <displayName count="one">Պարագվայական գուարանի</displayName>
- <displayName count="other">Պարագվայական գուարանի</displayName>
- </currency>
- <currency type="QAR">
- <displayName>Քաթարական ռիալ</displayName>
- <displayName count="one">Քաթարական ռիալ</displayName>
- <displayName count="other">Քաթարական ռիալ</displayName>
- </currency>
- <currency type="RON">
- <displayName>Ռումինական լեյ</displayName>
- <displayName count="one">Ռումինական լեյ</displayName>
- <displayName count="other">Ռումինական լեյ</displayName>
- </currency>
- <currency type="RSD">
- <displayName>Սերբական դինար</displayName>
- <displayName count="one">Սերբական դինար</displayName>
- <displayName count="other">Սերբական դինար</displayName>
- </currency>
- <currency type="RUB">
- <displayName>Ռուսական ռուբլի</displayName>
- <displayName count="one">Ռուսական ռուբլի</displayName>
- <displayName count="other">Ռուսական ռուբլի</displayName>
- </currency>
- <currency type="RWF">
- <displayName>Ռուանդական ֆրանկ</displayName>
- <displayName count="one">Ռուանդական ֆրանկ</displayName>
- <displayName count="other">Ռուանդական ֆրանկ</displayName>
- </currency>
- <currency type="SAR">
- <displayName>Սաուդյան Արաբիայի ռիալ</displayName>
- <displayName count="one">Սաուդյան Արաբիայի ռիալ</displayName>
- <displayName count="other">Սաուդյան Արաբիայի ռիալ</displayName>
- </currency>
- <currency type="SBD">
- <displayName>Սողոմոնյան կղզիների դոլար</displayName>
- <displayName count="one">Սողոմոնյան կղզիների դոլար</displayName>
- <displayName count="other">Սողոմոնյան կղզիների դոլար</displayName>
- </currency>
- <currency type="SCR">
- <displayName>Սեյշելյան կղզիների ռուփի</displayName>
- <displayName count="one">Սեյշելյան կղզիների ռուփի</displayName>
- <displayName count="other">Սեյշելյան կղզիների ռուփի</displayName>
- </currency>
- <currency type="SDG">
- <displayName>Սուդանական ֆունտ</displayName>
- <displayName count="one">Սուդանական ֆունտ</displayName>
- <displayName count="other">Սուդանական ֆունտ</displayName>
- </currency>
- <currency type="SEK">
- <displayName>Շվեդական կրոնա</displayName>
- <displayName count="one">Շվեդական կրոնա</displayName>
- <displayName count="other">Շվեդական կրոնա</displayName>
- </currency>
- <currency type="SGD">
- <displayName>Սինգապուրյան դոլար</displayName>
- <displayName count="one">Սինգապուրյան դոլար</displayName>
- <displayName count="other">Սինգապուրյան դոլար</displayName>
- </currency>
- <currency type="SHP">
- <displayName>Սուրբ Հեղինեի կղզու ֆունտ</displayName>
- <displayName count="one">Սուրբ Հեղինեի կղզու ֆունտ</displayName>
- <displayName count="other">Սուրբ Հեղինեի կղզու ֆունտ</displayName>
- </currency>
- <currency type="SLL">
- <displayName>Սիերա-Լեոնեի լեոնե</displayName>
- <displayName count="one">Սիերա-Լեոնեի լեոնե</displayName>
- <displayName count="other">Սիերա-Լեոնեի լեոնե</displayName>
- </currency>
- <currency type="SOS">
- <displayName>Սոմալիական շիլինգ</displayName>
- <displayName count="one">Սոմալիական շիլինգ</displayName>
- <displayName count="other">Սոմալիական շիլինգ</displayName>
- </currency>
- <currency type="SRD">
- <displayName>Սուրինամական դոլար</displayName>
- <displayName count="one">Սուրինամական դոլար</displayName>
- <displayName count="other">Սուրինամական դոլար</displayName>
- </currency>
- <currency type="SSP">
- <displayName>Հարավսուդանական ֆունտ</displayName>
- <displayName count="one">Հարավսուդանական ֆունտ</displayName>
- <displayName count="other">Հարավսուդանական ֆունտ</displayName>
- </currency>
- <currency type="STD">
- <displayName>Սան Տոմե և Պրինսիպիի դոբրա</displayName>
- <displayName count="one">Սան Տոմե և Պրինսիպիի դոբրա</displayName>
- <displayName count="other">Սան Տոմե և Պրինսիպիի դոբրա</displayName>
- </currency>
- <currency type="SYP">
- <displayName>Սիրիական ֆունտ</displayName>
- <displayName count="one">Սիրիական ֆունտ</displayName>
- <displayName count="other">Սիրիական ֆունտ</displayName>
- </currency>
- <currency type="SZL">
- <displayName>Սվազիլենդական լիլանգենի</displayName>
- <displayName count="one">Սվազիլենդական լիլանգենի</displayName>
- <displayName count="other">Սվազիլենդական լիլանգենի</displayName>
- </currency>
- <currency type="THB">
- <displayName>Թաիլանդական բատ</displayName>
- <displayName count="one">Թաիլանդական բատ</displayName>
- <displayName count="other">Թաիլանդական բատ</displayName>
- <symbol>฿</symbol>
- </currency>
- <currency type="TJS">
- <displayName>Տաջիկական սոմոնի</displayName>
- <displayName count="one">Տաջիկական սոմոնի</displayName>
- <displayName count="other">Տաջիկական սոմոնի</displayName>
- </currency>
- <currency type="TMT">
- <displayName>Թուրքմենական մանաթ</displayName>
- <displayName count="one">Թուրքմենական մանաթ</displayName>
- <displayName count="other">Թուրքմենական մանաթ</displayName>
- </currency>
- <currency type="TND">
- <displayName>Թունիսական դինար</displayName>
- <displayName count="one">Թունիսական դինար</displayName>
- <displayName count="other">Թունիսական դինար</displayName>
- </currency>
- <currency type="TOP">
- <displayName>Տոնգայի պաանգա</displayName>
- <displayName count="one">Տոնգայի պաանգա</displayName>
- <displayName count="other">Տոնգայի պաանգա</displayName>
- </currency>
- <currency type="TRY">
- <displayName>Թուրքական լիրա</displayName>
- <displayName count="one">Թուրքական լիրա</displayName>
- <displayName count="other">Թուրքական լիրա</displayName>
- </currency>
- <currency type="TTD">
- <displayName>Տրինիդադ և Տոբագոյի դոլար</displayName>
- <displayName count="one">Տրինիդադ և Տոբագոյի դոլար</displayName>
- <displayName count="other">Տրինիդադ և Տոբագոյի դոլար</displayName>
- </currency>
- <currency type="TWD">
- <displayName>Թայվանական նոր դոլար</displayName>
- <displayName count="one">Թայվանական նոր դոլար</displayName>
- <displayName count="other">Թայվանական նոր դոլար</displayName>
- <symbol>NT$</symbol>
- </currency>
- <currency type="TZS">
- <displayName>Տանզանիական շիլինգ</displayName>
- <displayName count="one">Տանզանիական շիլինգ</displayName>
- <displayName count="other">Տանզանիական շիլինգ</displayName>
- </currency>
- <currency type="UAH">
- <displayName>Ուկրաինական գրիվնա</displayName>
- <displayName count="one">Ուկրաինական գրիվնա</displayName>
- <displayName count="other">Ուկրաինական գրիվնա</displayName>
- </currency>
- <currency type="UGX">
- <displayName>Ուգանդական շիլինգ</displayName>
- <displayName count="one">Ուգանդական շիլինգ</displayName>
- <displayName count="other">Ուգանդական շիլինգ</displayName>
- </currency>
- <currency type="USD">
- <displayName>ԱՄՆ դոլար</displayName>
- <displayName count="one">ԱՄՆ դոլար</displayName>
- <displayName count="other">ԱՄՆ դոլար</displayName>
- <symbol>$</symbol>
- </currency>
- <currency type="UYU">
- <displayName>Ուրուգվայական պեսո</displayName>
- <displayName count="one">Ուրուգվայական պեսո</displayName>
- <displayName count="other">Ուրուգվայական պեսո</displayName>
- </currency>
- <currency type="UZS">
- <displayName>Ուզբեկական սում</displayName>
- <displayName count="one">Ուզբեկական սում</displayName>
- <displayName count="other">Ուզբեկական սում</displayName>
- </currency>
- <currency type="VEF">
- <displayName>Վենեսուելական բոլիվար</displayName>
- <displayName count="one">Վենեսուելական բոլիվար</displayName>
- <displayName count="other">Վենեսուելական բոլիվար</displayName>
- </currency>
- <currency type="VND">
- <displayName>Վիետնամական դոնգ</displayName>
- <displayName count="one">Վիետնամական դոնգ</displayName>
- <displayName count="other">Վիետնամական դոնգ</displayName>
- <symbol>₫</symbol>
- </currency>
- <currency type="VUV">
- <displayName>Վանուատուի վատու</displayName>
- <displayName count="one">Վանուատուի վատու</displayName>
- <displayName count="other">Վանուատուի վատու</displayName>
- </currency>
- <currency type="WST">
- <displayName>Սամոական տալա</displayName>
- <displayName count="one">Սամոական տալա</displayName>
- <displayName count="other">Սամոական տալա</displayName>
- </currency>
- <currency type="XAF">
- <displayName>Աֆրիկական ֆինանսական համայնքի ֆրանկ BEAC</displayName>
- <displayName count="one">Աֆրիկական ֆինանսական համայնքի ֆրանկ BEAC</displayName>
- <displayName count="other">Աֆրիկական ֆինանսական համայնքի ֆրանկ BEAC</displayName>
- <symbol>FCFA</symbol>
- </currency>
- <currency type="XCD">
- <displayName>Արևելակարիբյան դոլար</displayName>
- <displayName count="one">Արևելակարիբյան դոլար</displayName>
- <displayName count="other">Արևելակարիբյան դոլար</displayName>
- <symbol>EC$</symbol>
- </currency>
- <currency type="XOF">
- <displayName>Աֆրիկական ֆինանսական համայնքի ֆրանկ BCEAO</displayName>
- <displayName count="one">Աֆրիկական ֆինանսական համայնքի ֆրանկ BCEAO</displayName>
- <displayName count="other">Աֆրիկական ֆինանսական համայնքի ֆրանկ BCEAO</displayName>
- <symbol>CFA</symbol>
- </currency>
- <currency type="XPF">
- <displayName>ԿՊՖ ֆրանկ</displayName>
- <displayName count="one">ԿՊՖ ֆրանկ</displayName>
- <displayName count="other">ԿՊՖ ֆրանկ</displayName>
- <symbol>CFPF</symbol>
- </currency>
- <currency type="XXX">
- <displayName>Անհայտ արժույթ</displayName>
- <displayName count="one">(անհայտ արժույթ)</displayName>
- <displayName count="other">(անհայտ արժույթ)</displayName>
- </currency>
- <currency type="YER">
- <displayName>Եմենական ռիալ</displayName>
- <displayName count="one">Եմենական ռիալ</displayName>
- <displayName count="other">Եմենական ռիալ</displayName>
- </currency>
- <currency type="ZAR">
- <displayName>Հարավաֆրիկական ռենդ</displayName>
- <displayName count="one">Հարավաֆրիկական ռենդ</displayName>
- <displayName count="other">Հարավաֆրիկական ռենդ</displayName>
- </currency>
- <currency type="ZMK">
- <displayName>Զամբիական կվաչա (1968–2012)</displayName>
- <displayName count="one">Զամբիական կվաչա (1968–2012)</displayName>
- <displayName count="other">Զամբիական կվաչա (1968–2012)</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} G</unitPattern>
- <unitPattern count="other">{0} G</unitPattern>
- </unit>
- <unit type="angle-arc-minute">
- <unitPattern count="one">{0} րոպ</unitPattern>
- <unitPattern count="other">{0} րոպ</unitPattern>
- </unit>
- <unit type="angle-arc-second">
- <unitPattern count="one">{0} վրկ</unitPattern>
- <unitPattern count="other">{0} վրկ</unitPattern>
- </unit>
- <unit type="angle-degree">
- <unitPattern count="one">{0} աստճ.</unitPattern>
- <unitPattern count="other">{0} աստճ.</unitPattern>
- </unit>
- <unit type="area-acre">
- <unitPattern count="one">{0} ակր</unitPattern>
- <unitPattern count="other">{0} ակր</unitPattern>
- </unit>
- <unit type="area-hectare">
- <unitPattern count="one">{0} հա</unitPattern>
- <unitPattern count="other">{0} հա</unitPattern>
- </unit>
- <unit type="area-square-foot">
- <unitPattern count="one">{0} քռ. ֆտ.</unitPattern>
- <unitPattern count="other">{0} քռ. ֆտ.</unitPattern>
- </unit>
- <unit type="area-square-kilometer">
- <unitPattern count="one">{0} կմ²</unitPattern>
- <unitPattern count="other">{0} կմ²</unitPattern>
- </unit>
- <unit type="area-square-meter">
- <unitPattern count="one">{0} մ²</unitPattern>
- <unitPattern count="other">{0} մ²</unitPattern>
- </unit>
- <unit type="area-square-mile">
- <unitPattern count="one">{0} քռ. մղ.</unitPattern>
- <unitPattern count="other">{0} քռ. մղ.</unitPattern>
- </unit>
- <unit type="duration-day">
- <unitPattern count="one">{0} օր</unitPattern>
- <unitPattern count="other">{0} օր</unitPattern>
- </unit>
- <unit type="duration-hour">
- <unitPattern count="one">{0} ժ.</unitPattern>
- <unitPattern count="other">{0} ժ.</unitPattern>
- </unit>
- <unit type="duration-millisecond">
- <unitPattern count="one">{0} մվ</unitPattern>
- <unitPattern count="other">{0}մվ</unitPattern>
- </unit>
- <unit type="duration-minute">
- <unitPattern count="one">{0} րպ.</unitPattern>
- <unitPattern count="other">{0} րպ.</unitPattern>
- </unit>
- <unit type="duration-month">
- <unitPattern count="one">{0} ամս</unitPattern>
- <unitPattern count="other">{0} ամս</unitPattern>
- </unit>
- <unit type="duration-second">
- <unitPattern count="one">{0} վրկ</unitPattern>
- <unitPattern count="other">{0} վրկ</unitPattern>
- </unit>
- <unit type="duration-week">
- <unitPattern count="one">{0} շբթ.</unitPattern>
- <unitPattern count="other">{0} շբթ.</unitPattern>
- </unit>
- <unit type="duration-year">
- <unitPattern count="one">{0} տր.</unitPattern>
- <unitPattern count="other">{0} տր.</unitPattern>
- </unit>
- <unit type="length-centimeter">
- <unitPattern count="one">{0} սմ</unitPattern>
- <unitPattern count="other">{0} սմ</unitPattern>
- </unit>
- <unit type="length-foot">
- <unitPattern count="one">{0} ֆտ.</unitPattern>
- <unitPattern count="other">{0} ֆտ.</unitPattern>
- </unit>
- <unit type="length-inch">
- <unitPattern count="one">{0} դմ.</unitPattern>
- <unitPattern count="other">{0} դմ.</unitPattern>
- </unit>
- <unit type="length-kilometer">
- <unitPattern count="one">{0} կմ</unitPattern>
- <unitPattern count="other">{0} կմ</unitPattern>
- </unit>
- <unit type="length-light-year">
- <unitPattern count="one">{0} լ. տ.</unitPattern>
- <unitPattern count="other">{0} լ. տ.</unitPattern>
- </unit>
- <unit type="length-meter">
- <unitPattern count="one">{0} մ</unitPattern>
- <unitPattern count="other">{0} մ</unitPattern>
- </unit>
- <unit type="length-mile">
- <unitPattern count="one">{0} մղ</unitPattern>
- <unitPattern count="other">{0} մղ</unitPattern>
- </unit>
- <unit type="length-millimeter">
- <unitPattern count="one">{0} մմ</unitPattern>
- <unitPattern count="other">{0} մմ</unitPattern>
- </unit>
- <unit type="length-picometer">
- <unitPattern count="one">{0} պմ</unitPattern>
- <unitPattern count="other">{0} պմ</unitPattern>
- </unit>
- <unit type="length-yard">
- <unitPattern count="one">{0} յդ.</unitPattern>
- <unitPattern count="other">{0} յդ.</unitPattern>
- </unit>
- <unit type="mass-gram">
- <unitPattern count="one">{0} գր</unitPattern>
- <unitPattern count="other">{0} գր</unitPattern>
- </unit>
- <unit type="mass-kilogram">
- <unitPattern count="one">{0} կգ</unitPattern>
- <unitPattern count="other">{0} կգ</unitPattern>
- </unit>
- <unit type="mass-ounce">
- <unitPattern count="one">{0} ունց</unitPattern>
- <unitPattern count="other">{0} ունց</unitPattern>
- </unit>
- <unit type="mass-pound">
- <unitPattern count="one">{0} ֆն.</unitPattern>
- <unitPattern count="other">{0} ֆն.</unitPattern>
- </unit>
- <unit type="power-horsepower">
- <unitPattern count="one">{0} ձ/ու</unitPattern>
- <unitPattern count="other">{0} ձ/ու</unitPattern>
- </unit>
- <unit type="power-kilowatt">
- <unitPattern count="one">{0} կՎ</unitPattern>
- <unitPattern count="other">{0} կՎ</unitPattern>
- </unit>
- <unit type="power-watt">
- <unitPattern count="one">{0} Վ</unitPattern>
- <unitPattern count="other">{0} Վ</unitPattern>
- </unit>
- <unit type="pressure-hectopascal">
- <unitPattern count="one">{0} հՊա</unitPattern>
- <unitPattern count="other">{0} հՊա</unitPattern>
- </unit>
- <unit type="pressure-inch-hg">
- <unitPattern count="one">{0} դյույմ ս. ս.</unitPattern>
- <unitPattern count="other">{0} դյույմ ս. ս.</unitPattern>
- </unit>
- <unit type="pressure-millibar">
- <unitPattern count="one">{0} մբ</unitPattern>
- <unitPattern count="other">{0} մբ</unitPattern>
- </unit>
- <unit type="speed-kilometer-per-hour">
- <unitPattern count="one">{0} կմ/ժ</unitPattern>
- <unitPattern count="other">{0} կմ/ժ</unitPattern>
- </unit>
- <unit type="speed-meter-per-second">
- <unitPattern count="one">{0} մ/վ</unitPattern>
- <unitPattern count="other">{0} մ/վ</unitPattern>
- </unit>
- <unit type="speed-mile-per-hour">
- <unitPattern count="one">{0} մղ/ժ</unitPattern>
- <unitPattern count="other">{0} մղ/ժ</unitPattern>
- </unit>
- <unit type="temperature-celsius">
- <unitPattern count="one">{0}°C</unitPattern>
- <unitPattern count="other">{0}°C</unitPattern>
- </unit>
- <unit type="temperature-fahrenheit">
- <unitPattern count="one">{0}°F</unitPattern>
- <unitPattern count="other">{0}°F</unitPattern>
- </unit>
- <unit type="volume-cubic-kilometer">
- <unitPattern count="one">{0} կմ³</unitPattern>
- <unitPattern count="other">{0} կմ³</unitPattern>
- </unit>
- <unit type="volume-cubic-mile">
- <unitPattern count="one">{0} մղ³</unitPattern>
- <unitPattern count="other">{0} մղ³</unitPattern>
- </unit>
- <unit type="volume-liter">
- <unitPattern count="one">{0} լ.</unitPattern>
- <unitPattern count="other">{0} լ.</unitPattern>
- </unit>
- </unitLength>
- <unitLength type="narrow">
- <compoundUnit type="per">
- <compoundUnitPattern>{0}/{1}</compoundUnitPattern>
- </compoundUnit>
- <unit type="acceleration-g-force">
- <unitPattern count="one">{0}G</unitPattern>
- <unitPattern count="other">{0}G</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}°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>
|