123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857 |
- <?xml version="1.0" encoding="UTF-8" ?>
- <!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
- <!-- Copyright © 1991-2013 Unicode, Inc.
- CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
- For terms of use, see http://www.unicode.org/copyright.html
- -->
- <ldml>
- <identity>
- <version number="$Revision: 9852 $"/>
- <generation date="$Date: 2014-02-28 23:57:43 -0600 (Fri, 28 Feb 2014) $"/>
- <language type="ur"/>
- </identity>
- <localeDisplayNames>
- <localeDisplayPattern>
- <localePattern>{0} ({1})</localePattern>
- <localeSeparator>{0}،{1}</localeSeparator>
- <localeKeyTypePattern>{0}: {1}</localeKeyTypePattern>
- </localeDisplayPattern>
- <languages>
- <language type="ab">ابقازیان</language>
- <language type="ach">اکولی</language>
- <language type="af">ایفریکانز</language>
- <language type="ak">اکان</language>
- <language type="am">امہاری</language>
- <language type="ar">عربی</language>
- <language type="ar_001">ماڈرن اسٹینڈرڈ عربی</language>
- <language type="as">آسامی</language>
- <language type="ay">ایمارا</language>
- <language type="az">آزربائیجانی</language>
- <language type="az" alt="short">ازیری</language>
- <language type="be">بیلاروسی</language>
- <language type="bem">بیمبا</language>
- <language type="bg">بلغاری</language>
- <language type="bn">بنگالی</language>
- <language type="bo">تبتی</language>
- <language type="br">بریٹن</language>
- <language type="bs">بوسنی</language>
- <language type="ca">کاٹالانین</language>
- <language type="chr">چیروکی</language>
- <language type="ckb">سورانی کردش</language>
- <language type="co">کوراسیکن</language>
- <language type="cs">چیک</language>
- <language type="cy">ویلش</language>
- <language type="da">ڈینش</language>
- <language type="de">جرمن</language>
- <language type="de_AT">آسٹریائی جرمن</language>
- <language type="de_CH">سوئس ہائی جرمن</language>
- <language type="dv">ڈیویہی</language>
- <language type="dz">ژونگکھا</language>
- <language type="ee">ایو</language>
- <language type="efi">ایفِک</language>
- <language type="el">یونانی</language>
- <language type="en">انگریزی</language>
- <language type="en_AU">آسٹریلیائی انگریزی</language>
- <language type="en_CA">کینیڈین انگریزی</language>
- <language type="en_GB">برطانوی انگریزی</language>
- <language type="en_GB" alt="short">برطانوی انگلش</language>
- <language type="en_US">امریکی انگریزی</language>
- <language type="en_US" alt="short">امریکی انگلش</language>
- <language type="eo">ایسپرانٹو</language>
- <language type="es">ہسپانوی</language>
- <language type="es_419">لاطینی امریکی ہسپانوی</language>
- <language type="es_ES">یورپی ہسپانوی</language>
- <language type="es_MX">میکسیکن ہسپانوی</language>
- <language type="et">اسٹونین</language>
- <language type="eu">باسکی</language>
- <language type="fa">فارسی</language>
- <language type="fi">فینیش</language>
- <language type="fil">فلیپینو</language>
- <language type="fj">فجی کا باشندہ</language>
- <language type="fo">فیروئیز</language>
- <language type="fr">فرانسیسی</language>
- <language type="fr_CA">کینیڈین فرانسیسی</language>
- <language type="fr_CH">سوئس فرینچ</language>
- <language type="fy">مغربی فریسیئن</language>
- <language type="ga">آئیرِش</language>
- <language type="gaa">گا</language>
- <language type="gd" draft="contributed">سکاٹ گیلِک</language>
- <language type="gl">گالیشیائی</language>
- <language type="gn">گُارانی</language>
- <language type="gsw">سوئس جرمن</language>
- <language type="gu">گجراتی</language>
- <language type="ha">ہؤسا</language>
- <language type="haw">ہوائی کا باشندہ</language>
- <language type="he">عبرانی</language>
- <language type="hi">ہندی</language>
- <language type="hr">کراتی</language>
- <language type="ht">ہیتی</language>
- <language type="hu">ہنگیرین</language>
- <language type="hy">ارمینی</language>
- <language type="ia">بین لسانیات</language>
- <language type="id">انڈونیثیائی</language>
- <language type="ig">اِگبو</language>
- <language type="is">آئس لینڈ کا باشندہ</language>
- <language type="it">اطالوی</language>
- <language type="ja">جاپانی</language>
- <language type="jv">جاوی</language>
- <language type="ka">جارجی</language>
- <language type="kg">کانگو</language>
- <language type="kk">قزاخ</language>
- <language type="km">خمیر</language>
- <language type="kn">کنّاڈا</language>
- <language type="ko">کورین</language>
- <language type="ks">کشمیری</language>
- <language type="ku">کردش</language>
- <language type="ky">کرغیزی</language>
- <language type="la">لاطینی</language>
- <language type="lb">لگژمبرگ کا باشندہ</language>
- <language type="lg">گینڈا</language>
- <language type="ln" draft="contributed">لِنگَلا</language>
- <language type="lo">لاؤ</language>
- <language type="loz">لوزی</language>
- <language type="lt">لتھُواینین</language>
- <language type="lua">لیوبا لولوآ</language>
- <language type="lv">لیٹوین</language>
- <language type="mfe">موریسیین</language>
- <language type="mg">ملاگاسی</language>
- <language type="mi">ماؤری</language>
- <language type="mk">مقدونیائی</language>
- <language type="ml">مالایالم</language>
- <language type="mn" draft="contributed">منگؤلی</language>
- <language type="mr">مراٹهی</language>
- <language type="ms">مالائی</language>
- <language type="mt">مالٹی</language>
- <language type="my">برمی</language>
- <language type="nb">نارویجین بوکمل</language>
- <language type="nd">شمالی دبیل</language>
- <language type="ne">نیپالی</language>
- <language type="nl">ڈچ</language>
- <language type="nl_BE">فلیمِش</language>
- <language type="nn">نورویجینی نینورسک</language>
- <language type="no" draft="contributed">نارویجین</language>
- <language type="nso">شمالی سوتھو</language>
- <language type="ny">نیانجا</language>
- <language type="nyn">نینکول</language>
- <language type="oc">آکسیٹان</language>
- <language type="om">اورومو</language>
- <language type="or">اورِیا</language>
- <language type="os">اوسیٹک</language>
- <language type="pa">پنجابی</language>
- <language type="pl">پولستانی</language>
- <language type="ps">پشتو</language>
- <language type="pt">پُرتگالی</language>
- <language type="pt_BR">برازیلی پرتگالی</language>
- <language type="pt_PT">یورپی پرتگالی</language>
- <language type="qu">کویچوآ</language>
- <language type="rm">رومانش</language>
- <language type="rn">رونڈی</language>
- <language type="ro">رومنی</language>
- <language type="ru">روسی</language>
- <language type="rw">کینیاروانڈا</language>
- <language type="sa">سَنسکرِت</language>
- <language type="sd">سندھی</language>
- <language type="se">شمالی سامی</language>
- <language type="sg">سانگو</language>
- <language type="sh" draft="contributed">سربو-کروئیشین</language>
- <language type="si">سنہالا</language>
- <language type="sk">سلوواک</language>
- <language type="sl">سلووینیائی</language>
- <language type="sm">ساموآن</language>
- <language type="sn">شونا</language>
- <language type="so">صومالی</language>
- <language type="sq">البانی</language>
- <language type="sr">صربی</language>
- <language type="ss">سواتی</language>
- <language type="st">جنوبی سوتھو</language>
- <language type="su">سنڈانیز</language>
- <language type="sv">سویڈش</language>
- <language type="sw">سواحلی</language>
- <language type="ta">تمل</language>
- <language type="te">تیلگو</language>
- <language type="tet">ٹیٹم</language>
- <language type="tg">تاجک</language>
- <language type="th">تھائی</language>
- <language type="ti">ٹگرینیا</language>
- <language type="tk">ترکمان</language>
- <language type="tl" draft="unconfirmed">ٹیگا لوگ</language>
- <language type="tlh">کلنگن</language>
- <language type="tn">سوانا</language>
- <language type="to">ٹونگن</language>
- <language type="tpi">ٹوک پِسِن</language>
- <language type="tr">ترکی</language>
- <language type="ts">زونگا</language>
- <language type="tt">تاتار</language>
- <language type="tum">ٹمبوکا</language>
- <language type="tw" draft="unconfirmed">توی</language>
- <language type="ty">تاہیتی</language>
- <language type="ug">یوئگہر</language>
- <language type="uk">یوکرینیائی</language>
- <language type="und">نامعلوم زبان</language>
- <language type="ur">اردو</language>
- <language type="uz">ازبیک</language>
- <language type="ve">وینڈا</language>
- <language type="vi">ویتنامی</language>
- <language type="wo">وولوف</language>
- <language type="xh">ژوسا</language>
- <language type="yi">یدش</language>
- <language type="yo">یوروبا</language>
- <language type="zgh">اسٹینڈرڈ مغربی امازیقی</language>
- <language type="zh">چینی</language>
- <language type="zh_Hans">چینی (آسان کردہ)</language>
- <language type="zh_Hant">روایتی چینی</language>
- <language type="zu">زولو</language>
- <language type="zxx">کوئی لسانی مواد نہیں</language>
- </languages>
- <scripts>
- <script type="Arab">عربی</script>
- <script type="Arab" alt="variant">فارسی عربی</script>
- <script type="Armn">آرمینیائی</script>
- <script type="Beng">بنگالی</script>
- <script type="Bopo">بوپوموفو</script>
- <script type="Brai">بریل</script>
- <script type="Cyrl">کریلِک</script>
- <script type="Deva">دیوناگری</script>
- <script type="Ethi">ایتھوپیا کا باشندہ</script>
- <script type="Geor">جارجیا کا باشندہ</script>
- <script type="Grek">یونانی</script>
- <script type="Gujr">گجراتی</script>
- <script type="Guru">گرمکھی</script>
- <script type="Hang">ہنگول</script>
- <script type="Hani">ہان</script>
- <script type="Hans">آسان</script>
- <script type="Hans" alt="stand-alone">آسان ہان</script>
- <script type="Hant">روایتی</script>
- <script type="Hant" alt="stand-alone">روایتی ہان</script>
- <script type="Hebr">عبرانی</script>
- <script type="Hira">ہیراگینا</script>
- <script type="Jpan">جاپانی</script>
- <script type="Kana">کٹاکانا</script>
- <script type="Khmr">خمیر</script>
- <script type="Knda">کنڑ</script>
- <script type="Kore">کوریائی</script>
- <script type="Laoo">لاؤ</script>
- <script type="Latn">لاطینی</script>
- <script type="Mlym">ملیالم</script>
- <script type="Mong">منگولیائی</script>
- <script type="Mymr">میانمار</script>
- <script type="Orya">اڑیہ</script>
- <script type="Sinh">سنہالا</script>
- <script type="Taml">تمل</script>
- <script type="Telu">تیلگو</script>
- <script type="Thaa">تھانا</script>
- <script type="Thai">تھائی</script>
- <script type="Tibt">تبتی</script>
- <script type="Zsym">علامات</script>
- <script type="Zxxx">غیر تحریر شدہ</script>
- <script type="Zyyy">عام</script>
- <script type="Zzzz">نامعلوم رسم الخط</script>
- </scripts>
- <territories>
- <territory type="001">دنیا</territory>
- <territory type="002">افریقہ</territory>
- <territory type="003">شمالی امریکہ</territory>
- <territory type="005">جنوبی امریکہ</territory>
- <territory type="009">اوشیانیا</territory>
- <territory type="011">مغربی افریقہ</territory>
- <territory type="013">وسطی امریکہ</territory>
- <territory type="014">مشرقی افریقہ</territory>
- <territory type="015">شمالی افریقہ</territory>
- <territory type="017">وسطی افریقہ</territory>
- <territory type="018">جنوبی افریقہ کے علاقہ</territory>
- <territory type="019">امیریکاز</territory>
- <territory type="021">شمالی امریکہ کا علاقہ</territory>
- <territory type="029">کریبیائی</territory>
- <territory type="030">مشرقی ایشیا</territory>
- <territory type="034">جنوبی ایشیا</territory>
- <territory type="035">جنوب مشرقی ایشیا</territory>
- <territory type="039">جنوبی یورپ</territory>
- <territory type="053">آسٹریلیشیا</territory>
- <territory type="054">مالینیشیا</territory>
- <territory type="057">مائکرونیشیائی علاقہ</territory>
- <territory type="061">پولینیشیا</territory>
- <territory type="142">ایشیا</territory>
- <territory type="143">وسطی ایشیا</territory>
- <territory type="145">مغربی ایشیا</territory>
- <territory type="150">یوروپ</territory>
- <territory type="151">مشرقی یورپ</territory>
- <territory type="154">شمالی یورپ</territory>
- <territory type="155">مغربی یورپ</territory>
- <territory type="419">لاطینی امریکہ</territory>
- <territory type="AC">اسکینسیئن آئلینڈ</territory>
- <territory type="AD">انڈورا</territory>
- <territory type="AE">متحدہ عرب امارات</territory>
- <territory type="AF">افغانستان</territory>
- <territory type="AG">انٹیگوا اور باربودا</territory>
- <territory type="AI">انگوئیلا</territory>
- <territory type="AL">البانیہ</territory>
- <territory type="AM">آرمینیا</territory>
- <territory type="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">کانگو (DRC)</territory>
- <territory type="CF">وسط افریقی جمہوریہ</territory>
- <territory type="CG">کانگو - برازاویلے</territory>
- <territory type="CG" alt="variant">کانگو (جمہوریہ)</territory>
- <territory type="CH">سوئٹزر لینڈ</territory>
- <territory type="CI">کوٹ ڈی آئیوری</territory>
- <territory type="CI" alt="variant">آئیوری کوسٹ</territory>
- <territory type="CK">کک آئلینڈز</territory>
- <territory type="CL">چلی</territory>
- <territory type="CM">کیمرون</territory>
- <territory type="CN">چین</territory>
- <territory type="CO">کولمبیا</territory>
- <territory type="CP">کلپّرٹن آئلینڈ</territory>
- <territory type="CR">کوسٹا ریکا</territory>
- <territory type="CU">کیوبا</territory>
- <territory type="CV">کیپ ورڈی</territory>
- <territory type="CW">کیوراکاؤ</territory>
- <territory type="CX">کرسمس آئلینڈ</territory>
- <territory type="CY">قبرص</territory>
- <territory type="CZ">چیک جمہوریہ</territory>
- <territory type="DE">جرمنی</territory>
- <territory type="DG">ڈائجو گارسیا</territory>
- <territory type="DJ">جبوتی</territory>
- <territory type="DK">ڈنمارک</territory>
- <territory type="DM">ڈومنیکا</territory>
- <territory type="DO">ڈومنیکن جمہوریہ</territory>
- <territory type="DZ">الجیریا</territory>
- <territory type="EA">سیئوٹا اور میلیلا</territory>
- <territory type="EC">ایکواڈور</territory>
- <territory type="EE">اسٹونیا</territory>
- <territory type="EG">مصر</territory>
- <territory type="EH">مغربی صحارا</territory>
- <territory type="ER">اریٹیریا</territory>
- <territory type="ES">ہسپانیہ</territory>
- <territory type="ET">ایتھوپیا</territory>
- <territory type="EU">یوروپی یونین</territory>
- <territory type="FI">فن لینڈ</territory>
- <territory type="FJ">فجی</territory>
- <territory type="FK">فاکلینڈ جزائر</territory>
- <territory type="FK" alt="variant">فاکلینڈ جزائر (مالویناس)</territory>
- <territory type="FM">مائکرونیشیا</territory>
- <territory type="FO">فروئی آئلینڈز</territory>
- <territory type="FR">فرانس</territory>
- <territory type="GA">گیبون</territory>
- <territory type="GB">سلطنت متحدہ</territory>
- <territory type="GB" alt="short">یو کے</territory>
- <territory type="GD">غرناطہ</territory>
- <territory type="GE">جارجیا</territory>
- <territory type="GF">فرینچ گیانا</territory>
- <territory type="GG">گوئرنسی</territory>
- <territory type="GH">گھانا</territory>
- <territory type="GI">جبل الطارق</territory>
- <territory type="GL">گرین لینڈ</territory>
- <territory type="GM">گامبیا</territory>
- <territory type="GN">گنی</territory>
- <territory type="GP">گواڈیلوپ</territory>
- <territory type="GQ">استوائی گیانا</territory>
- <territory type="GR">یونان</territory>
- <territory type="GS">جنوبی جارجیا اور جنوبی سینڈوچ جزائر</territory>
- <territory type="GT">گواٹے مالا</territory>
- <territory type="GU">گوآم</territory>
- <territory type="GW">گنی بساؤ</territory>
- <territory type="GY">گیانا</territory>
- <territory type="HK">ہانگ کانگ SAR چین</territory>
- <territory type="HK" alt="short">ہانگ کانگ</territory>
- <territory type="HM">ہیئرڈ آئلینڈ اور میکڈونالڈ آئلینڈز</territory>
- <territory type="HN">ہونڈاروس</territory>
- <territory type="HR">کروشیا</territory>
- <territory type="HT">ہیتی</territory>
- <territory type="HU">ہنگری</territory>
- <territory type="IC">کینری آئلینڈز</territory>
- <territory type="ID">انڈونیشیا</territory>
- <territory type="IE">آئرلینڈ</territory>
- <territory type="IL">اسرائیل</territory>
- <territory type="IM">آئل آف مین</territory>
- <territory type="IN">بھارت</territory>
- <territory type="IO">برطانوی ہندوستانی سمندری خطہ</territory>
- <territory type="IQ">عراق</territory>
- <territory type="IR">ایران</territory>
- <territory type="IS">آئس لینڈ</territory>
- <territory type="IT">اٹلی</territory>
- <territory type="JE">جرسی</territory>
- <territory type="JM">جمائیکا</territory>
- <territory type="JO">اردن</territory>
- <territory type="JP">جاپان</territory>
- <territory type="KE">کینیا</territory>
- <territory type="KG">کرغزستان</territory>
- <territory type="KH">کمبوڈیا</territory>
- <territory type="KI">کریباتی</territory>
- <territory type="KM">کوموروس</territory>
- <territory type="KN">سینٹ کٹس اور نیویس</territory>
- <territory type="KP">شمالی کوریا</territory>
- <territory type="KR">جنوبی کوریا</territory>
- <territory type="KW">کویت</territory>
- <territory type="KY">کیمین آئلینڈز</territory>
- <territory type="KZ">قزاخستان</territory>
- <territory type="LA">لاؤس</territory>
- <territory type="LB">لبنان</territory>
- <territory type="LC">سینٹ لوسیا</territory>
- <territory type="LI">لیشٹنسٹائن</territory>
- <territory type="LK">سری لنکا</territory>
- <territory type="LR">لائبیریا</territory>
- <territory type="LS">لیسوتھو</territory>
- <territory type="LT">لتھوانیا</territory>
- <territory type="LU">لگژمبرگ</territory>
- <territory type="LV">لٹویا</territory>
- <territory type="LY">لیبیا</territory>
- <territory type="MA">مراقش</territory>
- <territory type="MC">موناکو</territory>
- <territory type="MD">مالدووا</territory>
- <territory type="ME">مونٹے نیگرو</territory>
- <territory type="MF">سینٹ مارٹن</territory>
- <territory type="MG">مڈغاسکر</territory>
- <territory type="MH">مارشل آئلینڈز</territory>
- <territory type="MK">مقدونیہ</territory>
- <territory type="MK" alt="variant">مقدونیہ (FYROM)</territory>
- <territory type="ML">مالی</territory>
- <territory type="MM">میانمار (برما)</territory>
- <territory type="MN">منگولیا</territory>
- <territory type="MO">مکاؤ SAR چین</territory>
- <territory type="MO" alt="short">مکاؤ</territory>
- <territory type="MP">شمالی ماریانا آئلینڈز</territory>
- <territory type="MQ">مارٹینک</territory>
- <territory type="MR">موریطانیہ</territory>
- <territory type="MS">مونٹسیراٹ</territory>
- <territory type="MT">مالٹا</territory>
- <territory type="MU">ماریشس</territory>
- <territory type="MV">مالدیو</territory>
- <territory type="MW">ملاوی</territory>
- <territory type="MX">میکسیکو</territory>
- <territory type="MY">ملیشیا</territory>
- <territory type="MZ">موزمبیق</territory>
- <territory type="NA">نامیبیا</territory>
- <territory type="NC">نیو کلیڈونیا</territory>
- <territory type="NE">نائجر</territory>
- <territory type="NF">نار فاک آئلینڈ</territory>
- <territory type="NG">نائجیریا</territory>
- <territory type="NI">نکاراگووا</territory>
- <territory type="NL">نیدر لینڈز</territory>
- <territory type="NO">ناروے</territory>
- <territory type="NP">نیپال</territory>
- <territory type="NR">نؤرو</territory>
- <territory type="NU">نیئو</territory>
- <territory type="NZ">نیوزی ینڈ</territory>
- <territory type="OM">عمان</territory>
- <territory type="PA">پنامہ</territory>
- <territory type="PE">پیرو</territory>
- <territory type="PF">فرانسیسی پولینیشیا</territory>
- <territory type="PG">پاپوآ نیو گنی</territory>
- <territory type="PH">فلپائنی</territory>
- <territory type="PK">پاکستان</territory>
- <territory type="PL">پولینڈ</territory>
- <territory type="PM">سینٹ پیئر اور میکلیئون</territory>
- <territory type="PN">پٹکائرن جزائر</territory>
- <territory type="PR">پیورٹو ریکو</territory>
- <territory type="PS">فلسطینی خطے</territory>
- <territory type="PS" alt="short">فلسطین</territory>
- <territory type="PT">پرتگال</territory>
- <territory type="PW">پلاؤ</territory>
- <territory type="PY">پیراگوئے</territory>
- <territory type="QA">قطر</territory>
- <territory type="QO">بیرونی اوشیانیا</territory>
- <territory type="RE">ری یونین</territory>
- <territory type="RO">رومانیا</territory>
- <territory type="RS">سربیا</territory>
- <territory type="RU">روسی</territory>
- <territory type="RW">روانڈا</territory>
- <territory type="SA">سعودی عرب</territory>
- <territory type="SB">سولومن آئلینڈز</territory>
- <territory type="SC">سشلیز</territory>
- <territory type="SD">سوڈان</territory>
- <territory type="SE">سویڈن</territory>
- <territory type="SG">سنگاپور</territory>
- <territory type="SH">سینٹ ہیلینا</territory>
- <territory type="SI">سلووینیا</territory>
- <territory type="SJ">سوالبرڈ اور جان ماین</territory>
- <territory type="SK">سلوواکیہ</territory>
- <territory type="SL">سیئر لیون</territory>
- <territory type="SM">سان مارینو</territory>
- <territory type="SN">سینیگل</territory>
- <territory type="SO">صومالیہ</territory>
- <territory type="SR">سورینام</territory>
- <territory type="SS">جنوبی سوڈان</territory>
- <territory type="ST">ساؤ ٹوم اور پرنسپے</territory>
- <territory type="SV">ال سلواڈور</territory>
- <territory type="SX">سنٹ مارٹن</territory>
- <territory type="SY">شام</territory>
- <territory type="SZ">سوازی لینڈ</territory>
- <territory type="TA">ٹرسٹن ڈا کیونہا</territory>
- <territory type="TC">ترکس اور کیکاؤس جزائر</territory>
- <territory type="TD">چاڈ</territory>
- <territory type="TF">فرانسیسی جنوبی خطے</territory>
- <territory type="TG">ٹوگو</territory>
- <territory type="TH">تھائی لینڈ</territory>
- <territory type="TJ">تاجکستان</territory>
- <territory type="TK">ٹوکیلاؤ</territory>
- <territory type="TL">تیمور لیسٹ</territory>
- <territory type="TL" alt="variant">مشرقی تیمور</territory>
- <territory type="TM">ترکمانستان</territory>
- <territory type="TN">تیونیسیا</territory>
- <territory type="TO">ٹونگا</territory>
- <territory type="TR">ترکی</territory>
- <territory type="TT">ترینیداد اور ٹوباگو</territory>
- <territory type="TV">ٹووالو</territory>
- <territory type="TW">تائیوان</territory>
- <territory type="TZ">تنزانیہ</territory>
- <territory type="UA">یوکرین</territory>
- <territory type="UG">یوگانڈا</territory>
- <territory type="UM">امریکہ سے باہر کے چھوٹے جزائز</territory>
- <territory type="US">ریاستہائے متحدہ</territory>
- <territory type="US" alt="short">امریکا</territory>
- <territory type="UY">یوروگوئے</territory>
- <territory type="UZ">ازبکستان</territory>
- <territory type="VA">واٹیکن سٹی</territory>
- <territory type="VC">سینٹ ونسنٹ اور گرینیڈائنز</territory>
- <territory type="VE">وینزوئیلا</territory>
- <territory type="VG">برٹش ورجن آئلینڈز</territory>
- <territory type="VI">امریکی ورجن آئلینڈز</territory>
- <territory type="VN">ویتنام</territory>
- <territory type="VU">وینوآٹو</territory>
- <territory type="WF">ویلیز اور فیوٹیونا</territory>
- <territory type="WS">ساموآ</territory>
- <territory type="XK">کوسووو</territory>
- <territory type="YE">یمن</territory>
- <territory type="YT">مایوٹ</territory>
- <territory type="ZA">جنوبی افریقہ</territory>
- <territory type="ZM">زامبیا</territory>
- <territory type="ZW">زمبابوے</territory>
- <territory type="ZZ">نامعلوم علاقہ</territory>
- </territories>
- <keys>
- <key type="calendar">کیلنڈر</key>
- <key type="colAlternate">علامات کی چھٹائی نظرانداز کریں</key>
- <key type="colBackwards">معکوس تلفظ کی چھٹائی</key>
- <key type="colCaseFirst">بڑے حروف/ چھوٹے حروف کی ترتیب بندی</key>
- <key type="colCaseLevel">حروف کے تئیں حساس چھٹائی</key>
- <key type="colHiraganaQuaternary">Kena چھٹائی</key>
- <key type="collation">چھٹائی کی ترتیب</key>
- <key type="colNormalization">معمول کی چھٹائی</key>
- <key type="colNumeric">عددی چھٹائی</key>
- <key type="colStrength">چھٹائی کی قوت</key>
- <key type="currency">کرنسی</key>
- <key type="numbers">اعداد</key>
- <key type="timezone">منطقۂ وقت</key>
- <key type="va">مقام کا متغیرہ</key>
- <key type="variableTop">بطور علامات چھٹائی کریں</key>
- <key type="x">نجی-استعمال</key>
- </keys>
- <types>
- <type type="arab" key="numbers">عربی ہندی ہندسے</type>
- <type type="arabext" key="numbers">توسیع شدہ عربی ہندی ہندسے</type>
- <type type="armn" key="numbers">آرمینیائی اعداد</type>
- <type type="armnlow" key="numbers">آرمینیائی زیریں اعداد</type>
- <type type="beng" key="numbers">ہنگالی ہندسے</type>
- <type type="big5han" key="collation">روایتی چینی کی چھٹائی کی ترتیب - 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="jpan" key="numbers">جاپانی اعداد</type>
- <type type="jpanfin" key="numbers">جاپانی مالی اعداد</type>
- <type type="khmr" key="numbers">خمیر ہندسے</type>
- <type type="knda" key="numbers">کنڑ ہندسے</type>
- <type type="laoo" key="numbers">لاؤ ہندسے</type>
- <type type="latn" key="numbers">مغربی ہندسے</type>
- <type type="lower" key="colCaseFirst">پہلے چھوٹے حروف کی چھٹائی کریں</type>
- <type type="mlym" key="numbers">ملیالم ہندسے</type>
- <type type="mong" key="numbers">منگولیائی ہندسے</type>
- <type type="mymr" key="numbers">میانمار کے ہندسے</type>
- <type type="native" key="numbers">اصل ہندسے</type>
- <type type="no" key="colBackwards">لہجوں کی چھٹائی معمول کے انداز میں کریں</type>
- <type type="no" key="colCaseFirst">معمول کے حروف کی ترتیب کی چھٹائی کریں</type>
- <type type="no" key="colCaseLevel">حروف کی عدم حساسیت کی چھٹائی کریں</type>
- <type type="no" key="colHiraganaQuaternary">Kana کی چھٹائی الگ الگ کریں</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">لہجہ/ بڑے چھوٹے حروف/چوڑائی/Kana کی چھٹائی کریں</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">Hangul Initial Consonant کے لحاظ سے تلاش کریں</type>
- <type type="secondary" key="colStrength">لہجوں کی چھٹائی کریں</type>
- <type type="shifted" key="colAlternate">علامات کو نظرانداز کرکے چھٹائی کریں</type>
- <type type="standard" key="collation">معیاری چھنٹائی کی ترتیب</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">Kana کی مختلف طریقے سے چھٹائی کریں</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>[ا أ آ ب پ ت ٹ ث ج چ ح خ د ڈ ذ ر ڑ ز ژ س ش ص ض ط ظ ع غ ف ق ک گ ل م ن ں و ؤ ہ ۂ ھ ء ی ئ ے ة ه]</exemplarCharacters>
- <exemplarCharacters type="auxiliary">[\u200C\u200D\u200E\u200F \u064B \u064C \u064D \u064E \u064F \u0650 \u0651 \u0652 \u0654 \u0656 \u0657 \u0658 \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>d/M/y GGGGG</pattern>
- </dateFormat>
- </dateFormatLength>
- </dateFormats>
- <dateTimeFormats>
- <dateTimeFormatLength type="full">
- <dateTimeFormat>
- <pattern>{1} {0}</pattern>
- </dateTimeFormat>
- </dateTimeFormatLength>
- <dateTimeFormatLength type="long">
- <dateTimeFormat>
- <pattern>{1} {0}</pattern>
- </dateTimeFormat>
- </dateTimeFormatLength>
- <dateTimeFormatLength type="medium">
- <dateTimeFormat>
- <pattern>{1} {0}</pattern>
- </dateTimeFormat>
- </dateTimeFormatLength>
- <dateTimeFormatLength type="short">
- <dateTimeFormat>
- <pattern>{1} {0}</pattern>
- </dateTimeFormat>
- </dateTimeFormatLength>
- <availableFormats>
- <dateFormatItem id="d">d</dateFormatItem>
- <dateFormatItem id="Ed">d E</dateFormatItem>
- <dateFormatItem id="Gy">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">HH</dateFormatItem>
- <dateFormatItem id="hm">h:mm a</dateFormatItem>
- <dateFormatItem id="Hm">HH:mm</dateFormatItem>
- <dateFormatItem id="hms">h:mm:ss a</dateFormatItem>
- <dateFormatItem id="Hms">HH:mm:ss</dateFormatItem>
- <dateFormatItem id="M">L</dateFormatItem>
- <dateFormatItem id="Md">d/M</dateFormatItem>
- <dateFormatItem id="MEd">E، d/M</dateFormatItem>
- <dateFormatItem id="MMM">LLL</dateFormatItem>
- <dateFormatItem id="MMMd">d MMM</dateFormatItem>
- <dateFormatItem id="MMMEd">E، d MMM</dateFormatItem>
- <dateFormatItem id="ms">mm:ss</dateFormatItem>
- <dateFormatItem id="y">y G</dateFormatItem>
- <dateFormatItem id="yyyy">y G</dateFormatItem>
- <dateFormatItem id="yyyyM">M/y G</dateFormatItem>
- <dateFormatItem id="yyyyMd">d/M/y G</dateFormatItem>
- <dateFormatItem id="yyyyMEd">E، d/M/y 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">QQQ y G</dateFormatItem>
- <dateFormatItem id="yyyyQQQQ">QQQQ y G</dateFormatItem>
- </availableFormats>
- <intervalFormats>
- <intervalFormatFallback>{0} – {1}</intervalFormatFallback>
- <intervalFormatItem id="d">
- <greatestDifference id="d">d–d</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="h">
- <greatestDifference id="a">h a – h a</greatestDifference>
- <greatestDifference id="h">h–h a</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="H">
- <greatestDifference id="H">HH–HH</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="hm">
- <greatestDifference id="a">h:mm a – h:mm a</greatestDifference>
- <greatestDifference id="h">h:mm–h:mm a</greatestDifference>
- <greatestDifference id="m">h:mm–h:mm a</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="Hm">
- <greatestDifference id="H">HH:mm–HH:mm</greatestDifference>
- <greatestDifference id="m">HH:mm–HH:mm</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="hmv">
- <greatestDifference id="a">h:mm a – h:mm a v</greatestDifference>
- <greatestDifference id="h">h:mm–h:mm a v</greatestDifference>
- <greatestDifference id="m">h:mm–h:mm a v</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="Hmv">
- <greatestDifference id="H">HH:mm–HH:mm v</greatestDifference>
- <greatestDifference id="m">HH:mm–HH:mm v</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="hv">
- <greatestDifference id="a">h a – h a v</greatestDifference>
- <greatestDifference id="h">h–h a v</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="Hv">
- <greatestDifference id="H">HH–HH v</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="M">
- <greatestDifference id="M">M–M</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="Md">
- <greatestDifference id="d">d/M – d/M</greatestDifference>
- <greatestDifference id="M">d/M – d/M</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MEd">
- <greatestDifference id="d">E، d/M – E، d/M</greatestDifference>
- <greatestDifference id="M">E، d/M – E، d/M</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MMM">
- <greatestDifference id="M">MMM–MMM</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MMMd">
- <greatestDifference id="d">d–d MMM</greatestDifference>
- <greatestDifference id="M">d MMM – d MMM</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MMMEd">
- <greatestDifference id="d">E، d MMM – E، d MMM</greatestDifference>
- <greatestDifference id="M">E، d MMM – E، d MMM</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="y">
- <greatestDifference id="y">y–y G</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yM">
- <greatestDifference id="M">M/y – M/y G</greatestDifference>
- <greatestDifference id="y">M/y – M/y G</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMd">
- <greatestDifference id="d">d/M/y - d/M/y G</greatestDifference>
- <greatestDifference id="M">d/M/y – d/M/y G</greatestDifference>
- <greatestDifference id="y">d/M/y – d/M/y G</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMEd">
- <greatestDifference id="d">E، d/M/y – E، d/M/y G</greatestDifference>
- <greatestDifference id="M">E، d/M/y – E، d/M/y G</greatestDifference>
- <greatestDifference id="y">E، d/M/y – E، d/M/y G</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMMM">
- <greatestDifference id="M">MMM–MMM y G</greatestDifference>
- <greatestDifference id="y">MMM y – MMM y G</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMMMd">
- <greatestDifference id="d">d-d MMM، y G</greatestDifference>
- <greatestDifference id="M">d MMM – d MMM، y G</greatestDifference>
- <greatestDifference id="y">d MMM، y – d MMM، y G</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMMMEd">
- <greatestDifference id="d">E، d MMM – E، d MMM، y G</greatestDifference>
- <greatestDifference id="M">E، d MMM – E، d MMM، y G</greatestDifference>
- <greatestDifference id="y">E، d MMM، y – E، d MMM، y G</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMMMM">
- <greatestDifference id="M">MMMM–MMMM y G</greatestDifference>
- <greatestDifference id="y">MMMM y – MMMM y G</greatestDifference>
- </intervalFormatItem>
- </intervalFormats>
- </dateTimeFormats>
- </calendar>
- <calendar type="gregorian">
- <months>
- <monthContext type="format">
- <monthWidth type="abbreviated">
- <month type="1">جنوری</month>
- <month type="2">فروری</month>
- <month type="3">مارچ</month>
- <month type="4">اپریل</month>
- <month type="5">مئی</month>
- <month type="6">جون</month>
- <month type="7">جولائی</month>
- <month type="8">اگست</month>
- <month type="9">ستمبر</month>
- <month type="10">اکتوبر</month>
- <month type="11">نومبر</month>
- <month type="12">دسمبر</month>
- </monthWidth>
- <monthWidth type="narrow">
- <month type="1">J</month>
- <month type="2">F</month>
- <month type="3">M</month>
- <month type="4">A</month>
- <month type="5">M</month>
- <month type="6">J</month>
- <month type="7">J</month>
- <month type="8">A</month>
- <month type="9">S</month>
- <month type="10">O</month>
- <month type="11">N</month>
- <month type="12">D</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">J</month>
- <month type="2">F</month>
- <month type="3">M</month>
- <month type="4">A</month>
- <month type="5">M</month>
- <month type="6">J</month>
- <month type="7">J</month>
- <month type="8">A</month>
- <month type="9">S</month>
- <month type="10">O</month>
- <month type="11">N</month>
- <month type="12">D</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">S</day>
- <day type="mon">M</day>
- <day type="tue">T</day>
- <day type="wed">W</day>
- <day type="thu">T</day>
- <day type="fri">F</day>
- <day type="sat">S</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">S</day>
- <day type="mon">M</day>
- <day type="tue">T</day>
- <day type="wed">W</day>
- <day type="thu">T</day>
- <day type="fri">F</day>
- <day type="sat">S</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="narrow">
- <quarter type="1">1</quarter>
- <quarter type="2">2</quarter>
- <quarter type="3">3</quarter>
- <quarter type="4">4</quarter>
- </quarterWidth>
- <quarterWidth type="wide">
- <quarter type="1">پہلی سہ ماہی</quarter>
- <quarter type="2">دوسری سہ ماہی</quarter>
- <quarter type="3">تیسری سہ ماہی</quarter>
- <quarter type="4">چوتهی سہ ماہی</quarter>
- </quarterWidth>
- </quarterContext>
- <quarterContext type="stand-alone">
- <quarterWidth type="narrow">
- <quarter type="1">1</quarter>
- <quarter type="2">2</quarter>
- <quarter type="3">3</quarter>
- <quarter type="4">4</quarter>
- </quarterWidth>
- </quarterContext>
- </quarters>
- <dayPeriods>
- <dayPeriodContext type="format">
- <dayPeriodWidth type="abbreviated">
- <dayPeriod type="am">قبل دوپہر</dayPeriod>
- <dayPeriod type="pm">بعد دوپہر</dayPeriod>
- </dayPeriodWidth>
- <dayPeriodWidth type="wide">
- <dayPeriod type="am">قبل دوپہر</dayPeriod>
- <dayPeriod type="pm">بعد دوپہر</dayPeriod>
- </dayPeriodWidth>
- </dayPeriodContext>
- </dayPeriods>
- <eras>
- <eraNames>
- <era type="0">قبل مسیح</era>
- <era type="1">عیسوی سن</era>
- </eraNames>
- <eraAbbr>
- <era type="0">ق م</era>
- <era type="0" alt="variant">BCE</era>
- <era type="1">عیسوی سن</era>
- <era type="1" alt="variant">CE</era>
- </eraAbbr>
- </eras>
- <dateFormats>
- <dateFormatLength type="full">
- <dateFormat>
- <pattern>EEEE، d MMMM، y</pattern>
- </dateFormat>
- </dateFormatLength>
- <dateFormatLength type="long">
- <dateFormat>
- <pattern>d MMMM، y</pattern>
- </dateFormat>
- </dateFormatLength>
- <dateFormatLength type="medium">
- <dateFormat>
- <pattern>d MMM، y</pattern>
- </dateFormat>
- </dateFormatLength>
- <dateFormatLength type="short">
- <dateFormat>
- <pattern>d/M/yy</pattern>
- </dateFormat>
- </dateFormatLength>
- </dateFormats>
- <timeFormats>
- <timeFormatLength type="full">
- <timeFormat>
- <pattern>h:mm:ss a zzzz</pattern>
- </timeFormat>
- </timeFormatLength>
- <timeFormatLength type="long">
- <timeFormat>
- <pattern>h:mm:ss a z</pattern>
- </timeFormat>
- </timeFormatLength>
- <timeFormatLength type="medium">
- <timeFormat>
- <pattern>h:mm:ss a</pattern>
- </timeFormat>
- </timeFormatLength>
- <timeFormatLength type="short">
- <timeFormat>
- <pattern>h:mm a</pattern>
- </timeFormat>
- </timeFormatLength>
- </timeFormats>
- <dateTimeFormats>
- <dateTimeFormatLength type="full">
- <dateTimeFormat>
- <pattern>{1} {0}</pattern>
- </dateTimeFormat>
- </dateTimeFormatLength>
- <dateTimeFormatLength type="long">
- <dateTimeFormat>
- <pattern>{1} {0}</pattern>
- </dateTimeFormat>
- </dateTimeFormatLength>
- <dateTimeFormatLength type="medium">
- <dateTimeFormat>
- <pattern>{1} {0}</pattern>
- </dateTimeFormat>
- </dateTimeFormatLength>
- <dateTimeFormatLength type="short">
- <dateTimeFormat>
- <pattern>{1} {0}</pattern>
- </dateTimeFormat>
- </dateTimeFormatLength>
- <availableFormats>
- <dateFormatItem id="d">d</dateFormatItem>
- <dateFormatItem id="Ed">d E</dateFormatItem>
- <dateFormatItem id="Ehm">E h:mm a</dateFormatItem>
- <dateFormatItem id="EHm">E HH:mm</dateFormatItem>
- <dateFormatItem id="Ehms">E h:mm:ss a</dateFormatItem>
- <dateFormatItem id="EHms">E HH:mm:ss</dateFormatItem>
- <dateFormatItem id="Gy">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">HH</dateFormatItem>
- <dateFormatItem id="hm">h:mm a</dateFormatItem>
- <dateFormatItem id="Hm">HH:mm</dateFormatItem>
- <dateFormatItem id="hms">h:mm:ss a</dateFormatItem>
- <dateFormatItem id="Hms">HH:mm:ss</dateFormatItem>
- <dateFormatItem id="M">L</dateFormatItem>
- <dateFormatItem id="Md">d/M</dateFormatItem>
- <dateFormatItem id="MEd">E، d/M</dateFormatItem>
- <dateFormatItem id="MMM">LLL</dateFormatItem>
- <dateFormatItem id="MMMd">d MMM</dateFormatItem>
- <dateFormatItem id="MMMEd">E، d MMM</dateFormatItem>
- <dateFormatItem id="ms">mm:ss</dateFormatItem>
- <dateFormatItem id="y">y</dateFormatItem>
- <dateFormatItem id="yM">M/y</dateFormatItem>
- <dateFormatItem id="yMd">d/M/y</dateFormatItem>
- <dateFormatItem id="yMEd">E، d/M/y</dateFormatItem>
- <dateFormatItem id="yMMM">MMM y</dateFormatItem>
- <dateFormatItem id="yMMMd">d MMM، y</dateFormatItem>
- <dateFormatItem id="yMMMEd">E، d MMM، y</dateFormatItem>
- <dateFormatItem id="yQQQ">QQQ y</dateFormatItem>
- <dateFormatItem id="yQQQQ">QQQQ y</dateFormatItem>
- </availableFormats>
- <appendItems>
- <appendItem request="Timezone">{0} {1}</appendItem>
- </appendItems>
- <intervalFormats>
- <intervalFormatFallback>{0} – {1}</intervalFormatFallback>
- <intervalFormatItem id="d">
- <greatestDifference id="d">d–d</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="h">
- <greatestDifference id="a">h a – h a</greatestDifference>
- <greatestDifference id="h">h–h a</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="H">
- <greatestDifference id="H">HH–HH</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="hm">
- <greatestDifference id="a">h:mm a – h:mm a</greatestDifference>
- <greatestDifference id="h">h:mm–h:mm a</greatestDifference>
- <greatestDifference id="m">h:mm–h:mm a</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="Hm">
- <greatestDifference id="H">HH:mm–HH:mm</greatestDifference>
- <greatestDifference id="m">HH:mm–HH:mm</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="hmv">
- <greatestDifference id="a">h:mm a – h:mm a v</greatestDifference>
- <greatestDifference id="h">h:mm–h:mm a v</greatestDifference>
- <greatestDifference id="m">h:mm–h:mm a v</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="Hmv">
- <greatestDifference id="H">HH:mm–HH:mm v</greatestDifference>
- <greatestDifference id="m">HH:mm–HH:mm v</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="hv">
- <greatestDifference id="a">h a – h a v</greatestDifference>
- <greatestDifference id="h">h–h a v</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="Hv">
- <greatestDifference id="H">HH–HH v</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="M">
- <greatestDifference id="M">M–M</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="Md">
- <greatestDifference id="d">d/M – d/M</greatestDifference>
- <greatestDifference id="M">d/M – d/M</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MEd">
- <greatestDifference id="d">E، d/M – E، d/M</greatestDifference>
- <greatestDifference id="M">E، d/M – E، d/M</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MMM">
- <greatestDifference id="M">MMM–MMM</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MMMd">
- <greatestDifference id="d">d–d MMM</greatestDifference>
- <greatestDifference id="M">d MMM – d MMM</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MMMEd">
- <greatestDifference id="d">E، d MMM – E، d MMM</greatestDifference>
- <greatestDifference id="M">E، d MMM – E، d MMM</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="y">
- <greatestDifference id="y">y–y</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yM">
- <greatestDifference id="M">M/y – M/y</greatestDifference>
- <greatestDifference id="y">M/y – M/y</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMd">
- <greatestDifference id="d">d/M/y - d/M/y</greatestDifference>
- <greatestDifference id="M">d/M/y – d/M/y</greatestDifference>
- <greatestDifference id="y">d/M/y – d/M/y</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMEd">
- <greatestDifference id="d">E، d/M/y – E، d/M/y</greatestDifference>
- <greatestDifference id="M">E، d/M/y – E، d/M/y</greatestDifference>
- <greatestDifference id="y">E، d/M/y – E، d/M/y</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMMM">
- <greatestDifference id="M">MMM–MMM y</greatestDifference>
- <greatestDifference id="y">MMM y – MMM y</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMMMd">
- <greatestDifference id="d">d-d MMM، y</greatestDifference>
- <greatestDifference id="M">d MMM – d MMM، y</greatestDifference>
- <greatestDifference id="y">d MMM، y – d MMM، y</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMMMEd">
- <greatestDifference id="d">E، d MMM – E، d MMM، y</greatestDifference>
- <greatestDifference id="M">E، d MMM – E، d MMM، y</greatestDifference>
- <greatestDifference id="y">E، d MMM، y – E، d MMM، y</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMMMM">
- <greatestDifference id="M">MMMM–MMMM y</greatestDifference>
- <greatestDifference id="y">MMMM y – MMMM y</greatestDifference>
- </intervalFormatItem>
- </intervalFormats>
- </dateTimeFormats>
- </calendar>
- <calendar type="islamic">
- <months>
- <monthContext type="format">
- <monthWidth type="wide">
- <month type="1" draft="contributed">محرم</month>
- <month type="2" draft="contributed">صفر</month>
- <month type="3" draft="contributed">ر بیع الاول</month>
- <month type="4" draft="contributed">ر بیع الثانی</month>
- <month type="5" draft="contributed">جمادی الاول</month>
- <month type="6" draft="contributed">جمادی الثانی</month>
- <month type="7" draft="contributed">رجب</month>
- <month type="8" draft="contributed">شعبان</month>
- <month type="9" draft="contributed">رمضان</month>
- <month type="10" draft="contributed">شوال</month>
- <month type="11" draft="contributed">ذوالقعدۃ</month>
- <month type="12" draft="contributed">ذوالحجۃ</month>
- </monthWidth>
- </monthContext>
- </months>
- <eras>
- <eraAbbr>
- <era type="0" draft="unconfirmed">ق م</era>
- <era type="1" draft="unconfirmed">عیسوی سن</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>
- <relativeTime type="future">
- <relativeTimePattern count="one">{0} سال میں</relativeTimePattern>
- <relativeTimePattern count="other">{0} سال میں</relativeTimePattern>
- </relativeTime>
- <relativeTime type="past">
- <relativeTimePattern count="one">{0} سال پہلے</relativeTimePattern>
- <relativeTimePattern count="other">{0} سال پہلے</relativeTimePattern>
- </relativeTime>
- </field>
- <field type="month">
- <displayName>مہینہ</displayName>
- <relative type="-1">پچھلے مہینہ</relative>
- <relative type="0">اس مہینہ</relative>
- <relative type="1">اگلے مہینہ</relative>
- <relativeTime type="future">
- <relativeTimePattern count="one">{0} مہینہ میں</relativeTimePattern>
- <relativeTimePattern count="other">{0} مہینے میں</relativeTimePattern>
- </relativeTime>
- <relativeTime type="past">
- <relativeTimePattern count="one">{0} مہینہ پہلے</relativeTimePattern>
- <relativeTimePattern count="other">{0} مہینے پہلے</relativeTimePattern>
- </relativeTime>
- </field>
- <field type="week">
- <displayName>ہفتہ</displayName>
- <relative type="-1">پچھلے ہفتہ</relative>
- <relative type="0">اس ہفتہ</relative>
- <relative type="1">اگلے ہفتہ</relative>
- <relativeTime type="future">
- <relativeTimePattern count="one">{0} ہفتہ میں</relativeTimePattern>
- <relativeTimePattern count="other">{0} ہفتے میں</relativeTimePattern>
- </relativeTime>
- <relativeTime type="past">
- <relativeTimePattern count="one">{0} ہفتہ پہلے</relativeTimePattern>
- <relativeTimePattern count="other">{0} ہفتے پہلے</relativeTimePattern>
- </relativeTime>
- </field>
- <field type="day">
- <displayName>دن</displayName>
- <relative type="-2">گزشتہ پرسوں</relative>
- <relative type="-1">گزشتہ کل</relative>
- <relative type="0">آج</relative>
- <relative type="1">آئندہ کل</relative>
- <relative type="2">آنے والا پرسوں</relative>
- <relativeTime type="future">
- <relativeTimePattern count="one">{0} دن میں</relativeTimePattern>
- <relativeTimePattern count="other">{0} دن میں</relativeTimePattern>
- </relativeTime>
- <relativeTime type="past">
- <relativeTimePattern count="one">{0} دن پہلے</relativeTimePattern>
- <relativeTimePattern count="other">{0} دن پہلے</relativeTimePattern>
- </relativeTime>
- </field>
- <field type="weekday">
- <displayName>ہفتے کا دن</displayName>
- </field>
- <field type="sun">
- <relative type="-1">گزشتہ اتوار</relative>
- <relative type="0">یہ اتوار</relative>
- <relative type="1">اگلے اتوار</relative>
- </field>
- <field type="mon">
- <relative type="-1">گزشتہ پیر</relative>
- <relative type="0">یہ پیر</relative>
- <relative type="1">اگلے پیر</relative>
- </field>
- <field type="tue">
- <relative type="-1">گزشتہ منگل</relative>
- <relative type="0">یہ منگل</relative>
- <relative type="1">اگلے منگل</relative>
- </field>
- <field type="wed">
- <relative type="-1">گزشتہ بدھ</relative>
- <relative type="0">یہ بدھ</relative>
- <relative type="1">اگلے بدھ</relative>
- </field>
- <field type="thu">
- <relative type="-1">گزشتہ جمعرات</relative>
- <relative type="0">یہ جمعرات</relative>
- <relative type="1">اگلے جمعرات</relative>
- </field>
- <field type="fri">
- <relative type="-1">گزشتہ جمعہ</relative>
- <relative type="0">یہ جمعہ</relative>
- <relative type="1">اگلے جمعہ</relative>
- </field>
- <field type="sat">
- <relative type="-1">گزشتہ ہفتہ</relative>
- <relative type="0">یہ ہفتہ</relative>
- <relative type="1">اگلے ہفتہ</relative>
- </field>
- <field type="dayperiod">
- <displayName>AM/PM</displayName>
- </field>
- <field type="hour">
- <displayName>گھنٹہ</displayName>
- <relativeTime type="future">
- <relativeTimePattern count="one">{0} گھنٹہ میں</relativeTimePattern>
- <relativeTimePattern count="other">{0} گھنٹے میں</relativeTimePattern>
- </relativeTime>
- <relativeTime type="past">
- <relativeTimePattern count="one">{0} گھنٹہ پہلے</relativeTimePattern>
- <relativeTimePattern count="other">{0} گھنٹے پہلے</relativeTimePattern>
- </relativeTime>
- </field>
- <field type="minute">
- <displayName>منٹ</displayName>
- <relativeTime type="future">
- <relativeTimePattern count="one">{0} منٹ میں</relativeTimePattern>
- <relativeTimePattern count="other">{0} منٹ میں</relativeTimePattern>
- </relativeTime>
- <relativeTime type="past">
- <relativeTimePattern count="one">{0} منٹ پہلے</relativeTimePattern>
- <relativeTimePattern count="other">{0} منٹ پہلے</relativeTimePattern>
- </relativeTime>
- </field>
- <field type="second">
- <displayName>سیکنڈ</displayName>
- <relative type="0">اب</relative>
- <relativeTime type="future">
- <relativeTimePattern count="one">{0} سیکنڈ میں</relativeTimePattern>
- <relativeTimePattern count="other">{0} سیکنڈ میں</relativeTimePattern>
- </relativeTime>
- <relativeTime type="past">
- <relativeTimePattern count="one">{0} سیکنڈ پہلے</relativeTimePattern>
- <relativeTimePattern count="other">{0} سیکنڈ پہلے</relativeTimePattern>
- </relativeTime>
- </field>
- <field type="zone">
- <displayName>منطقہ وقت</displayName>
- </field>
- </fields>
- <timeZoneNames>
- <hourFormat>+HH:mm;-HH:mm</hourFormat>
- <gmtFormat>GMT {0}</gmtFormat>
- <gmtZeroFormat>GMT</gmtZeroFormat>
- <regionFormat>{0} وقت</regionFormat>
- <regionFormat type="daylight">{0} (+1)</regionFormat>
- <regionFormat type="standard">{0} (+0)</regionFormat>
- <fallbackFormat>{1} ({0})</fallbackFormat>
- <zone type="Etc/Unknown">
- <exemplarCity>نامعلوم شہر</exemplarCity>
- </zone>
- <zone type="Europe/Andorra">
- <exemplarCity>انڈورا</exemplarCity>
- </zone>
- <zone type="Asia/Dubai">
- <exemplarCity>دوبئی</exemplarCity>
- </zone>
- <zone type="Asia/Kabul">
- <exemplarCity>کابل</exemplarCity>
- </zone>
- <zone type="America/Antigua">
- <exemplarCity>انٹیگوا</exemplarCity>
- </zone>
- <zone type="America/Anguilla">
- <exemplarCity>انگویلا</exemplarCity>
- </zone>
- <zone type="Europe/Tirane">
- <exemplarCity>ٹیرانی</exemplarCity>
- </zone>
- <zone type="Asia/Yerevan">
- <exemplarCity>یریوان</exemplarCity>
- </zone>
- <zone type="Africa/Luanda">
- <exemplarCity>لوانڈا</exemplarCity>
- </zone>
- <zone type="Antarctica/Rothera">
- <exemplarCity>روتھیرا</exemplarCity>
- </zone>
- <zone type="Antarctica/Palmer">
- <exemplarCity>پلمیر</exemplarCity>
- </zone>
- <zone type="Antarctica/Syowa">
- <exemplarCity>سیووا</exemplarCity>
- </zone>
- <zone type="Antarctica/Mawson">
- <exemplarCity>ماؤسن</exemplarCity>
- </zone>
- <zone type="Antarctica/Davis">
- <exemplarCity>ڈیوس</exemplarCity>
- </zone>
- <zone type="Antarctica/Vostok">
- <exemplarCity>ووستوک</exemplarCity>
- </zone>
- <zone type="Antarctica/Casey">
- <exemplarCity>کیسی</exemplarCity>
- </zone>
- <zone type="Antarctica/DumontDUrville">
- <exemplarCity>ڈومونٹ ڈی ارویلے</exemplarCity>
- </zone>
- <zone type="Antarctica/McMurdo">
- <exemplarCity>میک مرڈو</exemplarCity>
- </zone>
- <zone type="America/Argentina/Rio_Gallegos">
- <exemplarCity>ریو گالیگوس</exemplarCity>
- </zone>
- <zone type="America/Mendoza">
- <exemplarCity>مینڈوزا</exemplarCity>
- </zone>
- <zone type="America/Argentina/San_Juan">
- <exemplarCity>سان جوآن</exemplarCity>
- </zone>
- <zone type="America/Argentina/Ushuaia">
- <exemplarCity>اوشوآئیا</exemplarCity>
- </zone>
- <zone type="America/Argentina/La_Rioja">
- <exemplarCity>لا ریئوجا</exemplarCity>
- </zone>
- <zone type="America/Argentina/San_Luis">
- <exemplarCity>سان لوئس</exemplarCity>
- </zone>
- <zone type="America/Catamarca">
- <exemplarCity>کیٹامارکا</exemplarCity>
- </zone>
- <zone type="America/Argentina/Salta">
- <exemplarCity>سالٹا</exemplarCity>
- </zone>
- <zone type="America/Jujuy">
- <exemplarCity>جوجوئی</exemplarCity>
- </zone>
- <zone type="America/Argentina/Tucuman">
- <exemplarCity>ٹوکومین</exemplarCity>
- </zone>
- <zone type="America/Cordoba">
- <exemplarCity>کورڈوبا</exemplarCity>
- </zone>
- <zone type="America/Buenos_Aires">
- <exemplarCity>بیونس آئرس</exemplarCity>
- </zone>
- <zone type="Pacific/Pago_Pago">
- <exemplarCity>پاگو پاگو</exemplarCity>
- </zone>
- <zone type="Europe/Vienna">
- <exemplarCity>ویانا</exemplarCity>
- </zone>
- <zone type="Australia/Perth">
- <exemplarCity>پرتھ</exemplarCity>
- </zone>
- <zone type="Australia/Eucla">
- <exemplarCity>ایوکلا</exemplarCity>
- </zone>
- <zone type="Australia/Darwin">
- <exemplarCity>ڈارون</exemplarCity>
- </zone>
- <zone type="Australia/Adelaide">
- <exemplarCity>اڈیلائڈ</exemplarCity>
- </zone>
- <zone type="Australia/Broken_Hill">
- <exemplarCity>بروکن ہِل</exemplarCity>
- </zone>
- <zone type="Australia/Currie">
- <exemplarCity>کیوری</exemplarCity>
- </zone>
- <zone type="Australia/Melbourne">
- <exemplarCity>ملبورن</exemplarCity>
- </zone>
- <zone type="Australia/Hobart">
- <exemplarCity>ہوبارٹ</exemplarCity>
- </zone>
- <zone type="Australia/Lindeman">
- <exemplarCity>لِنڈمین</exemplarCity>
- </zone>
- <zone type="Australia/Sydney">
- <exemplarCity>سڈنی</exemplarCity>
- </zone>
- <zone type="Australia/Brisbane">
- <exemplarCity>برسبین</exemplarCity>
- </zone>
- <zone type="Antarctica/Macquarie">
- <exemplarCity>میکواری</exemplarCity>
- </zone>
- <zone type="Australia/Lord_Howe">
- <exemplarCity>لارڈ ہووے</exemplarCity>
- </zone>
- <zone type="America/Aruba">
- <exemplarCity>اروبا</exemplarCity>
- </zone>
- <zone type="Europe/Mariehamn">
- <exemplarCity>میریہام</exemplarCity>
- </zone>
- <zone type="Asia/Baku">
- <exemplarCity>باکو</exemplarCity>
- </zone>
- <zone type="Europe/Sarajevo">
- <exemplarCity>سراجیوو</exemplarCity>
- </zone>
- <zone type="America/Barbados">
- <exemplarCity>باربادوس</exemplarCity>
- </zone>
- <zone type="Asia/Dhaka">
- <exemplarCity>ڈھاکہ</exemplarCity>
- </zone>
- <zone type="Europe/Brussels">
- <exemplarCity>برسلز</exemplarCity>
- </zone>
- <zone type="Africa/Ouagadougou">
- <exemplarCity>اؤگاڈؤگوو</exemplarCity>
- </zone>
- <zone type="Europe/Sofia">
- <exemplarCity>صوفیہ</exemplarCity>
- </zone>
- <zone type="Asia/Bahrain">
- <exemplarCity>بحرین</exemplarCity>
- </zone>
- <zone type="Africa/Bujumbura">
- <exemplarCity>بجمبرا</exemplarCity>
- </zone>
- <zone type="Africa/Porto-Novo">
- <exemplarCity>پورٹو نووا</exemplarCity>
- </zone>
- <zone type="America/St_Barthelemy">
- <exemplarCity>سینٹ برتھیلمی</exemplarCity>
- </zone>
- <zone type="Atlantic/Bermuda">
- <exemplarCity>برمودا</exemplarCity>
- </zone>
- <zone type="Asia/Brunei">
- <exemplarCity>برونئی</exemplarCity>
- </zone>
- <zone type="America/La_Paz">
- <exemplarCity>لا پاز</exemplarCity>
- </zone>
- <zone type="America/Kralendijk">
- <exemplarCity>کرالینڈیجک</exemplarCity>
- </zone>
- <zone type="America/Eirunepe">
- <exemplarCity>ایرونیپ</exemplarCity>
- </zone>
- <zone type="America/Rio_Branco">
- <exemplarCity>ریئو برینکو</exemplarCity>
- </zone>
- <zone type="America/Porto_Velho">
- <exemplarCity>پورٹو ویلہو</exemplarCity>
- </zone>
- <zone type="America/Boa_Vista">
- <exemplarCity>بوآ وسٹا</exemplarCity>
- </zone>
- <zone type="America/Manaus">
- <exemplarCity>مناؤس</exemplarCity>
- </zone>
- <zone type="America/Cuiaba">
- <exemplarCity>کوئیابا</exemplarCity>
- </zone>
- <zone type="America/Santarem">
- <exemplarCity>سنٹارین</exemplarCity>
- </zone>
- <zone type="America/Campo_Grande">
- <exemplarCity>کیمپو گرینڈ</exemplarCity>
- </zone>
- <zone type="America/Belem">
- <exemplarCity>بیلیم</exemplarCity>
- </zone>
- <zone type="America/Araguaina">
- <exemplarCity>اراگویانا</exemplarCity>
- </zone>
- <zone type="America/Sao_Paulo">
- <exemplarCity>ساؤ پالو</exemplarCity>
- </zone>
- <zone type="America/Bahia">
- <exemplarCity>باہیا</exemplarCity>
- </zone>
- <zone type="America/Fortaleza">
- <exemplarCity>فورٹالیزا</exemplarCity>
- </zone>
- <zone type="America/Maceio">
- <exemplarCity>میسیئو</exemplarCity>
- </zone>
- <zone type="America/Recife">
- <exemplarCity>ریسائف</exemplarCity>
- </zone>
- <zone type="America/Noronha">
- <exemplarCity>نورونہا</exemplarCity>
- </zone>
- <zone type="America/Nassau">
- <exemplarCity>نساؤ</exemplarCity>
- </zone>
- <zone type="Asia/Thimphu">
- <exemplarCity>تھمپو</exemplarCity>
- </zone>
- <zone type="Africa/Gaborone">
- <exemplarCity>جیبورون</exemplarCity>
- </zone>
- <zone type="Europe/Minsk">
- <exemplarCity>مِنسک</exemplarCity>
- </zone>
- <zone type="America/Belize">
- <exemplarCity>بیلائز</exemplarCity>
- </zone>
- <zone type="America/Dawson">
- <exemplarCity>ڈاؤسن</exemplarCity>
- </zone>
- <zone type="America/Whitehorse">
- <exemplarCity>وہائٹ ہارس</exemplarCity>
- </zone>
- <zone type="America/Inuvik">
- <exemplarCity>انووِک</exemplarCity>
- </zone>
- <zone type="America/Vancouver">
- <exemplarCity>وینکوور</exemplarCity>
- </zone>
- <zone type="America/Dawson_Creek">
- <exemplarCity>ڈاؤسن کریک</exemplarCity>
- </zone>
- <zone type="America/Creston">
- <exemplarCity>کریسٹون</exemplarCity>
- </zone>
- <zone type="America/Yellowknife">
- <exemplarCity>ایلو نائف</exemplarCity>
- </zone>
- <zone type="America/Edmonton">
- <exemplarCity>ایڈمونٹن</exemplarCity>
- </zone>
- <zone type="America/Swift_Current">
- <exemplarCity>سوِفٹ کرنٹ</exemplarCity>
- </zone>
- <zone type="America/Cambridge_Bay">
- <exemplarCity>کیمبرج کی کھاڑی</exemplarCity>
- </zone>
- <zone type="America/Regina">
- <exemplarCity>ریجینا</exemplarCity>
- </zone>
- <zone type="America/Winnipeg">
- <exemplarCity>ونّیپیگ</exemplarCity>
- </zone>
- <zone type="America/Resolute">
- <exemplarCity>ریزولیوٹ</exemplarCity>
- </zone>
- <zone type="America/Rainy_River">
- <exemplarCity>برساتی ندی</exemplarCity>
- </zone>
- <zone type="America/Rankin_Inlet">
- <exemplarCity>رینکن انلیٹ</exemplarCity>
- </zone>
- <zone type="America/Coral_Harbour">
- <exemplarCity>اٹیکوکن</exemplarCity>
- </zone>
- <zone type="America/Thunder_Bay">
- <exemplarCity>تھنڈر بے</exemplarCity>
- </zone>
- <zone type="America/Nipigon">
- <exemplarCity>نپیگون</exemplarCity>
- </zone>
- <zone type="America/Toronto">
- <exemplarCity>ٹورنٹو</exemplarCity>
- </zone>
- <zone type="America/Iqaluit">
- <exemplarCity>ایکالوئٹ</exemplarCity>
- </zone>
- <zone type="America/Pangnirtung">
- <exemplarCity>پینگنِرٹنگ</exemplarCity>
- </zone>
- <zone type="America/Moncton">
- <exemplarCity>مونکٹن</exemplarCity>
- </zone>
- <zone type="America/Halifax">
- <exemplarCity>ہیلیفیکس</exemplarCity>
- </zone>
- <zone type="America/Goose_Bay">
- <exemplarCity>گوس کی کھاڑی</exemplarCity>
- </zone>
- <zone type="America/Glace_Bay">
- <exemplarCity>گلیس کی کھاڑی</exemplarCity>
- </zone>
- <zone type="America/Blanc-Sablon">
- <exemplarCity>بلانک سبلون</exemplarCity>
- </zone>
- <zone type="America/St_Johns">
- <exemplarCity>سینٹ جانز</exemplarCity>
- </zone>
- <zone type="Indian/Cocos">
- <exemplarCity>کوکوس</exemplarCity>
- </zone>
- <zone type="Africa/Kinshasa">
- <exemplarCity>کنشاسا</exemplarCity>
- </zone>
- <zone type="Africa/Lubumbashi">
- <exemplarCity>لوبمباشی</exemplarCity>
- </zone>
- <zone type="Africa/Bangui">
- <exemplarCity>بنگوئی</exemplarCity>
- </zone>
- <zone type="Africa/Brazzaville">
- <exemplarCity>برازاویلے</exemplarCity>
- </zone>
- <zone type="Europe/Zurich">
- <exemplarCity>زیورخ</exemplarCity>
- </zone>
- <zone type="Africa/Abidjan">
- <exemplarCity>عابدجان</exemplarCity>
- </zone>
- <zone type="Pacific/Rarotonga">
- <exemplarCity>راروٹونگا</exemplarCity>
- </zone>
- <zone type="Pacific/Easter">
- <exemplarCity>ایسٹر</exemplarCity>
- </zone>
- <zone type="America/Santiago">
- <exemplarCity>سنٹیاگو</exemplarCity>
- </zone>
- <zone type="Africa/Douala">
- <exemplarCity>ڈوآلا</exemplarCity>
- </zone>
- <zone type="Asia/Kashgar">
- <exemplarCity>کاشغر</exemplarCity>
- </zone>
- <zone type="Asia/Urumqi">
- <exemplarCity>یورومکی</exemplarCity>
- </zone>
- <zone type="Asia/Chongqing">
- <exemplarCity>چانگ کنگ</exemplarCity>
- </zone>
- <zone type="Asia/Shanghai">
- <exemplarCity>شنگھائی</exemplarCity>
- </zone>
- <zone type="Asia/Harbin">
- <exemplarCity>ہربِن</exemplarCity>
- </zone>
- <zone type="America/Bogota">
- <exemplarCity>بگوٹا</exemplarCity>
- </zone>
- <zone type="America/Costa_Rica">
- <exemplarCity>کوسٹا ریکا</exemplarCity>
- </zone>
- <zone type="America/Havana">
- <exemplarCity>ہوانا</exemplarCity>
- </zone>
- <zone type="Atlantic/Cape_Verde">
- <exemplarCity>کیپ ورڈی</exemplarCity>
- </zone>
- <zone type="America/Curacao">
- <exemplarCity>کیوراکاؤ</exemplarCity>
- </zone>
- <zone type="Indian/Christmas">
- <exemplarCity>کرسمس</exemplarCity>
- </zone>
- <zone type="Asia/Nicosia">
- <exemplarCity>نکوسیا</exemplarCity>
- </zone>
- <zone type="Europe/Prague">
- <exemplarCity>پراگ</exemplarCity>
- </zone>
- <zone type="Europe/Busingen">
- <exemplarCity>بزنجن</exemplarCity>
- </zone>
- <zone type="Europe/Berlin">
- <exemplarCity>برلن</exemplarCity>
- </zone>
- <zone type="Africa/Djibouti">
- <exemplarCity>جبوتی</exemplarCity>
- </zone>
- <zone type="Europe/Copenhagen">
- <exemplarCity>کوپن ہیگن</exemplarCity>
- </zone>
- <zone type="America/Dominica">
- <exemplarCity>ڈومنیکا</exemplarCity>
- </zone>
- <zone type="America/Santo_Domingo">
- <exemplarCity>سانتو ڈومنگو</exemplarCity>
- </zone>
- <zone type="Africa/Algiers">
- <exemplarCity>الجیئرس</exemplarCity>
- </zone>
- <zone type="Pacific/Galapagos">
- <exemplarCity>گیلاپیگوس</exemplarCity>
- </zone>
- <zone type="America/Guayaquil">
- <exemplarCity>گوآیاکوئل</exemplarCity>
- </zone>
- <zone type="Europe/Tallinn">
- <exemplarCity>تالِّن</exemplarCity>
- </zone>
- <zone type="Africa/Cairo">
- <exemplarCity>قاہرہ</exemplarCity>
- </zone>
- <zone type="Africa/El_Aaiun">
- <exemplarCity>العیون</exemplarCity>
- </zone>
- <zone type="Africa/Asmera">
- <exemplarCity>اسمارا</exemplarCity>
- </zone>
- <zone type="Atlantic/Canary">
- <exemplarCity>کینری</exemplarCity>
- </zone>
- <zone type="Africa/Ceuta">
- <exemplarCity>سیوٹا</exemplarCity>
- </zone>
- <zone type="Europe/Madrid">
- <exemplarCity>میڈرڈ</exemplarCity>
- </zone>
- <zone type="Africa/Addis_Ababa">
- <exemplarCity>عدیس ابابا</exemplarCity>
- </zone>
- <zone type="Europe/Helsinki">
- <exemplarCity>ہیلسنکی</exemplarCity>
- </zone>
- <zone type="Pacific/Fiji">
- <exemplarCity>فجی</exemplarCity>
- </zone>
- <zone type="Atlantic/Stanley">
- <exemplarCity>اسٹینلے</exemplarCity>
- </zone>
- <zone type="Pacific/Truk">
- <exemplarCity>چیوک</exemplarCity>
- </zone>
- <zone type="Pacific/Ponape">
- <exemplarCity>پونپیئی</exemplarCity>
- </zone>
- <zone type="Pacific/Kosrae">
- <exemplarCity>کوسرائی</exemplarCity>
- </zone>
- <zone type="Atlantic/Faeroe">
- <exemplarCity>فروئی</exemplarCity>
- </zone>
- <zone type="Europe/Paris">
- <exemplarCity>پیرس</exemplarCity>
- </zone>
- <zone type="Africa/Libreville">
- <exemplarCity>لبرے ویلے</exemplarCity>
- </zone>
- <zone type="Europe/London">
- <long>
- <daylight>برطانوی کا گرما کے وقت</daylight>
- </long>
- <exemplarCity>لندن</exemplarCity>
- </zone>
- <zone type="America/Grenada">
- <exemplarCity>غرناطہ</exemplarCity>
- </zone>
- <zone type="Asia/Tbilisi">
- <exemplarCity>طبلیسی</exemplarCity>
- </zone>
- <zone type="America/Cayenne">
- <exemplarCity>کیینّی</exemplarCity>
- </zone>
- <zone type="Europe/Guernsey">
- <exemplarCity>گوئرنسی</exemplarCity>
- </zone>
- <zone type="Africa/Accra">
- <exemplarCity>اکّرا</exemplarCity>
- </zone>
- <zone type="Europe/Gibraltar">
- <exemplarCity>جبل الطارق</exemplarCity>
- </zone>
- <zone type="America/Thule">
- <exemplarCity>تھولو</exemplarCity>
- </zone>
- <zone type="America/Godthab">
- <exemplarCity>گاڈتھیب</exemplarCity>
- </zone>
- <zone type="America/Scoresbysund">
- <exemplarCity>اسکورز بائی سنڈ</exemplarCity>
- </zone>
- <zone type="America/Danmarkshavn">
- <exemplarCity>ڈنمارک شاون</exemplarCity>
- </zone>
- <zone type="Africa/Banjul">
- <exemplarCity>بنجول</exemplarCity>
- </zone>
- <zone type="Africa/Conakry">
- <exemplarCity>کونکری</exemplarCity>
- </zone>
- <zone type="America/Guadeloupe">
- <exemplarCity>گواڈیلوپ</exemplarCity>
- </zone>
- <zone type="Africa/Malabo">
- <exemplarCity>ملابو</exemplarCity>
- </zone>
- <zone type="Europe/Athens">
- <exemplarCity>ایتھنز</exemplarCity>
- </zone>
- <zone type="Atlantic/South_Georgia">
- <exemplarCity>جنوبی جارجیا</exemplarCity>
- </zone>
- <zone type="America/Guatemala">
- <exemplarCity>گواٹے مالا</exemplarCity>
- </zone>
- <zone type="Pacific/Guam">
- <exemplarCity>گوآم</exemplarCity>
- </zone>
- <zone type="Africa/Bissau">
- <exemplarCity>بِساؤ</exemplarCity>
- </zone>
- <zone type="America/Guyana">
- <exemplarCity>گیانا</exemplarCity>
- </zone>
- <zone type="Asia/Hong_Kong">
- <exemplarCity>ہانگ کانگ</exemplarCity>
- </zone>
- <zone type="America/Tegucigalpa">
- <exemplarCity>ٹیگوسیگالپے</exemplarCity>
- </zone>
- <zone type="Europe/Zagreb">
- <exemplarCity>زیگریب</exemplarCity>
- </zone>
- <zone type="America/Port-au-Prince">
- <exemplarCity>پورٹ او پرنس</exemplarCity>
- </zone>
- <zone type="Europe/Budapest">
- <exemplarCity>بدھاپیسٹ</exemplarCity>
- </zone>
- <zone type="Asia/Jakarta">
- <exemplarCity>جکارتہ</exemplarCity>
- </zone>
- <zone type="Asia/Pontianak">
- <exemplarCity>پونٹیانک</exemplarCity>
- </zone>
- <zone type="Asia/Makassar">
- <exemplarCity>مکاسر</exemplarCity>
- </zone>
- <zone type="Asia/Jayapura">
- <exemplarCity>جے پورہ</exemplarCity>
- </zone>
- <zone type="Europe/Dublin">
- <long>
- <daylight>آئرش کا گرما کے وقت</daylight>
- </long>
- <exemplarCity>ڈبلن</exemplarCity>
- </zone>
- <zone type="Asia/Jerusalem">
- <exemplarCity>یروشلم</exemplarCity>
- </zone>
- <zone type="Europe/Isle_of_Man">
- <exemplarCity>آئل آف مین</exemplarCity>
- </zone>
- <zone type="Asia/Calcutta">
- <exemplarCity>کولکاتا</exemplarCity>
- </zone>
- <zone type="Indian/Chagos">
- <exemplarCity>چاگوس</exemplarCity>
- </zone>
- <zone type="Asia/Baghdad">
- <exemplarCity>بغداد</exemplarCity>
- </zone>
- <zone type="Asia/Tehran">
- <exemplarCity>تہران</exemplarCity>
- </zone>
- <zone type="Atlantic/Reykjavik">
- <exemplarCity>ریکجاوک</exemplarCity>
- </zone>
- <zone type="Europe/Rome">
- <exemplarCity>روم</exemplarCity>
- </zone>
- <zone type="Europe/Jersey">
- <exemplarCity>جرسی</exemplarCity>
- </zone>
- <zone type="America/Jamaica">
- <exemplarCity>جمائیکا</exemplarCity>
- </zone>
- <zone type="Asia/Amman">
- <exemplarCity>امّان</exemplarCity>
- </zone>
- <zone type="Asia/Tokyo">
- <exemplarCity>ٹوکیو</exemplarCity>
- </zone>
- <zone type="Africa/Nairobi">
- <exemplarCity>نیروبی</exemplarCity>
- </zone>
- <zone type="Asia/Bishkek">
- <exemplarCity>بشکیک</exemplarCity>
- </zone>
- <zone type="Asia/Phnom_Penh">
- <exemplarCity>نام پنہ</exemplarCity>
- </zone>
- <zone type="Pacific/Enderbury">
- <exemplarCity>اینڈربری</exemplarCity>
- </zone>
- <zone type="Pacific/Kiritimati">
- <exemplarCity>کریتیماٹی</exemplarCity>
- </zone>
- <zone type="Pacific/Tarawa">
- <exemplarCity>ٹراوا</exemplarCity>
- </zone>
- <zone type="Indian/Comoro">
- <exemplarCity>کومورو</exemplarCity>
- </zone>
- <zone type="America/St_Kitts">
- <exemplarCity>سینٹ کٹس</exemplarCity>
- </zone>
- <zone type="Asia/Pyongyang">
- <exemplarCity>پیونگ یانگ</exemplarCity>
- </zone>
- <zone type="Asia/Seoul">
- <exemplarCity>سیئول</exemplarCity>
- </zone>
- <zone type="Asia/Kuwait">
- <exemplarCity>کویت</exemplarCity>
- </zone>
- <zone type="America/Cayman">
- <exemplarCity>کیمین</exemplarCity>
- </zone>
- <zone type="Asia/Aqtau">
- <exemplarCity>اکتاؤ</exemplarCity>
- </zone>
- <zone type="Asia/Oral">
- <exemplarCity>زبانی</exemplarCity>
- </zone>
- <zone type="Asia/Aqtobe">
- <exemplarCity>اکٹوب</exemplarCity>
- </zone>
- <zone type="Asia/Qyzylorda">
- <exemplarCity>کیزیلورڈا</exemplarCity>
- </zone>
- <zone type="Asia/Almaty">
- <exemplarCity>الماٹی</exemplarCity>
- </zone>
- <zone type="Asia/Vientiane">
- <exemplarCity>وینٹیانا</exemplarCity>
- </zone>
- <zone type="Asia/Beirut">
- <exemplarCity>بیروت</exemplarCity>
- </zone>
- <zone type="America/St_Lucia">
- <exemplarCity>سینٹ لوسیا</exemplarCity>
- </zone>
- <zone type="Europe/Vaduz">
- <exemplarCity>ویڈوز</exemplarCity>
- </zone>
- <zone type="Asia/Colombo">
- <exemplarCity>کولمبو</exemplarCity>
- </zone>
- <zone type="Africa/Monrovia">
- <exemplarCity>مونروویا</exemplarCity>
- </zone>
- <zone type="Africa/Maseru">
- <exemplarCity>مسیرو</exemplarCity>
- </zone>
- <zone type="Europe/Vilnius">
- <exemplarCity>وِلنیئس</exemplarCity>
- </zone>
- <zone type="Europe/Luxembourg">
- <exemplarCity>لگژمبرگ</exemplarCity>
- </zone>
- <zone type="Europe/Riga">
- <exemplarCity>ریگا</exemplarCity>
- </zone>
- <zone type="Africa/Tripoli">
- <exemplarCity>ٹریپولی</exemplarCity>
- </zone>
- <zone type="Africa/Casablanca">
- <exemplarCity>کیسا بلانکا</exemplarCity>
- </zone>
- <zone type="Europe/Monaco">
- <exemplarCity>موناکو</exemplarCity>
- </zone>
- <zone type="Europe/Chisinau">
- <exemplarCity>چیسیناؤ</exemplarCity>
- </zone>
- <zone type="Europe/Podgorica">
- <exemplarCity>پوڈگورسیا</exemplarCity>
- </zone>
- <zone type="America/Marigot">
- <exemplarCity>میریگوٹ</exemplarCity>
- </zone>
- <zone type="Indian/Antananarivo">
- <exemplarCity>انٹاناناریوو</exemplarCity>
- </zone>
- <zone type="Pacific/Kwajalein">
- <exemplarCity>کواجیلین</exemplarCity>
- </zone>
- <zone type="Pacific/Majuro">
- <exemplarCity>مجورو</exemplarCity>
- </zone>
- <zone type="Europe/Skopje">
- <exemplarCity>اسکوپجے</exemplarCity>
- </zone>
- <zone type="Africa/Bamako">
- <exemplarCity>بماکو</exemplarCity>
- </zone>
- <zone type="Asia/Rangoon">
- <exemplarCity>رنگون</exemplarCity>
- </zone>
- <zone type="Asia/Hovd">
- <exemplarCity>ہووارڈ</exemplarCity>
- </zone>
- <zone type="Asia/Ulaanbaatar">
- <exemplarCity>اولان باتار</exemplarCity>
- </zone>
- <zone type="Asia/Choibalsan">
- <exemplarCity>کوائبلسان</exemplarCity>
- </zone>
- <zone type="Asia/Macau">
- <exemplarCity>مکاؤ</exemplarCity>
- </zone>
- <zone type="Pacific/Saipan">
- <exemplarCity>سائپین</exemplarCity>
- </zone>
- <zone type="America/Martinique">
- <exemplarCity>مارٹینک</exemplarCity>
- </zone>
- <zone type="Africa/Nouakchott">
- <exemplarCity>نؤآک چاٹ</exemplarCity>
- </zone>
- <zone type="America/Montserrat">
- <exemplarCity>مونٹسیراٹ</exemplarCity>
- </zone>
- <zone type="Europe/Malta">
- <exemplarCity>مالٹا</exemplarCity>
- </zone>
- <zone type="Indian/Mauritius">
- <exemplarCity>ماریشس</exemplarCity>
- </zone>
- <zone type="Indian/Maldives">
- <exemplarCity>مالدیپ</exemplarCity>
- </zone>
- <zone type="Africa/Blantyre">
- <exemplarCity>بلینٹائر</exemplarCity>
- </zone>
- <zone type="America/Tijuana">
- <exemplarCity>تیجوآنا</exemplarCity>
- </zone>
- <zone type="America/Santa_Isabel">
- <exemplarCity>سانتا ایزابیل</exemplarCity>
- </zone>
- <zone type="America/Hermosillo">
- <exemplarCity>ہرموسیلو</exemplarCity>
- </zone>
- <zone type="America/Mazatlan">
- <exemplarCity>میزٹلان</exemplarCity>
- </zone>
- <zone type="America/Chihuahua">
- <exemplarCity>چیہوآہوآ</exemplarCity>
- </zone>
- <zone type="America/Bahia_Banderas">
- <exemplarCity>بہیا بندراز</exemplarCity>
- </zone>
- <zone type="America/Ojinaga">
- <exemplarCity>اوجیناگا</exemplarCity>
- </zone>
- <zone type="America/Monterrey">
- <exemplarCity>مونٹیری</exemplarCity>
- </zone>
- <zone type="America/Mexico_City">
- <exemplarCity>میکسیکو سٹی</exemplarCity>
- </zone>
- <zone type="America/Matamoros">
- <exemplarCity>میٹاموروس</exemplarCity>
- </zone>
- <zone type="America/Merida">
- <exemplarCity>میریڈا</exemplarCity>
- </zone>
- <zone type="America/Cancun">
- <exemplarCity>کنکیون</exemplarCity>
- </zone>
- <zone type="Asia/Kuala_Lumpur">
- <exemplarCity>کوالا لمپور</exemplarCity>
- </zone>
- <zone type="Asia/Kuching">
- <exemplarCity>کیوچنگ</exemplarCity>
- </zone>
- <zone type="Africa/Maputo">
- <exemplarCity>مپوٹو</exemplarCity>
- </zone>
- <zone type="Africa/Windhoek">
- <exemplarCity>ونڈہوک</exemplarCity>
- </zone>
- <zone type="Pacific/Noumea">
- <exemplarCity>نؤمیا</exemplarCity>
- </zone>
- <zone type="Africa/Niamey">
- <exemplarCity>نیامی</exemplarCity>
- </zone>
- <zone type="Pacific/Norfolk">
- <exemplarCity>نورفوک</exemplarCity>
- </zone>
- <zone type="Africa/Lagos">
- <exemplarCity>لاگوس</exemplarCity>
- </zone>
- <zone type="America/Managua">
- <exemplarCity>مناگوآ</exemplarCity>
- </zone>
- <zone type="Europe/Amsterdam">
- <exemplarCity>ایمسٹرڈم</exemplarCity>
- </zone>
- <zone type="Europe/Oslo">
- <exemplarCity>اوسلو</exemplarCity>
- </zone>
- <zone type="Asia/Katmandu">
- <exemplarCity>کاٹھمنڈو</exemplarCity>
- </zone>
- <zone type="Pacific/Nauru">
- <exemplarCity>ناؤرو</exemplarCity>
- </zone>
- <zone type="Pacific/Niue">
- <exemplarCity>نیئو</exemplarCity>
- </zone>
- <zone type="Pacific/Chatham">
- <exemplarCity>چیتھم</exemplarCity>
- </zone>
- <zone type="Pacific/Auckland">
- <exemplarCity>آکلینڈ</exemplarCity>
- </zone>
- <zone type="Asia/Muscat">
- <exemplarCity>مسقط</exemplarCity>
- </zone>
- <zone type="America/Panama">
- <exemplarCity>پنامہ</exemplarCity>
- </zone>
- <zone type="America/Lima">
- <exemplarCity>لیما</exemplarCity>
- </zone>
- <zone type="Pacific/Tahiti">
- <exemplarCity>تاہیتی</exemplarCity>
- </zone>
- <zone type="Pacific/Marquesas">
- <exemplarCity>مارکیساس</exemplarCity>
- </zone>
- <zone type="Pacific/Gambier">
- <exemplarCity>گامبیئر</exemplarCity>
- </zone>
- <zone type="Pacific/Port_Moresby">
- <exemplarCity>پورٹ موریسبی</exemplarCity>
- </zone>
- <zone type="Asia/Manila">
- <exemplarCity>منیلا</exemplarCity>
- </zone>
- <zone type="Asia/Karachi">
- <exemplarCity>کراچی</exemplarCity>
- </zone>
- <zone type="Europe/Warsaw">
- <exemplarCity>وارسا</exemplarCity>
- </zone>
- <zone type="America/Miquelon">
- <exemplarCity>میکلیئون</exemplarCity>
- </zone>
- <zone type="Pacific/Pitcairn">
- <exemplarCity>پٹکائرن</exemplarCity>
- </zone>
- <zone type="America/Puerto_Rico">
- <exemplarCity>پیورٹو ریکو</exemplarCity>
- </zone>
- <zone type="Asia/Gaza">
- <exemplarCity>غزہ</exemplarCity>
- </zone>
- <zone type="Asia/Hebron">
- <exemplarCity>ہیبرون</exemplarCity>
- </zone>
- <zone type="Atlantic/Azores">
- <exemplarCity>ازوریس</exemplarCity>
- </zone>
- <zone type="Atlantic/Madeira">
- <exemplarCity>مڈیئرا</exemplarCity>
- </zone>
- <zone type="Europe/Lisbon">
- <exemplarCity>لسبن</exemplarCity>
- </zone>
- <zone type="Pacific/Palau">
- <exemplarCity>پلاؤ</exemplarCity>
- </zone>
- <zone type="America/Asuncion">
- <exemplarCity>اسنسیئن</exemplarCity>
- </zone>
- <zone type="Asia/Qatar">
- <exemplarCity>قطر</exemplarCity>
- </zone>
- <zone type="Indian/Reunion">
- <exemplarCity>ری یونین</exemplarCity>
- </zone>
- <zone type="Europe/Bucharest">
- <exemplarCity>بخارسٹ</exemplarCity>
- </zone>
- <zone type="Europe/Belgrade">
- <exemplarCity>بلغراد</exemplarCity>
- </zone>
- <zone type="Europe/Kaliningrad">
- <exemplarCity>لینن گراد</exemplarCity>
- </zone>
- <zone type="Europe/Moscow">
- <exemplarCity>ماسکو</exemplarCity>
- </zone>
- <zone type="Europe/Volgograd">
- <exemplarCity>وولگوگراد</exemplarCity>
- </zone>
- <zone type="Europe/Samara">
- <exemplarCity>سمارا</exemplarCity>
- </zone>
- <zone type="Asia/Yekaterinburg">
- <exemplarCity>یکاٹیرِنبرگ</exemplarCity>
- </zone>
- <zone type="Asia/Omsk">
- <exemplarCity>اومسک</exemplarCity>
- </zone>
- <zone type="Asia/Novosibirsk">
- <exemplarCity>نوووسِبِرسک</exemplarCity>
- </zone>
- <zone type="Asia/Novokuznetsk">
- <exemplarCity>نوووکوزنیتسک</exemplarCity>
- </zone>
- <zone type="Asia/Krasnoyarsk">
- <exemplarCity>کریسنویارسک</exemplarCity>
- </zone>
- <zone type="Asia/Irkutsk">
- <exemplarCity>ارکتسک</exemplarCity>
- </zone>
- <zone type="Asia/Yakutsk">
- <exemplarCity>یکوتسک</exemplarCity>
- </zone>
- <zone type="Asia/Vladivostok">
- <exemplarCity>ولادی ووستک</exemplarCity>
- </zone>
- <zone type="Asia/Khandyga">
- <exemplarCity>خندیگا</exemplarCity>
- </zone>
- <zone type="Asia/Sakhalin">
- <exemplarCity>سخالین</exemplarCity>
- </zone>
- <zone type="Asia/Ust-Nera">
- <exemplarCity>اوسٹ-نیرا</exemplarCity>
- </zone>
- <zone type="Asia/Magadan">
- <exemplarCity>میگیدن</exemplarCity>
- </zone>
- <zone type="Asia/Kamchatka">
- <exemplarCity>کیمچٹکا</exemplarCity>
- </zone>
- <zone type="Asia/Anadyr">
- <exemplarCity>انیدر</exemplarCity>
- </zone>
- <zone type="Africa/Kigali">
- <exemplarCity>کگالی</exemplarCity>
- </zone>
- <zone type="Asia/Riyadh">
- <exemplarCity>ریاض</exemplarCity>
- </zone>
- <zone type="Pacific/Guadalcanal">
- <exemplarCity>گواڈل کینال</exemplarCity>
- </zone>
- <zone type="Indian/Mahe">
- <exemplarCity>ماہی</exemplarCity>
- </zone>
- <zone type="Africa/Khartoum">
- <exemplarCity>خرطوم</exemplarCity>
- </zone>
- <zone type="Europe/Stockholm">
- <exemplarCity>اسٹاک ہوم</exemplarCity>
- </zone>
- <zone type="Asia/Singapore">
- <exemplarCity>سنگاپور</exemplarCity>
- </zone>
- <zone type="Atlantic/St_Helena">
- <exemplarCity>سینٹ ہیلینا</exemplarCity>
- </zone>
- <zone type="Europe/Ljubljana">
- <exemplarCity>جبجانا</exemplarCity>
- </zone>
- <zone type="Arctic/Longyearbyen">
- <exemplarCity>لانگ ایئر بین</exemplarCity>
- </zone>
- <zone type="Europe/Bratislava">
- <exemplarCity>بریٹِسلاوا</exemplarCity>
- </zone>
- <zone type="Africa/Freetown">
- <exemplarCity>فری ٹاؤن</exemplarCity>
- </zone>
- <zone type="Europe/San_Marino">
- <exemplarCity>سان ماریانو</exemplarCity>
- </zone>
- <zone type="Africa/Dakar">
- <exemplarCity>ڈکار</exemplarCity>
- </zone>
- <zone type="Africa/Mogadishu">
- <exemplarCity>موگادیشو</exemplarCity>
- </zone>
- <zone type="America/Paramaribo">
- <exemplarCity>پراماریبو</exemplarCity>
- </zone>
- <zone type="Africa/Juba">
- <exemplarCity>جوبا</exemplarCity>
- </zone>
- <zone type="Africa/Sao_Tome">
- <exemplarCity>ساؤ ٹوم</exemplarCity>
- </zone>
- <zone type="America/El_Salvador">
- <exemplarCity>ال سلواڈور</exemplarCity>
- </zone>
- <zone type="America/Lower_Princes">
- <exemplarCity>لوور پرنسس کوارٹر</exemplarCity>
- </zone>
- <zone type="Asia/Damascus">
- <exemplarCity>دمشق</exemplarCity>
- </zone>
- <zone type="Africa/Mbabane">
- <exemplarCity>مبابین</exemplarCity>
- </zone>
- <zone type="America/Grand_Turk">
- <exemplarCity>عظیم ترک</exemplarCity>
- </zone>
- <zone type="Africa/Ndjamena">
- <exemplarCity>ڈجامینا</exemplarCity>
- </zone>
- <zone type="Indian/Kerguelen">
- <exemplarCity>کرگیولین</exemplarCity>
- </zone>
- <zone type="Africa/Lome">
- <exemplarCity>لوم</exemplarCity>
- </zone>
- <zone type="Asia/Bangkok">
- <exemplarCity>بنکاک</exemplarCity>
- </zone>
- <zone type="Asia/Dushanbe">
- <exemplarCity>دوشانبے</exemplarCity>
- </zone>
- <zone type="Pacific/Fakaofo">
- <exemplarCity>فکاؤفو</exemplarCity>
- </zone>
- <zone type="Asia/Dili">
- <exemplarCity>ڈلی</exemplarCity>
- </zone>
- <zone type="Asia/Ashgabat">
- <exemplarCity>اشغبت</exemplarCity>
- </zone>
- <zone type="Africa/Tunis">
- <exemplarCity>تیونس</exemplarCity>
- </zone>
- <zone type="Pacific/Tongatapu">
- <exemplarCity>ٹونگاٹاپو</exemplarCity>
- </zone>
- <zone type="Europe/Istanbul">
- <exemplarCity>استنبول</exemplarCity>
- </zone>
- <zone type="America/Port_of_Spain">
- <exemplarCity>پورٹ آف اسپین</exemplarCity>
- </zone>
- <zone type="Pacific/Funafuti">
- <exemplarCity>فیونافیوٹی</exemplarCity>
- </zone>
- <zone type="Asia/Taipei">
- <exemplarCity>تائپے</exemplarCity>
- </zone>
- <zone type="Africa/Dar_es_Salaam">
- <exemplarCity>دار السلام</exemplarCity>
- </zone>
- <zone type="Europe/Uzhgorod">
- <exemplarCity>ازگوروڈ</exemplarCity>
- </zone>
- <zone type="Europe/Kiev">
- <exemplarCity>کیوو</exemplarCity>
- </zone>
- <zone type="Europe/Simferopol">
- <exemplarCity>سمفروپول</exemplarCity>
- </zone>
- <zone type="Europe/Zaporozhye">
- <exemplarCity>زیپوروزائی</exemplarCity>
- </zone>
- <zone type="Africa/Kampala">
- <exemplarCity>کیمپالا</exemplarCity>
- </zone>
- <zone type="Pacific/Midway">
- <exemplarCity>وسط دن</exemplarCity>
- </zone>
- <zone type="Pacific/Johnston">
- <exemplarCity>جانسٹن</exemplarCity>
- </zone>
- <zone type="Pacific/Wake">
- <exemplarCity>بیدار</exemplarCity>
- </zone>
- <zone type="America/Adak">
- <exemplarCity>اداک</exemplarCity>
- </zone>
- <zone type="America/Nome">
- <exemplarCity>نوم</exemplarCity>
- </zone>
- <zone type="Pacific/Honolulu">
- <exemplarCity>ہونولولو</exemplarCity>
- </zone>
- <zone type="America/Anchorage">
- <exemplarCity>اینکریج</exemplarCity>
- </zone>
- <zone type="America/Yakutat">
- <exemplarCity>یکوٹیٹ</exemplarCity>
- </zone>
- <zone type="America/Sitka">
- <exemplarCity>سیٹکا</exemplarCity>
- </zone>
- <zone type="America/Juneau">
- <exemplarCity>جونیئو</exemplarCity>
- </zone>
- <zone type="America/Metlakatla">
- <exemplarCity>میٹلا کاٹلا</exemplarCity>
- </zone>
- <zone type="America/Los_Angeles">
- <exemplarCity>لاس اینجلس</exemplarCity>
- </zone>
- <zone type="America/Boise">
- <exemplarCity>بوائس</exemplarCity>
- </zone>
- <zone type="America/Phoenix">
- <exemplarCity>فینکس</exemplarCity>
- </zone>
- <zone type="America/Denver">
- <exemplarCity>ڈینور</exemplarCity>
- </zone>
- <zone type="America/North_Dakota/Beulah">
- <exemplarCity>بیولاہ، شمالی ڈکوٹا</exemplarCity>
- </zone>
- <zone type="America/North_Dakota/New_Salem">
- <exemplarCity>نیو سلیم، شمالی ڈکوٹا</exemplarCity>
- </zone>
- <zone type="America/North_Dakota/Center">
- <exemplarCity>وسط، شمالی ڈکوٹا</exemplarCity>
- </zone>
- <zone type="America/Chicago">
- <exemplarCity>شکاگو</exemplarCity>
- </zone>
- <zone type="America/Menominee">
- <exemplarCity>مینومینی</exemplarCity>
- </zone>
- <zone type="America/Indiana/Vincennes">
- <exemplarCity>ونسینیز، انڈیانا</exemplarCity>
- </zone>
- <zone type="America/Indiana/Petersburg">
- <exemplarCity>پیٹرزبرگ، انڈیانا</exemplarCity>
- </zone>
- <zone type="America/Indiana/Tell_City">
- <exemplarCity>ٹیل سٹی، انڈیانا</exemplarCity>
- </zone>
- <zone type="America/Indiana/Knox">
- <exemplarCity>کنوکس، انڈیانا</exemplarCity>
- </zone>
- <zone type="America/Indiana/Winamac">
- <exemplarCity>وینامیک، انڈیانا</exemplarCity>
- </zone>
- <zone type="America/Indiana/Marengo">
- <exemplarCity>مرینگو، انڈیانا</exemplarCity>
- </zone>
- <zone type="America/Indianapolis">
- <exemplarCity>انڈیاناپولس</exemplarCity>
- </zone>
- <zone type="America/Louisville">
- <exemplarCity>لوئس ویلے</exemplarCity>
- </zone>
- <zone type="America/Indiana/Vevay">
- <exemplarCity>ویوے، انڈیانا</exemplarCity>
- </zone>
- <zone type="America/Kentucky/Monticello">
- <exemplarCity>مونٹیسیلو، کینٹوکی</exemplarCity>
- </zone>
- <zone type="America/Detroit">
- <exemplarCity>ڈیٹرائٹ</exemplarCity>
- </zone>
- <zone type="America/New_York">
- <exemplarCity>نیو یارک</exemplarCity>
- </zone>
- <zone type="America/Montevideo">
- <exemplarCity>مونٹی ویڈیو</exemplarCity>
- </zone>
- <zone type="Asia/Samarkand">
- <exemplarCity>سمرقند</exemplarCity>
- </zone>
- <zone type="Asia/Tashkent">
- <exemplarCity>تاشقند</exemplarCity>
- </zone>
- <zone type="Europe/Vatican">
- <exemplarCity>واٹیکن</exemplarCity>
- </zone>
- <zone type="America/St_Vincent">
- <exemplarCity>سینٹ ونسنٹ</exemplarCity>
- </zone>
- <zone type="America/Caracas">
- <exemplarCity>کراکاس</exemplarCity>
- </zone>
- <zone type="America/Tortola">
- <exemplarCity>ٹورٹولا</exemplarCity>
- </zone>
- <zone type="America/St_Thomas">
- <exemplarCity>سینٹ تھامس</exemplarCity>
- </zone>
- <zone type="Asia/Saigon">
- <exemplarCity>ہو چی منہ سٹی</exemplarCity>
- </zone>
- <zone type="Pacific/Efate">
- <exemplarCity>ایفیٹ</exemplarCity>
- </zone>
- <zone type="Pacific/Wallis">
- <exemplarCity>ولّیس</exemplarCity>
- </zone>
- <zone type="Pacific/Apia">
- <exemplarCity>اپیا</exemplarCity>
- </zone>
- <zone type="Asia/Aden">
- <exemplarCity>عدن</exemplarCity>
- </zone>
- <zone type="Indian/Mayotte">
- <exemplarCity>مایوٹ</exemplarCity>
- </zone>
- <zone type="Africa/Johannesburg">
- <exemplarCity>جوہانسبرگ</exemplarCity>
- </zone>
- <zone type="Africa/Lusaka">
- <exemplarCity>لیوساکا</exemplarCity>
- </zone>
- <zone type="Africa/Harare">
- <exemplarCity>ہرارے</exemplarCity>
- </zone>
- <metazone type="Afghanistan">
- <long>
- <standard>افغانستان کا وقت</standard>
- </long>
- </metazone>
- <metazone type="Africa_Central">
- <long>
- <standard>وسطی افریقہ کا وقت</standard>
- </long>
- </metazone>
- <metazone type="Africa_Eastern">
- <long>
- <standard>مشرقی افریقہ کا وقت</standard>
- </long>
- </metazone>
- <metazone type="Africa_Southern">
- <long>
- <standard>جنوبی افریقہ کا معیاری وقت</standard>
- </long>
- </metazone>
- <metazone type="Africa_Western">
- <long>
- <generic>مغربی افریقہ کا وقت</generic>
- <standard>مغربی افریقہ کا معیاری وقت</standard>
- <daylight>مغربی افریقہ کا موسم گرما کا وقت</daylight>
- </long>
- </metazone>
- <metazone type="Alaska">
- <long>
- <generic>الاسکا ٹائم</generic>
- <standard>الاسکا اسٹینڈرڈ ٹائم</standard>
- <daylight>الاسکا ڈے لائٹ ٹائم</daylight>
- </long>
- </metazone>
- <metazone type="Amazon">
- <long>
- <generic>امیزون ٹائم</generic>
- <standard>امیزن اسٹینڈرڈ ٹائم</standard>
- <daylight>امیزون کا موسم گرما کا وقت</daylight>
- </long>
- </metazone>
- <metazone type="America_Central">
- <long>
- <generic>سنٹرل ٹائم</generic>
- <standard>سنٹرل اسٹینڈرڈ ٹائم</standard>
- <daylight>سنٹرل ڈے لائٹ ٹائم</daylight>
- </long>
- </metazone>
- <metazone type="America_Eastern">
- <long>
- <generic>ایسٹرن ٹائم</generic>
- <standard>ایسٹرن اسٹینڈرڈ ٹائم</standard>
- <daylight>ایسٹرن ڈے لائٹ ٹائم</daylight>
- </long>
- </metazone>
- <metazone type="America_Mountain">
- <long>
- <generic>ماؤنٹین ٹائم</generic>
- <standard>ماؤنٹین اسٹینڈرڈ ٹائم</standard>
- <daylight>ماؤنٹین ڈے لائٹ ٹائم</daylight>
- </long>
- </metazone>
- <metazone type="America_Pacific">
- <long>
- <generic>پیسفک ٹائم</generic>
- <standard>پیسفک اسٹینڈرڈ ٹائم</standard>
- <daylight>پیسفک ڈے لائٹ ٹائم</daylight>
- </long>
- </metazone>
- <metazone type="Anadyr">
- <long>
- <generic>انیدر ٹائم</generic>
- <standard>انیدر اسٹینڈرڈ ٹائم</standard>
- <daylight>انیدر سمر ٹائم</daylight>
- </long>
- </metazone>
- <metazone type="Arabian">
- <long>
- <generic>عرب کا وقت</generic>
- <standard>عرب کا معیاری وقت</standard>
- <daylight>عرب کا دن کا وقت</daylight>
- </long>
- </metazone>
- <metazone type="Argentina">
- <long>
- <generic>ارجنٹینا ٹائم</generic>
- <standard>ارجنٹینا کا معیاری وقت</standard>
- <daylight>ارجنٹینا سمر ٹائم</daylight>
- </long>
- </metazone>
- <metazone type="Argentina_Western">
- <long>
- <generic>مغربی ارجنٹینا کا وقت</generic>
- <standard>مغربی ارجنٹینا کا معیاری وقت</standard>
- <daylight>مغربی ارجنٹینا کا موسم گرما کا وقت</daylight>
- </long>
- </metazone>
- <metazone type="Armenia">
- <long>
- <generic>آرمینیا کا وقت</generic>
- <standard>آرمینیا کا معیاری وقت</standard>
- <daylight>آرمینیا کا موسم گرما کا وقت</daylight>
- </long>
- </metazone>
- <metazone type="Atlantic">
- <long>
- <generic>اٹلانٹک ٹائم</generic>
- <standard>اٹلانٹک اسٹینڈرڈ ٹائم</standard>
- <daylight>اٹلانٹک ڈے لائٹ ٹائم</daylight>
- </long>
- </metazone>
- <metazone type="Australia_Central">
- <long>
- <generic>سنٹرل آسٹریلیا ٹائم</generic>
- <standard>آسٹریلین سنٹرل اسٹینڈرڈ ٹائم</standard>
- <daylight>آسٹریلین سنٹرل ڈے لائٹ ٹائم</daylight>
- </long>
- </metazone>
- <metazone type="Australia_CentralWestern">
- <long>
- <generic>آسٹریلین سنٹرل ویسٹرن ٹائم</generic>
- <standard>آسٹریلین سنٹرل ویسٹرن اسٹینڈرڈ ٹائم</standard>
- <daylight>آسٹریلین سنٹرل ویسٹرن ڈے لائٹ ٹائم</daylight>
- </long>
- </metazone>
- <metazone type="Australia_Eastern">
- <long>
- <generic>ایسٹرن آسٹریلیا ٹائم</generic>
- <standard>آسٹریلین ایسٹرن اسٹنڈرڈ ٹائم</standard>
- <daylight>آسٹریلین ایسٹرن ڈے لائٹ ٹائم</daylight>
- </long>
- </metazone>
- <metazone type="Australia_Western">
- <long>
- <generic>ویسٹرن آسٹریلیا ٹائم</generic>
- <standard>آسٹریلیا ویسٹرن اسٹینڈرڈ ٹائم</standard>
- <daylight>آسٹریلین ویسٹرن ڈے لائٹ ٹائم</daylight>
- </long>
- </metazone>
- <metazone type="Azerbaijan">
- <long>
- <generic>آذربائیجان کا وقت</generic>
- <standard>آذربائیجان کا معیاری وقت</standard>
- <daylight>آذربائیجان کا موسم گرما کا وقت</daylight>
- </long>
- </metazone>
- <metazone type="Azores">
- <long>
- <generic>ازوریس کا وقت</generic>
- <standard>ازوریس کا معیاری وقت</standard>
- <daylight>ازوریس کا موسم گرما کا وقت</daylight>
- </long>
- </metazone>
- <metazone type="Bangladesh">
- <long>
- <generic>بنگلہ دیش کا وقت</generic>
- <standard>بنگلہ دیش کا معیاری وقت</standard>
- <daylight>بنگلہ دیش کا موسم گرما کا وقت</daylight>
- </long>
- </metazone>
- <metazone type="Bhutan">
- <long>
- <standard>بھوٹان کا وقت</standard>
- </long>
- </metazone>
- <metazone type="Bolivia">
- <long>
- <standard>بولیویا کا وقت</standard>
- </long>
- </metazone>
- <metazone type="Brasilia">
- <long>
- <generic>برازیلیا ٹائم</generic>
- <standard>برازیلیا اسٹینڈرڈ ٹائم</standard>
- <daylight>برازیلیا سمر ٹائم</daylight>
- </long>
- </metazone>
- <metazone type="Brunei">
- <long>
- <standard>برونئی دارالسلام کا وقت</standard>
- </long>
- </metazone>
- <metazone type="Cape_Verde">
- <long>
- <generic>کیپ ورڈی کا وقت</generic>
- <standard>کیپ ورڈی کا معیاری وقت</standard>
- <daylight>کیپ ورڈی کا موسم گرما کا وقت</daylight>
- </long>
- </metazone>
- <metazone type="Chamorro">
- <long>
- <standard>شمورو کا معیاری وقت</standard>
- </long>
- </metazone>
- <metazone type="Chatham">
- <long>
- <generic>چیتھم کا وقت</generic>
- <standard>چیتھم کا موسم گرما کا وقت</standard>
- <daylight>چیتھم کا دن کا وقت</daylight>
- </long>
- </metazone>
- <metazone type="Chile">
- <long>
- <generic>چلی کا وقت</generic>
- <standard>چلی کا معیاری وقت</standard>
- <daylight>چلی کا موسم گرما کا وقت</daylight>
- </long>
- </metazone>
- <metazone type="China">
- <long>
- <generic>چین کا وقت</generic>
- <standard>چین کا معیاری وقت</standard>
- <daylight>چین کا دن کا وقت</daylight>
- </long>
- </metazone>
- <metazone type="Choibalsan">
- <long>
- <generic>کوئبلسان ٹائم</generic>
- <standard>کوئبلسان کا معیاری وقت</standard>
- <daylight>کوائبلسان سمر ٹائم</daylight>
- </long>
- </metazone>
- <metazone type="Christmas">
- <long>
- <standard>کرسمس آئلینڈ کا وقت</standard>
- </long>
- </metazone>
- <metazone type="Cocos">
- <long>
- <standard>کوکوس آئلینڈز کا وقت</standard>
- </long>
- </metazone>
- <metazone type="Colombia">
- <long>
- <generic>کولمبیا کا وقت</generic>
- <standard>کولمبیا کا معیاری وقت</standard>
- <daylight>کولمبیا کا موسم گرما کا وقت</daylight>
- </long>
- </metazone>
- <metazone type="Cook">
- <long>
- <generic>کک آئلینڈز کا وقت</generic>
- <standard>کک آئلینڈز کا معیاری وقت</standard>
- <daylight>کک آئلینڈز کا نصف موسم گرما کا وقت</daylight>
- </long>
- </metazone>
- <metazone type="Cuba">
- <long>
- <generic>کیوبا کا وقت</generic>
- <standard>کیوبا کا معیاری وقت</standard>
- <daylight>کیوبا کا دن کا وقت</daylight>
- </long>
- </metazone>
- <metazone type="Davis">
- <long>
- <standard>ڈیوس کا وقت</standard>
- </long>
- </metazone>
- <metazone type="DumontDUrville">
- <long>
- <standard>ڈومونٹ-ڈی'ارویلے کا وقت</standard>
- </long>
- </metazone>
- <metazone type="East_Timor">
- <long>
- <standard>مشرقی تیمور کا وقت</standard>
- </long>
- </metazone>
- <metazone type="Easter">
- <long>
- <generic>ایسٹر آئلینڈ کا وقت</generic>
- <standard>ایسٹر آئلینڈ کا معیاری وقت</standard>
- <daylight>ایسٹر آئلینڈ کا موسم گرما کا وقت</daylight>
- </long>
- </metazone>
- <metazone type="Ecuador">
- <long>
- <standard>ایکواڈور کا وقت</standard>
- </long>
- </metazone>
- <metazone type="Europe_Central">
- <long>
- <generic>وسط یورپ کا وقت</generic>
- <standard>وسطی یورپ کا معیاری وقت</standard>
- <daylight>وسطی یورپ کا موسم گرما کا وقت</daylight>
- </long>
- </metazone>
- <metazone type="Europe_Eastern">
- <long>
- <generic>مشرقی یورپ کا وقت</generic>
- <standard>مشرقی یورپ کا معیاری وقت</standard>
- <daylight>مشرقی یورپ کا موسم گرما کا وقت</daylight>
- </long>
- </metazone>
- <metazone type="Europe_Western">
- <long>
- <generic>مغربی یورپ کا وقت</generic>
- <standard>مغربی یورپ کا معیاری وقت</standard>
- <daylight>مغربی یورپ کا موسم گرما کا وقت</daylight>
- </long>
- </metazone>
- <metazone type="Falkland">
- <long>
- <generic>فاک لینڈ آئلینڈز کا وقت</generic>
- <standard>فاک لینڈ آئلینڈز کا معیاری وقت</standard>
- <daylight>فاک لینڈ آئلینڈز کا موسم گرما کا وقت</daylight>
- </long>
- </metazone>
- <metazone type="Fiji">
- <long>
- <generic>فجی کا وقت</generic>
- <standard>فجی کا معیاری وقت</standard>
- <daylight>فجی کا موسم گرما کا وقت</daylight>
- </long>
- </metazone>
- <metazone type="French_Guiana">
- <long>
- <standard>فرینچ گیانا کا وقت</standard>
- </long>
- </metazone>
- <metazone type="French_Southern">
- <long>
- <standard>فرینچ سدرن اور انٹارکٹک کا وقت</standard>
- </long>
- </metazone>
- <metazone type="Galapagos">
- <long>
- <standard>گالاپاگوز کا وقت</standard>
- </long>
- </metazone>
- <metazone type="Gambier">
- <long>
- <standard>گیمبیئر کا وقت</standard>
- </long>
- </metazone>
- <metazone type="Georgia">
- <long>
- <generic>جارجیا کا وقت</generic>
- <standard>جارجیا کا معیاری وقت</standard>
- <daylight>جارجیا کا موسم گرما کا وقت</daylight>
- </long>
- </metazone>
- <metazone type="Gilbert_Islands">
- <long>
- <standard>جلبرٹ آئلینڈز کا وقت</standard>
- </long>
- </metazone>
- <metazone type="GMT">
- <long>
- <standard>گرین وچ کا اصل وقت</standard>
- </long>
- </metazone>
- <metazone type="Greenland_Eastern">
- <long>
- <generic>مشرقی گرین لینڈ کا وقت</generic>
- <standard>مشرقی گرین لینڈ کا معیاری وقت</standard>
- <daylight>مشرقی گرین لینڈ کا موسم گرما کا وقت</daylight>
- </long>
- </metazone>
- <metazone type="Greenland_Western">
- <long>
- <generic>مغربی گرین لینڈ کا وقت</generic>
- <standard>مغربی گرین لینڈ کا معیاری وقت</standard>
- <daylight>مغربی گرین لینڈ کا موسم گرما کا وقت</daylight>
- </long>
- </metazone>
- <metazone type="Gulf">
- <long>
- <standard>خلیج کا معیاری وقت</standard>
- </long>
- </metazone>
- <metazone type="Guyana">
- <long>
- <standard>گیانا کا وقت</standard>
- </long>
- </metazone>
- <metazone type="Hawaii_Aleutian">
- <long>
- <generic>ہوائی الیوٹیئن ٹائم</generic>
- <standard>ہوائی الیوٹیئن اسٹینڈرڈ ٹائم</standard>
- <daylight>ہوائی الیوٹیئن ڈے لائٹ ٹائم</daylight>
- </long>
- </metazone>
- <metazone type="Hong_Kong">
- <long>
- <generic>ہانگ کانگ کا وقت</generic>
- <standard>ہانگ کانگ کا معیاری وقت</standard>
- <daylight>ہانگ کانگ کا موسم گرما کا وقت</daylight>
- </long>
- </metazone>
- <metazone type="Hovd">
- <long>
- <generic>ہووارڈ ٹائم</generic>
- <standard>ہاورڈ کا معیاری وقت</standard>
- <daylight>ہووارڈ سمر ٹائم</daylight>
- </long>
- </metazone>
- <metazone type="India">
- <long>
- <standard>ہندوستان کا معیاری وقت</standard>
- </long>
- </metazone>
- <metazone type="Indian_Ocean">
- <long>
- <standard>بحر ہند کا وقت</standard>
- </long>
- </metazone>
- <metazone type="Indochina">
- <long>
- <standard>ہند چین کا وقت</standard>
- </long>
- </metazone>
- <metazone type="Indonesia_Central">
- <long>
- <standard>وسطی انڈونیشیا کا وقت</standard>
- </long>
- </metazone>
- <metazone type="Indonesia_Eastern">
- <long>
- <standard>مشرقی انڈونیشیا کا وقت</standard>
- </long>
- </metazone>
- <metazone type="Indonesia_Western">
- <long>
- <standard>مغربی انڈونیشیا کا وقت</standard>
- </long>
- </metazone>
- <metazone type="Iran">
- <long>
- <generic>ایران کا وقت</generic>
- <standard>ایران کا معیاری وقت</standard>
- <daylight>ایران کا دن کا وقت</daylight>
- </long>
- </metazone>
- <metazone type="Irkutsk">
- <long>
- <generic>ارکتسک ٹائم</generic>
- <standard>ارکتسک کا معیاری وقت</standard>
- <daylight>ارکتسک سمر ٹائم</daylight>
- </long>
- </metazone>
- <metazone type="Israel">
- <long>
- <generic>اسرائیل کا وقت</generic>
- <standard>اسرائیل کا معیاری وقت</standard>
- <daylight>اسرائیل کا دن کا وقت</daylight>
- </long>
- </metazone>
- <metazone type="Japan">
- <long>
- <generic>جاپان کا وقت</generic>
- <standard>جاپان کا معیاری وقت</standard>
- <daylight>جاپان کا دن کا وقت</daylight>
- </long>
- </metazone>
- <metazone type="Kamchatka">
- <long>
- <generic>پیٹروپاؤلووسک-کیمچسکی ٹائم</generic>
- <standard>پیٹروپاؤلووسک-کیمچسکی اسٹینڈرڈ ٹائم</standard>
- <daylight>پیٹروپاؤلووسک-کیمچسکی سمر ٹائم</daylight>
- </long>
- </metazone>
- <metazone type="Kazakhstan_Eastern">
- <long>
- <standard>مشرقی قزاخستان کا وقت</standard>
- </long>
- </metazone>
- <metazone type="Kazakhstan_Western">
- <long>
- <standard>مغربی قزاخستان کا وقت</standard>
- </long>
- </metazone>
- <metazone type="Korea">
- <long>
- <generic>کوریا کا وقت</generic>
- <standard>کوریا کا معیاری وقت</standard>
- <daylight>کوریا کا دن کا وقت</daylight>
- </long>
- </metazone>
- <metazone type="Kosrae">
- <long>
- <standard>کوسرے کا وقت</standard>
- </long>
- </metazone>
- <metazone type="Krasnoyarsk">
- <long>
- <generic>کریسنویارسک ٹائم</generic>
- <standard>کرسنویارسک کا معیاری وقت</standard>
- <daylight>کریسنویارسک سمر ٹائم</daylight>
- </long>
- </metazone>
- <metazone type="Kyrgystan">
- <long>
- <standard>کرغستان کا وقت</standard>
- </long>
- </metazone>
- <metazone type="Line_Islands">
- <long>
- <standard>لائن آئلینڈز کا وقت</standard>
- </long>
- </metazone>
- <metazone type="Lord_Howe">
- <long>
- <generic>لارڈ ہووے ٹائم</generic>
- <standard>لارڈ ہووے اسٹینڈرڈ ٹائم</standard>
- <daylight>لارڈ ہووے ڈے لائٹ ٹائم</daylight>
- </long>
- </metazone>
- <metazone type="Macquarie">
- <long>
- <standard>مکوآری آئلینڈ کا وقت</standard>
- </long>
- </metazone>
- <metazone type="Magadan">
- <long>
- <generic>میگیدن ٹائم</generic>
- <standard>میگدان کا معیاری وقت</standard>
- <daylight>میگیدن سمر ٹائم</daylight>
- </long>
- </metazone>
- <metazone type="Malaysia">
- <long>
- <standard>ملیشیا کا وقت</standard>
- </long>
- </metazone>
- <metazone type="Maldives">
- <long>
- <standard>مالدیپ کا وقت</standard>
- </long>
- </metazone>
- <metazone type="Marquesas">
- <long>
- <standard>مارکیسس کا وقت</standard>
- </long>
- </metazone>
- <metazone type="Marshall_Islands">
- <long>
- <standard>مارشل آئلینڈز کا وقت</standard>
- </long>
- </metazone>
- <metazone type="Mauritius">
- <long>
- <generic>ماریشس کا وقت</generic>
- <standard>ماریشس کا معیاری وقت</standard>
- <daylight>ماریشس کا موسم گرما کا وقت</daylight>
- </long>
- </metazone>
- <metazone type="Mawson">
- <long>
- <standard>ماؤسن کا وقت</standard>
- </long>
- </metazone>
- <metazone type="Mongolia">
- <long>
- <generic>یولان بیتور کا وقت</generic>
- <standard>یولان بیتور کا معیاری وقت</standard>
- <daylight>یولان بیٹور سمر ٹائم</daylight>
- </long>
- </metazone>
- <metazone type="Moscow">
- <long>
- <generic>ماسکو ٹائم</generic>
- <standard>ماسکو اسٹینڈرڈ ٹائم</standard>
- <daylight>ماسکو سمر ٹائم</daylight>
- </long>
- </metazone>
- <metazone type="Myanmar">
- <long>
- <standard>میانمار کا وقت</standard>
- </long>
- </metazone>
- <metazone type="Nauru">
- <long>
- <standard>ناؤرو کا وقت</standard>
- </long>
- </metazone>
- <metazone type="Nepal">
- <long>
- <standard>نیپال کا وقت</standard>
- </long>
- </metazone>
- <metazone type="New_Caledonia">
- <long>
- <generic>نیو کیلیڈونیا کا وقت</generic>
- <standard>نیو کیلیڈونیا کا معیاری وقت</standard>
- <daylight>نیو کیلیڈونیا کا موسم گرما کا وقت</daylight>
- </long>
- </metazone>
- <metazone type="New_Zealand">
- <long>
- <generic>نیوزی لینڈ کا وقت</generic>
- <standard>نیوزی لینڈ کا معیاری وقت</standard>
- <daylight>نیوزی لینڈ کا دن کا وقت</daylight>
- </long>
- </metazone>
- <metazone type="Newfoundland">
- <long>
- <generic>نیو فاؤنڈ لینڈ ٹائم</generic>
- <standard>نیو فاؤنڈ لینڈ اسٹینڈرڈ ٹائم</standard>
- <daylight>نیو فاؤنڈ لینڈ ڈے لائٹ ٹائم</daylight>
- </long>
- </metazone>
- <metazone type="Niue">
- <long>
- <standard>نیئو کا وقت</standard>
- </long>
- </metazone>
- <metazone type="Norfolk">
- <long>
- <standard>نارفوک آئلینڈز کا وقت</standard>
- </long>
- </metazone>
- <metazone type="Noronha">
- <long>
- <generic>فرنانڈو ڈی نورنہا کا وقت</generic>
- <standard>فرنانڈو ڈی نورنہا کا معیاری وقت</standard>
- <daylight>فرنانڈو ڈی نورونہا سمر ٹائم</daylight>
- </long>
- </metazone>
- <metazone type="Novosibirsk">
- <long>
- <generic>نوووسیبرسک ٹائم</generic>
- <standard>نوووسیبرسک کا معیاری وقت</standard>
- <daylight>نوووسِبِرسک سمر ٹائم</daylight>
- </long>
- </metazone>
- <metazone type="Omsk">
- <long>
- <generic>اومسک ٹائم</generic>
- <standard>اومسک کا معیاری وقت</standard>
- <daylight>اومسک سمر ٹائم</daylight>
- </long>
- </metazone>
- <metazone type="Pakistan">
- <long>
- <generic>پاکستان کا وقت</generic>
- <standard>پاکستان کا معیاری وقت</standard>
- <daylight>پاکستان کا موسم گرما کا وقت</daylight>
- </long>
- </metazone>
- <metazone type="Palau">
- <long>
- <standard>پلاؤ کا وقت</standard>
- </long>
- </metazone>
- <metazone type="Papua_New_Guinea">
- <long>
- <standard>پاپوآ نیو گنی کا وقت</standard>
- </long>
- </metazone>
- <metazone type="Paraguay">
- <long>
- <generic>پیراگوئے کا وقت</generic>
- <standard>پیراگوئے کا معیاری وقت</standard>
- <daylight>پیراگوئے کا موسم گرما کا وقت</daylight>
- </long>
- </metazone>
- <metazone type="Peru">
- <long>
- <generic>پیرو کا وقت</generic>
- <standard>پیرو کا معیاری وقت</standard>
- <daylight>پیرو کا موسم گرما کا وقت</daylight>
- </long>
- </metazone>
- <metazone type="Philippines">
- <long>
- <generic>فلپائن کا وقت</generic>
- <standard>فلپائن کا معیاری وقت</standard>
- <daylight>فلپائن کا موسم گرما کا وقت</daylight>
- </long>
- </metazone>
- <metazone type="Phoenix_Islands">
- <long>
- <standard>فینکس آئلینڈز کا وقت</standard>
- </long>
- </metazone>
- <metazone type="Pierre_Miquelon">
- <long>
- <generic>سینٹ پیئر اور مکلیئون کا وقت</generic>
- <standard>سینٹ پیئر اور مکلیئون کا معیاری وقت</standard>
- <daylight>سینٹ پیئر اور مکلیئون کا دن کا وقت</daylight>
- </long>
- </metazone>
- <metazone type="Pitcairn">
- <long>
- <standard>پٹکائرن کا وقت</standard>
- </long>
- </metazone>
- <metazone type="Ponape">
- <long>
- <standard>پوناپے کا وقت</standard>
- </long>
- </metazone>
- <metazone type="Reunion">
- <long>
- <standard>ری یونین کا وقت</standard>
- </long>
- </metazone>
- <metazone type="Rothera">
- <long>
- <standard>روتھیرا کا وقت</standard>
- </long>
- </metazone>
- <metazone type="Sakhalin">
- <long>
- <generic>سخالین ٹائم</generic>
- <standard>سخالین کا معیاری وقت</standard>
- <daylight>سخالین سمر ٹائم</daylight>
- </long>
- </metazone>
- <metazone type="Samara">
- <long>
- <generic>سمارا ٹائم</generic>
- <standard>سمارا اسٹینڈرڈ ٹائم</standard>
- <daylight>سمارا سمر ٹائم</daylight>
- </long>
- </metazone>
- <metazone type="Samoa">
- <long>
- <generic>ساموآ وقت</generic>
- <standard>ساموآ کا معیاری وقت</standard>
- <daylight>ساموآ سمر وقت</daylight>
- </long>
- </metazone>
- <metazone type="Seychelles">
- <long>
- <standard>سیشلیز کا وقت</standard>
- </long>
- </metazone>
- <metazone type="Singapore">
- <long>
- <standard>سنگاپور کا معیاری وقت</standard>
- </long>
- </metazone>
- <metazone type="Solomon">
- <long>
- <standard>سولمن آئلینڈز کا وقت</standard>
- </long>
- </metazone>
- <metazone type="South_Georgia">
- <long>
- <standard>جنوبی جارجیا کا وقت</standard>
- </long>
- </metazone>
- <metazone type="Suriname">
- <long>
- <standard>سورینام کا وقت</standard>
- </long>
- </metazone>
- <metazone type="Syowa">
- <long>
- <standard>سیووا کا وقت</standard>
- </long>
- </metazone>
- <metazone type="Tahiti">
- <long>
- <standard>تاہیتی کا وقت</standard>
- </long>
- </metazone>
- <metazone type="Taipei">
- <long>
- <generic>تائیپے کا وقت</generic>
- <standard>تائیپے کا معیاری وقت</standard>
- <daylight>تائیپے کا دن کا وقت</daylight>
- </long>
- </metazone>
- <metazone type="Tajikistan">
- <long>
- <standard>تاجکستان کا وقت</standard>
- </long>
- </metazone>
- <metazone type="Tokelau">
- <long>
- <standard>ٹوکیلاؤ کا وقت</standard>
- </long>
- </metazone>
- <metazone type="Tonga">
- <long>
- <generic>ٹونگا کا وقت</generic>
- <standard>ٹونگا کا معیاری وقت</standard>
- <daylight>ٹونگا کا موسم گرما کا وقت</daylight>
- </long>
- </metazone>
- <metazone type="Truk">
- <long>
- <standard>چوک کا وقت</standard>
- </long>
- </metazone>
- <metazone type="Turkmenistan">
- <long>
- <generic>ترکمانستان کا وقت</generic>
- <standard>ترکمانستان کا معیاری وقت</standard>
- <daylight>ترکمانستان کا موسم گرما کا وقت</daylight>
- </long>
- </metazone>
- <metazone type="Tuvalu">
- <long>
- <standard>ٹوالو کا وقت</standard>
- </long>
- </metazone>
- <metazone type="Uruguay">
- <long>
- <generic>یوروگوئے کا وقت</generic>
- <standard>یوروگوئے کا معیاری وقت</standard>
- <daylight>یوروگوئے کا موسم گرما کا وقت</daylight>
- </long>
- </metazone>
- <metazone type="Uzbekistan">
- <long>
- <generic>ازبکستان کا وقت</generic>
- <standard>ازبکستان کا معیاری وقت</standard>
- <daylight>ازبکستان کا موسم گرما کا وقت</daylight>
- </long>
- </metazone>
- <metazone type="Vanuatu">
- <long>
- <generic>وانوآٹو کا وقت</generic>
- <standard>وانوآٹو کا معیاری وقت</standard>
- <daylight>وانوآٹو کا موسم گرما کا وقت</daylight>
- </long>
- </metazone>
- <metazone type="Venezuela">
- <long>
- <standard>وینزوئیلا کا وقت</standard>
- </long>
- </metazone>
- <metazone type="Vladivostok">
- <long>
- <generic>ولادی ووستک ٹائم</generic>
- <standard>ولادی ووستک کا معیاری وقت</standard>
- <daylight>ولادی ووستک سمر ٹائم</daylight>
- </long>
- </metazone>
- <metazone type="Volgograd">
- <long>
- <generic>وولگوگراد ٹائم</generic>
- <standard>بلغراد کا معیاری وقت</standard>
- <daylight>وولگوگراد سمر ٹائم</daylight>
- </long>
- </metazone>
- <metazone type="Vostok">
- <long>
- <standard>ووسٹاک کا وقت</standard>
- </long>
- </metazone>
- <metazone type="Wake">
- <long>
- <standard>ویک آئلینڈ کا وقت</standard>
- </long>
- </metazone>
- <metazone type="Wallis">
- <long>
- <standard>والیز اور فٹونا کا وقت</standard>
- </long>
- </metazone>
- <metazone type="Yakutsk">
- <long>
- <generic>یکوتسک ٹائم</generic>
- <standard>یاکتسک کا معیاری وقت</standard>
- <daylight>یکوتسک سمر ٹائم</daylight>
- </long>
- </metazone>
- <metazone type="Yekaterinburg">
- <long>
- <generic>یکاٹیرِنبرگ ٹائم</generic>
- <standard>یکیترنگبرگ کا معیاری وقت</standard>
- <daylight>یکاٹیرِنبرگ سمر ٹائم</daylight>
- </long>
- </metazone>
- </timeZoneNames>
- </dates>
- <numbers>
- <defaultNumberingSystem>latn</defaultNumberingSystem>
- <otherNumberingSystems>
- <native>arabext</native>
- </otherNumberingSystems>
- <symbols numberSystem="arabext">
- <decimal>.</decimal>
- <group>,</group>
- <list>;</list>
- <percentSign>%</percentSign>
- <plusSign>+</plusSign> <!-- includes LRM before and after sign -->
- <minusSign>-</minusSign> <!-- includes LRM before and after sign (002D) -->
- <exponential draft="unconfirmed">ق</exponential>
- <perMille>‰</perMille>
- <infinity>∞</infinity>
- <nan draft="unconfirmed">یہ عدد نہیں</nan>
- </symbols>
- <symbols numberSystem="latn">
- <decimal>.</decimal>
- <group>,</group>
- <list>;</list>
- <percentSign>%</percentSign>
- <plusSign>+</plusSign> <!-- includes LRM before sign -->
- <minusSign>-</minusSign> <!-- includes LRM before sign (002D) -->
- <exponential>E</exponential>
- <superscriptingExponent>×</superscriptingExponent>
- <perMille>‰</perMille>
- <infinity>∞</infinity>
- <nan>NaN</nan>
- </symbols>
- <decimalFormats numberSystem="latn">
- <decimalFormatLength>
- <decimalFormat>
- <pattern>#,##0.###</pattern>
- </decimalFormat>
- </decimalFormatLength>
- <decimalFormatLength type="short">
- <decimalFormat>
- <pattern type="1000" count="one">0 ہزار</pattern>
- <pattern type="1000" count="other">0 ہزار</pattern>
- <pattern type="10000" count="one">00 ہزار</pattern>
- <pattern type="10000" count="other">00 ہزار</pattern>
- <pattern type="100000" count="one">0 لاکھ</pattern>
- <pattern type="100000" count="other">0 لاکھ</pattern>
- <pattern type="1000000" count="one">00 لاکھ</pattern>
- <pattern type="1000000" count="other">00 لاکھ</pattern>
- <pattern type="10000000" count="one">0 کروڑ</pattern>
- <pattern type="10000000" count="other">0 کروڑ</pattern>
- <pattern type="100000000" count="one">00 کروڑ</pattern>
- <pattern type="100000000" count="other">00 کروڑ</pattern>
- <pattern type="1000000000" count="one">0 ارب</pattern>
- <pattern type="1000000000" count="other">0 ارب</pattern>
- <pattern type="10000000000" count="one">00 ارب</pattern>
- <pattern type="10000000000" count="other">00 ارب</pattern>
- <pattern type="100000000000" count="one">0 کھرب</pattern>
- <pattern type="100000000000" count="other">0 کھرب</pattern>
- <pattern type="1000000000000" count="one">00 کھرب</pattern>
- <pattern type="1000000000000" count="other">00 کھرب</pattern>
- <pattern type="10000000000000" count="one">00T</pattern>
- <pattern type="10000000000000" count="other">00T</pattern>
- <pattern type="100000000000000" count="one">000T</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 type="standard">
- <pattern>¤#,##0.00</pattern>
- </currencyFormat>
- </currencyFormatLength>
- <unitPattern count="one">{0} {1}</unitPattern>
- <unitPattern count="other">{0} {1}</unitPattern>
- </currencyFormats>
- <currencies>
- <currency type="AED">
- <displayName>متحدہ عرب اماراتی درہم</displayName>
- <displayName count="one">متحدہ عرب اماراتی درہم</displayName>
- <displayName count="other">متحدہ عرب اماراتی درہم</displayName>
- </currency>
- <currency type="AFN">
- <displayName>افغان افغانی</displayName>
- </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="ARS">
- <displayName>ارجنٹائن پیسہ</displayName>
- <displayName count="one">ارجنٹائن پیسہ</displayName>
- <displayName count="other">ارجنٹائن پیسہ</displayName>
- </currency>
- <currency type="AUD">
- <displayName>آسٹریلین ڈالر</displayName>
- <displayName count="one">آسٹریلین ڈالر</displayName>
- <displayName count="other">آسٹریلین ڈالر</displayName>
- <symbol>A$</symbol>
- </currency>
- <currency type="AWG">
- <displayName>اروبن فلورِن</displayName>
- </currency>
- <currency type="AZN">
- <displayName>آذربائجانی منات</displayName>
- </currency>
- <currency type="BAM">
- <displayName>بوسنیا ہرزیگووینا کا قابل منتقلی نشان</displayName>
- </currency>
- <currency type="BBD">
- <displayName>باربیڈین ڈالر</displayName>
- </currency>
- <currency type="BDT">
- <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="BRL">
- <displayName>برازیلی ریئل</displayName>
- <displayName count="one">برازیلی ریئل</displayName>
- <displayName count="other">برازیلی ریئل</displayName>
- </currency>
- <currency type="BSD">
- <displayName>بہامانی ڈالر</displayName>
- </currency>
- <currency type="BTN">
- <displayName>بھوٹانی گُلٹرم</displayName>
- </currency>
- <currency type="BWP">
- <displayName>بوتسوانا کا پولا</displayName>
- </currency>
- <currency type="BYR">
- <displayName>بیلاروسی روبل</displayName>
- </currency>
- <currency type="BZD">
- <displayName>بیلائز ڈالر</displayName>
- </currency>
- <currency type="CAD">
- <displayName>کنیڈین ڈالر</displayName>
- <displayName count="one">کنیڈین ڈالر</displayName>
- <displayName count="other">کنیڈین ڈالر</displayName>
- </currency>
- <currency type="CDF">
- <displayName>کانگولیز فرینک</displayName>
- </currency>
- <currency type="CHF">
- <displayName>سوئس فرانکس</displayName>
- <displayName count="one">سوئس فرانکس</displayName>
- <displayName count="other">سوئس فرانکس</displayName>
- </currency>
- <currency type="CLP">
- <displayName>چلّین پیسہ</displayName>
- <displayName count="one">چلّین پیسہ</displayName>
- <displayName count="other">چلّین پیسہ</displayName>
- </currency>
- <currency type="CNY">
- <displayName>چینی یوآن</displayName>
- </currency>
- <currency type="COP">
- <displayName>کولمبین پیسہ</displayName>
- <displayName count="one">کولمبین پیسہ</displayName>
- <displayName count="other">کولمبین پیسہ</displayName>
- </currency>
- <currency type="CRC">
- <displayName>کوسٹا ریکا کا کولن</displayName>
- </currency>
- <currency type="CUC">
- <displayName>کیوبا کا قابل منتقلی پیسو</displayName>
- </currency>
- <currency type="CUP">
- <displayName>کیوبا کا پیسو</displayName>
- </currency>
- <currency type="CVE">
- <displayName>کیپ ورڈی کا اسکیوڈو</displayName>
- </currency>
- <currency type="CZK">
- <displayName>جمہوریہ چیک کرونا</displayName>
- <displayName count="one">جمہوریہ چیک کرونا</displayName>
- <displayName count="other">جمہوریہ چیک کروناز</displayName>
- </currency>
- <currency type="DEM">
- <displayName draft="contributed">ڈچ مارکس</displayName>
- </currency>
- <currency type="DJF">
- <displayName>جبوتی کا فرینک</displayName>
- </currency>
- <currency type="DKK">
- <displayName>ڈنمارک کرونر</displayName>
- <displayName count="one">ڈنمارک کرونر</displayName>
- <displayName count="other">ڈنمارک کرونر</displayName>
- </currency>
- <currency type="DOP">
- <displayName>ڈومنیکن پیسو</displayName>
- </currency>
- <currency type="DZD">
- <displayName>الجیریائی دینار</displayName>
- </currency>
- <currency type="EEK">
- <displayName draft="contributed">ایسٹونین کرون</displayName>
- </currency>
- <currency type="EGP">
- <displayName>مصری پائونڈ</displayName>
- <displayName count="one">مصری پائونڈ</displayName>
- <displayName count="other">مصری پائونڈ</displayName>
- </currency>
- <currency type="ERN">
- <displayName>اریٹیریا کا نافکا</displayName>
- </currency>
- <currency type="ETB">
- <displayName>ایتھوپیائی بِرّ</displayName>
- </currency>
- <currency type="EUR">
- <displayName>یورو</displayName>
- <displayName count="one">یورو</displayName>
- <displayName count="other">یورو</displayName>
- </currency>
- <currency type="FJD">
- <displayName>فجی کا ڈالر</displayName>
- </currency>
- <currency type="FKP">
- <displayName>فاکلینڈ آئلینڈز پونڈ</displayName>
- </currency>
- <currency type="FRF">
- <displayName draft="provisional">فرانسیسی فرانک</displayName>
- </currency>
- <currency type="GBP">
- <displayName draft="contributed">انگلستانی پاونڈ سٹرلنگ</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="GTQ">
- <displayName>گواٹے مالا کا کوئٹزل</displayName>
- </currency>
- <currency type="GYD">
- <displayName>گویانیز ڈالر</displayName>
- </currency>
- <currency type="HKD">
- <displayName>ھانگ کانگ ڈالر</displayName>
- <displayName count="one">ھانگ کانگ ڈالر</displayName>
- <displayName count="other">ھانگ کانگ ڈالر</displayName>
- </currency>
- <currency type="HNL">
- <displayName>ہونڈوران لیمپیرا</displayName>
- </currency>
- <currency type="HRK">
- <displayName>کروشین کونا</displayName>
- <displayName count="one">کروشین کونا</displayName>
- <displayName count="other">کروشین کونا</displayName>
- </currency>
- <currency type="HTG">
- <displayName>ہیتی کا گؤرڈی</displayName>
- </currency>
- <currency type="HUF">
- <displayName>ہنگرین فورنٹ</displayName>
- <displayName count="one">ہنگرین فورنٹ</displayName>
- <displayName count="other">ہنگرین فورنٹ</displayName>
- </currency>
- <currency type="IDR">
- <displayName>انڈونیشین روپیہ</displayName>
- <displayName count="one">انڈونیشین روپیہ</displayName>
- <displayName count="other">انڈونیشین روپیہ</displayName>
- </currency>
- <currency type="ILS">
- <displayName>اسرائیلی نیا شیکل</displayName>
- <displayName count="one">اسرائیلی نیا شیکل</displayName>
- <displayName count="other">اسرائیلی نیا شیکلز</displayName>
- </currency>
- <currency type="INR">
- <displayName>انڈین روپیہ</displayName>
- </currency>
- <currency type="IQD">
- <displayName>عراقی دینار</displayName>
- </currency>
- <currency type="IRR">
- <displayName>ایرانی ریال</displayName>
- </currency>
- <currency type="ISK">
- <displayName>آئس لینڈ کا کرونا</displayName>
- </currency>
- <currency type="JMD">
- <displayName>جمائیکن ڈالر</displayName>
- </currency>
- <currency type="JOD">
- <displayName>اردنی دینار</displayName>
- </currency>
- <currency type="JPY">
- <displayName>جاپانی ین</displayName>
- <displayName count="one">جاپانی ین</displayName>
- <displayName count="other">جاپانی ین</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="LVL">
- <displayName>لاتویائی لیٹس</displayName>
- </currency>
- <currency type="LYD">
- <displayName>لیبیائی دینار</displayName>
- </currency>
- <currency type="MAD">
- <displayName>مراکشی درہم</displayName>
- <displayName count="one">مراکشی درہم</displayName>
- <displayName count="other">مراکشی درہم</displayName>
- </currency>
- <currency type="MDL">
- <displayName>مالدیپ کا لیو</displayName>
- </currency>
- <currency type="MGA">
- <displayName>ملاگاسی اریاری</displayName>
- </currency>
- <currency type="MKD">
- <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="MUR">
- <displayName>ماریشس کا روپیہ</displayName>
- </currency>
- <currency type="MVR">
- <displayName>مالدیپ کا روفیہ</displayName>
- </currency>
- <currency type="MWK">
- <displayName>ملاوی کواچا</displayName>
- </currency>
- <currency type="MXN">
- <displayName>میکسیکی پیسہ</displayName>
- <displayName count="one">میکسیکی پیسہ</displayName>
- <displayName count="other">میکسیکی پیسہ</displayName>
- </currency>
- <currency type="MYR">
- <displayName>ملیشیائی رنگِٹ</displayName>
- </currency>
- <currency type="MZN">
- <displayName>موزامبیقی میٹیکل</displayName>
- <displayName count="one">موزامبیقی میٹیکل</displayName>
- <displayName count="other">موزامبیقی میٹیکلز</displayName>
- </currency>
- <currency type="NAD">
- <displayName>نامیبیائی ڈالر</displayName>
- </currency>
- <currency type="NGN">
- <displayName>نائیجیریائی نائرا</displayName>
- </currency>
- <currency type="NIO">
- <displayName>نکارا گوا کا کورڈوبا</displayName>
- </currency>
- <currency type="NOK">
- <displayName draft="contributed">ناروے کرونر</displayName>
- </currency>
- <currency type="NPR">
- <displayName>نیپالی روپیہ</displayName>
- </currency>
- <currency type="NZD">
- <displayName>نیوزی لینڈ ڈالر</displayName>
- <displayName count="one">نیوزی لینڈ ڈالر</displayName>
- <displayName count="other">نیوزی لینڈ ڈالر</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>
- <displayName count="one">فلپائینی پیسہ</displayName>
- <displayName count="other">فلپائینی پیسہ</displayName>
- </currency>
- <currency type="PKR">
- <displayName>پاکستانی روپیہ</displayName>
- <symbol>Rs</symbol>
- </currency>
- <currency type="PLN">
- <displayName>پولش نیو زلوٹی</displayName>
- <displayName count="one">پولش نیو زلوٹی</displayName>
- <displayName count="other">پولش نیو زلوٹی</displayName>
- </currency>
- <currency type="PYG">
- <displayName>پیراگوئے کا گوآرنی</displayName>
- </currency>
- <currency type="QAR">
- <displayName>قطری ریال</displayName>
- </currency>
- <currency type="RON">
- <displayName>رومانیائی لیو</displayName>
- <displayName count="one">رومانیائی لیو</displayName>
- <displayName count="other">رومانیائی لی</displayName>
- </currency>
- <currency type="RSD">
- <displayName>سربین دینار</displayName>
- <displayName count="one">سربین دینار</displayName>
- <displayName count="other">سربین دینار</displayName>
- </currency>
- <currency type="RUB">
- <displayName>روسی روبل</displayName>
- <displayName count="one">روسی روبل</displayName>
- <displayName count="other">روسی روبل</displayName>
- </currency>
- <currency type="RWF">
- <displayName>روانڈا کا فرینک</displayName>
- </currency>
- <currency type="SAR">
- <displayName>سعودی ریال</displayName>
- <displayName count="one">سعودی ریال</displayName>
- <displayName count="other">سعودی ریال</displayName>
- </currency>
- <currency type="SBD">
- <displayName>سولومن آئلینڈز ڈالر</displayName>
- </currency>
- <currency type="SCR">
- <displayName>سشلی کا روپیہ</displayName>
- </currency>
- <currency type="SDG">
- <displayName>سوڈانی پونڈ</displayName>
- </currency>
- <currency type="SEK">
- <displayName>سویڈن کرونا</displayName>
- <displayName count="one">سویڈن کرونا</displayName>
- <displayName count="other">سویڈن کرونر</displayName>
- </currency>
- <currency type="SGD">
- <displayName>سنگا پور ڈالر</displayName>
- <displayName count="one">سنگا پور ڈالر</displayName>
- <displayName count="other">سنگا پور ڈالر</displayName>
- </currency>
- <currency type="SHP">
- <displayName>سینٹ ہیلینا پونڈ</displayName>
- </currency>
- <currency type="SIT">
- <displayName draft="contributed">سلوانین ٹولر</displayName>
- </currency>
- <currency type="SKK">
- <displayName draft="contributed">سلووک کرونا</displayName>
- </currency>
- <currency type="SLL">
- <displayName>سیئرا لیون لیون</displayName>
- </currency>
- <currency type="SOS">
- <displayName>صومالی شلنگ</displayName>
- </currency>
- <currency type="SRD">
- <displayName>سورینامی ڈالر</displayName>
- </currency>
- <currency type="SSP">
- <displayName>جنوبی سوڈانی پاؤنڈ</displayName>
- <displayName count="one">جنوبی سوڈانی پاؤنڈ</displayName>
- <displayName count="other">جنوبی سوڈانی پاؤنڈز</displayName>
- </currency>
- <currency type="STD">
- <displayName>ساؤ ٹوم اور پرنسپے ڈوبرا</displayName>
- </currency>
- <currency type="SYP">
- <displayName>شامی پونڈ</displayName>
- </currency>
- <currency type="SZL">
- <displayName>سوازی لیلانجینی</displayName>
- </currency>
- <currency type="THB">
- <displayName>تھائی باہت</displayName>
- <displayName count="one">تھائی باہت</displayName>
- <displayName count="other">تھائی باہت</displayName>
- </currency>
- <currency type="TJS">
- <displayName>تاجکستانی سومونی</displayName>
- </currency>
- <currency type="TMT">
- <displayName>ترکمانستانی منات</displayName>
- </currency>
- <currency type="TND">
- <displayName>تیونیسیائی دینار</displayName>
- </currency>
- <currency type="TOP">
- <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="UGX">
- <displayName>یوگانڈا شلنگ</displayName>
- </currency>
- <currency type="USD">
- <displayName>امریکی ڈالر</displayName>
- <displayName count="one">امریکی ڈالر</displayName>
- <displayName count="other">امریکی ڈالر</displayName>
- <symbol>$</symbol>
- </currency>
- <currency type="UYU">
- <displayName>یوروگویان پیسو</displayName>
- </currency>
- <currency type="UZS">
- <displayName>ازبکستان سوم</displayName>
- </currency>
- <currency type="VEB">
- <displayName>وینزویلا بولیور (1871–2008)</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 فرانک BEAC</displayName>
- <displayName count="one">CFA فرانک BEAC</displayName>
- <displayName count="other">CFA فرانکس BEAC</displayName>
- </currency>
- <currency type="XCD">
- <displayName>مشرقی کریبیا کا ڈالر</displayName>
- </currency>
- <currency type="XOF">
- <displayName>CFA فرانک BCEAO</displayName>
- <displayName count="one">CFA فرانک BCEAO</displayName>
- <displayName count="other">CFA فرانکس BCEAO</displayName>
- <symbol>CFA</symbol>
- </currency>
- <currency type="XPF">
- <displayName>CFP فرانک</displayName>
- <displayName count="one">CFP فرانک</displayName>
- <displayName count="other">CFP فرانکس</displayName>
- </currency>
- <currency type="XXX">
- <displayName>نامعلوم کرنسی</displayName>
- </currency>
- <currency type="YER">
- <displayName>یمنی ریال</displayName>
- </currency>
- <currency type="ZAR">
- <displayName>جنوبی افریقی رانڈ</displayName>
- <displayName count="one">جنوبی افریقی رانڈ</displayName>
- <displayName count="other">جنوبی افریقی رانڈ</displayName>
- </currency>
- <currency type="ZMK">
- <displayName>زامبیائی کواچا (1968–2012)</displayName>
- </currency>
- <currency type="ZMW">
- <displayName>زامبیائی کواچا</displayName>
- </currency>
- </currencies>
- <miscPatterns numberSystem="latn">
- <pattern type="atLeast">⩾{0}</pattern>
- <pattern type="range">{0}–{1}</pattern>
- </miscPatterns>
- </numbers>
- <units>
- <unitLength type="long">
- <compoundUnit type="per">
- <compoundUnitPattern>{0} فی {1}</compoundUnitPattern>
- </compoundUnit>
- <unit type="acceleration-g-force">
- <unitPattern count="one">{0} جی-فورس</unitPattern>
- <unitPattern count="other">{0} جی-فورس</unitPattern>
- </unit>
- <unit type="angle-arc-minute">
- <unitPattern count="one">{0} منٹ</unitPattern>
- <unitPattern count="other">{0} منٹ</unitPattern>
- </unit>
- <unit type="angle-arc-second">
- <unitPattern count="one">{0} سیکنڈ</unitPattern>
- <unitPattern count="other">{0} سیکنڈ</unitPattern>
- </unit>
- <unit type="angle-degree">
- <unitPattern count="one">{0} ڈگری</unitPattern>
- <unitPattern count="other">{0} ڈگری</unitPattern>
- </unit>
- <unit type="area-acre">
- <unitPattern count="one">{0} ایکڑ</unitPattern>
- <unitPattern count="other">{0} ایکڑ</unitPattern>
- </unit>
- <unit type="area-hectare">
- <unitPattern count="one">{0} ہیکٹر</unitPattern>
- <unitPattern count="other">{0} ہیکٹر</unitPattern>
- </unit>
- <unit type="area-square-foot">
- <unitPattern count="one">{0} سکویر فٹ</unitPattern>
- <unitPattern count="other">{0} سکویر فٹ</unitPattern>
- </unit>
- <unit type="area-square-kilometer">
- <unitPattern count="one">{0} سکویر کلو میٹر</unitPattern>
- <unitPattern count="other">{0} سکویر کلو میٹر</unitPattern>
- </unit>
- <unit type="area-square-meter">
- <unitPattern count="one">{0} سکویر میٹر</unitPattern>
- <unitPattern count="other">{0} سکویر میٹر</unitPattern>
- </unit>
- <unit type="area-square-mile">
- <unitPattern count="one">{0} سکویر میل</unitPattern>
- <unitPattern count="other">{0} سکویر میل</unitPattern>
- </unit>
- <unit type="duration-day">
- <unitPattern count="one">{0} دن</unitPattern>
- <unitPattern count="other">{0} دن</unitPattern>
- </unit>
- <unit type="duration-hour">
- <unitPattern count="one">{0} گھنٹہ</unitPattern>
- <unitPattern count="other">{0} گھنٹے</unitPattern>
- </unit>
- <unit type="duration-millisecond">
- <unitPattern count="one">{0} ملی سیکنڈ</unitPattern>
- <unitPattern count="other">{0} میل سیکنڈ</unitPattern>
- </unit>
- <unit type="duration-minute">
- <unitPattern count="one">{0} منٹ</unitPattern>
- <unitPattern count="other">{0} منٹ</unitPattern>
- </unit>
- <unit type="duration-month">
- <unitPattern count="one">{0} مہینہ</unitPattern>
- <unitPattern count="other">{0} مہینے</unitPattern>
- </unit>
- <unit type="duration-second">
- <unitPattern count="one">{0} سیکنڈ</unitPattern>
- <unitPattern count="other">{0} سیکنڈ</unitPattern>
- </unit>
- <unit type="duration-week">
- <unitPattern count="one">{0} ہفتہ</unitPattern>
- <unitPattern count="other">{0} ہفتے</unitPattern>
- </unit>
- <unit type="duration-year">
- <unitPattern count="one">{0} سال</unitPattern>
- <unitPattern count="other">{0} سال</unitPattern>
- </unit>
- <unit type="length-centimeter">
- <unitPattern count="one">{0} سینٹی میٹر</unitPattern>
- <unitPattern count="other">{0} سینٹی میٹر</unitPattern>
- </unit>
- <unit type="length-foot">
- <unitPattern count="one">{0} فیٹ</unitPattern>
- <unitPattern count="other">{0} فیٹ</unitPattern>
- </unit>
- <unit type="length-inch">
- <unitPattern count="one">{0} انچ</unitPattern>
- <unitPattern count="other">{0} انچ</unitPattern>
- </unit>
- <unit type="length-kilometer">
- <unitPattern count="one">{0} کلو میٹر</unitPattern>
- <unitPattern count="other">{0} کلو میٹر</unitPattern>
- </unit>
- <unit type="length-light-year">
- <unitPattern count="one">{0} روشنی سال</unitPattern>
- <unitPattern count="other">{0} روشنی سال</unitPattern>
- </unit>
- <unit type="length-meter">
- <unitPattern count="one">{0} میٹر</unitPattern>
- <unitPattern count="other">{0} میٹر</unitPattern>
- </unit>
- <unit type="length-mile">
- <unitPattern count="one">{0} میل</unitPattern>
- <unitPattern count="other">{0} میل</unitPattern>
- </unit>
- <unit type="length-millimeter">
- <unitPattern count="one">{0} ملیمیٹر</unitPattern>
- <unitPattern count="other">{0} ملیمیٹر</unitPattern>
- </unit>
- <unit type="length-picometer">
- <unitPattern count="one">{0} پیکو میٹر</unitPattern>
- <unitPattern count="other">{0} پیکو میٹر</unitPattern>
- </unit>
- <unit type="length-yard">
- <unitPattern count="one">{0} یارڈ</unitPattern>
- <unitPattern count="other">{0} یارڈ</unitPattern>
- </unit>
- <unit type="mass-gram">
- <unitPattern count="one">{0} گرام</unitPattern>
- <unitPattern count="other">{0} گرام</unitPattern>
- </unit>
- <unit type="mass-kilogram">
- <unitPattern count="one">{0} کلو گرام</unitPattern>
- <unitPattern count="other">{0} کلو گرام</unitPattern>
- </unit>
- <unit type="mass-ounce">
- <unitPattern count="one">{0} ونس</unitPattern>
- <unitPattern count="other">{0} ونس</unitPattern>
- </unit>
- <unit type="mass-pound">
- <unitPattern count="one">{0} پونڈ</unitPattern>
- <unitPattern count="other">{0} پونڈ</unitPattern>
- </unit>
- <unit type="power-horsepower">
- <unitPattern count="one">{0} ہارس پاور</unitPattern>
- <unitPattern count="other">{0} ہارس پاور</unitPattern>
- </unit>
- <unit type="power-kilowatt">
- <unitPattern count="one">{0} کلو واٹ</unitPattern>
- <unitPattern count="other">{0} کلو واٹ</unitPattern>
- </unit>
- <unit type="power-watt">
- <unitPattern count="one">{0} واٹ</unitPattern>
- <unitPattern count="other">{0} واٹ</unitPattern>
- </unit>
- <unit type="pressure-hectopascal">
- <unitPattern count="one">{0} ہیکٹو پاسکل</unitPattern>
- <unitPattern count="other">{0} ہیکٹو پاسکل</unitPattern>
- </unit>
- <unit type="pressure-inch-hg">
- <unitPattern count="one">{0} انچ مرکری</unitPattern>
- <unitPattern count="other">{0} انچ مرکری</unitPattern>
- </unit>
- <unit type="pressure-millibar">
- <unitPattern count="one">{0} ملی بار</unitPattern>
- <unitPattern count="other">{0} ملی بار</unitPattern>
- </unit>
- <unit type="speed-kilometer-per-hour">
- <unitPattern count="one">{0} کلومیٹر فی گھنٹہ</unitPattern>
- <unitPattern count="other">{0} کلومیٹر فی گھنٹہ</unitPattern>
- </unit>
- <unit type="speed-meter-per-second">
- <unitPattern count="one">{0} میٹر فی سیکنڈ</unitPattern>
- <unitPattern count="other">{0} میٹر فی سیکنڈ</unitPattern>
- </unit>
- <unit type="speed-mile-per-hour">
- <unitPattern count="one">{0}میل فی گھنٹہ</unitPattern>
- <unitPattern count="other">{0} میل فی گھنٹہ</unitPattern>
- </unit>
- <unit type="temperature-celsius">
- <unitPattern count="one">{0} ڈگری سیلسیس</unitPattern>
- <unitPattern count="other">{0} ڈگری سیلسیس</unitPattern>
- </unit>
- <unit type="temperature-fahrenheit">
- <unitPattern count="one">{0}ڈگری فارن ہائیٹ</unitPattern>
- <unitPattern count="other">{0} ڈگری فارن ہائیٹ</unitPattern>
- </unit>
- <unit type="volume-cubic-kilometer">
- <unitPattern count="one">{0} کیوبک کلو میٹر</unitPattern>
- <unitPattern count="other">{0} کیوبک کلو میٹر</unitPattern>
- </unit>
- <unit type="volume-cubic-mile">
- <unitPattern count="one">{0} کیوبک میل</unitPattern>
- <unitPattern count="other">{0} کیوبک میل</unitPattern>
- </unit>
- <unit type="volume-liter">
- <unitPattern count="one">{0} لیٹر</unitPattern>
- <unitPattern count="other">{0} لیٹر</unitPattern>
- </unit>
- </unitLength>
- <unitLength type="short">
- <compoundUnit type="per">
- <compoundUnitPattern>{0}/{1}</compoundUnitPattern>
- </compoundUnit>
- <unit type="acceleration-g-force">
- <unitPattern count="one">{0} جی-فورس</unitPattern>
- <unitPattern count="other">{0} جی-فورس</unitPattern>
- </unit>
- <unit type="angle-arc-minute">
- <unitPattern count="one">{0} منٹ</unitPattern>
- <unitPattern count="other">{0} منٹ</unitPattern>
- </unit>
- <unit type="angle-arc-second">
- <unitPattern count="one">{0}سیکنڈ</unitPattern>
- <unitPattern count="other">{0} سیکنڈ</unitPattern>
- </unit>
- <unit type="angle-degree">
- <unitPattern count="one">{0} ڈگری</unitPattern>
- <unitPattern count="other">{0} ڈگری</unitPattern>
- </unit>
- <unit type="area-acre">
- <unitPattern count="one">{0} ایکڑ</unitPattern>
- <unitPattern count="other">{0} ایکڑ</unitPattern>
- </unit>
- <unit type="area-hectare">
- <unitPattern count="one">{0} ہیکٹر</unitPattern>
- <unitPattern count="other">{0} ہیکٹر</unitPattern>
- </unit>
- <unit type="area-square-foot">
- <unitPattern count="one">{0} سکویر فٹ</unitPattern>
- <unitPattern count="other">{0} سکویر فٹ</unitPattern>
- </unit>
- <unit type="area-square-kilometer">
- <unitPattern count="one">{0} km²</unitPattern>
- <unitPattern count="other">{0} km²</unitPattern>
- </unit>
- <unit type="area-square-meter">
- <unitPattern count="one">{0} m²</unitPattern>
- <unitPattern count="other">{0} m²</unitPattern>
- </unit>
- <unit type="area-square-mile">
- <unitPattern count="one">{0} سکویر میل</unitPattern>
- <unitPattern count="other">{0} سکویر میل</unitPattern>
- </unit>
- <unit type="duration-day">
- <unitPattern count="one">{0} دن</unitPattern>
- <unitPattern count="other">{0} دن</unitPattern>
- </unit>
- <unit type="duration-hour">
- <unitPattern count="one">{0} گھنٹہ</unitPattern>
- <unitPattern count="other">{0} گھنٹے</unitPattern>
- </unit>
- <unit type="duration-millisecond">
- <unitPattern count="one">{0} میل سیکنڈ</unitPattern>
- <unitPattern count="other">{0} میل سیکنڈ</unitPattern>
- </unit>
- <unit type="duration-minute">
- <unitPattern count="one">{0} منٹ</unitPattern>
- <unitPattern count="other">{0} منٹ</unitPattern>
- </unit>
- <unit type="duration-month">
- <unitPattern count="one">{0} مہینہ</unitPattern>
- <unitPattern count="other">{0} مہینے</unitPattern>
- </unit>
- <unit type="duration-second">
- <unitPattern count="one">{0} سیکنڈ</unitPattern>
- <unitPattern count="other">{0} سیکنڈ</unitPattern>
- </unit>
- <unit type="duration-week">
- <unitPattern count="one">{0} ہفتہ</unitPattern>
- <unitPattern count="other">{0} ہفتے</unitPattern>
- </unit>
- <unit type="duration-year">
- <unitPattern count="one">{0} سال</unitPattern>
- <unitPattern count="other">{0} سال</unitPattern>
- </unit>
- <unit type="length-centimeter">
- <unitPattern count="one">{0} سینٹی میٹر</unitPattern>
- <unitPattern count="other">{0} سینٹی میٹر</unitPattern>
- </unit>
- <unit type="length-foot">
- <unitPattern count="one">{0} فیٹ</unitPattern>
- <unitPattern count="other">{0} فیٹ</unitPattern>
- </unit>
- <unit type="length-inch">
- <unitPattern count="one">{0} انچ</unitPattern>
- <unitPattern count="other">{0} انچ</unitPattern>
- </unit>
- <unit type="length-kilometer">
- <unitPattern count="one">{0} کلو میٹر</unitPattern>
- <unitPattern count="other">{0} کلو میٹر</unitPattern>
- </unit>
- <unit type="length-light-year">
- <unitPattern count="one">{0} ly</unitPattern>
- <unitPattern count="other">{0} ly</unitPattern>
- </unit>
- <unit type="length-meter">
- <unitPattern count="one">{0} میٹر</unitPattern>
- <unitPattern count="other">{0} میٹر</unitPattern>
- </unit>
- <unit type="length-mile">
- <unitPattern count="one">{0} میل</unitPattern>
- <unitPattern count="other">{0} میل</unitPattern>
- </unit>
- <unit type="length-millimeter">
- <unitPattern count="one">{0} ملیمیٹر</unitPattern>
- <unitPattern count="other">{0} ملیمیٹر</unitPattern>
- </unit>
- <unit type="length-picometer">
- <unitPattern count="one">{0} پیکو میٹر</unitPattern>
- <unitPattern count="other">{0} پیکو میٹر</unitPattern>
- </unit>
- <unit type="length-yard">
- <unitPattern count="one">{0} یارڈ</unitPattern>
- <unitPattern count="other">{0} یارڈ</unitPattern>
- </unit>
- <unit type="mass-gram">
- <unitPattern count="one">{0} گرام</unitPattern>
- <unitPattern count="other">{0} گرام</unitPattern>
- </unit>
- <unit type="mass-kilogram">
- <unitPattern count="one">{0} کلو گرام</unitPattern>
- <unitPattern count="other">{0} کلو گرام</unitPattern>
- </unit>
- <unit type="mass-ounce">
- <unitPattern count="one">{0} ونس</unitPattern>
- <unitPattern count="other">{0} ونس</unitPattern>
- </unit>
- <unit type="mass-pound">
- <unitPattern count="one">{0} پونڈ</unitPattern>
- <unitPattern count="other">{0} پونڈ</unitPattern>
- </unit>
- <unit type="power-horsepower">
- <unitPattern count="one">{0} ہارس پاور</unitPattern>
- <unitPattern count="other">{0} ہارس پاور</unitPattern>
- </unit>
- <unit type="power-kilowatt">
- <unitPattern count="one">{0} کلو واٹ</unitPattern>
- <unitPattern count="other">{0} کلو واٹ</unitPattern>
- </unit>
- <unit type="power-watt">
- <unitPattern count="one">{0} واٹ</unitPattern>
- <unitPattern count="other">{0} واٹ</unitPattern>
- </unit>
- <unit type="pressure-hectopascal">
- <unitPattern count="one">{0} hPa</unitPattern>
- <unitPattern count="other">{0} hPa</unitPattern>
- </unit>
- <unit type="pressure-inch-hg">
- <unitPattern count="one">{0} انچ مرکری</unitPattern>
- <unitPattern count="other">{0} انچ مرکری</unitPattern>
- </unit>
- <unit type="pressure-millibar">
- <unitPattern count="one">{0} ملی بار</unitPattern>
- <unitPattern count="other">{0} ملی بار</unitPattern>
- </unit>
- <unit type="speed-kilometer-per-hour">
- <unitPattern count="one">{0} kph</unitPattern>
- <unitPattern count="other">{0} kph</unitPattern>
- </unit>
- <unit type="speed-meter-per-second">
- <unitPattern count="one">{0} m/s</unitPattern>
- <unitPattern count="other">{0} m/s</unitPattern>
- </unit>
- <unit type="speed-mile-per-hour">
- <unitPattern count="one">{0} mph</unitPattern>
- <unitPattern count="other">{0} mph</unitPattern>
- </unit>
- <unit type="temperature-celsius">
- <unitPattern count="one">{0}°C</unitPattern>
- <unitPattern count="other">{0}°C</unitPattern>
- </unit>
- <unit type="temperature-fahrenheit">
- <unitPattern count="one">{0}°F</unitPattern>
- <unitPattern count="other">{0}°F</unitPattern>
- </unit>
- <unit type="volume-cubic-kilometer">
- <unitPattern count="one">{0} km³</unitPattern>
- <unitPattern count="other">{0} km³</unitPattern>
- </unit>
- <unit type="volume-cubic-mile">
- <unitPattern count="one">{0} کیوبک میل</unitPattern>
- <unitPattern count="other">{0} کیوبک میل</unitPattern>
- </unit>
- <unit type="volume-liter">
- <unitPattern count="one">{0} لیٹر</unitPattern>
- <unitPattern count="other">{0} لیٹر</unitPattern>
- </unit>
- </unitLength>
- <unitLength type="narrow">
- <compoundUnit type="per">
- <compoundUnitPattern>{0}/{1}</compoundUnitPattern>
- </compoundUnit>
- <unit type="acceleration-g-force">
- <unitPattern count="one">{0}G</unitPattern>
- <unitPattern count="other">{0}G</unitPattern>
- </unit>
- <unit type="angle-arc-minute">
- <unitPattern count="one">{0} منٹ</unitPattern>
- <unitPattern count="other">{0} منٹ</unitPattern>
- </unit>
- <unit type="angle-arc-second">
- <unitPattern count="one">{0}″</unitPattern>
- <unitPattern count="other">{0}″</unitPattern>
- </unit>
- <unit type="angle-degree">
- <unitPattern count="one">{0} ڈگری</unitPattern>
- <unitPattern count="other">{0} ڈگری</unitPattern>
- </unit>
- <unit type="area-acre">
- <unitPattern count="one">{0} ایکڑ</unitPattern>
- <unitPattern count="other">{0} ایکڑ</unitPattern>
- </unit>
- <unit type="area-hectare">
- <unitPattern count="one">{0} ہیکٹر</unitPattern>
- <unitPattern count="other">{0} ہیکٹر</unitPattern>
- </unit>
- <unit type="area-square-foot">
- <unitPattern count="one">{0}ft²</unitPattern>
- <unitPattern count="other">{0}ft²</unitPattern>
- </unit>
- <unit type="area-square-kilometer">
- <unitPattern count="one">{0} km²</unitPattern>
- <unitPattern count="other">{0} km²</unitPattern>
- </unit>
- <unit type="area-square-meter">
- <unitPattern count="one">{0} m²</unitPattern>
- <unitPattern count="other">{0} m²</unitPattern>
- </unit>
- <unit type="area-square-mile">
- <unitPattern count="one">{0}mi²</unitPattern>
- <unitPattern count="other">{0}mi²</unitPattern>
- </unit>
- <unit type="duration-day">
- <unitPattern count="one">{0} دن</unitPattern>
- <unitPattern count="other">{0} دن</unitPattern>
- </unit>
- <unit type="duration-hour">
- <unitPattern count="one">{0} گھنٹے</unitPattern>
- <unitPattern count="other">{0} گھنٹے</unitPattern>
- </unit>
- <unit type="duration-millisecond">
- <unitPattern count="one">{0} ms</unitPattern>
- <unitPattern count="other">{0} ms</unitPattern>
- </unit>
- <unit type="duration-second">
- <unitPattern count="one">{0}s</unitPattern>
- <unitPattern count="other">{0}s</unitPattern>
- </unit>
- <unit type="duration-week">
- <unitPattern count="one">{0} ہفتے</unitPattern>
- <unitPattern count="other">{0} ہفتے</unitPattern>
- </unit>
- <unit type="duration-year">
- <unitPattern count="one">{0} سال</unitPattern>
- <unitPattern count="other">{0} سال</unitPattern>
- </unit>
- <unit type="length-centimeter">
- <unitPattern count="one">{0}cm</unitPattern>
- <unitPattern count="other">{0}cm</unitPattern>
- </unit>
- <unit type="length-foot">
- <unitPattern count="one">'{0}</unitPattern>
- <unitPattern count="other">{0}′</unitPattern>
- </unit>
- <unit type="length-inch">
- <unitPattern count="one">{0} انچ</unitPattern>
- <unitPattern count="other">{0} انچ</unitPattern>
- </unit>
- <unit type="length-kilometer">
- <unitPattern count="one">{0}km</unitPattern>
- <unitPattern count="other">{0}km</unitPattern>
- </unit>
- <unit type="length-light-year">
- <unitPattern count="one">{0}ly</unitPattern>
- <unitPattern count="other">{0}ly</unitPattern>
- </unit>
- <unit type="length-meter">
- <unitPattern count="one">{0} میٹر</unitPattern>
- <unitPattern count="other">{0} میٹر</unitPattern>
- </unit>
- <unit type="length-mile">
- <unitPattern count="one">{0} میل</unitPattern>
- <unitPattern count="other">{0} میل</unitPattern>
- </unit>
- <unit type="length-millimeter">
- <unitPattern count="one">{0} ملیمیٹر</unitPattern>
- <unitPattern count="other">{0} ملیمیٹر</unitPattern>
- </unit>
- <unit type="length-picometer">
- <unitPattern count="one">{0}pm</unitPattern>
- <unitPattern count="other">{0}pm</unitPattern>
- </unit>
- <unit type="length-yard">
- <unitPattern count="one">{0} یارڈ</unitPattern>
- <unitPattern count="other">{0} یارڈ</unitPattern>
- </unit>
- <unit type="mass-gram">
- <unitPattern count="one">{0} گرام</unitPattern>
- <unitPattern count="other">{0} گرام</unitPattern>
- </unit>
- <unit type="mass-kilogram">
- <unitPattern count="one">{0}kg</unitPattern>
- <unitPattern count="other">{0}kg</unitPattern>
- </unit>
- <unit type="mass-ounce">
- <unitPattern count="one">{0} ونس</unitPattern>
- <unitPattern count="other">{0} ونس</unitPattern>
- </unit>
- <unit type="mass-pound">
- <unitPattern count="one">{0} پونڈ</unitPattern>
- <unitPattern count="other">{0} پونڈ</unitPattern>
- </unit>
- <unit type="power-horsepower">
- <unitPattern count="one">{0}hp</unitPattern>
- <unitPattern count="other">{0}hp</unitPattern>
- </unit>
- <unit type="power-kilowatt">
- <unitPattern count="one">{0}kW</unitPattern>
- <unitPattern count="other">{0}kW</unitPattern>
- </unit>
- <unit type="power-watt">
- <unitPattern count="one">{0} واٹ</unitPattern>
- <unitPattern count="other">{0} واٹ</unitPattern>
- </unit>
- <unit type="pressure-hectopascal">
- <unitPattern count="one">{0}hPa</unitPattern>
- <unitPattern count="other">{0}hPa</unitPattern>
- </unit>
- <unit type="pressure-inch-hg">
- <unitPattern count="one">{0} انچ مرکری</unitPattern>
- <unitPattern count="other">{0} انچ مرکری</unitPattern>
- </unit>
- <unit type="pressure-millibar">
- <unitPattern count="one">{0}mb</unitPattern>
- <unitPattern count="other">{0}mb</unitPattern>
- </unit>
- <unit type="speed-kilometer-per-hour">
- <unitPattern count="one">{0}kph</unitPattern>
- <unitPattern count="other">{0}kph</unitPattern>
- </unit>
- <unit type="speed-meter-per-second">
- <unitPattern count="one">{0}m/s</unitPattern>
- <unitPattern count="other">{0}m/s</unitPattern>
- </unit>
- <unit type="speed-mile-per-hour">
- <unitPattern count="one">{0}mph</unitPattern>
- <unitPattern count="other">{0}mph</unitPattern>
- </unit>
- <unit type="temperature-celsius">
- <unitPattern count="one">{0}°</unitPattern>
- <unitPattern count="other">{0}°</unitPattern>
- </unit>
- <unit type="temperature-fahrenheit">
- <unitPattern count="one">{0}°F</unitPattern>
- <unitPattern count="other">{0}°F</unitPattern>
- </unit>
- <unit type="volume-cubic-kilometer">
- <unitPattern count="one">{0}km³</unitPattern>
- <unitPattern count="other">{0}km³</unitPattern>
- </unit>
- <unit type="volume-cubic-mile">
- <unitPattern count="one">{0}mi³</unitPattern>
- <unitPattern count="other">{0}mi³</unitPattern>
- </unit>
- <unit type="volume-liter">
- <unitPattern count="one">{0} لیٹر</unitPattern>
- <unitPattern count="other">{0} لیٹر</unitPattern>
- </unit>
- </unitLength>
- <durationUnit type="hm">
- <durationUnitPattern>h:mm</durationUnitPattern>
- </durationUnit>
- <durationUnit type="hms">
- <durationUnitPattern>h:mm:ss</durationUnitPattern>
- </durationUnit>
- <durationUnit type="ms">
- <durationUnitPattern>m:ss</durationUnitPattern>
- </durationUnit>
- </units>
- <listPatterns>
- <listPattern>
- <listPatternPart type="start">{0}، {1}</listPatternPart>
- <listPatternPart type="middle">{0}، {1}</listPatternPart>
- <listPatternPart type="end">{0}، اور {1}</listPatternPart>
- <listPatternPart type="2">{0} اور {1}</listPatternPart>
- </listPattern>
- <listPattern type="unit">
- <listPatternPart type="start">{0}, {1}</listPatternPart>
- <listPatternPart type="middle">{0}, {1}</listPatternPart>
- <listPatternPart type="end">{0}، اور {1}</listPatternPart>
- <listPatternPart type="2">{0} اور {1}</listPatternPart>
- </listPattern>
- <listPattern type="unit-short">
- <listPatternPart type="2">{0} اور {1}</listPatternPart>
- </listPattern>
- </listPatterns>
- <posix>
- <messages>
- <yesstr>ہاں:ہاں</yesstr>
- <nostr>نہیں:نہیں</nostr>
- </messages>
- </posix>
- </ldml>
|