123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280 |
- <?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: 9876 $"/>
- <generation date="$Date: 2014-03-05 23:14:25 -0600 (Wed, 05 Mar 2014) $"/>
- <language type="am"/>
- </identity>
- <localeDisplayNames>
- <localeDisplayPattern>
- <localePattern>{0} ({1})</localePattern>
- <localeSeparator>{0},{1}</localeSeparator>
- <localeKeyTypePattern>{0}: {1}</localeKeyTypePattern>
- </localeDisplayPattern>
- <languages>
- <language type="aa">አፋርኛ</language>
- <language type="ab">አብሐዚኛ</language>
- <language type="ach">አኮሊኛ</language>
- <language type="af">አፍሪካንኛ</language>
- <language type="ak">አካንኛ</language>
- <language type="am">አማርኛ</language>
- <language type="ar">ዐርቢኛ</language>
- <language type="ar_001">ዘመናዊ መደበኛ አረብኛ</language>
- <language type="as">አሳሜዛዊ</language>
- <language type="ay">አያማርኛ</language>
- <language type="az">አዘርባጃንኛ</language>
- <language type="az" alt="short">አዜሪ</language>
- <language type="ba">ባስኪርኛ</language>
- <language type="be">ቤላራሻኛ</language>
- <language type="bem">ቤምባ</language>
- <language type="bg">ቡልጋሪኛ</language>
- <language type="bi">ቢስላምኛ</language>
- <language type="bn">ቤንጋሊኛ</language>
- <language type="bo">ቲቤታንኛ</language>
- <language type="br">ብሬቶንኛ</language>
- <language type="bs">ቦስኒያንኛ</language>
- <language type="byn">ብሊን</language>
- <language type="ca">ካታላንኛ</language>
- <language type="chr">ቼሮኬኛ</language>
- <language type="ckb">የሶራኒ ኩርድኛ</language>
- <language type="co">ኮርሲካኛ</language>
- <language type="cs">ቼክኛ</language>
- <language type="cy">ወልሽ</language>
- <language type="da">ዴኒሽ</language>
- <language type="de">ጀርመን</language>
- <language type="de_AT">የኦስትሪያ ጀርመን</language>
- <language type="de_CH">የስዊዝ ከፍተኛ ጀርመንኛ</language>
- <language type="dv">ዲቬህ</language>
- <language type="dz">ድዞንግኻኛ</language>
- <language type="ee">ኢዊ</language>
- <language type="efi">ኤፊክ</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="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="gaa">ጋ</language>
- <language type="gd">እስኮትስ ጌልክኛ</language>
- <language type="gez">ግዕዝኛ</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">ኢንቴርሊንጓ</language>
- <language type="id">ኢንዶኔዥኛ</language>
- <language type="ie">እንተርሊንግወ</language>
- <language type="ig">ኢግቦኛ</language>
- <language type="ik">እኑፒያቅኛ</language>
- <language type="is">አይስላንድኛ</language>
- <language type="it">ጣሊያንኛ</language>
- <language type="iu">እኑክቲቱትኛ</language>
- <language type="ja">ጃፓንኛ</language>
- <language type="jv">ጃቫንኛ</language>
- <language type="ka">ጆርጂያን</language>
- <language type="kg">ኮንጎኛ</language>
- <language type="kk">ካዛክኛ</language>
- <language type="kl">ካላሊሱትኛ</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="lg">ጋንዳኛ</language>
- <language type="ln">ሊንጋላኛ</language>
- <language type="lo">ላውስኛ</language>
- <language type="loz">ሎዚኛ</language>
- <language type="lt">ሉቴንያንኛ</language>
- <language type="lua">ሉባ-ሉሏ</language>
- <language type="lv">ላትቪያን</language>
- <language type="mfe">ሞሪሲየኛ</language>
- <language type="mg">ማላጋስኛ</language>
- <language type="mi">ማዮሪኛ</language>
- <language type="mk">ማሴዶንኛ</language>
- <language type="ml">ማላያላምኛ</language>
- <language type="mn">ሞንጎላዊኛ</language>
- <language type="mr">ማራቲኛ</language>
- <language type="ms">ማላይኛ</language>
- <language type="mt">ማልቲስኛ</language>
- <language type="my">ቡርማኛ</language>
- <language type="na">ናኡሩ</language>
- <language type="nb">የኖርዌይ ቦክማል</language>
- <language type="nd">ሰሜን ንዴብሌ</language>
- <language type="ne">ኔፓሊኛ</language>
- <language type="nl">ደች</language>
- <language type="nl_BE">ፍሌሚሽ</language>
- <language type="nn">የኖርዌይ ናይኖርስክ</language>
- <language type="no">ኖርዌጂያን</language>
- <language type="nso">ሰሜናዊ ሶቶ</language>
- <language type="ny">ንያንጃ</language>
- <language type="nyn">ኒያንኮልኛ</language>
- <language type="oc">ኦኪታንኛ</language>
- <language type="om">ኦሮሞኛ</language>
- <language type="or">ኦሪያኛ</language>
- <language type="os">ኦሴቲክ</language>
- <language type="pa">ፑንጃብኛ</language>
- <language type="pl">ፖሊሽኛ</language>
- <language type="ps">ፓሽቶኛ</language>
- <language type="ps" alt="variant">ፑሽቶ</language>
- <language type="pt">ፖርቹጋልኛ</language>
- <language type="pt_BR">የብራዚል ፖርቹጋልኛ</language>
- <language type="pt_PT">የአውሮፓ ፖርቹጋልኛ</language>
- <language type="qu">ኵቿኛ</language>
- <language type="rm">ሮማንሽ</language>
- <language type="rn">ሩንዲኛ</language>
- <language type="ro">ሮማኒያን</language>
- <language type="ro_MD">ሞልዳቫዊና</language>
- <language type="ru">ራሽኛ</language>
- <language type="rw">ኪንያርዋንድኛ</language>
- <language type="sa">ሳንስክሪትኛ</language>
- <language type="sd">ሲንድሂኛ</language>
- <language type="se">ሰሜናዊ ሳሚ</language>
- <language type="sg">ሳንጎኛ</language>
- <language type="sh" draft="unconfirmed">ሰርቦ-ክሮኤሽያኛ</language>
- <language type="si">ሲንሃልኛ</language>
- <language type="sid">ሲዳምኛ</language>
- <language type="sk">ስሎቫክኛ</language>
- <language type="sl">ስሎቪኛ</language>
- <language type="sm">ሳሞአኛ</language>
- <language type="sn">ሾናኛ</language>
- <language type="so">ሱማልኛ</language>
- <language type="sq">ልቤኒኛ</language>
- <language type="sr">ሰርቢኛ</language>
- <language type="ss">ስዋቲኛ</language>
- <language type="st">ሶዞኛ</language>
- <language type="su">ሱዳንኛ</language>
- <language type="sv">ስዊድንኛ</language>
- <language type="sw">ስዋሂሊኛ</language>
- <language type="ta">ታሚልኛ</language>
- <language type="te">ተሉጉኛ</language>
- <language type="tet">ቴተም</language>
- <language type="tg">ታጂኪኛ</language>
- <language type="th">ታይኛ</language>
- <language type="ti">ትግርኛ</language>
- <language type="tig">ትግረ</language>
- <language type="tk">ቱርክመንኛ</language>
- <language type="tl">ታጋሎገኛ</language>
- <language type="tlh">ክሊንጎንኛ</language>
- <language type="tn">ጽዋናዊኛ</language>
- <language type="to">ቶንጋኛ</language>
- <language type="tpi">ቶክ ፒሲን</language>
- <language type="tr">ቱርክኛ</language>
- <language type="ts">ጾንጋኛ</language>
- <language type="tt">ታታርኛ</language>
- <language type="tum">ቱምቡካ</language>
- <language type="tw">ትዊኛ</language>
- <language type="ty">ታሂታንኛ</language>
- <language type="ug">ኡዊግሁርኛ</language>
- <language type="ug" alt="variant">ኡይገር</language>
- <language type="uk">ዩክሬንኛ</language>
- <language type="und">ያልታወቀ ቋንቋ</language>
- <language type="ur">ኡርዱኛ</language>
- <language type="uz">ኡዝቤክኛ</language>
- <language type="ve">ቬንዳ</language>
- <language type="vi">ቪትናምኛ</language>
- <language type="vo">ቮላፑክኛ</language>
- <language type="wo">ዎሎፍኛ</language>
- <language type="xh">ዞሳኛ</language>
- <language type="yi">ይዲሽኛ</language>
- <language type="yo">ዮሩባዊኛ</language>
- <language type="za">ዡዋንግኛ</language>
- <language type="zgh">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="Arab" alt="variant">ፔርሶ - አረቢክ</script>
- <script type="Armn">አርሜንያዊ</script>
- <script type="Beng">ቤንጋሊ</script>
- <script type="Bopo">ቦፖሞፎ</script>
- <script type="Brai">ብሬይል</script>
- <script type="Buhd" draft="unconfirmed">ቡሂድ</script>
- <script type="Cans" draft="unconfirmed">የተዋሐዱ የካናዳ ጥንታዊ ምልክቶች</script>
- <script type="Cher" draft="unconfirmed">ቼሮኪ</script>
- <script type="Copt" draft="unconfirmed">ኮፕቲክ</script>
- <script type="Cprt" draft="unconfirmed">ሲፕሪኦት</script>
- <script type="Cyrl">ሲይሪልክ</script>
- <script type="Deva">ደቫንጋሪ</script>
- <script type="Dsrt" draft="unconfirmed">ዴዘረት</script>
- <script type="Ethi">ኢትዮፒክ</script>
- <script type="Geor">ጆርጂያዊ</script>
- <script type="Goth" draft="unconfirmed">ጐቲክ</script>
- <script type="Grek">ግሪክ</script>
- <script type="Gujr">ጉጃራቲ</script>
- <script type="Guru">ጉርሙኪ</script>
- <script type="Hang">ሐንጉል</script>
- <script type="Hani">ሃን</script>
- <script type="Hano" draft="unconfirmed">ሀኑኦ</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="Hrkt" draft="unconfirmed">ካታካና ወይንም ሂራጋና</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="Limb" draft="unconfirmed">ሊምቡ</script>
- <script type="Lina" draft="unconfirmed">ሊኒያር ኤ</script>
- <script type="Linb" draft="unconfirmed">ሊኒያር ቢ</script>
- <script type="Mlym">ማላያልም</script>
- <script type="Mong">ሞንጎሊያዊ</script>
- <script type="Mymr">ምያንማር</script>
- <script type="Ogam" draft="unconfirmed">ኦግሀም</script>
- <script type="Orya">ኦሪያ</script>
- <script type="Osma" draft="unconfirmed">ኦስማኒያ</script>
- <script type="Runr" draft="unconfirmed">ሩኒክ</script>
- <script type="Shaw" draft="unconfirmed">የሻቪያ ፊደል</script>
- <script type="Sinh">ሲንሃላ</script>
- <script type="Syrc" draft="unconfirmed">ሲሪክ</script>
- <script type="Tagb" draft="unconfirmed">ትአግባንዋ</script>
- <script type="Tale" draft="unconfirmed">ታኢ ለ</script>
- <script type="Talu" draft="unconfirmed">አዲስ ታኢ ሉ</script>
- <script type="Taml">ታሚል</script>
- <script type="Telu">ተልጉ</script>
- <script type="Tglg" draft="unconfirmed">ታጋሎግ</script>
- <script type="Thaa">ታና</script>
- <script type="Thai">ታይ</script>
- <script type="Tibt">ቲቤታን</script>
- <script type="Ugar" draft="unconfirmed">ኡጋሪቲክ</script>
- <script type="Vaii" draft="unconfirmed">ቫይ</script>
- <script type="Yiii" draft="unconfirmed">ዪ</script>
- <script type="Zinh" draft="unconfirmed">የተወረሰ</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="AN">ኔዘርላንድስ አንቲልስ</territory>
- <territory type="AO">አንጐላ</territory>
- <territory type="AQ">አንታርክቲካ</territory>
- <territory type="AR">አርጀንቲና</territory>
- <territory type="AS">የአሜሪካ ሳሞአ</territory>
- <territory type="AT">ኦስትሪያ</territory>
- <territory type="AU">አውስትሬሊያ</territory>
- <territory type="AW">አሩባ</territory>
- <territory type="AX">የአላንድ ደሴቶች</territory>
- <territory type="AZ">አዘርባጃን</territory>
- <territory type="BA">ቦስኒያ እና ሄርዞጎቪኒያ</territory>
- <territory type="BB">ባርቤዶስ</territory>
- <territory type="BD">ባንግላዲሽ</territory>
- <territory type="BE">ቤልጄም</territory>
- <territory type="BF">ቡርኪና ፋሶ</territory>
- <territory type="BG">ቡልጌሪያ</territory>
- <territory type="BH">ባህሬን</territory>
- <territory type="BI">ብሩንዲ</territory>
- <territory type="BJ">ቤኒን</territory>
- <territory type="BL">ቅዱስ በርቴሎሜ</territory>
- <territory type="BM">ቤርሙዳ</territory>
- <territory type="BN">ብሩኒ</territory>
- <territory type="BO">ቦሊቪያ</territory>
- <territory type="BQ">የካሪቢያን ኔዘርላንድስ</territory>
- <territory type="BR">ብራዚል</territory>
- <territory type="BS">ባሃማስ</territory>
- <territory type="BT">ቡህታን</territory>
- <territory type="BV">ቡቬት ደሴት</territory>
- <territory type="BW">ቦትስዋና</territory>
- <territory type="BY">ቤላሩስ</territory>
- <territory type="BZ">ቤሊዘ</territory>
- <territory type="CA">ካናዳ</territory>
- <territory type="CC">ኮኮስ(ኬሊንግ) ደሴቶች</territory>
- <territory type="CD">ኮንጎ-ኪንሻሳ</territory>
- <territory type="CD" alt="variant">ኮንጎ (የዲሞክራቲክ ሪፐብሊክ ኮንጎ)</territory>
- <territory type="CF">የመካከለኛው አፍሪካ ሪፐብሊክ</territory>
- <territory type="CG">ኮንጎ ብራዛቪል</territory>
- <territory type="CG" alt="variant">ኮንጎ (ሪፐብሊክ)</territory>
- <territory type="CH">ስዊዘርላንድ</territory>
- <territory type="CI">ኮት ዲቯር</territory>
- <territory type="CI" alt="variant">አይቮሪኮስት</territory>
- <territory type="CK">ኩክ ደሴቶች</territory>
- <territory type="CL">ቺሊ</territory>
- <territory type="CM">ካሜሩን</territory>
- <territory type="CN">ቻይና</territory>
- <territory type="CO">ኮሎምቢያ</territory>
- <territory type="CP">ክሊፐርቶን ደሴት</territory>
- <territory type="CR">ኮስታ ሪካ</territory>
- <territory type="CU">ኩባ</territory>
- <territory type="CV">ኬፕ ቬርዴ</territory>
- <territory type="CW">ኩራሳዎ</territory>
- <territory type="CX">የገና ደሴት</territory>
- <territory type="CY">ሳይፕረስ</territory>
- <territory type="CZ">ቼክ ሪፑብሊክ</territory>
- <territory type="DE">ጀርመን</territory>
- <territory type="DG">ዲዬጎ ጋርሺያ</territory>
- <territory type="DJ">ጂቡቲ</territory>
- <territory type="DK">ዴንማርክ</territory>
- <territory type="DM">ዶሚኒካ</territory>
- <territory type="DO">ዶሚኒክ ሪፑብሊክ</territory>
- <territory type="DZ">አልጄሪያ</territory>
- <territory type="EA">ሴኡታና ሜሊላ</territory>
- <territory type="EC">ኢኳዶር</territory>
- <territory type="EE">ኤስቶኒያ</territory>
- <territory type="EG">ግብጽ</territory>
- <territory type="EH">ምዕራባዊ ሳህራ</territory>
- <territory type="ER">ኤርትራ</territory>
- <territory type="ES">ስፔን</territory>
- <territory type="ET">ኢትዮጵያ</territory>
- <territory type="EU">የአውሮፓ ህብረት</territory>
- <territory type="FI">ፊንላንድ</territory>
- <territory type="FJ">ፊጂ</territory>
- <territory type="FK">የፎልክላንድ ደሴቶች</territory>
- <territory type="FK" alt="variant">ፎክላንድ ደሴቶች (ኢስላስ ማልቪናስ)</territory>
- <territory type="FM">ሚክሮኔዢያ</territory>
- <territory type="FO">የፋሮ ደሴቶች</territory>
- <territory type="FR">ፈረንሳይ</territory>
- <territory type="GA">ጋቦን</territory>
- <territory type="GB">እንግሊዝ</territory>
- <territory type="GB" alt="short">ዩናይትድ ኪንግደም</territory>
- <territory type="GD">ግሬናዳ</territory>
- <territory type="GE">ጆርጂያ</territory>
- <territory type="GF">የፈረንሳይ ጉዊአና</territory>
- <territory type="GG">ጉርነሲ</territory>
- <territory type="GH">ጋና</territory>
- <territory type="GI">ጊብራልታር</territory>
- <territory type="GL">ግሪንላንድ</territory>
- <territory type="GM">ጋምቢያ</territory>
- <territory type="GN">ጊኒ</territory>
- <territory type="GP">ጉዋደሉፕ</territory>
- <territory type="GQ">ኢኳቶሪያል ጊኒ</territory>
- <territory type="GR">ግሪክ</territory>
- <territory type="GS">ደቡብ ጆርጂያ እና የደቡብ ሳንድዊች ደሴቶች</territory>
- <territory type="GT">ጉዋቲማላ</territory>
- <territory type="GU">ጉዋም</territory>
- <territory type="GW">ጊኒ ቢሳኦ</territory>
- <territory type="GY">ጉያና</territory>
- <territory type="HK">ሆንግ ኮንግ SAR ቻይና</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">US</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="colAlternate">የምልክቶች ድርደራ ችላ በለው</key>
- <key type="colBackwards">የኋሊዮሽ የፊደል ጭረት ድርደራ</key>
- <key type="colCaseFirst">የአቢይ/ንዑስ ሆሄ ቅደም ተከተል</key>
- <key type="colCaseLevel">የመልከፊደል ትብ ድርደራ</key>
- <key type="colHiraganaQuaternary">የካና ድርደራ</key>
- <key type="collation">አቀማመጥ ደርድር</key>
- <key type="colNormalization">መደበኛ ድርደራ</key>
- <key type="colNumeric">የቁጥር ድርደራ</key>
- <key type="colStrength">የድርደራ አቅም</key>
- <key type="currency">ገንዘብ</key>
- <key type="numbers">ቁጥሮች</key>
- <key type="timezone">የሰዓት ሰቅ</key>
- <key type="va">የአካባቢ አይነት</key>
- <key type="variableTop">እንደምልክቶች ደርድር</key>
- <key type="x">ለግል ጥቅም</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="big5han" key="collation">የባህላዊ ቻይንኛ የድርድር ቅደም ተከተል - ትልቅ5</type>
- <type type="buddhist" key="calendar">የቡዲስት ቀን አቆጣጠር</type>
- <type type="chinese" key="calendar">የቻይና የቀን አቆጣጠር</type>
- <type type="coptic" key="calendar">የኮፕቲክ የቀን አቆጣጠር</type>
- <type type="deva" key="numbers">የዴቫንጋሪ አሃዞች</type>
- <type type="dictionary" key="collation">የመዝገበ ቃላት የድርድር ቅደም ተከተል</type>
- <type type="ducet" key="collation">የነባሪ ዩኒኮድ የድርድር ቅደም ተከተል</type>
- <type type="ethi" key="numbers">የኢትዮፒክ ቁጥሮች</type>
- <type type="ethiopic" key="calendar">የኢትዮጵያ የቀን አቆጣጠር</type>
- <type type="ethiopic-amete-alem" key="calendar">የኢትዮፒክ አመተ አለም የቀን አቆጣጠር</type>
- <type type="finance" key="numbers">የፋይናንስ ቁጥሮች</type>
- <type type="fullwide" key="numbers">የሙሉ ወርድ አሃዞች</type>
- <type type="gb2312han" key="collation">የቀለለ የቻይንኛ የድርደራ ቅደም ተከተል - GB2312</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="hebrew" key="calendar">የእብራዊያን የቀን አቆጣጠር</type>
- <type type="identical" key="colStrength">ሁሉንም ደርድር</type>
- <type type="indian" key="calendar">የህንድ ብሔራዊ የቀን አቆጣጠር</type>
- <type type="islamic" key="calendar">የእስላማዊ የሰዓት አቆጣጠር</type>
- <type type="islamic-civil" key="calendar">የእስላም ህዝባዊ የቀን አቆጣጠር</type>
- <type type="japanese" key="calendar">የጃፓን የቀን አቆጣጠር</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="lower" key="colCaseFirst">ንዑስ ሆሄ መጀመሪያ ደርድር</type>
- <type type="mlym" key="numbers">የማላያላምኛ አሃዞች</type>
- <type type="mong" key="numbers">የሞንጎልኛ አሃዞች</type>
- <type type="mymr" key="numbers">የማያንማር አሃዞች</type>
- <type type="native" key="numbers">ትውልድ አሃዞች</type>
- <type type="no" key="colBackwards">የፊደል ጭረቶችን እንደመደበኛ ደርድር</type>
- <type type="no" key="colCaseFirst">መደበኛ የመልከፊደል አቀማመጥ ደርድር</type>
- <type type="no" key="colCaseLevel">ያለመልከፊደል ትብ ደርድር</type>
- <type type="no" key="colHiraganaQuaternary">ካና ለይተህ ደርድር</type>
- <type type="no" key="colNormalization">ያለመደበኛ ሁኔታ ደርድር</type>
- <type type="no" key="colNumeric">አሃዞችን በየግል ደርድር</type>
- <type type="non-ignorable" key="colAlternate">ምልክቶችን ደርድር</type>
- <type type="orya" key="numbers">የኦሪያኛ አሃዞች</type>
- <type type="persian" key="calendar">የፐርሽያ የቀን አቆጣጠር</type>
- <type type="phonebook" key="collation">የስልክ ደብተር ድርድር ቅደም ተከተል</type>
- <type type="phonetic" key="collation">የፎነቲክ ድርደራ ቅደም ተከተል</type>
- <type type="pinyin" key="collation">ፒንይን የድርድር ቅደም ተከተል</type>
- <type type="primary" key="colStrength">የመሠረት ፊደላት ብቻ ደርድር</type>
- <type type="quaternary" key="colStrength">የፊደል ጭረቶች/መልከፊደል/ስፋት/ካና ደርድር</type>
- <type type="reformed" key="collation">ዳግም የተፈጠረ የድርድር ቅደም ተከተል</type>
- <type type="roc" key="calendar">የሚንጉ የቀን አቆጣጠር</type>
- <type type="roman" key="numbers">የሮማን ቁጥሮች</type>
- <type type="romanlow" key="numbers">የሮማን ንዑስ ሆሄ ቁጥሮች</type>
- <type type="search" key="collation">ለጠቅላላ ጉዳይ ፍለጋ</type>
- <type type="searchjl" key="collation">በሃንጉል የመጀመሪያ ተነባቢ ፈልግ</type>
- <type type="secondary" key="colStrength">የፊደል ጭረቶችን ደርድር</type>
- <type type="shifted" key="colAlternate">ችላ ባይ ምልክቶችን ደርድር</type>
- <type type="stroke" key="collation">የበትር ድርድር ቅደም ተከተል</type>
- <type type="taml" key="numbers">ባህላዊ የታሚል ቁጥሮች</type>
- <type type="tamldec" key="numbers">የታሚል አሃዞች</type>
- <type type="telu" key="numbers">የተልጉ አሃዞች</type>
- <type type="tertiary" key="colStrength">የፊደል ጭረቶች/መልከፊደል/ስፋት ደርድር</type>
- <type type="thai" key="numbers">የታይ አሃዞች</type>
- <type type="tibt" key="numbers">የቲቤታን አሃዞች</type>
- <type type="traditional" key="collation">ባህላዊ የድርድር ቅደም ተከተል</type>
- <type type="traditional" key="numbers">ተለምዷዊ ቁጥሮች</type>
- <type type="unihan" key="collation">የመሰረታዊ በትር ድርድር ቅደም ተከተል</type>
- <type type="upper" key="colCaseFirst">አቢይ ሆሄ መጀመሪያ ደርድር</type>
- <type type="vaii" key="numbers">የቫይ አሃዞች</type>
- <type type="yes" key="colBackwards">የፊደል ጭረቶች በኋሊዮሽ ደርድር</type>
- <type type="yes" key="colCaseLevel">በመልከፊደል ትብ ደርድር</type>
- <type type="yes" key="colHiraganaQuaternary">ካና ለይተህ ደርድር</type>
- <type type="yes" key="colNormalization">ዩኒኮድ በመደበኛ ሁኔታ ደርድር</type>
- <type type="yes" key="colNumeric">አሃዞች በቁጥር ደርድር</type>
- </types>
- <transformNames>
- <transformName type="BGN">ቢ ጂ ኤን</transformName>
- <transformName type="Numeric">አሃዛዊ</transformName>
- <transformName type="Tone">የድምፅ ቃና</transformName>
- <transformName type="UNGEGN">UNGEGN</transformName>
- <transformName type="x-Accents">ትእምርት</transformName>
- <transformName type="x-Fullwidth">ሙሉ ወርድ</transformName>
- <transformName type="x-Halfwidth">ሃልፍዊድዝ</transformName>
- <transformName type="x-Jamo">ጃሞ</transformName>
- <transformName type="x-Pinyin">ፒንዪን</transformName>
- <transformName type="x-Publishing">ማሳተም</transformName>
- </transformNames>
- <measurementSystemNames>
- <measurementSystemName type="metric">ሜትሪክ</measurementSystemName>
- <measurementSystemName type="UK">ዩኬ</measurementSystemName>
- <measurementSystemName type="US">ዩ ኤስ</measurementSystemName>
- </measurementSystemNames>
- <codePatterns>
- <codePattern type="language">{0}</codePattern>
- <codePattern type="script">{0}</codePattern>
- <codePattern type="territory">{0}</codePattern>
- </codePatterns>
- </localeDisplayNames>
- <characters>
- <exemplarCharacters>[ሀ ሁ ሂ ሃ ሄ ህ ሆ ለ ሉ ሊ ላ ሌ ል ሎ ሏ ሐ ሑ ሒ ሓ ሔ ሕ ሖ ሗ መ ሙ ሚ ማ ሜ ም ሞ ሟ ሠ ሡ ሢ ሣ ሤ ሥ ሦ ሧ ረ ሩ ሪ ራ ሬ ር ሮ ሯ ሰ ሱ ሲ ሳ ሴ ስ ሶ ሷ ሸ ሹ ሺ ሻ ሼ ሽ ሾ ሿ ቀ ቁ ቂ ቃ ቄ ቅ ቆ ቈ ቊ ቋ ቌ ቍ በ ቡ ቢ ባ ቤ ብ ቦ ቧ ቨ ቩ ቪ ቫ ቬ ቭ ቮ ቯ ተ ቱ ቲ ታ ቴ ት ቶ ቷ ቸ ቹ ቺ ቻ ቼ ች ቾ ቿ ኀ ኁ ኂ ኃ ኄ ኅ ኆ ኈ ኊ ኋ ኌ ኍ ነ ኑ ኒ ና ኔ ን ኖ ኗ ኘ ኙ ኚ ኛ ኜ ኝ ኞ ኟ አ ኡ ኢ ኣ ኤ እ ኦ ኧ ከ ኩ ኪ ካ ኬ ክ ኮ ኰ ኲ ኳ ኴ ኵ ኸ ኹ ኺ ኻ ኼ ኽ ኾ ወ ዉ ዊ ዋ ዌ ው ዎ ዐ ዑ ዒ ዓ ዔ ዕ ዖ ዘ ዙ ዚ ዛ ዜ ዝ ዞ ዟ ዠ ዡ ዢ ዣ ዤ ዥ ዦ ዧ የ ዩ ዪ ያ ዬ ይ ዮ ደ ዱ ዲ ዳ ዴ ድ ዶ ዷ ጀ ጁ ጂ ጃ ጄ ጅ ጆ ጇ ገ ጉ ጊ ጋ ጌ ግ ጎ ጐ ጒ ጓ ጔ ጕ ጠ ጡ ጢ ጣ ጤ ጥ ጦ ጧ ጨ ጩ ጪ ጫ ጬ ጭ ጮ ጯ ጰ ጱ ጲ ጳ ጴ ጵ ጶ ጷ ጸ ጹ ጺ ጻ ጼ ጽ ጾ ጿ ፀ ፁ ፂ ፃ ፄ ፅ ፆ ፈ ፉ ፊ ፋ ፌ ፍ ፎ ፏ ፐ ፑ ፒ ፓ ፔ ፕ ፖ ፗ]</exemplarCharacters>
- <exemplarCharacters type="auxiliary">[]</exemplarCharacters>
- <exemplarCharacters type="index" draft="unconfirmed">[ሀ ለ ሐ መ ሠ ረ ሰ ሸ ቀ ቈ በ ቨ ተ ቸ ኀ ኈ ነ ኘ አ ከ ኰ ኸ ወ ዐ ዘ ዠ የ ደ ጀ ገ ጐ ጠ ጨ ጰ ጸ ፀ ፈ ፐ]</exemplarCharacters>
- <exemplarCharacters type="punctuation">[‐ – , ፡ ፣ ፤ ፥ ፦ ! ? . ። ‹ › « » ( ) \[ \]]</exemplarCharacters>
- <ellipsis type="final">{0}…</ellipsis>
- <ellipsis type="initial">…{0}</ellipsis>
- <ellipsis type="medial">{0}…{1}</ellipsis>
- <moreInformation>?</moreInformation>
- </characters>
- <delimiters>
- <quotationStart>«</quotationStart>
- <quotationEnd>»</quotationEnd>
- <alternateQuotationStart>‹</alternateQuotationStart>
- <alternateQuotationEnd>›</alternateQuotationEnd>
- </delimiters>
- <dates>
- <calendars>
- <calendar type="coptic">
- <eras>
- <eraAbbr>
- <era type="0" draft="unconfirmed">ዓ/ዓ</era>
- <era type="1" draft="unconfirmed">ዓ/ም</era>
- </eraAbbr>
- </eras>
- </calendar>
- <calendar type="ethiopic">
- <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>
- <month type="13">ጳጉሜ</month>
- </monthWidth>
- <monthWidth type="narrow">
- <month type="1">1</month>
- <month type="2">2</month>
- <month type="3">3</month>
- <month type="4">4</month>
- <month type="5">5</month>
- <month type="6">6</month>
- <month type="7">7</month>
- <month type="8">8</month>
- <month type="9">9</month>
- <month type="10">10</month>
- <month type="11">11</month>
- <month type="12">12</month>
- <month type="13">13</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>
- <month type="13">ጳጉሜን</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>
- <month type="13">ጳጉሜ</month>
- </monthWidth>
- <monthWidth type="narrow">
- <month type="1">1</month>
- <month type="2">2</month>
- <month type="3">3</month>
- <month type="4">4</month>
- <month type="5">5</month>
- <month type="6">6</month>
- <month type="7">7</month>
- <month type="8">8</month>
- <month type="9">9</month>
- <month type="10">10</month>
- <month type="11">11</month>
- <month type="12">12</month>
- <month type="13">13</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>
- <month type="13">ጳጉሜን</month>
- </monthWidth>
- </monthContext>
- </months>
- <dateFormats>
- <dateFormatLength type="full">
- <dateFormat>
- <pattern draft="unconfirmed">EEEE፣ MMMM d ቀን y G</pattern>
- </dateFormat>
- </dateFormatLength>
- </dateFormats>
- </calendar>
- <calendar type="generic">
- <dateFormats>
- <dateFormatLength type="full">
- <dateFormat>
- <pattern>EEEE፣ d MMMM y G</pattern>
- </dateFormat>
- </dateFormatLength>
- <dateFormatLength type="long">
- <dateFormat>
- <pattern>d MMMM y G</pattern>
- </dateFormat>
- </dateFormatLength>
- <dateFormatLength type="medium">
- <dateFormat>
- <pattern>d 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">E d</dateFormatItem>
- <dateFormatItem id="Gy">y G</dateFormatItem>
- <dateFormatItem id="GyMMM">MMM፣ y G</dateFormatItem>
- <dateFormatItem id="GyMMMd">MMM d፣ y G</dateFormatItem>
- <dateFormatItem id="GyMMMEd">E MMM d፣ y G</dateFormatItem>
- <dateFormatItem id="h">h a</dateFormatItem>
- <dateFormatItem id="H">H</dateFormatItem>
- <dateFormatItem id="hm">h:mm a</dateFormatItem>
- <dateFormatItem id="Hm">HH:mm</dateFormatItem>
- <dateFormatItem id="hms">h:mm:ss a</dateFormatItem>
- <dateFormatItem id="Hms">HH:mm:ss</dateFormatItem>
- <dateFormatItem id="M">L</dateFormatItem>
- <dateFormatItem id="Md">M/d</dateFormatItem>
- <dateFormatItem id="MEd">E፣ M/d</dateFormatItem>
- <dateFormatItem id="MMM">LLL</dateFormatItem>
- <dateFormatItem id="MMMd">MMM d</dateFormatItem>
- <dateFormatItem id="MMMEd">E, MMM d</dateFormatItem>
- <dateFormatItem id="MMMMd">MMMM d</dateFormatItem>
- <dateFormatItem id="MMMMEd">E, MMMM d</dateFormatItem>
- <dateFormatItem id="ms">mm:ss</dateFormatItem>
- <dateFormatItem id="y">y</dateFormatItem>
- <dateFormatItem id="yM">M/y</dateFormatItem>
- <dateFormatItem id="yMd">d/M/y</dateFormatItem>
- <dateFormatItem id="yMEd">E፣ d/M/y</dateFormatItem>
- <dateFormatItem id="yMMM">MMM y</dateFormatItem>
- <dateFormatItem id="yMMMd">d MMM y</dateFormatItem>
- <dateFormatItem id="yMMMEd">E፣ MMM d y</dateFormatItem>
- <dateFormatItem id="yMMMM">MMMM y</dateFormatItem>
- <dateFormatItem id="yQQQ">QQQ y</dateFormatItem>
- <dateFormatItem id="yQQQQ">QQQQ y</dateFormatItem>
- <dateFormatItem id="yyyy">G y</dateFormatItem>
- <dateFormatItem id="yyyyM">GGGGG y-MM</dateFormatItem>
- <dateFormatItem id="yyyyMd">GGGGG y-MM-dd</dateFormatItem>
- <dateFormatItem id="yyyyMEd">GGGGG y-MM-dd, E</dateFormatItem>
- <dateFormatItem id="yyyyMMM">G y MMM</dateFormatItem>
- <dateFormatItem id="yyyyMMMd">G y MMM d</dateFormatItem>
- <dateFormatItem id="yyyyMMMEd">G y MMM d, E</dateFormatItem>
- <dateFormatItem id="yyyyQQQ">G y QQQ</dateFormatItem>
- <dateFormatItem id="yyyyQQQQ">G y QQQQ</dateFormatItem>
- </availableFormats>
- <intervalFormats>
- <intervalFormatFallback>{0} – {1}</intervalFormatFallback>
- <intervalFormatItem id="d">
- <greatestDifference id="d">d–d</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="h">
- <greatestDifference id="a">h a – h a</greatestDifference>
- <greatestDifference id="h">h – h a</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="H">
- <greatestDifference id="H">HH–HH</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="hm">
- <greatestDifference id="a">h:mm a – h:mm a</greatestDifference>
- <greatestDifference id="h">h:mm – h:mm a</greatestDifference>
- <greatestDifference id="m">h:mm – h:mm a</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="Hm">
- <greatestDifference id="H">HH:mm–HH:mm</greatestDifference>
- <greatestDifference id="m">HH:mm–HH:mm</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="hmv">
- <greatestDifference id="a">h:mm a – h:mm a v</greatestDifference>
- <greatestDifference id="h">h:mm – h:mm a v</greatestDifference>
- <greatestDifference id="m">h:mm – h:mm a v</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="Hmv">
- <greatestDifference id="H">HH:mm–HH:mm v</greatestDifference>
- <greatestDifference id="m">HH:mm–HH:mm v</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="hv">
- <greatestDifference id="a">h a – h a v</greatestDifference>
- <greatestDifference id="h">h – h a v</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="Hv">
- <greatestDifference id="H">HH–HH v</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="M">
- <greatestDifference id="M">M–M</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="Md">
- <greatestDifference id="d">d–d/M</greatestDifference>
- <greatestDifference id="M">d/M – d/M</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MEd">
- <greatestDifference id="d">E d/M – E d/M</greatestDifference>
- <greatestDifference id="M">E፣ d/M – E፣ d/M</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MMM">
- <greatestDifference id="M">MMM–MMM</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MMMd">
- <greatestDifference id="d">MMM d–d</greatestDifference>
- <greatestDifference id="M">MMM d – MMM d</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MMMEd">
- <greatestDifference id="d">E d – E d፣ MMM</greatestDifference>
- <greatestDifference id="M">E፣ MMM d – E፣ MMM d</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="y">
- <greatestDifference id="y">y–y</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yM">
- <greatestDifference id="M">M/y – M/y</greatestDifference>
- <greatestDifference id="y">M/y – M/y</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMd">
- <greatestDifference id="d">d/M/y – d/M/y</greatestDifference>
- <greatestDifference id="M">d/M/y – d/M/y</greatestDifference>
- <greatestDifference id="y">d/M/y – d/M/y</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMEd">
- <greatestDifference id="d">E፣ d/M/y – E፣ d/M/y</greatestDifference>
- <greatestDifference id="M">E d/M/ – E d/M፣ y</greatestDifference>
- <greatestDifference id="y">E፣ d/M/y – E፣ d/M/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">MMM d–d፣ y</greatestDifference>
- <greatestDifference id="M">MMM d – MMM d፣ y</greatestDifference>
- <greatestDifference id="y">MMM d፣ y – MMM d፣ y</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMMMEd">
- <greatestDifference id="d">E MMM d – E MMM d፣ y</greatestDifference>
- <greatestDifference id="M">E MMM d – E MMM d፣ y</greatestDifference>
- <greatestDifference id="y">E፣ MMM d፣ y – E፣ MMM d፣ y</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMMMM">
- <greatestDifference id="M">MMMM–MMMM y</greatestDifference>
- <greatestDifference id="y">MMMM y – MMMM y</greatestDifference>
- </intervalFormatItem>
- </intervalFormats>
- </dateTimeFormats>
- </calendar>
- <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">ሁለተኛው ሩብ</quarter>
- <quarter type="3">3ኛው ሩብ</quarter>
- <quarter type="4">4ኛው ሩብ</quarter>
- </quarterWidth>
- </quarterContext>
- <quarterContext type="stand-alone">
- <quarterWidth type="abbreviated">
- <quarter type="1">ሩብ1</quarter>
- <quarter type="2">ሩብ2</quarter>
- <quarter type="3">ሩብ3</quarter>
- <quarter type="4">ሩብ4</quarter>
- </quarterWidth>
- <quarterWidth type="narrow">
- <quarter type="1">1</quarter>
- <quarter type="2">2</quarter>
- <quarter type="3">3</quarter>
- <quarter type="4">4</quarter>
- </quarterWidth>
- <quarterWidth type="wide">
- <quarter type="1">1ኛው ሩብ</quarter>
- <quarter type="2">2ኛው ሩብ</quarter>
- <quarter type="3">3ኛው ሩብ</quarter>
- <quarter type="4">4ኛው ሩብ</quarter>
- </quarterWidth>
- </quarterContext>
- </quarters>
- <dayPeriods>
- <dayPeriodContext type="format">
- <dayPeriodWidth type="wide">
- <dayPeriod type="am">ጥዋት</dayPeriod>
- <dayPeriod type="pm">ከሰዓት</dayPeriod>
- </dayPeriodWidth>
- </dayPeriodContext>
- </dayPeriods>
- <eras>
- <eraNames>
- <era type="0">ዓመተ ዓለም</era>
- <era type="1">ዓመተ ምሕረት</era>
- </eraNames>
- <eraAbbr>
- <era type="0">ዓ/ዓ</era>
- <era type="1">ዓ/ም</era>
- </eraAbbr>
- </eras>
- <dateFormats>
- <dateFormatLength type="full">
- <dateFormat>
- <pattern>EEEE, d MMMM y</pattern>
- </dateFormat>
- </dateFormatLength>
- <dateFormatLength type="long">
- <dateFormat>
- <pattern>d MMMM y</pattern>
- </dateFormat>
- </dateFormatLength>
- <dateFormatLength type="medium">
- <dateFormat>
- <pattern>d MMM y</pattern>
- </dateFormat>
- </dateFormatLength>
- <dateFormatLength type="short">
- <dateFormat>
- <pattern>dd/MM/y</pattern>
- </dateFormat>
- </dateFormatLength>
- </dateFormats>
- <timeFormats>
- <timeFormatLength type="full">
- <timeFormat>
- <pattern>h:mm:ss a zzzz</pattern>
- </timeFormat>
- </timeFormatLength>
- <timeFormatLength type="long">
- <timeFormat>
- <pattern>h:mm:ss a z</pattern>
- </timeFormat>
- </timeFormatLength>
- <timeFormatLength type="medium">
- <timeFormat>
- <pattern>h:mm:ss a</pattern>
- </timeFormat>
- </timeFormatLength>
- <timeFormatLength type="short">
- <timeFormat>
- <pattern>h:mm a</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">E d</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">y G</dateFormatItem>
- <dateFormatItem id="GyMMM">MMM y G</dateFormatItem>
- <dateFormatItem id="GyMMMd">MMM d፣ y G</dateFormatItem>
- <dateFormatItem id="GyMMMEd">E፣ MMM d፣ y G</dateFormatItem>
- <dateFormatItem id="h">h a</dateFormatItem>
- <dateFormatItem id="H">H</dateFormatItem>
- <dateFormatItem id="hm">h:mm a</dateFormatItem>
- <dateFormatItem id="Hm">HH:mm</dateFormatItem>
- <dateFormatItem id="hms">h:mm:ss a</dateFormatItem>
- <dateFormatItem id="Hms">HH:mm:ss</dateFormatItem>
- <dateFormatItem id="M">L</dateFormatItem>
- <dateFormatItem id="Md">M/d</dateFormatItem>
- <dateFormatItem id="MEd">E, M/d</dateFormatItem>
- <dateFormatItem id="MMM">LLL</dateFormatItem>
- <dateFormatItem id="MMMd">MMM d</dateFormatItem>
- <dateFormatItem id="MMMEd">E, MMM d</dateFormatItem>
- <dateFormatItem id="MMMMd">MMMM d</dateFormatItem>
- <dateFormatItem id="MMMMEd">E, MMMM d</dateFormatItem>
- <dateFormatItem id="ms">mm:ss</dateFormatItem>
- <dateFormatItem id="y">y</dateFormatItem>
- <dateFormatItem id="yM">M/y</dateFormatItem>
- <dateFormatItem id="yMd">d/M/y</dateFormatItem>
- <dateFormatItem id="yMEd">E፣ d/M/y</dateFormatItem>
- <dateFormatItem id="yMMM">MMM y</dateFormatItem>
- <dateFormatItem id="yMMMd">d MMM y</dateFormatItem>
- <dateFormatItem id="yMMMEd">E፣ MMM d y</dateFormatItem>
- <dateFormatItem id="yMMMM">MMMM y</dateFormatItem>
- <dateFormatItem id="yQQQ">QQQ y</dateFormatItem>
- <dateFormatItem id="yQQQQ">QQQQ y</dateFormatItem>
- </availableFormats>
- <appendItems>
- <appendItem request="Timezone">{0} {1}</appendItem>
- </appendItems>
- <intervalFormats>
- <intervalFormatFallback>{0} – {1}</intervalFormatFallback>
- <intervalFormatItem id="d">
- <greatestDifference id="d">d–d</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="h">
- <greatestDifference id="a">h a – h a</greatestDifference>
- <greatestDifference id="h">h – h a</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="H">
- <greatestDifference id="H">HH–HH</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="hm">
- <greatestDifference id="a">h:mm a – h:mm a</greatestDifference>
- <greatestDifference id="h">h:mm – h:mm a</greatestDifference>
- <greatestDifference id="m">h:mm – h:mm a</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="Hm">
- <greatestDifference id="H">HH:mm–HH:mm</greatestDifference>
- <greatestDifference id="m">HH:mm–HH:mm</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="hmv">
- <greatestDifference id="a">h:mm a – h:mm a v</greatestDifference>
- <greatestDifference id="h">h:mm – h:mm a v</greatestDifference>
- <greatestDifference id="m">h:mm – h:mm a v</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="Hmv">
- <greatestDifference id="H">HH:mm–HH:mm v</greatestDifference>
- <greatestDifference id="m">HH:mm–HH:mm v</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="hv">
- <greatestDifference id="a">h a – h a v</greatestDifference>
- <greatestDifference id="h">h – h a v</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="Hv">
- <greatestDifference id="H">HH–HH v</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="M">
- <greatestDifference id="M">M–M</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="Md">
- <greatestDifference id="d">d–d/M</greatestDifference>
- <greatestDifference id="M">d/M – d/M</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MEd">
- <greatestDifference id="d">E d/M – E d/M</greatestDifference>
- <greatestDifference id="M">E፣ d/M – E፣ d/M</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MMM">
- <greatestDifference id="M">MMM–MMM</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MMMd">
- <greatestDifference id="d">MMM d–d</greatestDifference>
- <greatestDifference id="M">MMM d – MMM d</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MMMEd">
- <greatestDifference id="d">E d – E d፣ MMM</greatestDifference>
- <greatestDifference id="M">E፣ MMM d – E፣ MMM d</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="y">
- <greatestDifference id="y">y–y</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yM">
- <greatestDifference id="M">M/y – M/y</greatestDifference>
- <greatestDifference id="y">M/y – M/y</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMd">
- <greatestDifference id="d">d/M/y – d/M/y</greatestDifference>
- <greatestDifference id="M">d/M/y – d/M/y</greatestDifference>
- <greatestDifference id="y">d/M/y – d/M/y</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMEd">
- <greatestDifference id="d">E፣ d/M/y – E፣ d/M/y</greatestDifference>
- <greatestDifference id="M">E d/M/ – E d/M፣ y</greatestDifference>
- <greatestDifference id="y">E፣ d/M/y – E፣ d/M/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">MMM d–d፣ y</greatestDifference>
- <greatestDifference id="M">MMM d – MMM d፣ y</greatestDifference>
- <greatestDifference id="y">MMM d፣ y – MMM d፣ y</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMMMEd">
- <greatestDifference id="d">E MMM d – E MMM d፣ y</greatestDifference>
- <greatestDifference id="M">E MMM d – E MMM d፣ y</greatestDifference>
- <greatestDifference id="y">E፣ MMM d፣ y – E፣ MMM d፣ y</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMMMM">
- <greatestDifference id="M">MMMM–MMMM y</greatestDifference>
- <greatestDifference id="y">MMMM y – MMMM y</greatestDifference>
- </intervalFormatItem>
- </intervalFormats>
- </dateTimeFormats>
- </calendar>
- <calendar type="islamic">
- <months>
- <monthContext type="format">
- <monthWidth type="wide">
- <month type="1" draft="unconfirmed">ሙሀረም</month>
- <month type="2" draft="unconfirmed">ሳፈር</month>
- <month type="3" draft="unconfirmed">ረቢዑል አወል</month>
- <month type="4" draft="unconfirmed">ረቢዑል አኺር</month>
- <month type="5" draft="unconfirmed">ጀማደል አወል</month>
- <month type="6" draft="unconfirmed">ጀማደል አኺር</month>
- <month type="7" draft="unconfirmed">ረጀብ</month>
- <month type="8" draft="unconfirmed">ሻእባን</month>
- <month type="9" draft="unconfirmed">ረመዳን</month>
- <month type="10" draft="unconfirmed">ሸዋል</month>
- <month type="11" draft="unconfirmed">ዙልቂዳህ</month>
- <month type="12" draft="unconfirmed">ዙልሂጃህ</month>
- </monthWidth>
- </monthContext>
- </months>
- </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>+HHmm;-HHmm</hourFormat>
- <gmtFormat>ጂ ኤም ቲ{0}</gmtFormat>
- <gmtZeroFormat>ጂ ኤም ቲ</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">
- <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">
- <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="Anadyr">
- <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="Kamchatka">
- <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="Samara">
- <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>ethi</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>
- <currencyFormat type="accounting">
- <pattern>¤#,##0.00;(¤#,##0.00)</pattern>
- </currencyFormat>
- </currencyFormatLength>
- <unitPattern count="one">{0} {1}</unitPattern>
- <unitPattern count="other">{0} {1}</unitPattern>
- </currencyFormats>
- <currencies>
- <currency type="AED">
- <displayName>የተባበሩት የአረብ ኤምረትስ ዲርሀም</displayName>
- <displayName count="one">የተባበሩት የአረብ ኤምረትስ ዲርሀም</displayName>
- <displayName count="other">የተባበሩት የአረብ ኤምረትስ ዲርሀም</displayName>
- </currency>
- <currency type="AFN">
- <displayName>የአፍጋን አፍጋኒ</displayName>
- <displayName count="one">የአፍጋን አፍጋኒ</displayName>
- <displayName count="other">የአፍጋን አፍጋኒ</displayName>
- </currency>
- <currency type="ALL">
- <displayName>የአልባንያ ሌክ</displayName>
- <displayName count="one">የአልባንያ ሌክ</displayName>
- <displayName count="other">የአልባንያ ሌክ</displayName>
- </currency>
- <currency type="AMD">
- <displayName>የአርመን ድራም</displayName>
- <displayName count="one">የአርመን ድራም</displayName>
- <displayName count="other">የአርመን ድራም</displayName>
- </currency>
- <currency type="ANG">
- <displayName>ኔዘርላንድስ አንቲሊአን ጊልደር</displayName>
- </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>AU$</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>
- </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>
- <symbol>ብር</symbol>
- </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="GHC">
- <displayName>የጋና ሴዲ</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="LSL">
- <displayName>የሌሶቶ ሎቲ</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="SDP">
- <displayName>የሱዳን ፓውንድ</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>
- </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>US$</symbol>
- </currency>
- <currency type="UYU">
- <displayName>የኡራጓይ ፔሶ</displayName>
- <displayName count="one">የኡራጓይ ፔሶ</displayName>
- <displayName count="other">የኡራጓይ ፔሶ</displayName>
- </currency>
- <currency type="UZS">
- <displayName>የኡዝፔኪስታን ሶም</displayName>
- <displayName count="one">የኡዝፔኪስታን ሶም</displayName>
- <displayName count="other">የኡዝፔኪስታን ሶም</displayName>
- </currency>
- <currency type="VEF">
- <displayName>የቬንዝዌላ ቦሊቫር</displayName>
- <displayName count="one">የቬንዝዌላ ቦሊቫር</displayName>
- <displayName count="other">የቬንዝዌላ ቦሊቫር</displayName>
- </currency>
- <currency type="VND">
- <displayName>የቭየትናም ዶንግ</displayName>
- <displayName count="one">የቭየትናም ዶንግ</displayName>
- <displayName count="other">የቭየትናም ዶንግ</displayName>
- <symbol>₫</symbol>
- </currency>
- <currency type="VUV">
- <displayName>የቫንዋንቱ ቫቱ</displayName>
- <displayName count="one">የቫንዋንቱ ቫቱ</displayName>
- <displayName count="other">የቫንዋንቱ ቫቱ</displayName>
- </currency>
- <currency type="WST">
- <displayName>ሳሞአን ታላ</displayName>
- </currency>
- <currency type="XAF">
- <displayName>ሴኤፍአ ፍራንክ ቤእአሴ</displayName>
- <displayName count="one">ሴኤፍአ ፍራንክ ቤእአሴ</displayName>
- <displayName count="other">ሴኤፍአ ፍራንክ ቤእአሴ</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>ሴኤፍአ ፍራንክ ቤሴእአኦ</displayName>
- <displayName count="one">ሴኤፍአ ፍራንክ ቤሴእአኦ</displayName>
- <displayName count="other">ሴኤፍአ ፍራንክ ቤሴእአኦ</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>
- </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>
- <currency type="ZWD">
- <displayName>የዚምቧቡዌ ዶላር</displayName>
- </currency>
- </currencies>
- <miscPatterns numberSystem="latn">
- <pattern type="atLeast">{0}+</pattern>
- <pattern type="range">{0}–{1}</pattern>
- </miscPatterns>
- </numbers>
- <units>
- <unitLength type="long">
- <compoundUnit type="per">
- <compoundUnitPattern>{0} በ{1}</compoundUnitPattern>
- </compoundUnit>
- <unit type="acceleration-g-force">
- <unitPattern count="one">{0} ጂ-ኃይል</unitPattern>
- <unitPattern count="other">{0} ጂ-ኃይል</unitPattern>
- </unit>
- <unit type="angle-arc-minute">
- <unitPattern count="one">{0} ደቂቃ</unitPattern>
- <unitPattern count="other">{0} ደቂቃ</unitPattern>
- </unit>
- <unit type="angle-arc-second">
- <unitPattern count="one">{0} ሰከንድ</unitPattern>
- <unitPattern count="other">{0} ሰከንድ</unitPattern>
- </unit>
- <unit type="angle-degree">
- <unitPattern count="one">{0} ዲግሪ</unitPattern>
- <unitPattern count="other">{0} ዲግሪ</unitPattern>
- </unit>
- <unit type="area-acre">
- <unitPattern count="one">{0} ኤክር</unitPattern>
- <unitPattern count="other">{0} ኤክር</unitPattern>
- </unit>
- <unit type="area-hectare">
- <unitPattern count="one">{0} ሄክታር</unitPattern>
- <unitPattern count="other">{0} ሄክታር</unitPattern>
- </unit>
- <unit type="area-square-foot">
- <unitPattern count="one">{0} ካሬ ጫማ</unitPattern>
- <unitPattern count="other">{0} ካሬ ጫማ</unitPattern>
- </unit>
- <unit type="area-square-kilometer">
- <unitPattern count="one">{0} ካሬ ኪሎሜትር</unitPattern>
- <unitPattern count="other">{0} ካሬ ኪሎሜትር</unitPattern>
- </unit>
- <unit type="area-square-meter">
- <unitPattern count="one">{0} ካሬ ሜትር</unitPattern>
- <unitPattern count="other">{0} ካሬ ሜትር</unitPattern>
- </unit>
- <unit type="area-square-mile">
- <unitPattern count="one">{0} ካሬ ማይል</unitPattern>
- <unitPattern count="other">{0} ካሬ ማይል</unitPattern>
- </unit>
- <unit type="duration-day">
- <unitPattern count="one">{0} ቀናት</unitPattern>
- <unitPattern count="other">{0} ቀናት</unitPattern>
- </unit>
- <unit type="duration-hour">
- <unitPattern count="one">{0} ሰዓት</unitPattern>
- <unitPattern count="other">{0} ሰዓቶች</unitPattern>
- </unit>
- <unit type="duration-millisecond">
- <unitPattern count="one">{0} ሚሊሰከንድ</unitPattern>
- <unitPattern count="other">{0} ሚሊሰከንድ</unitPattern>
- </unit>
- <unit type="duration-minute">
- <unitPattern count="one">{0} ደቂቃ</unitPattern>
- <unitPattern count="other">{0} ደቂቃዎች</unitPattern>
- </unit>
- <unit type="duration-month">
- <unitPattern count="one">{0} ወር</unitPattern>
- <unitPattern count="other">{0} ወራት</unitPattern>
- </unit>
- <unit type="duration-second">
- <unitPattern count="one">{0} ሰከንድ</unitPattern>
- <unitPattern count="other">{0} ሰከንዶች</unitPattern>
- </unit>
- <unit type="duration-week">
- <unitPattern count="one">{0} ሳምንት</unitPattern>
- <unitPattern count="other">{0} ሳምንታት</unitPattern>
- </unit>
- <unit type="duration-year">
- <unitPattern count="one">{0} ዓመታት</unitPattern>
- <unitPattern count="other">{0} ዓመታት</unitPattern>
- </unit>
- <unit type="length-centimeter">
- <unitPattern count="one">{0} ሴንቲሜትር</unitPattern>
- <unitPattern count="other">{0} ሴንቲሜትር</unitPattern>
- </unit>
- <unit type="length-foot">
- <unitPattern count="one">{0} ጫማ</unitPattern>
- <unitPattern count="other">{0} ጫማ</unitPattern>
- </unit>
- <unit type="length-inch">
- <unitPattern count="one">{0} ኢንች</unitPattern>
- <unitPattern count="other">{0} ኢንች</unitPattern>
- </unit>
- <unit type="length-kilometer">
- <unitPattern count="one">{0} ኪሎሜትር</unitPattern>
- <unitPattern count="other">{0} ኪሎሜትር</unitPattern>
- </unit>
- <unit type="length-light-year">
- <unitPattern count="one">{0} የብርሃን ዓመት</unitPattern>
- <unitPattern count="other">{0} የብርሃን ዓመት</unitPattern>
- </unit>
- <unit type="length-meter">
- <unitPattern count="one">{0} ሜትር</unitPattern>
- <unitPattern count="other">{0} ሜትር</unitPattern>
- </unit>
- <unit type="length-mile">
- <unitPattern count="one">{0} ማይል</unitPattern>
- <unitPattern count="other">{0} ማይል</unitPattern>
- </unit>
- <unit type="length-millimeter">
- <unitPattern count="one">{0} ሚሊሜትር</unitPattern>
- <unitPattern count="other">{0} ሚሊሜትር</unitPattern>
- </unit>
- <unit type="length-picometer">
- <unitPattern count="one">{0} ፒኮሜትር</unitPattern>
- <unitPattern count="other">{0} ፒኮሜትር</unitPattern>
- </unit>
- <unit type="length-yard">
- <unitPattern count="one">{0} ያርድ</unitPattern>
- <unitPattern count="other">{0} ያርድ</unitPattern>
- </unit>
- <unit type="mass-gram">
- <unitPattern count="one">{0} ግራም</unitPattern>
- <unitPattern count="other">{0} ግራም</unitPattern>
- </unit>
- <unit type="mass-kilogram">
- <unitPattern count="one">{0} ኪሎግራም</unitPattern>
- <unitPattern count="other">{0} ኪሎግራም</unitPattern>
- </unit>
- <unit type="mass-ounce">
- <unitPattern count="one">{0} አውንስ</unitPattern>
- <unitPattern count="other">{0} አውንስ</unitPattern>
- </unit>
- <unit type="mass-pound">
- <unitPattern count="one">{0} ፓውንድ</unitPattern>
- <unitPattern count="other">{0} ፓውንድ</unitPattern>
- </unit>
- <unit type="power-horsepower">
- <unitPattern count="one">{0} የፈረስ ኃይል</unitPattern>
- <unitPattern count="other">{0} የፈረስ ኃይል</unitPattern>
- </unit>
- <unit type="power-kilowatt">
- <unitPattern count="one">{0} ኪሎዋት</unitPattern>
- <unitPattern count="other">{0} ኪሎዋት</unitPattern>
- </unit>
- <unit type="power-watt">
- <unitPattern count="one">{0} ዋት</unitPattern>
- <unitPattern count="other">{0} ዋት</unitPattern>
- </unit>
- <unit type="pressure-hectopascal">
- <unitPattern count="one">{0} ሄክቶፓስካል</unitPattern>
- <unitPattern count="other">{0} ሄክቶፓስካል</unitPattern>
- </unit>
- <unit type="pressure-inch-hg">
- <unitPattern count="one">{0} ኢንች ሜርኩሪ</unitPattern>
- <unitPattern count="other">{0} ኢንች ሜርኩሪ</unitPattern>
- </unit>
- <unit type="pressure-millibar">
- <unitPattern count="one">{0} ሚሊባር</unitPattern>
- <unitPattern count="other">{0} ሚሊባር</unitPattern>
- </unit>
- <unit type="speed-kilometer-per-hour">
- <unitPattern count="one">{0} ኪሎሜትር በሰዓት</unitPattern>
- <unitPattern count="other">{0} ኪሎሜትር በሰዓት</unitPattern>
- </unit>
- <unit type="speed-meter-per-second">
- <unitPattern count="one">{0} ሜትር በሰከንድ</unitPattern>
- <unitPattern count="other">{0} ሜትር በሰከንድ</unitPattern>
- </unit>
- <unit type="speed-mile-per-hour">
- <unitPattern count="one">{0} ማይል በሰዓት</unitPattern>
- <unitPattern count="other">{0} ማይል በሰዓት</unitPattern>
- </unit>
- <unit type="temperature-celsius">
- <unitPattern count="one">{0} ዲግሪ ሴልሺየስ</unitPattern>
- <unitPattern count="other">{0} ዲግሪ ሴልሺየስ</unitPattern>
- </unit>
- <unit type="temperature-fahrenheit">
- <unitPattern count="one">{0} ዲግሪ ፋራንሃይት</unitPattern>
- <unitPattern count="other">{0} ዲግሪ ፋራንሃይት</unitPattern>
- </unit>
- <unit type="volume-cubic-kilometer">
- <unitPattern count="one">{0} ኩቢክ ኪሎሜትር</unitPattern>
- <unitPattern count="other">{0} ኩቢክ ኪሎሜትር</unitPattern>
- </unit>
- <unit type="volume-cubic-mile">
- <unitPattern count="one">{0} ኩቢክ ማይል</unitPattern>
- <unitPattern count="other">{0} ኩቢክ ማይል</unitPattern>
- </unit>
- <unit type="volume-liter">
- <unitPattern count="one">{0} ሊትር</unitPattern>
- <unitPattern count="other">{0} ሊትር</unitPattern>
- </unit>
- </unitLength>
- <unitLength type="short">
- <compoundUnit type="per">
- <compoundUnitPattern>{0}/{1}</compoundUnitPattern>
- </compoundUnit>
- <unit type="acceleration-g-force">
- <unitPattern count="one">{0} ጂ</unitPattern>
- <unitPattern count="other">{0} ጂ</unitPattern>
- </unit>
- <unit type="angle-arc-minute">
- <unitPattern count="one">{0} ደቂቃ</unitPattern>
- <unitPattern count="other">{0} ደቂቃ</unitPattern>
- </unit>
- <unit type="angle-arc-second">
- <unitPattern count="one">{0} ሰከንድ</unitPattern>
- <unitPattern count="other">{0} ሰከንድ</unitPattern>
- </unit>
- <unit type="angle-degree">
- <unitPattern count="one">{0}°ዲግሪ</unitPattern>
- <unitPattern count="other">{0}°ዲግሪ</unitPattern>
- </unit>
- <unit type="area-acre">
- <unitPattern count="one">{0} ኤክር</unitPattern>
- <unitPattern count="other">{0} ኤክር</unitPattern>
- </unit>
- <unit type="area-hectare">
- <unitPattern count="one">{0} ሄክታር</unitPattern>
- <unitPattern count="other">{0} ሄክታር</unitPattern>
- </unit>
- <unit type="area-square-foot">
- <unitPattern count="one">{0} ካሬ ጫማ</unitPattern>
- <unitPattern count="other">{0} ካሬ ጫማ</unitPattern>
- </unit>
- <unit type="area-square-kilometer">
- <unitPattern count="one">{0} ኪሜ²</unitPattern>
- <unitPattern count="other">{0} ኪሜ²</unitPattern>
- </unit>
- <unit type="area-square-meter">
- <unitPattern count="one">{0} ሜ²</unitPattern>
- <unitPattern count="other">{0} ሜ²</unitPattern>
- </unit>
- <unit type="area-square-mile">
- <unitPattern count="one">{0} ካሬ ማይል</unitPattern>
- <unitPattern count="other">{0} ካሬ ማይል</unitPattern>
- </unit>
- <unit type="duration-day">
- <unitPattern count="one">{0} ቀናት</unitPattern>
- <unitPattern count="other">{0} ቀናት</unitPattern>
- </unit>
- <unit type="duration-hour">
- <unitPattern count="one">{0} ሰዓ</unitPattern>
- <unitPattern count="other">{0} ሰዓ</unitPattern>
- </unit>
- <unit type="duration-millisecond">
- <unitPattern count="one">{0} ሚሴ</unitPattern>
- <unitPattern count="other">{0} ሚሴ</unitPattern>
- </unit>
- <unit type="duration-minute">
- <unitPattern count="one">{0} ደቂ</unitPattern>
- <unitPattern count="other">{0} ደቂቃ</unitPattern>
- </unit>
- <unit type="duration-month">
- <unitPattern count="one">{0} ወራት</unitPattern>
- <unitPattern count="other">{0} ወራት</unitPattern>
- </unit>
- <unit type="duration-second">
- <unitPattern count="one">{0} ሰከ</unitPattern>
- <unitPattern count="other">{0} ሰከ</unitPattern>
- </unit>
- <unit type="duration-week">
- <unitPattern count="one">{0} ሳምንት</unitPattern>
- <unitPattern count="other">{0} ሳምንታት</unitPattern>
- </unit>
- <unit type="duration-year">
- <unitPattern count="one">{0} ዓመት</unitPattern>
- <unitPattern count="other">{0} ዓመታት</unitPattern>
- </unit>
- <unit type="length-centimeter">
- <unitPattern count="one">{0} ሴሜ</unitPattern>
- <unitPattern count="other">{0} ሴሜ</unitPattern>
- </unit>
- <unit type="length-foot">
- <unitPattern count="one">{0} ጫማ</unitPattern>
- <unitPattern count="other">{0} ጫማ</unitPattern>
- </unit>
- <unit type="length-inch">
- <unitPattern count="one">{0} ኢንች</unitPattern>
- <unitPattern count="other">{0} ኢንች</unitPattern>
- </unit>
- <unit type="length-kilometer">
- <unitPattern count="one">{0} ኪሜ</unitPattern>
- <unitPattern count="other">{0} ኪሜ</unitPattern>
- </unit>
- <unit type="length-light-year">
- <unitPattern count="one">{0} ly</unitPattern>
- <unitPattern count="other">{0} ly</unitPattern>
- </unit>
- <unit type="length-meter">
- <unitPattern count="one">{0} ሜ</unitPattern>
- <unitPattern count="other">{0} ሜ</unitPattern>
- </unit>
- <unit type="length-mile">
- <unitPattern count="one">{0} ማይል</unitPattern>
- <unitPattern count="other">{0} ማይል</unitPattern>
- </unit>
- <unit type="length-millimeter">
- <unitPattern count="one">{0} ሚሜ</unitPattern>
- <unitPattern count="other">{0} ሚሜ</unitPattern>
- </unit>
- <unit type="length-picometer">
- <unitPattern count="one">{0} ፒሜ</unitPattern>
- <unitPattern count="other">{0} ፒሜ</unitPattern>
- </unit>
- <unit type="length-yard">
- <unitPattern count="one">{0} ያርድ</unitPattern>
- <unitPattern count="other">{0} ያርድ</unitPattern>
- </unit>
- <unit type="mass-gram">
- <unitPattern count="one">{0} ግ</unitPattern>
- <unitPattern count="other">{0} ግ</unitPattern>
- </unit>
- <unit type="mass-kilogram">
- <unitPattern count="one">{0} ኪግ</unitPattern>
- <unitPattern count="other">{0} ኪግ</unitPattern>
- </unit>
- <unit type="mass-ounce">
- <unitPattern count="one">{0} አውንስ</unitPattern>
- <unitPattern count="other">{0} አውንስ</unitPattern>
- </unit>
- <unit type="mass-pound">
- <unitPattern count="one">{0} ፓውንድ</unitPattern>
- <unitPattern count="other">{0} ፓውንድ</unitPattern>
- </unit>
- <unit type="power-horsepower">
- <unitPattern count="one">{0} የፈረስ ኃይል</unitPattern>
- <unitPattern count="other">{0} የፈረስ ኃይል</unitPattern>
- </unit>
- <unit type="power-kilowatt">
- <unitPattern count="one">{0} ኪዋ</unitPattern>
- <unitPattern count="other">{0} ኪዋ</unitPattern>
- </unit>
- <unit type="power-watt">
- <unitPattern count="one">{0} ዋ</unitPattern>
- <unitPattern count="other">{0} ዋ</unitPattern>
- </unit>
- <unit type="pressure-hectopascal">
- <unitPattern count="one">{0} ሄክቶፓስካል</unitPattern>
- <unitPattern count="other">{0} ሄክቶፓስካል</unitPattern>
- </unit>
- <unit type="pressure-inch-hg">
- <unitPattern count="one">{0} ኢንች ሜርኩሪ</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="narrow">
- <compoundUnit type="per">
- <compoundUnitPattern>{0}/{1}</compoundUnitPattern>
- </compoundUnit>
- <unit type="acceleration-g-force">
- <unitPattern count="one">{0} ጂ</unitPattern>
- <unitPattern count="other">{0} ጂ</unitPattern>
- </unit>
- <unit type="angle-arc-minute">
- <unitPattern count="one">{0}′</unitPattern>
- <unitPattern count="other">{0}′</unitPattern>
- </unit>
- <unit type="angle-arc-second">
- <unitPattern count="one">{0}″</unitPattern>
- <unitPattern count="other">{0}″</unitPattern>
- </unit>
- <unit type="angle-degree">
- <unitPattern count="one">{0}°</unitPattern>
- <unitPattern count="other">{0}°</unitPattern>
- </unit>
- <unit type="area-acre">
- <unitPattern count="one">{0} ኤክር</unitPattern>
- <unitPattern count="other">{0} ኤክር</unitPattern>
- </unit>
- <unit type="area-hectare">
- <unitPattern count="one">{0} ሄክታር</unitPattern>
- <unitPattern count="other">{0} ሄክታር</unitPattern>
- </unit>
- <unit type="area-square-foot">
- <unitPattern count="one">{0} ጫማ²</unitPattern>
- <unitPattern count="other">{0} ጫማ²</unitPattern>
- </unit>
- <unit type="area-square-kilometer">
- <unitPattern count="one">{0} ኪሜ²</unitPattern>
- <unitPattern count="other">{0} ኪሜ²</unitPattern>
- </unit>
- <unit type="area-square-meter">
- <unitPattern count="one">{0} ሜ²</unitPattern>
- <unitPattern count="other">{0} ሜ²</unitPattern>
- </unit>
- <unit type="area-square-mile">
- <unitPattern count="one">{0} ማይል²</unitPattern>
- <unitPattern count="other">{0} ማይል²</unitPattern>
- </unit>
- <unit type="duration-day">
- <unitPattern count="one">{0} ቀ</unitPattern>
- <unitPattern count="other">{0} ቀ</unitPattern>
- </unit>
- <unit type="duration-hour">
- <unitPattern count="one">{0} ሰ</unitPattern>
- <unitPattern count="other">{0} ሰ</unitPattern>
- </unit>
- <unit type="duration-millisecond">
- <unitPattern count="one">{0} ሚሴ</unitPattern>
- <unitPattern count="other">{0} ሚሴ</unitPattern>
- </unit>
- <unit type="duration-minute">
- <unitPattern count="one">{0} ደ</unitPattern>
- <unitPattern count="other">{0} ደ</unitPattern>
- </unit>
- <unit type="duration-month">
- <unitPattern count="one">{0} ወር</unitPattern>
- <unitPattern count="other">{0} ወር</unitPattern>
- </unit>
- <unit type="duration-second">
- <unitPattern count="one">{0} ሴ</unitPattern>
- <unitPattern count="other">{0} ሴ</unitPattern>
- </unit>
- <unit type="duration-week">
- <unitPattern count="one">{0} ሳምንት</unitPattern>
- <unitPattern count="other">{0} ሳምንት</unitPattern>
- </unit>
- <unit type="duration-year">
- <unitPattern count="one">{0} ዓመት</unitPattern>
- <unitPattern count="other">{0} y</unitPattern>
- </unit>
- <unit type="length-centimeter">
- <unitPattern count="one">{0} ሴሜ</unitPattern>
- <unitPattern count="other">{0} ሴሜ</unitPattern>
- </unit>
- <unit type="length-foot">
- <unitPattern count="one">{0} ጫማ</unitPattern>
- <unitPattern count="other">{0} ጫማ</unitPattern>
- </unit>
- <unit type="length-inch">
- <unitPattern count="one">{0} ኢንች</unitPattern>
- <unitPattern count="other">{0} ኢንች</unitPattern>
- </unit>
- <unit type="length-kilometer">
- <unitPattern count="one">{0} ኪሜ</unitPattern>
- <unitPattern count="other">{0} ኪሜ</unitPattern>
- </unit>
- <unit type="length-light-year">
- <unitPattern count="one">{0} ly</unitPattern>
- <unitPattern count="other">{0} ly</unitPattern>
- </unit>
- <unit type="length-meter">
- <unitPattern count="one">{0} ሜ</unitPattern>
- <unitPattern count="other">{0} ሜ</unitPattern>
- </unit>
- <unit type="length-mile">
- <unitPattern count="one">{0} ማይል</unitPattern>
- <unitPattern count="other">{0} ማይል</unitPattern>
- </unit>
- <unit type="length-millimeter">
- <unitPattern count="one">{0} ሚሜ</unitPattern>
- <unitPattern count="other">{0} ሚሜ</unitPattern>
- </unit>
- <unit type="length-picometer">
- <unitPattern count="one">{0} ፒሜ</unitPattern>
- <unitPattern count="other">{0} ፒሜ</unitPattern>
- </unit>
- <unit type="length-yard">
- <unitPattern count="one">{0} ያርድ</unitPattern>
- <unitPattern count="other">{0} ያርድ</unitPattern>
- </unit>
- <unit type="mass-gram">
- <unitPattern count="one">{0} ግ</unitPattern>
- <unitPattern count="other">{0} ግ</unitPattern>
- </unit>
- <unit type="mass-kilogram">
- <unitPattern count="one">{0} ኪግ</unitPattern>
- <unitPattern count="other">{0} ኪግ</unitPattern>
- </unit>
- <unit type="mass-ounce">
- <unitPattern count="one">{0} አውንስ</unitPattern>
- <unitPattern count="other">{0} አውንስ</unitPattern>
- </unit>
- <unit type="mass-pound">
- <unitPattern count="one">{0} ፓውንድ</unitPattern>
- <unitPattern count="other">{0} ፓውንድ</unitPattern>
- </unit>
- <unit type="power-horsepower">
- <unitPattern count="one">{0} የፈረስ ኃይል</unitPattern>
- <unitPattern count="other">{0} የፈረስ ኃይል</unitPattern>
- </unit>
- <unit type="power-kilowatt">
- <unitPattern count="one">{0} ኪዋ</unitPattern>
- <unitPattern count="other">{0} ኪዋ</unitPattern>
- </unit>
- <unit type="power-watt">
- <unitPattern count="one">{0} ዋ</unitPattern>
- <unitPattern count="other">{0} ዋ</unitPattern>
- </unit>
- <unit type="pressure-hectopascal">
- <unitPattern count="one">{0} hPa</unitPattern>
- <unitPattern count="other">{0} hPa</unitPattern>
- </unit>
- <unit type="pressure-inch-hg">
- <unitPattern count="one">{0} inHg</unitPattern>
- <unitPattern count="other">{0} inHg</unitPattern>
- </unit>
- <unit type="pressure-millibar">
- <unitPattern count="one">{0} ሚባ</unitPattern>
- <unitPattern count="other">{0} ሚባ</unitPattern>
- </unit>
- <unit type="speed-kilometer-per-hour">
- <unitPattern count="one">{0} ኪሜ/ሰ</unitPattern>
- <unitPattern count="other">{0} ኪሜ/ሰ</unitPattern>
- </unit>
- <unit type="speed-meter-per-second">
- <unitPattern count="one">{0} ሜ/ሴ</unitPattern>
- <unitPattern count="other">{0} ሜ/ሴ</unitPattern>
- </unit>
- <unit type="speed-mile-per-hour">
- <unitPattern count="one">{0} ማይል/ሰ</unitPattern>
- <unitPattern count="other">{0} ማይል/ሰ</unitPattern>
- </unit>
- <unit type="temperature-celsius">
- <unitPattern count="one">{0}°</unitPattern>
- <unitPattern count="other">{0}°</unitPattern>
- </unit>
- <unit type="temperature-fahrenheit">
- <unitPattern count="one">{0}°ፋ</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>
- <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>
- </listPatterns>
- <posix>
- <messages>
- <yesstr>አዎን:ዎ</yesstr>
- <nostr>አይ:ይ</nostr>
- </messages>
- </posix>
- </ldml>
|