| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085 |
- <?xml version="1.0" encoding="UTF-8" ?>
- <!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
- <!-- Copyright © 1991-2013 Unicode, Inc.
- CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
- For terms of use, see http://www.unicode.org/copyright.html
- -->
- <ldml>
- <identity>
- <version number="$Revision: 8671 $"/>
- <generation date="$Date: 2013-05-03 14:17:48 -0500 (Fri, 03 May 2013) $"/>
- <language type="fa"/>
- </identity>
- <localeDisplayNames>
- <localeDisplayPattern>
- <localePattern>{0} ({1})</localePattern>
- <localeSeparator>، </localeSeparator>
- <localeKeyTypePattern>{0}: {1}</localeKeyTypePattern>
- </localeDisplayPattern>
- <languages>
- <language type="aa">آفاری</language>
- <language type="ab">آبخازی</language>
- <language type="ace">آچئی</language>
- <language type="ach">آچولیایی</language>
- <language type="ada">آدانگمهای</language>
- <language type="ady">آدیجیایی</language>
- <language type="ae">اوستایی</language>
- <language type="af">آفریکانس</language>
- <language type="afa">زبان افریقا و آسیایی</language>
- <language type="afh">آفریهیلی</language>
- <language type="ain">آینویی</language>
- <language type="ak">آکان</language>
- <language type="akk">آکدی</language>
- <language type="ale">آلئوتی</language>
- <language type="alg">زبان آلگونکینی</language>
- <language type="alt">آلتایی جنوبی</language>
- <language type="am">امهری</language>
- <language type="an">آراگونی</language>
- <language type="ang">انگلیسی باستان</language>
- <language type="anp" draft="contributed">آنگیکا</language>
- <language type="apa">زبان آپاچیایی</language>
- <language type="ar">عربی</language>
- <language type="arc">آرامی</language>
- <language type="arn">آروکانیایی</language>
- <language type="arp">آراپاهویی</language>
- <language type="art">زبان ساختگی</language>
- <language type="arw">آراواکی</language>
- <language type="as">آسامی</language>
- <language type="ath">زبان آتاپاسکایی</language>
- <language type="aus">زبان استرالیایی</language>
- <language type="av">آواری</language>
- <language type="ay">آیمارایی</language>
- <language type="az">ترکی آذربایجانی</language>
- <language type="az" alt="short">آذری</language>
- <language type="az" alt="variant">آذربایجانی</language>
- <language type="ba">باشغیری</language>
- <language type="bad">باندایی</language>
- <language type="bal">بلوچی</language>
- <language type="ban">بالیایی</language>
- <language type="bas">باسایی</language>
- <language type="bat">زبان بالتیکی</language>
- <language type="bax">بمونی</language>
- <language type="be">بلوروسی</language>
- <language type="bej">بجایی</language>
- <language type="bem">بمبایی</language>
- <language type="ber">بربری</language>
- <language type="bg">بلغاری</language>
- <language type="bh">بیهاری</language>
- <language type="bho">بوجپوری</language>
- <language type="bi">بیسلاما</language>
- <language type="bik">بیکولی</language>
- <language type="bin" draft="contributed">بینی</language>
- <language type="bm">بامبارایی</language>
- <language type="bn">بنگالی</language>
- <language type="bnt">بانتویی</language>
- <language type="bo">تبتی</language>
- <language type="br">برتانیایی</language>
- <language type="bra" draft="contributed">براج</language>
- <language type="bs">بوسنیایی</language>
- <language type="btk">باتاکی</language>
- <language type="bua">بوریاتی</language>
- <language type="bug">بوگیایی</language>
- <language type="byn" draft="contributed">بلین</language>
- <language type="ca">کاتالان</language>
- <language type="cad">کادویی</language>
- <language type="cai">زبان سرخپوستی امریکای مرکزی</language>
- <language type="car">کاریبی</language>
- <language type="cau">زبان قفقازی</language>
- <language type="ce">چچنی</language>
- <language type="ceb">سبویی</language>
- <language type="cel">زبان سلتی</language>
- <language type="ch">چامورویی</language>
- <language type="chb" draft="contributed">چیبچا</language>
- <language type="chg">جغتایی</language>
- <language type="chk">چوکی</language>
- <language type="chm">ماریایی</language>
- <language type="cho">چوکتویی</language>
- <language type="chp">چیپهویهای</language>
- <language type="chr">چروکیایی</language>
- <language type="chy">شایانی</language>
- <language type="ckb">کردی سورانی</language>
- <language type="co">کورسی</language>
- <language type="cop">قبطی</language>
- <language type="cpe">کریول یا پیجین مبتنی بر انگلیسی</language>
- <language type="cpf">کریول یا پیجین مبتنی بر فرانسوی</language>
- <language type="cpp">کریول یا پیجین مبتنی بر پرتغالی</language>
- <language type="cr">کریایی</language>
- <language type="crh">ترکی کریمه</language>
- <language type="crp">کریول یا پیجین</language>
- <language type="cs">چکی</language>
- <language type="csb">کاشوبی</language>
- <language type="cu">اسلاوی کلیسایی</language>
- <language type="cus">زبان کوشی</language>
- <language type="cv">چوواشی</language>
- <language type="cy">ویلزی</language>
- <language type="da">دانمارکی</language>
- <language type="dak">داکوتایی</language>
- <language type="dar">دارقینی</language>
- <language type="day" draft="contributed">دایاک</language>
- <language type="de">آلمانی</language>
- <language type="de_AT">آلمانی اتریش</language>
- <language type="de_CH">آلمانی علیای سوئیس</language>
- <language type="del">دلاواری</language>
- <language type="dgr" draft="contributed">دوگریب</language>
- <language type="din">دینکایی</language>
- <language type="doi" draft="contributed">دوگری</language>
- <language type="dra">زبان دراویدی</language>
- <language type="dsb">صُربی سفلی</language>
- <language type="dua">دوآلایی</language>
- <language type="dum">هلندی میانه</language>
- <language type="dv">مالدیوی</language>
- <language type="dyu">دایولایی</language>
- <language type="dz">جونخایی</language>
- <language type="ee">اوهای</language>
- <language type="efi">افیکی</language>
- <language type="egy">مصری کهن</language>
- <language type="eka" draft="contributed">اکاجوک</language>
- <language type="el">یونانی</language>
- <language type="elx">عیلامی</language>
- <language type="en">انگلیسی</language>
- <language type="en_AU">انگلیسی استرالیا</language>
- <language type="en_CA">انگلیسی کانادا</language>
- <language type="en_GB">انگلیسی بریتانیا</language>
- <language type="en_US">انگلیسی امریکا</language>
- <language type="enm">انگلیسی میانه</language>
- <language type="eo">اسپرانتو</language>
- <language type="es">اسپانیایی</language>
- <language type="es_419">اسپانیایی امریکای لاتین</language>
- <language type="es_ES">اسپانیایی اروپا</language>
- <language type="et">استونیایی</language>
- <language type="eu">باسکی</language>
- <language type="ewo" draft="contributed">اواندو</language>
- <language type="fa">فارسی</language>
- <language type="fan">فانکی</language>
- <language type="fat">فانتیایی</language>
- <language type="ff">فولایی</language>
- <language type="fi">فنلاندی</language>
- <language type="fil">فیلیپینی</language>
- <language type="fiu">زبان فین و اوگرایی</language>
- <language type="fj">فیجیایی</language>
- <language type="fo">فارویی</language>
- <language type="fon">فونی</language>
- <language type="fr">فرانسوی</language>
- <language type="fr_CA">فرانسوی کانادا</language>
- <language type="fr_CH">فرانسوی سوئیس</language>
- <language type="frm">فرانسوی میانه</language>
- <language type="fro">فرانسوی باستان</language>
- <language type="frr">فریزی شمالی</language>
- <language type="frs">فریزی شرقی</language>
- <language type="fur">فریولیایی</language>
- <language type="fy">فریزی غربی</language>
- <language type="ga">ایرلندی</language>
- <language type="gaa">گایی</language>
- <language type="gay">گایویی</language>
- <language type="gba">گبایایی</language>
- <language type="gd">گیلی اسکاتلندی</language>
- <language type="gem">زبان ژرمنی</language>
- <language type="gez">گیئزی</language>
- <language type="gil">گیلبرتی</language>
- <language type="gl">گالیسیایی</language>
- <language type="gmh">آلمانی علیای میانه</language>
- <language type="gn">گوارانی</language>
- <language type="goh">آلمانی علیای باستان</language>
- <language type="gon">گوندی</language>
- <language type="gor" draft="contributed">گورونتالو</language>
- <language type="got">گوتی</language>
- <language type="grb">گریبویی</language>
- <language type="grc">یونانی کهن</language>
- <language type="gsw">آلمانی سوئیسی</language>
- <language type="gu">گجراتی</language>
- <language type="gv">مانی</language>
- <language type="gwi" draft="contributed">گویچ این</language>
- <language type="ha">هوسیایی</language>
- <language type="hai">هایدایی</language>
- <language type="haw">هاوائیایی</language>
- <language type="he">عبری</language>
- <language type="hi">هندی</language>
- <language type="hil">هیلیگاینونی</language>
- <language type="him" draft="contributed">هیماچالی</language>
- <language type="hit">هیتی</language>
- <language type="hmn" draft="contributed">همونگ</language>
- <language type="ho">موتویی هیری</language>
- <language type="hr">کروات</language>
- <language type="hsb">صُربی علیا</language>
- <language type="ht">هائیتیایی</language>
- <language type="hu">مجاری</language>
- <language type="hup" draft="contributed">هوپا</language>
- <language type="hy">ارمنی</language>
- <language type="hz">هریرویی</language>
- <language type="ia">میانزبان</language>
- <language type="iba" draft="contributed">آیبن</language>
- <language type="id">اندونزیایی</language>
- <language type="ie">اکسیدنتال</language>
- <language type="ig">ایگبویی</language>
- <language type="ii">یی سیچوان</language>
- <language type="ijo">ایجویی</language>
- <language type="ik">اینوپیک</language>
- <language type="ilo">ایلوکویی</language>
- <language type="inc">زبان هندیک</language>
- <language type="ine">زبان هند و اروپایی</language>
- <language type="inh">اینگوشی</language>
- <language type="io" draft="contributed">ایدو</language>
- <language type="ira">زبان ایرانی</language>
- <language type="iro">زبان ایروکوایی</language>
- <language type="is">ایسلندی</language>
- <language type="it">ایتالیایی</language>
- <language type="iu">اینوکتیتوت</language>
- <language type="ja">ژاپنی</language>
- <language type="jbo" draft="contributed">لوجبان</language>
- <language type="jpr">فارسی یهودی</language>
- <language type="jrb">عربی یهودی</language>
- <language type="jv">جاوهای</language>
- <language type="ka">گرجی</language>
- <language type="kaa">قرهقالپاقی</language>
- <language type="kab">قبایلی</language>
- <language type="kac">کاچینی</language>
- <language type="kaj" draft="contributed">جو</language>
- <language type="kam">کامبایی</language>
- <language type="kar">کارنی</language>
- <language type="kaw">کاویایی</language>
- <language type="kbd">کاباردینی</language>
- <language type="kcg" draft="unconfirmed">تایپه ای</language>
- <language type="kfo" draft="contributed">کورو</language>
- <language type="kg">کنگویی</language>
- <language type="kha">خاسیایی</language>
- <language type="khi">زبان خواسی</language>
- <language type="kho">ختنی</language>
- <language type="ki">کیکویویی</language>
- <language type="kj">کوانیاما</language>
- <language type="kk">قزاقی</language>
- <language type="kl">گرینلندی</language>
- <language type="km">خمری</language>
- <language type="kmb">کیمبوندویی</language>
- <language type="kn">کانادهای</language>
- <language type="ko">کرهای</language>
- <language type="kok">کنکانی</language>
- <language type="kpe">کپلهای</language>
- <language type="kr">کانوریایی</language>
- <language type="krc">قرهچایی‐بالکاری</language>
- <language type="kro">کرویی</language>
- <language type="kru">کوروخی</language>
- <language type="ks">کشمیری</language>
- <language type="ku">کردی</language>
- <language type="kum">کومیکی</language>
- <language type="kut" draft="contributed">کوتنی</language>
- <language type="kv">کومیایی</language>
- <language type="kw">کرنوالی</language>
- <language type="ky">قرقیزی</language>
- <language type="la">لاتینی</language>
- <language type="lad">لادینو</language>
- <language type="lah">لاهندا</language>
- <language type="lam" draft="contributed">لامبا</language>
- <language type="lb">لوگزامبورگی</language>
- <language type="lez">لزگی</language>
- <language type="lg">گاندایی</language>
- <language type="li">لیمبورگی</language>
- <language type="ln">لینگالا</language>
- <language type="lo">لائوسی</language>
- <language type="lol">مونگویی</language>
- <language type="loz">لوزیایی</language>
- <language type="lt">لیتوانیایی</language>
- <language type="lu">لوبایی‐کاتانگا</language>
- <language type="lua">لوبایی‐لولوا</language>
- <language type="lui" draft="contributed">لویسنو</language>
- <language type="lun">لوندایی</language>
- <language type="luo">لوئویی</language>
- <language type="lus">لوشهای</language>
- <language type="lv">لتونیایی</language>
- <language type="mad">مادورایی</language>
- <language type="mag">ماگاهیایی</language>
- <language type="mai">مایدیلی</language>
- <language type="mak" draft="contributed">ماکاسار</language>
- <language type="man">ماندینگویی</language>
- <language type="map">زبان آسترونیزیایی</language>
- <language type="mas">ماسایی</language>
- <language type="mdf">مکشایی</language>
- <language type="mdr" draft="contributed">ماندار</language>
- <language type="men">مندهای</language>
- <language type="mfe">موریسین</language>
- <language type="mg">مالاگاسیایی</language>
- <language type="mga">ایرلندی میانه</language>
- <language type="mh">مارشالی</language>
- <language type="mi">مائوریایی</language>
- <language type="mic">میکماکی</language>
- <language type="min">مینانگکابویی</language>
- <language type="mis">زبان متفرقه</language>
- <language type="mk">مقدونی</language>
- <language type="mkh">زبان مونخمری</language>
- <language type="ml">مالایالامی</language>
- <language type="mn">مغولی</language>
- <language type="mnc">مانچویی</language>
- <language type="mni">میتهای</language>
- <language type="mno" draft="contributed">زبان مانوبو</language>
- <language type="mo">مولداویایی</language>
- <language type="moh">موهاکی</language>
- <language type="mos">ماسیایی</language>
- <language type="mr">مراتی</language>
- <language type="ms">مالایی</language>
- <language type="mt">مالتی</language>
- <language type="mul">چندین زبان</language>
- <language type="mun">زبان موندایی</language>
- <language type="mus">کریکی</language>
- <language type="mwr" draft="contributed">مارواری</language>
- <language type="my">برمهای</language>
- <language type="myn">زبان مایایی</language>
- <language type="myv">ارزیایی</language>
- <language type="na">نائورویی</language>
- <language type="nah">ناواتلی</language>
- <language type="nai">زبان سرخپوستی امریکای شمالی</language>
- <language type="nap">ناپلی</language>
- <language type="nb">بوکسمال نروژی</language>
- <language type="nd">اندهبلهای شمالی</language>
- <language type="nds">آلمانی سفلی</language>
- <language type="ne">نپالی</language>
- <language type="new">نواریایی</language>
- <language type="ng">اندونگایی</language>
- <language type="nia">نیاسی</language>
- <language type="niu">نیویی</language>
- <language type="nl">هلندی</language>
- <language type="nl_BE">فلمنگی</language>
- <language type="nn">نرس جدید نروژی</language>
- <language type="no">نروژی</language>
- <language type="nog">نغایی</language>
- <language type="non">نرس باستان</language>
- <language type="nr">اندهبلهای جنوبی</language>
- <language type="nso">سوتویی شمالی</language>
- <language type="nub">زبان نوبیایی</language>
- <language type="nv">ناواهویی</language>
- <language type="nwc">نواریایی کلاسیک</language>
- <language type="ny">نیانجایی</language>
- <language type="nym">نیاموزیایی</language>
- <language type="nyn">نیانکولهای</language>
- <language type="nyo">نیورویی</language>
- <language type="nzi" draft="contributed">نزیمایی</language>
- <language type="oc">اوکیتایی</language>
- <language type="oj">اوجیبوایی</language>
- <language type="om">اورومویی</language>
- <language type="or">اوریهای</language>
- <language type="os">آسی</language>
- <language type="osa">اوسیجی</language>
- <language type="ota">ترکی عثمانی</language>
- <language type="oto">زبان اتومیایی</language>
- <language type="pa">پنجابی</language>
- <language type="paa">زبان پاپوایی</language>
- <language type="pag">پانگاسینانی</language>
- <language type="pal">پهلوی</language>
- <language type="pam">پامپانگایی</language>
- <language type="pap">پاپیامنتو</language>
- <language type="pau">پالائویی</language>
- <language type="peo">فارسی باستان</language>
- <language type="phi">زبان فیلیپینی</language>
- <language type="phn">فنیقی</language>
- <language type="pi">پالی</language>
- <language type="pl">لهستانی</language>
- <language type="pon">پانپیی</language>
- <language type="pra">زبان پراکریتی</language>
- <language type="pro">پرووانسی باستان</language>
- <language type="ps">پشتو</language>
- <language type="ps" alt="variant">پختو</language>
- <language type="pt">پرتغالی</language>
- <language type="pt_BR">پرتغالی برزیل</language>
- <language type="pt_PT">پرتغالی اروپا</language>
- <language type="qu">کچوایی</language>
- <language type="raj">راجستانی</language>
- <language type="rap" draft="contributed">راپانویی</language>
- <language type="rar">راروتونگایی</language>
- <language type="rm">رومانش</language>
- <language type="rn">روندیایی</language>
- <language type="ro">رومانیایی</language>
- <language type="roa">زبان رومیایی</language>
- <language type="rom">رومانویی</language>
- <language type="root">ریشه</language>
- <language type="ru">روسی</language>
- <language type="rw">کینیارواندایی</language>
- <language type="sa">سنسکریت</language>
- <language type="sad">سانداوهای</language>
- <language type="sah">یاقوتی</language>
- <language type="sai">زبان سرخپوستی امریکای جنوبی</language>
- <language type="sal">زبان سالیشی</language>
- <language type="sam">آرامی سامری</language>
- <language type="sas">ساساکی</language>
- <language type="sat">سانتالی</language>
- <language type="sc">ساردینیایی</language>
- <language type="scn">سیسیلی</language>
- <language type="sco">اسکاتلندی</language>
- <language type="sd">سندی</language>
- <language type="se">سامی شمالی</language>
- <language type="sel">سلکوپی</language>
- <language type="sem">زبان سامی</language>
- <language type="sg">سانگویی</language>
- <language type="sga">ایرلندی باستان</language>
- <language type="sgn">زبان اشاره</language>
- <language type="sh">صرب و کرواتی</language>
- <language type="shn">شانی</language>
- <language type="shu">عربی چادی</language>
- <language type="si">سینهالی</language>
- <language type="sid">سیدامویی</language>
- <language type="sio">زبان سویی</language>
- <language type="sit">زبان چین و تبتی</language>
- <language type="sk">اسلواکی</language>
- <language type="sl">اسلووینیایی</language>
- <language type="sla">زبان اسلاوی</language>
- <language type="sm">ساموآیی</language>
- <language type="sn">شونایی</language>
- <language type="snk">سونینکهای</language>
- <language type="so">سومالیایی</language>
- <language type="sog">سغدی</language>
- <language type="son">سونغایی</language>
- <language type="sq">آلبانیایی</language>
- <language type="sr">صربی</language>
- <language type="srn">تاکیتاکی</language>
- <language type="srr">سریری</language>
- <language type="ss">سوازیایی</language>
- <language type="ssa">زبان نیلی و صحرایی</language>
- <language type="st">سوتویی جنوبی</language>
- <language type="su">سوندایی</language>
- <language type="suk">سوکومایی</language>
- <language type="sus">سوسویی</language>
- <language type="sux">سومری</language>
- <language type="sv">سوئدی</language>
- <language type="sw">سواحلی</language>
- <language type="swb">کوموری</language>
- <language type="swc">سواحلی کنگویی</language>
- <language type="syc">سریانی کلاسیک</language>
- <language type="syr">سریانی</language>
- <language type="ta">تامیلی</language>
- <language type="tai">زبان تایی</language>
- <language type="te">تلوگویی</language>
- <language type="tem">تمنهای</language>
- <language type="ter" draft="contributed">ترنو</language>
- <language type="tet">تتومی</language>
- <language type="tg">تاجیکی</language>
- <language type="th">تایلندی</language>
- <language type="ti">تیگرینیایی</language>
- <language type="tig">تیگرهای</language>
- <language type="tiv">تیوی</language>
- <language type="tk">ترکمنی</language>
- <language type="tl">تاگالوگی</language>
- <language type="tlh">کلینگون</language>
- <language type="tli">تلینگیتی</language>
- <language type="tmh">تاماشقی</language>
- <language type="tn">تسوانایی</language>
- <language type="to">تونگایی</language>
- <language type="tog">تونگایی نیاسا</language>
- <language type="tpi">توکپیسینی</language>
- <language type="tr">ترکی استانبولی</language>
- <language type="tr" alt="secondary">ترکی</language>
- <language type="ts">تسونگایی</language>
- <language type="tsi">تسیمشیانی</language>
- <language type="tt">تاتاری</language>
- <language type="tum">تومبوکایی</language>
- <language type="tup">زبان توپیایی</language>
- <language type="tut">زبان آلتاییک</language>
- <language type="tvl">تووالویی</language>
- <language type="tw">توییایی</language>
- <language type="ty">تاهیتیایی</language>
- <language type="tyv">تووایی</language>
- <language type="udm">اودمورتی</language>
- <language type="ug">اویغوری</language>
- <language type="ug" alt="variant">اویغوری</language>
- <language type="uga" draft="contributed">اوگاریتی</language>
- <language type="uk">اوکراینی</language>
- <language type="umb">امبوندویی</language>
- <language type="und">زبان نامشخص</language>
- <language type="ur">اردو</language>
- <language type="uz">ازبکی</language>
- <language type="vai">ویایی</language>
- <language type="ve">وندایی</language>
- <language type="vi">ویتنامی</language>
- <language type="vo">ولاپوک</language>
- <language type="vot">وتی</language>
- <language type="wa">والونی</language>
- <language type="wak">زبان واکاشی</language>
- <language type="wal" draft="contributed">والامو</language>
- <language type="war">وارایی</language>
- <language type="was" draft="contributed">واشویی</language>
- <language type="wen">زبان صُربی</language>
- <language type="wo">ولوفی</language>
- <language type="xal">قلموقی</language>
- <language type="xh">خوسایی</language>
- <language type="yao">یائویی</language>
- <language type="yap">یاپی</language>
- <language type="yi">یدی</language>
- <language type="yo">یوروبایی</language>
- <language type="ypk">زبان یوپیکی</language>
- <language type="yue">کانتونیز</language>
- <language type="za">چوانگی</language>
- <language type="zap">زاپوتکی</language>
- <language type="zen" draft="contributed">زناگا</language>
- <language type="zh">چینی</language>
- <language type="zh_Hans">چینی سادهشده</language>
- <language type="zh_Hant">چینی سنتی</language>
- <language type="znd">زاندهای</language>
- <language type="zu">زولویی</language>
- <language type="zun">زونیایی</language>
- <language type="zxx">بدون محتوای زبانی</language>
- <language type="zza" draft="contributed">زازایی</language>
- </languages>
- <scripts>
- <script type="Arab">عربی</script>
- <script type="Arab" alt="variant">فارسی-عربی</script>
- <script type="Armi">آرامی هخامنشی</script>
- <script type="Armn">ارمنی</script>
- <script type="Avst">اوستایی</script>
- <script type="Bali">بالیایی</script>
- <script type="Batk">باتاکی</script>
- <script type="Beng">بنگالی</script>
- <script type="Blis" draft="contributed">نمادهای بلیس</script>
- <script type="Bopo">بوپوموفو</script>
- <script type="Brah">براهمی</script>
- <script type="Brai">بریل</script>
- <script type="Bugi">بوگیایی</script>
- <script type="Buhd" draft="contributed">بوهید</script>
- <script type="Cakm" draft="contributed">کاکم</script>
- <script type="Cari" draft="contributed">کاری</script>
- <script type="Cham" draft="contributed">چمی</script>
- <script type="Cher">چروکیایی</script>
- <script type="Cirt">کرت</script>
- <script type="Copt">قبطی</script>
- <script type="Cprt">قبرسی</script>
- <script type="Cyrl">سیریلی</script>
- <script type="Deva">دوناگری</script>
- <script type="Dsrt" draft="contributed">دیسرتی</script>
- <script type="Egyh" draft="contributed">کاهنی مصری</script>
- <script type="Egyp">هیروگلیف مصری</script>
- <script type="Ethi">اتیوپیایی</script>
- <script type="Geok" draft="contributed">گرجی خوتسوری</script>
- <script type="Geor">گرجی</script>
- <script type="Glag" draft="contributed">گلاگولیتیک</script>
- <script type="Goth">گوتیک</script>
- <script type="Grek">یونانی</script>
- <script type="Gujr">گجراتی</script>
- <script type="Guru">گورومخی</script>
- <script type="Hang">هانگول</script>
- <script type="Hani">هان</script>
- <script type="Hano" draft="contributed">هانونویی</script>
- <script type="Hans">سادهشده</script>
- <script type="Hans" alt="stand-alone">هان سادهشده</script>
- <script type="Hant">سنتی</script>
- <script type="Hant" alt="stand-alone">هان سنتی</script>
- <script type="Hebr">عبری</script>
- <script type="Hira">هیراگانا</script>
- <script type="Hluw">هیروگلیفهای آناتولی</script>
- <script type="Hrkt">سیلابیهای ژاپنی</script>
- <script type="Hung">مجاری باستان</script>
- <script type="Inds" draft="contributed">ایندوس</script>
- <script type="Java">جاوهای</script>
- <script type="Jpan">ژاپنی</script>
- <script type="Kali" draft="contributed">کایالی</script>
- <script type="Kana">کاتاکانا</script>
- <script type="Khmr">خمری</script>
- <script type="Khoj">خواجکی</script>
- <script type="Knda">کانادهای</script>
- <script type="Kore">کرهای</script>
- <script type="Kthi" draft="contributed">کثی</script>
- <script type="Lana" draft="contributed">لانایی</script>
- <script type="Laoo">لائوسی</script>
- <script type="Latf">لاتینی فراکتور</script>
- <script type="Latg">لاتینی گیلی</script>
- <script type="Latn">لاتینی</script>
- <script type="Limb" draft="contributed">لیمبایی</script>
- <script type="Lina" draft="contributed">خطی الف</script>
- <script type="Linb" draft="contributed">خطی ب</script>
- <script type="Lyci" draft="contributed">لسیایی</script>
- <script type="Lydi" draft="contributed">لدیایی</script>
- <script type="Mand">مندهای</script>
- <script type="Mani">مانوی</script>
- <script type="Maya">هیروگلیف مایایی</script>
- <script type="Mero" draft="contributed">مروییتی</script>
- <script type="Mlym">مالایالامی</script>
- <script type="Mong">مغولی</script>
- <script type="Moon" draft="contributed">مونی</script>
- <script type="Mtei" draft="contributed">مایک میتی</script>
- <script type="Mymr">میانمار</script>
- <script type="Nbat">نبطی</script>
- <script type="Ogam" draft="contributed">اوگامی</script>
- <script type="Orkh" draft="contributed">اورخونی</script>
- <script type="Orya">اوریهای</script>
- <script type="Perm">پرمی باستان</script>
- <script type="Phli">پهلوی کتیبهای</script>
- <script type="Phlp">پهلوی زبوری</script>
- <script type="Phlv">پهلوی کتابی</script>
- <script type="Phnx">فنیقی</script>
- <script type="Prti">پارتی کتیبهای</script>
- <script type="Rjng" draft="contributed">رجنگی</script>
- <script type="Runr">رونی</script>
- <script type="Samr">سامری</script>
- <script type="Sara" draft="contributed">ساراتی</script>
- <script type="Saur" draft="contributed">سوراشترایی</script>
- <script type="Shaw">شاوی</script>
- <script type="Sinh">سینهالی</script>
- <script type="Sylo" draft="contributed">سیلوتی نگاری</script>
- <script type="Syrc">سریانی</script>
- <script type="Syre">سریانی استرانگلو</script>
- <script type="Syrj">سریانی غربی</script>
- <script type="Syrn">سریانی شرقی</script>
- <script type="Tagb" draft="contributed">تگبنوایی</script>
- <script type="Taml">تامیلی</script>
- <script type="Telu">تلوگویی</script>
- <script type="Teng" draft="contributed">تنگوار</script>
- <script type="Tglg">تاگالوگی</script>
- <script type="Thaa">تانهای</script>
- <script type="Thai">تایلندی</script>
- <script type="Tibt">تبتی</script>
- <script type="Vaii">ویایی</script>
- <script type="Visp" draft="contributed">گفتار قابل مشاهده</script>
- <script type="Xpeo">فارسی باستان</script>
- <script type="Xsux">میخی سومری‐آکدی</script>
- <script type="Yiii">یی</script>
- <script type="Zinh">موروثی</script>
- <script type="Zmth">علائم ریاضی</script>
- <script type="Zsym">علائم</script>
- <script type="Zxxx">نانوشته</script>
- <script type="Zyyy">مشترک</script>
- <script type="Zzzz">خط نامشخص</script>
- </scripts>
- <territories>
- <territory type="001">جهان</territory>
- <territory type="002">افریقا</territory>
- <territory type="003">امریکای شمالی</territory>
- <territory type="005">امریکای جنوبی</territory>
- <territory type="009">اقیانوسیه</territory>
- <territory type="011">غرب افریقا</territory>
- <territory type="013">امریکای مرکزی</territory>
- <territory type="014">شرق افریقا</territory>
- <territory type="015">شمال افریقا</territory>
- <territory type="017">مرکز افریقا</territory>
- <territory type="018">جنوب افریقا</territory>
- <territory type="019">امریکا</territory>
- <territory type="021">شمال امریکا</territory>
- <territory type="029">کارائیب</territory>
- <territory type="030">شرق آسیا</territory>
- <territory type="034">جنوب آسیا</territory>
- <territory type="035">جنوب شرق آسیا</territory>
- <territory type="039">جنوب اروپا</territory>
- <territory type="053">استرالزی</territory>
- <territory type="054">ملانزی</territory>
- <territory type="057">ناحیهٔ میکرونزی</territory>
- <territory type="061">پلینزی</territory>
- <territory type="142">آسیا</territory>
- <territory type="143">آسیای مرکزی</territory>
- <territory type="145">غرب آسیا</territory>
- <territory type="150">اروپا</territory>
- <territory type="151">شرق اروپا</territory>
- <territory type="154">شمال اروپا</territory>
- <territory type="155">غرب اروپا</territory>
- <territory type="419">امریکای لاتین</territory>
- <territory type="AC">جزایر آسنسیون</territory>
- <territory type="AD">آندورا</territory>
- <territory type="AE">امارات متحدهٔ عربی</territory>
- <territory type="AF">افغانستان</territory>
- <territory type="AG">آنتیگوا و باربودا</territory>
- <territory type="AI">آنگیل</territory>
- <territory type="AL">آلبانی</territory>
- <territory type="AM">ارمنستان</territory>
- <territory type="AN">آنتیل هلند</territory>
- <territory type="AO">آنگولا</territory>
- <territory type="AQ">جنوبگان</territory>
- <territory type="AR">آرژانتین</territory>
- <territory type="AS">ساموای امریکا</territory>
- <territory type="AT">اتریش</territory>
- <territory type="AU">استرالیا</territory>
- <territory type="AW">آروبا</territory>
- <territory type="AX">جزایر آلاند</territory>
- <territory type="AZ">جمهوری آذربایجان</territory>
- <territory type="BA">بوسنی و هرزگوین</territory>
- <territory type="BB">باربادوس</territory>
- <territory type="BD">بنگلادش</territory>
- <territory type="BE">بلژیک</territory>
- <territory type="BF">بورکینافاسو</territory>
- <territory type="BG">بلغارستان</territory>
- <territory type="BH">بحرین</territory>
- <territory type="BI">بوروندی</territory>
- <territory type="BJ">بنین</territory>
- <territory type="BL">سنت بارتیلمی</territory>
- <territory type="BM">برمودا</territory>
- <territory type="BN">برونئی</territory>
- <territory type="BO">بولیوی</territory>
- <territory type="BQ">کارائیب هلند</territory>
- <territory type="BR">برزیل</territory>
- <territory type="BS">باهاما</territory>
- <territory type="BT">بوتان</territory>
- <territory type="BV">جزیره بووت</territory>
- <territory type="BW">بوتسوانا</territory>
- <territory type="BY">بیلوروسی</territory>
- <territory type="BZ">بلیز</territory>
- <territory type="CA">کانادا</territory>
- <territory type="CC">جزایر کوکوس [کیلینگ]</territory>
- <territory type="CD">کنگو - کینشاسا</territory>
- <territory type="CD" alt="variant">کنگو [جمهوری دموکراتیک]</territory>
- <territory type="CF">جمهوری افریقای مرکزی</territory>
- <territory type="CG">کنگو - برازویل</territory>
- <territory type="CG" alt="variant">کنگو [جمهوری]</territory>
- <territory type="CH">سوئیس</territory>
- <territory type="CI">ساحل عاج</territory>
- <territory type="CI" alt="variant">ساحل عاج</territory>
- <territory type="CK">جزایر کوک</territory>
- <territory type="CL">شیلی</territory>
- <territory type="CM">کامرون</territory>
- <territory type="CN">چین</territory>
- <territory type="CO">کلمبیا</territory>
- <territory type="CP">جزایر کلیپرتون</territory>
- <territory type="CR">کاستاریکا</territory>
- <territory type="CU">کوبا</territory>
- <territory type="CV">کیپورد</territory>
- <territory type="CW">کوراکائو</territory>
- <territory type="CX">جزیرهٔ کریسمس</territory>
- <territory type="CY">قبرس</territory>
- <territory type="CZ">جمهوری چک</territory>
- <territory type="DE">آلمان</territory>
- <territory type="DG">دیهگو گارسیا</territory>
- <territory type="DJ">جیبوتی</territory>
- <territory type="DK">دانمارک</territory>
- <territory type="DM">دومینیک</territory>
- <territory type="DO">جمهوری دومینیکن</territory>
- <territory type="DZ">الجزایر</territory>
- <territory type="EA">سبته و ملیله</territory>
- <territory type="EC">اکوادور</territory>
- <territory type="EE">استونی</territory>
- <territory type="EG">مصر</territory>
- <territory type="EH">صحرای غربی</territory>
- <territory type="ER">اریتره</territory>
- <territory type="ES">اسپانیا</territory>
- <territory type="ET">اتیوپی</territory>
- <territory type="EU">اتحادیهٔ اروپا</territory>
- <territory type="FI">فنلاند</territory>
- <territory type="FJ">فیجی</territory>
- <territory type="FK">جزایر فالکلند</territory>
- <territory type="FK" alt="variant">جزایر فالکلند [ایسلاس مالویناس]</territory>
- <territory type="FM">میکرونزی</territory>
- <territory type="FO">جزایر فارو</territory>
- <territory type="FR">فرانسه</territory>
- <territory type="GA">گابون</territory>
- <territory type="GB">بریتانیا</territory>
- <territory type="GD">گرانادا</territory>
- <territory type="GE">گرجستان</territory>
- <territory type="GF">گویان فرانسه</territory>
- <territory type="GG">گرنزی</territory>
- <territory type="GH">غنا</territory>
- <territory type="GI">جبلالطارق</territory>
- <territory type="GL">گرینلند</territory>
- <territory type="GM">گامبیا</territory>
- <territory type="GN">گینه</territory>
- <territory type="GP">گوادلوپ</territory>
- <territory type="GQ">گینهٔ استوایی</territory>
- <territory type="GR">یونان</territory>
- <territory type="GS">جورجیای جنوبی و جزایر ساندویچ جنوبی</territory>
- <territory type="GT">گواتمالا</territory>
- <territory type="GU">گوام</territory>
- <territory type="GW">گینهٔ بیسائو</territory>
- <territory type="GY">گویان</territory>
- <territory type="HK">هنگکنگ، ناحیهٔ ویژهٔ حکومتی چین</territory>
- <territory type="HK" alt="short">هنگکنگ</territory>
- <territory type="HM">جزیرهٔ هرد و جزایر مکدونالد</territory>
- <territory type="HN">هندوراس</territory>
- <territory type="HR">کرواسی</territory>
- <territory type="HT">هائیتی</territory>
- <territory type="HU">مجارستان</territory>
- <territory type="IC">جزایر قناری</territory>
- <territory type="ID">اندونزی</territory>
- <territory type="IE">ایرلند</territory>
- <territory type="IL">اسرائیل</territory>
- <territory type="IM">جزیرهٔ من</territory>
- <territory type="IN">هند</territory>
- <territory type="IO">مستعمرههای بریتانیا در اقیانوس هند</territory>
- <territory type="IQ">عراق</territory>
- <territory type="IR">ایران</territory>
- <territory type="IS">ایسلند</territory>
- <territory type="IT">ایتالیا</territory>
- <territory type="JE">جرزی</territory>
- <territory type="JM">جامائیکا</territory>
- <territory type="JO">اردن</territory>
- <territory type="JP">ژاپن</territory>
- <territory type="KE">کنیا</territory>
- <territory type="KG">قرقیزستان</territory>
- <territory type="KH">کامبوج</territory>
- <territory type="KI">کریباتی</territory>
- <territory type="KM">کومورو</territory>
- <territory type="KN">سنت کیتس و نویس</territory>
- <territory type="KP">کرهٔ شمالی</territory>
- <territory type="KR">کرهٔ جنوبی</territory>
- <territory type="KW">کویت</territory>
- <territory type="KY">جزایر کِیمن</territory>
- <territory type="KZ">قزاقستان</territory>
- <territory type="LA">لائوس</territory>
- <territory type="LB">لبنان</territory>
- <territory type="LC">سنت لوسیا</territory>
- <territory type="LI">لیختناشتاین</territory>
- <territory type="LK">سریلانکا</territory>
- <territory type="LR">لیبریا</territory>
- <territory type="LS">لسوتو</territory>
- <territory type="LT">لیتوانی</territory>
- <territory type="LU">لوکزامبورگ</territory>
- <territory type="LV">لتونی</territory>
- <territory type="LY">لیبی</territory>
- <territory type="MA">مراکش</territory>
- <territory type="MC">موناکو</territory>
- <territory type="MD">مولداوی</territory>
- <territory type="ME">مونتهنگرو</territory>
- <territory type="MF">سنت مارتین</territory>
- <territory type="MG">ماداگاسکار</territory>
- <territory type="MH">جزایر مارشال</territory>
- <territory type="MK">مقدونیه</territory>
- <territory type="MK" alt="variant">مقدونیه [جمهوری سابقاً یوگسلاو]</territory>
- <territory type="ML">مالی</territory>
- <territory type="MM">میانمار [برمه]</territory>
- <territory type="MN">مغولستان</territory>
- <territory type="MO">ماکائو، ناحیهٔ ویژهٔ حکومتی چین</territory>
- <territory type="MO" alt="short">ماکائو</territory>
- <territory type="MP">جزایر ماریانای شمالی</territory>
- <territory type="MQ">مارتینیک</territory>
- <territory type="MR">موریتانی</territory>
- <territory type="MS">مونتسرات</territory>
- <territory type="MT">مالت</territory>
- <territory type="MU">موریس</territory>
- <territory type="MV">مالدیو</territory>
- <territory type="MW">مالاوی</territory>
- <territory type="MX">مکزیک</territory>
- <territory type="MY">مالزی</territory>
- <territory type="MZ">موزامبیک</territory>
- <territory type="NA">نامیبیا</territory>
- <territory type="NC">کالدونیای جدید</territory>
- <territory type="NE">نیجر</territory>
- <territory type="NF">جزیرهٔ نورفولک</territory>
- <territory type="NG">نیجریه</territory>
- <territory type="NI">نیکاراگوئه</territory>
- <territory type="NL">هلند</territory>
- <territory type="NO">نروژ</territory>
- <territory type="NP">نپال</territory>
- <territory type="NR">نائورو</territory>
- <territory type="NU">نیوئه</territory>
- <territory type="NZ">زلاند نو</territory>
- <territory type="OM">عمان</territory>
- <territory type="PA">پاناما</territory>
- <territory type="PE">پرو</territory>
- <territory type="PF">پلینزی فرانسه</territory>
- <territory type="PG">پاپوا گینهٔ نو</territory>
- <territory type="PH">فیلیپین</territory>
- <territory type="PK">پاکستان</territory>
- <territory type="PL">لهستان</territory>
- <territory type="PM">سنت پیر و میکلون</territory>
- <territory type="PN">جزایر پیتکرن</territory>
- <territory type="PR">پورتوریکو</territory>
- <territory type="PS">سرزمینهای فلسطینی</territory>
- <territory type="PS" alt="short">فلسطین</territory>
- <territory type="PT">پرتغال</territory>
- <territory type="PW">پالائو</territory>
- <territory type="PY">پاراگوئه</territory>
- <territory type="QA">قطر</territory>
- <territory type="QO">بخشهای دورافتادهٔ اقیانوسیه</territory>
- <territory type="RE">ریونیون</territory>
- <territory type="RO">رومانی</territory>
- <territory type="RS">صربستان</territory>
- <territory type="RU">روسیه</territory>
- <territory type="RW">رواندا</territory>
- <territory type="SA">عربستان سعودی</territory>
- <territory type="SA" alt="short">عربستان</territory>
- <territory type="SB">جزایر سلیمان</territory>
- <territory type="SC">سیشل</territory>
- <territory type="SD">سودان</territory>
- <territory type="SE">سوئد</territory>
- <territory type="SG">سنگاپور</territory>
- <territory type="SH">سنت هلن</territory>
- <territory type="SI">اسلوونی</territory>
- <territory type="SJ">اسوالبارد و جانماین</territory>
- <territory type="SK">اسلواکی</territory>
- <territory type="SL">سیرالئون</territory>
- <territory type="SM">سانمارینو</territory>
- <territory type="SN">سنگال</territory>
- <territory type="SO">سومالی</territory>
- <territory type="SR">سورینام</territory>
- <territory type="SS">سودان جنوبی</territory>
- <territory type="ST">سائوتومه و پرینسیپه</territory>
- <territory type="SV">السالوادور</territory>
- <territory type="SX">سنت مارتن</territory>
- <territory type="SY">سوریه</territory>
- <territory type="SZ">سوازیلند</territory>
- <territory type="TA">تریستان دا کونا</territory>
- <territory type="TC">جزایر ترک و کایکوس</territory>
- <territory type="TD">چاد</territory>
- <territory type="TF">مستعمرههای جنوبی فرانسه</territory>
- <territory type="TG">توگو</territory>
- <territory type="TH">تایلند</territory>
- <territory type="TJ">تاجیکستان</territory>
- <territory type="TK">توکلائو</territory>
- <territory type="TL">تیمور لسته</territory>
- <territory type="TL" alt="variant">تیمور شرقی</territory>
- <territory type="TM">ترکمنستان</territory>
- <territory type="TN">تونس</territory>
- <territory type="TO">تونگا</territory>
- <territory type="TR">ترکیه</territory>
- <territory type="TT">ترینیداد و توباگو</territory>
- <territory type="TV">تووالو</territory>
- <territory type="TW">تایوان</territory>
- <territory type="TZ">تانزانیا</territory>
- <territory type="UA">اوکراین</territory>
- <territory type="UG">اوگاندا</territory>
- <territory type="UM">جزایر دورافتادهٔ ایالات متحده</territory>
- <territory type="US">ایالات متحدهٔ امریکا</territory>
- <territory type="UY">اروگوئه</territory>
- <territory type="UZ">ازبکستان</territory>
- <territory type="VA">واتیکان</territory>
- <territory type="VC">سنت وینسنت و گرنادین</territory>
- <territory type="VE">ونزوئلا</territory>
- <territory type="VG">جزایر ویرجین بریتانیا</territory>
- <territory type="VI">جزایر ویرجین ایالات متحده</territory>
- <territory type="VN">ویتنام</territory>
- <territory type="VU">وانواتو</territory>
- <territory type="WF">والیس و فیوتونا</territory>
- <territory type="WS">ساموا</territory>
- <territory type="XK">کوزووو</territory>
- <territory type="YE">یمن</territory>
- <territory type="YT">مایوت</territory>
- <territory type="ZA">افریقای جنوبی</territory>
- <territory type="ZM">زامبیا</territory>
- <territory type="ZW">زیمبابوه</territory>
- <territory type="ZZ">ناحیهٔ نامشخص</territory>
- </territories>
- <variants>
- <variant type="1901">رسمالخط سنتی آلمانی</variant>
- <variant type="1996">رسمالخط آلمانی ۱۹۹۶ میلادی</variant>
- <variant type="AREVELA">ارمنی شرقی</variant>
- <variant type="AREVMDA">ارمنی غربی</variant>
- <variant type="FONIPA">فونتیک IPA</variant>
- <variant type="FONUPA">فونتیک UPA</variant>
- <variant type="POSIX">کامپیوتری</variant>
- <variant type="REVISED">رسمالخط تجدیدنظرشده</variant>
- <variant type="SAAHO">ساهویی</variant>
- <variant type="SCOTLAND">انگلیسی معیار اسکاتلند</variant>
- </variants>
- <keys>
- <key type="calendar">تقویم</key>
- <key type="colAlternate">مرتبسازی با نادیده گرفتن نمادها</key>
- <key type="colBackwards">مرتبسازی معکوس براساس آکسان</key>
- <key type="colCaseFirst">ترتیب بر اساس حروف کوچک/بزرگ</key>
- <key type="colCaseLevel">مرتبسازی حساس به اندازه حروف</key>
- <key type="colHiraganaQuaternary">سیستم مرتبسازی کانا</key>
- <key type="collation">ترتیب</key>
- <key type="colNormalization">مرتبسازی معمولی</key>
- <key type="colNumeric">مرتبسازی عددی</key>
- <key type="colStrength">قدرت مرتبسازی</key>
- <key type="currency">واحد پول</key>
- <key type="numbers">اعداد</key>
- <key type="timezone">منطقه زمانی</key>
- <key type="va">متغیر محلی</key>
- <key type="variableTop">مرتبسازی به عنوان نماد</key>
- <key type="x">استفادهٔ خصوصی</key>
- </keys>
- <types>
- <type type="arab" key="numbers">ارقام عربی</type>
- <type type="arabext" key="numbers">ارقام فارسی</type>
- <type type="armn" key="numbers">اعداد ارمنی</type>
- <type type="armnlow" key="numbers">اعداد ارمنی با حروف کوچک</type>
- <type type="bali" key="numbers">ارقام بالیایی</type>
- <type type="beng" key="numbers">ارقام بنگالی</type>
- <type type="big5han" key="collation">ترتیب چینی سنتی - Big5</type>
- <type type="buddhist" key="calendar">تقویم بودایی</type>
- <type type="chinese" key="calendar">تقویم چینی</type>
- <type type="coptic" key="calendar">تقویم قبطی</type>
- <type type="deva" key="numbers">ارقام دوناگری</type>
- <type type="dictionary" key="collation">ترتیب فرهنگ لغت</type>
- <type type="ducet" key="collation">ترتیب پیشفرض یونیکد</type>
- <type type="ethi" key="numbers">اعداد اتیوپیایی</type>
- <type type="ethiopic" key="calendar">تقویم اتیوپیایی</type>
- <type type="ethiopic-amete-alem" key="calendar">تقویم اتیوپیایی عامت عالم</type>
- <type type="finance" key="numbers">سیستم عددی مالی</type>
- <type type="fullwide" key="numbers">ارقام تمامعرض</type>
- <type type="gb2312han" key="collation">ترتیب چینی سادهشده - GB2312</type>
- <type type="geor" key="numbers">اعداد گرجی</type>
- <type type="gregorian" key="calendar">تقویم میلادی</type>
- <type type="grek" key="numbers">اعداد یونانی</type>
- <type type="greklow" key="numbers">اعداد یونانی با حروف کوچک</type>
- <type type="gujr" key="numbers">ارقام گجراتی</type>
- <type type="guru" key="numbers">ارقام گورومخی</type>
- <type type="hanidec" key="numbers">اعداد دهدهی چینی</type>
- <type type="hans" key="numbers">اعداد چینی سادهشده</type>
- <type type="hansfin" key="numbers">اعداد مالی چینی سادهشده</type>
- <type type="hant" key="numbers">اعداد چینی سنتی</type>
- <type type="hantfin" key="numbers">اعداد مالی چینی سنتی</type>
- <type type="hebr" key="numbers">اعداد عبری</type>
- <type type="hebrew" key="calendar">تقویم عبری</type>
- <type type="identical" key="colStrength">مرتبسازی همه</type>
- <type type="indian" key="calendar">تقویم ملی هند</type>
- <type type="islamic" key="calendar">تقویم هجری قمری</type>
- <type type="islamic-civil" key="calendar">تقویم هجری قمری مدنی</type>
- <type type="japanese" key="calendar">تقویم ژاپنی</type>
- <type type="java" key="numbers">ارقام جاوهای</type>
- <type type="jpan" key="numbers">اعداد ژاپنی</type>
- <type type="jpanfin" key="numbers">اعداد مالی ژاپنی</type>
- <type type="khmr" key="numbers">ارقام خمری</type>
- <type type="knda" key="numbers">ارقام کانادهای</type>
- <type type="laoo" key="numbers">ارقام لائوسی</type>
- <type type="latn" key="numbers">ارقام غربی</type>
- <type type="lower" key="colCaseFirst">ابتدا مرتبسازی حروف کوچک</type>
- <type type="mlym" key="numbers">ارقام مالایالامی</type>
- <type type="mong" key="numbers">ارقام مغولی</type>
- <type type="mymr" key="numbers">ارقام میانماری</type>
- <type type="mymrshan" key="numbers">ارقام شان میانماری</type>
- <type type="native" key="numbers">ارقام بومی</type>
- <type type="no" key="colBackwards">مرتبسازی آکسانها به صورت معمولی</type>
- <type type="no" key="colCaseFirst">مرتبسازی به ترتیب معمولی بزرگ و کوچکی حروف</type>
- <type type="no" key="colCaseLevel">مرتبسازی بدون توجه به کوچک و بزرگی حروف</type>
- <type type="no" key="colHiraganaQuaternary">مرتبسازی بر اساس سیستم کانا به صورت جداگانه</type>
- <type type="no" key="colNormalization">مرتبسازی بدون عادیسازی</type>
- <type type="no" key="colNumeric">مرتبسازی ارقام بصورت مجزا</type>
- <type type="non-ignorable" key="colAlternate">مرتبسازی نمادها</type>
- <type type="orya" key="numbers">ارقام اوریهای</type>
- <type type="persian" key="calendar">تقویم هجری شمسی</type>
- <type type="phonebook" key="collation">ترتیب دفتر تلفن</type>
- <type type="phonetic" key="collation">مرتب کردن بر اساس آوایی</type>
- <type type="pinyin" key="collation">ترتیب پینیین</type>
- <type type="primary" key="colStrength">مرتبسازی فقط حروف پایه</type>
- <type type="quaternary" key="colStrength">مرتبسازی بر اساس آکسان/اندازه حروف/عرض/کانا</type>
- <type type="reformed" key="collation">ترتیب اصلاحشده</type>
- <type type="roc" key="calendar">تقویم جمهوری چین [تایوان]</type>
- <type type="roman" key="numbers">اعداد رومی</type>
- <type type="romanlow" key="numbers">اعداد رومی با حروف کوچک</type>
- <type type="search" key="collation">جستجوی عمومی</type>
- <type type="searchjl" key="collation">جستجو با صامت اول هانگول</type>
- <type type="secondary" key="colStrength">مرتبسازی آکسانها</type>
- <type type="shifted" key="colAlternate">مرتبسازی با نادیده گرفتن نمادها</type>
- <type type="stroke" key="collation">ترتیب حرکتی</type>
- <type type="taml" key="numbers">اعداد سنتی تامیلی</type>
- <type type="tamldec" key="numbers">ارقام تامیلی</type>
- <type type="telu" key="numbers">ارقام تلوگویی</type>
- <type type="tertiary" key="colStrength">مرتبسازی بر اساس آکسان/اندازه حرف/عرض</type>
- <type type="thai" key="numbers">ارقام تایلندی</type>
- <type type="tibt" key="numbers">ارقام تبتی</type>
- <type type="traditional" key="collation">ترتیب سنتی</type>
- <type type="traditional" key="numbers">سیستم اعداد سنتی</type>
- <type type="unihan" key="collation">ترتیب رادیکالی-حرکتی</type>
- <type type="upper" key="colCaseFirst">مرتبسازی بر اساس حرف بزرگ در ابتدا</type>
- <type type="vaii" key="numbers">ارقام وایی</type>
- <type type="yes" key="colBackwards">مرتبسازی معکوس براساس آکسان</type>
- <type type="yes" key="colCaseLevel">مرتبسازی با حساسیت به اندازه حروف</type>
- <type type="yes" key="colHiraganaQuaternary">مرتبسازی کانا به صورت متفاوت</type>
- <type type="yes" key="colNormalization">مرتبسازی یونیکد نرمال شده</type>
- <type type="yes" key="colNumeric">مرتبسازی شمارهها با سیستم عددی</type>
- </types>
- <transformNames>
- <transformName type="BGN">BGN</transformName>
- <transformName type="Numeric">سیستم اعداد</transformName>
- <transformName type="Tone">تون</transformName>
- <transformName type="UNGEGN">UNGEGN</transformName>
- <transformName type="x-Accents">تکیه</transformName>
- <transformName type="x-Fullwidth">تمامعرض</transformName>
- <transformName type="x-Halfwidth">نیمعرض</transformName>
- <transformName type="x-Jamo">جامو</transformName>
- <transformName type="x-Pinyin">پینیین</transformName>
- <transformName type="x-Publishing">نشر</transformName>
- </transformNames>
- <measurementSystemNames>
- <measurementSystemName type="metric">متریک</measurementSystemName>
- <measurementSystemName type="UK">بریتانیایی</measurementSystemName>
- <measurementSystemName type="US">امریکایی</measurementSystemName>
- </measurementSystemNames>
- <codePatterns>
- <codePattern type="language">زبان: {0}</codePattern>
- <codePattern type="script">خط: {0}</codePattern>
- <codePattern type="territory">ناحیه: {0}</codePattern>
- </codePatterns>
- </localeDisplayNames>
- <layout>
- <orientation>
- <characterOrder>right-to-left</characterOrder>
- </orientation>
- </layout>
- <characters>
- <exemplarCharacters>[\u064B \u064D \u064C \u0651 \u0654 آ ا ء أ ؤ ئ ب پ ت ث ج چ ح خ د ذ ر ز ژ س ش ص ض ط ظ ع غ ف ق ک گ ل م ن و ه ة ی]</exemplarCharacters>
- <exemplarCharacters type="auxiliary">[\u200C\u200D\u200E\u200F \u064E \u0650 \u064F \u0652 \u0656 \u0670 ۰ ۱ ۲ ۳ ۴ ۵ ۶ ۷ ۸ ۹ إ ك ى ي]</exemplarCharacters>
- <exemplarCharacters type="index">[آ ا ب پ ت ث ج چ ح خ د ذ ر ز ژ س ش ص ض ط ظ ع غ ف ق ک گ ل م ن و ه ی]</exemplarCharacters>
- <exemplarCharacters type="punctuation">[\- ‐ ، ٫ ٬ ؛ \: ! ؟ . … « » ( ) \[ \] * / \\]</exemplarCharacters>
- <ellipsis type="final">{0}…</ellipsis>
- <ellipsis type="initial">…{0}</ellipsis>
- <ellipsis type="medial">{0}…{1}</ellipsis>
- <moreInformation>؟</moreInformation>
- </characters>
- <delimiters>
- <quotationStart>«</quotationStart>
- <quotationEnd>»</quotationEnd>
- <alternateQuotationStart>‹</alternateQuotationStart>
- <alternateQuotationEnd>›</alternateQuotationEnd>
- </delimiters>
- <dates>
- <calendars>
- <calendar type="generic">
- <dateFormats>
- <dateFormatLength type="full">
- <dateFormat>
- <pattern>EEEE d MMMM y G</pattern>
- </dateFormat>
- </dateFormatLength>
- <dateFormatLength type="long">
- <dateFormat>
- <pattern>d MMMM y G</pattern>
- </dateFormat>
- </dateFormatLength>
- <dateFormatLength type="medium">
- <dateFormat>
- <pattern>d MMM y G</pattern>
- </dateFormat>
- </dateFormatLength>
- <dateFormatLength type="short">
- <dateFormat>
- <pattern>y/M/d G</pattern>
- </dateFormat>
- </dateFormatLength>
- </dateFormats>
- <dateTimeFormats>
- <dateTimeFormatLength type="full">
- <dateTimeFormat>
- <pattern>{1}، ساعت {0}</pattern>
- </dateTimeFormat>
- </dateTimeFormatLength>
- <dateTimeFormatLength type="long">
- <dateTimeFormat>
- <pattern>{1}، ساعت {0}</pattern>
- </dateTimeFormat>
- </dateTimeFormatLength>
- <dateTimeFormatLength type="medium">
- <dateTimeFormat>
- <pattern>{1}، {0}</pattern>
- </dateTimeFormat>
- </dateTimeFormatLength>
- <dateTimeFormatLength type="short">
- <dateTimeFormat>
- <pattern>{1}، {0}</pattern>
- </dateTimeFormat>
- </dateTimeFormatLength>
- <availableFormats>
- <dateFormatItem id="d">d</dateFormatItem>
- <dateFormatItem id="Ed">E d</dateFormatItem>
- <dateFormatItem id="Gy">y G</dateFormatItem>
- <dateFormatItem id="GyMMM">MMM y G</dateFormatItem>
- <dateFormatItem id="GyMMMd">d MMM y G</dateFormatItem>
- <dateFormatItem id="GyMMMEd">E d MMM y G</dateFormatItem>
- <dateFormatItem id="h">h a</dateFormatItem>
- <dateFormatItem id="H">H</dateFormatItem>
- <dateFormatItem id="HHmmZ">HH:mm (Z)</dateFormatItem>
- <dateFormatItem id="hm">h:mm a</dateFormatItem>
- <dateFormatItem id="Hm">H:mm</dateFormatItem>
- <dateFormatItem id="hms">h:mm:ss a</dateFormatItem>
- <dateFormatItem id="Hms">H:mm:ss</dateFormatItem>
- <dateFormatItem id="M">L</dateFormatItem>
- <dateFormatItem id="Md">M/d</dateFormatItem>
- <dateFormatItem id="MEd">E M/d</dateFormatItem>
- <dateFormatItem id="MMM">LLL</dateFormatItem>
- <dateFormatItem id="MMMd">d LLL</dateFormatItem>
- <dateFormatItem id="MMMEd">E d LLL</dateFormatItem>
- <dateFormatItem id="MMMMd">d LLLL</dateFormatItem>
- <dateFormatItem id="MMMMEd">E d LLLL</dateFormatItem>
- <dateFormatItem id="ms">mm:ss</dateFormatItem>
- <dateFormatItem id="y">y G</dateFormatItem>
- <dateFormatItem id="yyyy">y G</dateFormatItem>
- <dateFormatItem id="yyyyM">y/M G</dateFormatItem>
- <dateFormatItem id="yyyyMd">y/M/d G</dateFormatItem>
- <dateFormatItem id="yyyyMEd">E y/M/d G</dateFormatItem>
- <dateFormatItem id="yyyyMMM">MMM y G</dateFormatItem>
- <dateFormatItem id="yyyyMMMd">d MMM y G</dateFormatItem>
- <dateFormatItem id="yyyyMMMEd">E d MMM y G</dateFormatItem>
- <dateFormatItem id="yyyyQQQ">QQQQ y G</dateFormatItem>
- <dateFormatItem id="yyyyQQQQ">QQQQ y G</dateFormatItem>
- </availableFormats>
- <appendItems>
- <appendItem request="Day-Of-Week">{1} {0}</appendItem>
- </appendItems>
- <intervalFormats>
- <intervalFormatFallback>{0} تا {1}</intervalFormatFallback>
- <intervalFormatItem id="d">
- <greatestDifference id="d">d تا d</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="h">
- <greatestDifference id="a">h a تا h a</greatestDifference>
- <greatestDifference id="h">h تا h a</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="H">
- <greatestDifference id="H">H تا H</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="hm">
- <greatestDifference id="a">h:mm a تا h:mm a</greatestDifference>
- <greatestDifference id="h">h:mm تا h:mm a</greatestDifference>
- <greatestDifference id="m">h:mm تا h:mm a</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="Hm">
- <greatestDifference id="H">H:mm تا H:mm</greatestDifference>
- <greatestDifference id="m">H:mm تا H:mm</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="hmv">
- <greatestDifference id="a">h:mm a تا h:mm a (v)</greatestDifference>
- <greatestDifference id="h">h:mm تا h:mm a (v)</greatestDifference>
- <greatestDifference id="m">h:mm تا h:mm a (v)</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="Hmv">
- <greatestDifference id="H">H:mm تا H:mm (v)</greatestDifference>
- <greatestDifference id="m">H:mm تا H:mm (v)</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="hv">
- <greatestDifference id="a">h a تا h a (v)</greatestDifference>
- <greatestDifference id="h">h تا h a (v)</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="Hv">
- <greatestDifference id="H">H تا H (v)</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="M">
- <greatestDifference id="M">M تا M</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="Md">
- <greatestDifference id="d">M/d تا M/d</greatestDifference>
- <greatestDifference id="M">M/d تا M/d</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MEd">
- <greatestDifference id="d">E M/d تا E M/d</greatestDifference>
- <greatestDifference id="M">E M/d تا E M/d</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MMM">
- <greatestDifference id="M">LLL تا LLL</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MMMd">
- <greatestDifference id="d">d تا d LLL</greatestDifference>
- <greatestDifference id="M">d LLL تا d LLL</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MMMEd">
- <greatestDifference id="d">E d LLL تا E d LLL</greatestDifference>
- <greatestDifference id="M">E d LLL تا E d LLL</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="y">
- <greatestDifference id="y">y تا y G</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yM">
- <greatestDifference id="M">y/M تا y/M G</greatestDifference>
- <greatestDifference id="y">y/M تا y/M G</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMd">
- <greatestDifference id="d">y/M/d تا y/M/d G</greatestDifference>
- <greatestDifference id="M">y/M/d تا y/M/d G</greatestDifference>
- <greatestDifference id="y">y/M/d تا y/M/d G</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMEd">
- <greatestDifference id="d">E y/M/d تا E y/M/d G</greatestDifference>
- <greatestDifference id="M">E y/M/d تا E y/M/d G</greatestDifference>
- <greatestDifference id="y">E y/M/d تا E y/M/d G</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMMM">
- <greatestDifference id="M">LLL تا MMM y G</greatestDifference>
- <greatestDifference id="y">MMM y تا MMM y G</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMMMd">
- <greatestDifference id="d">d تا d MMM y G</greatestDifference>
- <greatestDifference id="M">d LLL تا d MMM y G</greatestDifference>
- <greatestDifference id="y">d MMM y تا d MMM y G</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMMMEd">
- <greatestDifference id="d">E d LLL تا E d MMM y G</greatestDifference>
- <greatestDifference id="M">E d LLL تا E d MMM y G</greatestDifference>
- <greatestDifference id="y">E d MMM y تا E d MMM y G</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMMMM">
- <greatestDifference id="M">LLLL تا MMMM y G</greatestDifference>
- <greatestDifference id="y">MMMM y تا MMMM y G</greatestDifference>
- </intervalFormatItem>
- </intervalFormats>
- </dateTimeFormats>
- </calendar>
- <calendar type="gregorian">
- <months>
- <monthContext type="format">
- <monthWidth type="abbreviated">
- <month type="1">ژانویهٔ</month>
- <month type="2">فوریهٔ</month>
- <month type="3">مارس</month>
- <month type="4">آوریل</month>
- <month type="5">مهٔ</month>
- <month type="6">ژوئن</month>
- <month type="7">ژوئیهٔ</month>
- <month type="8">اوت</month>
- <month type="9">سپتامبر</month>
- <month type="10">اکتبر</month>
- <month type="11">نوامبر</month>
- <month type="12">دسامبر</month>
- </monthWidth>
- <monthWidth type="narrow">
- <month type="1">ژ</month>
- <month type="2">ف</month>
- <month type="3">م</month>
- <month type="4">آ</month>
- <month type="5">م</month>
- <month type="6">ژ</month>
- <month type="7">ژ</month>
- <month type="8">ا</month>
- <month type="9">س</month>
- <month type="10">ا</month>
- <month type="11">ن</month>
- <month type="12">د</month>
- </monthWidth>
- <monthWidth type="wide">
- <month type="1">ژانویهٔ</month>
- <month type="2">فوریهٔ</month>
- <month type="3">مارس</month>
- <month type="4">آوریل</month>
- <month type="5">مهٔ</month>
- <month type="6">ژوئن</month>
- <month type="7">ژوئیهٔ</month>
- <month type="8">اوت</month>
- <month type="9">سپتامبر</month>
- <month type="10">اکتبر</month>
- <month type="11">نوامبر</month>
- <month type="12">دسامبر</month>
- </monthWidth>
- </monthContext>
- <monthContext type="stand-alone">
- <monthWidth type="abbreviated">
- <month type="1">ژانویه</month>
- <month type="2">فوریه</month>
- <month type="3">مارس</month>
- <month type="4">آوریل</month>
- <month type="5">مه</month>
- <month type="6">ژوئن</month>
- <month type="7">ژوئیه</month>
- <month type="8">اوت</month>
- <month type="9">سپتامبر</month>
- <month type="10">اکتبر</month>
- <month type="11">نوامبر</month>
- <month type="12">دسامبر</month>
- </monthWidth>
- <monthWidth type="narrow">
- <month type="1">ژ</month>
- <month type="2">ف</month>
- <month type="3">م</month>
- <month type="4">آ</month>
- <month type="5">م</month>
- <month type="6">ژ</month>
- <month type="7">ژ</month>
- <month type="8">ا</month>
- <month type="9">س</month>
- <month type="10">ا</month>
- <month type="11">ن</month>
- <month type="12">د</month>
- </monthWidth>
- <monthWidth type="wide">
- <month type="1">ژانویه</month>
- <month type="2">فوریه</month>
- <month type="3">مارس</month>
- <month type="4">آوریل</month>
- <month type="5">مه</month>
- <month type="6">ژوئن</month>
- <month type="7">ژوئیه</month>
- <month type="8">اوت</month>
- <month type="9">سپتامبر</month>
- <month type="10">اکتبر</month>
- <month type="11">نوامبر</month>
- <month type="12">دسامبر</month>
- </monthWidth>
- </monthContext>
- </months>
- <days>
- <dayContext type="format">
- <dayWidth type="abbreviated">
- <day type="sun">یکشنبه</day>
- <day type="mon">دوشنبه</day>
- <day type="tue">سهشنبه</day>
- <day type="wed">چهارشنبه</day>
- <day type="thu">پنجشنبه</day>
- <day type="fri">جمعه</day>
- <day type="sat">شنبه</day>
- </dayWidth>
- <dayWidth type="narrow">
- <day type="sun">ی</day>
- <day type="mon">د</day>
- <day type="tue">س</day>
- <day type="wed">چ</day>
- <day type="thu">پ</day>
- <day type="fri">ج</day>
- <day type="sat">ش</day>
- </dayWidth>
- <dayWidth type="short">
- <day type="sun">۱ش</day>
- <day type="mon">۲ش</day>
- <day type="tue">۳ش</day>
- <day type="wed">۴ش</day>
- <day type="thu">۵ش</day>
- <day type="fri">ج</day>
- <day type="sat">ش</day>
- </dayWidth>
- <dayWidth type="wide">
- <day type="sun">یکشنبه</day>
- <day type="mon">دوشنبه</day>
- <day type="tue">سهشنبه</day>
- <day type="wed">چهارشنبه</day>
- <day type="thu">پنجشنبه</day>
- <day type="fri">جمعه</day>
- <day type="sat">شنبه</day>
- </dayWidth>
- </dayContext>
- <dayContext type="stand-alone">
- <dayWidth type="abbreviated">
- <day type="sun">یکشنبه</day>
- <day type="mon">دوشنبه</day>
- <day type="tue">سهشنبه</day>
- <day type="wed">چهارشنبه</day>
- <day type="thu">پنجشنبه</day>
- <day type="fri">جمعه</day>
- <day type="sat">شنبه</day>
- </dayWidth>
- <dayWidth type="narrow">
- <day type="sun">ی</day>
- <day type="mon">د</day>
- <day type="tue">س</day>
- <day type="wed">چ</day>
- <day type="thu">پ</day>
- <day type="fri">ج</day>
- <day type="sat">ش</day>
- </dayWidth>
- <dayWidth type="short">
- <day type="sun">۱ش</day>
- <day type="mon">۲ش</day>
- <day type="tue">۳ش</day>
- <day type="wed">۴ش</day>
- <day type="thu">۵ش</day>
- <day type="fri">ج</day>
- <day type="sat">ش</day>
- </dayWidth>
- <dayWidth type="wide">
- <day type="sun">یکشنبه</day>
- <day type="mon">دوشنبه</day>
- <day type="tue">سهشنبه</day>
- <day type="wed">چهارشنبه</day>
- <day type="thu">پنجشنبه</day>
- <day type="fri">جمعه</day>
- <day type="sat">شنبه</day>
- </dayWidth>
- </dayContext>
- </days>
- <quarters>
- <quarterContext type="format">
- <quarterWidth type="abbreviated">
- <quarter type="1">سم۱</quarter>
- <quarter type="2">سم۲</quarter>
- <quarter type="3">سم۳</quarter>
- <quarter type="4">سم۴</quarter>
- </quarterWidth>
- <quarterWidth type="narrow">
- <quarter type="1">۱</quarter>
- <quarter type="2">۲</quarter>
- <quarter type="3">۳</quarter>
- <quarter type="4">۴</quarter>
- </quarterWidth>
- <quarterWidth type="wide">
- <quarter type="1">سهماههٔ اول</quarter>
- <quarter type="2">سهماههٔ دوم</quarter>
- <quarter type="3">سهماههٔ سوم</quarter>
- <quarter type="4">سهماههٔ چهارم</quarter>
- </quarterWidth>
- </quarterContext>
- <quarterContext type="stand-alone">
- <quarterWidth type="abbreviated">
- <quarter type="1">سم۱</quarter>
- <quarter type="2">سم۲</quarter>
- <quarter type="3">سم۳</quarter>
- <quarter type="4">سم۴</quarter>
- </quarterWidth>
- <quarterWidth type="narrow">
- <quarter type="1">۱</quarter>
- <quarter type="2">۲</quarter>
- <quarter type="3">۳</quarter>
- <quarter type="4">۴</quarter>
- </quarterWidth>
- <quarterWidth type="wide">
- <quarter type="1">سهماههٔ اول</quarter>
- <quarter type="2">سهماههٔ دوم</quarter>
- <quarter type="3">سهماههٔ سوم</quarter>
- <quarter type="4">سهماههٔ چهارم</quarter>
- </quarterWidth>
- </quarterContext>
- </quarters>
- <dayPeriods>
- <dayPeriodContext type="format">
- <dayPeriodWidth type="wide">
- <dayPeriod type="afternoon">عصر</dayPeriod>
- <dayPeriod type="am">قبلازظهر</dayPeriod>
- <dayPeriod type="earlyMorning">بامداد</dayPeriod>
- <dayPeriod type="midDay">بعدازظهر</dayPeriod>
- <dayPeriod type="morning">صبح</dayPeriod>
- <dayPeriod type="night">شب</dayPeriod>
- <dayPeriod type="noon">ظهر</dayPeriod>
- <dayPeriod type="pm">بعدازظهر</dayPeriod>
- <dayPeriod type="weeHours">نیمهشب</dayPeriod>
- </dayPeriodWidth>
- </dayPeriodContext>
- </dayPeriods>
- <eras>
- <eraNames>
- <era type="0">قبل از میلاد</era>
- <era type="1">میلادی</era>
- </eraNames>
- <eraAbbr>
- <era type="0">ق.م.</era>
- <era type="1">م.</era>
- </eraAbbr>
- <eraNarrow>
- <era type="0">ق</era>
- <era type="1">م</era>
- </eraNarrow>
- </eras>
- <dateFormats>
- <dateFormatLength type="full">
- <dateFormat>
- <pattern>EEEE d MMMM y</pattern>
- </dateFormat>
- </dateFormatLength>
- <dateFormatLength type="long">
- <dateFormat>
- <pattern>d MMMM y</pattern>
- </dateFormat>
- </dateFormatLength>
- <dateFormatLength type="medium">
- <dateFormat>
- <pattern>d MMM y</pattern>
- </dateFormat>
- </dateFormatLength>
- <dateFormatLength type="short">
- <dateFormat>
- <pattern>y/M/d</pattern>
- </dateFormat>
- </dateFormatLength>
- </dateFormats>
- <timeFormats>
- <timeFormatLength type="full">
- <timeFormat>
- <pattern>H:mm:ss (zzzz)</pattern>
- </timeFormat>
- </timeFormatLength>
- <timeFormatLength type="long">
- <timeFormat>
- <pattern>H:mm:ss (z)</pattern>
- </timeFormat>
- </timeFormatLength>
- <timeFormatLength type="medium">
- <timeFormat>
- <pattern>H:mm:ss</pattern>
- </timeFormat>
- </timeFormatLength>
- <timeFormatLength type="short">
- <timeFormat>
- <pattern>H:mm</pattern>
- </timeFormat>
- </timeFormatLength>
- </timeFormats>
- <dateTimeFormats>
- <dateTimeFormatLength type="full">
- <dateTimeFormat>
- <pattern>{1}، ساعت {0}</pattern>
- </dateTimeFormat>
- </dateTimeFormatLength>
- <dateTimeFormatLength type="long">
- <dateTimeFormat>
- <pattern>{1}، ساعت {0}</pattern>
- </dateTimeFormat>
- </dateTimeFormatLength>
- <dateTimeFormatLength type="medium">
- <dateTimeFormat>
- <pattern>{1}، {0}</pattern>
- </dateTimeFormat>
- </dateTimeFormatLength>
- <dateTimeFormatLength type="short">
- <dateTimeFormat>
- <pattern>{1}، {0}</pattern>
- </dateTimeFormat>
- </dateTimeFormatLength>
- <availableFormats>
- <dateFormatItem id="d">d</dateFormatItem>
- <dateFormatItem id="Ed">E d</dateFormatItem>
- <dateFormatItem id="Gy">y G</dateFormatItem>
- <dateFormatItem id="GyMMM">MMM y G</dateFormatItem>
- <dateFormatItem id="GyMMMd">d MMM y G</dateFormatItem>
- <dateFormatItem id="GyMMMEd">E d MMM y G</dateFormatItem>
- <dateFormatItem id="h">h a</dateFormatItem>
- <dateFormatItem id="H">H</dateFormatItem>
- <dateFormatItem id="HHmmZ">HH:mm (Z)</dateFormatItem>
- <dateFormatItem id="hm">h:mm a</dateFormatItem>
- <dateFormatItem id="Hm">H:mm</dateFormatItem>
- <dateFormatItem id="hms">h:mm:ss a</dateFormatItem>
- <dateFormatItem id="Hms">H:mm:ss</dateFormatItem>
- <dateFormatItem id="M">L</dateFormatItem>
- <dateFormatItem id="Md">M/d</dateFormatItem>
- <dateFormatItem id="MEd">E M/d</dateFormatItem>
- <dateFormatItem id="MMM">LLL</dateFormatItem>
- <dateFormatItem id="MMMd">d LLL</dateFormatItem>
- <dateFormatItem id="MMMEd">E d LLL</dateFormatItem>
- <dateFormatItem id="MMMMd">d LLLL</dateFormatItem>
- <dateFormatItem id="MMMMEd">E d LLLL</dateFormatItem>
- <dateFormatItem id="mmss">mm:ss</dateFormatItem>
- <dateFormatItem id="ms">mm:ss</dateFormatItem>
- <dateFormatItem id="y">y</dateFormatItem>
- <dateFormatItem id="yM">y/M</dateFormatItem>
- <dateFormatItem id="yMd">y/M/d</dateFormatItem>
- <dateFormatItem id="yMEd">E y/M/d</dateFormatItem>
- <dateFormatItem id="yMMM">MMM y</dateFormatItem>
- <dateFormatItem id="yMMMd">d MMM y</dateFormatItem>
- <dateFormatItem id="yMMMEd">E d MMM y</dateFormatItem>
- <dateFormatItem id="yMMMM">MMMM y</dateFormatItem>
- <dateFormatItem id="yMMMMEEEEd">EEEE d MMMM y</dateFormatItem>
- <dateFormatItem id="yQQQ">QQQQ y</dateFormatItem>
- <dateFormatItem id="yQQQQ">QQQQ y</dateFormatItem>
- </availableFormats>
- <appendItems>
- <appendItem request="Day-Of-Week">{1} {0}</appendItem>
- </appendItems>
- <intervalFormats>
- <intervalFormatFallback>{0} تا {1}</intervalFormatFallback>
- <intervalFormatItem id="d">
- <greatestDifference id="d">d تا d</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="h">
- <greatestDifference id="a">h a تا h a</greatestDifference>
- <greatestDifference id="h">h تا h a</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="H">
- <greatestDifference id="H">H تا H</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="hm">
- <greatestDifference id="a">h:mm a تا h:mm a</greatestDifference>
- <greatestDifference id="h">h:mm تا h:mm a</greatestDifference>
- <greatestDifference id="m">h:mm تا h:mm a</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="Hm">
- <greatestDifference id="H">H:mm تا H:mm</greatestDifference>
- <greatestDifference id="m">H:mm تا H:mm</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="hmv">
- <greatestDifference id="a">h:mm a تا h:mm a (v)</greatestDifference>
- <greatestDifference id="h">h:mm تا h:mm a (v)</greatestDifference>
- <greatestDifference id="m">h:mm تا h:mm a (v)</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="Hmv">
- <greatestDifference id="H">H:mm تا H:mm (v)</greatestDifference>
- <greatestDifference id="m">H:mm تا H:mm (v)</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="hv">
- <greatestDifference id="a">h a تا h a (v)</greatestDifference>
- <greatestDifference id="h">h تا h a (v)</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="Hv">
- <greatestDifference id="H">H تا H (v)</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="M">
- <greatestDifference id="M">M تا M</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="Md">
- <greatestDifference id="d">M/d تا M/d</greatestDifference>
- <greatestDifference id="M">M/d تا M/d</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MEd">
- <greatestDifference id="d">E M/d تا E M/d</greatestDifference>
- <greatestDifference id="M">E M/d تا E M/d</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MMM">
- <greatestDifference id="M">LLL تا LLL</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MMMd">
- <greatestDifference id="d">d تا d LLL</greatestDifference>
- <greatestDifference id="M">d LLL تا d LLL</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MMMEd">
- <greatestDifference id="d">E d LLL تا E d LLL</greatestDifference>
- <greatestDifference id="M">E d LLL تا E d LLL</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="y">
- <greatestDifference id="y">y تا y</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yM">
- <greatestDifference id="M">y/M تا y/M</greatestDifference>
- <greatestDifference id="y">y/M تا y/M</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMd">
- <greatestDifference id="d">y/M/d تا y/M/d</greatestDifference>
- <greatestDifference id="M">y/M/d تا y/M/d</greatestDifference>
- <greatestDifference id="y">y/M/d تا y/M/d</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMEd">
- <greatestDifference id="d">E y/M/d تا E y/M/d</greatestDifference>
- <greatestDifference id="M">E y/M/d تا E y/M/d</greatestDifference>
- <greatestDifference id="y">E y/M/d تا E y/M/d</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMMM">
- <greatestDifference id="M">LLL تا MMM y</greatestDifference>
- <greatestDifference id="y">MMM y تا MMM y</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMMMd">
- <greatestDifference id="d">d تا d MMM y</greatestDifference>
- <greatestDifference id="M">d LLL تا d MMM y</greatestDifference>
- <greatestDifference id="y">d MMM y تا d MMM y</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMMMEd">
- <greatestDifference id="d">E d LLL تا E d MMM y</greatestDifference>
- <greatestDifference id="M">E d LLL تا E d MMM y</greatestDifference>
- <greatestDifference id="y">E d MMM y تا E d MMM y</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMMMM">
- <greatestDifference id="M">LLLL تا MMMM y</greatestDifference>
- <greatestDifference id="y">MMMM y تا MMMM y</greatestDifference>
- </intervalFormatItem>
- </intervalFormats>
- </dateTimeFormats>
- </calendar>
- <calendar type="hebrew">
- <months>
- <monthContext type="format">
- <monthWidth type="abbreviated">
- <month type="1">تشری</month>
- <month type="2">حشوان</month>
- <month type="3">کسلو</month>
- <month type="4">طوت</month>
- <month type="5">شباط</month>
- <month type="6">آذار</month>
- <month type="7">واذار</month>
- <month type="7" yeartype="leap">واذار الثانی</month>
- <month type="8">نیسان</month>
- <month type="9">ایار</month>
- <month type="10">سیوان</month>
- <month type="11">تموز</month>
- <month type="12">آب</month>
- <month type="13">ایلول</month>
- </monthWidth>
- <monthWidth type="narrow">
- <month type="1">ت</month>
- <month type="2">ح</month>
- <month type="3">ک</month>
- <month type="4">ط</month>
- <month type="5">ش</month>
- <month type="6">آ</month>
- <month type="7">و</month>
- <month type="7" yeartype="leap">و</month>
- <month type="8">ن</month>
- <month type="9">ا</month>
- <month type="10">س</month>
- <month type="11">ت</month>
- <month type="12">آ</month>
- <month type="13">ا</month>
- </monthWidth>
- <monthWidth type="wide">
- <month type="1">تشری</month>
- <month type="2">حشوان</month>
- <month type="3">کسلو</month>
- <month type="4">طوت</month>
- <month type="5">شباط</month>
- <month type="6">آذار</month>
- <month type="7">واذار</month>
- <month type="7" yeartype="leap">واذار الثانی</month>
- <month type="8">نیسان</month>
- <month type="9">ایار</month>
- <month type="10">سیوان</month>
- <month type="11">تموز</month>
- <month type="12">آب</month>
- <month type="13">ایلول</month>
- </monthWidth>
- </monthContext>
- <monthContext type="stand-alone">
- <monthWidth type="abbreviated">
- <month type="1">تشری</month>
- <month type="2">حشوان</month>
- <month type="3">کسلو</month>
- <month type="4">طوت</month>
- <month type="5">شباط</month>
- <month type="6">آذار</month>
- <month type="7">واذار</month>
- <month type="7" yeartype="leap">واذار الثانی</month>
- <month type="8">نیسان</month>
- <month type="9">ایار</month>
- <month type="10">سیوان</month>
- <month type="11">تموز</month>
- <month type="12">آب</month>
- <month type="13">ایلول</month>
- </monthWidth>
- <monthWidth type="narrow">
- <month type="1">ت</month>
- <month type="2">ح</month>
- <month type="3">ک</month>
- <month type="4">ط</month>
- <month type="5">ش</month>
- <month type="6">آ</month>
- <month type="7">و</month>
- <month type="7" yeartype="leap">و</month>
- <month type="8">ن</month>
- <month type="9">ا</month>
- <month type="10">س</month>
- <month type="11">ت</month>
- <month type="12">آ</month>
- <month type="13">ا</month>
- </monthWidth>
- <monthWidth type="wide">
- <month type="1">تشری</month>
- <month type="2">حشوان</month>
- <month type="3">کسلو</month>
- <month type="4">طوت</month>
- <month type="5">شباط</month>
- <month type="6">آذار</month>
- <month type="7">واذار</month>
- <month type="7" yeartype="leap">واذار الثانی</month>
- <month type="8">نیسان</month>
- <month type="9">ایار</month>
- <month type="10">سیوان</month>
- <month type="11">تموز</month>
- <month type="12">آب</month>
- <month type="13">ایلول</month>
- </monthWidth>
- </monthContext>
- </months>
- </calendar>
- <calendar type="islamic">
- <months>
- <monthContext type="format">
- <monthWidth type="abbreviated">
- <month type="1">محرم</month>
- <month type="2">صفر</month>
- <month type="3">ربیع الاول</month>
- <month type="4">ربیع الثانی</month>
- <month type="5">جمادی الاول</month>
- <month type="6">جمادی الثانی</month>
- <month type="7">رجب</month>
- <month type="8">شعبان</month>
- <month type="9">رمضان</month>
- <month type="10">شوال</month>
- <month type="11">ذیقعدهٔ</month>
- <month type="12">ذیحجهٔ</month>
- </monthWidth>
- <monthWidth type="narrow">
- <month type="1">م</month>
- <month type="2">ص</month>
- <month type="3">ر</month>
- <month type="4">ر</month>
- <month type="5">ج</month>
- <month type="6">ج</month>
- <month type="7">ر</month>
- <month type="8">ش</month>
- <month type="9">ر</month>
- <month type="10">ش</month>
- <month type="11">ذ</month>
- <month type="12">ذ</month>
- </monthWidth>
- <monthWidth type="wide">
- <month type="1">محرم</month>
- <month type="2">صفر</month>
- <month type="3">ربیع الاول</month>
- <month type="4">ربیع الثانی</month>
- <month type="5">جمادی الاول</month>
- <month type="6">جمادی الثانی</month>
- <month type="7">رجب</month>
- <month type="8">شعبان</month>
- <month type="9">رمضان</month>
- <month type="10">شوال</month>
- <month type="11">ذیقعدهٔ</month>
- <month type="12">ذیحجهٔ</month>
- </monthWidth>
- </monthContext>
- <monthContext type="stand-alone">
- <monthWidth type="abbreviated">
- <month type="1">محرم</month>
- <month type="2">صفر</month>
- <month type="3">ربیع الاول</month>
- <month type="4">ربیع الثانی</month>
- <month type="5">جمادی الاول</month>
- <month type="6">جمادی الثانی</month>
- <month type="7">رجب</month>
- <month type="8">شعبان</month>
- <month type="9">رمضان</month>
- <month type="10">شوال</month>
- <month type="11">ذیقعده</month>
- <month type="12">ذیحجه</month>
- </monthWidth>
- <monthWidth type="narrow">
- <month type="1">م</month>
- <month type="2">ص</month>
- <month type="3">ر</month>
- <month type="4">ر</month>
- <month type="5">ج</month>
- <month type="6">ج</month>
- <month type="7">ر</month>
- <month type="8">ش</month>
- <month type="9">ر</month>
- <month type="10">ش</month>
- <month type="11">ذ</month>
- <month type="12">ذ</month>
- </monthWidth>
- <monthWidth type="wide">
- <month type="1">محرم</month>
- <month type="2">صفر</month>
- <month type="3">ربیع الاول</month>
- <month type="4">ربیع الثانی</month>
- <month type="5">جمادی الاول</month>
- <month type="6">جمادی الثانی</month>
- <month type="7">رجب</month>
- <month type="8">شعبان</month>
- <month type="9">رمضان</month>
- <month type="10">شوال</month>
- <month type="11">ذیقعده</month>
- <month type="12">ذیحجه</month>
- </monthWidth>
- </monthContext>
- </months>
- <eras>
- <eraNames>
- <era type="0">هجری قمری</era>
- </eraNames>
- <eraAbbr>
- <era type="0">ه.ق.</era>
- </eraAbbr>
- </eras>
- <dateFormats>
- <dateFormatLength type="full">
- <dateFormat>
- <pattern>EEEE d MMMM y GGGG</pattern>
- </dateFormat>
- </dateFormatLength>
- <dateFormatLength type="long">
- <dateFormat>
- <pattern>d MMMM y G</pattern>
- </dateFormat>
- </dateFormatLength>
- <dateFormatLength type="medium">
- <dateFormat>
- <pattern>y/M/d G</pattern>
- </dateFormat>
- </dateFormatLength>
- <dateFormatLength type="short">
- <dateFormat>
- <pattern>yy/M/d G</pattern>
- </dateFormat>
- </dateFormatLength>
- </dateFormats>
- <dateTimeFormats>
- <availableFormats>
- <dateFormatItem id="d">d</dateFormatItem>
- <dateFormatItem id="Ed">E d</dateFormatItem>
- <dateFormatItem id="Gy">y G</dateFormatItem>
- <dateFormatItem id="GyMMM">MMM y G</dateFormatItem>
- <dateFormatItem id="GyMMMd">d MMM y G</dateFormatItem>
- <dateFormatItem id="GyMMMEd">E d MMM y G</dateFormatItem>
- <dateFormatItem id="h">h a</dateFormatItem>
- <dateFormatItem id="H">H</dateFormatItem>
- <dateFormatItem id="hm">h:mm a</dateFormatItem>
- <dateFormatItem id="Hm">H:mm</dateFormatItem>
- <dateFormatItem id="hms">h:mm:ss a</dateFormatItem>
- <dateFormatItem id="Hms">H:mm:ss</dateFormatItem>
- <dateFormatItem id="M">L</dateFormatItem>
- <dateFormatItem id="Md">M/d</dateFormatItem>
- <dateFormatItem id="MEd">E M/d</dateFormatItem>
- <dateFormatItem id="MMM">LLL</dateFormatItem>
- <dateFormatItem id="MMMd">d LLL</dateFormatItem>
- <dateFormatItem id="MMMEd">E d LLL</dateFormatItem>
- <dateFormatItem id="MMMMd">d LLLL</dateFormatItem>
- <dateFormatItem id="MMMMEd">E d LLLL</dateFormatItem>
- <dateFormatItem id="ms">mm:ss</dateFormatItem>
- <dateFormatItem id="y">y</dateFormatItem>
- <dateFormatItem id="yM">y/M</dateFormatItem>
- <dateFormatItem id="yMEd">E y/M/d</dateFormatItem>
- <dateFormatItem id="yMMM">MMM y</dateFormatItem>
- <dateFormatItem id="yMMMEd">E d MMM y</dateFormatItem>
- <dateFormatItem id="yMMMM">MMMM y</dateFormatItem>
- <dateFormatItem id="yQQQ">QQQ y</dateFormatItem>
- <dateFormatItem id="yQQQQ">QQQQ y</dateFormatItem>
- </availableFormats>
- </dateTimeFormats>
- </calendar>
- <calendar type="persian">
- <months>
- <monthContext type="format">
- <monthWidth type="abbreviated">
- <month type="1">فروردین</month>
- <month type="2">اردیبهشت</month>
- <month type="3">خرداد</month>
- <month type="4">تیر</month>
- <month type="5">مرداد</month>
- <month type="6">شهریور</month>
- <month type="7">مهر</month>
- <month type="8">آبان</month>
- <month type="9">آذر</month>
- <month type="10">دی</month>
- <month type="11">بهمن</month>
- <month type="12">اسفند</month>
- </monthWidth>
- <monthWidth type="narrow">
- <month type="1">ف</month>
- <month type="2">ا</month>
- <month type="3">خ</month>
- <month type="4">ت</month>
- <month type="5">م</month>
- <month type="6">ش</month>
- <month type="7">م</month>
- <month type="8">آ</month>
- <month type="9">آ</month>
- <month type="10">د</month>
- <month type="11">ب</month>
- <month type="12">ا</month>
- </monthWidth>
- <monthWidth type="wide">
- <month type="1">فروردین</month>
- <month type="2">اردیبهشت</month>
- <month type="3">خرداد</month>
- <month type="4">تیر</month>
- <month type="5">مرداد</month>
- <month type="6">شهریور</month>
- <month type="7">مهر</month>
- <month type="8">آبان</month>
- <month type="9">آذر</month>
- <month type="10">دی</month>
- <month type="11">بهمن</month>
- <month type="12">اسفند</month>
- </monthWidth>
- </monthContext>
- <monthContext type="stand-alone">
- <monthWidth type="abbreviated">
- <month type="1">فروردین</month>
- <month type="2">اردیبهشت</month>
- <month type="3">خرداد</month>
- <month type="4">تیر</month>
- <month type="5">مرداد</month>
- <month type="6">شهریور</month>
- <month type="7">مهر</month>
- <month type="8">آبان</month>
- <month type="9">آذر</month>
- <month type="10">دی</month>
- <month type="11">بهمن</month>
- <month type="12">اسفند</month>
- </monthWidth>
- <monthWidth type="narrow">
- <month type="1">ف</month>
- <month type="2">ا</month>
- <month type="3">خ</month>
- <month type="4">ت</month>
- <month type="5">م</month>
- <month type="6">ش</month>
- <month type="7">م</month>
- <month type="8">آ</month>
- <month type="9">آ</month>
- <month type="10">د</month>
- <month type="11">ب</month>
- <month type="12">ا</month>
- </monthWidth>
- <monthWidth type="wide">
- <month type="1">فروردین</month>
- <month type="2">اردیبهشت</month>
- <month type="3">خرداد</month>
- <month type="4">تیر</month>
- <month type="5">مرداد</month>
- <month type="6">شهریور</month>
- <month type="7">مهر</month>
- <month type="8">آبان</month>
- <month type="9">آذر</month>
- <month type="10">دی</month>
- <month type="11">بهمن</month>
- <month type="12">اسفند</month>
- </monthWidth>
- </monthContext>
- </months>
- <eras>
- <eraNames>
- <era type="0">هجری شمسی</era>
- </eraNames>
- <eraAbbr>
- <era type="0">ه.ش.</era>
- </eraAbbr>
- </eras>
- </calendar>
- </calendars>
- <fields>
- <field type="era">
- <displayName>دوره</displayName>
- </field>
- <field type="year">
- <displayName>سال</displayName>
- <relative type="-1">سال گذشته</relative>
- <relative type="0">امسال</relative>
- <relative type="1">سال آینده</relative>
- </field>
- <field type="month">
- <displayName>ماه</displayName>
- <relative type="-1">ماه گذشته</relative>
- <relative type="0">این ماه</relative>
- <relative type="1">ماه آینده</relative>
- </field>
- <field type="week">
- <displayName>هفته</displayName>
- <relative type="-1">هفتهٔ گذشته</relative>
- <relative type="0">این هفته</relative>
- <relative type="1">هفتهٔ آینده</relative>
- </field>
- <field type="day">
- <displayName>روز</displayName>
- <relative type="-2">پریروز</relative>
- <relative type="-1">دیروز</relative>
- <relative type="0">امروز</relative>
- <relative type="1">فردا</relative>
- <relative type="2">پسفردا</relative>
- </field>
- <field type="weekday">
- <displayName>روز هفته</displayName>
- </field>
- <field type="dayperiod">
- <displayName>قبل/بعدازظهر</displayName>
- </field>
- <field type="hour">
- <displayName>ساعت</displayName>
- </field>
- <field type="minute">
- <displayName>دقیقه</displayName>
- </field>
- <field type="second">
- <displayName>ثانیه</displayName>
- </field>
- <field type="zone">
- <displayName>منطقهٔ زمانی</displayName>
- </field>
- </fields>
- <timeZoneNames>
- <hourFormat>+HH:mm;−HH:mm</hourFormat>
- <gmtFormat>GMT{0}</gmtFormat>
- <gmtZeroFormat>GMT</gmtZeroFormat>
- <regionFormat>وقت {0}</regionFormat>
- <fallbackFormat>{1} ({0})</fallbackFormat>
- <fallbackRegionFormat>وقت {1} ({0})</fallbackRegionFormat>
- <zone type="Etc/Unknown">
- <exemplarCity>شهر نامشخص</exemplarCity>
- </zone>
- <zone type="Europe/Andorra">
- <exemplarCity>آندورا</exemplarCity>
- </zone>
- <zone type="Asia/Dubai">
- <exemplarCity>دبی</exemplarCity>
- </zone>
- <zone type="Asia/Kabul">
- <exemplarCity>کابل</exemplarCity>
- </zone>
- <zone type="America/Antigua">
- <exemplarCity>آنتیگوا</exemplarCity>
- </zone>
- <zone type="America/Anguilla">
- <exemplarCity>آنگوئیلا</exemplarCity>
- </zone>
- <zone type="Europe/Tirane">
- <exemplarCity>تیرانا</exemplarCity>
- </zone>
- <zone type="Asia/Yerevan">
- <exemplarCity>ایروان</exemplarCity>
- </zone>
- <zone type="Africa/Luanda">
- <exemplarCity>لواندا</exemplarCity>
- </zone>
- <zone type="Antarctica/Rothera">
- <exemplarCity>روترا</exemplarCity>
- </zone>
- <zone type="Antarctica/Palmer">
- <exemplarCity>پالمر</exemplarCity>
- </zone>
- <zone type="Antarctica/South_Pole">
- <exemplarCity>قطب جنوب</exemplarCity>
- </zone>
- <zone type="Antarctica/Syowa">
- <exemplarCity>شووا</exemplarCity>
- </zone>
- <zone type="Antarctica/Mawson">
- <exemplarCity>ماوسون</exemplarCity>
- </zone>
- <zone type="Antarctica/Davis">
- <exemplarCity>دیویس</exemplarCity>
- </zone>
- <zone type="Antarctica/Vostok">
- <exemplarCity>ووستوک</exemplarCity>
- </zone>
- <zone type="Antarctica/Casey">
- <exemplarCity>کیسی</exemplarCity>
- </zone>
- <zone type="Antarctica/DumontDUrville">
- <exemplarCity>دومون دورویل</exemplarCity>
- </zone>
- <zone type="Antarctica/McMurdo">
- <exemplarCity>مکموردو</exemplarCity>
- </zone>
- <zone type="America/Argentina/Rio_Gallegos">
- <exemplarCity>ریوگالگوس</exemplarCity>
- </zone>
- <zone type="America/Mendoza">
- <exemplarCity>مندوسا</exemplarCity>
- </zone>
- <zone type="America/Argentina/San_Juan">
- <exemplarCity>سنخوان</exemplarCity>
- </zone>
- <zone type="America/Argentina/Ushuaia">
- <exemplarCity>اوشوایا</exemplarCity>
- </zone>
- <zone type="America/Argentina/La_Rioja">
- <exemplarCity>لاریوخا</exemplarCity>
- </zone>
- <zone type="America/Argentina/San_Luis">
- <exemplarCity>سنلوئیس</exemplarCity>
- </zone>
- <zone type="America/Catamarca">
- <exemplarCity>کاتامارکا</exemplarCity>
- </zone>
- <zone type="America/Argentina/Salta">
- <exemplarCity>سالتا</exemplarCity>
- </zone>
- <zone type="America/Jujuy">
- <exemplarCity>خوخوی</exemplarCity>
- </zone>
- <zone type="America/Argentina/Tucuman">
- <exemplarCity>توکومن</exemplarCity>
- </zone>
- <zone type="America/Cordoba">
- <exemplarCity>کوردووا</exemplarCity>
- </zone>
- <zone type="America/Buenos_Aires">
- <exemplarCity>بوئنوسآیرس</exemplarCity>
- </zone>
- <zone type="Pacific/Pago_Pago">
- <exemplarCity>پاگوپاگو</exemplarCity>
- </zone>
- <zone type="Europe/Vienna">
- <exemplarCity>وین</exemplarCity>
- </zone>
- <zone type="Australia/Perth">
- <exemplarCity>پرت</exemplarCity>
- </zone>
- <zone type="Australia/Eucla">
- <exemplarCity draft="contributed">اوکلا</exemplarCity>
- </zone>
- <zone type="Australia/Darwin">
- <exemplarCity>داروین</exemplarCity>
- </zone>
- <zone type="Australia/Adelaide">
- <exemplarCity>آدلاید</exemplarCity>
- </zone>
- <zone type="Australia/Broken_Hill">
- <exemplarCity>بروکنهیل</exemplarCity>
- </zone>
- <zone type="Australia/Currie">
- <exemplarCity draft="contributed">کوری</exemplarCity>
- </zone>
- <zone type="Australia/Melbourne">
- <exemplarCity>ملبورن</exemplarCity>
- </zone>
- <zone type="Australia/Hobart">
- <exemplarCity>هوبارت</exemplarCity>
- </zone>
- <zone type="Australia/Lindeman">
- <exemplarCity>لیندمن</exemplarCity>
- </zone>
- <zone type="Australia/Sydney">
- <exemplarCity>سیدنی</exemplarCity>
- </zone>
- <zone type="Australia/Brisbane">
- <exemplarCity>بریسبین</exemplarCity>
- </zone>
- <zone type="Australia/Lord_Howe">
- <exemplarCity draft="contributed">لردهاو</exemplarCity>
- </zone>
- <zone type="America/Aruba">
- <exemplarCity>اروبا</exemplarCity>
- </zone>
- <zone type="Europe/Mariehamn">
- <exemplarCity>ماریههامن</exemplarCity>
- </zone>
- <zone type="Asia/Baku">
- <exemplarCity>باکو</exemplarCity>
- </zone>
- <zone type="Europe/Sarajevo">
- <exemplarCity>سارایوو</exemplarCity>
- </zone>
- <zone type="America/Barbados">
- <exemplarCity>باربادوس</exemplarCity>
- </zone>
- <zone type="Asia/Dhaka">
- <exemplarCity>داکا</exemplarCity>
- </zone>
- <zone type="Europe/Brussels">
- <exemplarCity>بروکسل</exemplarCity>
- </zone>
- <zone type="Africa/Ouagadougou">
- <exemplarCity>اوآگادوگو</exemplarCity>
- </zone>
- <zone type="Europe/Sofia">
- <exemplarCity>صوفیه</exemplarCity>
- </zone>
- <zone type="Asia/Bahrain">
- <exemplarCity>بحرین</exemplarCity>
- </zone>
- <zone type="Africa/Bujumbura">
- <exemplarCity>بوجومبورا</exemplarCity>
- </zone>
- <zone type="Africa/Porto-Novo">
- <exemplarCity>پورتو نووو</exemplarCity>
- </zone>
- <zone type="America/St_Barthelemy">
- <exemplarCity>سنت بارتلمی</exemplarCity>
- </zone>
- <zone type="Atlantic/Bermuda">
- <exemplarCity>برمودا</exemplarCity>
- </zone>
- <zone type="Asia/Brunei">
- <exemplarCity>برونئی</exemplarCity>
- </zone>
- <zone type="America/La_Paz">
- <exemplarCity>لاپاز</exemplarCity>
- </zone>
- <zone type="America/Eirunepe">
- <exemplarCity draft="contributed">ایرونپه</exemplarCity>
- </zone>
- <zone type="America/Rio_Branco">
- <exemplarCity>ریوبرانکو</exemplarCity>
- </zone>
- <zone type="America/Porto_Velho">
- <exemplarCity>پورتوولیو</exemplarCity>
- </zone>
- <zone type="America/Boa_Vista">
- <exemplarCity>بوئاویشتا</exemplarCity>
- </zone>
- <zone type="America/Manaus">
- <exemplarCity>ماناوس</exemplarCity>
- </zone>
- <zone type="America/Cuiaba">
- <exemplarCity>کویاوا</exemplarCity>
- </zone>
- <zone type="America/Santarem">
- <exemplarCity>سنتارم</exemplarCity>
- </zone>
- <zone type="America/Campo_Grande">
- <exemplarCity>کمپو گرانده</exemplarCity>
- </zone>
- <zone type="America/Belem">
- <exemplarCity>بلم</exemplarCity>
- </zone>
- <zone type="America/Araguaina">
- <exemplarCity>آراگواینا</exemplarCity>
- </zone>
- <zone type="America/Sao_Paulo">
- <exemplarCity>سائوپائولو</exemplarCity>
- </zone>
- <zone type="America/Bahia">
- <exemplarCity>بایا</exemplarCity>
- </zone>
- <zone type="America/Fortaleza">
- <exemplarCity>فورتالزا</exemplarCity>
- </zone>
- <zone type="America/Maceio">
- <exemplarCity>ماسیو</exemplarCity>
- </zone>
- <zone type="America/Recife">
- <exemplarCity>ریسیفی</exemplarCity>
- </zone>
- <zone type="America/Noronha">
- <exemplarCity>نورونیا</exemplarCity>
- </zone>
- <zone type="America/Nassau">
- <exemplarCity>ناسائو</exemplarCity>
- </zone>
- <zone type="Asia/Thimphu">
- <exemplarCity>تیمفو</exemplarCity>
- </zone>
- <zone type="Africa/Gaborone">
- <exemplarCity>گابورون</exemplarCity>
- </zone>
- <zone type="Europe/Minsk">
- <exemplarCity>مینسک</exemplarCity>
- </zone>
- <zone type="America/Belize">
- <exemplarCity>بلیز</exemplarCity>
- </zone>
- <zone type="America/Dawson">
- <exemplarCity>داوسن</exemplarCity>
- </zone>
- <zone type="America/Whitehorse">
- <exemplarCity>وایتهورس</exemplarCity>
- </zone>
- <zone type="America/Inuvik">
- <exemplarCity>اینوویک</exemplarCity>
- </zone>
- <zone type="America/Vancouver">
- <exemplarCity>ونکوور</exemplarCity>
- </zone>
- <zone type="America/Dawson_Creek">
- <exemplarCity>داوسن کریک</exemplarCity>
- </zone>
- <zone type="America/Yellowknife">
- <exemplarCity>یلونایف</exemplarCity>
- </zone>
- <zone type="America/Edmonton">
- <exemplarCity>ادمونتون</exemplarCity>
- </zone>
- <zone type="America/Swift_Current">
- <exemplarCity>سوئیفتکرنت</exemplarCity>
- </zone>
- <zone type="America/Cambridge_Bay">
- <exemplarCity>کمبریجبی</exemplarCity>
- </zone>
- <zone type="America/Regina">
- <exemplarCity>رجاینا</exemplarCity>
- </zone>
- <zone type="America/Winnipeg">
- <exemplarCity>وینیپگ</exemplarCity>
- </zone>
- <zone type="America/Resolute">
- <exemplarCity>رزولوت</exemplarCity>
- </zone>
- <zone type="America/Rainy_River">
- <exemplarCity>رینیریور</exemplarCity>
- </zone>
- <zone type="America/Rankin_Inlet">
- <exemplarCity>خلیجک رنکین</exemplarCity>
- </zone>
- <zone type="America/Coral_Harbour">
- <exemplarCity>اتکوکان</exemplarCity>
- </zone>
- <zone type="America/Thunder_Bay">
- <exemplarCity>تاندربی</exemplarCity>
- </zone>
- <zone type="America/Nipigon">
- <exemplarCity>نیپیگان</exemplarCity>
- </zone>
- <zone type="America/Toronto">
- <exemplarCity>تورنتو</exemplarCity>
- </zone>
- <zone type="America/Montreal">
- <exemplarCity>مونرئال</exemplarCity>
- </zone>
- <zone type="America/Iqaluit">
- <exemplarCity>ایکلوئت</exemplarCity>
- </zone>
- <zone type="America/Pangnirtung">
- <exemplarCity>پانگنیرتونگ</exemplarCity>
- </zone>
- <zone type="America/Moncton">
- <exemplarCity>مانکتون</exemplarCity>
- </zone>
- <zone type="America/Halifax">
- <exemplarCity>هلیفکس</exemplarCity>
- </zone>
- <zone type="America/Goose_Bay">
- <exemplarCity>گوسبی</exemplarCity>
- </zone>
- <zone type="America/Glace_Bay">
- <exemplarCity>گلیسبی</exemplarCity>
- </zone>
- <zone type="America/Blanc-Sablon">
- <exemplarCity>بلان‐سابلون</exemplarCity>
- </zone>
- <zone type="America/St_Johns">
- <exemplarCity>سنت جان</exemplarCity>
- </zone>
- <zone type="Indian/Cocos">
- <exemplarCity>کوکوس</exemplarCity>
- </zone>
- <zone type="Africa/Kinshasa">
- <exemplarCity>کینشاسا</exemplarCity>
- </zone>
- <zone type="Africa/Lubumbashi">
- <exemplarCity>لوبومباشی</exemplarCity>
- </zone>
- <zone type="Africa/Bangui">
- <exemplarCity>بانگی</exemplarCity>
- </zone>
- <zone type="Africa/Brazzaville">
- <exemplarCity>برازویل</exemplarCity>
- </zone>
- <zone type="Europe/Zurich">
- <exemplarCity>زوریخ</exemplarCity>
- </zone>
- <zone type="Africa/Abidjan">
- <exemplarCity>آبیجان</exemplarCity>
- </zone>
- <zone type="Pacific/Rarotonga">
- <exemplarCity>راروتونگا</exemplarCity>
- </zone>
- <zone type="Pacific/Easter">
- <exemplarCity>ایستر</exemplarCity>
- </zone>
- <zone type="America/Santiago">
- <exemplarCity>سانتیاگو</exemplarCity>
- </zone>
- <zone type="Africa/Douala">
- <exemplarCity>دوآلا</exemplarCity>
- </zone>
- <zone type="Asia/Kashgar">
- <exemplarCity>کاشغر</exemplarCity>
- </zone>
- <zone type="Asia/Urumqi">
- <exemplarCity>ارومچی</exemplarCity>
- </zone>
- <zone type="Asia/Chongqing">
- <exemplarCity>چونگکینگ</exemplarCity>
- </zone>
- <zone type="Asia/Shanghai">
- <exemplarCity>شانگهای</exemplarCity>
- </zone>
- <zone type="Asia/Harbin">
- <exemplarCity>هاربین</exemplarCity>
- </zone>
- <zone type="America/Bogota">
- <exemplarCity>بوگوتا</exemplarCity>
- </zone>
- <zone type="America/Costa_Rica">
- <exemplarCity>کاستاریکا</exemplarCity>
- </zone>
- <zone type="America/Havana">
- <exemplarCity>هاوانا</exemplarCity>
- </zone>
- <zone type="Atlantic/Cape_Verde">
- <exemplarCity>کیپورد</exemplarCity>
- </zone>
- <zone type="America/Curacao">
- <exemplarCity>کوراسائو</exemplarCity>
- </zone>
- <zone type="Indian/Christmas">
- <exemplarCity>کریسمس</exemplarCity>
- </zone>
- <zone type="Asia/Nicosia">
- <exemplarCity>نیکوزیا</exemplarCity>
- </zone>
- <zone type="Europe/Prague">
- <exemplarCity>پراگ</exemplarCity>
- </zone>
- <zone type="Europe/Berlin">
- <exemplarCity>برلین</exemplarCity>
- </zone>
- <zone type="Africa/Djibouti">
- <exemplarCity>جیبوتی</exemplarCity>
- </zone>
- <zone type="Europe/Copenhagen">
- <exemplarCity>کپنهاگ</exemplarCity>
- </zone>
- <zone type="America/Dominica">
- <exemplarCity>دومینیکا</exemplarCity>
- </zone>
- <zone type="America/Santo_Domingo">
- <exemplarCity>سانتو دومینگو</exemplarCity>
- </zone>
- <zone type="Africa/Algiers">
- <exemplarCity>الجزیره</exemplarCity>
- </zone>
- <zone type="Pacific/Galapagos">
- <exemplarCity>گالاپاگوس</exemplarCity>
- </zone>
- <zone type="America/Guayaquil">
- <exemplarCity>گوایاکیل</exemplarCity>
- </zone>
- <zone type="Europe/Tallinn">
- <exemplarCity>تالین</exemplarCity>
- </zone>
- <zone type="Africa/Cairo">
- <exemplarCity>قاهره</exemplarCity>
- </zone>
- <zone type="Africa/El_Aaiun">
- <exemplarCity>العیون</exemplarCity>
- </zone>
- <zone type="Africa/Asmera">
- <exemplarCity>اسمره</exemplarCity>
- </zone>
- <zone type="Atlantic/Canary">
- <exemplarCity>قناری</exemplarCity>
- </zone>
- <zone type="Africa/Ceuta">
- <exemplarCity>سبته</exemplarCity>
- </zone>
- <zone type="Europe/Madrid">
- <exemplarCity>مادرید</exemplarCity>
- </zone>
- <zone type="Africa/Addis_Ababa">
- <exemplarCity>آدیس آبابا</exemplarCity>
- </zone>
- <zone type="Europe/Helsinki">
- <exemplarCity>هلسینکی</exemplarCity>
- </zone>
- <zone type="Pacific/Fiji">
- <exemplarCity>فیجی</exemplarCity>
- </zone>
- <zone type="Atlantic/Stanley">
- <exemplarCity>استانلی</exemplarCity>
- </zone>
- <zone type="Pacific/Truk">
- <exemplarCity>چوک</exemplarCity>
- </zone>
- <zone type="Pacific/Ponape">
- <exemplarCity>پانپی</exemplarCity>
- </zone>
- <zone type="Pacific/Kosrae">
- <exemplarCity>کوسرای</exemplarCity>
- </zone>
- <zone type="Atlantic/Faeroe">
- <exemplarCity>فارو</exemplarCity>
- </zone>
- <zone type="Europe/Paris">
- <exemplarCity>پاریس</exemplarCity>
- </zone>
- <zone type="Africa/Libreville">
- <exemplarCity>لیبرویل</exemplarCity>
- </zone>
- <zone type="Europe/London">
- <long>
- <daylight>وقت تابستانی بریتانیا</daylight>
- </long>
- <exemplarCity>لندن</exemplarCity>
- </zone>
- <zone type="America/Grenada">
- <exemplarCity>گرانادا</exemplarCity>
- </zone>
- <zone type="Asia/Tbilisi">
- <exemplarCity>تفلیس</exemplarCity>
- </zone>
- <zone type="America/Cayenne">
- <exemplarCity>کاین</exemplarCity>
- </zone>
- <zone type="Europe/Guernsey">
- <exemplarCity>گرنزی</exemplarCity>
- </zone>
- <zone type="Africa/Accra">
- <exemplarCity>اکرا</exemplarCity>
- </zone>
- <zone type="Europe/Gibraltar">
- <exemplarCity>جبلالطارق</exemplarCity>
- </zone>
- <zone type="America/Thule">
- <exemplarCity draft="contributed">تول</exemplarCity>
- </zone>
- <zone type="America/Godthab">
- <exemplarCity>گودهوب</exemplarCity>
- </zone>
- <zone type="America/Scoresbysund">
- <exemplarCity>اسکورسبیسوند</exemplarCity>
- </zone>
- <zone type="America/Danmarkshavn">
- <exemplarCity>دانمارکشاون</exemplarCity>
- </zone>
- <zone type="Africa/Banjul">
- <exemplarCity>بانجول</exemplarCity>
- </zone>
- <zone type="Africa/Conakry">
- <exemplarCity>کوناکری</exemplarCity>
- </zone>
- <zone type="America/Guadeloupe">
- <exemplarCity>گوادلوپ</exemplarCity>
- </zone>
- <zone type="Africa/Malabo">
- <exemplarCity>مالابو</exemplarCity>
- </zone>
- <zone type="Europe/Athens">
- <exemplarCity>آتن</exemplarCity>
- </zone>
- <zone type="Atlantic/South_Georgia">
- <exemplarCity>جورجیای جنوبی</exemplarCity>
- </zone>
- <zone type="America/Guatemala">
- <exemplarCity>گواتمالا</exemplarCity>
- </zone>
- <zone type="Pacific/Guam">
- <exemplarCity>گوام</exemplarCity>
- </zone>
- <zone type="Africa/Bissau">
- <exemplarCity>بیسائو</exemplarCity>
- </zone>
- <zone type="America/Guyana">
- <exemplarCity>گویان</exemplarCity>
- </zone>
- <zone type="Asia/Hong_Kong">
- <exemplarCity>هنگکنگ</exemplarCity>
- </zone>
- <zone type="America/Tegucigalpa">
- <exemplarCity>تگوسیگالپا</exemplarCity>
- </zone>
- <zone type="Europe/Zagreb">
- <exemplarCity>زاگرب</exemplarCity>
- </zone>
- <zone type="America/Port-au-Prince">
- <exemplarCity>پورتوپرنس</exemplarCity>
- </zone>
- <zone type="Europe/Budapest">
- <exemplarCity>بوداپست</exemplarCity>
- </zone>
- <zone type="Asia/Jakarta">
- <exemplarCity>جاکارتا</exemplarCity>
- </zone>
- <zone type="Asia/Pontianak">
- <exemplarCity>پونتیاناک</exemplarCity>
- </zone>
- <zone type="Asia/Makassar">
- <exemplarCity>ماکاسار</exemplarCity>
- </zone>
- <zone type="Asia/Jayapura">
- <exemplarCity>جایاپورا</exemplarCity>
- </zone>
- <zone type="Europe/Dublin">
- <long>
- <daylight>وقت تابستانی ایرلند</daylight>
- </long>
- <exemplarCity>دوبلین</exemplarCity>
- </zone>
- <zone type="Asia/Jerusalem">
- <exemplarCity>اورشلیم</exemplarCity>
- </zone>
- <zone type="Europe/Isle_of_Man">
- <exemplarCity>جزیرهٔ من</exemplarCity>
- </zone>
- <zone type="Asia/Calcutta">
- <exemplarCity>کلکته</exemplarCity>
- </zone>
- <zone type="Indian/Chagos">
- <exemplarCity>شاگوس</exemplarCity>
- </zone>
- <zone type="Asia/Baghdad">
- <exemplarCity>بغداد</exemplarCity>
- </zone>
- <zone type="Asia/Tehran">
- <exemplarCity>تهران</exemplarCity>
- </zone>
- <zone type="Atlantic/Reykjavik">
- <exemplarCity>ریکیاویک</exemplarCity>
- </zone>
- <zone type="Europe/Rome">
- <exemplarCity>رم</exemplarCity>
- </zone>
- <zone type="Europe/Jersey">
- <exemplarCity>جرزی</exemplarCity>
- </zone>
- <zone type="America/Jamaica">
- <exemplarCity>جامائیکا</exemplarCity>
- </zone>
- <zone type="Asia/Amman">
- <exemplarCity>عمّان</exemplarCity>
- </zone>
- <zone type="Asia/Tokyo">
- <exemplarCity>توکیو</exemplarCity>
- </zone>
- <zone type="Africa/Nairobi">
- <exemplarCity>نایروبی</exemplarCity>
- </zone>
- <zone type="Asia/Bishkek">
- <exemplarCity>بیشکک</exemplarCity>
- </zone>
- <zone type="Asia/Phnom_Penh">
- <exemplarCity>پنومپن</exemplarCity>
- </zone>
- <zone type="Pacific/Enderbury">
- <exemplarCity>اندربری</exemplarCity>
- </zone>
- <zone type="Pacific/Kiritimati">
- <exemplarCity>کریتیماتی</exemplarCity>
- </zone>
- <zone type="Pacific/Tarawa">
- <exemplarCity>تاراوا</exemplarCity>
- </zone>
- <zone type="Indian/Comoro">
- <exemplarCity>کومورو</exemplarCity>
- </zone>
- <zone type="America/St_Kitts">
- <exemplarCity>سنت کیتس</exemplarCity>
- </zone>
- <zone type="Asia/Pyongyang">
- <exemplarCity>پیونگیانگ</exemplarCity>
- </zone>
- <zone type="Asia/Seoul">
- <exemplarCity>سئول</exemplarCity>
- </zone>
- <zone type="Asia/Kuwait">
- <exemplarCity>کویت</exemplarCity>
- </zone>
- <zone type="America/Cayman">
- <exemplarCity>کیمن</exemplarCity>
- </zone>
- <zone type="Asia/Aqtau">
- <exemplarCity>آقتاو</exemplarCity>
- </zone>
- <zone type="Asia/Oral">
- <exemplarCity>اورال</exemplarCity>
- </zone>
- <zone type="Asia/Aqtobe">
- <exemplarCity>آقتوبه</exemplarCity>
- </zone>
- <zone type="Asia/Qyzylorda">
- <exemplarCity>قیزیلاوردا</exemplarCity>
- </zone>
- <zone type="Asia/Almaty">
- <exemplarCity>آلماتی</exemplarCity>
- </zone>
- <zone type="Asia/Vientiane">
- <exemplarCity>وینتیان</exemplarCity>
- </zone>
- <zone type="Asia/Beirut">
- <exemplarCity>بیروت</exemplarCity>
- </zone>
- <zone type="America/St_Lucia">
- <exemplarCity>سنت لوسیا</exemplarCity>
- </zone>
- <zone type="Europe/Vaduz">
- <exemplarCity>فادوتس</exemplarCity>
- </zone>
- <zone type="Asia/Colombo">
- <exemplarCity>کلمبو</exemplarCity>
- </zone>
- <zone type="Africa/Monrovia">
- <exemplarCity>مونروویا</exemplarCity>
- </zone>
- <zone type="Africa/Maseru">
- <exemplarCity>ماسرو</exemplarCity>
- </zone>
- <zone type="Europe/Vilnius">
- <exemplarCity>ویلنیوس</exemplarCity>
- </zone>
- <zone type="Europe/Luxembourg">
- <exemplarCity>لوکزامبورگ</exemplarCity>
- </zone>
- <zone type="Europe/Riga">
- <exemplarCity>ریگا</exemplarCity>
- </zone>
- <zone type="Africa/Tripoli">
- <exemplarCity>طرابلس</exemplarCity>
- </zone>
- <zone type="Africa/Casablanca">
- <exemplarCity>کازابلانکا</exemplarCity>
- </zone>
- <zone type="Europe/Monaco">
- <exemplarCity>موناکو</exemplarCity>
- </zone>
- <zone type="Europe/Chisinau">
- <exemplarCity>کیشیناو</exemplarCity>
- </zone>
- <zone type="Europe/Podgorica">
- <exemplarCity>پادگاریتسا</exemplarCity>
- </zone>
- <zone type="America/Marigot">
- <exemplarCity>ماریگات</exemplarCity>
- </zone>
- <zone type="Indian/Antananarivo">
- <exemplarCity>آنتاناناریوو</exemplarCity>
- </zone>
- <zone type="Pacific/Kwajalein">
- <exemplarCity>کواجیلین</exemplarCity>
- </zone>
- <zone type="Pacific/Majuro">
- <exemplarCity draft="contributed">ماجورو</exemplarCity>
- </zone>
- <zone type="Europe/Skopje">
- <exemplarCity>اسکوپیه</exemplarCity>
- </zone>
- <zone type="Africa/Bamako">
- <exemplarCity>باماکو</exemplarCity>
- </zone>
- <zone type="Asia/Rangoon">
- <exemplarCity>یانگون</exemplarCity>
- </zone>
- <zone type="Asia/Hovd">
- <exemplarCity>خوود</exemplarCity>
- </zone>
- <zone type="Asia/Ulaanbaatar">
- <exemplarCity>اولانباتور</exemplarCity>
- </zone>
- <zone type="Asia/Choibalsan">
- <exemplarCity>چویبالسان</exemplarCity>
- </zone>
- <zone type="Asia/Macau">
- <exemplarCity>ماکائو</exemplarCity>
- </zone>
- <zone type="Pacific/Saipan">
- <exemplarCity>سایپان</exemplarCity>
- </zone>
- <zone type="America/Martinique">
- <exemplarCity>مارتینیک</exemplarCity>
- </zone>
- <zone type="Africa/Nouakchott">
- <exemplarCity>نوآکشوت</exemplarCity>
- </zone>
- <zone type="America/Montserrat">
- <exemplarCity>مونتسرات</exemplarCity>
- </zone>
- <zone type="Europe/Malta">
- <exemplarCity>مالت</exemplarCity>
- </zone>
- <zone type="Indian/Mauritius">
- <exemplarCity>موریس</exemplarCity>
- </zone>
- <zone type="Indian/Maldives">
- <exemplarCity>مالدیو</exemplarCity>
- </zone>
- <zone type="Africa/Blantyre">
- <exemplarCity>بلانتیره</exemplarCity>
- </zone>
- <zone type="America/Tijuana">
- <exemplarCity>تیخوانا</exemplarCity>
- </zone>
- <zone type="America/Hermosillo">
- <exemplarCity>ارموسیو</exemplarCity>
- </zone>
- <zone type="America/Mazatlan">
- <exemplarCity>ماساتلان</exemplarCity>
- </zone>
- <zone type="America/Chihuahua">
- <exemplarCity>چیئوائوا</exemplarCity>
- </zone>
- <zone type="America/Monterrey">
- <exemplarCity>مونتری</exemplarCity>
- </zone>
- <zone type="America/Mexico_City">
- <exemplarCity>مکزیکوسیتی</exemplarCity>
- </zone>
- <zone type="America/Merida">
- <exemplarCity>مریدا</exemplarCity>
- </zone>
- <zone type="America/Cancun">
- <exemplarCity>کانکون</exemplarCity>
- </zone>
- <zone type="Asia/Kuala_Lumpur">
- <exemplarCity>کوالالامپور</exemplarCity>
- </zone>
- <zone type="Asia/Kuching">
- <exemplarCity>کوچینگ</exemplarCity>
- </zone>
- <zone type="Africa/Maputo">
- <exemplarCity>ماپوتو</exemplarCity>
- </zone>
- <zone type="Africa/Windhoek">
- <exemplarCity>ویندهوک</exemplarCity>
- </zone>
- <zone type="Pacific/Noumea">
- <exemplarCity>نومئا</exemplarCity>
- </zone>
- <zone type="Africa/Niamey">
- <exemplarCity>نیامی</exemplarCity>
- </zone>
- <zone type="Pacific/Norfolk">
- <exemplarCity>نورفولک</exemplarCity>
- </zone>
- <zone type="Africa/Lagos">
- <exemplarCity>لاگوس</exemplarCity>
- </zone>
- <zone type="America/Managua">
- <exemplarCity>ماناگوا</exemplarCity>
- </zone>
- <zone type="Europe/Amsterdam">
- <exemplarCity>آمستردام</exemplarCity>
- </zone>
- <zone type="Europe/Oslo">
- <exemplarCity>اسلو</exemplarCity>
- </zone>
- <zone type="Asia/Katmandu">
- <exemplarCity>کاتماندو</exemplarCity>
- </zone>
- <zone type="Pacific/Nauru">
- <exemplarCity>نائورو</exemplarCity>
- </zone>
- <zone type="Pacific/Niue">
- <exemplarCity>نیوئه</exemplarCity>
- </zone>
- <zone type="Pacific/Chatham">
- <exemplarCity>چتم</exemplarCity>
- </zone>
- <zone type="Pacific/Auckland">
- <exemplarCity>اوکلند</exemplarCity>
- </zone>
- <zone type="Asia/Muscat">
- <exemplarCity>مسقط</exemplarCity>
- </zone>
- <zone type="America/Panama">
- <exemplarCity>پاناما</exemplarCity>
- </zone>
- <zone type="America/Lima">
- <exemplarCity>لیما</exemplarCity>
- </zone>
- <zone type="Pacific/Tahiti">
- <exemplarCity>تاهیتی</exemplarCity>
- </zone>
- <zone type="Pacific/Marquesas">
- <exemplarCity>مارکوزه</exemplarCity>
- </zone>
- <zone type="Pacific/Gambier">
- <exemplarCity draft="contributed">گامبیر</exemplarCity>
- </zone>
- <zone type="Pacific/Port_Moresby">
- <exemplarCity>پورتمورزبی</exemplarCity>
- </zone>
- <zone type="Asia/Manila">
- <exemplarCity>مانیل</exemplarCity>
- </zone>
- <zone type="Asia/Karachi">
- <exemplarCity>کراچی</exemplarCity>
- </zone>
- <zone type="Europe/Warsaw">
- <exemplarCity>ورشو</exemplarCity>
- </zone>
- <zone type="America/Miquelon">
- <exemplarCity>میکلون</exemplarCity>
- </zone>
- <zone type="Pacific/Pitcairn">
- <exemplarCity>پیتکرن</exemplarCity>
- </zone>
- <zone type="America/Puerto_Rico">
- <exemplarCity>پورتوریکو</exemplarCity>
- </zone>
- <zone type="Asia/Gaza">
- <exemplarCity>غزه</exemplarCity>
- </zone>
- <zone type="Atlantic/Azores">
- <exemplarCity>آزور</exemplarCity>
- </zone>
- <zone type="Atlantic/Madeira">
- <exemplarCity>مادیرا</exemplarCity>
- </zone>
- <zone type="Europe/Lisbon">
- <exemplarCity>لیسبون</exemplarCity>
- </zone>
- <zone type="Pacific/Palau">
- <exemplarCity>پالائو</exemplarCity>
- </zone>
- <zone type="America/Asuncion">
- <exemplarCity>آسونسیون</exemplarCity>
- </zone>
- <zone type="Asia/Qatar">
- <exemplarCity>قطر</exemplarCity>
- </zone>
- <zone type="Indian/Reunion">
- <exemplarCity>رئونیون</exemplarCity>
- </zone>
- <zone type="Europe/Bucharest">
- <exemplarCity>بخارست</exemplarCity>
- </zone>
- <zone type="Europe/Belgrade">
- <exemplarCity>بلگراد</exemplarCity>
- </zone>
- <zone type="Europe/Kaliningrad">
- <exemplarCity>کالینینگراد</exemplarCity>
- </zone>
- <zone type="Europe/Moscow">
- <exemplarCity>مسکو</exemplarCity>
- </zone>
- <zone type="Europe/Volgograd">
- <exemplarCity>ولگاگراد</exemplarCity>
- </zone>
- <zone type="Europe/Samara">
- <exemplarCity>سامارا</exemplarCity>
- </zone>
- <zone type="Asia/Yekaterinburg">
- <exemplarCity>یکاترینبرگ</exemplarCity>
- </zone>
- <zone type="Asia/Omsk">
- <exemplarCity>اومسک</exemplarCity>
- </zone>
- <zone type="Asia/Novosibirsk">
- <exemplarCity>نووسیبیریسک</exemplarCity>
- </zone>
- <zone type="Asia/Krasnoyarsk">
- <exemplarCity>کراسنویارسک</exemplarCity>
- </zone>
- <zone type="Asia/Irkutsk">
- <exemplarCity>ایرکوتسک</exemplarCity>
- </zone>
- <zone type="Asia/Yakutsk">
- <exemplarCity>یاکوتسک</exemplarCity>
- </zone>
- <zone type="Asia/Vladivostok">
- <exemplarCity>ولادیوستوک</exemplarCity>
- </zone>
- <zone type="Asia/Sakhalin">
- <exemplarCity>ساخالین</exemplarCity>
- </zone>
- <zone type="Asia/Magadan">
- <exemplarCity>ماگادان</exemplarCity>
- </zone>
- <zone type="Asia/Kamchatka">
- <exemplarCity>کامچاتکا</exemplarCity>
- </zone>
- <zone type="Asia/Anadyr">
- <exemplarCity>آنادیر</exemplarCity>
- </zone>
- <zone type="Africa/Kigali">
- <exemplarCity>کیگالی</exemplarCity>
- </zone>
- <zone type="Asia/Riyadh">
- <exemplarCity>ریاض</exemplarCity>
- </zone>
- <zone type="Pacific/Guadalcanal">
- <exemplarCity>گوادالکانال</exemplarCity>
- </zone>
- <zone type="Indian/Mahe">
- <exemplarCity>ماهه</exemplarCity>
- </zone>
- <zone type="Africa/Khartoum">
- <exemplarCity>خارطوم</exemplarCity>
- </zone>
- <zone type="Europe/Stockholm">
- <exemplarCity>استکهلم</exemplarCity>
- </zone>
- <zone type="Asia/Singapore">
- <exemplarCity>سنگاپور</exemplarCity>
- </zone>
- <zone type="Atlantic/St_Helena">
- <exemplarCity>سنت هلنا</exemplarCity>
- </zone>
- <zone type="Europe/Ljubljana">
- <exemplarCity>لیوبلیانا</exemplarCity>
- </zone>
- <zone type="Arctic/Longyearbyen">
- <exemplarCity>لانگیربین</exemplarCity>
- </zone>
- <zone type="Europe/Bratislava">
- <exemplarCity>براتیسلاوا</exemplarCity>
- </zone>
- <zone type="Africa/Freetown">
- <exemplarCity>فریتاون</exemplarCity>
- </zone>
- <zone type="Europe/San_Marino">
- <exemplarCity>سانمارینو</exemplarCity>
- </zone>
- <zone type="Africa/Dakar">
- <exemplarCity>داکار</exemplarCity>
- </zone>
- <zone type="Africa/Mogadishu">
- <exemplarCity>موگادیشو</exemplarCity>
- </zone>
- <zone type="America/Paramaribo">
- <exemplarCity>پاراماریبو</exemplarCity>
- </zone>
- <zone type="Africa/Sao_Tome">
- <exemplarCity>سائوتومه</exemplarCity>
- </zone>
- <zone type="America/El_Salvador">
- <exemplarCity>السالوادور</exemplarCity>
- </zone>
- <zone type="America/Lower_Princes">
- <exemplarCity>بخش شاهزادهنشین پایین</exemplarCity>
- </zone>
- <zone type="Asia/Damascus">
- <exemplarCity>دمشق</exemplarCity>
- </zone>
- <zone type="Africa/Mbabane">
- <exemplarCity>مبابانه</exemplarCity>
- </zone>
- <zone type="America/Grand_Turk">
- <exemplarCity>گراند تورک</exemplarCity>
- </zone>
- <zone type="Africa/Ndjamena">
- <exemplarCity>انجامنا</exemplarCity>
- </zone>
- <zone type="Indian/Kerguelen">
- <exemplarCity>کرگولن</exemplarCity>
- </zone>
- <zone type="Africa/Lome">
- <exemplarCity>لومه</exemplarCity>
- </zone>
- <zone type="Asia/Bangkok">
- <exemplarCity>بانکوک</exemplarCity>
- </zone>
- <zone type="Asia/Dushanbe">
- <exemplarCity>دوشنبه</exemplarCity>
- </zone>
- <zone type="Pacific/Fakaofo">
- <exemplarCity>فاکائوفو</exemplarCity>
- </zone>
- <zone type="Asia/Dili">
- <exemplarCity>دیلی</exemplarCity>
- </zone>
- <zone type="Asia/Ashgabat">
- <exemplarCity>عشقآباد</exemplarCity>
- </zone>
- <zone type="Africa/Tunis">
- <exemplarCity>شهر تونس</exemplarCity>
- </zone>
- <zone type="Pacific/Tongatapu">
- <exemplarCity>تونگاتاپو</exemplarCity>
- </zone>
- <zone type="Europe/Istanbul">
- <exemplarCity>استانبول</exemplarCity>
- </zone>
- <zone type="America/Port_of_Spain">
- <exemplarCity>پورتآواسپین</exemplarCity>
- </zone>
- <zone type="Pacific/Funafuti">
- <exemplarCity>فونافوتی</exemplarCity>
- </zone>
- <zone type="Asia/Taipei">
- <exemplarCity>تایپه</exemplarCity>
- </zone>
- <zone type="Africa/Dar_es_Salaam">
- <exemplarCity>دارالسلام</exemplarCity>
- </zone>
- <zone type="Europe/Uzhgorod">
- <exemplarCity>اوژگورود</exemplarCity>
- </zone>
- <zone type="Europe/Kiev">
- <exemplarCity>کیف</exemplarCity>
- </zone>
- <zone type="Europe/Simferopol">
- <exemplarCity>سیمفروپل</exemplarCity>
- </zone>
- <zone type="Europe/Zaporozhye">
- <exemplarCity>زاپوروژیا</exemplarCity>
- </zone>
- <zone type="Africa/Kampala">
- <exemplarCity>کامپالا</exemplarCity>
- </zone>
- <zone type="Pacific/Midway">
- <exemplarCity>میدوی</exemplarCity>
- </zone>
- <zone type="Pacific/Johnston">
- <exemplarCity>جانستون</exemplarCity>
- </zone>
- <zone type="Pacific/Wake">
- <exemplarCity>ویک</exemplarCity>
- </zone>
- <zone type="America/Adak">
- <exemplarCity>ایدک</exemplarCity>
- </zone>
- <zone type="America/Nome">
- <exemplarCity>نوم</exemplarCity>
- </zone>
- <zone type="Pacific/Honolulu">
- <exemplarCity>هونولولو</exemplarCity>
- </zone>
- <zone type="America/Anchorage">
- <exemplarCity>انکریج</exemplarCity>
- </zone>
- <zone type="America/Yakutat">
- <exemplarCity>یاکوتات</exemplarCity>
- </zone>
- <zone type="America/Juneau">
- <exemplarCity>جونو</exemplarCity>
- </zone>
- <zone type="America/Los_Angeles">
- <exemplarCity>لوسآنجلس</exemplarCity>
- </zone>
- <zone type="America/Boise">
- <exemplarCity>بویسی</exemplarCity>
- </zone>
- <zone type="America/Phoenix">
- <exemplarCity>فینکس</exemplarCity>
- </zone>
- <zone type="America/Shiprock">
- <exemplarCity>شیپراک</exemplarCity>
- </zone>
- <zone type="America/Denver">
- <exemplarCity>دنور</exemplarCity>
- </zone>
- <zone type="America/North_Dakota/Beulah">
- <exemplarCity>بیولا، داکوتای شمالی</exemplarCity>
- </zone>
- <zone type="America/North_Dakota/New_Salem">
- <exemplarCity>نیوسالم، داکوتای شمالی</exemplarCity>
- </zone>
- <zone type="America/North_Dakota/Center">
- <exemplarCity>سنتر، داکوتای شمالی</exemplarCity>
- </zone>
- <zone type="America/Chicago">
- <exemplarCity>شیکاگو</exemplarCity>
- </zone>
- <zone type="America/Menominee">
- <exemplarCity>منامینی</exemplarCity>
- </zone>
- <zone type="America/Indiana/Vincennes">
- <exemplarCity>وینسنس، اندیانا</exemplarCity>
- </zone>
- <zone type="America/Indiana/Petersburg">
- <exemplarCity>پیترزبرگ، ایندیانا</exemplarCity>
- </zone>
- <zone type="America/Indiana/Tell_City">
- <exemplarCity>تلسیتی، ایندیانا</exemplarCity>
- </zone>
- <zone type="America/Indiana/Knox">
- <exemplarCity>ناکس، ایندیانا</exemplarCity>
- </zone>
- <zone type="America/Indiana/Winamac">
- <exemplarCity>ویناماک، ایندیانا</exemplarCity>
- </zone>
- <zone type="America/Indiana/Marengo">
- <exemplarCity>مارنگو، ایندیانا</exemplarCity>
- </zone>
- <zone type="America/Indianapolis">
- <exemplarCity>ایندیاناپولیس</exemplarCity>
- </zone>
- <zone type="America/Louisville">
- <exemplarCity>لوئیزویل</exemplarCity>
- </zone>
- <zone type="America/Indiana/Vevay">
- <exemplarCity>ویوی، ایندیانا</exemplarCity>
- </zone>
- <zone type="America/Kentucky/Monticello">
- <exemplarCity>مانتیسلو، کنتاکی</exemplarCity>
- </zone>
- <zone type="America/Detroit">
- <exemplarCity>دترویت</exemplarCity>
- </zone>
- <zone type="America/New_York">
- <exemplarCity>نیویورک</exemplarCity>
- </zone>
- <zone type="America/Montevideo">
- <exemplarCity>مونتهویدئو</exemplarCity>
- </zone>
- <zone type="Asia/Samarkand">
- <exemplarCity>سمرقند</exemplarCity>
- </zone>
- <zone type="Asia/Tashkent">
- <exemplarCity>تاشکند</exemplarCity>
- </zone>
- <zone type="Europe/Vatican">
- <exemplarCity>واتیکان</exemplarCity>
- </zone>
- <zone type="America/St_Vincent">
- <exemplarCity>سنت وینسنت</exemplarCity>
- </zone>
- <zone type="America/Caracas">
- <exemplarCity>کاراکاس</exemplarCity>
- </zone>
- <zone type="America/Tortola">
- <exemplarCity>تورتولا</exemplarCity>
- </zone>
- <zone type="America/St_Thomas">
- <exemplarCity>سنت توماس</exemplarCity>
- </zone>
- <zone type="Asia/Saigon">
- <exemplarCity>هوشیمینسیتی</exemplarCity>
- </zone>
- <zone type="Pacific/Efate">
- <exemplarCity>افاته</exemplarCity>
- </zone>
- <zone type="Pacific/Wallis">
- <exemplarCity>والیس</exemplarCity>
- </zone>
- <zone type="Pacific/Apia">
- <exemplarCity>آپیا</exemplarCity>
- </zone>
- <zone type="Asia/Aden">
- <exemplarCity>عدن</exemplarCity>
- </zone>
- <zone type="Indian/Mayotte">
- <exemplarCity>مایوت</exemplarCity>
- </zone>
- <zone type="Africa/Johannesburg">
- <exemplarCity>ژوهانسبورگ</exemplarCity>
- </zone>
- <zone type="Africa/Lusaka">
- <exemplarCity>لوزاکا</exemplarCity>
- </zone>
- <zone type="Africa/Harare">
- <exemplarCity>هراره</exemplarCity>
- </zone>
- <metazone type="Afghanistan">
- <long>
- <standard>وقت افغانستان</standard>
- </long>
- </metazone>
- <metazone type="Africa_Central">
- <long>
- <standard>وقت مرکز افریقا</standard>
- </long>
- </metazone>
- <metazone type="Africa_Eastern">
- <long>
- <standard>وقت شرق افریقا</standard>
- </long>
- </metazone>
- <metazone type="Africa_Southern">
- <long>
- <standard>وقت جنوب افریقا</standard>
- </long>
- </metazone>
- <metazone type="Africa_Western">
- <long>
- <generic>وقت غرب افریقا</generic>
- <standard>وقت عادی غرب افریقا</standard>
- <daylight>وقت تابستانی غرب افریقا</daylight>
- </long>
- </metazone>
- <metazone type="Alaska">
- <long>
- <generic>وقت آلاسکا</generic>
- <standard>وقت عادی آلاسکا</standard>
- <daylight>وقت تابستانی آلاسکا</daylight>
- </long>
- </metazone>
- <metazone type="Almaty">
- <long>
- <generic>وقت آلماآتا</generic>
- <standard>وقت عادی آلماآتا</standard>
- <daylight>وقت تابستانی آلماآتا</daylight>
- </long>
- </metazone>
- <metazone type="Amazon">
- <long>
- <generic>وقت آمازون</generic>
- <standard>وقت عادی آمازون</standard>
- <daylight>وقت تابستانی آمازون</daylight>
- </long>
- </metazone>
- <metazone type="America_Central">
- <long>
- <generic>وقت مرکز امریکا</generic>
- <standard>وقت عادی مرکز امریکا</standard>
- <daylight>وقت تابستانی مرکز امریکا</daylight>
- </long>
- </metazone>
- <metazone type="America_Eastern">
- <long>
- <generic>وقت شرق امریکا</generic>
- <standard>وقت عادی شرق امریکا</standard>
- <daylight>وقت تابستانی شرق امریکا</daylight>
- </long>
- </metazone>
- <metazone type="America_Mountain">
- <long>
- <generic>وقت کوهستانی امریکا</generic>
- <standard>وقت عادی کوهستانی امریکا</standard>
- <daylight>وقت تابستانی کوهستانی امریکا</daylight>
- </long>
- </metazone>
- <metazone type="America_Pacific">
- <long>
- <generic>وقت غرب امریکا</generic>
- <standard>وقت عادی غرب امریکا</standard>
- <daylight>وقت تابستانی غرب امریکا</daylight>
- </long>
- </metazone>
- <metazone type="Anadyr">
- <long>
- <generic>وقت آنادیر</generic>
- <standard>وقت عادی آنادیر</standard>
- <daylight>وقت تابستانی آنادیر</daylight>
- </long>
- </metazone>
- <metazone type="Arabian">
- <long>
- <generic>وقت عربستان</generic>
- <standard>وقت عادی عربستان</standard>
- <daylight>وقت تابستانی عربستان</daylight>
- </long>
- </metazone>
- <metazone type="Argentina">
- <long>
- <generic>وقت آرژانتین</generic>
- <standard>وقت عادی آرژانتین</standard>
- <daylight>وقت تابستانی آرژانتین</daylight>
- </long>
- </metazone>
- <metazone type="Argentina_Western">
- <long>
- <generic>وقت غرب آرژانتین</generic>
- <standard>وقت عادی غرب آرژانتین</standard>
- <daylight>وقت تابستانی غرب آرژانتین</daylight>
- </long>
- </metazone>
- <metazone type="Armenia">
- <long>
- <generic>وقت ارمنستان</generic>
- <standard>وقت عادی ارمنستان</standard>
- <daylight>وقت تابستانی ارمنستان</daylight>
- </long>
- </metazone>
- <metazone type="Atlantic">
- <long>
- <generic>وقت آتلانتیک</generic>
- <standard>وقت عادی آتلانتیک</standard>
- <daylight>وقت تابستانی آتلانتیک</daylight>
- </long>
- </metazone>
- <metazone type="Australia_Central">
- <long>
- <generic>وقت مرکز استرالیا</generic>
- <standard>وقت عادی مرکز استرالیا</standard>
- <daylight>وقت تابستانی مرکز استرالیا</daylight>
- </long>
- </metazone>
- <metazone type="Australia_CentralWestern">
- <long>
- <generic>وقت مرکز-غرب استرالیا</generic>
- <standard>وقت عادی مرکز-غرب استرالیا</standard>
- <daylight>وقت تابستانی مرکز-غرب استرالیا</daylight>
- </long>
- </metazone>
- <metazone type="Australia_Eastern">
- <long>
- <generic>وقت شرق استرالیا</generic>
- <standard>وقت عادی شرق استرالیا</standard>
- <daylight>وقت تابستانی شرق استرالیا</daylight>
- </long>
- </metazone>
- <metazone type="Australia_Western">
- <long>
- <generic>وقت غرب استرالیا</generic>
- <standard>وقت عادی غرب استرالیا</standard>
- <daylight>وقت تابستانی غرب استرالیا</daylight>
- </long>
- </metazone>
- <metazone type="Azerbaijan">
- <long>
- <generic>وقت جمهوری آذربایجان</generic>
- <standard>وقت عادی جمهوری آذربایجان</standard>
- <daylight>وقت تابستانی جمهوری آذربایجان</daylight>
- </long>
- </metazone>
- <metazone type="Azores">
- <long>
- <generic>وقت آزور</generic>
- <standard>وقت عادی آزور</standard>
- <daylight>وقت تابستانی آزور</daylight>
- </long>
- </metazone>
- <metazone type="Bangladesh">
- <long>
- <generic>وقت بنگلادش</generic>
- <standard>وقت عادی بنگلادش</standard>
- <daylight>وقت تابستانی بنگلادش</daylight>
- </long>
- </metazone>
- <metazone type="Bhutan">
- <long>
- <standard>وقت بوتان</standard>
- </long>
- </metazone>
- <metazone type="Bolivia">
- <long>
- <standard>وقت بولیوی</standard>
- </long>
- </metazone>
- <metazone type="Brasilia">
- <long>
- <generic>وقت برازیلیا</generic>
- <standard>وقت عادی برازیلیا</standard>
- <daylight>وقت تابستانی برازیلیا</daylight>
- </long>
- </metazone>
- <metazone type="Brunei">
- <long>
- <standard>وقت برونئی دارالسلام</standard>
- </long>
- </metazone>
- <metazone type="Cape_Verde">
- <long>
- <generic>وقت کیپورد</generic>
- <standard>وقت عادی کیپورد</standard>
- <daylight>وقت تابستانی کیپورد</daylight>
- </long>
- </metazone>
- <metazone type="Chamorro">
- <long>
- <standard>وقت چامورو</standard>
- </long>
- </metazone>
- <metazone type="Chatham">
- <long>
- <generic>وقت چتهام</generic>
- <standard>وقت عادی چتهام</standard>
- <daylight>وقت تابستانی چتهام</daylight>
- </long>
- </metazone>
- <metazone type="Chile">
- <long>
- <generic>وقت شیلی</generic>
- <standard>وقت عادی شیلی</standard>
- <daylight>وقت تابستانی شیلی</daylight>
- </long>
- </metazone>
- <metazone type="China">
- <long>
- <generic>وقت چین</generic>
- <standard>وقت عادی چین</standard>
- <daylight>وقت تابستانی چین</daylight>
- </long>
- </metazone>
- <metazone type="Choibalsan">
- <long>
- <generic>وقت چویبالسان</generic>
- <standard>وقت عادی چویبالسان</standard>
- <daylight>وقت تابستانی چویبالسان</daylight>
- </long>
- </metazone>
- <metazone type="Christmas">
- <long>
- <standard>وقت جزیرهٔ کریسمس</standard>
- </long>
- </metazone>
- <metazone type="Cocos">
- <long>
- <standard>وقت جزایر کوکوس</standard>
- </long>
- </metazone>
- <metazone type="Colombia">
- <long>
- <generic>وقت کلمبیا</generic>
- <standard>وقت عادی کلمبیا</standard>
- <daylight>وقت تابستانی کلمبیا</daylight>
- </long>
- </metazone>
- <metazone type="Cook">
- <long>
- <generic>وقت جزایر کوک</generic>
- <standard>وقت عادی جزایر کوک</standard>
- <daylight>وقت تابستانی جزایر کوک</daylight>
- </long>
- </metazone>
- <metazone type="Cuba">
- <long>
- <generic>وقت کوبا</generic>
- <standard>وقت عادی کوبا</standard>
- <daylight>وقت تابستانی کوبا</daylight>
- </long>
- </metazone>
- <metazone type="Davis">
- <long>
- <standard>وقت دیویس</standard>
- </long>
- </metazone>
- <metazone type="DumontDUrville">
- <long>
- <standard>وقت دومون دورویل</standard>
- </long>
- </metazone>
- <metazone type="East_Timor">
- <long>
- <standard>وقت تیمور شرقی</standard>
- </long>
- </metazone>
- <metazone type="Easter">
- <long>
- <generic>وقت جزیرهٔ ایستر</generic>
- <standard>وقت عادی جزیرهٔ ایستر</standard>
- <daylight>وقت تابستانی جزیرهٔ ایستر</daylight>
- </long>
- </metazone>
- <metazone type="Ecuador">
- <long>
- <standard>وقت اکوادور</standard>
- </long>
- </metazone>
- <metazone type="Europe_Central">
- <long>
- <generic>وقت مرکز اروپا</generic>
- <standard>وقت عادی مرکز اروپا</standard>
- <daylight>وقت تابستانی مرکز اروپا</daylight>
- </long>
- </metazone>
- <metazone type="Europe_Eastern">
- <long>
- <generic>وقت شرق اروپا</generic>
- <standard>وقت عادی شرق اروپا</standard>
- <daylight>وقت تابستانی شرق اروپا</daylight>
- </long>
- </metazone>
- <metazone type="Europe_Western">
- <long>
- <generic>وقت غرب اروپا</generic>
- <standard>وقت عادی غرب اروپا</standard>
- <daylight>وقت تابستانی غرب اروپا</daylight>
- </long>
- </metazone>
- <metazone type="Falkland">
- <long>
- <generic>وقت جزایر فالکلند</generic>
- <standard>وقت عادی جزایر فالکلند</standard>
- <daylight>وقت تابستانی جزایر فالکلند</daylight>
- </long>
- </metazone>
- <metazone type="Fiji">
- <long>
- <generic>وقت فیجی</generic>
- <standard>وقت عادی فیجی</standard>
- <daylight>وقت تابستانی فیجی</daylight>
- </long>
- </metazone>
- <metazone type="French_Guiana">
- <long>
- <standard>وقت گویان فرانسه</standard>
- </long>
- </metazone>
- <metazone type="French_Southern">
- <long>
- <standard>وقت سرزمینهای جنوبی و جنوبگان فرانسه</standard>
- </long>
- </metazone>
- <metazone type="Galapagos">
- <long>
- <standard>وقت گالاپاگوس</standard>
- </long>
- </metazone>
- <metazone type="Gambier">
- <long>
- <standard>وقت گامبیه</standard>
- </long>
- </metazone>
- <metazone type="Georgia">
- <long>
- <generic>وقت گرجستان</generic>
- <standard>وقت عادی گرجستان</standard>
- <daylight>وقت تابستانی گرجستان</daylight>
- </long>
- </metazone>
- <metazone type="Gilbert_Islands">
- <long>
- <standard>وقت جزایر گیلبرت</standard>
- </long>
- </metazone>
- <metazone type="GMT">
- <long>
- <standard>وقت گرینویچ</standard>
- </long>
- </metazone>
- <metazone type="Greenland_Eastern">
- <long>
- <generic>وقت شرق گرینلند</generic>
- <standard>وقت عادی شرق گرینلند</standard>
- <daylight>وقت تابستانی شرق گرینلند</daylight>
- </long>
- </metazone>
- <metazone type="Greenland_Western">
- <long>
- <generic>وقت غرب گرینلند</generic>
- <standard>وقت عادی غرب گرینلند</standard>
- <daylight>وقت تابستانی غرب گرینلند</daylight>
- </long>
- </metazone>
- <metazone type="Guam">
- <long>
- <standard>وقت عادی گوام</standard>
- </long>
- </metazone>
- <metazone type="Gulf">
- <long>
- <standard>وقت خلیج فارس</standard>
- </long>
- </metazone>
- <metazone type="Guyana">
- <long>
- <standard>وقت گویان</standard>
- </long>
- </metazone>
- <metazone type="Hawaii_Aleutian">
- <long>
- <generic>وقت هاوایی</generic>
- <standard>وقت عادی هاوایی</standard>
- <daylight>وقت تابستانی هاوایی</daylight>
- </long>
- </metazone>
- <metazone type="Hong_Kong">
- <long>
- <generic>وقت هنگکنگ</generic>
- <standard>وقت عادی هنگکنگ</standard>
- <daylight>وقت تابستانی هنگکنگ</daylight>
- </long>
- </metazone>
- <metazone type="Hovd">
- <long>
- <generic>وقت خوود</generic>
- <standard>وقت عادی خوود</standard>
- <daylight>وقت تابستانی خوود</daylight>
- </long>
- </metazone>
- <metazone type="India">
- <long>
- <standard>وقت هند</standard>
- </long>
- </metazone>
- <metazone type="Indian_Ocean">
- <long>
- <standard>وقت اقیانوس هند</standard>
- </long>
- </metazone>
- <metazone type="Indochina">
- <long>
- <standard>وقت هندوچین</standard>
- </long>
- </metazone>
- <metazone type="Indonesia_Central">
- <long>
- <standard>وقت مرکز اندونزی</standard>
- </long>
- </metazone>
- <metazone type="Indonesia_Eastern">
- <long>
- <standard>وقت شرق اندونزی</standard>
- </long>
- </metazone>
- <metazone type="Indonesia_Western">
- <long>
- <standard>وقت غرب اندونزی</standard>
- </long>
- </metazone>
- <metazone type="Iran">
- <long>
- <generic>وقت ایران</generic>
- <standard>وقت عادی ایران</standard>
- <daylight>وقت تابستانی ایران</daylight>
- </long>
- </metazone>
- <metazone type="Irkutsk">
- <long>
- <generic>وقت ایرکوتسک</generic>
- <standard>وقت عادی ایرکوتسک</standard>
- <daylight>وقت تابستانی ایرکوتسک</daylight>
- </long>
- </metazone>
- <metazone type="Israel">
- <long>
- <generic>وقت اسرائیل</generic>
- <standard>وقت عادی اسرائیل</standard>
- <daylight>وقت تابستانی اسرائیل</daylight>
- </long>
- </metazone>
- <metazone type="Japan">
- <long>
- <generic>وقت ژاپن</generic>
- <standard>وقت عادی ژاپن</standard>
- <daylight>وقت تابستانی ژاپن</daylight>
- </long>
- </metazone>
- <metazone type="Kamchatka">
- <long>
- <generic>وقت پتروپاولوسک‐کامچاتسکی</generic>
- <standard>وقت عادی پتروپاولوسک‐کامچاتسکی</standard>
- <daylight>وقت تابستانی پتروپاولوسک‐کامچاتسکی</daylight>
- </long>
- </metazone>
- <metazone type="Kazakhstan_Eastern">
- <long>
- <standard>وقت شرق قزاقستان</standard>
- </long>
- </metazone>
- <metazone type="Kazakhstan_Western">
- <long>
- <standard>وقت غرب قزاقستان</standard>
- </long>
- </metazone>
- <metazone type="Korea">
- <long>
- <generic>وقت کره</generic>
- <standard>وقت عادی کره</standard>
- <daylight>وقت تابستانی کره</daylight>
- </long>
- </metazone>
- <metazone type="Kosrae">
- <long>
- <standard>وقت کوسرای</standard>
- </long>
- </metazone>
- <metazone type="Krasnoyarsk">
- <long>
- <generic>وقت کراسنویارسک</generic>
- <standard>وقت عادی کراسنویارسک</standard>
- <daylight>وقت تابستانی کراسنویارسک</daylight>
- </long>
- </metazone>
- <metazone type="Kyrgystan">
- <long>
- <standard>وقت قرقیزستان</standard>
- </long>
- </metazone>
- <metazone type="Lanka">
- <long>
- <standard>وقت لانکا</standard>
- </long>
- </metazone>
- <metazone type="Line_Islands">
- <long>
- <standard>وقت جزایر لاین</standard>
- </long>
- </metazone>
- <metazone type="Lord_Howe">
- <long>
- <generic>وقت لردهو</generic>
- <standard>وقت عادی لردهو</standard>
- <daylight>وقت تابستانی لردهو</daylight>
- </long>
- </metazone>
- <metazone type="Macau">
- <long>
- <generic>وقت ماکائو</generic>
- <standard>وقت عادی ماکائو</standard>
- <daylight>وقت تابستانی ماکائو</daylight>
- </long>
- </metazone>
- <metazone type="Macquarie">
- <long>
- <standard>وقت جزیرهٔ مکواری</standard>
- </long>
- </metazone>
- <metazone type="Magadan">
- <long>
- <generic>وقت ماگادان</generic>
- <standard>وقت عادی ماگادان</standard>
- <daylight>وقت تابستانی ماگادان</daylight>
- </long>
- </metazone>
- <metazone type="Malaysia">
- <long>
- <standard>وقت مالزی</standard>
- </long>
- </metazone>
- <metazone type="Maldives">
- <long>
- <standard>وقت مالدیو</standard>
- </long>
- </metazone>
- <metazone type="Marquesas">
- <long>
- <standard>وقت مارکوئز</standard>
- </long>
- </metazone>
- <metazone type="Marshall_Islands">
- <long>
- <standard>وقت جزایر مارشال</standard>
- </long>
- </metazone>
- <metazone type="Mauritius">
- <long>
- <generic>وقت موریس</generic>
- <standard>وقت عادی موریس</standard>
- <daylight>وقت تابستانی موریس</daylight>
- </long>
- </metazone>
- <metazone type="Mawson">
- <long>
- <standard>وقت ماوسون</standard>
- </long>
- </metazone>
- <metazone type="Mongolia">
- <long>
- <generic>وقت اولانباتور</generic>
- <standard>وقت عادی اولانباتور</standard>
- <daylight>وقت تابستانی اولانباتور</daylight>
- </long>
- </metazone>
- <metazone type="Moscow">
- <long>
- <generic>وقت مسکو</generic>
- <standard>وقت عادی مسکو</standard>
- <daylight>وقت تابستانی مسکو</daylight>
- </long>
- </metazone>
- <metazone type="Myanmar">
- <long>
- <standard>وقت میانمار</standard>
- </long>
- </metazone>
- <metazone type="Nauru">
- <long>
- <standard>وقت نائورو</standard>
- </long>
- </metazone>
- <metazone type="Nepal">
- <long>
- <standard>وقت نپال</standard>
- </long>
- </metazone>
- <metazone type="New_Caledonia">
- <long>
- <generic>وقت کالدونیای جدید</generic>
- <standard>وقت عادی کالدونیای جدید</standard>
- <daylight>وقت تابستانی کالدونیای جدید</daylight>
- </long>
- </metazone>
- <metazone type="New_Zealand">
- <long>
- <generic>وقت زلاند نو</generic>
- <standard>وقت عادی زلاند نو</standard>
- <daylight>وقت تابستانی زلاند نو</daylight>
- </long>
- </metazone>
- <metazone type="Newfoundland">
- <long>
- <generic>وقت نیوفاندلند</generic>
- <standard>وقت عادی نیوفاندلند</standard>
- <daylight>وقت تابستانی نیوفاندلند</daylight>
- </long>
- </metazone>
- <metazone type="Niue">
- <long>
- <standard>وقت نیوئه</standard>
- </long>
- </metazone>
- <metazone type="Norfolk">
- <long>
- <standard>وقت جزایر نورفولک</standard>
- </long>
- </metazone>
- <metazone type="Noronha">
- <long>
- <generic>وقت فرناندو دی نورونیا</generic>
- <standard>وقت عادی فرناندو دی نورونیا</standard>
- <daylight>وقت تابستانی فرناندو دی نورونیا</daylight>
- </long>
- </metazone>
- <metazone type="North_Mariana">
- <long>
- <standard>وقت جزایر ماریانای شمالی</standard>
- </long>
- </metazone>
- <metazone type="Novosibirsk">
- <long>
- <generic>وقت نووسیبیرسک</generic>
- <standard>وقت عادی نووسیبیرسک</standard>
- <daylight>وقت تابستانی نووسیبیرسک</daylight>
- </long>
- </metazone>
- <metazone type="Omsk">
- <long>
- <generic>وقت اومسک</generic>
- <standard>وقت عادی اومسک</standard>
- <daylight>وقت تابستانی اومسک</daylight>
- </long>
- </metazone>
- <metazone type="Pakistan">
- <long>
- <generic>وقت پاکستان</generic>
- <standard>وقت عادی پاکستان</standard>
- <daylight>وقت تابستانی پاکستان</daylight>
- </long>
- </metazone>
- <metazone type="Palau">
- <long>
- <standard>وقت پالائو</standard>
- </long>
- </metazone>
- <metazone type="Papua_New_Guinea">
- <long>
- <standard>وقت پاپوا گینهٔ نو</standard>
- </long>
- </metazone>
- <metazone type="Paraguay">
- <long>
- <generic>وقت پاراگوئه</generic>
- <standard>وقت عادی پاراگوئه</standard>
- <daylight>وقت تابستانی پاراگوئه</daylight>
- </long>
- </metazone>
- <metazone type="Peru">
- <long>
- <generic>وقت پرو</generic>
- <standard>وقت عادی پرو</standard>
- <daylight>وقت تابستانی پرو</daylight>
- </long>
- </metazone>
- <metazone type="Philippines">
- <long>
- <generic>وقت فیلیپین</generic>
- <standard>وقت عادی فیلیپین</standard>
- <daylight>وقت تابستانی فیلیپین</daylight>
- </long>
- </metazone>
- <metazone type="Phoenix_Islands">
- <long>
- <standard>وقت جزایر فونیکس</standard>
- </long>
- </metazone>
- <metazone type="Pierre_Miquelon">
- <long>
- <generic>وقت سنت پیر و میکلون</generic>
- <standard>وقت عادی سنت پیر و میکلون</standard>
- <daylight>وقت تابستانی سنت پیر و میکلون</daylight>
- </long>
- </metazone>
- <metazone type="Pitcairn">
- <long>
- <standard>وقت پیتکایرن</standard>
- </long>
- </metazone>
- <metazone type="Ponape">
- <long>
- <standard>وقت پوناپه</standard>
- </long>
- </metazone>
- <metazone type="Qyzylorda">
- <long>
- <generic>وقت قیزیلاوردا</generic>
- <standard>وقت عادی قیزیلاوردا</standard>
- <daylight>وقت تابستانی قیزیلاوردا</daylight>
- </long>
- </metazone>
- <metazone type="Reunion">
- <long>
- <standard>وقت ریونیون</standard>
- </long>
- </metazone>
- <metazone type="Rothera">
- <long>
- <standard>وقت روترا</standard>
- </long>
- </metazone>
- <metazone type="Sakhalin">
- <long>
- <generic>وقت ساخالین</generic>
- <standard>وقت عادی ساخالین</standard>
- <daylight>وقت تابستانی ساخالین</daylight>
- </long>
- </metazone>
- <metazone type="Samara">
- <long>
- <generic>وقت سامارا</generic>
- <standard>وقت عادی سامارا</standard>
- <daylight>وقت تابستانی سامارا</daylight>
- </long>
- </metazone>
- <metazone type="Samoa">
- <long>
- <generic>وقت ساموا</generic>
- <standard>وقت عادی ساموا</standard>
- <daylight>وقت تابستانی ساموا</daylight>
- </long>
- </metazone>
- <metazone type="Seychelles">
- <long>
- <standard>وقت سیشل</standard>
- </long>
- </metazone>
- <metazone type="Singapore">
- <long>
- <standard>وقت سنگاپور</standard>
- </long>
- </metazone>
- <metazone type="Solomon">
- <long>
- <standard>وقت جزایر سلیمان</standard>
- </long>
- </metazone>
- <metazone type="South_Georgia">
- <long>
- <standard>وقت جورجیای جنوبی</standard>
- </long>
- </metazone>
- <metazone type="Suriname">
- <long>
- <standard>وقت سورینام</standard>
- </long>
- </metazone>
- <metazone type="Syowa">
- <long>
- <standard>وقت شووا</standard>
- </long>
- </metazone>
- <metazone type="Tahiti">
- <long>
- <standard>وقت تاهیتی</standard>
- </long>
- </metazone>
- <metazone type="Taipei">
- <long>
- <generic>وقت تایپه</generic>
- <standard>وقت عادی تایپه</standard>
- <daylight>وقت تابستانی تایپه</daylight>
- </long>
- </metazone>
- <metazone type="Tajikistan">
- <long>
- <standard>وقت تاجیکستان</standard>
- </long>
- </metazone>
- <metazone type="Tokelau">
- <long>
- <standard>وقت توکلائو</standard>
- </long>
- </metazone>
- <metazone type="Tonga">
- <long>
- <generic>وقت تونگا</generic>
- <standard>وقت عادی تونگا</standard>
- <daylight>وقت تابستانی تونگا</daylight>
- </long>
- </metazone>
- <metazone type="Truk">
- <long>
- <standard>وقت چوئوک</standard>
- </long>
- </metazone>
- <metazone type="Turkmenistan">
- <long>
- <generic>وقت ترکمنستان</generic>
- <standard>وقت عادی ترکمنستان</standard>
- <daylight>وقت تابستانی ترکمنستان</daylight>
- </long>
- </metazone>
- <metazone type="Tuvalu">
- <long>
- <standard>وقت تووالو</standard>
- </long>
- </metazone>
- <metazone type="Uruguay">
- <long>
- <generic>وقت اروگوئه</generic>
- <standard>وقت عادی اروگوئه</standard>
- <daylight>وقت تابستانی اروگوئه</daylight>
- </long>
- </metazone>
- <metazone type="Uzbekistan">
- <long>
- <generic>وقت ازبکستان</generic>
- <standard>وقت عادی ازبکستان</standard>
- <daylight>وقت تابستانی ازبکستان</daylight>
- </long>
- </metazone>
- <metazone type="Vanuatu">
- <long>
- <generic>وقت واناتو</generic>
- <standard>وقت عادی واناتو</standard>
- <daylight>وقت تابستانی واناتو</daylight>
- </long>
- </metazone>
- <metazone type="Venezuela">
- <long>
- <standard>وقت ونزوئلا</standard>
- </long>
- </metazone>
- <metazone type="Vladivostok">
- <long>
- <generic>وقت ولادیوستوک</generic>
- <standard>وقت عادی ولادیوستوک</standard>
- <daylight>وقت تابستانی ولادیوستوک</daylight>
- </long>
- </metazone>
- <metazone type="Volgograd">
- <long>
- <generic>وقت ولگاگراد</generic>
- <standard>وقت عادی ولگاگراد</standard>
- <daylight>وقت تابستانی ولگاگراد</daylight>
- </long>
- </metazone>
- <metazone type="Vostok">
- <long>
- <standard>وقت وستوک</standard>
- </long>
- </metazone>
- <metazone type="Wake">
- <long>
- <standard>وقت جزیرهٔ ویک</standard>
- </long>
- </metazone>
- <metazone type="Wallis">
- <long>
- <standard>وقت والیس و فوتونا</standard>
- </long>
- </metazone>
- <metazone type="Yakutsk">
- <long>
- <generic>وقت یاکوتسک</generic>
- <standard>وقت عادی یاکوتسک</standard>
- <daylight>وقت تابستانی یاکوتسک</daylight>
- </long>
- </metazone>
- <metazone type="Yekaterinburg">
- <long>
- <generic>وقت یکاترینبورگ</generic>
- <standard>وقت عادی یکاترینبورگ</standard>
- <daylight>وقت تابستانی یکاترینبورگ</daylight>
- </long>
- </metazone>
- </timeZoneNames>
- </dates>
- <numbers>
- <defaultNumberingSystem>arabext</defaultNumberingSystem>
- <otherNumberingSystems>
- <native>arabext</native>
- </otherNumberingSystems>
- <symbols numberSystem="arabext">
- <decimal>٫</decimal>
- <group>٬</group>
- <list>؛</list>
- <percentSign>٪</percentSign>
- <plusSign>+</plusSign>
- <minusSign>−</minusSign>
- <exponential>×۱۰^</exponential>
- <perMille>؉</perMille>
- <infinity>∞</infinity>
- <nan>ناعدد</nan>
- </symbols>
- <symbols numberSystem="latn">
- <decimal>.</decimal>
- <group>,</group>
- <list>;</list>
- <percentSign>%</percentSign>
- <plusSign>+</plusSign>
- <minusSign>−</minusSign>
- <exponential>E</exponential>
- <perMille>‰</perMille>
- <infinity>∞</infinity>
- <nan>NaN</nan>
- </symbols>
- <decimalFormats numberSystem="latn">
- <decimalFormatLength>
- <decimalFormat>
- <pattern>#,##0.###</pattern>
- </decimalFormat>
- </decimalFormatLength>
- <decimalFormatLength type="long">
- <decimalFormat>
- <pattern type="1000" count="other">0 هزار</pattern>
- <pattern type="10000" count="other">00 هزار</pattern>
- <pattern type="100000" count="other">000 هزار</pattern>
- <pattern type="1000000" count="other">0 میلیون</pattern>
- <pattern type="10000000" count="other">00 میلیون</pattern>
- <pattern type="100000000" count="other">000 میلیون</pattern>
- <pattern type="1000000000" count="other">0 میلیارد</pattern>
- <pattern type="10000000000" count="other">00 میلیارد</pattern>
- <pattern type="100000000000" count="other">000 میلیارد</pattern>
- <pattern type="1000000000000" count="other">0 هزار میلیارد</pattern>
- <pattern type="10000000000000" count="other">00 هزار میلیارد</pattern>
- <pattern type="100000000000000" count="other">000 هزار میلیارد</pattern>
- </decimalFormat>
- </decimalFormatLength>
- <decimalFormatLength type="short">
- <decimalFormat>
- <pattern type="1000" count="other">0K</pattern>
- <pattern type="10000" count="other">00K</pattern>
- <pattern type="100000" count="other">000K</pattern>
- <pattern type="1000000" count="other">0M</pattern>
- <pattern type="10000000" count="other">00M</pattern>
- <pattern type="100000000" count="other">000M</pattern>
- <pattern type="1000000000" count="other">0G</pattern>
- <pattern type="10000000000" count="other">00G</pattern>
- <pattern type="100000000000" count="other">000G</pattern>
- <pattern type="1000000000000" count="other">0T</pattern>
- <pattern type="10000000000000" count="other">00T</pattern>
- <pattern type="100000000000000" count="other">000T</pattern>
- </decimalFormat>
- </decimalFormatLength>
- </decimalFormats>
- <scientificFormats numberSystem="latn">
- <scientificFormatLength>
- <scientificFormat>
- <pattern>#E0</pattern>
- </scientificFormat>
- </scientificFormatLength>
- </scientificFormats>
- <percentFormats numberSystem="latn">
- <percentFormatLength>
- <percentFormat>
- <pattern>#,##0%</pattern>
- </percentFormat>
- </percentFormatLength>
- </percentFormats>
- <currencyFormats numberSystem="latn">
- <currencyFormatLength>
- <currencyFormat>
- <pattern>¤#,##0.00;(¤#,##0.00)</pattern>
- </currencyFormat>
- </currencyFormatLength>
- <unitPattern count="other">{0} {1}</unitPattern>
- </currencyFormats>
- <currencies>
- <currency type="ADP">
- <displayName>پزتای آندورا</displayName>
- </currency>
- <currency type="AED">
- <displayName>درهم امارات متحدهٔ عربی</displayName>
- </currency>
- <currency type="AFA">
- <displayName>افغانی افغانستان (۱۹۲۷ تا ۲۰۰۲)</displayName>
- </currency>
- <currency type="AFN">
- <displayName>افغانی افغانستان</displayName>
- </currency>
- <currency type="ALL">
- <displayName>لک آلبانی</displayName>
- </currency>
- <currency type="AMD">
- <displayName>درم ارمنستان</displayName>
- </currency>
- <currency type="ANG">
- <displayName>گیلدر آنتیل هلند</displayName>
- </currency>
- <currency type="AOA">
- <displayName>کوانزای آنگولا</displayName>
- </currency>
- <currency type="ARP">
- <displayName>پزوی آرژانتین (۱۹۸۳ تا ۱۹۸۵)</displayName>
- </currency>
- <currency type="ARS">
- <displayName>پزوی آرژانتین</displayName>
- </currency>
- <currency type="ATS">
- <displayName>شیلینگ اتریش</displayName>
- </currency>
- <currency type="AUD">
- <displayName>دلار استرالیا</displayName>
- </currency>
- <currency type="AWG">
- <displayName>فلورین آروبا</displayName>
- </currency>
- <currency type="AZM">
- <displayName>منات جمهوری آذربایجان (۱۹۹۳ تا ۲۰۰۶)</displayName>
- </currency>
- <currency type="AZN">
- <displayName>منات جمهوری آذربایجان</displayName>
- </currency>
- <currency type="BAD">
- <displayName>دینار بوسنی و هرزگوین (۱۹۹۲ تا ۱۹۹۴)</displayName>
- </currency>
- <currency type="BAM">
- <displayName>مارک تبدیلپذیر بوسنی و هرزگوین</displayName>
- </currency>
- <currency type="BBD">
- <displayName>دلار باربادوس</displayName>
- </currency>
- <currency type="BDT">
- <displayName>تاکای بنگلادش</displayName>
- </currency>
- <currency type="BEF">
- <displayName>فرانک بلژیک</displayName>
- </currency>
- <currency type="BEL">
- <displayName>فرانک بلژیک (مالی)</displayName>
- </currency>
- <currency type="BGN">
- <displayName>لف بلغارستان</displayName>
- </currency>
- <currency type="BHD">
- <displayName>دینار بحرین</displayName>
- </currency>
- <currency type="BIF">
- <displayName>فرانک بوروندی</displayName>
- </currency>
- <currency type="BMD">
- <displayName>دلار برمودا</displayName>
- </currency>
- <currency type="BND">
- <displayName>دلار برونئی</displayName>
- </currency>
- <currency type="BOB">
- <displayName>بولیویانوی بولیوی</displayName>
- </currency>
- <currency type="BOP">
- <displayName>پزوی بولیوی</displayName>
- </currency>
- <currency type="BRL">
- <displayName>رئال برزیل</displayName>
- </currency>
- <currency type="BSD">
- <displayName>دلار باهاما</displayName>
- </currency>
- <currency type="BTN">
- <displayName>انگولتروم بوتان</displayName>
- </currency>
- <currency type="BWP">
- <displayName>پولای بوتسوانا</displayName>
- </currency>
- <currency type="BYB">
- <displayName>روبل جدید بیلوروسی (۱۹۹۴ تا ۱۹۹۹)</displayName>
- </currency>
- <currency type="BYR">
- <displayName>روبل بیلوروسی</displayName>
- </currency>
- <currency type="BZD">
- <displayName>دلار بلیز</displayName>
- </currency>
- <currency type="CAD">
- <displayName>دلار کانادا</displayName>
- </currency>
- <currency type="CDF">
- <displayName>فرانک کنگو</displayName>
- </currency>
- <currency type="CHF">
- <displayName>فرانک سوئیس</displayName>
- </currency>
- <currency type="CLP">
- <displayName>پزوی شیلی</displayName>
- </currency>
- <currency type="CNY">
- <displayName>یوآن چین</displayName>
- </currency>
- <currency type="COP">
- <displayName>پزوی کلمبیا</displayName>
- </currency>
- <currency type="CRC">
- <displayName>کولون کاستاریکا</displayName>
- </currency>
- <currency type="CSD">
- <displayName>دینار صربستان (۲۰۰۲ تا ۲۰۰۶)</displayName>
- </currency>
- <currency type="CUC">
- <displayName>پزوی تبدیلپذیر کوبا</displayName>
- </currency>
- <currency type="CUP">
- <displayName>پزوی کوبا</displayName>
- </currency>
- <currency type="CVE">
- <displayName>اسکودوی کیپورد</displayName>
- </currency>
- <currency type="CYP">
- <displayName>پوند قبرس</displayName>
- </currency>
- <currency type="CZK">
- <displayName>کورونای جمهوری چک</displayName>
- </currency>
- <currency type="DDM">
- <displayName>مارک آلمان شرقی</displayName>
- </currency>
- <currency type="DEM">
- <displayName>مارک آلمان</displayName>
- </currency>
- <currency type="DJF">
- <displayName>فرانک جیبوتی</displayName>
- </currency>
- <currency type="DKK">
- <displayName>کرون دانمارک</displayName>
- </currency>
- <currency type="DOP">
- <displayName>پزوی جمهوری دومینیکن</displayName>
- </currency>
- <currency type="DZD">
- <displayName>دینار الجزایر</displayName>
- </currency>
- <currency type="EGP">
- <displayName>لیرهٔ مصر</displayName>
- </currency>
- <currency type="ERN">
- <displayName>ناکفای اریتره</displayName>
- </currency>
- <currency type="ETB">
- <displayName>بیر اتیوپی</displayName>
- </currency>
- <currency type="EUR">
- <displayName>یورو</displayName>
- </currency>
- <currency type="FJD">
- <displayName>دلار فیجی</displayName>
- </currency>
- <currency type="FKP">
- <displayName>پوند جزایر فالکلند</displayName>
- </currency>
- <currency type="FRF">
- <displayName>فرانک فرانسه</displayName>
- </currency>
- <currency type="GBP">
- <displayName>پوند بریتانیا</displayName>
- </currency>
- <currency type="GEL">
- <displayName>لاری گرجستان</displayName>
- </currency>
- <currency type="GHS">
- <displayName>سدی غنا</displayName>
- </currency>
- <currency type="GIP">
- <displayName>پوند جبلالطارق</displayName>
- </currency>
- <currency type="GMD">
- <displayName>دالاسی گامبیا</displayName>
- </currency>
- <currency type="GNF">
- <displayName>فرانک گینه</displayName>
- </currency>
- <currency type="GRD">
- <displayName>دراخمای یونان</displayName>
- </currency>
- <currency type="GTQ">
- <displayName>کتزال گواتمالا</displayName>
- </currency>
- <currency type="GWP">
- <displayName>پزوی گینهٔ بیسائو</displayName>
- </currency>
- <currency type="GYD">
- <displayName>دلار گویان</displayName>
- </currency>
- <currency type="HKD">
- <displayName>دلار هنگکنگ</displayName>
- </currency>
- <currency type="HNL">
- <displayName>لمپیرای هندوراس</displayName>
- </currency>
- <currency type="HRD">
- <displayName>دینار کرواسی</displayName>
- </currency>
- <currency type="HRK">
- <displayName>کونای کرواسی</displayName>
- </currency>
- <currency type="HTG">
- <displayName>گورد هائیتی</displayName>
- </currency>
- <currency type="HUF">
- <displayName>فورینت مجارستان</displayName>
- </currency>
- <currency type="IDR">
- <displayName>روپیهٔ اندونزی</displayName>
- </currency>
- <currency type="IEP">
- <displayName>پوند ایرلند</displayName>
- </currency>
- <currency type="ILS">
- <displayName>شقل جدید اسرائیل</displayName>
- </currency>
- <currency type="INR">
- <displayName>روپیهٔ هند</displayName>
- </currency>
- <currency type="IQD">
- <displayName>دینار عراق</displayName>
- </currency>
- <currency type="IRR">
- <displayName>ریال ایران</displayName>
- <symbol>﷼</symbol>
- </currency>
- <currency type="ISK">
- <displayName>کرونای ایسلند</displayName>
- </currency>
- <currency type="ITL">
- <displayName>لیرهٔ ایتالیا</displayName>
- </currency>
- <currency type="JMD">
- <displayName>دلار جامائیکا</displayName>
- </currency>
- <currency type="JOD">
- <displayName>دینار اردن</displayName>
- </currency>
- <currency type="JPY">
- <displayName>ین ژاپن</displayName>
- </currency>
- <currency type="KES">
- <displayName>شیلینگ کنیا</displayName>
- </currency>
- <currency type="KGS">
- <displayName>سوم قرقیزستان</displayName>
- </currency>
- <currency type="KHR">
- <displayName>رییل کامبوج</displayName>
- </currency>
- <currency type="KMF">
- <displayName>فرانک کومورو</displayName>
- </currency>
- <currency type="KPW">
- <displayName>وون کرهٔ شمالی</displayName>
- </currency>
- <currency type="KRW">
- <displayName>وون کرهٔ جنوبی</displayName>
- </currency>
- <currency type="KWD">
- <displayName>دینار کویت</displayName>
- </currency>
- <currency type="KYD">
- <displayName>دلار جزایر کِیمن</displayName>
- </currency>
- <currency type="KZT">
- <displayName>تنگهٔ قزاقستان</displayName>
- </currency>
- <currency type="LAK">
- <displayName>کیپ لائوس</displayName>
- </currency>
- <currency type="LBP">
- <displayName>لیرهٔ لبنان</displayName>
- </currency>
- <currency type="LKR">
- <displayName>روپیهٔ سریلانکا</displayName>
- </currency>
- <currency type="LRD">
- <displayName>دلار لیبریا</displayName>
- </currency>
- <currency type="LSL">
- <displayName>لوتی لسوتو</displayName>
- </currency>
- <currency type="LTL">
- <displayName>لیتاس لیتوانی</displayName>
- </currency>
- <currency type="LUF">
- <displayName>فرانک لوکزامبورگ</displayName>
- </currency>
- <currency type="LUL">
- <displayName>فرانک مالی لوگزامبورگ</displayName>
- </currency>
- <currency type="LVL">
- <displayName>لاتس لتونی</displayName>
- </currency>
- <currency type="LVR">
- <displayName>روبل لتونی</displayName>
- </currency>
- <currency type="LYD">
- <displayName>دینار لیبی</displayName>
- </currency>
- <currency type="MAD">
- <displayName>درهم مراکش</displayName>
- </currency>
- <currency type="MAF">
- <displayName>فرانک مراکش</displayName>
- </currency>
- <currency type="MDL">
- <displayName>لئوی مولداوی</displayName>
- </currency>
- <currency type="MGA">
- <displayName>آریاری مالاگاسی</displayName>
- </currency>
- <currency type="MGF">
- <displayName>فرانک ماداگاسکار</displayName>
- </currency>
- <currency type="MKD">
- <displayName>دینار مقدونیه</displayName>
- </currency>
- <currency type="MLF">
- <displayName>فرانک مالی</displayName>
- </currency>
- <currency type="MMK">
- <displayName>کیات میانمار</displayName>
- </currency>
- <currency type="MNT">
- <displayName>توگریک مغولستان</displayName>
- </currency>
- <currency type="MOP">
- <displayName>پاتاکای ماکائو</displayName>
- </currency>
- <currency type="MRO">
- <displayName>اوگوئیای موریتانی</displayName>
- </currency>
- <currency type="MTL">
- <displayName>لیرهٔ مالت</displayName>
- </currency>
- <currency type="MTP">
- <displayName>پوند مالت</displayName>
- </currency>
- <currency type="MUR">
- <displayName>روپیهٔ موریس</displayName>
- </currency>
- <currency type="MVR">
- <displayName>روپیهٔ مالدیو</displayName>
- </currency>
- <currency type="MWK">
- <displayName>کواچای مالاوی</displayName>
- </currency>
- <currency type="MXN">
- <displayName>پزوی مکزیک</displayName>
- </currency>
- <currency type="MXP">
- <displayName>پزوی نقرهٔ مکزیک (۱۸۶۱ تا ۱۹۹۲)</displayName>
- </currency>
- <currency type="MYR">
- <displayName>رینگیت مالزی</displayName>
- </currency>
- <currency type="MZE">
- <displayName>اسکودوی موزامبیک</displayName>
- </currency>
- <currency type="MZN">
- <displayName>متیکال موزامبیک</displayName>
- </currency>
- <currency type="NAD">
- <displayName>دلار نامیبیا</displayName>
- </currency>
- <currency type="NGN">
- <displayName>نایرای نیجریه</displayName>
- </currency>
- <currency type="NIO">
- <displayName>کوردوبای نیکاراگوئه</displayName>
- </currency>
- <currency type="NLG">
- <displayName>گیلدر هلند</displayName>
- </currency>
- <currency type="NOK">
- <displayName>کرون نروژ</displayName>
- </currency>
- <currency type="NPR">
- <displayName>روپیهٔ نپال</displayName>
- </currency>
- <currency type="NZD">
- <displayName>دلار زلاند نو</displayName>
- </currency>
- <currency type="OMR">
- <displayName>ریال عمان</displayName>
- </currency>
- <currency type="PAB">
- <displayName>بالبوای پاناما</displayName>
- </currency>
- <currency type="PEN">
- <displayName>نوئووسول پرو</displayName>
- </currency>
- <currency type="PGK">
- <displayName>کینای پاپوا گینهٔ نو</displayName>
- </currency>
- <currency type="PHP">
- <displayName>پزوی فیلیپین</displayName>
- </currency>
- <currency type="PKR">
- <displayName>روپیهٔ پاکستان</displayName>
- </currency>
- <currency type="PLN">
- <displayName>زواتی لهستان</displayName>
- </currency>
- <currency type="PTE">
- <displayName>اسکودوی پرتغال</displayName>
- </currency>
- <currency type="PYG">
- <displayName>گوارانی پاراگوئه</displayName>
- </currency>
- <currency type="QAR">
- <displayName>ریال قطر</displayName>
- </currency>
- <currency type="RHD">
- <displayName>دلار رودزیا</displayName>
- </currency>
- <currency type="RON">
- <displayName>لئوی رومانی</displayName>
- </currency>
- <currency type="RSD">
- <displayName>دینار صربستان</displayName>
- </currency>
- <currency type="RUB">
- <displayName>روبل روسیه</displayName>
- </currency>
- <currency type="RUR">
- <displayName>روبل روسیه (۱۹۹۱ تا ۱۹۹۸)</displayName>
- </currency>
- <currency type="RWF">
- <displayName>فرانک رواندا</displayName>
- </currency>
- <currency type="SAR">
- <displayName>ریال سعودی</displayName>
- </currency>
- <currency type="SBD">
- <displayName>دلار جزایر سلیمان</displayName>
- </currency>
- <currency type="SCR">
- <displayName>روپیهٔ سیشل</displayName>
- </currency>
- <currency type="SDD">
- <displayName>دینار سودان (۱۹۹۲ تا ۲۰۰۷)</displayName>
- </currency>
- <currency type="SDG">
- <displayName>لیرهٔ سودان</displayName>
- </currency>
- <currency type="SEK">
- <displayName>کرون سوئد</displayName>
- </currency>
- <currency type="SGD">
- <displayName>دلار سنگاپور</displayName>
- </currency>
- <currency type="SHP">
- <displayName>پوند سنت هلن</displayName>
- </currency>
- <currency type="SLL">
- <displayName>لئون سیرالئون</displayName>
- </currency>
- <currency type="SOS">
- <displayName>شیلینگ سومالی</displayName>
- </currency>
- <currency type="SRD">
- <displayName>دلار سورینام</displayName>
- </currency>
- <currency type="SRG">
- <displayName>گیلدر سورینام</displayName>
- </currency>
- <currency type="SSP">
- <displayName>پوند سودان جنوبی</displayName>
- </currency>
- <currency type="STD">
- <displayName>دوبرای سائوتومه و پرنسیپ</displayName>
- </currency>
- <currency type="SUR">
- <displayName>روبل شوروی</displayName>
- </currency>
- <currency type="SYP">
- <displayName>لیرهٔ سوریه</displayName>
- </currency>
- <currency type="SZL">
- <displayName>لیلانگنی سوازیلند</displayName>
- </currency>
- <currency type="THB">
- <displayName>بات تایلند</displayName>
- </currency>
- <currency type="TJR">
- <displayName>روبل تاجیکستان</displayName>
- </currency>
- <currency type="TJS">
- <displayName>سامانی تاجیکستان</displayName>
- </currency>
- <currency type="TMM">
- <displayName>منات ترکمنستان (۱۹۹۳ تا ۲۰۰۹)</displayName>
- </currency>
- <currency type="TMT">
- <displayName>منات ترکمنستان</displayName>
- </currency>
- <currency type="TND">
- <displayName>دینار تونس</displayName>
- </currency>
- <currency type="TOP">
- <displayName>پاآنگای تونگا</displayName>
- </currency>
- <currency type="TPE">
- <displayName>اسکودوی تیمور</displayName>
- </currency>
- <currency type="TRL">
- <displayName>لیرهٔ ترکیه (۱۹۲۲ تا ۲۰۰۵)</displayName>
- </currency>
- <currency type="TRY">
- <displayName>لیرهٔ ترکیه</displayName>
- </currency>
- <currency type="TTD">
- <displayName>دلار ترینیداد و توباگو</displayName>
- </currency>
- <currency type="TWD">
- <displayName>دلار جدید تایوان</displayName>
- </currency>
- <currency type="TZS">
- <displayName>شیلینگ تانزانیا</displayName>
- </currency>
- <currency type="UAH">
- <displayName>هریونیای اوکراین</displayName>
- </currency>
- <currency type="UGS">
- <displayName>شیلینگ اوگاندا (۱۹۶۶ تا ۱۹۸۷)</displayName>
- </currency>
- <currency type="UGX">
- <displayName>شیلینگ اوگاندا</displayName>
- </currency>
- <currency type="USD">
- <displayName>دلار امریکا</displayName>
- </currency>
- <currency type="USN">
- <displayName>دلار امریکا (روز بعد)</displayName>
- </currency>
- <currency type="USS">
- <displayName>دلار امریکا (همان روز)</displayName>
- </currency>
- <currency type="UYP">
- <displayName>پزوی اوروگوئه (۱۹۷۵ تا ۱۹۹۳)</displayName>
- </currency>
- <currency type="UYU">
- <displayName>پزوی اوروگوئه</displayName>
- </currency>
- <currency type="UZS">
- <displayName>سوم ازبکستان</displayName>
- </currency>
- <currency type="VEF">
- <displayName>بولیوار ونزوئلا</displayName>
- </currency>
- <currency type="VND">
- <displayName>دانگ ویتنام</displayName>
- </currency>
- <currency type="VUV">
- <displayName>واتوی وانوواتو</displayName>
- </currency>
- <currency type="WST">
- <displayName>تالای ساموا</displayName>
- </currency>
- <currency type="XAF">
- <displayName>فرانک CFA مرکز آفریقا</displayName>
- </currency>
- <currency type="XAG">
- <displayName>نقره</displayName>
- </currency>
- <currency type="XAU">
- <displayName>طلا</displayName>
- </currency>
- <currency type="XCD">
- <displayName>دلار شرق کارائیب</displayName>
- </currency>
- <currency type="XFO">
- <displayName>فرانک طلای فرانسه</displayName>
- </currency>
- <currency type="XOF">
- <displayName>فرانک CFA غرب آفریقا</displayName>
- </currency>
- <currency type="XPD">
- <displayName>پالادیم</displayName>
- </currency>
- <currency type="XPF">
- <displayName>فرانک CFP</displayName>
- </currency>
- <currency type="XPT">
- <displayName>پلاتین</displayName>
- </currency>
- <currency type="XXX">
- <displayName>ارز نامشخص</displayName>
- </currency>
- <currency type="YDD">
- <displayName>دینار یمن</displayName>
- </currency>
- <currency type="YER">
- <displayName>ریال یمن</displayName>
- </currency>
- <currency type="ZAR">
- <displayName>راند افریقای جنوبی</displayName>
- </currency>
- <currency type="ZMK">
- <displayName>کواچای زامبیا (۱۹۶۸ تا ۲۰۱۲)</displayName>
- </currency>
- <currency type="ZMW">
- <displayName>کواچای زامبیا</displayName>
- </currency>
- <currency type="ZWD">
- <displayName>دلار زیمبابوه (۱۹۸۰ تا ۲۰۰۸)</displayName>
- </currency>
- <currency type="ZWL">
- <displayName>دلار زیمبابوه (۲۰۰۹)</displayName>
- </currency>
- <currency type="ZWR">
- <displayName>دلار زیمبابوه (۲۰۰۸)</displayName>
- </currency>
- </currencies>
- </numbers>
- <units>
- <unit type="day">
- <unitPattern count="other">{0} روز</unitPattern>
- <unitPattern count="other" alt="short">{0} روز</unitPattern>
- </unit>
- <unit type="day-future">
- <unitPattern count="other">{0} روز بعد</unitPattern>
- </unit>
- <unit type="day-past">
- <unitPattern count="other">{0} روز پیش</unitPattern>
- </unit>
- <unit type="hour">
- <unitPattern count="other">{0} ساعت</unitPattern>
- <unitPattern count="other" alt="short">{0} ساعت</unitPattern>
- </unit>
- <unit type="hour-future">
- <unitPattern count="other">{0} ساعت بعد</unitPattern>
- </unit>
- <unit type="hour-past">
- <unitPattern count="other">{0} ساعت پیش</unitPattern>
- </unit>
- <unit type="minute">
- <unitPattern count="other">{0} دقیقه</unitPattern>
- <unitPattern count="other" alt="short">{0} دقیقه</unitPattern>
- </unit>
- <unit type="minute-future">
- <unitPattern count="other">{0} دقیقه بعد</unitPattern>
- </unit>
- <unit type="minute-past">
- <unitPattern count="other">{0} دقیقه پیش</unitPattern>
- </unit>
- <unit type="month">
- <unitPattern count="other">{0} ماه</unitPattern>
- <unitPattern count="other" alt="short">{0} ماه</unitPattern>
- </unit>
- <unit type="month-future">
- <unitPattern count="other">{0} ماه بعد</unitPattern>
- </unit>
- <unit type="month-past">
- <unitPattern count="other">{0} ماه پیش</unitPattern>
- </unit>
- <unit type="second">
- <unitPattern count="other">{0} ثانیه</unitPattern>
- <unitPattern count="other" alt="short">{0} ثانیه</unitPattern>
- </unit>
- <unit type="second-future">
- <unitPattern count="other">{0} ثانیه بعد</unitPattern>
- </unit>
- <unit type="second-past">
- <unitPattern count="other">{0} ثانیه پیش</unitPattern>
- </unit>
- <unit type="week">
- <unitPattern count="other">{0} هفته</unitPattern>
- <unitPattern count="other" alt="short">{0} هفته</unitPattern>
- </unit>
- <unit type="week-future">
- <unitPattern count="other">{0} هفته بعد</unitPattern>
- </unit>
- <unit type="week-past">
- <unitPattern count="other">{0} هفته پیش</unitPattern>
- </unit>
- <unit type="year">
- <unitPattern count="other">{0} سال</unitPattern>
- <unitPattern count="other" alt="short">{0} سال</unitPattern>
- </unit>
- <unit type="year-future">
- <unitPattern count="other">{0} سال بعد</unitPattern>
- </unit>
- <unit type="year-past">
- <unitPattern count="other">{0} سال پیش</unitPattern>
- </unit>
- </units>
- <listPatterns>
- <listPattern>
- <listPatternPart type="2">{0} و {1}</listPatternPart>
- <listPatternPart type="end">{0}، و {1}</listPatternPart>
- <listPatternPart type="middle">{0}، {1}</listPatternPart>
- <listPatternPart type="start">{0}، {1}</listPatternPart>
- </listPattern>
- </listPatterns>
- <posix>
- <messages>
- <yesstr>بله:ب:آری:آ</yesstr>
- <nostr>نه:ن:خیر:خ</nostr>
- </messages>
- </posix>
- </ldml>
|