am.xml 213 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
  3. <!-- Copyright © 1991-2013 Unicode, Inc.
  4. CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
  5. For terms of use, see http://www.unicode.org/copyright.html
  6. -->
  7. <ldml>
  8. <identity>
  9. <version number="$Revision: 9876 $"/>
  10. <generation date="$Date: 2014-03-05 23:14:25 -0600 (Wed, 05 Mar 2014) $"/>
  11. <language type="am"/>
  12. </identity>
  13. <localeDisplayNames>
  14. <localeDisplayPattern>
  15. <localePattern>{0} ({1})</localePattern>
  16. <localeSeparator>{0},{1}</localeSeparator>
  17. <localeKeyTypePattern>{0}: {1}</localeKeyTypePattern>
  18. </localeDisplayPattern>
  19. <languages>
  20. <language type="aa">አፋርኛ</language>
  21. <language type="ab">አብሐዚኛ</language>
  22. <language type="ach">አኮሊኛ</language>
  23. <language type="af">አፍሪካንኛ</language>
  24. <language type="ak">አካንኛ</language>
  25. <language type="am">አማርኛ</language>
  26. <language type="ar">ዐርቢኛ</language>
  27. <language type="ar_001">ዘመናዊ መደበኛ አረብኛ</language>
  28. <language type="as">አሳሜዛዊ</language>
  29. <language type="ay">አያማርኛ</language>
  30. <language type="az">አዘርባጃንኛ</language>
  31. <language type="az" alt="short">አዜሪ</language>
  32. <language type="ba">ባስኪርኛ</language>
  33. <language type="be">ቤላራሻኛ</language>
  34. <language type="bem">ቤምባ</language>
  35. <language type="bg">ቡልጋሪኛ</language>
  36. <language type="bi">ቢስላምኛ</language>
  37. <language type="bn">ቤንጋሊኛ</language>
  38. <language type="bo">ቲቤታንኛ</language>
  39. <language type="br">ብሬቶንኛ</language>
  40. <language type="bs">ቦስኒያንኛ</language>
  41. <language type="byn">ብሊን</language>
  42. <language type="ca">ካታላንኛ</language>
  43. <language type="chr">ቼሮኬኛ</language>
  44. <language type="ckb">የሶራኒ ኩርድኛ</language>
  45. <language type="co">ኮርሲካኛ</language>
  46. <language type="cs">ቼክኛ</language>
  47. <language type="cy">ወልሽ</language>
  48. <language type="da">ዴኒሽ</language>
  49. <language type="de">ጀርመን</language>
  50. <language type="de_AT">የኦስትሪያ ጀርመን</language>
  51. <language type="de_CH">የስዊዝ ከፍተኛ ጀርመንኛ</language>
  52. <language type="dv">ዲቬህ</language>
  53. <language type="dz">ድዞንግኻኛ</language>
  54. <language type="ee">ኢዊ</language>
  55. <language type="efi">ኤፊክ</language>
  56. <language type="el">ግሪክኛ</language>
  57. <language type="en">እንግሊዝኛ</language>
  58. <language type="en_AU">የአውስትራሊያ እንግሊዝኛ</language>
  59. <language type="en_CA">የካናዳ እንግሊዝኛ</language>
  60. <language type="en_GB">የብሪቲሽ እንግሊዝኛ</language>
  61. <language type="en_GB" alt="short">የዩናይትድ ኪንግደም እንግሊዝኛ</language>
  62. <language type="en_US">የአሜሪካ እንግሊዝኛ</language>
  63. <language type="en_US" alt="short">የዩ ኤስ እንግሊዝኛ</language>
  64. <language type="eo">ኤስፐራንቶ</language>
  65. <language type="es">ስፓኒሽ</language>
  66. <language type="es_419">የላቲን አሜሪካ ስፓኒሽ</language>
  67. <language type="es_ES">የአውሮፓ እስፓንኛ</language>
  68. <language type="et">ኢስቶኒያንኛ</language>
  69. <language type="eu">ባስክኛ</language>
  70. <language type="fa">ፐርሺያኛ</language>
  71. <language type="fi">ፊኒሽ</language>
  72. <language type="fil">ፊሊፒንኛ</language>
  73. <language type="fj">ፊጂኛ</language>
  74. <language type="fo">ፋሮኛ</language>
  75. <language type="fr">ፈረንሳይኛ</language>
  76. <language type="fr_CA">የካናዳ ፈረንሳይኛ</language>
  77. <language type="fr_CH">የስዊዝ ፈረንሳይኛ</language>
  78. <language type="fy">የምዕራብ ፍሪስኛ</language>
  79. <language type="ga">አይሪሽ</language>
  80. <language type="gaa">ጋ</language>
  81. <language type="gd">እስኮትስ ጌልክኛ</language>
  82. <language type="gez">ግዕዝኛ</language>
  83. <language type="gl">ጌሊክ</language>
  84. <language type="gn">ጓራኒኛ</language>
  85. <language type="gsw">የስዊዝ ጀርመን</language>
  86. <language type="gu">ጉጃርቲኛ</language>
  87. <language type="ha">ሃውሳኛ</language>
  88. <language type="haw">ሃዊያኛ</language>
  89. <language type="he">ዕብራስጥ</language>
  90. <language type="hi">ሒንዱኛ</language>
  91. <language type="hr">ክሮሽያንኛ</language>
  92. <language type="ht">ሃይትኛ</language>
  93. <language type="hu">ሀንጋሪኛ</language>
  94. <language type="hy">አርመናዊ</language>
  95. <language type="ia">ኢንቴርሊንጓ</language>
  96. <language type="id">ኢንዶኔዥኛ</language>
  97. <language type="ie">እንተርሊንግወ</language>
  98. <language type="ig">ኢግቦኛ</language>
  99. <language type="ik">እኑፒያቅኛ</language>
  100. <language type="is">አይስላንድኛ</language>
  101. <language type="it">ጣሊያንኛ</language>
  102. <language type="iu">እኑክቲቱትኛ</language>
  103. <language type="ja">ጃፓንኛ</language>
  104. <language type="jv">ጃቫንኛ</language>
  105. <language type="ka">ጆርጂያን</language>
  106. <language type="kg">ኮንጎኛ</language>
  107. <language type="kk">ካዛክኛ</language>
  108. <language type="kl">ካላሊሱትኛ</language>
  109. <language type="km">ክመርኛ ማእከላዊ</language>
  110. <language type="kn">ካናዳኛ</language>
  111. <language type="ko">ኮሪያኛ</language>
  112. <language type="ks">ካሽሚርኛ</language>
  113. <language type="ku">ኩርድሽኛ</language>
  114. <language type="ky">ኪርጊዝኛ</language>
  115. <language type="la">ላቲንኛ</language>
  116. <language type="lb">ሉክዘምበርገርኛ</language>
  117. <language type="lg">ጋንዳኛ</language>
  118. <language type="ln">ሊንጋላኛ</language>
  119. <language type="lo">ላውስኛ</language>
  120. <language type="loz">ሎዚኛ</language>
  121. <language type="lt">ሉቴንያንኛ</language>
  122. <language type="lua">ሉባ-ሉሏ</language>
  123. <language type="lv">ላትቪያን</language>
  124. <language type="mfe">ሞሪሲየኛ</language>
  125. <language type="mg">ማላጋስኛ</language>
  126. <language type="mi">ማዮሪኛ</language>
  127. <language type="mk">ማሴዶንኛ</language>
  128. <language type="ml">ማላያላምኛ</language>
  129. <language type="mn">ሞንጎላዊኛ</language>
  130. <language type="mr">ማራቲኛ</language>
  131. <language type="ms">ማላይኛ</language>
  132. <language type="mt">ማልቲስኛ</language>
  133. <language type="my">ቡርማኛ</language>
  134. <language type="na">ናኡሩ</language>
  135. <language type="nb">የኖርዌይ ቦክማል</language>
  136. <language type="nd">ሰሜን ንዴብሌ</language>
  137. <language type="ne">ኔፓሊኛ</language>
  138. <language type="nl">ደች</language>
  139. <language type="nl_BE">ፍሌሚሽ</language>
  140. <language type="nn">የኖርዌይ ናይኖርስክ</language>
  141. <language type="no">ኖርዌጂያን</language>
  142. <language type="nso">ሰሜናዊ ሶቶ</language>
  143. <language type="ny">ንያንጃ</language>
  144. <language type="nyn">ኒያንኮልኛ</language>
  145. <language type="oc">ኦኪታንኛ</language>
  146. <language type="om">ኦሮሞኛ</language>
  147. <language type="or">ኦሪያኛ</language>
  148. <language type="os">ኦሴቲክ</language>
  149. <language type="pa">ፑንጃብኛ</language>
  150. <language type="pl">ፖሊሽኛ</language>
  151. <language type="ps">ፓሽቶኛ</language>
  152. <language type="ps" alt="variant">ፑሽቶ</language>
  153. <language type="pt">ፖርቹጋልኛ</language>
  154. <language type="pt_BR">የብራዚል ፖርቹጋልኛ</language>
  155. <language type="pt_PT">የአውሮፓ ፖርቹጋልኛ</language>
  156. <language type="qu">ኵቿኛ</language>
  157. <language type="rm">ሮማንሽ</language>
  158. <language type="rn">ሩንዲኛ</language>
  159. <language type="ro">ሮማኒያን</language>
  160. <language type="ro_MD">ሞልዳቫዊና</language>
  161. <language type="ru">ራሽኛ</language>
  162. <language type="rw">ኪንያርዋንድኛ</language>
  163. <language type="sa">ሳንስክሪትኛ</language>
  164. <language type="sd">ሲንድሂኛ</language>
  165. <language type="se">ሰሜናዊ ሳሚ</language>
  166. <language type="sg">ሳንጎኛ</language>
  167. <language type="sh" draft="unconfirmed">ሰርቦ-ክሮኤሽያኛ</language>
  168. <language type="si">ሲንሃልኛ</language>
  169. <language type="sid">ሲዳምኛ</language>
  170. <language type="sk">ስሎቫክኛ</language>
  171. <language type="sl">ስሎቪኛ</language>
  172. <language type="sm">ሳሞአኛ</language>
  173. <language type="sn">ሾናኛ</language>
  174. <language type="so">ሱማልኛ</language>
  175. <language type="sq">ልቤኒኛ</language>
  176. <language type="sr">ሰርቢኛ</language>
  177. <language type="ss">ስዋቲኛ</language>
  178. <language type="st">ሶዞኛ</language>
  179. <language type="su">ሱዳንኛ</language>
  180. <language type="sv">ስዊድንኛ</language>
  181. <language type="sw">ስዋሂሊኛ</language>
  182. <language type="ta">ታሚልኛ</language>
  183. <language type="te">ተሉጉኛ</language>
  184. <language type="tet">ቴተም</language>
  185. <language type="tg">ታጂኪኛ</language>
  186. <language type="th">ታይኛ</language>
  187. <language type="ti">ትግርኛ</language>
  188. <language type="tig">ትግረ</language>
  189. <language type="tk">ቱርክመንኛ</language>
  190. <language type="tl">ታጋሎገኛ</language>
  191. <language type="tlh">ክሊንጎንኛ</language>
  192. <language type="tn">ጽዋናዊኛ</language>
  193. <language type="to">ቶንጋኛ</language>
  194. <language type="tpi">ቶክ ፒሲን</language>
  195. <language type="tr">ቱርክኛ</language>
  196. <language type="ts">ጾንጋኛ</language>
  197. <language type="tt">ታታርኛ</language>
  198. <language type="tum">ቱምቡካ</language>
  199. <language type="tw">ትዊኛ</language>
  200. <language type="ty">ታሂታንኛ</language>
  201. <language type="ug">ኡዊግሁርኛ</language>
  202. <language type="ug" alt="variant">ኡይገር</language>
  203. <language type="uk">ዩክሬንኛ</language>
  204. <language type="und">ያልታወቀ ቋንቋ</language>
  205. <language type="ur">ኡርዱኛ</language>
  206. <language type="uz">ኡዝቤክኛ</language>
  207. <language type="ve">ቬንዳ</language>
  208. <language type="vi">ቪትናምኛ</language>
  209. <language type="vo">ቮላፑክኛ</language>
  210. <language type="wo">ዎሎፍኛ</language>
  211. <language type="xh">ዞሳኛ</language>
  212. <language type="yi">ይዲሽኛ</language>
  213. <language type="yo">ዮሩባዊኛ</language>
  214. <language type="za">ዡዋንግኛ</language>
  215. <language type="zgh">zgh</language>
  216. <language type="zh">ቻይንኛ</language>
  217. <language type="zh_Hans">ቀለል ያለ ቻይንኛ</language>
  218. <language type="zh_Hant">ባህላዊ ቻይንኛ</language>
  219. <language type="zu">ዙሉኛ</language>
  220. <language type="zxx">ቋንቋዊ ይዘት አይደለም</language>
  221. </languages>
  222. <scripts>
  223. <script type="Arab">ዓረብኛ</script>
  224. <script type="Arab" alt="variant">ፔርሶ - አረቢክ</script>
  225. <script type="Armn">አርሜንያዊ</script>
  226. <script type="Beng">ቤንጋሊ</script>
  227. <script type="Bopo">ቦፖሞፎ</script>
  228. <script type="Brai">ብሬይል</script>
  229. <script type="Buhd" draft="unconfirmed">ቡሂድ</script>
  230. <script type="Cans" draft="unconfirmed">የተዋሐዱ የካናዳ ጥንታዊ ምልክቶች</script>
  231. <script type="Cher" draft="unconfirmed">ቼሮኪ</script>
  232. <script type="Copt" draft="unconfirmed">ኮፕቲክ</script>
  233. <script type="Cprt" draft="unconfirmed">ሲፕሪኦት</script>
  234. <script type="Cyrl">ሲይሪልክ</script>
  235. <script type="Deva">ደቫንጋሪ</script>
  236. <script type="Dsrt" draft="unconfirmed">ዴዘረት</script>
  237. <script type="Ethi">ኢትዮፒክ</script>
  238. <script type="Geor">ጆርጂያዊ</script>
  239. <script type="Goth" draft="unconfirmed">ጐቲክ</script>
  240. <script type="Grek">ግሪክ</script>
  241. <script type="Gujr">ጉጃራቲ</script>
  242. <script type="Guru">ጉርሙኪ</script>
  243. <script type="Hang">ሐንጉል</script>
  244. <script type="Hani">ሃን</script>
  245. <script type="Hano" draft="unconfirmed">ሀኑኦ</script>
  246. <script type="Hans">ቀለል ያለ</script>
  247. <script type="Hans" alt="stand-alone">ቀለል ያለ ሃን</script>
  248. <script type="Hant">ባህላዊ</script>
  249. <script type="Hant" alt="stand-alone">ባህላዊ ሃን</script>
  250. <script type="Hebr">እብራይስጥ</script>
  251. <script type="Hira">ሂራጋና</script>
  252. <script type="Hrkt" draft="unconfirmed">ካታካና ወይንም ሂራጋና</script>
  253. <script type="Jpan">ጃፓንኛ</script>
  254. <script type="Kana">ካታካና</script>
  255. <script type="Khmr">ክህመር</script>
  256. <script type="Knda">ካንአዳ</script>
  257. <script type="Kore">ኮሪያኛ</script>
  258. <script type="Laoo">ላኦ</script>
  259. <script type="Latn">ላቲን</script>
  260. <script type="Limb" draft="unconfirmed">ሊምቡ</script>
  261. <script type="Lina" draft="unconfirmed">ሊኒያር ኤ</script>
  262. <script type="Linb" draft="unconfirmed">ሊኒያር ቢ</script>
  263. <script type="Mlym">ማላያልም</script>
  264. <script type="Mong">ሞንጎሊያዊ</script>
  265. <script type="Mymr">ምያንማር</script>
  266. <script type="Ogam" draft="unconfirmed">ኦግሀም</script>
  267. <script type="Orya">ኦሪያ</script>
  268. <script type="Osma" draft="unconfirmed">ኦስማኒያ</script>
  269. <script type="Runr" draft="unconfirmed">ሩኒክ</script>
  270. <script type="Shaw" draft="unconfirmed">የሻቪያ ፊደል</script>
  271. <script type="Sinh">ሲንሃላ</script>
  272. <script type="Syrc" draft="unconfirmed">ሲሪክ</script>
  273. <script type="Tagb" draft="unconfirmed">ትአግባንዋ</script>
  274. <script type="Tale" draft="unconfirmed">ታኢ ለ</script>
  275. <script type="Talu" draft="unconfirmed">አዲስ ታኢ ሉ</script>
  276. <script type="Taml">ታሚል</script>
  277. <script type="Telu">ተልጉ</script>
  278. <script type="Tglg" draft="unconfirmed">ታጋሎግ</script>
  279. <script type="Thaa">ታና</script>
  280. <script type="Thai">ታይ</script>
  281. <script type="Tibt">ቲቤታን</script>
  282. <script type="Ugar" draft="unconfirmed">ኡጋሪቲክ</script>
  283. <script type="Vaii" draft="unconfirmed">ቫይ</script>
  284. <script type="Yiii" draft="unconfirmed">ዪ</script>
  285. <script type="Zinh" draft="unconfirmed">የተወረሰ</script>
  286. <script type="Zsym">ምልክቶች</script>
  287. <script type="Zxxx">ያልተጻፈ</script>
  288. <script type="Zyyy">የጋራ</script>
  289. <script type="Zzzz">ያልታወቀ ስክሪፕት</script>
  290. </scripts>
  291. <territories>
  292. <territory type="001">ዓለም</territory>
  293. <territory type="002">አፍሪካ</territory>
  294. <territory type="003">ሰሜን አሜሪካ</territory>
  295. <territory type="005">ደቡብ አሜሪካ</territory>
  296. <territory type="009">ኦሽኒአ</territory>
  297. <territory type="011">ምስራቃዊ አፍሪካ</territory>
  298. <territory type="013">መካከለኛው አሜሪካ</territory>
  299. <territory type="014">ምዕራባዊ አፍሪካ</territory>
  300. <territory type="015">ሰሜናዊ አፍሪካ</territory>
  301. <territory type="017">መካከለኛው አፍሪካ</territory>
  302. <territory type="018">ደቡባዊ አፍሪካ</territory>
  303. <territory type="019">አሜሪካ</territory>
  304. <territory type="021">ሰሜናዊ አሜሪካ</territory>
  305. <territory type="029">ካሪቢያን</territory>
  306. <territory type="030">ምዕራባዊ እሲያ</territory>
  307. <territory type="034">ደቡባዊ እሲያ</territory>
  308. <territory type="035">ምዕራባዊ ደቡብ እሲያ</territory>
  309. <territory type="039">ደቡባዊ አውሮፓ</territory>
  310. <territory type="053">አውስትራሊያ</territory>
  311. <territory type="054">ሜላኔዥያ</territory>
  312. <territory type="057">የማይክሮኔዥያን ክልል</territory>
  313. <territory type="061">ፖሊኔዥያ</territory>
  314. <territory type="142">እሲያ</territory>
  315. <territory type="143">መካከለኛው እሲያ</territory>
  316. <territory type="145">ምስራቃዊ እሲያ</territory>
  317. <territory type="150">አውሮፓ</territory>
  318. <territory type="151">ምዕራባዊ አውሮፓ</territory>
  319. <territory type="154">ሰሜናዊ አውሮፓ</territory>
  320. <territory type="155">ምስራቃዊ አውሮፓ</territory>
  321. <territory type="419">ላቲን አሜሪካ</territory>
  322. <territory type="AC">አሴንሽን ደሴት</territory>
  323. <territory type="AD">አንዶራ</territory>
  324. <territory type="AE">የተባበሩት አረብ ኤምሬትስ</territory>
  325. <territory type="AF">አፍጋኒስታን</territory>
  326. <territory type="AG">አንቲጓ እና ባሩዳ</territory>
  327. <territory type="AI">አንጉኢላ</territory>
  328. <territory type="AL">አልባኒያ</territory>
  329. <territory type="AM">አርሜኒያ</territory>
  330. <territory type="AN">ኔዘርላንድስ አንቲልስ</territory>
  331. <territory type="AO">አንጐላ</territory>
  332. <territory type="AQ">አንታርክቲካ</territory>
  333. <territory type="AR">አርጀንቲና</territory>
  334. <territory type="AS">የአሜሪካ ሳሞአ</territory>
  335. <territory type="AT">ኦስትሪያ</territory>
  336. <territory type="AU">አውስትሬሊያ</territory>
  337. <territory type="AW">አሩባ</territory>
  338. <territory type="AX">የአላንድ ደሴቶች</territory>
  339. <territory type="AZ">አዘርባጃን</territory>
  340. <territory type="BA">ቦስኒያ እና ሄርዞጎቪኒያ</territory>
  341. <territory type="BB">ባርቤዶስ</territory>
  342. <territory type="BD">ባንግላዲሽ</territory>
  343. <territory type="BE">ቤልጄም</territory>
  344. <territory type="BF">ቡርኪና ፋሶ</territory>
  345. <territory type="BG">ቡልጌሪያ</territory>
  346. <territory type="BH">ባህሬን</territory>
  347. <territory type="BI">ብሩንዲ</territory>
  348. <territory type="BJ">ቤኒን</territory>
  349. <territory type="BL">ቅዱስ በርቴሎሜ</territory>
  350. <territory type="BM">ቤርሙዳ</territory>
  351. <territory type="BN">ብሩኒ</territory>
  352. <territory type="BO">ቦሊቪያ</territory>
  353. <territory type="BQ">የካሪቢያን ኔዘርላንድስ</territory>
  354. <territory type="BR">ብራዚል</territory>
  355. <territory type="BS">ባሃማስ</territory>
  356. <territory type="BT">ቡህታን</territory>
  357. <territory type="BV">ቡቬት ደሴት</territory>
  358. <territory type="BW">ቦትስዋና</territory>
  359. <territory type="BY">ቤላሩስ</territory>
  360. <territory type="BZ">ቤሊዘ</territory>
  361. <territory type="CA">ካናዳ</territory>
  362. <territory type="CC">ኮኮስ(ኬሊንግ) ደሴቶች</territory>
  363. <territory type="CD">ኮንጎ-ኪንሻሳ</territory>
  364. <territory type="CD" alt="variant">ኮንጎ (የዲሞክራቲክ ሪፐብሊክ ኮንጎ)</territory>
  365. <territory type="CF">የመካከለኛው አፍሪካ ሪፐብሊክ</territory>
  366. <territory type="CG">ኮንጎ ብራዛቪል</territory>
  367. <territory type="CG" alt="variant">ኮንጎ (ሪፐብሊክ)</territory>
  368. <territory type="CH">ስዊዘርላንድ</territory>
  369. <territory type="CI">ኮት ዲቯር</territory>
  370. <territory type="CI" alt="variant">አይቮሪኮስት</territory>
  371. <territory type="CK">ኩክ ደሴቶች</territory>
  372. <territory type="CL">ቺሊ</territory>
  373. <territory type="CM">ካሜሩን</territory>
  374. <territory type="CN">ቻይና</territory>
  375. <territory type="CO">ኮሎምቢያ</territory>
  376. <territory type="CP">ክሊፐርቶን ደሴት</territory>
  377. <territory type="CR">ኮስታ ሪካ</territory>
  378. <territory type="CU">ኩባ</territory>
  379. <territory type="CV">ኬፕ ቬርዴ</territory>
  380. <territory type="CW">ኩራሳዎ</territory>
  381. <territory type="CX">የገና ደሴት</territory>
  382. <territory type="CY">ሳይፕረስ</territory>
  383. <territory type="CZ">ቼክ ሪፑብሊክ</territory>
  384. <territory type="DE">ጀርመን</territory>
  385. <territory type="DG">ዲዬጎ ጋርሺያ</territory>
  386. <territory type="DJ">ጂቡቲ</territory>
  387. <territory type="DK">ዴንማርክ</territory>
  388. <territory type="DM">ዶሚኒካ</territory>
  389. <territory type="DO">ዶሚኒክ ሪፑብሊክ</territory>
  390. <territory type="DZ">አልጄሪያ</territory>
  391. <territory type="EA">ሴኡታና ሜሊላ</territory>
  392. <territory type="EC">ኢኳዶር</territory>
  393. <territory type="EE">ኤስቶኒያ</territory>
  394. <territory type="EG">ግብጽ</territory>
  395. <territory type="EH">ምዕራባዊ ሳህራ</territory>
  396. <territory type="ER">ኤርትራ</territory>
  397. <territory type="ES">ስፔን</territory>
  398. <territory type="ET">ኢትዮጵያ</territory>
  399. <territory type="EU">የአውሮፓ ህብረት</territory>
  400. <territory type="FI">ፊንላንድ</territory>
  401. <territory type="FJ">ፊጂ</territory>
  402. <territory type="FK">የፎልክላንድ ደሴቶች</territory>
  403. <territory type="FK" alt="variant">ፎክላንድ ደሴቶች (ኢስላስ ማልቪናስ)</territory>
  404. <territory type="FM">ሚክሮኔዢያ</territory>
  405. <territory type="FO">የፋሮ ደሴቶች</territory>
  406. <territory type="FR">ፈረንሳይ</territory>
  407. <territory type="GA">ጋቦን</territory>
  408. <territory type="GB">እንግሊዝ</territory>
  409. <territory type="GB" alt="short">ዩናይትድ ኪንግደም</territory>
  410. <territory type="GD">ግሬናዳ</territory>
  411. <territory type="GE">ጆርጂያ</territory>
  412. <territory type="GF">የፈረንሳይ ጉዊአና</territory>
  413. <territory type="GG">ጉርነሲ</territory>
  414. <territory type="GH">ጋና</territory>
  415. <territory type="GI">ጊብራልታር</territory>
  416. <territory type="GL">ግሪንላንድ</territory>
  417. <territory type="GM">ጋምቢያ</territory>
  418. <territory type="GN">ጊኒ</territory>
  419. <territory type="GP">ጉዋደሉፕ</territory>
  420. <territory type="GQ">ኢኳቶሪያል ጊኒ</territory>
  421. <territory type="GR">ግሪክ</territory>
  422. <territory type="GS">ደቡብ ጆርጂያ እና የደቡብ ሳንድዊች ደሴቶች</territory>
  423. <territory type="GT">ጉዋቲማላ</territory>
  424. <territory type="GU">ጉዋም</territory>
  425. <territory type="GW">ጊኒ ቢሳኦ</territory>
  426. <territory type="GY">ጉያና</territory>
  427. <territory type="HK">ሆንግ ኮንግ SAR ቻይና</territory>
  428. <territory type="HK" alt="short">ሆንግ ኮንግ</territory>
  429. <territory type="HM">ኽርድ ደሴቶችና ማክዶናልድ ደሴቶች</territory>
  430. <territory type="HN">ሆንዱራስ</territory>
  431. <territory type="HR">ክሮኤሽያ</territory>
  432. <territory type="HT">ሀይቲ</territory>
  433. <territory type="HU">ሀንጋሪ</territory>
  434. <territory type="IC">የካናሪ ደሴቶች</territory>
  435. <territory type="ID">ኢንዶኔዢያ</territory>
  436. <territory type="IE">አየርላንድ</territory>
  437. <territory type="IL">እስራኤል</territory>
  438. <territory type="IM">አይል ኦፍ ማን</territory>
  439. <territory type="IN">ህንድ</territory>
  440. <territory type="IO">የብሪታኒያ ህንድ ውቂያኖስ ግዛት</territory>
  441. <territory type="IQ">ኢራቅ</territory>
  442. <territory type="IR">ኢራን</territory>
  443. <territory type="IS">አይስላንድ</territory>
  444. <territory type="IT">ጣሊያን</territory>
  445. <territory type="JE">ጀርሲ</territory>
  446. <territory type="JM">ጃማይካ</territory>
  447. <territory type="JO">ጆርዳን</territory>
  448. <territory type="JP">ጃፓን</territory>
  449. <territory type="KE">ኬንያ</territory>
  450. <territory type="KG">ኪርጊስታን</territory>
  451. <territory type="KH">ካምቦዲያ</territory>
  452. <territory type="KI">ኪሪባቲ</territory>
  453. <territory type="KM">ኮሞሮስ</territory>
  454. <territory type="KN">ቅዱስ ኪትስ እና ኔቪስ</territory>
  455. <territory type="KP">ሰሜን ኮሪያ</territory>
  456. <territory type="KR">ደቡብ ኮሪያ</territory>
  457. <territory type="KW">ክዌት</territory>
  458. <territory type="KY">ካይማን ደሴቶች</territory>
  459. <territory type="KZ">ካዛኪስታን</territory>
  460. <territory type="LA">ላኦስ</territory>
  461. <territory type="LB">ሊባኖስ</territory>
  462. <territory type="LC">ሴንት ሉቺያ</territory>
  463. <territory type="LI">ሊችተንስታይን</territory>
  464. <territory type="LK">ሲሪላንካ</territory>
  465. <territory type="LR">ላይቤሪያ</territory>
  466. <territory type="LS">ሌሶቶ</territory>
  467. <territory type="LT">ሊቱዌኒያ</territory>
  468. <territory type="LU">ሉክሰምበርግ</territory>
  469. <territory type="LV">ላትቪያ</territory>
  470. <territory type="LY">ሊቢያ</territory>
  471. <territory type="MA">ሞሮኮ</territory>
  472. <territory type="MC">ሞናኮ</territory>
  473. <territory type="MD">ሞልዶቫ</territory>
  474. <territory type="ME">ሞንተኔግሮ</territory>
  475. <territory type="MF">ሴንት ማርቲን</territory>
  476. <territory type="MG">ማዳጋስካር</territory>
  477. <territory type="MH">ማርሻል አይላንድ</territory>
  478. <territory type="MK">ማከዶኒያ</territory>
  479. <territory type="MK" alt="variant">መቄዶንያ (የቀድሞ የዩጎስላቭ መቄዶንያ ሪፐብሊክ)</territory>
  480. <territory type="ML">ማሊ</territory>
  481. <territory type="MM">ማይናማር(በርማ)</territory>
  482. <territory type="MN">ሞንጎሊያ</territory>
  483. <territory type="MO">ማካኡ ልዩ የአስተዳደር ክልል ቻይና</territory>
  484. <territory type="MO" alt="short">ማካኡ</territory>
  485. <territory type="MP">የሰሜናዊ ማሪያና ደሴቶች</territory>
  486. <territory type="MQ">ማርቲኒክ</territory>
  487. <territory type="MR">ሞሪቴኒያ</territory>
  488. <territory type="MS">ሞንትሴራት</territory>
  489. <territory type="MT">ማልታ</territory>
  490. <territory type="MU">ማሩሸስ</territory>
  491. <territory type="MV">ማልዲቭስ</territory>
  492. <territory type="MW">ማላዊ</territory>
  493. <territory type="MX">ሜክሲኮ</territory>
  494. <territory type="MY">ማሌዢያ</territory>
  495. <territory type="MZ">ሞዛምቢክ</territory>
  496. <territory type="NA">ናሚቢያ</territory>
  497. <territory type="NC">ኒው ካሌዶኒያ</territory>
  498. <territory type="NE">ኒጀር</territory>
  499. <territory type="NF">ኖርፎልክ ደሴት</territory>
  500. <territory type="NG">ናይጄሪያ</territory>
  501. <territory type="NI">ኒካራጓ</territory>
  502. <territory type="NL">ኔዘርላንድ</territory>
  503. <territory type="NO">ኖርዌ</territory>
  504. <territory type="NP">ኔፓል</territory>
  505. <territory type="NR">ናኡሩ</territory>
  506. <territory type="NU">ኒኡይ</territory>
  507. <territory type="NZ">ኒው ዚላንድ</territory>
  508. <territory type="OM">ኦማን</territory>
  509. <territory type="PA">ፓናማ</territory>
  510. <territory type="PE">ፔሩ</territory>
  511. <territory type="PF">የፈረንሳይ ፖሊኔዢያ</territory>
  512. <territory type="PG">ፓፑዋ ኒው ጊኒ</territory>
  513. <territory type="PH">ፊሊፒንስ</territory>
  514. <territory type="PK">ፓኪስታን</territory>
  515. <territory type="PL">ፖላንድ</territory>
  516. <territory type="PM">ቅዱስ ፒዬር እና ሚኩኤሎን</territory>
  517. <territory type="PN">ፒትካኢርን አይስላንድ</territory>
  518. <territory type="PR">ፖርታ ሪኮ</territory>
  519. <territory type="PS">የፍልስጤም ግዛት</territory>
  520. <territory type="PS" alt="short">ፍልስጥኤም</territory>
  521. <territory type="PT">ፖርቱጋል</territory>
  522. <territory type="PW">ፓላው</territory>
  523. <territory type="PY">ፓራጓይ</territory>
  524. <territory type="QA">ኳታር</territory>
  525. <territory type="QO">አውትላይንግ ኦሽንያ</territory>
  526. <territory type="RE">ሪዩኒየን</territory>
  527. <territory type="RO">ሮሜኒያ</territory>
  528. <territory type="RS">ሰርብያ</territory>
  529. <territory type="RU">ራሺያ</territory>
  530. <territory type="RW">ሩዋንዳ</territory>
  531. <territory type="SA">ሳውድአረቢያ</territory>
  532. <territory type="SB">ሰሎሞን ደሴት</territory>
  533. <territory type="SC">ሲሼልስ</territory>
  534. <territory type="SD">ሱዳን</territory>
  535. <territory type="SE">ስዊድን</territory>
  536. <territory type="SG">ሲንጋፖር</territory>
  537. <territory type="SH">ሴንት ሄለና</territory>
  538. <territory type="SI">ስሎቬኒያ</territory>
  539. <territory type="SJ">ስቫልባርድ እና ጃን ማየን</territory>
  540. <territory type="SK">ስሎቫኪያ</territory>
  541. <territory type="SL">ሴራሊዮን</territory>
  542. <territory type="SM">ሳን ማሪኖ</territory>
  543. <territory type="SN">ሴኔጋል</territory>
  544. <territory type="SO">ሱማሌ</territory>
  545. <territory type="SR">ሱሪናም</territory>
  546. <territory type="SS">ደቡብ ሱዳን</territory>
  547. <territory type="ST">ሳኦ ቶሜ እና ፕሪንሲፔ</territory>
  548. <territory type="SV">ኤል ሳልቫዶር</territory>
  549. <territory type="SX">ሲንት ማርተን</territory>
  550. <territory type="SY">ሲሪያ</territory>
  551. <territory type="SZ">ሱዋዚላንድ</territory>
  552. <territory type="TA">ትሪስታን ዲ ኩንሃ</territory>
  553. <territory type="TC">የቱርኮችና የካኢኮስ ደሴቶች</territory>
  554. <territory type="TD">ቻድ</territory>
  555. <territory type="TF">የፈረንሳይ ደቡባዊ ግዛቶች</territory>
  556. <territory type="TG">ቶጐ</territory>
  557. <territory type="TH">ታይላንድ</territory>
  558. <territory type="TJ">ታጃኪስታን</territory>
  559. <territory type="TK">ቶክላው</territory>
  560. <territory type="TL">ምስራቅ ሌስት</territory>
  561. <territory type="TL" alt="variant">ምስራቅ ቲሞር</territory>
  562. <territory type="TM">ቱርክሜኒስታን</territory>
  563. <territory type="TN">ቱኒዚያ</territory>
  564. <territory type="TO">ቶንጋ</territory>
  565. <territory type="TR">ቱርክ</territory>
  566. <territory type="TT">ትሪናዳድ እና ቶቤጎ</territory>
  567. <territory type="TV">ቱቫሉ</territory>
  568. <territory type="TW">ታይዋን</territory>
  569. <territory type="TZ">ታንዛኒያ</territory>
  570. <territory type="UA">ዩክሬን</territory>
  571. <territory type="UG">ዩጋንዳ</territory>
  572. <territory type="UM">የዩ ኤስ ጠረፍ ላይ ያሉ ደሴቶች</territory>
  573. <territory type="US">ዩናይትድ ስቴትስ</territory>
  574. <territory type="US" alt="short">US</territory>
  575. <territory type="UY">ኡራጓይ</territory>
  576. <territory type="UZ">ዩዝበኪስታን</territory>
  577. <territory type="VA">ቫቲካን ከተማ</territory>
  578. <territory type="VC">ቅዱስ ቪንሴንት እና ግሬናዲንስ</territory>
  579. <territory type="VE">ቬንዙዌላ</territory>
  580. <territory type="VG">የእንግሊዝ ድንግል ደሴቶች</territory>
  581. <territory type="VI">የአሜሪካ ቨርጂን ደሴቶች</territory>
  582. <territory type="VN">ቬትናም</territory>
  583. <territory type="VU">ቫኑአቱ</territory>
  584. <territory type="WF">ዋሊስ እና ፉቱና ደሴቶች</territory>
  585. <territory type="WS">ሳሞአ</territory>
  586. <territory type="XK">ኮሶቮ</territory>
  587. <territory type="YE">የመን</territory>
  588. <territory type="YT">ሜይኦቴ</territory>
  589. <territory type="ZA">ደቡብ አፍሪካ</territory>
  590. <territory type="ZM">ዛምቢያ</territory>
  591. <territory type="ZW">ዚምቧቤ</territory>
  592. <territory type="ZZ">ያልታወቀ ክልል</territory>
  593. </territories>
  594. <keys>
  595. <key type="calendar">የቀን አቆጣጠር</key>
  596. <key type="colAlternate">የምልክቶች ድርደራ ችላ በለው</key>
  597. <key type="colBackwards">የኋሊዮሽ የፊደል ጭረት ድርደራ</key>
  598. <key type="colCaseFirst">የአቢይ/ንዑስ ሆሄ ቅደም ተከተል</key>
  599. <key type="colCaseLevel">የመልከፊደል ትብ ድርደራ</key>
  600. <key type="colHiraganaQuaternary">የካና ድርደራ</key>
  601. <key type="collation">አቀማመጥ ደርድር</key>
  602. <key type="colNormalization">መደበኛ ድርደራ</key>
  603. <key type="colNumeric">የቁጥር ድርደራ</key>
  604. <key type="colStrength">የድርደራ አቅም</key>
  605. <key type="currency">ገንዘብ</key>
  606. <key type="numbers">ቁጥሮች</key>
  607. <key type="timezone">የሰዓት ሰቅ</key>
  608. <key type="va">የአካባቢ አይነት</key>
  609. <key type="variableTop">እንደምልክቶች ደርድር</key>
  610. <key type="x">ለግል ጥቅም</key>
  611. </keys>
  612. <types>
  613. <type type="arab" key="numbers">የአረቢክ-ኢንዲክ አሃዞች</type>
  614. <type type="arabext" key="numbers">የተራዘሙ የአረቢክ-ኢንዲክ አሃዞች</type>
  615. <type type="armn" key="numbers">የአርመንኛ ቁጥሮች</type>
  616. <type type="armnlow" key="numbers">የአሜሪካን ንዑስ ሆሄ አሃዞች</type>
  617. <type type="beng" key="numbers">የቤንጋሊ አሃዞች</type>
  618. <type type="big5han" key="collation">የባህላዊ ቻይንኛ የድርድር ቅደም ተከተል - ትልቅ5</type>
  619. <type type="buddhist" key="calendar">የቡዲስት ቀን አቆጣጠር</type>
  620. <type type="chinese" key="calendar">የቻይና የቀን አቆጣጠር</type>
  621. <type type="coptic" key="calendar">የኮፕቲክ የቀን አቆጣጠር</type>
  622. <type type="deva" key="numbers">የዴቫንጋሪ አሃዞች</type>
  623. <type type="dictionary" key="collation">የመዝገበ ቃላት የድርድር ቅደም ተከተል</type>
  624. <type type="ducet" key="collation">የነባሪ ዩኒኮድ የድርድር ቅደም ተከተል</type>
  625. <type type="ethi" key="numbers">የኢትዮፒክ ቁጥሮች</type>
  626. <type type="ethiopic" key="calendar">የኢትዮጵያ የቀን አቆጣጠር</type>
  627. <type type="ethiopic-amete-alem" key="calendar">የኢትዮፒክ አመተ አለም የቀን አቆጣጠር</type>
  628. <type type="finance" key="numbers">የፋይናንስ ቁጥሮች</type>
  629. <type type="fullwide" key="numbers">የሙሉ ወርድ አሃዞች</type>
  630. <type type="gb2312han" key="collation">የቀለለ የቻይንኛ የድርደራ ቅደም ተከተል - GB2312</type>
  631. <type type="geor" key="numbers">የጆርጂያን ቁጥሮች</type>
  632. <type type="gregorian" key="calendar">የግሪጎሪያን ቀን አቆጣጠር</type>
  633. <type type="grek" key="numbers">የግሪክ ቁጥሮች</type>
  634. <type type="greklow" key="numbers">የግሪክ ንዑስ ሆሄ ቁጥሮች</type>
  635. <type type="gujr" key="numbers">የጉጃራቲ አሃዞች</type>
  636. <type type="guru" key="numbers">የጉርሙኪ አሃዞች</type>
  637. <type type="hanidec" key="numbers">የቻይንኛ አስርዮሽ ቁጥሮች</type>
  638. <type type="hans" key="numbers">ቀለል ያሉ የቻይንኛ ቁጥሮች</type>
  639. <type type="hansfin" key="numbers">ቀለል ያሉ የቻይንኛ ገንዘብ ነክ ቁጥሮች</type>
  640. <type type="hant" key="numbers">የባህላዊ ቻይንኛ ቁጥሮች</type>
  641. <type type="hantfin" key="numbers">የባህላዊ ቻይንኛ የገንዘብ ነክ ቁጥሮች</type>
  642. <type type="hebr" key="numbers">የእብራይስጥ ቁጥሮች</type>
  643. <type type="hebrew" key="calendar">የእብራዊያን የቀን አቆጣጠር</type>
  644. <type type="identical" key="colStrength">ሁሉንም ደርድር</type>
  645. <type type="indian" key="calendar">የህንድ ብሔራዊ የቀን አቆጣጠር</type>
  646. <type type="islamic" key="calendar">የእስላማዊ የሰዓት አቆጣጠር</type>
  647. <type type="islamic-civil" key="calendar">የእስላም ህዝባዊ የቀን አቆጣጠር</type>
  648. <type type="japanese" key="calendar">የጃፓን የቀን አቆጣጠር</type>
  649. <type type="jpan" key="numbers">የጃፓንኛ ቁጥሮች</type>
  650. <type type="jpanfin" key="numbers">የጃፓንኛ የገንዘብ ነክ ቁጥሮች</type>
  651. <type type="khmr" key="numbers">የክህመር አሃዞች</type>
  652. <type type="knda" key="numbers">የካንአዳ አሃዞች</type>
  653. <type type="laoo" key="numbers">የላኦ አሃዞች</type>
  654. <type type="latn" key="numbers">የምስራቃዊ አሃዞች</type>
  655. <type type="lower" key="colCaseFirst">ንዑስ ሆሄ መጀመሪያ ደርድር</type>
  656. <type type="mlym" key="numbers">የማላያላምኛ አሃዞች</type>
  657. <type type="mong" key="numbers">የሞንጎልኛ አሃዞች</type>
  658. <type type="mymr" key="numbers">የማያንማር አሃዞች</type>
  659. <type type="native" key="numbers">ትውልድ አሃዞች</type>
  660. <type type="no" key="colBackwards">የፊደል ጭረቶችን እንደመደበኛ ደርድር</type>
  661. <type type="no" key="colCaseFirst">መደበኛ የመልከፊደል አቀማመጥ ደርድር</type>
  662. <type type="no" key="colCaseLevel">ያለመልከፊደል ትብ ደርድር</type>
  663. <type type="no" key="colHiraganaQuaternary">ካና ለይተህ ደርድር</type>
  664. <type type="no" key="colNormalization">ያለመደበኛ ሁኔታ ደርድር</type>
  665. <type type="no" key="colNumeric">አሃዞችን በየግል ደርድር</type>
  666. <type type="non-ignorable" key="colAlternate">ምልክቶችን ደርድር</type>
  667. <type type="orya" key="numbers">የኦሪያኛ አሃዞች</type>
  668. <type type="persian" key="calendar">የፐርሽያ የቀን አቆጣጠር</type>
  669. <type type="phonebook" key="collation">የስልክ ደብተር ድርድር ቅደም ተከተል</type>
  670. <type type="phonetic" key="collation">የፎነቲክ ድርደራ ቅደም ተከተል</type>
  671. <type type="pinyin" key="collation">ፒንይን የድርድር ቅደም ተከተል</type>
  672. <type type="primary" key="colStrength">የመሠረት ፊደላት ብቻ ደርድር</type>
  673. <type type="quaternary" key="colStrength">የፊደል ጭረቶች/መልከፊደል/ስፋት/ካና ደርድር</type>
  674. <type type="reformed" key="collation">ዳግም የተፈጠረ የድርድር ቅደም ተከተል</type>
  675. <type type="roc" key="calendar">የሚንጉ የቀን አቆጣጠር</type>
  676. <type type="roman" key="numbers">የሮማን ቁጥሮች</type>
  677. <type type="romanlow" key="numbers">የሮማን ንዑስ ሆሄ ቁጥሮች</type>
  678. <type type="search" key="collation">ለጠቅላላ ጉዳይ ፍለጋ</type>
  679. <type type="searchjl" key="collation">በሃንጉል የመጀመሪያ ተነባቢ ፈልግ</type>
  680. <type type="secondary" key="colStrength">የፊደል ጭረቶችን ደርድር</type>
  681. <type type="shifted" key="colAlternate">ችላ ባይ ምልክቶችን ደርድር</type>
  682. <type type="stroke" key="collation">የበትር ድርድር ቅደም ተከተል</type>
  683. <type type="taml" key="numbers">ባህላዊ የታሚል ቁጥሮች</type>
  684. <type type="tamldec" key="numbers">የታሚል አሃዞች</type>
  685. <type type="telu" key="numbers">የተልጉ አሃዞች</type>
  686. <type type="tertiary" key="colStrength">የፊደል ጭረቶች/መልከፊደል/ስፋት ደርድር</type>
  687. <type type="thai" key="numbers">የታይ አሃዞች</type>
  688. <type type="tibt" key="numbers">የቲቤታን አሃዞች</type>
  689. <type type="traditional" key="collation">ባህላዊ የድርድር ቅደም ተከተል</type>
  690. <type type="traditional" key="numbers">ተለምዷዊ ቁጥሮች</type>
  691. <type type="unihan" key="collation">የመሰረታዊ በትር ድርድር ቅደም ተከተል</type>
  692. <type type="upper" key="colCaseFirst">አቢይ ሆሄ መጀመሪያ ደርድር</type>
  693. <type type="vaii" key="numbers">የቫይ አሃዞች</type>
  694. <type type="yes" key="colBackwards">የፊደል ጭረቶች በኋሊዮሽ ደርድር</type>
  695. <type type="yes" key="colCaseLevel">በመልከፊደል ትብ ደርድር</type>
  696. <type type="yes" key="colHiraganaQuaternary">ካና ለይተህ ደርድር</type>
  697. <type type="yes" key="colNormalization">ዩኒኮድ በመደበኛ ሁኔታ ደርድር</type>
  698. <type type="yes" key="colNumeric">አሃዞች በቁጥር ደርድር</type>
  699. </types>
  700. <transformNames>
  701. <transformName type="BGN">ቢ ጂ ኤን</transformName>
  702. <transformName type="Numeric">አሃዛዊ</transformName>
  703. <transformName type="Tone">የድምፅ ቃና</transformName>
  704. <transformName type="UNGEGN">UNGEGN</transformName>
  705. <transformName type="x-Accents">ትእምርት</transformName>
  706. <transformName type="x-Fullwidth">ሙሉ ወርድ</transformName>
  707. <transformName type="x-Halfwidth">ሃልፍዊድዝ</transformName>
  708. <transformName type="x-Jamo">ጃሞ</transformName>
  709. <transformName type="x-Pinyin">ፒንዪን</transformName>
  710. <transformName type="x-Publishing">ማሳተም</transformName>
  711. </transformNames>
  712. <measurementSystemNames>
  713. <measurementSystemName type="metric">ሜትሪክ</measurementSystemName>
  714. <measurementSystemName type="UK">ዩኬ</measurementSystemName>
  715. <measurementSystemName type="US">ዩ ኤስ</measurementSystemName>
  716. </measurementSystemNames>
  717. <codePatterns>
  718. <codePattern type="language">{0}</codePattern>
  719. <codePattern type="script">{0}</codePattern>
  720. <codePattern type="territory">{0}</codePattern>
  721. </codePatterns>
  722. </localeDisplayNames>
  723. <characters>
  724. <exemplarCharacters>[ሀ ሁ ሂ ሃ ሄ ህ ሆ ለ ሉ ሊ ላ ሌ ል ሎ ሏ ሐ ሑ ሒ ሓ ሔ ሕ ሖ ሗ መ ሙ ሚ ማ ሜ ም ሞ ሟ ሠ ሡ ሢ ሣ ሤ ሥ ሦ ሧ ረ ሩ ሪ ራ ሬ ር ሮ ሯ ሰ ሱ ሲ ሳ ሴ ስ ሶ ሷ ሸ ሹ ሺ ሻ ሼ ሽ ሾ ሿ ቀ ቁ ቂ ቃ ቄ ቅ ቆ ቈ ቊ ቋ ቌ ቍ በ ቡ ቢ ባ ቤ ብ ቦ ቧ ቨ ቩ ቪ ቫ ቬ ቭ ቮ ቯ ተ ቱ ቲ ታ ቴ ት ቶ ቷ ቸ ቹ ቺ ቻ ቼ ች ቾ ቿ ኀ ኁ ኂ ኃ ኄ ኅ ኆ ኈ ኊ ኋ ኌ ኍ ነ ኑ ኒ ና ኔ ን ኖ ኗ ኘ ኙ ኚ ኛ ኜ ኝ ኞ ኟ አ ኡ ኢ ኣ ኤ እ ኦ ኧ ከ ኩ ኪ ካ ኬ ክ ኮ ኰ ኲ ኳ ኴ ኵ ኸ ኹ ኺ ኻ ኼ ኽ ኾ ወ ዉ ዊ ዋ ዌ ው ዎ ዐ ዑ ዒ ዓ ዔ ዕ ዖ ዘ ዙ ዚ ዛ ዜ ዝ ዞ ዟ ዠ ዡ ዢ ዣ ዤ ዥ ዦ ዧ የ ዩ ዪ ያ ዬ ይ ዮ ደ ዱ ዲ ዳ ዴ ድ ዶ ዷ ጀ ጁ ጂ ጃ ጄ ጅ ጆ ጇ ገ ጉ ጊ ጋ ጌ ግ ጎ ጐ ጒ ጓ ጔ ጕ ጠ ጡ ጢ ጣ ጤ ጥ ጦ ጧ ጨ ጩ ጪ ጫ ጬ ጭ ጮ ጯ ጰ ጱ ጲ ጳ ጴ ጵ ጶ ጷ ጸ ጹ ጺ ጻ ጼ ጽ ጾ ጿ ፀ ፁ ፂ ፃ ፄ ፅ ፆ ፈ ፉ ፊ ፋ ፌ ፍ ፎ ፏ ፐ ፑ ፒ ፓ ፔ ፕ ፖ ፗ]</exemplarCharacters>
  725. <exemplarCharacters type="auxiliary">[]</exemplarCharacters>
  726. <exemplarCharacters type="index" draft="unconfirmed">[ሀ ለ ሐ መ ሠ ረ ሰ ሸ ቀ ቈ በ ቨ ተ ቸ ኀ ኈ ነ ኘ አ ከ ኰ ኸ ወ ዐ ዘ ዠ የ ደ ጀ ገ ጐ ጠ ጨ ጰ ጸ ፀ ፈ ፐ]</exemplarCharacters>
  727. <exemplarCharacters type="punctuation">[‐ – , ፡ ፣ ፤ ፥ ፦ ! ? . ። ‹ › « » ( ) \[ \]]</exemplarCharacters>
  728. <ellipsis type="final">{0}…</ellipsis>
  729. <ellipsis type="initial">…{0}</ellipsis>
  730. <ellipsis type="medial">{0}…{1}</ellipsis>
  731. <moreInformation>?</moreInformation>
  732. </characters>
  733. <delimiters>
  734. <quotationStart>«</quotationStart>
  735. <quotationEnd>»</quotationEnd>
  736. <alternateQuotationStart>‹</alternateQuotationStart>
  737. <alternateQuotationEnd>›</alternateQuotationEnd>
  738. </delimiters>
  739. <dates>
  740. <calendars>
  741. <calendar type="coptic">
  742. <eras>
  743. <eraAbbr>
  744. <era type="0" draft="unconfirmed">ዓ/ዓ</era>
  745. <era type="1" draft="unconfirmed">ዓ/ም</era>
  746. </eraAbbr>
  747. </eras>
  748. </calendar>
  749. <calendar type="ethiopic">
  750. <months>
  751. <monthContext type="format">
  752. <monthWidth type="abbreviated">
  753. <month type="1">መስከ</month>
  754. <month type="2">ጥቅም</month>
  755. <month type="3">ኅዳር</month>
  756. <month type="4">ታኅሣ</month>
  757. <month type="5">ጥር</month>
  758. <month type="6">የካቲ</month>
  759. <month type="7">መጋቢ</month>
  760. <month type="8">ሚያዝ</month>
  761. <month type="9">ግንቦ</month>
  762. <month type="10">ሰኔ</month>
  763. <month type="11">ሐምሌ</month>
  764. <month type="12">ነሐሴ</month>
  765. <month type="13">ጳጉሜ</month>
  766. </monthWidth>
  767. <monthWidth type="narrow">
  768. <month type="1">1</month>
  769. <month type="2">2</month>
  770. <month type="3">3</month>
  771. <month type="4">4</month>
  772. <month type="5">5</month>
  773. <month type="6">6</month>
  774. <month type="7">7</month>
  775. <month type="8">8</month>
  776. <month type="9">9</month>
  777. <month type="10">10</month>
  778. <month type="11">11</month>
  779. <month type="12">12</month>
  780. <month type="13">13</month>
  781. </monthWidth>
  782. <monthWidth type="wide">
  783. <month type="1">መስከረም</month>
  784. <month type="2">ጥቅምት</month>
  785. <month type="3">ኅዳር</month>
  786. <month type="4">ታኅሣሥ</month>
  787. <month type="5">ጥር</month>
  788. <month type="6">የካቲት</month>
  789. <month type="7">መጋቢት</month>
  790. <month type="8">ሚያዝያ</month>
  791. <month type="9">ግንቦት</month>
  792. <month type="10">ሰኔ</month>
  793. <month type="11">ሐምሌ</month>
  794. <month type="12">ነሐሴ</month>
  795. <month type="13">ጳጉሜን</month>
  796. </monthWidth>
  797. </monthContext>
  798. <monthContext type="stand-alone">
  799. <monthWidth type="abbreviated">
  800. <month type="1">መስከ</month>
  801. <month type="2">ጥቅም</month>
  802. <month type="3">ኅዳር</month>
  803. <month type="4">ታኅሣ</month>
  804. <month type="5">ጥር</month>
  805. <month type="6">የካቲ</month>
  806. <month type="7">መጋቢ</month>
  807. <month type="8">ሚያዝ</month>
  808. <month type="9">ግንቦ</month>
  809. <month type="10">ሰኔ</month>
  810. <month type="11">ሐምሌ</month>
  811. <month type="12">ነሐሴ</month>
  812. <month type="13">ጳጉሜ</month>
  813. </monthWidth>
  814. <monthWidth type="narrow">
  815. <month type="1">1</month>
  816. <month type="2">2</month>
  817. <month type="3">3</month>
  818. <month type="4">4</month>
  819. <month type="5">5</month>
  820. <month type="6">6</month>
  821. <month type="7">7</month>
  822. <month type="8">8</month>
  823. <month type="9">9</month>
  824. <month type="10">10</month>
  825. <month type="11">11</month>
  826. <month type="12">12</month>
  827. <month type="13">13</month>
  828. </monthWidth>
  829. <monthWidth type="wide">
  830. <month type="1">መስከረም</month>
  831. <month type="2">ጥቅምት</month>
  832. <month type="3">ኅዳር</month>
  833. <month type="4">ታኅሣሥ</month>
  834. <month type="5">ጥር</month>
  835. <month type="6">የካቲት</month>
  836. <month type="7">መጋቢት</month>
  837. <month type="8">ሚያዝያ</month>
  838. <month type="9">ግንቦት</month>
  839. <month type="10">ሰኔ</month>
  840. <month type="11">ሐምሌ</month>
  841. <month type="12">ነሐሴ</month>
  842. <month type="13">ጳጉሜን</month>
  843. </monthWidth>
  844. </monthContext>
  845. </months>
  846. <dateFormats>
  847. <dateFormatLength type="full">
  848. <dateFormat>
  849. <pattern draft="unconfirmed">EEEE፣ MMMM d ቀን y G</pattern>
  850. </dateFormat>
  851. </dateFormatLength>
  852. </dateFormats>
  853. </calendar>
  854. <calendar type="generic">
  855. <dateFormats>
  856. <dateFormatLength type="full">
  857. <dateFormat>
  858. <pattern>EEEE፣ d MMMM y G</pattern>
  859. </dateFormat>
  860. </dateFormatLength>
  861. <dateFormatLength type="long">
  862. <dateFormat>
  863. <pattern>d MMMM y G</pattern>
  864. </dateFormat>
  865. </dateFormatLength>
  866. <dateFormatLength type="medium">
  867. <dateFormat>
  868. <pattern>d MMM y G</pattern>
  869. </dateFormat>
  870. </dateFormatLength>
  871. <dateFormatLength type="short">
  872. <dateFormat>
  873. <pattern>dd/MM/y GGGGG</pattern>
  874. </dateFormat>
  875. </dateFormatLength>
  876. </dateFormats>
  877. <dateTimeFormats>
  878. <dateTimeFormatLength type="full">
  879. <dateTimeFormat>
  880. <pattern>{1} {0}</pattern>
  881. </dateTimeFormat>
  882. </dateTimeFormatLength>
  883. <dateTimeFormatLength type="long">
  884. <dateTimeFormat>
  885. <pattern>{1} {0}</pattern>
  886. </dateTimeFormat>
  887. </dateTimeFormatLength>
  888. <dateTimeFormatLength type="medium">
  889. <dateTimeFormat>
  890. <pattern>{1} {0}</pattern>
  891. </dateTimeFormat>
  892. </dateTimeFormatLength>
  893. <dateTimeFormatLength type="short">
  894. <dateTimeFormat>
  895. <pattern>{1} {0}</pattern>
  896. </dateTimeFormat>
  897. </dateTimeFormatLength>
  898. <availableFormats>
  899. <dateFormatItem id="d">d</dateFormatItem>
  900. <dateFormatItem id="Ed">E d</dateFormatItem>
  901. <dateFormatItem id="Gy">y G</dateFormatItem>
  902. <dateFormatItem id="GyMMM">MMM፣ y G</dateFormatItem>
  903. <dateFormatItem id="GyMMMd">MMM d፣ y G</dateFormatItem>
  904. <dateFormatItem id="GyMMMEd">E MMM d፣ y G</dateFormatItem>
  905. <dateFormatItem id="h">h a</dateFormatItem>
  906. <dateFormatItem id="H">H</dateFormatItem>
  907. <dateFormatItem id="hm">h:mm a</dateFormatItem>
  908. <dateFormatItem id="Hm">HH:mm</dateFormatItem>
  909. <dateFormatItem id="hms">h:mm:ss a</dateFormatItem>
  910. <dateFormatItem id="Hms">HH:mm:ss</dateFormatItem>
  911. <dateFormatItem id="M">L</dateFormatItem>
  912. <dateFormatItem id="Md">M/d</dateFormatItem>
  913. <dateFormatItem id="MEd">E፣ M/d</dateFormatItem>
  914. <dateFormatItem id="MMM">LLL</dateFormatItem>
  915. <dateFormatItem id="MMMd">MMM d</dateFormatItem>
  916. <dateFormatItem id="MMMEd">E, MMM d</dateFormatItem>
  917. <dateFormatItem id="MMMMd">MMMM d</dateFormatItem>
  918. <dateFormatItem id="MMMMEd">E, MMMM d</dateFormatItem>
  919. <dateFormatItem id="ms">mm:ss</dateFormatItem>
  920. <dateFormatItem id="y">y</dateFormatItem>
  921. <dateFormatItem id="yM">M/y</dateFormatItem>
  922. <dateFormatItem id="yMd">d/M/y</dateFormatItem>
  923. <dateFormatItem id="yMEd">E፣ d/M/y</dateFormatItem>
  924. <dateFormatItem id="yMMM">MMM y</dateFormatItem>
  925. <dateFormatItem id="yMMMd">d MMM y</dateFormatItem>
  926. <dateFormatItem id="yMMMEd">E፣ MMM d y</dateFormatItem>
  927. <dateFormatItem id="yMMMM">MMMM y</dateFormatItem>
  928. <dateFormatItem id="yQQQ">QQQ y</dateFormatItem>
  929. <dateFormatItem id="yQQQQ">QQQQ y</dateFormatItem>
  930. <dateFormatItem id="yyyy">G y</dateFormatItem>
  931. <dateFormatItem id="yyyyM">GGGGG y-MM</dateFormatItem>
  932. <dateFormatItem id="yyyyMd">GGGGG y-MM-dd</dateFormatItem>
  933. <dateFormatItem id="yyyyMEd">GGGGG y-MM-dd, E</dateFormatItem>
  934. <dateFormatItem id="yyyyMMM">G y MMM</dateFormatItem>
  935. <dateFormatItem id="yyyyMMMd">G y MMM d</dateFormatItem>
  936. <dateFormatItem id="yyyyMMMEd">G y MMM d, E</dateFormatItem>
  937. <dateFormatItem id="yyyyQQQ">G y QQQ</dateFormatItem>
  938. <dateFormatItem id="yyyyQQQQ">G y QQQQ</dateFormatItem>
  939. </availableFormats>
  940. <intervalFormats>
  941. <intervalFormatFallback>{0} – {1}</intervalFormatFallback>
  942. <intervalFormatItem id="d">
  943. <greatestDifference id="d">d–d</greatestDifference>
  944. </intervalFormatItem>
  945. <intervalFormatItem id="h">
  946. <greatestDifference id="a">h a – h a</greatestDifference>
  947. <greatestDifference id="h">h – h a</greatestDifference>
  948. </intervalFormatItem>
  949. <intervalFormatItem id="H">
  950. <greatestDifference id="H">HH–HH</greatestDifference>
  951. </intervalFormatItem>
  952. <intervalFormatItem id="hm">
  953. <greatestDifference id="a">h:mm a – h:mm a</greatestDifference>
  954. <greatestDifference id="h">h:mm – h:mm a</greatestDifference>
  955. <greatestDifference id="m">h:mm – h:mm a</greatestDifference>
  956. </intervalFormatItem>
  957. <intervalFormatItem id="Hm">
  958. <greatestDifference id="H">HH:mm–HH:mm</greatestDifference>
  959. <greatestDifference id="m">HH:mm–HH:mm</greatestDifference>
  960. </intervalFormatItem>
  961. <intervalFormatItem id="hmv">
  962. <greatestDifference id="a">h:mm a – h:mm a v</greatestDifference>
  963. <greatestDifference id="h">h:mm – h:mm a v</greatestDifference>
  964. <greatestDifference id="m">h:mm – h:mm a v</greatestDifference>
  965. </intervalFormatItem>
  966. <intervalFormatItem id="Hmv">
  967. <greatestDifference id="H">HH:mm–HH:mm v</greatestDifference>
  968. <greatestDifference id="m">HH:mm–HH:mm v</greatestDifference>
  969. </intervalFormatItem>
  970. <intervalFormatItem id="hv">
  971. <greatestDifference id="a">h a – h a v</greatestDifference>
  972. <greatestDifference id="h">h – h a v</greatestDifference>
  973. </intervalFormatItem>
  974. <intervalFormatItem id="Hv">
  975. <greatestDifference id="H">HH–HH v</greatestDifference>
  976. </intervalFormatItem>
  977. <intervalFormatItem id="M">
  978. <greatestDifference id="M">M–M</greatestDifference>
  979. </intervalFormatItem>
  980. <intervalFormatItem id="Md">
  981. <greatestDifference id="d">d–d/M</greatestDifference>
  982. <greatestDifference id="M">d/M – d/M</greatestDifference>
  983. </intervalFormatItem>
  984. <intervalFormatItem id="MEd">
  985. <greatestDifference id="d">E d/M – E d/M</greatestDifference>
  986. <greatestDifference id="M">E፣ d/M – E፣ d/M</greatestDifference>
  987. </intervalFormatItem>
  988. <intervalFormatItem id="MMM">
  989. <greatestDifference id="M">MMM–MMM</greatestDifference>
  990. </intervalFormatItem>
  991. <intervalFormatItem id="MMMd">
  992. <greatestDifference id="d">MMM d–d</greatestDifference>
  993. <greatestDifference id="M">MMM d – MMM d</greatestDifference>
  994. </intervalFormatItem>
  995. <intervalFormatItem id="MMMEd">
  996. <greatestDifference id="d">E d – E d፣ MMM</greatestDifference>
  997. <greatestDifference id="M">E፣ MMM d – E፣ MMM d</greatestDifference>
  998. </intervalFormatItem>
  999. <intervalFormatItem id="y">
  1000. <greatestDifference id="y">y–y</greatestDifference>
  1001. </intervalFormatItem>
  1002. <intervalFormatItem id="yM">
  1003. <greatestDifference id="M">M/y – M/y</greatestDifference>
  1004. <greatestDifference id="y">M/y – M/y</greatestDifference>
  1005. </intervalFormatItem>
  1006. <intervalFormatItem id="yMd">
  1007. <greatestDifference id="d">d/M/y – d/M/y</greatestDifference>
  1008. <greatestDifference id="M">d/M/y – d/M/y</greatestDifference>
  1009. <greatestDifference id="y">d/M/y – d/M/y</greatestDifference>
  1010. </intervalFormatItem>
  1011. <intervalFormatItem id="yMEd">
  1012. <greatestDifference id="d">E፣ d/M/y – E፣ d/M/y</greatestDifference>
  1013. <greatestDifference id="M">E d/M/ – E d/M፣ y</greatestDifference>
  1014. <greatestDifference id="y">E፣ d/M/y – E፣ d/M/y</greatestDifference>
  1015. </intervalFormatItem>
  1016. <intervalFormatItem id="yMMM">
  1017. <greatestDifference id="M">MMM–MMM፣ y</greatestDifference>
  1018. <greatestDifference id="y">MMM y – MMM y</greatestDifference>
  1019. </intervalFormatItem>
  1020. <intervalFormatItem id="yMMMd">
  1021. <greatestDifference id="d">MMM d–d፣ y</greatestDifference>
  1022. <greatestDifference id="M">MMM d – MMM d፣ y</greatestDifference>
  1023. <greatestDifference id="y">MMM d፣ y – MMM d፣ y</greatestDifference>
  1024. </intervalFormatItem>
  1025. <intervalFormatItem id="yMMMEd">
  1026. <greatestDifference id="d">E MMM d – E MMM d፣ y</greatestDifference>
  1027. <greatestDifference id="M">E MMM d – E MMM d፣ y</greatestDifference>
  1028. <greatestDifference id="y">E፣ MMM d፣ y – E፣ MMM d፣ y</greatestDifference>
  1029. </intervalFormatItem>
  1030. <intervalFormatItem id="yMMMM">
  1031. <greatestDifference id="M">MMMM–MMMM y</greatestDifference>
  1032. <greatestDifference id="y">MMMM y – MMMM y</greatestDifference>
  1033. </intervalFormatItem>
  1034. </intervalFormats>
  1035. </dateTimeFormats>
  1036. </calendar>
  1037. <calendar type="gregorian">
  1038. <months>
  1039. <monthContext type="format">
  1040. <monthWidth type="abbreviated">
  1041. <month type="1">ጃንዩ</month>
  1042. <month type="2">ፌብሩ</month>
  1043. <month type="3">ማርች</month>
  1044. <month type="4">ኤፕሪ</month>
  1045. <month type="5">ሜይ</month>
  1046. <month type="6">ጁን</month>
  1047. <month type="7">ጁላይ</month>
  1048. <month type="8">ኦገስ</month>
  1049. <month type="9">ሴፕቴ</month>
  1050. <month type="10">ኦክተ</month>
  1051. <month type="11">ኖቬም</month>
  1052. <month type="12">ዲሴም</month>
  1053. </monthWidth>
  1054. <monthWidth type="narrow">
  1055. <month type="1">ጃ</month>
  1056. <month type="2">ፌ</month>
  1057. <month type="3">ማ</month>
  1058. <month type="4">ኤ</month>
  1059. <month type="5">ሜ</month>
  1060. <month type="6">ጁ</month>
  1061. <month type="7">ጁ</month>
  1062. <month type="8">ኦ</month>
  1063. <month type="9">ሴ</month>
  1064. <month type="10">ኦ</month>
  1065. <month type="11">ኖ</month>
  1066. <month type="12">ዲ</month>
  1067. </monthWidth>
  1068. <monthWidth type="wide">
  1069. <month type="1">ጃንዩወሪ</month>
  1070. <month type="2">ፌብሩወሪ</month>
  1071. <month type="3">ማርች</month>
  1072. <month type="4">ኤፕሪል</month>
  1073. <month type="5">ሜይ</month>
  1074. <month type="6">ጁን</month>
  1075. <month type="7">ጁላይ</month>
  1076. <month type="8">ኦገስት</month>
  1077. <month type="9">ሴፕቴምበር</month>
  1078. <month type="10">ኦክተውበር</month>
  1079. <month type="11">ኖቬምበር</month>
  1080. <month type="12">ዲሴምበር</month>
  1081. </monthWidth>
  1082. </monthContext>
  1083. <monthContext type="stand-alone">
  1084. <monthWidth type="abbreviated">
  1085. <month type="1">ጃንዩ</month>
  1086. <month type="2">ፌብሩ</month>
  1087. <month type="3">ማርች</month>
  1088. <month type="4">ኤፕሪ</month>
  1089. <month type="5">ሜይ</month>
  1090. <month type="6">ጁን</month>
  1091. <month type="7">ጁላይ</month>
  1092. <month type="8">ኦገስ</month>
  1093. <month type="9">ሴፕቴ</month>
  1094. <month type="10">ኦክቶ</month>
  1095. <month type="11">ኖቬም</month>
  1096. <month type="12">ዲሴም</month>
  1097. </monthWidth>
  1098. <monthWidth type="narrow">
  1099. <month type="1">ጃ</month>
  1100. <month type="2">ፌ</month>
  1101. <month type="3">ማ</month>
  1102. <month type="4">ኤ</month>
  1103. <month type="5">ሜ</month>
  1104. <month type="6">ጁ</month>
  1105. <month type="7">ጁ</month>
  1106. <month type="8">ኦ</month>
  1107. <month type="9">ሴ</month>
  1108. <month type="10">ኦ</month>
  1109. <month type="11">ኖ</month>
  1110. <month type="12">ዲ</month>
  1111. </monthWidth>
  1112. <monthWidth type="wide">
  1113. <month type="1">ጃንዩወሪ</month>
  1114. <month type="2">ፌብሩወሪ</month>
  1115. <month type="3">ማርች</month>
  1116. <month type="4">ኤፕሪል</month>
  1117. <month type="5">ሜይ</month>
  1118. <month type="6">ጁን</month>
  1119. <month type="7">ጁላይ</month>
  1120. <month type="8">ኦገስት</month>
  1121. <month type="9">ሴፕቴምበር</month>
  1122. <month type="10">ኦክቶበር</month>
  1123. <month type="11">ኖቬምበር</month>
  1124. <month type="12">ዲሴምበር</month>
  1125. </monthWidth>
  1126. </monthContext>
  1127. </months>
  1128. <days>
  1129. <dayContext type="format">
  1130. <dayWidth type="abbreviated">
  1131. <day type="sun">እሑድ</day>
  1132. <day type="mon">ሰኞ</day>
  1133. <day type="tue">ማክሰ</day>
  1134. <day type="wed">ረቡዕ</day>
  1135. <day type="thu">ሐሙስ</day>
  1136. <day type="fri">ዓርብ</day>
  1137. <day type="sat">ቅዳሜ</day>
  1138. </dayWidth>
  1139. <dayWidth type="narrow">
  1140. <day type="sun">እ</day>
  1141. <day type="mon">ሰ</day>
  1142. <day type="tue">ማ</day>
  1143. <day type="wed">ረ</day>
  1144. <day type="thu">ሐ</day>
  1145. <day type="fri">ዓ</day>
  1146. <day type="sat">ቅ</day>
  1147. </dayWidth>
  1148. <dayWidth type="short">
  1149. <day type="sun">እ</day>
  1150. <day type="mon">ሰ</day>
  1151. <day type="tue">ማ</day>
  1152. <day type="wed">ረ</day>
  1153. <day type="thu">ሐ</day>
  1154. <day type="fri">ዓ</day>
  1155. <day type="sat">ቅ</day>
  1156. </dayWidth>
  1157. <dayWidth type="wide">
  1158. <day type="sun">እሑድ</day>
  1159. <day type="mon">ሰኞ</day>
  1160. <day type="tue">ማክሰኞ</day>
  1161. <day type="wed">ረቡዕ</day>
  1162. <day type="thu">ሐሙስ</day>
  1163. <day type="fri">ዓርብ</day>
  1164. <day type="sat">ቅዳሜ</day>
  1165. </dayWidth>
  1166. </dayContext>
  1167. <dayContext type="stand-alone">
  1168. <dayWidth type="abbreviated">
  1169. <day type="sun">እሑድ</day>
  1170. <day type="mon">ሰኞ</day>
  1171. <day type="tue">ማክሰ</day>
  1172. <day type="wed">ረቡዕ</day>
  1173. <day type="thu">ሐሙስ</day>
  1174. <day type="fri">ዓርብ</day>
  1175. <day type="sat">ቅዳሜ</day>
  1176. </dayWidth>
  1177. <dayWidth type="narrow">
  1178. <day type="sun">እ</day>
  1179. <day type="mon">ሰ</day>
  1180. <day type="tue">ማ</day>
  1181. <day type="wed">ረ</day>
  1182. <day type="thu">ሐ</day>
  1183. <day type="fri">ዓ</day>
  1184. <day type="sat">ቅ</day>
  1185. </dayWidth>
  1186. <dayWidth type="short">
  1187. <day type="sun">እ</day>
  1188. <day type="mon">ሰ</day>
  1189. <day type="tue">ማ</day>
  1190. <day type="wed">ረ</day>
  1191. <day type="thu">ሐ</day>
  1192. <day type="fri">ዓ</day>
  1193. <day type="sat">ቅ</day>
  1194. </dayWidth>
  1195. <dayWidth type="wide">
  1196. <day type="sun">እሑድ</day>
  1197. <day type="mon">ሰኞ</day>
  1198. <day type="tue">ማክሰኞ</day>
  1199. <day type="wed">ረቡዕ</day>
  1200. <day type="thu">ሐሙስ</day>
  1201. <day type="fri">ዓርብ</day>
  1202. <day type="sat">ቅዳሜ</day>
  1203. </dayWidth>
  1204. </dayContext>
  1205. </days>
  1206. <quarters>
  1207. <quarterContext type="format">
  1208. <quarterWidth type="abbreviated">
  1209. <quarter type="1">ሩብ1</quarter>
  1210. <quarter type="2">ሩብ2</quarter>
  1211. <quarter type="3">ሩብ3</quarter>
  1212. <quarter type="4">ሩብ4</quarter>
  1213. </quarterWidth>
  1214. <quarterWidth type="narrow">
  1215. <quarter type="1">1</quarter>
  1216. <quarter type="2">2</quarter>
  1217. <quarter type="3">3</quarter>
  1218. <quarter type="4">4</quarter>
  1219. </quarterWidth>
  1220. <quarterWidth type="wide">
  1221. <quarter type="1">1ኛው ሩብ</quarter>
  1222. <quarter type="2">ሁለተኛው ሩብ</quarter>
  1223. <quarter type="3">3ኛው ሩብ</quarter>
  1224. <quarter type="4">4ኛው ሩብ</quarter>
  1225. </quarterWidth>
  1226. </quarterContext>
  1227. <quarterContext type="stand-alone">
  1228. <quarterWidth type="abbreviated">
  1229. <quarter type="1">ሩብ1</quarter>
  1230. <quarter type="2">ሩብ2</quarter>
  1231. <quarter type="3">ሩብ3</quarter>
  1232. <quarter type="4">ሩብ4</quarter>
  1233. </quarterWidth>
  1234. <quarterWidth type="narrow">
  1235. <quarter type="1">1</quarter>
  1236. <quarter type="2">2</quarter>
  1237. <quarter type="3">3</quarter>
  1238. <quarter type="4">4</quarter>
  1239. </quarterWidth>
  1240. <quarterWidth type="wide">
  1241. <quarter type="1">1ኛው ሩብ</quarter>
  1242. <quarter type="2">2ኛው ሩብ</quarter>
  1243. <quarter type="3">3ኛው ሩብ</quarter>
  1244. <quarter type="4">4ኛው ሩብ</quarter>
  1245. </quarterWidth>
  1246. </quarterContext>
  1247. </quarters>
  1248. <dayPeriods>
  1249. <dayPeriodContext type="format">
  1250. <dayPeriodWidth type="wide">
  1251. <dayPeriod type="am">ጥዋት</dayPeriod>
  1252. <dayPeriod type="pm">ከሰዓት</dayPeriod>
  1253. </dayPeriodWidth>
  1254. </dayPeriodContext>
  1255. </dayPeriods>
  1256. <eras>
  1257. <eraNames>
  1258. <era type="0">ዓመተ ዓለም</era>
  1259. <era type="1">ዓመተ ምሕረት</era>
  1260. </eraNames>
  1261. <eraAbbr>
  1262. <era type="0">ዓ/ዓ</era>
  1263. <era type="1">ዓ/ም</era>
  1264. </eraAbbr>
  1265. </eras>
  1266. <dateFormats>
  1267. <dateFormatLength type="full">
  1268. <dateFormat>
  1269. <pattern>EEEE, d MMMM y</pattern>
  1270. </dateFormat>
  1271. </dateFormatLength>
  1272. <dateFormatLength type="long">
  1273. <dateFormat>
  1274. <pattern>d MMMM y</pattern>
  1275. </dateFormat>
  1276. </dateFormatLength>
  1277. <dateFormatLength type="medium">
  1278. <dateFormat>
  1279. <pattern>d MMM y</pattern>
  1280. </dateFormat>
  1281. </dateFormatLength>
  1282. <dateFormatLength type="short">
  1283. <dateFormat>
  1284. <pattern>dd/MM/y</pattern>
  1285. </dateFormat>
  1286. </dateFormatLength>
  1287. </dateFormats>
  1288. <timeFormats>
  1289. <timeFormatLength type="full">
  1290. <timeFormat>
  1291. <pattern>h:mm:ss a zzzz</pattern>
  1292. </timeFormat>
  1293. </timeFormatLength>
  1294. <timeFormatLength type="long">
  1295. <timeFormat>
  1296. <pattern>h:mm:ss a z</pattern>
  1297. </timeFormat>
  1298. </timeFormatLength>
  1299. <timeFormatLength type="medium">
  1300. <timeFormat>
  1301. <pattern>h:mm:ss a</pattern>
  1302. </timeFormat>
  1303. </timeFormatLength>
  1304. <timeFormatLength type="short">
  1305. <timeFormat>
  1306. <pattern>h:mm a</pattern>
  1307. </timeFormat>
  1308. </timeFormatLength>
  1309. </timeFormats>
  1310. <dateTimeFormats>
  1311. <dateTimeFormatLength type="full">
  1312. <dateTimeFormat>
  1313. <pattern>{1} {0}</pattern>
  1314. </dateTimeFormat>
  1315. </dateTimeFormatLength>
  1316. <dateTimeFormatLength type="long">
  1317. <dateTimeFormat>
  1318. <pattern>{1} {0}</pattern>
  1319. </dateTimeFormat>
  1320. </dateTimeFormatLength>
  1321. <dateTimeFormatLength type="medium">
  1322. <dateTimeFormat>
  1323. <pattern>{1} {0}</pattern>
  1324. </dateTimeFormat>
  1325. </dateTimeFormatLength>
  1326. <dateTimeFormatLength type="short">
  1327. <dateTimeFormat>
  1328. <pattern>{1} {0}</pattern>
  1329. </dateTimeFormat>
  1330. </dateTimeFormatLength>
  1331. <availableFormats>
  1332. <dateFormatItem id="d">d</dateFormatItem>
  1333. <dateFormatItem id="Ed">E d</dateFormatItem>
  1334. <dateFormatItem id="Ehm">E h:mm a</dateFormatItem>
  1335. <dateFormatItem id="EHm">E HH:mm</dateFormatItem>
  1336. <dateFormatItem id="Ehms">E h:mm:ss a</dateFormatItem>
  1337. <dateFormatItem id="EHms">E HH:mm:ss</dateFormatItem>
  1338. <dateFormatItem id="Gy">y G</dateFormatItem>
  1339. <dateFormatItem id="GyMMM">MMM y G</dateFormatItem>
  1340. <dateFormatItem id="GyMMMd">MMM d፣ y G</dateFormatItem>
  1341. <dateFormatItem id="GyMMMEd">E፣ MMM d፣ y G</dateFormatItem>
  1342. <dateFormatItem id="h">h a</dateFormatItem>
  1343. <dateFormatItem id="H">H</dateFormatItem>
  1344. <dateFormatItem id="hm">h:mm a</dateFormatItem>
  1345. <dateFormatItem id="Hm">HH:mm</dateFormatItem>
  1346. <dateFormatItem id="hms">h:mm:ss a</dateFormatItem>
  1347. <dateFormatItem id="Hms">HH:mm:ss</dateFormatItem>
  1348. <dateFormatItem id="M">L</dateFormatItem>
  1349. <dateFormatItem id="Md">M/d</dateFormatItem>
  1350. <dateFormatItem id="MEd">E, M/d</dateFormatItem>
  1351. <dateFormatItem id="MMM">LLL</dateFormatItem>
  1352. <dateFormatItem id="MMMd">MMM d</dateFormatItem>
  1353. <dateFormatItem id="MMMEd">E, MMM d</dateFormatItem>
  1354. <dateFormatItem id="MMMMd">MMMM d</dateFormatItem>
  1355. <dateFormatItem id="MMMMEd">E, MMMM d</dateFormatItem>
  1356. <dateFormatItem id="ms">mm:ss</dateFormatItem>
  1357. <dateFormatItem id="y">y</dateFormatItem>
  1358. <dateFormatItem id="yM">M/y</dateFormatItem>
  1359. <dateFormatItem id="yMd">d/M/y</dateFormatItem>
  1360. <dateFormatItem id="yMEd">E፣ d/M/y</dateFormatItem>
  1361. <dateFormatItem id="yMMM">MMM y</dateFormatItem>
  1362. <dateFormatItem id="yMMMd">d MMM y</dateFormatItem>
  1363. <dateFormatItem id="yMMMEd">E፣ MMM d y</dateFormatItem>
  1364. <dateFormatItem id="yMMMM">MMMM y</dateFormatItem>
  1365. <dateFormatItem id="yQQQ">QQQ y</dateFormatItem>
  1366. <dateFormatItem id="yQQQQ">QQQQ y</dateFormatItem>
  1367. </availableFormats>
  1368. <appendItems>
  1369. <appendItem request="Timezone">{0} {1}</appendItem>
  1370. </appendItems>
  1371. <intervalFormats>
  1372. <intervalFormatFallback>{0} – {1}</intervalFormatFallback>
  1373. <intervalFormatItem id="d">
  1374. <greatestDifference id="d">d–d</greatestDifference>
  1375. </intervalFormatItem>
  1376. <intervalFormatItem id="h">
  1377. <greatestDifference id="a">h a – h a</greatestDifference>
  1378. <greatestDifference id="h">h – h a</greatestDifference>
  1379. </intervalFormatItem>
  1380. <intervalFormatItem id="H">
  1381. <greatestDifference id="H">HH–HH</greatestDifference>
  1382. </intervalFormatItem>
  1383. <intervalFormatItem id="hm">
  1384. <greatestDifference id="a">h:mm a – h:mm a</greatestDifference>
  1385. <greatestDifference id="h">h:mm – h:mm a</greatestDifference>
  1386. <greatestDifference id="m">h:mm – h:mm a</greatestDifference>
  1387. </intervalFormatItem>
  1388. <intervalFormatItem id="Hm">
  1389. <greatestDifference id="H">HH:mm–HH:mm</greatestDifference>
  1390. <greatestDifference id="m">HH:mm–HH:mm</greatestDifference>
  1391. </intervalFormatItem>
  1392. <intervalFormatItem id="hmv">
  1393. <greatestDifference id="a">h:mm a – h:mm a v</greatestDifference>
  1394. <greatestDifference id="h">h:mm – h:mm a v</greatestDifference>
  1395. <greatestDifference id="m">h:mm – h:mm a v</greatestDifference>
  1396. </intervalFormatItem>
  1397. <intervalFormatItem id="Hmv">
  1398. <greatestDifference id="H">HH:mm–HH:mm v</greatestDifference>
  1399. <greatestDifference id="m">HH:mm–HH:mm v</greatestDifference>
  1400. </intervalFormatItem>
  1401. <intervalFormatItem id="hv">
  1402. <greatestDifference id="a">h a – h a v</greatestDifference>
  1403. <greatestDifference id="h">h – h a v</greatestDifference>
  1404. </intervalFormatItem>
  1405. <intervalFormatItem id="Hv">
  1406. <greatestDifference id="H">HH–HH v</greatestDifference>
  1407. </intervalFormatItem>
  1408. <intervalFormatItem id="M">
  1409. <greatestDifference id="M">M–M</greatestDifference>
  1410. </intervalFormatItem>
  1411. <intervalFormatItem id="Md">
  1412. <greatestDifference id="d">d–d/M</greatestDifference>
  1413. <greatestDifference id="M">d/M – d/M</greatestDifference>
  1414. </intervalFormatItem>
  1415. <intervalFormatItem id="MEd">
  1416. <greatestDifference id="d">E d/M – E d/M</greatestDifference>
  1417. <greatestDifference id="M">E፣ d/M – E፣ d/M</greatestDifference>
  1418. </intervalFormatItem>
  1419. <intervalFormatItem id="MMM">
  1420. <greatestDifference id="M">MMM–MMM</greatestDifference>
  1421. </intervalFormatItem>
  1422. <intervalFormatItem id="MMMd">
  1423. <greatestDifference id="d">MMM d–d</greatestDifference>
  1424. <greatestDifference id="M">MMM d – MMM d</greatestDifference>
  1425. </intervalFormatItem>
  1426. <intervalFormatItem id="MMMEd">
  1427. <greatestDifference id="d">E d – E d፣ MMM</greatestDifference>
  1428. <greatestDifference id="M">E፣ MMM d – E፣ MMM d</greatestDifference>
  1429. </intervalFormatItem>
  1430. <intervalFormatItem id="y">
  1431. <greatestDifference id="y">y–y</greatestDifference>
  1432. </intervalFormatItem>
  1433. <intervalFormatItem id="yM">
  1434. <greatestDifference id="M">M/y – M/y</greatestDifference>
  1435. <greatestDifference id="y">M/y – M/y</greatestDifference>
  1436. </intervalFormatItem>
  1437. <intervalFormatItem id="yMd">
  1438. <greatestDifference id="d">d/M/y – d/M/y</greatestDifference>
  1439. <greatestDifference id="M">d/M/y – d/M/y</greatestDifference>
  1440. <greatestDifference id="y">d/M/y – d/M/y</greatestDifference>
  1441. </intervalFormatItem>
  1442. <intervalFormatItem id="yMEd">
  1443. <greatestDifference id="d">E፣ d/M/y – E፣ d/M/y</greatestDifference>
  1444. <greatestDifference id="M">E d/M/ – E d/M፣ y</greatestDifference>
  1445. <greatestDifference id="y">E፣ d/M/y – E፣ d/M/y</greatestDifference>
  1446. </intervalFormatItem>
  1447. <intervalFormatItem id="yMMM">
  1448. <greatestDifference id="M">MMM–MMM፣ y</greatestDifference>
  1449. <greatestDifference id="y">MMM y – MMM y</greatestDifference>
  1450. </intervalFormatItem>
  1451. <intervalFormatItem id="yMMMd">
  1452. <greatestDifference id="d">MMM d–d፣ y</greatestDifference>
  1453. <greatestDifference id="M">MMM d – MMM d፣ y</greatestDifference>
  1454. <greatestDifference id="y">MMM d፣ y – MMM d፣ y</greatestDifference>
  1455. </intervalFormatItem>
  1456. <intervalFormatItem id="yMMMEd">
  1457. <greatestDifference id="d">E MMM d – E MMM d፣ y</greatestDifference>
  1458. <greatestDifference id="M">E MMM d – E MMM d፣ y</greatestDifference>
  1459. <greatestDifference id="y">E፣ MMM d፣ y – E፣ MMM d፣ y</greatestDifference>
  1460. </intervalFormatItem>
  1461. <intervalFormatItem id="yMMMM">
  1462. <greatestDifference id="M">MMMM–MMMM y</greatestDifference>
  1463. <greatestDifference id="y">MMMM y – MMMM y</greatestDifference>
  1464. </intervalFormatItem>
  1465. </intervalFormats>
  1466. </dateTimeFormats>
  1467. </calendar>
  1468. <calendar type="islamic">
  1469. <months>
  1470. <monthContext type="format">
  1471. <monthWidth type="wide">
  1472. <month type="1" draft="unconfirmed">ሙሀረም</month>
  1473. <month type="2" draft="unconfirmed">ሳፈር</month>
  1474. <month type="3" draft="unconfirmed">ረቢዑል አወል</month>
  1475. <month type="4" draft="unconfirmed">ረቢዑል አኺር</month>
  1476. <month type="5" draft="unconfirmed">ጀማደል አወል</month>
  1477. <month type="6" draft="unconfirmed">ጀማደል አኺር</month>
  1478. <month type="7" draft="unconfirmed">ረጀብ</month>
  1479. <month type="8" draft="unconfirmed">ሻእባን</month>
  1480. <month type="9" draft="unconfirmed">ረመዳን</month>
  1481. <month type="10" draft="unconfirmed">ሸዋል</month>
  1482. <month type="11" draft="unconfirmed">ዙልቂዳህ</month>
  1483. <month type="12" draft="unconfirmed">ዙልሂጃህ</month>
  1484. </monthWidth>
  1485. </monthContext>
  1486. </months>
  1487. </calendar>
  1488. </calendars>
  1489. <fields>
  1490. <field type="era">
  1491. <displayName>ዘመን</displayName>
  1492. </field>
  1493. <field type="year">
  1494. <displayName>ዓመት</displayName>
  1495. <relative type="-1">ያለፈው ዓመት</relative>
  1496. <relative type="0">በዚህ ዓመት</relative>
  1497. <relative type="1">የሚቀጥለው ዓመት</relative>
  1498. <relativeTime type="future">
  1499. <relativeTimePattern count="one">በ{0} ዓመታት ውስጥ</relativeTimePattern>
  1500. <relativeTimePattern count="other">በ{0} ዓመታት ውስጥ</relativeTimePattern>
  1501. </relativeTime>
  1502. <relativeTime type="past">
  1503. <relativeTimePattern count="one">ከ{0} ዓመት በፊት</relativeTimePattern>
  1504. <relativeTimePattern count="other">ከ{0} ዓመታት በፊት</relativeTimePattern>
  1505. </relativeTime>
  1506. </field>
  1507. <field type="month">
  1508. <displayName>ወር</displayName>
  1509. <relative type="-1">ያለፈው ወር</relative>
  1510. <relative type="0">በዚህ ወር</relative>
  1511. <relative type="1">የሚቀጥለው ወር</relative>
  1512. <relativeTime type="future">
  1513. <relativeTimePattern count="one">በ{0} ወር ውስጥ</relativeTimePattern>
  1514. <relativeTimePattern count="other">በ{0} ወራት ውስጥ</relativeTimePattern>
  1515. </relativeTime>
  1516. <relativeTime type="past">
  1517. <relativeTimePattern count="one">ከ{0} ወር በፊት</relativeTimePattern>
  1518. <relativeTimePattern count="other">ከ{0} ወራት በፊት</relativeTimePattern>
  1519. </relativeTime>
  1520. </field>
  1521. <field type="week">
  1522. <displayName>ሳምንት</displayName>
  1523. <relative type="-1">ባለፈው ሳምንት</relative>
  1524. <relative type="0">በዚህ ሣምንት</relative>
  1525. <relative type="1">የሚቀጥለው ሳምንት</relative>
  1526. <relativeTime type="future">
  1527. <relativeTimePattern count="one">በ{0} ሳምንት ውስጥ</relativeTimePattern>
  1528. <relativeTimePattern count="other">በ{0} ሳምንታት ውስጥ</relativeTimePattern>
  1529. </relativeTime>
  1530. <relativeTime type="past">
  1531. <relativeTimePattern count="one">ከ{0} ሳምንት በፊት</relativeTimePattern>
  1532. <relativeTimePattern count="other">ከ{0} ሳምንታት በፊት</relativeTimePattern>
  1533. </relativeTime>
  1534. </field>
  1535. <field type="day">
  1536. <displayName>ቀን</displayName>
  1537. <relative type="-2">ከትናንት ወዲያ</relative>
  1538. <relative type="-1">ትናንት</relative>
  1539. <relative type="0">ዛሬ</relative>
  1540. <relative type="1">ነገ</relative>
  1541. <relative type="2">ከነገ ወዲያ</relative>
  1542. <relativeTime type="future">
  1543. <relativeTimePattern count="one">በ{0} ቀን ውስጥ</relativeTimePattern>
  1544. <relativeTimePattern count="other">በ{0} ቀናት ውስጥ</relativeTimePattern>
  1545. </relativeTime>
  1546. <relativeTime type="past">
  1547. <relativeTimePattern count="one">ከ{0} ቀን በፊት</relativeTimePattern>
  1548. <relativeTimePattern count="other">ከ{0} ቀናት በፊት</relativeTimePattern>
  1549. </relativeTime>
  1550. </field>
  1551. <field type="weekday">
  1552. <displayName>አዘቦት</displayName>
  1553. </field>
  1554. <field type="sun">
  1555. <relative type="-1">ያለፈው እሑድ</relative>
  1556. <relative type="0">የአሁኑ እሑድ</relative>
  1557. <relative type="1">የሚቀጥለው እሑድ</relative>
  1558. </field>
  1559. <field type="mon">
  1560. <relative type="-1">ያለፈው ሰኞ</relative>
  1561. <relative type="0">የአሁኑ ሰኞ</relative>
  1562. <relative type="1">የሚቀጥለው ሰኞ</relative>
  1563. </field>
  1564. <field type="tue">
  1565. <relative type="-1">ያለፈው ማክሰኞ</relative>
  1566. <relative type="0">የአሁኑ ማክሰኞ</relative>
  1567. <relative type="1">የሚቀጥለው ማክሰኞ</relative>
  1568. </field>
  1569. <field type="wed">
  1570. <relative type="-1">ያለፈው እሮብ</relative>
  1571. <relative type="0">የአሁኑ እሮብ</relative>
  1572. <relative type="1">የሚቀጥለው እሮብ</relative>
  1573. </field>
  1574. <field type="thu">
  1575. <relative type="-1">ያለፈው ሐመስ</relative>
  1576. <relative type="0">የአሁኑ ሐሙስ</relative>
  1577. <relative type="1">የሚቀጥለው ሐሙስ</relative>
  1578. </field>
  1579. <field type="fri">
  1580. <relative type="-1">ያለፈው አርብ</relative>
  1581. <relative type="0">የአሁኑ አርብ</relative>
  1582. <relative type="1">የሚቀጥለው አርብ</relative>
  1583. </field>
  1584. <field type="sat">
  1585. <relative type="-1">የባለፈው ቅዳሜ</relative>
  1586. <relative type="0">የአሁኑ ቅዳሜ</relative>
  1587. <relative type="1">የሚቀጥለው ቅዳሜ</relative>
  1588. </field>
  1589. <field type="dayperiod">
  1590. <displayName>ጥዋት/ከሰዓት</displayName>
  1591. </field>
  1592. <field type="hour">
  1593. <displayName>ሰዓት</displayName>
  1594. <relativeTime type="future">
  1595. <relativeTimePattern count="one">በ{0} ሰዓት ውስጥ</relativeTimePattern>
  1596. <relativeTimePattern count="other">በ{0} ሰዓቶች ውስጥ</relativeTimePattern>
  1597. </relativeTime>
  1598. <relativeTime type="past">
  1599. <relativeTimePattern count="one">ከ{0} ሰዓት በፊት</relativeTimePattern>
  1600. <relativeTimePattern count="other">ከ{0} ሰዓቶች በፊት</relativeTimePattern>
  1601. </relativeTime>
  1602. </field>
  1603. <field type="minute">
  1604. <displayName>ደቂቃ</displayName>
  1605. <relativeTime type="future">
  1606. <relativeTimePattern count="one">በ{0} ደቂቃ ውስጥ</relativeTimePattern>
  1607. <relativeTimePattern count="other">በ{0} ደቂቃዎች ውስጥ</relativeTimePattern>
  1608. </relativeTime>
  1609. <relativeTime type="past">
  1610. <relativeTimePattern count="one">ከ{0} ደቂቃ በፊት</relativeTimePattern>
  1611. <relativeTimePattern count="other">ከ{0} ደቂቃዎች በፊት</relativeTimePattern>
  1612. </relativeTime>
  1613. </field>
  1614. <field type="second">
  1615. <displayName>ሰከንድ</displayName>
  1616. <relative type="0">አሁን</relative>
  1617. <relativeTime type="future">
  1618. <relativeTimePattern count="one">በ{0} ሰከንድ ውስጥ</relativeTimePattern>
  1619. <relativeTimePattern count="other">በ{0} ሰከንዶች ውስጥ</relativeTimePattern>
  1620. </relativeTime>
  1621. <relativeTime type="past">
  1622. <relativeTimePattern count="one">ከ{0} ሰከንድ በፊት</relativeTimePattern>
  1623. <relativeTimePattern count="other">ከ{0} ሰከንዶች በፊት</relativeTimePattern>
  1624. </relativeTime>
  1625. </field>
  1626. <field type="zone">
  1627. <displayName>የሰዓት ሰቅ</displayName>
  1628. </field>
  1629. </fields>
  1630. <timeZoneNames>
  1631. <hourFormat>+HHmm;-HHmm</hourFormat>
  1632. <gmtFormat>ጂ ኤም ቲ{0}</gmtFormat>
  1633. <gmtZeroFormat>ጂ ኤም ቲ</gmtZeroFormat>
  1634. <regionFormat>{0} ጊዜ</regionFormat>
  1635. <regionFormat type="daylight">{0} የቀን ብርሃን ሰዓት</regionFormat>
  1636. <regionFormat type="standard">{0} መደበኛ ሰዓት</regionFormat>
  1637. <fallbackFormat>{1} ({0})</fallbackFormat>
  1638. <zone type="Etc/Unknown">
  1639. <exemplarCity>ያልታወቀ ከተማ</exemplarCity>
  1640. </zone>
  1641. <zone type="Europe/Andorra">
  1642. <exemplarCity>አንዶራ</exemplarCity>
  1643. </zone>
  1644. <zone type="Asia/Dubai">
  1645. <exemplarCity>ዱባይ</exemplarCity>
  1646. </zone>
  1647. <zone type="Asia/Kabul">
  1648. <exemplarCity>ካቡል</exemplarCity>
  1649. </zone>
  1650. <zone type="America/Antigua">
  1651. <exemplarCity>አንቲጓ</exemplarCity>
  1652. </zone>
  1653. <zone type="America/Anguilla">
  1654. <exemplarCity>አንጉይላ</exemplarCity>
  1655. </zone>
  1656. <zone type="Europe/Tirane">
  1657. <exemplarCity>ቴራን</exemplarCity>
  1658. </zone>
  1659. <zone type="Asia/Yerevan">
  1660. <exemplarCity>ይሬቫን</exemplarCity>
  1661. </zone>
  1662. <zone type="Africa/Luanda">
  1663. <exemplarCity>ሉአንዳ</exemplarCity>
  1664. </zone>
  1665. <zone type="Antarctica/Rothera">
  1666. <exemplarCity>ሮቴራ</exemplarCity>
  1667. </zone>
  1668. <zone type="Antarctica/Palmer">
  1669. <exemplarCity>ፓልመር</exemplarCity>
  1670. </zone>
  1671. <zone type="Antarctica/Syowa">
  1672. <exemplarCity>ስዮዋ</exemplarCity>
  1673. </zone>
  1674. <zone type="Antarctica/Mawson">
  1675. <exemplarCity>ናውሰን</exemplarCity>
  1676. </zone>
  1677. <zone type="Antarctica/Davis">
  1678. <exemplarCity>ዳቪስ</exemplarCity>
  1679. </zone>
  1680. <zone type="Antarctica/Vostok">
  1681. <exemplarCity>ቭስቶክ</exemplarCity>
  1682. </zone>
  1683. <zone type="Antarctica/Casey">
  1684. <exemplarCity>ካዚይ</exemplarCity>
  1685. </zone>
  1686. <zone type="Antarctica/DumontDUrville">
  1687. <exemplarCity>ደሞንት ዲኡርቪል</exemplarCity>
  1688. </zone>
  1689. <zone type="Antarctica/McMurdo">
  1690. <exemplarCity>ማክመርዶ</exemplarCity>
  1691. </zone>
  1692. <zone type="America/Argentina/Rio_Gallegos">
  1693. <exemplarCity>ሪዮ ጋሌጎስ</exemplarCity>
  1694. </zone>
  1695. <zone type="America/Mendoza">
  1696. <exemplarCity>ሜንዶዛ</exemplarCity>
  1697. </zone>
  1698. <zone type="America/Argentina/San_Juan">
  1699. <exemplarCity>ሳን ጁአን</exemplarCity>
  1700. </zone>
  1701. <zone type="America/Argentina/Ushuaia">
  1702. <exemplarCity>ኡሹአኢ</exemplarCity>
  1703. </zone>
  1704. <zone type="America/Argentina/La_Rioja">
  1705. <exemplarCity>ላ ሪኦጃ</exemplarCity>
  1706. </zone>
  1707. <zone type="America/Argentina/San_Luis">
  1708. <exemplarCity>ሳን ሊውስ</exemplarCity>
  1709. </zone>
  1710. <zone type="America/Catamarca">
  1711. <exemplarCity>ካታማርካ</exemplarCity>
  1712. </zone>
  1713. <zone type="America/Argentina/Salta">
  1714. <exemplarCity>ሳልታ</exemplarCity>
  1715. </zone>
  1716. <zone type="America/Jujuy">
  1717. <exemplarCity>ጁጁይ</exemplarCity>
  1718. </zone>
  1719. <zone type="America/Argentina/Tucuman">
  1720. <exemplarCity>ቱኩማን</exemplarCity>
  1721. </zone>
  1722. <zone type="America/Cordoba">
  1723. <exemplarCity>ኮርዶባ</exemplarCity>
  1724. </zone>
  1725. <zone type="America/Buenos_Aires">
  1726. <exemplarCity>ቦነስ አይረስ</exemplarCity>
  1727. </zone>
  1728. <zone type="Pacific/Pago_Pago">
  1729. <exemplarCity>ፓጎ ፓጎ</exemplarCity>
  1730. </zone>
  1731. <zone type="Europe/Vienna">
  1732. <exemplarCity>ቪየና</exemplarCity>
  1733. </zone>
  1734. <zone type="Australia/Perth">
  1735. <exemplarCity>ፐርዝ</exemplarCity>
  1736. </zone>
  1737. <zone type="Australia/Eucla">
  1738. <exemplarCity>ኡክላ</exemplarCity>
  1739. </zone>
  1740. <zone type="Australia/Darwin">
  1741. <exemplarCity>ዳርዊን</exemplarCity>
  1742. </zone>
  1743. <zone type="Australia/Adelaide">
  1744. <exemplarCity>አዴሌእድ</exemplarCity>
  1745. </zone>
  1746. <zone type="Australia/Broken_Hill">
  1747. <exemplarCity>ብሮክን ሂል</exemplarCity>
  1748. </zone>
  1749. <zone type="Australia/Currie">
  1750. <exemplarCity>ከሪ</exemplarCity>
  1751. </zone>
  1752. <zone type="Australia/Melbourne">
  1753. <exemplarCity>ሜልቦርን</exemplarCity>
  1754. </zone>
  1755. <zone type="Australia/Hobart">
  1756. <exemplarCity>ሆባርት</exemplarCity>
  1757. </zone>
  1758. <zone type="Australia/Lindeman">
  1759. <exemplarCity>ሊንድማን</exemplarCity>
  1760. </zone>
  1761. <zone type="Australia/Sydney">
  1762. <exemplarCity>ሲድኒ</exemplarCity>
  1763. </zone>
  1764. <zone type="Australia/Brisbane">
  1765. <exemplarCity>ብሪስቤን</exemplarCity>
  1766. </zone>
  1767. <zone type="Antarctica/Macquarie">
  1768. <exemplarCity>ማከሪ</exemplarCity>
  1769. </zone>
  1770. <zone type="Australia/Lord_Howe">
  1771. <exemplarCity>ሎርድ ሆዊ</exemplarCity>
  1772. </zone>
  1773. <zone type="America/Aruba">
  1774. <exemplarCity>አሩባ</exemplarCity>
  1775. </zone>
  1776. <zone type="Europe/Mariehamn">
  1777. <exemplarCity>ሜሪሃምን</exemplarCity>
  1778. </zone>
  1779. <zone type="Asia/Baku">
  1780. <exemplarCity>ባኩ</exemplarCity>
  1781. </zone>
  1782. <zone type="Europe/Sarajevo">
  1783. <exemplarCity>ሳሪየቮ</exemplarCity>
  1784. </zone>
  1785. <zone type="America/Barbados">
  1786. <exemplarCity>ባርቤዶስ</exemplarCity>
  1787. </zone>
  1788. <zone type="Asia/Dhaka">
  1789. <exemplarCity>ዳካ</exemplarCity>
  1790. </zone>
  1791. <zone type="Europe/Brussels">
  1792. <exemplarCity>ብራስል</exemplarCity>
  1793. </zone>
  1794. <zone type="Africa/Ouagadougou">
  1795. <exemplarCity>ኡጋዱጉ</exemplarCity>
  1796. </zone>
  1797. <zone type="Europe/Sofia">
  1798. <exemplarCity>ሶፊያ</exemplarCity>
  1799. </zone>
  1800. <zone type="Asia/Bahrain">
  1801. <exemplarCity>ባህሬን</exemplarCity>
  1802. </zone>
  1803. <zone type="Africa/Bujumbura">
  1804. <exemplarCity>ቡጁምብራ</exemplarCity>
  1805. </zone>
  1806. <zone type="Africa/Porto-Novo">
  1807. <exemplarCity>ፖርቶ - ኖቮ</exemplarCity>
  1808. </zone>
  1809. <zone type="America/St_Barthelemy">
  1810. <exemplarCity>ቅድስት ቤርተሎሜ</exemplarCity>
  1811. </zone>
  1812. <zone type="Atlantic/Bermuda">
  1813. <exemplarCity>ቤርሙዳ</exemplarCity>
  1814. </zone>
  1815. <zone type="Asia/Brunei">
  1816. <exemplarCity>ብሩናይ</exemplarCity>
  1817. </zone>
  1818. <zone type="America/La_Paz">
  1819. <exemplarCity>ላ ፓዝ</exemplarCity>
  1820. </zone>
  1821. <zone type="America/Kralendijk">
  1822. <exemplarCity>ክራለንዲይክ</exemplarCity>
  1823. </zone>
  1824. <zone type="America/Eirunepe">
  1825. <exemplarCity>ኢሩኔፕ</exemplarCity>
  1826. </zone>
  1827. <zone type="America/Rio_Branco">
  1828. <exemplarCity>ሪዮ ብራንኮ</exemplarCity>
  1829. </zone>
  1830. <zone type="America/Porto_Velho">
  1831. <exemplarCity>ፔትሮ ቬልሆ</exemplarCity>
  1832. </zone>
  1833. <zone type="America/Boa_Vista">
  1834. <exemplarCity>ቦአ ቪስታ</exemplarCity>
  1835. </zone>
  1836. <zone type="America/Manaus">
  1837. <exemplarCity>ማናኡስ</exemplarCity>
  1838. </zone>
  1839. <zone type="America/Cuiaba">
  1840. <exemplarCity>ኩየአባ</exemplarCity>
  1841. </zone>
  1842. <zone type="America/Santarem">
  1843. <exemplarCity>ሳንታሬም</exemplarCity>
  1844. </zone>
  1845. <zone type="America/Campo_Grande">
  1846. <exemplarCity>ካምፖ ግራንዴ</exemplarCity>
  1847. </zone>
  1848. <zone type="America/Belem">
  1849. <exemplarCity>ቤለም</exemplarCity>
  1850. </zone>
  1851. <zone type="America/Araguaina">
  1852. <exemplarCity>አራጉየና</exemplarCity>
  1853. </zone>
  1854. <zone type="America/Sao_Paulo">
  1855. <exemplarCity>ሴኦ ፖሎ</exemplarCity>
  1856. </zone>
  1857. <zone type="America/Bahia">
  1858. <exemplarCity>ባሂአ</exemplarCity>
  1859. </zone>
  1860. <zone type="America/Fortaleza">
  1861. <exemplarCity>ፎርታሌዛ</exemplarCity>
  1862. </zone>
  1863. <zone type="America/Maceio">
  1864. <exemplarCity>ሜሲኦ</exemplarCity>
  1865. </zone>
  1866. <zone type="America/Recife">
  1867. <exemplarCity>ፓሲፍ</exemplarCity>
  1868. </zone>
  1869. <zone type="America/Noronha">
  1870. <exemplarCity>ኖሮኛ</exemplarCity>
  1871. </zone>
  1872. <zone type="America/Nassau">
  1873. <exemplarCity>ናሳው</exemplarCity>
  1874. </zone>
  1875. <zone type="Asia/Thimphu">
  1876. <exemplarCity>ቲምፉ</exemplarCity>
  1877. </zone>
  1878. <zone type="Africa/Gaborone">
  1879. <exemplarCity>ጋቦሮን</exemplarCity>
  1880. </zone>
  1881. <zone type="Europe/Minsk">
  1882. <exemplarCity>ሚንስክ</exemplarCity>
  1883. </zone>
  1884. <zone type="America/Belize">
  1885. <exemplarCity>ቤሊዝ</exemplarCity>
  1886. </zone>
  1887. <zone type="America/Dawson">
  1888. <exemplarCity>ዳውሰን</exemplarCity>
  1889. </zone>
  1890. <zone type="America/Whitehorse">
  1891. <exemplarCity>ኋይትሆርስ</exemplarCity>
  1892. </zone>
  1893. <zone type="America/Inuvik">
  1894. <exemplarCity>ኢኑቪክ</exemplarCity>
  1895. </zone>
  1896. <zone type="America/Vancouver">
  1897. <exemplarCity>ቫንኮቨር</exemplarCity>
  1898. </zone>
  1899. <zone type="America/Dawson_Creek">
  1900. <exemplarCity>ዳውሰን ክሬክ</exemplarCity>
  1901. </zone>
  1902. <zone type="America/Creston">
  1903. <exemplarCity>ክረስተን</exemplarCity>
  1904. </zone>
  1905. <zone type="America/Yellowknife">
  1906. <exemplarCity>የሎውናይፍ</exemplarCity>
  1907. </zone>
  1908. <zone type="America/Edmonton">
  1909. <exemplarCity>ኤድመንተን</exemplarCity>
  1910. </zone>
  1911. <zone type="America/Swift_Current">
  1912. <exemplarCity>የሐዋላ ገንዘብ</exemplarCity>
  1913. </zone>
  1914. <zone type="America/Cambridge_Bay">
  1915. <exemplarCity>ካምብሪጅ ቤይ</exemplarCity>
  1916. </zone>
  1917. <zone type="America/Regina">
  1918. <exemplarCity>ረጂና</exemplarCity>
  1919. </zone>
  1920. <zone type="America/Winnipeg">
  1921. <exemplarCity>ዊኒፔግ</exemplarCity>
  1922. </zone>
  1923. <zone type="America/Resolute">
  1924. <exemplarCity>ቆራጥ</exemplarCity>
  1925. </zone>
  1926. <zone type="America/Rainy_River">
  1927. <exemplarCity>ሬኒ ሪቨር</exemplarCity>
  1928. </zone>
  1929. <zone type="America/Rankin_Inlet">
  1930. <exemplarCity>ራንኪን ኢንሌት</exemplarCity>
  1931. </zone>
  1932. <zone type="America/Coral_Harbour">
  1933. <exemplarCity>አቲኮካን</exemplarCity>
  1934. </zone>
  1935. <zone type="America/Thunder_Bay">
  1936. <exemplarCity>ተንደር ቤይ</exemplarCity>
  1937. </zone>
  1938. <zone type="America/Nipigon">
  1939. <exemplarCity>ኒፒጎን</exemplarCity>
  1940. </zone>
  1941. <zone type="America/Toronto">
  1942. <exemplarCity>ቶሮንቶ</exemplarCity>
  1943. </zone>
  1944. <zone type="America/Iqaluit">
  1945. <exemplarCity>ኢኳሊውት</exemplarCity>
  1946. </zone>
  1947. <zone type="America/Pangnirtung">
  1948. <exemplarCity>ፓንግኒርተንግ</exemplarCity>
  1949. </zone>
  1950. <zone type="America/Moncton">
  1951. <exemplarCity>ሞንክቶን</exemplarCity>
  1952. </zone>
  1953. <zone type="America/Halifax">
  1954. <exemplarCity>ሃሊፋክስ</exemplarCity>
  1955. </zone>
  1956. <zone type="America/Goose_Bay">
  1957. <exemplarCity>ጉዝ ቤይ</exemplarCity>
  1958. </zone>
  1959. <zone type="America/Glace_Bay">
  1960. <exemplarCity>ግሌስ ቤይ</exemplarCity>
  1961. </zone>
  1962. <zone type="America/Blanc-Sablon">
  1963. <exemplarCity>ብላንክ- ሳብሎን</exemplarCity>
  1964. </zone>
  1965. <zone type="America/St_Johns">
  1966. <exemplarCity>ቅዱስ ዮሐንስ</exemplarCity>
  1967. </zone>
  1968. <zone type="Indian/Cocos">
  1969. <exemplarCity>ኮኮስ</exemplarCity>
  1970. </zone>
  1971. <zone type="Africa/Kinshasa">
  1972. <exemplarCity>ኪንሳሻ</exemplarCity>
  1973. </zone>
  1974. <zone type="Africa/Lubumbashi">
  1975. <exemplarCity>ሉቡምባሺ</exemplarCity>
  1976. </zone>
  1977. <zone type="Africa/Bangui">
  1978. <exemplarCity>ባንጉኢ</exemplarCity>
  1979. </zone>
  1980. <zone type="Africa/Brazzaville">
  1981. <exemplarCity>ብራዛቪል</exemplarCity>
  1982. </zone>
  1983. <zone type="Europe/Zurich">
  1984. <exemplarCity>ዙሪክ</exemplarCity>
  1985. </zone>
  1986. <zone type="Africa/Abidjan">
  1987. <exemplarCity>አቢጃን</exemplarCity>
  1988. </zone>
  1989. <zone type="Pacific/Rarotonga">
  1990. <exemplarCity>ራሮቶንጋ</exemplarCity>
  1991. </zone>
  1992. <zone type="Pacific/Easter">
  1993. <exemplarCity>ፋሲካ</exemplarCity>
  1994. </zone>
  1995. <zone type="America/Santiago">
  1996. <exemplarCity>ሳንቲያጎ</exemplarCity>
  1997. </zone>
  1998. <zone type="Africa/Douala">
  1999. <exemplarCity>ዱአላ</exemplarCity>
  2000. </zone>
  2001. <zone type="Asia/Kashgar">
  2002. <exemplarCity>ካሽጋር</exemplarCity>
  2003. </zone>
  2004. <zone type="Asia/Urumqi">
  2005. <exemplarCity>ኡሩምኪ</exemplarCity>
  2006. </zone>
  2007. <zone type="Asia/Chongqing">
  2008. <exemplarCity>ቾንግኪንግ</exemplarCity>
  2009. </zone>
  2010. <zone type="Asia/Shanghai">
  2011. <exemplarCity>ሸንጋይ</exemplarCity>
  2012. </zone>
  2013. <zone type="Asia/Harbin">
  2014. <exemplarCity>ሃሪቢን</exemplarCity>
  2015. </zone>
  2016. <zone type="America/Bogota">
  2017. <exemplarCity>ቦጎታ</exemplarCity>
  2018. </zone>
  2019. <zone type="America/Costa_Rica">
  2020. <exemplarCity>ኮስታሪካ</exemplarCity>
  2021. </zone>
  2022. <zone type="America/Havana">
  2023. <exemplarCity>ሃቫና</exemplarCity>
  2024. </zone>
  2025. <zone type="Atlantic/Cape_Verde">
  2026. <exemplarCity>ኬፕ ቬርደ</exemplarCity>
  2027. </zone>
  2028. <zone type="America/Curacao">
  2029. <exemplarCity>ኩራሳዎ</exemplarCity>
  2030. </zone>
  2031. <zone type="Indian/Christmas">
  2032. <exemplarCity>ገና</exemplarCity>
  2033. </zone>
  2034. <zone type="Asia/Nicosia">
  2035. <exemplarCity>ኒኮሲአ</exemplarCity>
  2036. </zone>
  2037. <zone type="Europe/Prague">
  2038. <exemplarCity>ፕራግ</exemplarCity>
  2039. </zone>
  2040. <zone type="Europe/Busingen">
  2041. <exemplarCity>ቡሲንገን</exemplarCity>
  2042. </zone>
  2043. <zone type="Europe/Berlin">
  2044. <exemplarCity>በርሊን</exemplarCity>
  2045. </zone>
  2046. <zone type="Africa/Djibouti">
  2047. <exemplarCity>ጅቡቲ</exemplarCity>
  2048. </zone>
  2049. <zone type="Europe/Copenhagen">
  2050. <exemplarCity>ኮፐንሃገን</exemplarCity>
  2051. </zone>
  2052. <zone type="America/Dominica">
  2053. <exemplarCity>ዶሜኒካ</exemplarCity>
  2054. </zone>
  2055. <zone type="America/Santo_Domingo">
  2056. <exemplarCity>ሳንቶ ዶሚንጎ</exemplarCity>
  2057. </zone>
  2058. <zone type="Africa/Algiers">
  2059. <exemplarCity>አልጀርስ</exemplarCity>
  2060. </zone>
  2061. <zone type="Pacific/Galapagos">
  2062. <exemplarCity>ጋላፓጎስ</exemplarCity>
  2063. </zone>
  2064. <zone type="America/Guayaquil">
  2065. <exemplarCity>ጉያኩይል</exemplarCity>
  2066. </zone>
  2067. <zone type="Europe/Tallinn">
  2068. <exemplarCity>ታሊን</exemplarCity>
  2069. </zone>
  2070. <zone type="Africa/Cairo">
  2071. <exemplarCity>ካይሮ</exemplarCity>
  2072. </zone>
  2073. <zone type="Africa/El_Aaiun">
  2074. <exemplarCity>ኤል አዩአን</exemplarCity>
  2075. </zone>
  2076. <zone type="Africa/Asmera">
  2077. <exemplarCity>አስመራ</exemplarCity>
  2078. </zone>
  2079. <zone type="Atlantic/Canary">
  2080. <exemplarCity>ካናሪ</exemplarCity>
  2081. </zone>
  2082. <zone type="Africa/Ceuta">
  2083. <exemplarCity>ሲኡታ</exemplarCity>
  2084. </zone>
  2085. <zone type="Europe/Madrid">
  2086. <exemplarCity>ማድሪድ</exemplarCity>
  2087. </zone>
  2088. <zone type="Africa/Addis_Ababa">
  2089. <exemplarCity>አዲስ አበባ</exemplarCity>
  2090. </zone>
  2091. <zone type="Europe/Helsinki">
  2092. <exemplarCity>ሄልሲንኪ</exemplarCity>
  2093. </zone>
  2094. <zone type="Pacific/Fiji">
  2095. <exemplarCity>ፊጂ</exemplarCity>
  2096. </zone>
  2097. <zone type="Atlantic/Stanley">
  2098. <exemplarCity>ስታንሌይ</exemplarCity>
  2099. </zone>
  2100. <zone type="Pacific/Truk">
  2101. <exemplarCity>ቹክ</exemplarCity>
  2102. </zone>
  2103. <zone type="Pacific/Ponape">
  2104. <exemplarCity>ፖህንፔ</exemplarCity>
  2105. </zone>
  2106. <zone type="Pacific/Kosrae">
  2107. <exemplarCity>ኮስሬ እ</exemplarCity>
  2108. </zone>
  2109. <zone type="Atlantic/Faeroe">
  2110. <exemplarCity>ፋሮእ</exemplarCity>
  2111. </zone>
  2112. <zone type="Europe/Paris">
  2113. <exemplarCity>ፓሪስ</exemplarCity>
  2114. </zone>
  2115. <zone type="Africa/Libreville">
  2116. <exemplarCity>ሊብርልቪል</exemplarCity>
  2117. </zone>
  2118. <zone type="Europe/London">
  2119. <exemplarCity>ለንደን</exemplarCity>
  2120. </zone>
  2121. <zone type="America/Grenada">
  2122. <exemplarCity>ግሬናዳ</exemplarCity>
  2123. </zone>
  2124. <zone type="Asia/Tbilisi">
  2125. <exemplarCity>ትብሊሲ</exemplarCity>
  2126. </zone>
  2127. <zone type="America/Cayenne">
  2128. <exemplarCity>ካይንኤ</exemplarCity>
  2129. </zone>
  2130. <zone type="Europe/Guernsey">
  2131. <exemplarCity>ጉርነሲ</exemplarCity>
  2132. </zone>
  2133. <zone type="Africa/Accra">
  2134. <exemplarCity>አክራ</exemplarCity>
  2135. </zone>
  2136. <zone type="Europe/Gibraltar">
  2137. <exemplarCity>ጂብራልታር</exemplarCity>
  2138. </zone>
  2139. <zone type="America/Thule">
  2140. <exemplarCity>ቱሌ</exemplarCity>
  2141. </zone>
  2142. <zone type="America/Godthab">
  2143. <exemplarCity>ጋድታብ</exemplarCity>
  2144. </zone>
  2145. <zone type="America/Scoresbysund">
  2146. <exemplarCity>ስኮርስባይሰንድ</exemplarCity>
  2147. </zone>
  2148. <zone type="America/Danmarkshavn">
  2149. <exemplarCity>ዳንማርክሻቭን</exemplarCity>
  2150. </zone>
  2151. <zone type="Africa/Banjul">
  2152. <exemplarCity>ባንጁል</exemplarCity>
  2153. </zone>
  2154. <zone type="Africa/Conakry">
  2155. <exemplarCity>ኮናክሬ</exemplarCity>
  2156. </zone>
  2157. <zone type="America/Guadeloupe">
  2158. <exemplarCity>ጕዳሉፕ</exemplarCity>
  2159. </zone>
  2160. <zone type="Africa/Malabo">
  2161. <exemplarCity>ማሌቦ</exemplarCity>
  2162. </zone>
  2163. <zone type="Europe/Athens">
  2164. <exemplarCity>አቴንስ</exemplarCity>
  2165. </zone>
  2166. <zone type="Atlantic/South_Georgia">
  2167. <exemplarCity>ደቡብ ጆርጂያ</exemplarCity>
  2168. </zone>
  2169. <zone type="America/Guatemala">
  2170. <exemplarCity>ጓቲማላ</exemplarCity>
  2171. </zone>
  2172. <zone type="Pacific/Guam">
  2173. <exemplarCity>ጉአም</exemplarCity>
  2174. </zone>
  2175. <zone type="Africa/Bissau">
  2176. <exemplarCity>ቢሳኦ</exemplarCity>
  2177. </zone>
  2178. <zone type="America/Guyana">
  2179. <exemplarCity>ጉያና</exemplarCity>
  2180. </zone>
  2181. <zone type="Asia/Hong_Kong">
  2182. <exemplarCity>ሆንግ ኮንግ</exemplarCity>
  2183. </zone>
  2184. <zone type="America/Tegucigalpa">
  2185. <exemplarCity>ቴጉሲጋልፓ</exemplarCity>
  2186. </zone>
  2187. <zone type="Europe/Zagreb">
  2188. <exemplarCity>ዛግረብ</exemplarCity>
  2189. </zone>
  2190. <zone type="America/Port-au-Prince">
  2191. <exemplarCity>ፖርት ኦ ፕሪንስ</exemplarCity>
  2192. </zone>
  2193. <zone type="Europe/Budapest">
  2194. <exemplarCity>ቡዳፔስት</exemplarCity>
  2195. </zone>
  2196. <zone type="Asia/Jakarta">
  2197. <exemplarCity>ጃካርታ</exemplarCity>
  2198. </zone>
  2199. <zone type="Asia/Pontianak">
  2200. <exemplarCity>ፖንቲአናክ</exemplarCity>
  2201. </zone>
  2202. <zone type="Asia/Makassar">
  2203. <exemplarCity>ማካሳር</exemplarCity>
  2204. </zone>
  2205. <zone type="Asia/Jayapura">
  2206. <exemplarCity>ጃያፑራ</exemplarCity>
  2207. </zone>
  2208. <zone type="Europe/Dublin">
  2209. <exemplarCity>ደብሊን</exemplarCity>
  2210. </zone>
  2211. <zone type="Asia/Jerusalem">
  2212. <exemplarCity>እየሩሳሌም</exemplarCity>
  2213. </zone>
  2214. <zone type="Europe/Isle_of_Man">
  2215. <exemplarCity>አይስል ኦፍ ማን</exemplarCity>
  2216. </zone>
  2217. <zone type="Asia/Calcutta">
  2218. <exemplarCity>ኮልካታ</exemplarCity>
  2219. </zone>
  2220. <zone type="Indian/Chagos">
  2221. <exemplarCity>ቻጎስ</exemplarCity>
  2222. </zone>
  2223. <zone type="Asia/Baghdad">
  2224. <exemplarCity>ባግዳድ</exemplarCity>
  2225. </zone>
  2226. <zone type="Asia/Tehran">
  2227. <exemplarCity>ቴህራን</exemplarCity>
  2228. </zone>
  2229. <zone type="Atlantic/Reykjavik">
  2230. <exemplarCity>ሬይክጃቪክ</exemplarCity>
  2231. </zone>
  2232. <zone type="Europe/Rome">
  2233. <exemplarCity>ሮም</exemplarCity>
  2234. </zone>
  2235. <zone type="Europe/Jersey">
  2236. <exemplarCity>ጀርሲ</exemplarCity>
  2237. </zone>
  2238. <zone type="America/Jamaica">
  2239. <exemplarCity>ጃማይካ</exemplarCity>
  2240. </zone>
  2241. <zone type="Asia/Amman">
  2242. <exemplarCity>አማን</exemplarCity>
  2243. </zone>
  2244. <zone type="Asia/Tokyo">
  2245. <exemplarCity>ቶኪዮ</exemplarCity>
  2246. </zone>
  2247. <zone type="Africa/Nairobi">
  2248. <exemplarCity>ናይሮቢ</exemplarCity>
  2249. </zone>
  2250. <zone type="Asia/Bishkek">
  2251. <exemplarCity>ቢሽኬክ</exemplarCity>
  2252. </zone>
  2253. <zone type="Asia/Phnom_Penh">
  2254. <exemplarCity>ፍኖም ፔንህ</exemplarCity>
  2255. </zone>
  2256. <zone type="Pacific/Enderbury">
  2257. <exemplarCity>ኢንደርበሪ</exemplarCity>
  2258. </zone>
  2259. <zone type="Pacific/Kiritimati">
  2260. <exemplarCity>ኪሪቲማቲ</exemplarCity>
  2261. </zone>
  2262. <zone type="Pacific/Tarawa">
  2263. <exemplarCity>ታራዋ</exemplarCity>
  2264. </zone>
  2265. <zone type="Indian/Comoro">
  2266. <exemplarCity>ኮሞሮ</exemplarCity>
  2267. </zone>
  2268. <zone type="America/St_Kitts">
  2269. <exemplarCity>ቅዱስ ኪትስ</exemplarCity>
  2270. </zone>
  2271. <zone type="Asia/Pyongyang">
  2272. <exemplarCity>ፕዮንግያንግ</exemplarCity>
  2273. </zone>
  2274. <zone type="Asia/Seoul">
  2275. <exemplarCity>ሴኦል</exemplarCity>
  2276. </zone>
  2277. <zone type="Asia/Kuwait">
  2278. <exemplarCity>ኩዌት</exemplarCity>
  2279. </zone>
  2280. <zone type="America/Cayman">
  2281. <exemplarCity>ካይማን</exemplarCity>
  2282. </zone>
  2283. <zone type="Asia/Aqtau">
  2284. <exemplarCity>አኩታኡ</exemplarCity>
  2285. </zone>
  2286. <zone type="Asia/Oral">
  2287. <exemplarCity>ኦራል</exemplarCity>
  2288. </zone>
  2289. <zone type="Asia/Aqtobe">
  2290. <exemplarCity>አኩቶቤ</exemplarCity>
  2291. </zone>
  2292. <zone type="Asia/Qyzylorda">
  2293. <exemplarCity>ኩይዚሎርዳ</exemplarCity>
  2294. </zone>
  2295. <zone type="Asia/Almaty">
  2296. <exemplarCity>አልማትይ</exemplarCity>
  2297. </zone>
  2298. <zone type="Asia/Vientiane">
  2299. <exemplarCity>ቬንቲአን</exemplarCity>
  2300. </zone>
  2301. <zone type="Asia/Beirut">
  2302. <exemplarCity>ቤሩት</exemplarCity>
  2303. </zone>
  2304. <zone type="America/St_Lucia">
  2305. <exemplarCity>ቅድስት ሉሲያ</exemplarCity>
  2306. </zone>
  2307. <zone type="Europe/Vaduz">
  2308. <exemplarCity>ቫዱዝ</exemplarCity>
  2309. </zone>
  2310. <zone type="Asia/Colombo">
  2311. <exemplarCity>ኮሎምቦ</exemplarCity>
  2312. </zone>
  2313. <zone type="Africa/Monrovia">
  2314. <exemplarCity>ሞንሮቪያ</exemplarCity>
  2315. </zone>
  2316. <zone type="Africa/Maseru">
  2317. <exemplarCity>ማሴሩ</exemplarCity>
  2318. </zone>
  2319. <zone type="Europe/Vilnius">
  2320. <exemplarCity>ቪሊነስ</exemplarCity>
  2321. </zone>
  2322. <zone type="Europe/Luxembourg">
  2323. <exemplarCity>ሉክሰምበርግ</exemplarCity>
  2324. </zone>
  2325. <zone type="Europe/Riga">
  2326. <exemplarCity>ሪጋ</exemplarCity>
  2327. </zone>
  2328. <zone type="Africa/Tripoli">
  2329. <exemplarCity>ትሪፖሊ</exemplarCity>
  2330. </zone>
  2331. <zone type="Africa/Casablanca">
  2332. <exemplarCity>ካዛብላንካ</exemplarCity>
  2333. </zone>
  2334. <zone type="Europe/Monaco">
  2335. <exemplarCity>ሞናኮ</exemplarCity>
  2336. </zone>
  2337. <zone type="Europe/Chisinau">
  2338. <exemplarCity>ቺስናኡ</exemplarCity>
  2339. </zone>
  2340. <zone type="Europe/Podgorica">
  2341. <exemplarCity>ፖድጎሪካ</exemplarCity>
  2342. </zone>
  2343. <zone type="America/Marigot">
  2344. <exemplarCity>ማርጎት</exemplarCity>
  2345. </zone>
  2346. <zone type="Indian/Antananarivo">
  2347. <exemplarCity>አንታናናሪቮ</exemplarCity>
  2348. </zone>
  2349. <zone type="Pacific/Kwajalein">
  2350. <exemplarCity>ክዋጃሊን</exemplarCity>
  2351. </zone>
  2352. <zone type="Pacific/Majuro">
  2353. <exemplarCity>ማጁሩ</exemplarCity>
  2354. </zone>
  2355. <zone type="Europe/Skopje">
  2356. <exemplarCity>ስኮፕጄ</exemplarCity>
  2357. </zone>
  2358. <zone type="Africa/Bamako">
  2359. <exemplarCity>ባማኮ</exemplarCity>
  2360. </zone>
  2361. <zone type="Asia/Rangoon">
  2362. <exemplarCity>ራንጉን</exemplarCity>
  2363. </zone>
  2364. <zone type="Asia/Hovd">
  2365. <exemplarCity>ሆቭድ</exemplarCity>
  2366. </zone>
  2367. <zone type="Asia/Ulaanbaatar">
  2368. <exemplarCity>ኡላአንባአታር</exemplarCity>
  2369. </zone>
  2370. <zone type="Asia/Choibalsan">
  2371. <exemplarCity>ቾይባልሳን</exemplarCity>
  2372. </zone>
  2373. <zone type="Asia/Macau">
  2374. <exemplarCity>ማካኡ</exemplarCity>
  2375. </zone>
  2376. <zone type="Pacific/Saipan">
  2377. <exemplarCity>ሴይፓን</exemplarCity>
  2378. </zone>
  2379. <zone type="America/Martinique">
  2380. <exemplarCity>ማርቲኒክ</exemplarCity>
  2381. </zone>
  2382. <zone type="Africa/Nouakchott">
  2383. <exemplarCity>ኑአክቾት</exemplarCity>
  2384. </zone>
  2385. <zone type="America/Montserrat">
  2386. <exemplarCity>ሞንትሴራት</exemplarCity>
  2387. </zone>
  2388. <zone type="Europe/Malta">
  2389. <exemplarCity>ማልታ</exemplarCity>
  2390. </zone>
  2391. <zone type="Indian/Mauritius">
  2392. <exemplarCity>ሞሪሽየስ</exemplarCity>
  2393. </zone>
  2394. <zone type="Indian/Maldives">
  2395. <exemplarCity>ማልዲቨ</exemplarCity>
  2396. </zone>
  2397. <zone type="Africa/Blantyre">
  2398. <exemplarCity>ብላንታየር</exemplarCity>
  2399. </zone>
  2400. <zone type="America/Tijuana">
  2401. <exemplarCity>ቲጁአና</exemplarCity>
  2402. </zone>
  2403. <zone type="America/Santa_Isabel">
  2404. <exemplarCity>ሳንታ ኢዛቤል</exemplarCity>
  2405. </zone>
  2406. <zone type="America/Hermosillo">
  2407. <exemplarCity>ኸርሞዚሎ</exemplarCity>
  2408. </zone>
  2409. <zone type="America/Mazatlan">
  2410. <exemplarCity>ማዛትላን</exemplarCity>
  2411. </zone>
  2412. <zone type="America/Chihuahua">
  2413. <exemplarCity>ቺሁዋውአ</exemplarCity>
  2414. </zone>
  2415. <zone type="America/Bahia_Banderas">
  2416. <exemplarCity>ባሂያ ባንደራስ</exemplarCity>
  2417. </zone>
  2418. <zone type="America/Ojinaga">
  2419. <exemplarCity>ኦዪናጋ</exemplarCity>
  2420. </zone>
  2421. <zone type="America/Monterrey">
  2422. <exemplarCity>ሞንተርሬይ</exemplarCity>
  2423. </zone>
  2424. <zone type="America/Mexico_City">
  2425. <exemplarCity>ሜክሲኮ ከተማ</exemplarCity>
  2426. </zone>
  2427. <zone type="America/Matamoros">
  2428. <exemplarCity>ማታሞሮስ</exemplarCity>
  2429. </zone>
  2430. <zone type="America/Merida">
  2431. <exemplarCity>ሜሪዳ</exemplarCity>
  2432. </zone>
  2433. <zone type="America/Cancun">
  2434. <exemplarCity>ካንኩን</exemplarCity>
  2435. </zone>
  2436. <zone type="Asia/Kuala_Lumpur">
  2437. <exemplarCity>ኩዋላ ላምፑር</exemplarCity>
  2438. </zone>
  2439. <zone type="Asia/Kuching">
  2440. <exemplarCity>ኩቺንግ</exemplarCity>
  2441. </zone>
  2442. <zone type="Africa/Maputo">
  2443. <exemplarCity>ማፑቱ</exemplarCity>
  2444. </zone>
  2445. <zone type="Africa/Windhoek">
  2446. <exemplarCity>ዊንድሆይክ</exemplarCity>
  2447. </zone>
  2448. <zone type="Pacific/Noumea">
  2449. <exemplarCity>ናኦሚአ</exemplarCity>
  2450. </zone>
  2451. <zone type="Africa/Niamey">
  2452. <exemplarCity>ኒያሜይ</exemplarCity>
  2453. </zone>
  2454. <zone type="Pacific/Norfolk">
  2455. <exemplarCity>ኖርፎልክ</exemplarCity>
  2456. </zone>
  2457. <zone type="Africa/Lagos">
  2458. <exemplarCity>ሌጎስ</exemplarCity>
  2459. </zone>
  2460. <zone type="America/Managua">
  2461. <exemplarCity>ማናጉአ</exemplarCity>
  2462. </zone>
  2463. <zone type="Europe/Amsterdam">
  2464. <exemplarCity>አምስተርዳም</exemplarCity>
  2465. </zone>
  2466. <zone type="Europe/Oslo">
  2467. <exemplarCity>ኦስሎ</exemplarCity>
  2468. </zone>
  2469. <zone type="Asia/Katmandu">
  2470. <exemplarCity>ካትማንዱ</exemplarCity>
  2471. </zone>
  2472. <zone type="Pacific/Nauru">
  2473. <exemplarCity>ናውሩ</exemplarCity>
  2474. </zone>
  2475. <zone type="Pacific/Niue">
  2476. <exemplarCity>ኒዌ</exemplarCity>
  2477. </zone>
  2478. <zone type="Pacific/Chatham">
  2479. <exemplarCity>ቻታም</exemplarCity>
  2480. </zone>
  2481. <zone type="Pacific/Auckland">
  2482. <exemplarCity>ኦክላንድ</exemplarCity>
  2483. </zone>
  2484. <zone type="Asia/Muscat">
  2485. <exemplarCity>ሙስካት</exemplarCity>
  2486. </zone>
  2487. <zone type="America/Panama">
  2488. <exemplarCity>ፓናማ</exemplarCity>
  2489. </zone>
  2490. <zone type="America/Lima">
  2491. <exemplarCity>ሊማ</exemplarCity>
  2492. </zone>
  2493. <zone type="Pacific/Tahiti">
  2494. <exemplarCity>ታሂቲ</exemplarCity>
  2495. </zone>
  2496. <zone type="Pacific/Marquesas">
  2497. <exemplarCity>ማርክዌሳስ</exemplarCity>
  2498. </zone>
  2499. <zone type="Pacific/Gambier">
  2500. <exemplarCity>ጋምቢየር</exemplarCity>
  2501. </zone>
  2502. <zone type="Pacific/Port_Moresby">
  2503. <exemplarCity>ፖርት ሞሬስባይ</exemplarCity>
  2504. </zone>
  2505. <zone type="Asia/Manila">
  2506. <exemplarCity>ማኒላ</exemplarCity>
  2507. </zone>
  2508. <zone type="Asia/Karachi">
  2509. <exemplarCity>ካራቺ</exemplarCity>
  2510. </zone>
  2511. <zone type="Europe/Warsaw">
  2512. <exemplarCity>ዋርሳው</exemplarCity>
  2513. </zone>
  2514. <zone type="America/Miquelon">
  2515. <exemplarCity>ሚኮውሎን</exemplarCity>
  2516. </zone>
  2517. <zone type="Pacific/Pitcairn">
  2518. <exemplarCity>ፒትከይርን</exemplarCity>
  2519. </zone>
  2520. <zone type="America/Puerto_Rico">
  2521. <exemplarCity>ፖርቶሪኮ</exemplarCity>
  2522. </zone>
  2523. <zone type="Asia/Gaza">
  2524. <exemplarCity>ጋዛ</exemplarCity>
  2525. </zone>
  2526. <zone type="Asia/Hebron">
  2527. <exemplarCity>ኬብሮን</exemplarCity>
  2528. </zone>
  2529. <zone type="Atlantic/Azores">
  2530. <exemplarCity>አዞረስ</exemplarCity>
  2531. </zone>
  2532. <zone type="Atlantic/Madeira">
  2533. <exemplarCity>ማዴራ</exemplarCity>
  2534. </zone>
  2535. <zone type="Europe/Lisbon">
  2536. <exemplarCity>ሊዝበን</exemplarCity>
  2537. </zone>
  2538. <zone type="Pacific/Palau">
  2539. <exemplarCity>ፓላው</exemplarCity>
  2540. </zone>
  2541. <zone type="America/Asuncion">
  2542. <exemplarCity>አሱንሲዮን</exemplarCity>
  2543. </zone>
  2544. <zone type="Asia/Qatar">
  2545. <exemplarCity>ኳታር</exemplarCity>
  2546. </zone>
  2547. <zone type="Indian/Reunion">
  2548. <exemplarCity>ሬዩኒየን</exemplarCity>
  2549. </zone>
  2550. <zone type="Europe/Bucharest">
  2551. <exemplarCity>ቡካሬስት</exemplarCity>
  2552. </zone>
  2553. <zone type="Europe/Belgrade">
  2554. <exemplarCity>ቤልግሬድ</exemplarCity>
  2555. </zone>
  2556. <zone type="Europe/Kaliningrad">
  2557. <exemplarCity>ካሊኒንግራድ</exemplarCity>
  2558. </zone>
  2559. <zone type="Europe/Moscow">
  2560. <exemplarCity>ሞስኮ</exemplarCity>
  2561. </zone>
  2562. <zone type="Europe/Volgograd">
  2563. <exemplarCity>ቮልጎራድ</exemplarCity>
  2564. </zone>
  2565. <zone type="Europe/Samara">
  2566. <exemplarCity>ሳማራ</exemplarCity>
  2567. </zone>
  2568. <zone type="Asia/Yekaterinburg">
  2569. <exemplarCity>የካተሪንበርግ</exemplarCity>
  2570. </zone>
  2571. <zone type="Asia/Omsk">
  2572. <exemplarCity>ኦምስክ</exemplarCity>
  2573. </zone>
  2574. <zone type="Asia/Novosibirsk">
  2575. <exemplarCity>ኖቮሲቢሪስክ</exemplarCity>
  2576. </zone>
  2577. <zone type="Asia/Novokuznetsk">
  2578. <exemplarCity>ኖቮኩትዝኔክ</exemplarCity>
  2579. </zone>
  2580. <zone type="Asia/Krasnoyarsk">
  2581. <exemplarCity>ክራስኖያርስክ</exemplarCity>
  2582. </zone>
  2583. <zone type="Asia/Irkutsk">
  2584. <exemplarCity>ኢርኩትስክ</exemplarCity>
  2585. </zone>
  2586. <zone type="Asia/Yakutsk">
  2587. <exemplarCity>ያኩትስክ</exemplarCity>
  2588. </zone>
  2589. <zone type="Asia/Vladivostok">
  2590. <exemplarCity>ቭላዲቮስቶክ</exemplarCity>
  2591. </zone>
  2592. <zone type="Asia/Khandyga">
  2593. <exemplarCity>ካንዲጋ</exemplarCity>
  2594. </zone>
  2595. <zone type="Asia/Sakhalin">
  2596. <exemplarCity>ሳክሃሊን</exemplarCity>
  2597. </zone>
  2598. <zone type="Asia/Ust-Nera">
  2599. <exemplarCity>ኡስት-ኔራ</exemplarCity>
  2600. </zone>
  2601. <zone type="Asia/Magadan">
  2602. <exemplarCity>ማጋዳን</exemplarCity>
  2603. </zone>
  2604. <zone type="Asia/Kamchatka">
  2605. <exemplarCity>ካምቻትካ</exemplarCity>
  2606. </zone>
  2607. <zone type="Asia/Anadyr">
  2608. <exemplarCity>አናድይር</exemplarCity>
  2609. </zone>
  2610. <zone type="Africa/Kigali">
  2611. <exemplarCity>ኪጋሊ</exemplarCity>
  2612. </zone>
  2613. <zone type="Asia/Riyadh">
  2614. <exemplarCity>ሪያድ</exemplarCity>
  2615. </zone>
  2616. <zone type="Pacific/Guadalcanal">
  2617. <exemplarCity>ጉዋዳልካናል</exemplarCity>
  2618. </zone>
  2619. <zone type="Indian/Mahe">
  2620. <exemplarCity>ማሄ</exemplarCity>
  2621. </zone>
  2622. <zone type="Africa/Khartoum">
  2623. <exemplarCity>ካርቱም</exemplarCity>
  2624. </zone>
  2625. <zone type="Europe/Stockholm">
  2626. <exemplarCity>ስቶክሆልም</exemplarCity>
  2627. </zone>
  2628. <zone type="Asia/Singapore">
  2629. <exemplarCity>ሲንጋፖር</exemplarCity>
  2630. </zone>
  2631. <zone type="Atlantic/St_Helena">
  2632. <exemplarCity>ቅድስት ሄለና</exemplarCity>
  2633. </zone>
  2634. <zone type="Europe/Ljubljana">
  2635. <exemplarCity>ልጁብልጃና</exemplarCity>
  2636. </zone>
  2637. <zone type="Arctic/Longyearbyen">
  2638. <exemplarCity>ሎንግይርባየን</exemplarCity>
  2639. </zone>
  2640. <zone type="Europe/Bratislava">
  2641. <exemplarCity>ብራቲስላቫ</exemplarCity>
  2642. </zone>
  2643. <zone type="Africa/Freetown">
  2644. <exemplarCity>ፍሪታውን</exemplarCity>
  2645. </zone>
  2646. <zone type="Europe/San_Marino">
  2647. <exemplarCity>ሳን ማሪኖ</exemplarCity>
  2648. </zone>
  2649. <zone type="Africa/Dakar">
  2650. <exemplarCity>ዳካር</exemplarCity>
  2651. </zone>
  2652. <zone type="Africa/Mogadishu">
  2653. <exemplarCity>ሞቃዲሹ</exemplarCity>
  2654. </zone>
  2655. <zone type="America/Paramaribo">
  2656. <exemplarCity>ፓራማሪቦ</exemplarCity>
  2657. </zone>
  2658. <zone type="Africa/Juba">
  2659. <exemplarCity>ጁባ</exemplarCity>
  2660. </zone>
  2661. <zone type="Africa/Sao_Tome">
  2662. <exemplarCity>ሳኦ ቶሜ</exemplarCity>
  2663. </zone>
  2664. <zone type="America/El_Salvador">
  2665. <exemplarCity>ኤልሳልቫዶር</exemplarCity>
  2666. </zone>
  2667. <zone type="America/Lower_Princes">
  2668. <exemplarCity>የታችኛው ልዑል ሩብ</exemplarCity>
  2669. </zone>
  2670. <zone type="Asia/Damascus">
  2671. <exemplarCity>ደማስቆ</exemplarCity>
  2672. </zone>
  2673. <zone type="Africa/Mbabane">
  2674. <exemplarCity>ምባቤን</exemplarCity>
  2675. </zone>
  2676. <zone type="America/Grand_Turk">
  2677. <exemplarCity>ግራንድ ተርክ</exemplarCity>
  2678. </zone>
  2679. <zone type="Africa/Ndjamena">
  2680. <exemplarCity>ንጃሜና</exemplarCity>
  2681. </zone>
  2682. <zone type="Indian/Kerguelen">
  2683. <exemplarCity>ኬርጉለን</exemplarCity>
  2684. </zone>
  2685. <zone type="Africa/Lome">
  2686. <exemplarCity>ሎሜ</exemplarCity>
  2687. </zone>
  2688. <zone type="Asia/Bangkok">
  2689. <exemplarCity>ባንኮክ</exemplarCity>
  2690. </zone>
  2691. <zone type="Asia/Dushanbe">
  2692. <exemplarCity>ደሻንቤ</exemplarCity>
  2693. </zone>
  2694. <zone type="Pacific/Fakaofo">
  2695. <exemplarCity>ፋካኦፎ</exemplarCity>
  2696. </zone>
  2697. <zone type="Asia/Dili">
  2698. <exemplarCity>ዲሊ</exemplarCity>
  2699. </zone>
  2700. <zone type="Asia/Ashgabat">
  2701. <exemplarCity>አሽጋባት</exemplarCity>
  2702. </zone>
  2703. <zone type="Africa/Tunis">
  2704. <exemplarCity>ቱኒዝ</exemplarCity>
  2705. </zone>
  2706. <zone type="Pacific/Tongatapu">
  2707. <exemplarCity>ቶንጋታፑ</exemplarCity>
  2708. </zone>
  2709. <zone type="Europe/Istanbul">
  2710. <exemplarCity>ኢስታንቡል</exemplarCity>
  2711. </zone>
  2712. <zone type="America/Port_of_Spain">
  2713. <exemplarCity>የእስፔን ወደብ</exemplarCity>
  2714. </zone>
  2715. <zone type="Pacific/Funafuti">
  2716. <exemplarCity>ፈናፉቲ</exemplarCity>
  2717. </zone>
  2718. <zone type="Asia/Taipei">
  2719. <exemplarCity>ታይፓይ</exemplarCity>
  2720. </zone>
  2721. <zone type="Africa/Dar_es_Salaam">
  2722. <exemplarCity>ዳሬ ሰላም</exemplarCity>
  2723. </zone>
  2724. <zone type="Europe/Uzhgorod">
  2725. <exemplarCity>ኡዝጎሮድ</exemplarCity>
  2726. </zone>
  2727. <zone type="Europe/Kiev">
  2728. <exemplarCity>ኪየቭ</exemplarCity>
  2729. </zone>
  2730. <zone type="Europe/Simferopol">
  2731. <exemplarCity>ሲምፈሮፖል</exemplarCity>
  2732. </zone>
  2733. <zone type="Europe/Zaporozhye">
  2734. <exemplarCity>ዛፖሮዚይ</exemplarCity>
  2735. </zone>
  2736. <zone type="Africa/Kampala">
  2737. <exemplarCity>ካምፓላ</exemplarCity>
  2738. </zone>
  2739. <zone type="Pacific/Midway">
  2740. <exemplarCity>አጋማሽ</exemplarCity>
  2741. </zone>
  2742. <zone type="Pacific/Johnston">
  2743. <exemplarCity>ጆንስተን</exemplarCity>
  2744. </zone>
  2745. <zone type="Pacific/Wake">
  2746. <exemplarCity>ዋቄ</exemplarCity>
  2747. </zone>
  2748. <zone type="America/Adak">
  2749. <exemplarCity>አዳክ</exemplarCity>
  2750. </zone>
  2751. <zone type="America/Nome">
  2752. <exemplarCity>ኖሜ</exemplarCity>
  2753. </zone>
  2754. <zone type="Pacific/Honolulu">
  2755. <exemplarCity>ሆኖሉሉ</exemplarCity>
  2756. </zone>
  2757. <zone type="America/Anchorage">
  2758. <exemplarCity>አንኮራጅ</exemplarCity>
  2759. </zone>
  2760. <zone type="America/Yakutat">
  2761. <exemplarCity>ያኩታት</exemplarCity>
  2762. </zone>
  2763. <zone type="America/Sitka">
  2764. <exemplarCity>ሲትካ</exemplarCity>
  2765. </zone>
  2766. <zone type="America/Juneau">
  2767. <exemplarCity>ጁኒዩ</exemplarCity>
  2768. </zone>
  2769. <zone type="America/Metlakatla">
  2770. <exemplarCity>መትላካትላ</exemplarCity>
  2771. </zone>
  2772. <zone type="America/Los_Angeles">
  2773. <exemplarCity>ሎስ አንጀለስ</exemplarCity>
  2774. </zone>
  2775. <zone type="America/Boise">
  2776. <exemplarCity>ቦይዝ</exemplarCity>
  2777. </zone>
  2778. <zone type="America/Phoenix">
  2779. <exemplarCity>ፊኒክስ</exemplarCity>
  2780. </zone>
  2781. <zone type="America/Denver">
  2782. <exemplarCity>ዴንቨር</exemplarCity>
  2783. </zone>
  2784. <zone type="America/North_Dakota/Beulah">
  2785. <exemplarCity>ቤኡላህ, ሰሜን ዳኮታ</exemplarCity>
  2786. </zone>
  2787. <zone type="America/North_Dakota/New_Salem">
  2788. <exemplarCity>አዲስ ሳሌም, ሰሜን ዳኮታ</exemplarCity>
  2789. </zone>
  2790. <zone type="America/North_Dakota/Center">
  2791. <exemplarCity>መካከለኛ, ሰሜን ዳኮታ</exemplarCity>
  2792. </zone>
  2793. <zone type="America/Chicago">
  2794. <exemplarCity>ቺካጎ</exemplarCity>
  2795. </zone>
  2796. <zone type="America/Menominee">
  2797. <exemplarCity>ሜኖሚኒ</exemplarCity>
  2798. </zone>
  2799. <zone type="America/Indiana/Vincennes">
  2800. <exemplarCity>ቪንቼንስ, ኢንዲያና</exemplarCity>
  2801. </zone>
  2802. <zone type="America/Indiana/Petersburg">
  2803. <exemplarCity>ፒተርስበርግ, ኢንዲያና</exemplarCity>
  2804. </zone>
  2805. <zone type="America/Indiana/Tell_City">
  2806. <exemplarCity>ቴል ከተማ, ኢንዲያና</exemplarCity>
  2807. </zone>
  2808. <zone type="America/Indiana/Knox">
  2809. <exemplarCity>ኖክስ, ኢንዲያና</exemplarCity>
  2810. </zone>
  2811. <zone type="America/Indiana/Winamac">
  2812. <exemplarCity>ዊናማክ, ኢንዲያና</exemplarCity>
  2813. </zone>
  2814. <zone type="America/Indiana/Marengo">
  2815. <exemplarCity>ማሬንጎ, ኢንዲያና</exemplarCity>
  2816. </zone>
  2817. <zone type="America/Indianapolis">
  2818. <exemplarCity>ኢንዲያናፖሊስ</exemplarCity>
  2819. </zone>
  2820. <zone type="America/Louisville">
  2821. <exemplarCity>ሊውስቪል</exemplarCity>
  2822. </zone>
  2823. <zone type="America/Indiana/Vevay">
  2824. <exemplarCity>ቪቫይ, ኢንዲያና</exemplarCity>
  2825. </zone>
  2826. <zone type="America/Kentucky/Monticello">
  2827. <exemplarCity>ሞንቲሴሎ, ኪንታኪ</exemplarCity>
  2828. </zone>
  2829. <zone type="America/Detroit">
  2830. <exemplarCity>ዲትሮይት</exemplarCity>
  2831. </zone>
  2832. <zone type="America/New_York">
  2833. <exemplarCity>ኒውዮርክ</exemplarCity>
  2834. </zone>
  2835. <zone type="America/Montevideo">
  2836. <exemplarCity>ሞንቴቪድዮ</exemplarCity>
  2837. </zone>
  2838. <zone type="Asia/Samarkand">
  2839. <exemplarCity>ሳማርካንድ</exemplarCity>
  2840. </zone>
  2841. <zone type="Asia/Tashkent">
  2842. <exemplarCity>ታሽኬንት</exemplarCity>
  2843. </zone>
  2844. <zone type="Europe/Vatican">
  2845. <exemplarCity>ቫቲካን</exemplarCity>
  2846. </zone>
  2847. <zone type="America/St_Vincent">
  2848. <exemplarCity>ቅዱስ ቪንሰንት</exemplarCity>
  2849. </zone>
  2850. <zone type="America/Caracas">
  2851. <exemplarCity>ካራካስ</exemplarCity>
  2852. </zone>
  2853. <zone type="America/Tortola">
  2854. <exemplarCity>ቶርቶላ</exemplarCity>
  2855. </zone>
  2856. <zone type="America/St_Thomas">
  2857. <exemplarCity>ቅዱስ ቶማስ</exemplarCity>
  2858. </zone>
  2859. <zone type="Asia/Saigon">
  2860. <exemplarCity>ሆ ቺ ሚንህ ከተማ</exemplarCity>
  2861. </zone>
  2862. <zone type="Pacific/Efate">
  2863. <exemplarCity>ኢፋቴ</exemplarCity>
  2864. </zone>
  2865. <zone type="Pacific/Wallis">
  2866. <exemplarCity>ዋሊስ</exemplarCity>
  2867. </zone>
  2868. <zone type="Pacific/Apia">
  2869. <exemplarCity>አፒአ</exemplarCity>
  2870. </zone>
  2871. <zone type="Asia/Aden">
  2872. <exemplarCity>ኤደን</exemplarCity>
  2873. </zone>
  2874. <zone type="Indian/Mayotte">
  2875. <exemplarCity>ማዮቴ</exemplarCity>
  2876. </zone>
  2877. <zone type="Africa/Johannesburg">
  2878. <exemplarCity>ጆሃንስበርግ</exemplarCity>
  2879. </zone>
  2880. <zone type="Africa/Lusaka">
  2881. <exemplarCity>ሉሳካ</exemplarCity>
  2882. </zone>
  2883. <zone type="Africa/Harare">
  2884. <exemplarCity>ሃራሬ</exemplarCity>
  2885. </zone>
  2886. <metazone type="Afghanistan">
  2887. <long>
  2888. <standard>የአፍጋኒስታን ሰዓት</standard>
  2889. </long>
  2890. </metazone>
  2891. <metazone type="Africa_Central">
  2892. <long>
  2893. <standard>የመካከለኛው አፍሪካ ሰዓት</standard>
  2894. </long>
  2895. </metazone>
  2896. <metazone type="Africa_Eastern">
  2897. <long>
  2898. <standard>የምስራቅ አፍሪካ ሰዓት</standard>
  2899. </long>
  2900. </metazone>
  2901. <metazone type="Africa_Southern">
  2902. <long>
  2903. <standard>የደቡብ አፍሪካ መደበኛ ሰዓት</standard>
  2904. </long>
  2905. </metazone>
  2906. <metazone type="Africa_Western">
  2907. <long>
  2908. <generic>የምዕራብ አፍሪካ ሰዓት</generic>
  2909. <standard>የምዕራብ አፍሪካ መደበኛ ሰዓት</standard>
  2910. <daylight>የምዕራብ አፍሪካ ክረምት ሰዓት</daylight>
  2911. </long>
  2912. </metazone>
  2913. <metazone type="Alaska">
  2914. <long>
  2915. <generic>የአላስካ ሰዓት አቆጣጠር</generic>
  2916. <standard>የአላስካ መደበኛ የሰዓት አቆጣጠር</standard>
  2917. <daylight>የአላስካ የቀን ሰዓት አቆጣጠር</daylight>
  2918. </long>
  2919. </metazone>
  2920. <metazone type="Amazon">
  2921. <long>
  2922. <generic>የአማዞን ሰዓት አቆጣጠር</generic>
  2923. <standard>የአማዞን መደበኛ ሰዓት አቆጣጠር</standard>
  2924. <daylight>የአማዞን የቀን ሰዓት አቆጣጠር</daylight>
  2925. </long>
  2926. </metazone>
  2927. <metazone type="America_Central">
  2928. <long>
  2929. <generic>መካከለኛ የሰዓት አቆጣጠር</generic>
  2930. <standard>የመካከላዊ መደበኛ ሰዓት አቆጣጠር</standard>
  2931. <daylight>የመካከላዊ የቀን ሰዓት አቆጣጠር</daylight>
  2932. </long>
  2933. </metazone>
  2934. <metazone type="America_Eastern">
  2935. <long>
  2936. <generic>የምዕራባዊ ሰዓት አቆጣጠር</generic>
  2937. <standard>የምዕራባዊ መደበኛ የሰዓት አቆጣጠር</standard>
  2938. <daylight>የምዕራባዊ የቀን ሰዓት አቆጣጠር</daylight>
  2939. </long>
  2940. </metazone>
  2941. <metazone type="America_Mountain">
  2942. <long>
  2943. <generic>የተራራ የሰዓት አቆጣጠር</generic>
  2944. <standard>የተራራ መደበኛ የሰዓት አቆጣጠር</standard>
  2945. <daylight>የተራራ የቀንሰዓት አቆጣጠር</daylight>
  2946. </long>
  2947. </metazone>
  2948. <metazone type="America_Pacific">
  2949. <long>
  2950. <generic>የፓስፊክ ሰዓት አቆጣጠር</generic>
  2951. <standard>የፓስፊክ መደበኛ ሰዓት አቆጣጠር</standard>
  2952. <daylight>የፓስፊክ የቀን ሰዓት አቆጣጠር</daylight>
  2953. </long>
  2954. </metazone>
  2955. <metazone type="Anadyr">
  2956. <long>
  2957. <generic>የአናድይር ሰዓት አቆጣጠር</generic>
  2958. <standard>የአናዲይር ሰዓት አቆጣጠር</standard>
  2959. <daylight>የአናድይር የበጋ የሰዓት አቆጣጠር</daylight>
  2960. </long>
  2961. </metazone>
  2962. <metazone type="Arabian">
  2963. <long>
  2964. <generic>የአረቢያ ሰዓት</generic>
  2965. <standard>የአረቢያ መደበኛ ሰዓት</standard>
  2966. <daylight>የአረቢያ የቀን ብርሃን ሰዓት</daylight>
  2967. </long>
  2968. </metazone>
  2969. <metazone type="Argentina">
  2970. <long>
  2971. <generic>የአርጀንቲና የሰዓት አቆጣጠር</generic>
  2972. <standard>የአርጀንቲና መደበኛ ጊዜ</standard>
  2973. <daylight>የአርጀንቲና የበጋ ሰዓት አቆጣጠር</daylight>
  2974. </long>
  2975. </metazone>
  2976. <metazone type="Argentina_Western">
  2977. <long>
  2978. <generic>የአርጀንቲና ምስራቃዊ ሰዓት አቆጣጠር</generic>
  2979. <standard>የምዕራባዊ አርጀንቲና መደበኛ ሰዓት አቆጣጠር</standard>
  2980. <daylight>የአርጀንቲና ምስራቃዊ በጋ ሰዓት አቆጣጠር</daylight>
  2981. </long>
  2982. </metazone>
  2983. <metazone type="Armenia">
  2984. <long>
  2985. <generic>የአርመኒያ ሰዓት</generic>
  2986. <standard>የአርመኒያ መደበኛ ሰዓት</standard>
  2987. <daylight>የአርመኒያ ክረምት ሰዓት</daylight>
  2988. </long>
  2989. </metazone>
  2990. <metazone type="Atlantic">
  2991. <long>
  2992. <generic>የአትላንቲክ የሰዓት አቆጣጠር</generic>
  2993. <standard>የአትላንቲክ መደበኛ የሰዓት አቆጣጠር</standard>
  2994. <daylight>የአትላንቲክ የቀን ሰዓት አቆጣጠር</daylight>
  2995. </long>
  2996. </metazone>
  2997. <metazone type="Australia_Central">
  2998. <long>
  2999. <generic>የመካከለኛው አውስትራሊያ ሰዓት አቆጣጠር</generic>
  3000. <standard>የአውስትራሊያ መካከለኛ መደበኛ የሰዓት አቆጣጠር</standard>
  3001. <daylight>የአውስትራሊያ መካከለኛ የቀን ሰዓት አቆጣጠር</daylight>
  3002. </long>
  3003. </metazone>
  3004. <metazone type="Australia_CentralWestern">
  3005. <long>
  3006. <generic>የአውስትራሊያ መካከለኛ ምስራቃዊ ሰዓት አቆጣጠር</generic>
  3007. <standard>የአውስትራሊያ መካከለኛ ምስራቃዊ መደበኛ ሰዓት አቆጣጠር</standard>
  3008. <daylight>የአውስትራሊያ መካከለኛው ምስራቅ የቀን ሰዓት አቆጣጠር</daylight>
  3009. </long>
  3010. </metazone>
  3011. <metazone type="Australia_Eastern">
  3012. <long>
  3013. <generic>የምዕራባዊ አውስትራሊያ የሰአት አቆጣጠር</generic>
  3014. <standard>የአውስትራሊያ ምዕራባዊ መደበኛ የሰዓት አቆጣጠር</standard>
  3015. <daylight>የአውስትራሊያ ምዕራባዊ የቀን ሰዓት አቆጣጠር</daylight>
  3016. </long>
  3017. </metazone>
  3018. <metazone type="Australia_Western">
  3019. <long>
  3020. <generic>የምስራቃዊ አውስትራሊያ ሰዓት አቆጣጠር</generic>
  3021. <standard>የአውስትራሊያ ምስራቃዊ መደበኛ ሰዓት አቆጣጠር</standard>
  3022. <daylight>የአውስትራሊያ ምስራቃዊ የቀን ሰዓት አቆጣጠር</daylight>
  3023. </long>
  3024. </metazone>
  3025. <metazone type="Azerbaijan">
  3026. <long>
  3027. <generic>የአዘርባይጃን ሰዓት</generic>
  3028. <standard>የአዘርባይጃን መደበኛ ሰዓት</standard>
  3029. <daylight>የአዘርባይጃን ክረምት ሰዓት</daylight>
  3030. </long>
  3031. </metazone>
  3032. <metazone type="Azores">
  3033. <long>
  3034. <generic>የአዞረስ ሰዓት</generic>
  3035. <standard>የአዞረስ መደበኛ ሰዓት</standard>
  3036. <daylight>የአዞረስ ክረምት ሰዓት</daylight>
  3037. </long>
  3038. </metazone>
  3039. <metazone type="Bangladesh">
  3040. <long>
  3041. <generic>የባንግላዴሽ ሰዓት</generic>
  3042. <standard>የባንግላዴሽ መደበኛ ሰዓት</standard>
  3043. <daylight>የባንግላዴሽ ክረምት ሰዓት</daylight>
  3044. </long>
  3045. </metazone>
  3046. <metazone type="Bhutan">
  3047. <long>
  3048. <standard>የቡታን ሰዓት</standard>
  3049. </long>
  3050. </metazone>
  3051. <metazone type="Bolivia">
  3052. <long>
  3053. <standard>የቦሊቪያ ሰዓት</standard>
  3054. </long>
  3055. </metazone>
  3056. <metazone type="Brasilia">
  3057. <long>
  3058. <generic>የብራዚላዊ ሰዓት አቆጣጠር</generic>
  3059. <standard>የብራሲሊያ መደበኛ ጊዜ</standard>
  3060. <daylight>የብራዚላ የበጋ ሰዓት አቆጣጠር</daylight>
  3061. </long>
  3062. </metazone>
  3063. <metazone type="Brunei">
  3064. <long>
  3065. <standard>የብሩኔይ ዳሩሳላም ሰዓት</standard>
  3066. </long>
  3067. </metazone>
  3068. <metazone type="Cape_Verde">
  3069. <long>
  3070. <generic>የኬፕ ቨርዴ ሰዓት</generic>
  3071. <standard>የኬፕ ቨርዴ መደበኛ ሰዓት</standard>
  3072. <daylight>የኬፕ ቨርዴ ክረምት ሰዓት</daylight>
  3073. </long>
  3074. </metazone>
  3075. <metazone type="Chamorro">
  3076. <long>
  3077. <standard>የቻሞሮ መደበኛ ሰዓት</standard>
  3078. </long>
  3079. </metazone>
  3080. <metazone type="Chatham">
  3081. <long>
  3082. <generic>የቻታም ሰዓት</generic>
  3083. <standard>የቻታም መደበኛ ሰዓት</standard>
  3084. <daylight>የቻታም የቀን ብርሃን ሰዓት</daylight>
  3085. </long>
  3086. </metazone>
  3087. <metazone type="Chile">
  3088. <long>
  3089. <generic>የቺሊ ሰዓት</generic>
  3090. <standard>የቺሊ መደበኛ ሰዓት</standard>
  3091. <daylight>የቺሊ ክረምት ሰዓት</daylight>
  3092. </long>
  3093. </metazone>
  3094. <metazone type="China">
  3095. <long>
  3096. <generic>የቻይና ሰዓት</generic>
  3097. <standard>የቻይና መደበኛ ሰዓት</standard>
  3098. <daylight>የቻይና የቀን ብርሃን ሰዓት</daylight>
  3099. </long>
  3100. </metazone>
  3101. <metazone type="Choibalsan">
  3102. <long>
  3103. <generic>የቾይባልሳ ሰዓት አቆጣጠር</generic>
  3104. <standard>የቾይባልሳን መደበኛ የሰዓት አቆጣጠር</standard>
  3105. <daylight>የቾይባልሳን የበጋ የሰአት አቆጣጠር</daylight>
  3106. </long>
  3107. </metazone>
  3108. <metazone type="Christmas">
  3109. <long>
  3110. <standard>የገና ደሴት ሰዓት</standard>
  3111. </long>
  3112. </metazone>
  3113. <metazone type="Cocos">
  3114. <long>
  3115. <standard>የኮኮስ ደሴቶች ሰዓት</standard>
  3116. </long>
  3117. </metazone>
  3118. <metazone type="Colombia">
  3119. <long>
  3120. <generic>የኮሎምቢያ ሰዓት</generic>
  3121. <standard>የኮሎምቢያ መደበኛ ሰዓት</standard>
  3122. <daylight>የኮሎምቢያ ክረምት ሰዓት</daylight>
  3123. </long>
  3124. </metazone>
  3125. <metazone type="Cook">
  3126. <long>
  3127. <generic>የኩክ ደሴቶች ሰዓት</generic>
  3128. <standard>የኩክ ደሴቶች መደበኛ ሰዓት</standard>
  3129. <daylight>የኩክ ደሴቶች ግማሽ ክረምት ሰዓት</daylight>
  3130. </long>
  3131. </metazone>
  3132. <metazone type="Cuba">
  3133. <long>
  3134. <generic>ኩባ ሰዓት</generic>
  3135. <standard>የኩባ መደበኛ ሰዓት</standard>
  3136. <daylight>የኩባ የቀን ብርሃን ሰዓት</daylight>
  3137. </long>
  3138. </metazone>
  3139. <metazone type="Davis">
  3140. <long>
  3141. <standard>የዴቪስ ሰዓት</standard>
  3142. </long>
  3143. </metazone>
  3144. <metazone type="DumontDUrville">
  3145. <long>
  3146. <standard>የዱሞንት-ዱርቪል ሰዓት</standard>
  3147. </long>
  3148. </metazone>
  3149. <metazone type="East_Timor">
  3150. <long>
  3151. <standard>የምስራቅ ቲሞር ሰዓት</standard>
  3152. </long>
  3153. </metazone>
  3154. <metazone type="Easter">
  3155. <long>
  3156. <generic>የኢስተር ደሴት ሰዓት</generic>
  3157. <standard>የኢስተር ደሴት መደበኛ ሰዓት</standard>
  3158. <daylight>የኢስተር ደሴት ክረምት ሰዓት</daylight>
  3159. </long>
  3160. </metazone>
  3161. <metazone type="Ecuador">
  3162. <long>
  3163. <standard>የኢኳዶር ሰዓት</standard>
  3164. </long>
  3165. </metazone>
  3166. <metazone type="Europe_Central">
  3167. <long>
  3168. <generic>የመካከለኛው አውሮፓ ሰዓት</generic>
  3169. <standard>የመካከለኛው አውሮፓ መደበኛ ሰዓት</standard>
  3170. <daylight>የመካከለኛው አውሮፓ ክረምት ሰዓት</daylight>
  3171. </long>
  3172. </metazone>
  3173. <metazone type="Europe_Eastern">
  3174. <long>
  3175. <generic>የምስራቃዊ አውሮፓ ሰዓት</generic>
  3176. <standard>የምስራቃዊ አውሮፓ መደበኛ ሰዓት</standard>
  3177. <daylight>የምስራቃዊ አውሮፓ ክረምት ሰዓት</daylight>
  3178. </long>
  3179. </metazone>
  3180. <metazone type="Europe_Western">
  3181. <long>
  3182. <generic>የምዕራባዊ አውሮፓ ሰዓት</generic>
  3183. <standard>የምዕራባዊ አውሮፓ መደበኛ ሰዓት</standard>
  3184. <daylight>የምዕራባዊ አውሮፓ ክረምት ሰዓት</daylight>
  3185. </long>
  3186. </metazone>
  3187. <metazone type="Falkland">
  3188. <long>
  3189. <generic>የፋልክላንድ ደሴቶች ሰዓት</generic>
  3190. <standard>የፋልክላንድ ደሴቶች መደበኛ ሰዓት</standard>
  3191. <daylight>የፋልክላንድ ደሴቶች ክረምት ሰዓት</daylight>
  3192. </long>
  3193. </metazone>
  3194. <metazone type="Fiji">
  3195. <long>
  3196. <generic>የፊጂ ሰዓት</generic>
  3197. <standard>የፊጂ መደበኛ ሰዓት</standard>
  3198. <daylight>የፊጂ ክረምት ሰዓት</daylight>
  3199. </long>
  3200. </metazone>
  3201. <metazone type="French_Guiana">
  3202. <long>
  3203. <standard>የፈረንሳይ ጉያና ሰዓት</standard>
  3204. </long>
  3205. </metazone>
  3206. <metazone type="French_Southern">
  3207. <long>
  3208. <standard>የፈረንሳይ ደቡባዊ እና አንታርክቲክ ሰዓት</standard>
  3209. </long>
  3210. </metazone>
  3211. <metazone type="Galapagos">
  3212. <long>
  3213. <standard>የጋላፓጎስ ሰዓት</standard>
  3214. </long>
  3215. </metazone>
  3216. <metazone type="Gambier">
  3217. <long>
  3218. <standard>የጋምቢየር ሰዓት</standard>
  3219. </long>
  3220. </metazone>
  3221. <metazone type="Georgia">
  3222. <long>
  3223. <generic>የጂዮርጂያ ሰዓት</generic>
  3224. <standard>የጂዮርጂያ መደበኛ ሰዓት</standard>
  3225. <daylight>የጂዮርጂያ ክረምት ሰዓት</daylight>
  3226. </long>
  3227. </metazone>
  3228. <metazone type="Gilbert_Islands">
  3229. <long>
  3230. <standard>የጂልበርት ደሴቶች ሰዓት</standard>
  3231. </long>
  3232. </metazone>
  3233. <metazone type="GMT">
  3234. <long>
  3235. <standard>ግሪንዊች ማዕከላዊ ሰዓት</standard>
  3236. </long>
  3237. </metazone>
  3238. <metazone type="Greenland_Eastern">
  3239. <long>
  3240. <generic>የምስራቅ ግሪንላንድ ሰዓት</generic>
  3241. <standard>የምስራቅ ግሪንላንድ መደበኛ ሰዓት</standard>
  3242. <daylight>የምስራቅ ግሪንላንድ ክረምት ሰዓት</daylight>
  3243. </long>
  3244. </metazone>
  3245. <metazone type="Greenland_Western">
  3246. <long>
  3247. <generic>የምዕራብ ግሪንላንድ ሰዓት</generic>
  3248. <standard>የምዕራብ ግሪንላንድ መደበኛ ሰዓት</standard>
  3249. <daylight>የምዕራብ ግሪንላንድ ክረምት ሰዓት</daylight>
  3250. </long>
  3251. </metazone>
  3252. <metazone type="Gulf">
  3253. <long>
  3254. <standard>የባህረሰላጤ መደበኛ ሰዓት</standard>
  3255. </long>
  3256. </metazone>
  3257. <metazone type="Guyana">
  3258. <long>
  3259. <standard>የጉያና ሰዓት</standard>
  3260. </long>
  3261. </metazone>
  3262. <metazone type="Hawaii_Aleutian">
  3263. <long>
  3264. <generic>የሃዋይ አሌኡት ሰዓት አቆጣጠር</generic>
  3265. <standard>የሃዋይ አሌኡት መደበኛ ሰዓት አቆጣጠር</standard>
  3266. <daylight>የሃዋይ አሌኡት የቀን ሰዓት አቆጣጠር</daylight>
  3267. </long>
  3268. </metazone>
  3269. <metazone type="Hong_Kong">
  3270. <long>
  3271. <generic>የሆንግ ኮንግ ሰዓት</generic>
  3272. <standard>የሆንግ ኮንግ መደበኛ ሰዓት</standard>
  3273. <daylight>የሆንግ ኮንግ ክረምት ሰዓት</daylight>
  3274. </long>
  3275. </metazone>
  3276. <metazone type="Hovd">
  3277. <long>
  3278. <generic>የሆቭድ ሰዓት አቆጣጠር</generic>
  3279. <standard>የሆቭድ መደበኛ የሰዓት አቆጣጠር</standard>
  3280. <daylight>የሆቭድ የበጋ ሰዓት አቆጣጠር</daylight>
  3281. </long>
  3282. </metazone>
  3283. <metazone type="India">
  3284. <long>
  3285. <standard>የህንድ መደበኛ ሰዓት</standard>
  3286. </long>
  3287. </metazone>
  3288. <metazone type="Indian_Ocean">
  3289. <long>
  3290. <standard>የህንድ ውቅያኖስ ሰዓት</standard>
  3291. </long>
  3292. </metazone>
  3293. <metazone type="Indochina">
  3294. <long>
  3295. <standard>የኢንዶቻይና ሰዓት</standard>
  3296. </long>
  3297. </metazone>
  3298. <metazone type="Indonesia_Central">
  3299. <long>
  3300. <standard>የመካከለኛው ኢንዶኔዢያ ሰዓት</standard>
  3301. </long>
  3302. </metazone>
  3303. <metazone type="Indonesia_Eastern">
  3304. <long>
  3305. <standard>የምስራቃዊ ኢንዶኔዢያ ሰዓት</standard>
  3306. </long>
  3307. </metazone>
  3308. <metazone type="Indonesia_Western">
  3309. <long>
  3310. <standard>የምዕራባዊ ኢንዶኔዢያ ሰዓት</standard>
  3311. </long>
  3312. </metazone>
  3313. <metazone type="Iran">
  3314. <long>
  3315. <generic>የኢራን ሰዓት</generic>
  3316. <standard>የኢራን መደበኛ ሰዓት</standard>
  3317. <daylight>የኢራን የቀን ብርሃን ሰዓት</daylight>
  3318. </long>
  3319. </metazone>
  3320. <metazone type="Irkutsk">
  3321. <long>
  3322. <generic>የኢርኩትስክ ሰዓት አቆጣጠር</generic>
  3323. <standard>የኢርኩትስክ መደበኛ የሰዓት አቆጣጠር</standard>
  3324. <daylight>ኢርኩትስክ የበጋ የሰዓት አቆጣጠር</daylight>
  3325. </long>
  3326. </metazone>
  3327. <metazone type="Israel">
  3328. <long>
  3329. <generic>የእስራኤል ሰዓት</generic>
  3330. <standard>የእስራኤል መደበኛ ሰዓት</standard>
  3331. <daylight>የእስራኤል የቀን ብርሃን ሰዓት</daylight>
  3332. </long>
  3333. </metazone>
  3334. <metazone type="Japan">
  3335. <long>
  3336. <generic>የጃፓን ሰዓት</generic>
  3337. <standard>የጃፓን መደበኛ ሰዓት</standard>
  3338. <daylight>የጃፓን የቀን ብርሃን ሰዓት</daylight>
  3339. </long>
  3340. </metazone>
  3341. <metazone type="Kamchatka">
  3342. <long>
  3343. <generic>የካምቻትካ ሰዓት አቆጣጠር</generic>
  3344. <standard>የፔትሮፓቭሎስኪ - ካምቻትስኪ ሰዓት አቆጣጠር</standard>
  3345. <daylight>የፔትሮፓቭሎስኪ - ካምቻትስኪ የበጋ ሰዓት አቆጣጠር</daylight>
  3346. </long>
  3347. </metazone>
  3348. <metazone type="Kazakhstan_Eastern">
  3349. <long>
  3350. <standard>የምስራቅ ካዛኪስታን ጊዜ</standard>
  3351. </long>
  3352. </metazone>
  3353. <metazone type="Kazakhstan_Western">
  3354. <long>
  3355. <standard>የምዕራብ ካዛኪስታን ጊዜ</standard>
  3356. </long>
  3357. </metazone>
  3358. <metazone type="Korea">
  3359. <long>
  3360. <generic>የኮሪያ ሰዓት</generic>
  3361. <standard>የኮሪያ መደበኛ ሰዓት</standard>
  3362. <daylight>የኮሪያ የቀን ብርሃን ሰዓት</daylight>
  3363. </long>
  3364. </metazone>
  3365. <metazone type="Kosrae">
  3366. <long>
  3367. <standard>የኮስራኤ ሰዓት</standard>
  3368. </long>
  3369. </metazone>
  3370. <metazone type="Krasnoyarsk">
  3371. <long>
  3372. <generic>የክራስኖያርስክ ሰዓት አቆጣጠር</generic>
  3373. <standard>የክራስኖይአርስክ መደበኛ ሰዓት አቆጣጠር</standard>
  3374. <daylight>የክራስኖያርስክ የበጋ ሰዓት አቆጣጠር</daylight>
  3375. </long>
  3376. </metazone>
  3377. <metazone type="Kyrgystan">
  3378. <long>
  3379. <standard>የኪርጊስታን ሰዓት</standard>
  3380. </long>
  3381. </metazone>
  3382. <metazone type="Line_Islands">
  3383. <long>
  3384. <standard>የላይን ደሴቶች ሰዓት</standard>
  3385. </long>
  3386. </metazone>
  3387. <metazone type="Lord_Howe">
  3388. <long>
  3389. <generic>የሎርድ ሆዌ የሰዓት አቆጣጠር</generic>
  3390. <standard>የሎርድ ሆዌ መደበኛ የሰዓት አቆጣጠር</standard>
  3391. <daylight>የሎርድ ሆዌ የቀን ሰዓት አቆጣጠር</daylight>
  3392. </long>
  3393. </metazone>
  3394. <metazone type="Macquarie">
  3395. <long>
  3396. <standard>የማከሪ ደሴት ሰዓት</standard>
  3397. </long>
  3398. </metazone>
  3399. <metazone type="Magadan">
  3400. <long>
  3401. <generic>የማጋዳን የሰዓት አቆጣጠር</generic>
  3402. <standard>የማጋዳን መደበኛ ሰዓት አቆጣጠር</standard>
  3403. <daylight>የማጋዳን በጋ ሰዓት አቆጣጠር</daylight>
  3404. </long>
  3405. </metazone>
  3406. <metazone type="Malaysia">
  3407. <long>
  3408. <standard>የማሌይዢያ ሰዓት</standard>
  3409. </long>
  3410. </metazone>
  3411. <metazone type="Maldives">
  3412. <long>
  3413. <standard>የማልዲቭስ ሰዓት</standard>
  3414. </long>
  3415. </metazone>
  3416. <metazone type="Marquesas">
  3417. <long>
  3418. <standard>የማርኴሳስ ሰዓት</standard>
  3419. </long>
  3420. </metazone>
  3421. <metazone type="Marshall_Islands">
  3422. <long>
  3423. <standard>የማርሻል ደሴቶች ሰዓት</standard>
  3424. </long>
  3425. </metazone>
  3426. <metazone type="Mauritius">
  3427. <long>
  3428. <generic>የማውሪሺየስ ሰዓት</generic>
  3429. <standard>የማውሪሺየስ መደበኛ ሰዓት</standard>
  3430. <daylight>የማውሪሺየስ ክረምት ሰዓት</daylight>
  3431. </long>
  3432. </metazone>
  3433. <metazone type="Mawson">
  3434. <long>
  3435. <standard>የማውሰን ሰዓት</standard>
  3436. </long>
  3437. </metazone>
  3438. <metazone type="Mongolia">
  3439. <long>
  3440. <generic>የኡላን ባቶር ጊዜ</generic>
  3441. <standard>የኡላን ባቶር መደበኛ ሰዓት አቆጣጠር</standard>
  3442. <daylight>የኡላን ባቶር የበጋ ሰዓት አቆጣጠር</daylight>
  3443. </long>
  3444. </metazone>
  3445. <metazone type="Moscow">
  3446. <long>
  3447. <generic>የሞስኮ ሰዓት አቆጣጠር</generic>
  3448. <standard>የሞስኮ መደበኛ ሰዓት አቆጣጠር</standard>
  3449. <daylight>የሞስኮ የበጋ ሰዓት አቆጣጠር</daylight>
  3450. </long>
  3451. </metazone>
  3452. <metazone type="Myanmar">
  3453. <long>
  3454. <standard>የሚያንማር ሰዓት</standard>
  3455. </long>
  3456. </metazone>
  3457. <metazone type="Nauru">
  3458. <long>
  3459. <standard>የናውሩ ሰዓት</standard>
  3460. </long>
  3461. </metazone>
  3462. <metazone type="Nepal">
  3463. <long>
  3464. <standard>የኔፓል ሰዓት</standard>
  3465. </long>
  3466. </metazone>
  3467. <metazone type="New_Caledonia">
  3468. <long>
  3469. <generic>የኒው ካሌዶኒያ ሰዓት</generic>
  3470. <standard>የኒው ካሌዶኒያ መደበኛ ሰዓት</standard>
  3471. <daylight>የኒው ካሌዶኒያ ክረምት ሰዓት</daylight>
  3472. </long>
  3473. </metazone>
  3474. <metazone type="New_Zealand">
  3475. <long>
  3476. <generic>የኒው ዚላንድ ሰዓት</generic>
  3477. <standard>የኒው ዚላንድ መደበኛ ሰዓት</standard>
  3478. <daylight>የኒው ዚላንድ የቀን ብርሃን ሰዓት</daylight>
  3479. </long>
  3480. </metazone>
  3481. <metazone type="Newfoundland">
  3482. <long>
  3483. <generic>የኒውፋውንድላንድ የሰዓት አቆጣጠር</generic>
  3484. <standard>የኒውፋውንድላንድ መደበኛ የሰዓት አቆጣጠር</standard>
  3485. <daylight>የኒውፋውንድላንድ የቀን የሰዓት አቆጣጠር</daylight>
  3486. </long>
  3487. </metazone>
  3488. <metazone type="Niue">
  3489. <long>
  3490. <standard>የኒዩዌ ሰዓት</standard>
  3491. </long>
  3492. </metazone>
  3493. <metazone type="Norfolk">
  3494. <long>
  3495. <standard>የኖርፎልክ ደሴቶች ሰዓት</standard>
  3496. </long>
  3497. </metazone>
  3498. <metazone type="Noronha">
  3499. <long>
  3500. <generic>የኖሮንሃ ሰዓት አቆጣጠር</generic>
  3501. <standard>የፈርናንዶ ዲ ኖሮንቻ መደበኛ ሰዓት አቆጣጠር</standard>
  3502. <daylight>የፈርናንዶ ዲ ኖሮንሃ የበጋ የሰዓት አቆጣጠር</daylight>
  3503. </long>
  3504. </metazone>
  3505. <metazone type="Novosibirsk">
  3506. <long>
  3507. <generic>የኖቮሲብሪስክ የሰዓት አቆጣጠር</generic>
  3508. <standard>የኖቮሲቢርስክ መደበኛ የሰዓት አቆጣጠር</standard>
  3509. <daylight>የኖቮሲብሪስክ የበጋ ሰአት አቆጣጠር</daylight>
  3510. </long>
  3511. </metazone>
  3512. <metazone type="Omsk">
  3513. <long>
  3514. <generic>የኦምስክ የሰዓት አቆጣጠር</generic>
  3515. <standard>የኦምስክ መደበኛ ሰዓት አቆጣጠር</standard>
  3516. <daylight>የኦምስክ የበጋ ሰዓት አቆጣጠር</daylight>
  3517. </long>
  3518. </metazone>
  3519. <metazone type="Pakistan">
  3520. <long>
  3521. <generic>የፓኪስታን ሰዓት</generic>
  3522. <standard>የፓኪስታን መደበኛ ሰዓት</standard>
  3523. <daylight>የፓኪስታን ክረምት ሰዓት</daylight>
  3524. </long>
  3525. </metazone>
  3526. <metazone type="Palau">
  3527. <long>
  3528. <standard>የፓላው ሰዓት</standard>
  3529. </long>
  3530. </metazone>
  3531. <metazone type="Papua_New_Guinea">
  3532. <long>
  3533. <standard>የፓፗ ኒው ጊኒ ሰዓት</standard>
  3534. </long>
  3535. </metazone>
  3536. <metazone type="Paraguay">
  3537. <long>
  3538. <generic>የፓራጓይ ሰዓት</generic>
  3539. <standard>የፓራጓይ መደበኛ ሰዓት</standard>
  3540. <daylight>የፓራጓይ ክረምት ሰዓት</daylight>
  3541. </long>
  3542. </metazone>
  3543. <metazone type="Peru">
  3544. <long>
  3545. <generic>የፔሩ ሰዓት</generic>
  3546. <standard>የፔሩ መደበኛ ሰዓት</standard>
  3547. <daylight>የፔሩ ክረምት ሰዓት</daylight>
  3548. </long>
  3549. </metazone>
  3550. <metazone type="Philippines">
  3551. <long>
  3552. <generic>የፊሊፒን ሰዓት</generic>
  3553. <standard>የፊሊፒን መደበኛ ሰዓት</standard>
  3554. <daylight>የፊሊፒን ክረምት ሰዓት</daylight>
  3555. </long>
  3556. </metazone>
  3557. <metazone type="Phoenix_Islands">
  3558. <long>
  3559. <standard>የፊኒክስ ደሴቶች ሰዓት</standard>
  3560. </long>
  3561. </metazone>
  3562. <metazone type="Pierre_Miquelon">
  3563. <long>
  3564. <generic>ቅዱስ የፒዬር እና ሚኴሎን ሰዓት</generic>
  3565. <standard>ቅዱስ የፒዬር እና ሚኴሎን መደበኛ ሰዓት</standard>
  3566. <daylight>ቅዱስ የፒዬር እና ሚኴሎን የቀን ብርሃን ሰዓት</daylight>
  3567. </long>
  3568. </metazone>
  3569. <metazone type="Pitcairn">
  3570. <long>
  3571. <standard>የፒትካይርን ሰዓት</standard>
  3572. </long>
  3573. </metazone>
  3574. <metazone type="Ponape">
  3575. <long>
  3576. <standard>የፖናፔ ሰዓት</standard>
  3577. </long>
  3578. </metazone>
  3579. <metazone type="Reunion">
  3580. <long>
  3581. <standard>የሬዩኒየን ሰዓት</standard>
  3582. </long>
  3583. </metazone>
  3584. <metazone type="Rothera">
  3585. <long>
  3586. <standard>የሮቴራ ሰዓት</standard>
  3587. </long>
  3588. </metazone>
  3589. <metazone type="Sakhalin">
  3590. <long>
  3591. <generic>የሳክሃሊን ሰዓት አቆጣጠር</generic>
  3592. <standard>የሳክሃሊን መደበኛ ሰዓት አቆጣጠር</standard>
  3593. <daylight>የሳክሃሊን የበጋ ሰዓት አቆጣጠር</daylight>
  3594. </long>
  3595. </metazone>
  3596. <metazone type="Samara">
  3597. <long>
  3598. <generic>የሳማራ ሰዓት አቆጣጠር</generic>
  3599. <standard>የሳማራ መደበኛ ሰዓት አቆጣጠር</standard>
  3600. <daylight>የሳማራ የበጋ ሰዓት አቆጣጠር</daylight>
  3601. </long>
  3602. </metazone>
  3603. <metazone type="Samoa">
  3604. <long>
  3605. <generic>የሳሞዋ ሰዓት</generic>
  3606. <standard>የሳሞዋ መደበኛ ሰዓት</standard>
  3607. <daylight>የሳሞዋ የበጋ ሰዓት</daylight>
  3608. </long>
  3609. </metazone>
  3610. <metazone type="Seychelles">
  3611. <long>
  3612. <standard>የሴሸልስ ሰዓት</standard>
  3613. </long>
  3614. </metazone>
  3615. <metazone type="Singapore">
  3616. <long>
  3617. <standard>የሲንጋፒር መደበኛ ሰዓት</standard>
  3618. </long>
  3619. </metazone>
  3620. <metazone type="Solomon">
  3621. <long>
  3622. <standard>የሰለሞን ደሴቶች ሰዓት</standard>
  3623. </long>
  3624. </metazone>
  3625. <metazone type="South_Georgia">
  3626. <long>
  3627. <standard>የደቡብ ጂዮርጂያ ሰዓት</standard>
  3628. </long>
  3629. </metazone>
  3630. <metazone type="Suriname">
  3631. <long>
  3632. <standard>የሱሪናም ሰዓት</standard>
  3633. </long>
  3634. </metazone>
  3635. <metazone type="Syowa">
  3636. <long>
  3637. <standard>የሲዮዋ ሰዓት</standard>
  3638. </long>
  3639. </metazone>
  3640. <metazone type="Tahiti">
  3641. <long>
  3642. <standard>የታሂቲ ሰዓት</standard>
  3643. </long>
  3644. </metazone>
  3645. <metazone type="Taipei">
  3646. <long>
  3647. <generic>የታይፔይ ሰዓት</generic>
  3648. <standard>የታይፔይ መደበኛ ሰዓት</standard>
  3649. <daylight>የታይፔይ የቀን ብርሃን ሰዓት</daylight>
  3650. </long>
  3651. </metazone>
  3652. <metazone type="Tajikistan">
  3653. <long>
  3654. <standard>የታጂኪስታን ሰዓት</standard>
  3655. </long>
  3656. </metazone>
  3657. <metazone type="Tokelau">
  3658. <long>
  3659. <standard>የቶኬላው ሰዓት</standard>
  3660. </long>
  3661. </metazone>
  3662. <metazone type="Tonga">
  3663. <long>
  3664. <generic>የቶንጋ ሰዓት</generic>
  3665. <standard>የቶንጋ መደበኛ ሰዓት</standard>
  3666. <daylight>የቶንጋ ክረምት ሰዓት</daylight>
  3667. </long>
  3668. </metazone>
  3669. <metazone type="Truk">
  3670. <long>
  3671. <standard>የቹክ ሰዓት</standard>
  3672. </long>
  3673. </metazone>
  3674. <metazone type="Turkmenistan">
  3675. <long>
  3676. <generic>የቱርክመኒስታን ሰዓት</generic>
  3677. <standard>የቱርክመኒስታን መደበኛ ሰዓት</standard>
  3678. <daylight>የቱርክመኒስታን ክረምት ሰዓት</daylight>
  3679. </long>
  3680. </metazone>
  3681. <metazone type="Tuvalu">
  3682. <long>
  3683. <standard>የቱቫሉ ሰዓት</standard>
  3684. </long>
  3685. </metazone>
  3686. <metazone type="Uruguay">
  3687. <long>
  3688. <generic>የኡራጓይ ሰዓት</generic>
  3689. <standard>የኡራጓይ መደበኛ ሰዓት</standard>
  3690. <daylight>የኡራጓይ ክረምት ሰዓት</daylight>
  3691. </long>
  3692. </metazone>
  3693. <metazone type="Uzbekistan">
  3694. <long>
  3695. <generic>የኡዝቤኪስታን ሰዓት</generic>
  3696. <standard>የኡዝቤኪስታን መደበኛ ሰዓት</standard>
  3697. <daylight>የኡዝቤኪስታን ክረምት ሰዓት</daylight>
  3698. </long>
  3699. </metazone>
  3700. <metazone type="Vanuatu">
  3701. <long>
  3702. <generic>የቫኗቱ ሰዓት</generic>
  3703. <standard>የቫኗቱ መደበኛ ሰዓት</standard>
  3704. <daylight>የቫኗቱ ክረምት ሰዓት</daylight>
  3705. </long>
  3706. </metazone>
  3707. <metazone type="Venezuela">
  3708. <long>
  3709. <standard>የቬኔዝዌላ ሰዓት</standard>
  3710. </long>
  3711. </metazone>
  3712. <metazone type="Vladivostok">
  3713. <long>
  3714. <generic>የቭላዲቮስቶክ የሰዓት አቆጣጠር</generic>
  3715. <standard>የቪላዲቮስቶክ መደበኛ የሰዓት አቆጣጠር</standard>
  3716. <daylight>የቭላዲቮስቶክ የበጋ የሰዓት አቆጣጠር</daylight>
  3717. </long>
  3718. </metazone>
  3719. <metazone type="Volgograd">
  3720. <long>
  3721. <generic>የቮልጎራድ የሰዓት አቆጣጠር</generic>
  3722. <standard>የቮልጎራድ መደበኛ ሰዓት አቆጣጠር</standard>
  3723. <daylight>የቫልጎራድ የበጋ ሰዓት አቆጣጠር</daylight>
  3724. </long>
  3725. </metazone>
  3726. <metazone type="Vostok">
  3727. <long>
  3728. <standard>የቮስቶክ ሰዓት</standard>
  3729. </long>
  3730. </metazone>
  3731. <metazone type="Wake">
  3732. <long>
  3733. <standard>የዌክ ደሴት ሰዓት</standard>
  3734. </long>
  3735. </metazone>
  3736. <metazone type="Wallis">
  3737. <long>
  3738. <standard>የዋሊስ እና ፉቱና ሰዓት</standard>
  3739. </long>
  3740. </metazone>
  3741. <metazone type="Yakutsk">
  3742. <long>
  3743. <generic>ያኩትስክ የሰዓት አቆጣጠር</generic>
  3744. <standard>ያኩትስክ መደበኛ ሰዓት አቆጣጠር</standard>
  3745. <daylight>የያኩትስክ የበጋ ሰዓት አቆጣጠር</daylight>
  3746. </long>
  3747. </metazone>
  3748. <metazone type="Yekaterinburg">
  3749. <long>
  3750. <generic>የየካተሪንበርግ ሰዓት አቆጣጠር</generic>
  3751. <standard>የየካተሪንበርግ መደበኛ ሰዓት አቆጣጠር</standard>
  3752. <daylight>የየካተሪንበርግ የበጋ ሰዓት አቆጣጠር</daylight>
  3753. </long>
  3754. </metazone>
  3755. </timeZoneNames>
  3756. </dates>
  3757. <numbers>
  3758. <defaultNumberingSystem>latn</defaultNumberingSystem>
  3759. <otherNumberingSystems>
  3760. <native>latn</native>
  3761. <traditional>ethi</traditional>
  3762. </otherNumberingSystems>
  3763. <symbols numberSystem="latn">
  3764. <decimal>.</decimal>
  3765. <group>,</group>
  3766. <list>;</list>
  3767. <percentSign>%</percentSign>
  3768. <plusSign>+</plusSign>
  3769. <minusSign>-</minusSign>
  3770. <exponential>E</exponential>
  3771. <superscriptingExponent>×</superscriptingExponent>
  3772. <perMille>‰</perMille>
  3773. <infinity>∞</infinity>
  3774. <nan>NaN</nan>
  3775. </symbols>
  3776. <decimalFormats numberSystem="latn">
  3777. <decimalFormatLength>
  3778. <decimalFormat>
  3779. <pattern>#,##0.###</pattern>
  3780. </decimalFormat>
  3781. </decimalFormatLength>
  3782. <decimalFormatLength type="long">
  3783. <decimalFormat>
  3784. <pattern type="1000" count="one">0 ሺ</pattern>
  3785. <pattern type="1000" count="other">0 ሺ</pattern>
  3786. <pattern type="10000" count="one">00 ሺ</pattern>
  3787. <pattern type="10000" count="other">00 ሺ</pattern>
  3788. <pattern type="100000" count="one">000 ሺ</pattern>
  3789. <pattern type="100000" count="other">000 ሺ</pattern>
  3790. <pattern type="1000000" count="one">0 ሚሊዮን</pattern>
  3791. <pattern type="1000000" count="other">0 ሚሊዮን</pattern>
  3792. <pattern type="10000000" count="one">00 ሚሊዮን</pattern>
  3793. <pattern type="10000000" count="other">00 ሚሊዮን</pattern>
  3794. <pattern type="100000000" count="one">000 ሚሊዮን</pattern>
  3795. <pattern type="100000000" count="other">000 ሚሊዮን</pattern>
  3796. <pattern type="1000000000" count="one">0 ቢሊዮን</pattern>
  3797. <pattern type="1000000000" count="other">0 ቢሊዮን</pattern>
  3798. <pattern type="10000000000" count="one">00 ቢሊዮን</pattern>
  3799. <pattern type="10000000000" count="other">00 ቢሊዮን</pattern>
  3800. <pattern type="100000000000" count="one">000 ቢሊዮን</pattern>
  3801. <pattern type="100000000000" count="other">000 ቢሊዮን</pattern>
  3802. <pattern type="1000000000000" count="one">0 ትሪሊዮን</pattern>
  3803. <pattern type="1000000000000" count="other">0 ትሪሊዮን</pattern>
  3804. <pattern type="10000000000000" count="one">00 ትሪሊዮን</pattern>
  3805. <pattern type="10000000000000" count="other">00 ትሪሊዮን</pattern>
  3806. <pattern type="100000000000000" count="one">000 ትሪሊዮን</pattern>
  3807. <pattern type="100000000000000" count="other">000 ትሪሊዮን</pattern>
  3808. </decimalFormat>
  3809. </decimalFormatLength>
  3810. <decimalFormatLength type="short">
  3811. <decimalFormat>
  3812. <pattern type="1000" count="one">0 ሺ</pattern>
  3813. <pattern type="1000" count="other">0 ሺ</pattern>
  3814. <pattern type="10000" count="one">00 ሺ</pattern>
  3815. <pattern type="10000" count="other">00 ሺ</pattern>
  3816. <pattern type="100000" count="one">000 ሺ</pattern>
  3817. <pattern type="100000" count="other">000 ሺ</pattern>
  3818. <pattern type="1000000" count="one">0 ሜትር</pattern>
  3819. <pattern type="1000000" count="other">0 ሜትር</pattern>
  3820. <pattern type="10000000" count="one">00 ሜትር</pattern>
  3821. <pattern type="10000000" count="other">00 ሜትር</pattern>
  3822. <pattern type="100000000" count="one">000 ሜትር</pattern>
  3823. <pattern type="100000000" count="other">000 ሜትር</pattern>
  3824. <pattern type="1000000000" count="one">0 ቢ</pattern>
  3825. <pattern type="1000000000" count="other">0 ቢ</pattern>
  3826. <pattern type="10000000000" count="one">00 ቢ</pattern>
  3827. <pattern type="10000000000" count="other">00 ቢ</pattern>
  3828. <pattern type="100000000000" count="one">000 ቢ</pattern>
  3829. <pattern type="100000000000" count="other">000 ቢ</pattern>
  3830. <pattern type="1000000000000" count="one">0 ት</pattern>
  3831. <pattern type="1000000000000" count="other">0 ት</pattern>
  3832. <pattern type="10000000000000" count="one">00 ት</pattern>
  3833. <pattern type="10000000000000" count="other">00 ት</pattern>
  3834. <pattern type="100000000000000" count="one">000 ት</pattern>
  3835. <pattern type="100000000000000" count="other">000 ት</pattern>
  3836. </decimalFormat>
  3837. </decimalFormatLength>
  3838. </decimalFormats>
  3839. <scientificFormats numberSystem="latn">
  3840. <scientificFormatLength>
  3841. <scientificFormat>
  3842. <pattern>#E0</pattern>
  3843. </scientificFormat>
  3844. </scientificFormatLength>
  3845. </scientificFormats>
  3846. <percentFormats numberSystem="latn">
  3847. <percentFormatLength>
  3848. <percentFormat>
  3849. <pattern>#,##0%</pattern>
  3850. </percentFormat>
  3851. </percentFormatLength>
  3852. </percentFormats>
  3853. <currencyFormats numberSystem="latn">
  3854. <currencyFormatLength>
  3855. <currencyFormat type="standard">
  3856. <pattern>¤#,##0.00</pattern>
  3857. </currencyFormat>
  3858. <currencyFormat type="accounting">
  3859. <pattern>¤#,##0.00;(¤#,##0.00)</pattern>
  3860. </currencyFormat>
  3861. </currencyFormatLength>
  3862. <unitPattern count="one">{0} {1}</unitPattern>
  3863. <unitPattern count="other">{0} {1}</unitPattern>
  3864. </currencyFormats>
  3865. <currencies>
  3866. <currency type="AED">
  3867. <displayName>የተባበሩት የአረብ ኤምረትስ ዲርሀም</displayName>
  3868. <displayName count="one">የተባበሩት የአረብ ኤምረትስ ዲርሀም</displayName>
  3869. <displayName count="other">የተባበሩት የአረብ ኤምረትስ ዲርሀም</displayName>
  3870. </currency>
  3871. <currency type="AFN">
  3872. <displayName>የአፍጋን አፍጋኒ</displayName>
  3873. <displayName count="one">የአፍጋን አፍጋኒ</displayName>
  3874. <displayName count="other">የአፍጋን አፍጋኒ</displayName>
  3875. </currency>
  3876. <currency type="ALL">
  3877. <displayName>የአልባንያ ሌክ</displayName>
  3878. <displayName count="one">የአልባንያ ሌክ</displayName>
  3879. <displayName count="other">የአልባንያ ሌክ</displayName>
  3880. </currency>
  3881. <currency type="AMD">
  3882. <displayName>የአርመን ድራም</displayName>
  3883. <displayName count="one">የአርመን ድራም</displayName>
  3884. <displayName count="other">የአርመን ድራም</displayName>
  3885. </currency>
  3886. <currency type="ANG">
  3887. <displayName>ኔዘርላንድስ አንቲሊአን ጊልደር</displayName>
  3888. </currency>
  3889. <currency type="AOA">
  3890. <displayName>የአንጎላ ኩዋንዛ</displayName>
  3891. <displayName count="one">የአንጎላ ኩዋንዛ</displayName>
  3892. <displayName count="other">የአንጎላ ኩዋንዛ</displayName>
  3893. </currency>
  3894. <currency type="ARS">
  3895. <displayName>የአርጀንቲና ፔሶ</displayName>
  3896. <displayName count="one">የአርጀንቲና ፔሶ</displayName>
  3897. <displayName count="other">የአርጀንቲና ፔሶ</displayName>
  3898. </currency>
  3899. <currency type="AUD">
  3900. <displayName>የአውስትራሊያ ዶላር</displayName>
  3901. <displayName count="one">የአውስትራሊያ ዶላር</displayName>
  3902. <displayName count="other">የአውስትራሊያ ዶላር</displayName>
  3903. <symbol>AU$</symbol>
  3904. </currency>
  3905. <currency type="AWG">
  3906. <displayName>አሩባን ፍሎሪን</displayName>
  3907. <displayName count="one">አሩባን ፍሎሪን</displayName>
  3908. <displayName count="other">አሩባን ፍሎሪን</displayName>
  3909. </currency>
  3910. <currency type="AZN">
  3911. <displayName>የአዛርባጃን ማናት</displayName>
  3912. <displayName count="one">የአዛርባጃን ማናት</displayName>
  3913. <displayName count="other">የአዛርባጃን ማናት</displayName>
  3914. </currency>
  3915. <currency type="BAM">
  3916. <displayName>የቦስኒያ ሄርዞጎቪና የሚመነዘር ማርክ</displayName>
  3917. <displayName count="one">የቦስኒያ ሄርዞጎቪና የሚመነዘር ማርክ</displayName>
  3918. <displayName count="other">የቦስኒያ ሄርዞጎቪና የሚመነዘር ማርክ</displayName>
  3919. </currency>
  3920. <currency type="BBD">
  3921. <displayName>የባርቤዶስ ዶላር</displayName>
  3922. <displayName count="one">የባርቤዶስ ዶላር</displayName>
  3923. <displayName count="other">የባርቤዶስ ዶላር</displayName>
  3924. </currency>
  3925. <currency type="BDT">
  3926. <displayName>የባንግላዲሽ ታካ</displayName>
  3927. <displayName count="one">የባንግላዲሽ ታካ</displayName>
  3928. <displayName count="other">የባንግላዲሽ ታካ</displayName>
  3929. </currency>
  3930. <currency type="BGN">
  3931. <displayName>የቡልጋሪያ ሌቭ</displayName>
  3932. <displayName count="one">የቡልጋሪያ ሌቭ</displayName>
  3933. <displayName count="other">የቡልጋሪያ ሌቭ</displayName>
  3934. </currency>
  3935. <currency type="BHD">
  3936. <displayName>የባኽሬን ዲናር</displayName>
  3937. <displayName count="one">የባኽሬን ዲናር</displayName>
  3938. <displayName count="other">የባኽሬን ዲናር</displayName>
  3939. </currency>
  3940. <currency type="BIF">
  3941. <displayName>የብሩንዲ ፍራንክ</displayName>
  3942. <displayName count="one">የብሩንዲ ፍራንክ</displayName>
  3943. <displayName count="other">የብሩንዲ ፍራንክ</displayName>
  3944. </currency>
  3945. <currency type="BMD">
  3946. <displayName>የቤርሙዳ ዶላር</displayName>
  3947. <displayName count="one">የቤርሙዳ ዶላር</displayName>
  3948. <displayName count="other">የቤርሙዳ ዶላር</displayName>
  3949. </currency>
  3950. <currency type="BND">
  3951. <displayName>የብሩኔ ዶላር</displayName>
  3952. <displayName count="one">የብሩኔ ዶላር</displayName>
  3953. <displayName count="other">የብሩኔ ዶላር</displayName>
  3954. </currency>
  3955. <currency type="BOB">
  3956. <displayName>የቦሊቪያ ቦሊቪያኖ</displayName>
  3957. <displayName count="one">የቦሊቪያ ቦሊቪያኖ</displayName>
  3958. <displayName count="other">የቦሊቪያ ቦሊቪያኖ</displayName>
  3959. </currency>
  3960. <currency type="BRL">
  3961. <displayName>የብራዚል ሪል</displayName>
  3962. <displayName count="one">የብራዚል ሪል</displayName>
  3963. <displayName count="other">የብራዚል ሪል</displayName>
  3964. <symbol>R$</symbol>
  3965. </currency>
  3966. <currency type="BSD">
  3967. <displayName>የባሃማስ ዶላር</displayName>
  3968. <displayName count="one">የባሃማስ ዶላር</displayName>
  3969. <displayName count="other">የባሃማስ ዶላር</displayName>
  3970. </currency>
  3971. <currency type="BTN">
  3972. <displayName>ብሁታኒዝ ንጉልትረም</displayName>
  3973. <displayName count="one">ብሁታኒዝ ንጉልትረም</displayName>
  3974. <displayName count="other">ብሁታኒዝ ንጉልትረም</displayName>
  3975. </currency>
  3976. <currency type="BWP">
  3977. <displayName>የቦትስዋና ፑላ</displayName>
  3978. <displayName count="one">የቦትስዋና ፑላ</displayName>
  3979. <displayName count="other">የቦትስዋና ፑላ</displayName>
  3980. </currency>
  3981. <currency type="BYR">
  3982. <displayName>የቤላሩስያ ሩብል</displayName>
  3983. <displayName count="one">የቤላሩስያ ሩብል</displayName>
  3984. <displayName count="other">የቤላሩስያ ሩብል</displayName>
  3985. </currency>
  3986. <currency type="BZD">
  3987. <displayName>የቤሊዝ ዶላር</displayName>
  3988. <displayName count="one">የቤሊዝ ዶላር</displayName>
  3989. <displayName count="other">የቤሊዝ ዶላር</displayName>
  3990. </currency>
  3991. <currency type="CAD">
  3992. <displayName>የካናዳ ዶላር</displayName>
  3993. <displayName count="one">የካናዳ ዶላር</displayName>
  3994. <displayName count="other">የካናዳ ዶላር</displayName>
  3995. </currency>
  3996. <currency type="CDF">
  3997. <displayName>የኮንጐ ፍራንክ ኮንጐሌዝ</displayName>
  3998. <displayName count="one">የኮንጐ ፍራንክ ኮንጐሌዝ</displayName>
  3999. <displayName count="other">የኮንጐ ፍራንክ ኮንጐሌዝ</displayName>
  4000. </currency>
  4001. <currency type="CHF">
  4002. <displayName>የስዊስ ፍራንክ</displayName>
  4003. <displayName count="one">የስዊስ ፍራንክ</displayName>
  4004. <displayName count="other">የስዊስ ፍራንክ</displayName>
  4005. </currency>
  4006. <currency type="CLP">
  4007. <displayName>የቺሊ ፔሶ</displayName>
  4008. <displayName count="one">የቺሊ ፔሶ</displayName>
  4009. <displayName count="other">የቺሊ ፔሶ</displayName>
  4010. </currency>
  4011. <currency type="CNY">
  4012. <displayName>የቻይና የን</displayName>
  4013. <displayName count="one">የቻይና የን</displayName>
  4014. <displayName count="other">የቻይና የን</displayName>
  4015. <symbol>CN¥</symbol>
  4016. </currency>
  4017. <currency type="COP">
  4018. <displayName>የኮሎምቢያ ፔሶ</displayName>
  4019. <displayName count="one">የኮሎምቢያ ፔሶ</displayName>
  4020. <displayName count="other">የኮሎምቢያ ፔሶ</displayName>
  4021. </currency>
  4022. <currency type="CRC">
  4023. <displayName>የኮስታሪካ ኮሎን</displayName>
  4024. <displayName count="one">የኮስታሪካ ኮሎን</displayName>
  4025. <displayName count="other">የኮስታሪካ ኮሎን</displayName>
  4026. </currency>
  4027. <currency type="CUC">
  4028. <displayName>የኩባ የሚመነዘር ፔሶ</displayName>
  4029. <displayName count="one">የኩባ የሚመነዘር ፔሶ</displayName>
  4030. <displayName count="other">የኩባ የሚመነዘር ፔሶ</displayName>
  4031. </currency>
  4032. <currency type="CUP">
  4033. <displayName>የኩባ ፔሶ</displayName>
  4034. <displayName count="one">የኩባ ፔሶ</displayName>
  4035. <displayName count="other">የኩባ ፔሶ</displayName>
  4036. </currency>
  4037. <currency type="CVE">
  4038. <displayName>የኬፕ ቫርዲ ኤስኩዶ</displayName>
  4039. <displayName count="one">የኬፕ ቫርዲ ኤስኩዶ</displayName>
  4040. <displayName count="other">የኬፕ ቫርዲ ኤስኩዶ</displayName>
  4041. </currency>
  4042. <currency type="CZK">
  4043. <displayName>ቼክ ሪፐፕሊክ ኮሩና</displayName>
  4044. <displayName count="one">ቼክ ሪፐፕሊክ ኮሩና</displayName>
  4045. <displayName count="other">ቼክ ሪፐብሊክ ኮሮና</displayName>
  4046. </currency>
  4047. <currency type="DJF">
  4048. <displayName>የጅቡቲ ፍራንክ</displayName>
  4049. <displayName count="one">የጅቡቲ ፍራንክ</displayName>
  4050. <displayName count="other">የጅቡቲ ፍራንክ</displayName>
  4051. </currency>
  4052. <currency type="DKK">
  4053. <displayName>የዴንማርክ ክሮን</displayName>
  4054. <displayName count="one">የዴንማርክ ክሮን</displayName>
  4055. <displayName count="other">የዴንማርክ ክሮን</displayName>
  4056. </currency>
  4057. <currency type="DOP">
  4058. <displayName>የዶሚኒክ ፔሶ</displayName>
  4059. <displayName count="one">የዶሚኒክ ፔሶ</displayName>
  4060. <displayName count="other">የዶሚኒክ ፔሶ</displayName>
  4061. </currency>
  4062. <currency type="DZD">
  4063. <displayName>የአልጄሪያ ዲናር</displayName>
  4064. <displayName count="one">የአልጄሪያ ዲናር</displayName>
  4065. <displayName count="other">የአልጄሪያ ዲናር</displayName>
  4066. </currency>
  4067. <currency type="EGP">
  4068. <displayName>የግብጽ ፓውንድ</displayName>
  4069. <displayName count="one">የግብጽ ፓውንድ</displayName>
  4070. <displayName count="other">የግብጽ ፓውንድ</displayName>
  4071. </currency>
  4072. <currency type="ERN">
  4073. <displayName>ዬኤርትራ ናቅፋ</displayName>
  4074. <displayName count="one">ዬኤርትራ ናቅፋ</displayName>
  4075. <displayName count="other">ዬኤርትራ ናቅፋ</displayName>
  4076. </currency>
  4077. <currency type="ETB">
  4078. <displayName>የኢትዮጵያ ብር</displayName>
  4079. <displayName count="one">የኢትዮጵያ ብር</displayName>
  4080. <displayName count="other">የኢትዮጵያ ብር</displayName>
  4081. <symbol>ብር</symbol>
  4082. </currency>
  4083. <currency type="EUR">
  4084. <displayName>ዩሮ</displayName>
  4085. <displayName count="one">ዩሮ</displayName>
  4086. <displayName count="other">ዩሮ</displayName>
  4087. <symbol>€</symbol>
  4088. </currency>
  4089. <currency type="FJD">
  4090. <displayName>የፊጂ ዶላር</displayName>
  4091. <displayName count="one">የፊጂ ዶላር</displayName>
  4092. <displayName count="other">የፊጂ ዶላር</displayName>
  4093. </currency>
  4094. <currency type="FKP">
  4095. <displayName>የፎክላንድ ደሴቶች ፓውንድ</displayName>
  4096. <displayName count="one">የፎክላንድ ደሴቶች ፓውንድ</displayName>
  4097. <displayName count="other">የፎክላንድ ደሴቶች ፓውንድ</displayName>
  4098. </currency>
  4099. <currency type="GBP">
  4100. <displayName>የእንግሊዝ ፓውንድ ስተርሊንግ</displayName>
  4101. <displayName count="one">የእንግሊዝ ፓውንድ ስተርሊንግ</displayName>
  4102. <displayName count="other">የእንግሊዝ ፓውንድ ስተርሊንግ</displayName>
  4103. <symbol>£</symbol>
  4104. </currency>
  4105. <currency type="GEL">
  4106. <displayName>የጆርጅያ ላሪ</displayName>
  4107. <displayName count="one">የጆርጅያ ላሪ</displayName>
  4108. <displayName count="other">የጆርጅያ ላሪ</displayName>
  4109. </currency>
  4110. <currency type="GHC">
  4111. <displayName>የጋና ሴዲ</displayName>
  4112. </currency>
  4113. <currency type="GHS">
  4114. <displayName>የጋና ሲዲ</displayName>
  4115. <displayName count="one">የጋና ሲዲ</displayName>
  4116. <displayName count="other">የጋና ሲዲ</displayName>
  4117. </currency>
  4118. <currency type="GIP">
  4119. <displayName>ጊብራልታር ፓውንድ</displayName>
  4120. <displayName count="one">ጊብራልታር ፓውንድ</displayName>
  4121. <displayName count="other">ጊብራልታር ፓውንድ</displayName>
  4122. </currency>
  4123. <currency type="GMD">
  4124. <displayName>የጋምቢያ ዳላሲ</displayName>
  4125. <displayName count="one">የጋምቢያ ዳላሲ</displayName>
  4126. <displayName count="other">የጋምቢያ ዳላሲ</displayName>
  4127. </currency>
  4128. <currency type="GNF">
  4129. <displayName>የጊኒ ፍራንክ</displayName>
  4130. <displayName count="one">የጊኒ ፍራንክ</displayName>
  4131. <displayName count="other">የጊኒ ፍራንክ</displayName>
  4132. </currency>
  4133. <currency type="GTQ">
  4134. <displayName>ጓቲማላን ኩቲዛል</displayName>
  4135. <displayName count="one">ጓቲማላን ኩቲዛል</displayName>
  4136. <displayName count="other">ጓቲማላን ኩቲዛል</displayName>
  4137. </currency>
  4138. <currency type="GYD">
  4139. <displayName>የጉየና ዶላር</displayName>
  4140. <displayName count="one">የጉየና ዶላር</displayName>
  4141. <displayName count="other">የጉየና ዶላር</displayName>
  4142. </currency>
  4143. <currency type="HKD">
  4144. <displayName>የሆንግኮንግ ዶላር</displayName>
  4145. <displayName count="one">የሆንግኮንግ ዶላር</displayName>
  4146. <displayName count="other">የሆንግኮንግ ዶላር</displayName>
  4147. <symbol>HK$</symbol>
  4148. </currency>
  4149. <currency type="HNL">
  4150. <displayName>የሃንዱራ ሌምፓአይራ</displayName>
  4151. <displayName count="one">የሃንዱራ ሌምፓአይራ</displayName>
  4152. <displayName count="other">የሃንዱራ ሌምፓአይራ</displayName>
  4153. </currency>
  4154. <currency type="HRK">
  4155. <displayName>የክሮሽያ ኩና</displayName>
  4156. <displayName count="one">የክሮሽያ ኩና</displayName>
  4157. <displayName count="other">የክሮሽያ ኩና</displayName>
  4158. </currency>
  4159. <currency type="HTG">
  4160. <displayName>የሃያቲ ጓርዴ</displayName>
  4161. <displayName count="one">የሃያቲ ጓርዴ</displayName>
  4162. <displayName count="other">የሃያቲ ጓርዴ</displayName>
  4163. </currency>
  4164. <currency type="HUF">
  4165. <displayName>የሁንጋሪ ፎሪንት</displayName>
  4166. <displayName count="one">የሁንጋሪ ፎሪንት</displayName>
  4167. <displayName count="other">የሃንጋሪያን ፎሪንት</displayName>
  4168. </currency>
  4169. <currency type="IDR">
  4170. <displayName>የኢንዶኔዥያ ሩፒሃ</displayName>
  4171. <displayName count="one">የኢንዶኔዥያ ሩፒሃ</displayName>
  4172. <displayName count="other">የኢንዶኔዥያ ሩፒሃ</displayName>
  4173. </currency>
  4174. <currency type="ILS">
  4175. <displayName>የእስራኤል አዲስ ሽቅል</displayName>
  4176. <displayName count="one">የእስራኤል አዲስ ሽቅል</displayName>
  4177. <displayName count="other">የእስራኤል አዲስ ሽቅል</displayName>
  4178. <symbol>₪</symbol>
  4179. </currency>
  4180. <currency type="INR">
  4181. <displayName>የሕንድ ሩፒ</displayName>
  4182. <displayName count="one">የሕንድ ሩፒ</displayName>
  4183. <displayName count="other">የሕንድ ሩፒ</displayName>
  4184. <symbol>₹</symbol>
  4185. </currency>
  4186. <currency type="IQD">
  4187. <displayName>የኢራቅ ዲናር</displayName>
  4188. <displayName count="one">የኢራቅ ዲናር</displayName>
  4189. <displayName count="other">የኢራቅ ዲናር</displayName>
  4190. </currency>
  4191. <currency type="IRR">
  4192. <displayName>የኢራን ሪአል</displayName>
  4193. <displayName count="one">የኢራን ሪአል</displayName>
  4194. <displayName count="other">የኢራን ሪአል</displayName>
  4195. </currency>
  4196. <currency type="ISK">
  4197. <displayName>የአይስላንድ ክሮና</displayName>
  4198. <displayName count="one">የአይስላንድ ክሮና</displayName>
  4199. <displayName count="other">የአይስላንድ ክሮና</displayName>
  4200. </currency>
  4201. <currency type="JMD">
  4202. <displayName>የጃማይካ ዶላር</displayName>
  4203. <displayName count="one">የጃማይካ ዶላር</displayName>
  4204. <displayName count="other">የጃማይካ ዶላር</displayName>
  4205. </currency>
  4206. <currency type="JOD">
  4207. <displayName>የጆርዳን ዲናር</displayName>
  4208. <displayName count="one">የጆርዳን ዲናር</displayName>
  4209. <displayName count="other">የጆርዳን ዲናር</displayName>
  4210. </currency>
  4211. <currency type="JPY">
  4212. <displayName>የጃፓን የን</displayName>
  4213. <displayName count="one">የጃፓን የን</displayName>
  4214. <displayName count="other">የጃፓን የን</displayName>
  4215. <symbol>JP¥</symbol>
  4216. </currency>
  4217. <currency type="KES">
  4218. <displayName>የኬኒያ ሺሊንግ</displayName>
  4219. <displayName count="one">የኬኒያ ሺሊንግ</displayName>
  4220. <displayName count="other">የኬኒያ ሺሊንግ</displayName>
  4221. </currency>
  4222. <currency type="KGS">
  4223. <displayName>የኪርጊስታን ሶም</displayName>
  4224. <displayName count="one">የኪርጊስታን ሶም</displayName>
  4225. <displayName count="other">የኪርጊስታን ሶም</displayName>
  4226. </currency>
  4227. <currency type="KHR">
  4228. <displayName>የካምቦዲያ ሬል</displayName>
  4229. <displayName count="one">የካምቦዲያ ሬል</displayName>
  4230. <displayName count="other">የካምቦዲያ ሬል</displayName>
  4231. </currency>
  4232. <currency type="KMF">
  4233. <displayName>የኮሞሮ ፍራንክ</displayName>
  4234. <displayName count="one">የኮሞሮ ፍራንክ</displayName>
  4235. <displayName count="other">የኮሞሮ ፍራንክ</displayName>
  4236. </currency>
  4237. <currency type="KPW">
  4238. <displayName>የሰሜን ኮሪያ ዎን</displayName>
  4239. <displayName count="one">የሰሜን ኮሪያ ዎን</displayName>
  4240. <displayName count="other">የሰሜን ኮሪያ ዎን</displayName>
  4241. </currency>
  4242. <currency type="KRW">
  4243. <displayName>የደቡብ ኮሪያ ዎን</displayName>
  4244. <displayName count="one">የደቡብ ኮሪያ ዎን</displayName>
  4245. <displayName count="other">የደቡብ ኮሪያ ዎን</displayName>
  4246. <symbol>₩</symbol>
  4247. </currency>
  4248. <currency type="KWD">
  4249. <displayName>የኩዌት ዲናር</displayName>
  4250. <displayName count="one">የኩዌት ዲናር</displayName>
  4251. <displayName count="other">የኩዌት ዲናር</displayName>
  4252. </currency>
  4253. <currency type="KYD">
  4254. <displayName>የካይማን ደሴቶች ዶላር</displayName>
  4255. <displayName count="one">የካይማን ደሴቶች ዶላር</displayName>
  4256. <displayName count="other">የካይማን ደሴቶች ዶላር</displayName>
  4257. </currency>
  4258. <currency type="KZT">
  4259. <displayName>የካዛኪስታን ተንጌ</displayName>
  4260. <displayName count="one">የካዛኪስታን ተንጌ</displayName>
  4261. <displayName count="other">የካዛኪስታን ተንጌ</displayName>
  4262. </currency>
  4263. <currency type="LAK">
  4264. <displayName>የላኦቲ ኪፕ</displayName>
  4265. <displayName count="one">የላኦቲ ኪፕ</displayName>
  4266. <displayName count="other">የላኦቲ ኪፕ</displayName>
  4267. </currency>
  4268. <currency type="LBP">
  4269. <displayName>የሊባኖስ ፓውንድ</displayName>
  4270. <displayName count="one">የሊባኖስ ፓውንድ</displayName>
  4271. <displayName count="other">የሊባኖስ ፓውንድ</displayName>
  4272. </currency>
  4273. <currency type="LKR">
  4274. <displayName>የሲሪላንካ ሩፒ</displayName>
  4275. <displayName count="one">የሲሪላንካ ሩፒ</displayName>
  4276. <displayName count="other">የሲሪላንካ ሩፒ</displayName>
  4277. </currency>
  4278. <currency type="LRD">
  4279. <displayName>የላይቤሪያ ዶላር</displayName>
  4280. <displayName count="one">የላይቤሪያ ዶላር</displayName>
  4281. <displayName count="other">የላይቤሪያ ዶላር</displayName>
  4282. </currency>
  4283. <currency type="LSL">
  4284. <displayName>የሌሶቶ ሎቲ</displayName>
  4285. </currency>
  4286. <currency type="LTL">
  4287. <displayName>ሊቱዌንያን ሊታስ</displayName>
  4288. <displayName count="one">ሊቱዌንያን ሊታስ</displayName>
  4289. <displayName count="other">ሊቱዌንያን ሊታስ</displayName>
  4290. </currency>
  4291. <currency type="LVL">
  4292. <displayName>የላቲቫ ላትስ</displayName>
  4293. <displayName count="one">የላቲቫ ላትስ</displayName>
  4294. <displayName count="other">የላቲቫ ላትስ</displayName>
  4295. </currency>
  4296. <currency type="LYD">
  4297. <displayName>የሊቢያ ዲናር</displayName>
  4298. <displayName count="one">የሊቢያ ዲናር</displayName>
  4299. <displayName count="other">የሊቢያ ዲናር</displayName>
  4300. </currency>
  4301. <currency type="MAD">
  4302. <displayName>የሞሮኮ ዲርሀም</displayName>
  4303. <displayName count="one">የሞሮኮ ዲርሀም</displayName>
  4304. <displayName count="other">የሞሮኮ ዲርሀም</displayName>
  4305. </currency>
  4306. <currency type="MDL">
  4307. <displayName>ሞልዶቫን ሊኡ</displayName>
  4308. <displayName count="one">ሞልዶቫን ሊኡ</displayName>
  4309. <displayName count="other">ሞልዶቫን ሊኡ</displayName>
  4310. </currency>
  4311. <currency type="MGA">
  4312. <displayName>የማደጋስካር ፋርንክ</displayName>
  4313. <displayName count="one">የማደጋስካር ፋርንክ</displayName>
  4314. <displayName count="other">የማደጋስካር ፋርንክ</displayName>
  4315. </currency>
  4316. <currency type="MKD">
  4317. <displayName>የሜቆድንያ ዲናር</displayName>
  4318. <displayName count="one">የሜቆድንያ ዲናር</displayName>
  4319. <displayName count="other">የሜቆድንያ ዲናር</displayName>
  4320. </currency>
  4321. <currency type="MMK">
  4322. <displayName>ምያንማ ክያት</displayName>
  4323. <displayName count="one">ምያንማ ክያት</displayName>
  4324. <displayName count="other">ምያንማ ክያት</displayName>
  4325. </currency>
  4326. <currency type="MNT">
  4327. <displayName>የሞንጎሊያን ቱግሪክ</displayName>
  4328. <displayName count="one">የሞንጎሊያን ቱግሪክ</displayName>
  4329. <displayName count="other">የሞንጎሊያን ቱግሪክ</displayName>
  4330. </currency>
  4331. <currency type="MOP">
  4332. <displayName>የማካኔዝ ፓታካ</displayName>
  4333. <displayName count="one">የማካኔዝ ፓታካ</displayName>
  4334. <displayName count="other">የማካኔዝ ፓታካ</displayName>
  4335. </currency>
  4336. <currency type="MRO">
  4337. <displayName>የሞሪቴኒያ ኦውጉያ</displayName>
  4338. <displayName count="one">የሞሪቴኒያ ኦውጉያ</displayName>
  4339. <displayName count="other">የሞሪቴኒያ ኦውጉያ</displayName>
  4340. </currency>
  4341. <currency type="MUR">
  4342. <displayName>የሞሪሸስ ሩፒ</displayName>
  4343. <displayName count="one">የሞሪሸስ ሩፒ</displayName>
  4344. <displayName count="other">የሞሪሸስ ሩፒ</displayName>
  4345. </currency>
  4346. <currency type="MVR">
  4347. <displayName>የማልዲቫ ሩፊያ</displayName>
  4348. <displayName count="one">የማልዲቫ ሩፊያ</displayName>
  4349. <displayName count="other">የማልዲቫ ሩፊያ</displayName>
  4350. </currency>
  4351. <currency type="MWK">
  4352. <displayName>የማላዊ ኩዋቻ</displayName>
  4353. <displayName count="one">የማላዊ ኩዋቻ</displayName>
  4354. <displayName count="other">የማላዊ ኩዋቻ</displayName>
  4355. </currency>
  4356. <currency type="MXN">
  4357. <displayName>የሜክሲኮ ፔሶ</displayName>
  4358. <displayName count="one">የሜክሲኮ ፔሶ</displayName>
  4359. <displayName count="other">የሜክሲኮ ፔሶ</displayName>
  4360. <symbol>MX$</symbol>
  4361. </currency>
  4362. <currency type="MYR">
  4363. <displayName>የማሌዥያ ሪንጊት</displayName>
  4364. <displayName count="one">የማሌዥያ ሪንጊት</displayName>
  4365. <displayName count="other">የማሌዥያ ሪንጊት</displayName>
  4366. </currency>
  4367. <currency type="MZN">
  4368. <displayName>የሞዛምቢክ ሜቲካል</displayName>
  4369. <displayName count="one">የሞዛምቢክ ሜቲካል</displayName>
  4370. <displayName count="other">የሞዛምቢክ ሜቲካል</displayName>
  4371. </currency>
  4372. <currency type="NAD">
  4373. <displayName>የናሚቢያ ዶላር</displayName>
  4374. <displayName count="one">የናሚቢያ ዶላር</displayName>
  4375. <displayName count="other">የናሚቢያ ዶላር</displayName>
  4376. </currency>
  4377. <currency type="NGN">
  4378. <displayName>የናይጄሪያ ናኢራ</displayName>
  4379. <displayName count="one">የናይጄሪያ ናኢራ</displayName>
  4380. <displayName count="other">የናይጄሪያ ናኢራ</displayName>
  4381. </currency>
  4382. <currency type="NIO">
  4383. <displayName>የኒካራጓ ኮርዶባ</displayName>
  4384. <displayName count="one">የኒካራጓ ኮርዶባ</displayName>
  4385. <displayName count="other">የኒካራጓ ኮርዶባ</displayName>
  4386. </currency>
  4387. <currency type="NOK">
  4388. <displayName>የኖርዌይ ክሮን</displayName>
  4389. <displayName count="one">የኖርዌይ ክሮን</displayName>
  4390. <displayName count="other">የኖርዌይ ክሮን</displayName>
  4391. </currency>
  4392. <currency type="NPR">
  4393. <displayName>የኔፓል ሩፒ</displayName>
  4394. <displayName count="one">የኔፓል ሩፒ</displayName>
  4395. <displayName count="other">የኔፓል ሩፒ</displayName>
  4396. </currency>
  4397. <currency type="NZD">
  4398. <displayName>የኒውዚላንድ ዶላር</displayName>
  4399. <displayName count="one">የኒውዚላንድ ዶላር</displayName>
  4400. <displayName count="other">የኒውዚላንድ ዶላር</displayName>
  4401. <symbol>NZ$</symbol>
  4402. </currency>
  4403. <currency type="OMR">
  4404. <displayName>የኦማን ሪአል</displayName>
  4405. <displayName count="one">የኦማን ሪአል</displayName>
  4406. <displayName count="other">የኦማን ሪአል</displayName>
  4407. </currency>
  4408. <currency type="PAB">
  4409. <displayName>ፓናማኒአን ባልቦአ</displayName>
  4410. <displayName count="one">ፓናማኒአን ባልቦአ</displayName>
  4411. <displayName count="other">ፓናማኒአን ባልቦአ</displayName>
  4412. </currency>
  4413. <currency type="PEN">
  4414. <displayName>የፔሩቪያ ኑኤቮ ሶል</displayName>
  4415. <displayName count="one">የፔሩቪያ ኑኤቮ ሶል</displayName>
  4416. <displayName count="other">የፔሩቪያ ኑኤቮ ሶል</displayName>
  4417. </currency>
  4418. <currency type="PGK">
  4419. <displayName>የፓፕዋ ኒው ጊኒ ኪና</displayName>
  4420. <displayName count="one">የፓፕዋ ኒው ጊኒ ኪና</displayName>
  4421. <displayName count="other">የፓፕዋ ኒው ጊኒ ኪና</displayName>
  4422. </currency>
  4423. <currency type="PHP">
  4424. <displayName>የፊሊፒንስ ፔሶ</displayName>
  4425. <displayName count="one">የፊሊፒንስ ፔሶ</displayName>
  4426. <displayName count="other">የፊሊፒንስ ፔሶ</displayName>
  4427. </currency>
  4428. <currency type="PKR">
  4429. <displayName>የፓኪስታን ሩፒ</displayName>
  4430. <displayName count="one">የፓኪስታን ሩፒ</displayName>
  4431. <displayName count="other">የፓኪስታን ሩፒ</displayName>
  4432. </currency>
  4433. <currency type="PLN">
  4434. <displayName>የፖላንድ ዝሎቲ</displayName>
  4435. <displayName count="one">የፖላንድ ዝሎቲ</displayName>
  4436. <displayName count="other">የፖላንድ ዝሎቲ</displayName>
  4437. </currency>
  4438. <currency type="PYG">
  4439. <displayName>የፓራጓይ ጉአራኒ</displayName>
  4440. <displayName count="one">የፓራጓይ ጉአራኒ</displayName>
  4441. <displayName count="other">የፓራጓይ ጉአራኒ</displayName>
  4442. </currency>
  4443. <currency type="QAR">
  4444. <displayName>የኳታር ሪአል</displayName>
  4445. <displayName count="one">የኳታር ሪአል</displayName>
  4446. <displayName count="other">የኳታር ሪአል</displayName>
  4447. </currency>
  4448. <currency type="RON">
  4449. <displayName>የሮማኒያ ለው</displayName>
  4450. <displayName count="one">የሮማኒያ ለው</displayName>
  4451. <displayName count="other">የሮማኒያ ለው</displayName>
  4452. </currency>
  4453. <currency type="RSD">
  4454. <displayName>የሰርቢያ ዲናር</displayName>
  4455. <displayName count="one">የሰርቢያ ዲናር</displayName>
  4456. <displayName count="other">የሰርቢያ ዲናር</displayName>
  4457. </currency>
  4458. <currency type="RUB">
  4459. <displayName>የሩስያ ሩብል</displayName>
  4460. <displayName count="one">የሩስያ ሩብል</displayName>
  4461. <displayName count="other">የሩስያ ሩብል</displayName>
  4462. </currency>
  4463. <currency type="RWF">
  4464. <displayName>የሩዋንዳ ፍራንክ</displayName>
  4465. <displayName count="one">የሩዋንዳ ፍራንክ</displayName>
  4466. <displayName count="other">የሩዋንዳ ፍራንክ</displayName>
  4467. </currency>
  4468. <currency type="SAR">
  4469. <displayName>የሳውዲ ሪያል</displayName>
  4470. <displayName count="one">የሳውዲ ሪያል</displayName>
  4471. <displayName count="other">የሳውዲ ሪያል</displayName>
  4472. </currency>
  4473. <currency type="SBD">
  4474. <displayName>የሰለሞን ደሴቶች ዶላር</displayName>
  4475. <displayName count="one">የሰለሞን ደሴቶች ዶላር</displayName>
  4476. <displayName count="other">የሰለሞን ደሴቶች ዶላር</displayName>
  4477. </currency>
  4478. <currency type="SCR">
  4479. <displayName>የሲሼል ሩፒ</displayName>
  4480. <displayName count="one">የሲሼል ሩፒ</displayName>
  4481. <displayName count="other">የሲሼል ሩፒ</displayName>
  4482. </currency>
  4483. <currency type="SDG">
  4484. <displayName>የሱዳን ዲናር</displayName>
  4485. <displayName count="one">የሱዳን ዲናር</displayName>
  4486. <displayName count="other">የሱዳን ዲናር</displayName>
  4487. </currency>
  4488. <currency type="SDP">
  4489. <displayName>የሱዳን ፓውንድ</displayName>
  4490. </currency>
  4491. <currency type="SEK">
  4492. <displayName>የስዊድን ክሮና</displayName>
  4493. <displayName count="one">የስዊድን ክሮና</displayName>
  4494. <displayName count="other">የስዊድን ክሮና</displayName>
  4495. </currency>
  4496. <currency type="SGD">
  4497. <displayName>የሲንጋፖር ዶላር</displayName>
  4498. <displayName count="one">የሲንጋፖር ዶላር</displayName>
  4499. <displayName count="other">የሲንጋፖር ዶላር</displayName>
  4500. </currency>
  4501. <currency type="SHP">
  4502. <displayName>የሴይንት ሔሌና ፓውንድ</displayName>
  4503. <displayName count="one">የሴይንት ሔሌና ፓውንድ</displayName>
  4504. <displayName count="other">የሴይንት ሔሌና ፓውንድ</displayName>
  4505. </currency>
  4506. <currency type="SLL">
  4507. <displayName>የሴራሊዎን ሊዎን</displayName>
  4508. <displayName count="one">የሴራሊዎን ሊዎን</displayName>
  4509. <displayName count="other">የሴራሊዎን ሊዎን</displayName>
  4510. </currency>
  4511. <currency type="SOS">
  4512. <displayName>የሶማሌ ሺሊንግ</displayName>
  4513. <displayName count="one">የሶማሌ ሺሊንግ</displayName>
  4514. <displayName count="other">የሶማሌ ሺሊንግ</displayName>
  4515. </currency>
  4516. <currency type="SRD">
  4517. <displayName>የሰርናሜዝ ዶላር</displayName>
  4518. <displayName count="one">የሰርናሜዝ ዶላር</displayName>
  4519. <displayName count="other">የሰርናሜዝ ዶላር</displayName>
  4520. </currency>
  4521. <currency type="SSP">
  4522. <displayName>የደቡብ ሱዳን ፓውንድ</displayName>
  4523. <displayName count="one">የደቡብ ሱዳን ፓውንድ</displayName>
  4524. <displayName count="other">የደቡብ ሱዳን ፓውንድ</displayName>
  4525. </currency>
  4526. <currency type="STD">
  4527. <displayName>የሳኦ ቶመ እና ፕሪንሲፐ ዶብራ</displayName>
  4528. <displayName count="one">የሳኦ ቶመ እና ፕሪንሲፐ ዶብራ</displayName>
  4529. <displayName count="other">የሳኦ ቶመ እና ፕሪንሲፐ ዶብራ</displayName>
  4530. </currency>
  4531. <currency type="SYP">
  4532. <displayName>የሲሪያ ፓውንድ</displayName>
  4533. <displayName count="one">የሲሪያ ፓውንድ</displayName>
  4534. <displayName count="other">የሲሪያ ፓውንድ</displayName>
  4535. </currency>
  4536. <currency type="SZL">
  4537. <displayName>የስዋዚላንድ ሊላንገኒ</displayName>
  4538. <displayName count="one">የስዋዚላንድ ሊላንገኒ</displayName>
  4539. <displayName count="other">የስዋዚላንድ ሊላንገኒ</displayName>
  4540. </currency>
  4541. <currency type="THB">
  4542. <displayName>የታይላንድ ባህት</displayName>
  4543. <displayName count="one">የታይላንድ ባህት</displayName>
  4544. <displayName count="other">የታይላንድ ባህት</displayName>
  4545. <symbol>฿</symbol>
  4546. </currency>
  4547. <currency type="TJS">
  4548. <displayName>የታጂክስታን ሶሞኒ</displayName>
  4549. <displayName count="one">የታጂክስታን ሶሞኒ</displayName>
  4550. <displayName count="other">የታጂክስታን ሶሞኒ</displayName>
  4551. </currency>
  4552. <currency type="TMT">
  4553. <displayName>ቱርክሜኒስታኒ ማናት</displayName>
  4554. <displayName count="one">ቱርክሜኒስታኒ ማናት</displayName>
  4555. <displayName count="other">ቱርክሜኒስታኒ ማናት</displayName>
  4556. </currency>
  4557. <currency type="TND">
  4558. <displayName>የቱኒዚያ ዲናር</displayName>
  4559. <displayName count="one">የቱኒዚያ ዲናር</displayName>
  4560. <displayName count="other">የቱኒዚያ ዲናር</displayName>
  4561. </currency>
  4562. <currency type="TOP">
  4563. <displayName>ቶንጋን ፓ'አንጋ</displayName>
  4564. </currency>
  4565. <currency type="TRY">
  4566. <displayName>የቱርክ ሊራ</displayName>
  4567. <displayName count="one">የቱርክ ሊራ</displayName>
  4568. <displayName count="other">የቱርክ ሊራ</displayName>
  4569. </currency>
  4570. <currency type="TTD">
  4571. <displayName>የትሪንዳድ እና ቶቤጎዶላር</displayName>
  4572. <displayName count="one">የትሪንዳድ እና ቶቤጎዶላር</displayName>
  4573. <displayName count="other">የትሪንዳድ እና ቶቤጎዶላር</displayName>
  4574. </currency>
  4575. <currency type="TWD">
  4576. <displayName>የአዲሷ ታይዋን ዶላር</displayName>
  4577. <displayName count="one">የአዲሷ ታይዋን ዶላር</displayName>
  4578. <displayName count="other">የአዲሷ ታይዋን ዶላር</displayName>
  4579. <symbol>NT$</symbol>
  4580. </currency>
  4581. <currency type="TZS">
  4582. <displayName>የታንዛኒያ ሺሊንግ</displayName>
  4583. <displayName count="one">የታንዛኒያ ሺሊንግ</displayName>
  4584. <displayName count="other">የታንዛኒያ ሺሊንግ</displayName>
  4585. </currency>
  4586. <currency type="UAH">
  4587. <displayName>የዩክሬን ሀሪይቭኒአ</displayName>
  4588. <displayName count="one">የዩክሬን ሀሪይቭኒአ</displayName>
  4589. <displayName count="other">የዩክሬን ሀሪይቭኒአ</displayName>
  4590. </currency>
  4591. <currency type="UGX">
  4592. <displayName>የዩጋንዳ ሺሊንግ</displayName>
  4593. <displayName count="one">የዩጋንዳ ሺሊንግ</displayName>
  4594. <displayName count="other">የዩጋንዳ ሺሊንግ</displayName>
  4595. </currency>
  4596. <currency type="USD">
  4597. <displayName>የአሜሪካን ዶላር</displayName>
  4598. <displayName count="one">የአሜሪካን ዶላር</displayName>
  4599. <displayName count="other">የአሜሪካን ዶላር</displayName>
  4600. <symbol>US$</symbol>
  4601. </currency>
  4602. <currency type="UYU">
  4603. <displayName>የኡራጓይ ፔሶ</displayName>
  4604. <displayName count="one">የኡራጓይ ፔሶ</displayName>
  4605. <displayName count="other">የኡራጓይ ፔሶ</displayName>
  4606. </currency>
  4607. <currency type="UZS">
  4608. <displayName>የኡዝፔኪስታን ሶም</displayName>
  4609. <displayName count="one">የኡዝፔኪስታን ሶም</displayName>
  4610. <displayName count="other">የኡዝፔኪስታን ሶም</displayName>
  4611. </currency>
  4612. <currency type="VEF">
  4613. <displayName>የቬንዝዌላ ቦሊቫር</displayName>
  4614. <displayName count="one">የቬንዝዌላ ቦሊቫር</displayName>
  4615. <displayName count="other">የቬንዝዌላ ቦሊቫር</displayName>
  4616. </currency>
  4617. <currency type="VND">
  4618. <displayName>የቭየትናም ዶንግ</displayName>
  4619. <displayName count="one">የቭየትናም ዶንግ</displayName>
  4620. <displayName count="other">የቭየትናም ዶንግ</displayName>
  4621. <symbol>₫</symbol>
  4622. </currency>
  4623. <currency type="VUV">
  4624. <displayName>የቫንዋንቱ ቫቱ</displayName>
  4625. <displayName count="one">የቫንዋንቱ ቫቱ</displayName>
  4626. <displayName count="other">የቫንዋንቱ ቫቱ</displayName>
  4627. </currency>
  4628. <currency type="WST">
  4629. <displayName>ሳሞአን ታላ</displayName>
  4630. </currency>
  4631. <currency type="XAF">
  4632. <displayName>ሴኤፍአ ፍራንክ ቤእአሴ</displayName>
  4633. <displayName count="one">ሴኤፍአ ፍራንክ ቤእአሴ</displayName>
  4634. <displayName count="other">ሴኤፍአ ፍራንክ ቤእአሴ</displayName>
  4635. <symbol>FCFA</symbol>
  4636. </currency>
  4637. <currency type="XCD">
  4638. <displayName>የምዕራብ ካሪብያን ዶላር</displayName>
  4639. <displayName count="one">የምዕራብ ካሪብያን ዶላር</displayName>
  4640. <displayName count="other">የምዕራብ ካሪብያን ዶላር</displayName>
  4641. <symbol>EC$</symbol>
  4642. </currency>
  4643. <currency type="XOF">
  4644. <displayName>ሴኤፍአ ፍራንክ ቤሴእአኦ</displayName>
  4645. <displayName count="one">ሴኤፍአ ፍራንክ ቤሴእአኦ</displayName>
  4646. <displayName count="other">ሴኤፍአ ፍራንክ ቤሴእአኦ</displayName>
  4647. <symbol>CFA</symbol>
  4648. </currency>
  4649. <currency type="XPF">
  4650. <displayName>ሲ ኤፍ ፒ ፍራንክ</displayName>
  4651. <displayName count="one">ሲ ኤፍ ፒ ፍራንክ</displayName>
  4652. <displayName count="other">ሲ ኤፍ ፒ ፍራንክ</displayName>
  4653. <symbol>CFPF</symbol>
  4654. </currency>
  4655. <currency type="XXX">
  4656. <displayName>ያልታወቀ ገንዘብ</displayName>
  4657. </currency>
  4658. <currency type="YER">
  4659. <displayName>የየመን ሪአል</displayName>
  4660. <displayName count="one">የየመን ሪአል</displayName>
  4661. <displayName count="other">የየመን ሪአል</displayName>
  4662. </currency>
  4663. <currency type="ZAR">
  4664. <displayName>የደቡብ አፍሪካ ራንድ</displayName>
  4665. <displayName count="one">የደቡብ አፍሪካ ራንድ</displayName>
  4666. <displayName count="other">የደቡብ አፍሪካ ራንድ</displayName>
  4667. </currency>
  4668. <currency type="ZMK">
  4669. <displayName>የዛምቢያ ክዋቻ (1968–2012)</displayName>
  4670. <displayName count="one">የዛምቢያ ክዋቻ (1968–2012)</displayName>
  4671. <displayName count="other">የዛምቢያ ክዋቻ (1968–2012)</displayName>
  4672. </currency>
  4673. <currency type="ZMW">
  4674. <displayName>የዛምቢያ ክዋቻ</displayName>
  4675. <displayName count="one">የዛምቢያ ክዋቻ</displayName>
  4676. <displayName count="other">የዛምቢያ ክዋቻ</displayName>
  4677. </currency>
  4678. <currency type="ZWD">
  4679. <displayName>የዚምቧቡዌ ዶላር</displayName>
  4680. </currency>
  4681. </currencies>
  4682. <miscPatterns numberSystem="latn">
  4683. <pattern type="atLeast">{0}+</pattern>
  4684. <pattern type="range">{0}–{1}</pattern>
  4685. </miscPatterns>
  4686. </numbers>
  4687. <units>
  4688. <unitLength type="long">
  4689. <compoundUnit type="per">
  4690. <compoundUnitPattern>{0} በ{1}</compoundUnitPattern>
  4691. </compoundUnit>
  4692. <unit type="acceleration-g-force">
  4693. <unitPattern count="one">{0} ጂ-ኃይል</unitPattern>
  4694. <unitPattern count="other">{0} ጂ-ኃይል</unitPattern>
  4695. </unit>
  4696. <unit type="angle-arc-minute">
  4697. <unitPattern count="one">{0} ደቂቃ</unitPattern>
  4698. <unitPattern count="other">{0} ደቂቃ</unitPattern>
  4699. </unit>
  4700. <unit type="angle-arc-second">
  4701. <unitPattern count="one">{0} ሰከንድ</unitPattern>
  4702. <unitPattern count="other">{0} ሰከንድ</unitPattern>
  4703. </unit>
  4704. <unit type="angle-degree">
  4705. <unitPattern count="one">{0} ዲግሪ</unitPattern>
  4706. <unitPattern count="other">{0} ዲግሪ</unitPattern>
  4707. </unit>
  4708. <unit type="area-acre">
  4709. <unitPattern count="one">{0} ኤክር</unitPattern>
  4710. <unitPattern count="other">{0} ኤክር</unitPattern>
  4711. </unit>
  4712. <unit type="area-hectare">
  4713. <unitPattern count="one">{0} ሄክታር</unitPattern>
  4714. <unitPattern count="other">{0} ሄክታር</unitPattern>
  4715. </unit>
  4716. <unit type="area-square-foot">
  4717. <unitPattern count="one">{0} ካሬ ጫማ</unitPattern>
  4718. <unitPattern count="other">{0} ካሬ ጫማ</unitPattern>
  4719. </unit>
  4720. <unit type="area-square-kilometer">
  4721. <unitPattern count="one">{0} ካሬ ኪሎሜትር</unitPattern>
  4722. <unitPattern count="other">{0} ካሬ ኪሎሜትር</unitPattern>
  4723. </unit>
  4724. <unit type="area-square-meter">
  4725. <unitPattern count="one">{0} ካሬ ሜትር</unitPattern>
  4726. <unitPattern count="other">{0} ካሬ ሜትር</unitPattern>
  4727. </unit>
  4728. <unit type="area-square-mile">
  4729. <unitPattern count="one">{0} ካሬ ማይል</unitPattern>
  4730. <unitPattern count="other">{0} ካሬ ማይል</unitPattern>
  4731. </unit>
  4732. <unit type="duration-day">
  4733. <unitPattern count="one">{0} ቀናት</unitPattern>
  4734. <unitPattern count="other">{0} ቀናት</unitPattern>
  4735. </unit>
  4736. <unit type="duration-hour">
  4737. <unitPattern count="one">{0} ሰዓት</unitPattern>
  4738. <unitPattern count="other">{0} ሰዓቶች</unitPattern>
  4739. </unit>
  4740. <unit type="duration-millisecond">
  4741. <unitPattern count="one">{0} ሚሊሰከንድ</unitPattern>
  4742. <unitPattern count="other">{0} ሚሊሰከንድ</unitPattern>
  4743. </unit>
  4744. <unit type="duration-minute">
  4745. <unitPattern count="one">{0} ደቂቃ</unitPattern>
  4746. <unitPattern count="other">{0} ደቂቃዎች</unitPattern>
  4747. </unit>
  4748. <unit type="duration-month">
  4749. <unitPattern count="one">{0} ወር</unitPattern>
  4750. <unitPattern count="other">{0} ወራት</unitPattern>
  4751. </unit>
  4752. <unit type="duration-second">
  4753. <unitPattern count="one">{0} ሰከንድ</unitPattern>
  4754. <unitPattern count="other">{0} ሰከንዶች</unitPattern>
  4755. </unit>
  4756. <unit type="duration-week">
  4757. <unitPattern count="one">{0} ሳምንት</unitPattern>
  4758. <unitPattern count="other">{0} ሳምንታት</unitPattern>
  4759. </unit>
  4760. <unit type="duration-year">
  4761. <unitPattern count="one">{0} ዓመታት</unitPattern>
  4762. <unitPattern count="other">{0} ዓመታት</unitPattern>
  4763. </unit>
  4764. <unit type="length-centimeter">
  4765. <unitPattern count="one">{0} ሴንቲሜትር</unitPattern>
  4766. <unitPattern count="other">{0} ሴንቲሜትር</unitPattern>
  4767. </unit>
  4768. <unit type="length-foot">
  4769. <unitPattern count="one">{0} ጫማ</unitPattern>
  4770. <unitPattern count="other">{0} ጫማ</unitPattern>
  4771. </unit>
  4772. <unit type="length-inch">
  4773. <unitPattern count="one">{0} ኢንች</unitPattern>
  4774. <unitPattern count="other">{0} ኢንች</unitPattern>
  4775. </unit>
  4776. <unit type="length-kilometer">
  4777. <unitPattern count="one">{0} ኪሎሜትር</unitPattern>
  4778. <unitPattern count="other">{0} ኪሎሜትር</unitPattern>
  4779. </unit>
  4780. <unit type="length-light-year">
  4781. <unitPattern count="one">{0} የብርሃን ዓመት</unitPattern>
  4782. <unitPattern count="other">{0} የብርሃን ዓመት</unitPattern>
  4783. </unit>
  4784. <unit type="length-meter">
  4785. <unitPattern count="one">{0} ሜትር</unitPattern>
  4786. <unitPattern count="other">{0} ሜትር</unitPattern>
  4787. </unit>
  4788. <unit type="length-mile">
  4789. <unitPattern count="one">{0} ማይል</unitPattern>
  4790. <unitPattern count="other">{0} ማይል</unitPattern>
  4791. </unit>
  4792. <unit type="length-millimeter">
  4793. <unitPattern count="one">{0} ሚሊሜትር</unitPattern>
  4794. <unitPattern count="other">{0} ሚሊሜትር</unitPattern>
  4795. </unit>
  4796. <unit type="length-picometer">
  4797. <unitPattern count="one">{0} ፒኮሜትር</unitPattern>
  4798. <unitPattern count="other">{0} ፒኮሜትር</unitPattern>
  4799. </unit>
  4800. <unit type="length-yard">
  4801. <unitPattern count="one">{0} ያርድ</unitPattern>
  4802. <unitPattern count="other">{0} ያርድ</unitPattern>
  4803. </unit>
  4804. <unit type="mass-gram">
  4805. <unitPattern count="one">{0} ግራም</unitPattern>
  4806. <unitPattern count="other">{0} ግራም</unitPattern>
  4807. </unit>
  4808. <unit type="mass-kilogram">
  4809. <unitPattern count="one">{0} ኪሎግራም</unitPattern>
  4810. <unitPattern count="other">{0} ኪሎግራም</unitPattern>
  4811. </unit>
  4812. <unit type="mass-ounce">
  4813. <unitPattern count="one">{0} አውንስ</unitPattern>
  4814. <unitPattern count="other">{0} አውንስ</unitPattern>
  4815. </unit>
  4816. <unit type="mass-pound">
  4817. <unitPattern count="one">{0} ፓውንድ</unitPattern>
  4818. <unitPattern count="other">{0} ፓውንድ</unitPattern>
  4819. </unit>
  4820. <unit type="power-horsepower">
  4821. <unitPattern count="one">{0} የፈረስ ኃይል</unitPattern>
  4822. <unitPattern count="other">{0} የፈረስ ኃይል</unitPattern>
  4823. </unit>
  4824. <unit type="power-kilowatt">
  4825. <unitPattern count="one">{0} ኪሎዋት</unitPattern>
  4826. <unitPattern count="other">{0} ኪሎዋት</unitPattern>
  4827. </unit>
  4828. <unit type="power-watt">
  4829. <unitPattern count="one">{0} ዋት</unitPattern>
  4830. <unitPattern count="other">{0} ዋት</unitPattern>
  4831. </unit>
  4832. <unit type="pressure-hectopascal">
  4833. <unitPattern count="one">{0} ሄክቶፓስካል</unitPattern>
  4834. <unitPattern count="other">{0} ሄክቶፓስካል</unitPattern>
  4835. </unit>
  4836. <unit type="pressure-inch-hg">
  4837. <unitPattern count="one">{0} ኢንች ሜርኩሪ</unitPattern>
  4838. <unitPattern count="other">{0} ኢንች ሜርኩሪ</unitPattern>
  4839. </unit>
  4840. <unit type="pressure-millibar">
  4841. <unitPattern count="one">{0} ሚሊባር</unitPattern>
  4842. <unitPattern count="other">{0} ሚሊባር</unitPattern>
  4843. </unit>
  4844. <unit type="speed-kilometer-per-hour">
  4845. <unitPattern count="one">{0} ኪሎሜትር በሰዓት</unitPattern>
  4846. <unitPattern count="other">{0} ኪሎሜትር በሰዓት</unitPattern>
  4847. </unit>
  4848. <unit type="speed-meter-per-second">
  4849. <unitPattern count="one">{0} ሜትር በሰከንድ</unitPattern>
  4850. <unitPattern count="other">{0} ሜትር በሰከንድ</unitPattern>
  4851. </unit>
  4852. <unit type="speed-mile-per-hour">
  4853. <unitPattern count="one">{0} ማይል በሰዓት</unitPattern>
  4854. <unitPattern count="other">{0} ማይል በሰዓት</unitPattern>
  4855. </unit>
  4856. <unit type="temperature-celsius">
  4857. <unitPattern count="one">{0} ዲግሪ ሴልሺየስ</unitPattern>
  4858. <unitPattern count="other">{0} ዲግሪ ሴልሺየስ</unitPattern>
  4859. </unit>
  4860. <unit type="temperature-fahrenheit">
  4861. <unitPattern count="one">{0} ዲግሪ ፋራንሃይት</unitPattern>
  4862. <unitPattern count="other">{0} ዲግሪ ፋራንሃይት</unitPattern>
  4863. </unit>
  4864. <unit type="volume-cubic-kilometer">
  4865. <unitPattern count="one">{0} ኩቢክ ኪሎሜትር</unitPattern>
  4866. <unitPattern count="other">{0} ኩቢክ ኪሎሜትር</unitPattern>
  4867. </unit>
  4868. <unit type="volume-cubic-mile">
  4869. <unitPattern count="one">{0} ኩቢክ ማይል</unitPattern>
  4870. <unitPattern count="other">{0} ኩቢክ ማይል</unitPattern>
  4871. </unit>
  4872. <unit type="volume-liter">
  4873. <unitPattern count="one">{0} ሊትር</unitPattern>
  4874. <unitPattern count="other">{0} ሊትር</unitPattern>
  4875. </unit>
  4876. </unitLength>
  4877. <unitLength type="short">
  4878. <compoundUnit type="per">
  4879. <compoundUnitPattern>{0}/{1}</compoundUnitPattern>
  4880. </compoundUnit>
  4881. <unit type="acceleration-g-force">
  4882. <unitPattern count="one">{0} ጂ</unitPattern>
  4883. <unitPattern count="other">{0} ጂ</unitPattern>
  4884. </unit>
  4885. <unit type="angle-arc-minute">
  4886. <unitPattern count="one">{0} ደቂቃ</unitPattern>
  4887. <unitPattern count="other">{0} ደቂቃ</unitPattern>
  4888. </unit>
  4889. <unit type="angle-arc-second">
  4890. <unitPattern count="one">{0} ሰከንድ</unitPattern>
  4891. <unitPattern count="other">{0} ሰከንድ</unitPattern>
  4892. </unit>
  4893. <unit type="angle-degree">
  4894. <unitPattern count="one">{0}°ዲግሪ</unitPattern>
  4895. <unitPattern count="other">{0}°ዲግሪ</unitPattern>
  4896. </unit>
  4897. <unit type="area-acre">
  4898. <unitPattern count="one">{0} ኤክር</unitPattern>
  4899. <unitPattern count="other">{0} ኤክር</unitPattern>
  4900. </unit>
  4901. <unit type="area-hectare">
  4902. <unitPattern count="one">{0} ሄክታር</unitPattern>
  4903. <unitPattern count="other">{0} ሄክታር</unitPattern>
  4904. </unit>
  4905. <unit type="area-square-foot">
  4906. <unitPattern count="one">{0} ካሬ ጫማ</unitPattern>
  4907. <unitPattern count="other">{0} ካሬ ጫማ</unitPattern>
  4908. </unit>
  4909. <unit type="area-square-kilometer">
  4910. <unitPattern count="one">{0} ኪሜ²</unitPattern>
  4911. <unitPattern count="other">{0} ኪሜ²</unitPattern>
  4912. </unit>
  4913. <unit type="area-square-meter">
  4914. <unitPattern count="one">{0} ሜ²</unitPattern>
  4915. <unitPattern count="other">{0} ሜ²</unitPattern>
  4916. </unit>
  4917. <unit type="area-square-mile">
  4918. <unitPattern count="one">{0} ካሬ ማይል</unitPattern>
  4919. <unitPattern count="other">{0} ካሬ ማይል</unitPattern>
  4920. </unit>
  4921. <unit type="duration-day">
  4922. <unitPattern count="one">{0} ቀናት</unitPattern>
  4923. <unitPattern count="other">{0} ቀናት</unitPattern>
  4924. </unit>
  4925. <unit type="duration-hour">
  4926. <unitPattern count="one">{0} ሰዓ</unitPattern>
  4927. <unitPattern count="other">{0} ሰዓ</unitPattern>
  4928. </unit>
  4929. <unit type="duration-millisecond">
  4930. <unitPattern count="one">{0} ሚሴ</unitPattern>
  4931. <unitPattern count="other">{0} ሚሴ</unitPattern>
  4932. </unit>
  4933. <unit type="duration-minute">
  4934. <unitPattern count="one">{0} ደቂ</unitPattern>
  4935. <unitPattern count="other">{0} ደቂቃ</unitPattern>
  4936. </unit>
  4937. <unit type="duration-month">
  4938. <unitPattern count="one">{0} ወራት</unitPattern>
  4939. <unitPattern count="other">{0} ወራት</unitPattern>
  4940. </unit>
  4941. <unit type="duration-second">
  4942. <unitPattern count="one">{0} ሰከ</unitPattern>
  4943. <unitPattern count="other">{0} ሰከ</unitPattern>
  4944. </unit>
  4945. <unit type="duration-week">
  4946. <unitPattern count="one">{0} ሳምንት</unitPattern>
  4947. <unitPattern count="other">{0} ሳምንታት</unitPattern>
  4948. </unit>
  4949. <unit type="duration-year">
  4950. <unitPattern count="one">{0} ዓመት</unitPattern>
  4951. <unitPattern count="other">{0} ዓመታት</unitPattern>
  4952. </unit>
  4953. <unit type="length-centimeter">
  4954. <unitPattern count="one">{0} ሴሜ</unitPattern>
  4955. <unitPattern count="other">{0} ሴሜ</unitPattern>
  4956. </unit>
  4957. <unit type="length-foot">
  4958. <unitPattern count="one">{0} ጫማ</unitPattern>
  4959. <unitPattern count="other">{0} ጫማ</unitPattern>
  4960. </unit>
  4961. <unit type="length-inch">
  4962. <unitPattern count="one">{0} ኢንች</unitPattern>
  4963. <unitPattern count="other">{0} ኢንች</unitPattern>
  4964. </unit>
  4965. <unit type="length-kilometer">
  4966. <unitPattern count="one">{0} ኪሜ</unitPattern>
  4967. <unitPattern count="other">{0} ኪሜ</unitPattern>
  4968. </unit>
  4969. <unit type="length-light-year">
  4970. <unitPattern count="one">{0} ly</unitPattern>
  4971. <unitPattern count="other">{0} ly</unitPattern>
  4972. </unit>
  4973. <unit type="length-meter">
  4974. <unitPattern count="one">{0} ሜ</unitPattern>
  4975. <unitPattern count="other">{0} ሜ</unitPattern>
  4976. </unit>
  4977. <unit type="length-mile">
  4978. <unitPattern count="one">{0} ማይል</unitPattern>
  4979. <unitPattern count="other">{0} ማይል</unitPattern>
  4980. </unit>
  4981. <unit type="length-millimeter">
  4982. <unitPattern count="one">{0} ሚሜ</unitPattern>
  4983. <unitPattern count="other">{0} ሚሜ</unitPattern>
  4984. </unit>
  4985. <unit type="length-picometer">
  4986. <unitPattern count="one">{0} ፒሜ</unitPattern>
  4987. <unitPattern count="other">{0} ፒሜ</unitPattern>
  4988. </unit>
  4989. <unit type="length-yard">
  4990. <unitPattern count="one">{0} ያርድ</unitPattern>
  4991. <unitPattern count="other">{0} ያርድ</unitPattern>
  4992. </unit>
  4993. <unit type="mass-gram">
  4994. <unitPattern count="one">{0} ግ</unitPattern>
  4995. <unitPattern count="other">{0} ግ</unitPattern>
  4996. </unit>
  4997. <unit type="mass-kilogram">
  4998. <unitPattern count="one">{0} ኪግ</unitPattern>
  4999. <unitPattern count="other">{0} ኪግ</unitPattern>
  5000. </unit>
  5001. <unit type="mass-ounce">
  5002. <unitPattern count="one">{0} አውንስ</unitPattern>
  5003. <unitPattern count="other">{0} አውንስ</unitPattern>
  5004. </unit>
  5005. <unit type="mass-pound">
  5006. <unitPattern count="one">{0} ፓውንድ</unitPattern>
  5007. <unitPattern count="other">{0} ፓውንድ</unitPattern>
  5008. </unit>
  5009. <unit type="power-horsepower">
  5010. <unitPattern count="one">{0} የፈረስ ኃይል</unitPattern>
  5011. <unitPattern count="other">{0} የፈረስ ኃይል</unitPattern>
  5012. </unit>
  5013. <unit type="power-kilowatt">
  5014. <unitPattern count="one">{0} ኪዋ</unitPattern>
  5015. <unitPattern count="other">{0} ኪዋ</unitPattern>
  5016. </unit>
  5017. <unit type="power-watt">
  5018. <unitPattern count="one">{0} ዋ</unitPattern>
  5019. <unitPattern count="other">{0} ዋ</unitPattern>
  5020. </unit>
  5021. <unit type="pressure-hectopascal">
  5022. <unitPattern count="one">{0} ሄክቶፓስካል</unitPattern>
  5023. <unitPattern count="other">{0} ሄክቶፓስካል</unitPattern>
  5024. </unit>
  5025. <unit type="pressure-inch-hg">
  5026. <unitPattern count="one">{0} ኢንች ሜርኩሪ</unitPattern>
  5027. <unitPattern count="other">{0} ኢንች ሜርኩሪ</unitPattern>
  5028. </unit>
  5029. <unit type="pressure-millibar">
  5030. <unitPattern count="one">{0} ሚባ</unitPattern>
  5031. <unitPattern count="other">{0} ሚባ</unitPattern>
  5032. </unit>
  5033. <unit type="speed-kilometer-per-hour">
  5034. <unitPattern count="one">{0} ኪሜ/ሰ</unitPattern>
  5035. <unitPattern count="other">{0} ኪሜ/ሰ</unitPattern>
  5036. </unit>
  5037. <unit type="speed-meter-per-second">
  5038. <unitPattern count="one">{0} ሜ/ሴ</unitPattern>
  5039. <unitPattern count="other">{0} ሜ/ሴ</unitPattern>
  5040. </unit>
  5041. <unit type="speed-mile-per-hour">
  5042. <unitPattern count="one">{0} ማይል/ሰ</unitPattern>
  5043. <unitPattern count="other">{0} ማይል/ሰ</unitPattern>
  5044. </unit>
  5045. <unit type="temperature-celsius">
  5046. <unitPattern count="one">{0}°ሴ</unitPattern>
  5047. <unitPattern count="other">{0}°ሴ</unitPattern>
  5048. </unit>
  5049. <unit type="temperature-fahrenheit">
  5050. <unitPattern count="one">{0}°ፋ</unitPattern>
  5051. <unitPattern count="other">{0}°ፋ</unitPattern>
  5052. </unit>
  5053. <unit type="volume-cubic-kilometer">
  5054. <unitPattern count="one">{0} ኪሜ³</unitPattern>
  5055. <unitPattern count="other">{0} ኪሜ³</unitPattern>
  5056. </unit>
  5057. <unit type="volume-cubic-mile">
  5058. <unitPattern count="one">{0} ማይል³</unitPattern>
  5059. <unitPattern count="other">{0} ማይል³</unitPattern>
  5060. </unit>
  5061. <unit type="volume-liter">
  5062. <unitPattern count="one">{0} ሊ</unitPattern>
  5063. <unitPattern count="other">{0} ሊ</unitPattern>
  5064. </unit>
  5065. </unitLength>
  5066. <unitLength type="narrow">
  5067. <compoundUnit type="per">
  5068. <compoundUnitPattern>{0}/{1}</compoundUnitPattern>
  5069. </compoundUnit>
  5070. <unit type="acceleration-g-force">
  5071. <unitPattern count="one">{0} ጂ</unitPattern>
  5072. <unitPattern count="other">{0} ጂ</unitPattern>
  5073. </unit>
  5074. <unit type="angle-arc-minute">
  5075. <unitPattern count="one">{0}′</unitPattern>
  5076. <unitPattern count="other">{0}′</unitPattern>
  5077. </unit>
  5078. <unit type="angle-arc-second">
  5079. <unitPattern count="one">{0}″</unitPattern>
  5080. <unitPattern count="other">{0}″</unitPattern>
  5081. </unit>
  5082. <unit type="angle-degree">
  5083. <unitPattern count="one">{0}°</unitPattern>
  5084. <unitPattern count="other">{0}°</unitPattern>
  5085. </unit>
  5086. <unit type="area-acre">
  5087. <unitPattern count="one">{0} ኤክር</unitPattern>
  5088. <unitPattern count="other">{0} ኤክር</unitPattern>
  5089. </unit>
  5090. <unit type="area-hectare">
  5091. <unitPattern count="one">{0} ሄክታር</unitPattern>
  5092. <unitPattern count="other">{0} ሄክታር</unitPattern>
  5093. </unit>
  5094. <unit type="area-square-foot">
  5095. <unitPattern count="one">{0} ጫማ²</unitPattern>
  5096. <unitPattern count="other">{0} ጫማ²</unitPattern>
  5097. </unit>
  5098. <unit type="area-square-kilometer">
  5099. <unitPattern count="one">{0} ኪሜ²</unitPattern>
  5100. <unitPattern count="other">{0} ኪሜ²</unitPattern>
  5101. </unit>
  5102. <unit type="area-square-meter">
  5103. <unitPattern count="one">{0} ሜ²</unitPattern>
  5104. <unitPattern count="other">{0} ሜ²</unitPattern>
  5105. </unit>
  5106. <unit type="area-square-mile">
  5107. <unitPattern count="one">{0} ማይል²</unitPattern>
  5108. <unitPattern count="other">{0} ማይል²</unitPattern>
  5109. </unit>
  5110. <unit type="duration-day">
  5111. <unitPattern count="one">{0} ቀ</unitPattern>
  5112. <unitPattern count="other">{0} ቀ</unitPattern>
  5113. </unit>
  5114. <unit type="duration-hour">
  5115. <unitPattern count="one">{0} ሰ</unitPattern>
  5116. <unitPattern count="other">{0} ሰ</unitPattern>
  5117. </unit>
  5118. <unit type="duration-millisecond">
  5119. <unitPattern count="one">{0} ሚሴ</unitPattern>
  5120. <unitPattern count="other">{0} ሚሴ</unitPattern>
  5121. </unit>
  5122. <unit type="duration-minute">
  5123. <unitPattern count="one">{0} ደ</unitPattern>
  5124. <unitPattern count="other">{0} ደ</unitPattern>
  5125. </unit>
  5126. <unit type="duration-month">
  5127. <unitPattern count="one">{0} ወር</unitPattern>
  5128. <unitPattern count="other">{0} ወር</unitPattern>
  5129. </unit>
  5130. <unit type="duration-second">
  5131. <unitPattern count="one">{0} ሴ</unitPattern>
  5132. <unitPattern count="other">{0} ሴ</unitPattern>
  5133. </unit>
  5134. <unit type="duration-week">
  5135. <unitPattern count="one">{0} ሳምንት</unitPattern>
  5136. <unitPattern count="other">{0} ሳምንት</unitPattern>
  5137. </unit>
  5138. <unit type="duration-year">
  5139. <unitPattern count="one">{0} ዓመት</unitPattern>
  5140. <unitPattern count="other">{0} y</unitPattern>
  5141. </unit>
  5142. <unit type="length-centimeter">
  5143. <unitPattern count="one">{0} ሴሜ</unitPattern>
  5144. <unitPattern count="other">{0} ሴሜ</unitPattern>
  5145. </unit>
  5146. <unit type="length-foot">
  5147. <unitPattern count="one">{0} ጫማ</unitPattern>
  5148. <unitPattern count="other">{0} ጫማ</unitPattern>
  5149. </unit>
  5150. <unit type="length-inch">
  5151. <unitPattern count="one">{0} ኢንች</unitPattern>
  5152. <unitPattern count="other">{0} ኢንች</unitPattern>
  5153. </unit>
  5154. <unit type="length-kilometer">
  5155. <unitPattern count="one">{0} ኪሜ</unitPattern>
  5156. <unitPattern count="other">{0} ኪሜ</unitPattern>
  5157. </unit>
  5158. <unit type="length-light-year">
  5159. <unitPattern count="one">{0} ly</unitPattern>
  5160. <unitPattern count="other">{0} ly</unitPattern>
  5161. </unit>
  5162. <unit type="length-meter">
  5163. <unitPattern count="one">{0} ሜ</unitPattern>
  5164. <unitPattern count="other">{0} ሜ</unitPattern>
  5165. </unit>
  5166. <unit type="length-mile">
  5167. <unitPattern count="one">{0} ማይል</unitPattern>
  5168. <unitPattern count="other">{0} ማይል</unitPattern>
  5169. </unit>
  5170. <unit type="length-millimeter">
  5171. <unitPattern count="one">{0} ሚሜ</unitPattern>
  5172. <unitPattern count="other">{0} ሚሜ</unitPattern>
  5173. </unit>
  5174. <unit type="length-picometer">
  5175. <unitPattern count="one">{0} ፒሜ</unitPattern>
  5176. <unitPattern count="other">{0} ፒሜ</unitPattern>
  5177. </unit>
  5178. <unit type="length-yard">
  5179. <unitPattern count="one">{0} ያርድ</unitPattern>
  5180. <unitPattern count="other">{0} ያርድ</unitPattern>
  5181. </unit>
  5182. <unit type="mass-gram">
  5183. <unitPattern count="one">{0} ግ</unitPattern>
  5184. <unitPattern count="other">{0} ግ</unitPattern>
  5185. </unit>
  5186. <unit type="mass-kilogram">
  5187. <unitPattern count="one">{0} ኪግ</unitPattern>
  5188. <unitPattern count="other">{0} ኪግ</unitPattern>
  5189. </unit>
  5190. <unit type="mass-ounce">
  5191. <unitPattern count="one">{0} አውንስ</unitPattern>
  5192. <unitPattern count="other">{0} አውንስ</unitPattern>
  5193. </unit>
  5194. <unit type="mass-pound">
  5195. <unitPattern count="one">{0} ፓውንድ</unitPattern>
  5196. <unitPattern count="other">{0} ፓውንድ</unitPattern>
  5197. </unit>
  5198. <unit type="power-horsepower">
  5199. <unitPattern count="one">{0} የፈረስ ኃይል</unitPattern>
  5200. <unitPattern count="other">{0} የፈረስ ኃይል</unitPattern>
  5201. </unit>
  5202. <unit type="power-kilowatt">
  5203. <unitPattern count="one">{0} ኪዋ</unitPattern>
  5204. <unitPattern count="other">{0} ኪዋ</unitPattern>
  5205. </unit>
  5206. <unit type="power-watt">
  5207. <unitPattern count="one">{0} ዋ</unitPattern>
  5208. <unitPattern count="other">{0} ዋ</unitPattern>
  5209. </unit>
  5210. <unit type="pressure-hectopascal">
  5211. <unitPattern count="one">{0} hPa</unitPattern>
  5212. <unitPattern count="other">{0} hPa</unitPattern>
  5213. </unit>
  5214. <unit type="pressure-inch-hg">
  5215. <unitPattern count="one">{0} inHg</unitPattern>
  5216. <unitPattern count="other">{0} inHg</unitPattern>
  5217. </unit>
  5218. <unit type="pressure-millibar">
  5219. <unitPattern count="one">{0} ሚባ</unitPattern>
  5220. <unitPattern count="other">{0} ሚባ</unitPattern>
  5221. </unit>
  5222. <unit type="speed-kilometer-per-hour">
  5223. <unitPattern count="one">{0} ኪሜ/ሰ</unitPattern>
  5224. <unitPattern count="other">{0} ኪሜ/ሰ</unitPattern>
  5225. </unit>
  5226. <unit type="speed-meter-per-second">
  5227. <unitPattern count="one">{0} ሜ/ሴ</unitPattern>
  5228. <unitPattern count="other">{0} ሜ/ሴ</unitPattern>
  5229. </unit>
  5230. <unit type="speed-mile-per-hour">
  5231. <unitPattern count="one">{0} ማይል/ሰ</unitPattern>
  5232. <unitPattern count="other">{0} ማይል/ሰ</unitPattern>
  5233. </unit>
  5234. <unit type="temperature-celsius">
  5235. <unitPattern count="one">{0}°</unitPattern>
  5236. <unitPattern count="other">{0}°</unitPattern>
  5237. </unit>
  5238. <unit type="temperature-fahrenheit">
  5239. <unitPattern count="one">{0}°ፋ</unitPattern>
  5240. <unitPattern count="other">{0}°ፋ</unitPattern>
  5241. </unit>
  5242. <unit type="volume-cubic-kilometer">
  5243. <unitPattern count="one">{0} ኪሜ³</unitPattern>
  5244. <unitPattern count="other">{0} ኪሜ³</unitPattern>
  5245. </unit>
  5246. <unit type="volume-cubic-mile">
  5247. <unitPattern count="one">{0} ማይል³</unitPattern>
  5248. <unitPattern count="other">{0} ማይል³</unitPattern>
  5249. </unit>
  5250. <unit type="volume-liter">
  5251. <unitPattern count="one">{0} ሊ</unitPattern>
  5252. <unitPattern count="other">{0} ሊ</unitPattern>
  5253. </unit>
  5254. </unitLength>
  5255. <durationUnit type="hm">
  5256. <durationUnitPattern>h:mm</durationUnitPattern>
  5257. </durationUnit>
  5258. <durationUnit type="hms">
  5259. <durationUnitPattern>h:mm:ss</durationUnitPattern>
  5260. </durationUnit>
  5261. <durationUnit type="ms">
  5262. <durationUnitPattern>m:ss</durationUnitPattern>
  5263. </durationUnit>
  5264. </units>
  5265. <listPatterns>
  5266. <listPattern>
  5267. <listPatternPart type="start">{0}፣ {1}</listPatternPart>
  5268. <listPatternPart type="middle">{0}፣ {1}</listPatternPart>
  5269. <listPatternPart type="end">{0}, እና {1}</listPatternPart>
  5270. <listPatternPart type="2">{0} እና {1}</listPatternPart>
  5271. </listPattern>
  5272. </listPatterns>
  5273. <posix>
  5274. <messages>
  5275. <yesstr>አዎን:ዎ</yesstr>
  5276. <nostr>አይ:ይ</nostr>
  5277. </messages>
  5278. </posix>
  5279. </ldml>